﻿#tooltip {
  background-color: var(--card-bg-light, #f1f3f3);
  padding: 1.25em;
  border-style: solid;
  border-color: grey;
  border-width: 1px;
  max-width: 500px;
}

label {
  margin-bottom: 0;
}

.dfi-td-bold {
  font-weight: bold;
  color: black;
}

.dfi-td-frozen {
  background-color: #cbeefb !important;
}

.dfi-td-horizon {
  background-color: #fff2d9 !important;
}

.loader-big {
  border: 8px solid #cbd4d1; /* Light grey */
  border-top: 8px solid #e85425; /* optilon orange */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 1.5s cubic-bezier(0.42, 0.1, 0.6, 0.92) infinite;
  text-align: center;
  margin: auto;
}

.loader-small {
  border: 4px solid #cbd4d1;
  border-top: 4px solid #e85425;
  border-radius: 50%;
  display: inline-block;
  width: 25px;
  height: 25px;
  position: relative;
  top: 8px;
  animation: spin 1.5s cubic-bezier(0.42, 0.1, 0.6, 0.92) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 700px;
  }
}

@keyframes conveyor {
  0% {
    transform: translate(3000px);
  }

  25% {
    transform: translate(0px);
  }

  75% {
    transform: translate(0px);
  }

  100% {
    transform: translate(-3000px);
  }
}

.conveyor-anim {
  animation-name: conveyor;
  animation-duration: 4000ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.kpi-grid-view-size-fix {
  min-height: 373px !important;
}

.kpi-grid-view-relative {
  position: relative;
}

.kpi-grid-view-pos-fix {
  position: absolute;
  top: 120px;
}

.kpi-audit-size-fix {
  min-height: 218px;
}

@media (max-width: 1399.98px) {
  .kpi-grid-view-size-fix {
    min-height: 100%;
  }

  .kpi-grid-view-pos-fix {
    position: relative;
    top: 0;
  }
}

@media (max-width: 1199.98px) {
  .kpi-grid-view-size-fix {
    min-height: 100%;
  }

  .kpi-grid-view-pos-fix {
    position: relative;
    top: 0;
  }
}

.gear-anim {
  overflow: hidden;
  transition-duration: 1.8s;
  transition-property: transform;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}

.invalid-row {
  border-color: #ff9a83;
  border-width: 2px;
  border-style: solid;
}

.table-striped tbody tr.selected-row:nth-of-type(odd),
.table-striped tbody tr.selected-row:nth-of-type(odd) td {
  border-color: #bbe6d8;
  border-width: 2px;
  border-style: solid;
  background-color: #bbe6d8 !important;
}

.table-striped tbody tr.selected-row:nth-of-type(even),
.table-striped tbody tr.selected-row:nth-of-type(even) td {
  border-color: #bbe6d8;
  border-width: 2px;
  border-style: solid;
  background-color: #bbe6d8 !important;
}

.generic-btn-green {
  color: rgb(155, 200, 185) !important;
}

.generic-btn-red {
  color: #ff9a83 !important;
}

.generic-btn-black {
  color: black !important;
}
