/* General */
.dropdown-menu.inner {
    max-height: 400px !important;
}
:root {
    --scroll-height:    600px;
}
body {
    top:                0px !important;
}
.scroll {
    height:             var(--scroll-height);
    overflow-y:         auto;
}
.max-scroll {
    max-height:         var(--scroll-height);
    overflow-y:         auto;
}
.print {
    display:            none;
}
html {
    overflow-y:         scroll;
}
textarea {
    height:             7em;
}

/* General Colors */
label {
    color:              #417183;
}
.active-text {
    color:              black;
}
.active-page {
    color:              black;
    background-color:   #578597;
}
.active-page::after {
    color:              black;
}
.silver-background {
    background-color:   #f0f2f5;
}
.brown-background {
    background-color:   #8a6b69;
}
.dark-blue-background {
    background-color:   #417183;
}
.gray-border {
    border:             1px solid #aaa89e;
}
.blue-border {
    border:             1px solid #417183;
}
.blue-border-color {
    border-color:       #417183 !important;
}
.blue-text {
    color:              blue!important;
}
.green-text {
    color:              green;
}
.orange-text {
    color:              orange;
}
.purple-text {
    color:              purple;
}
.red-text {
    color:              red;
}
.cream-text {
     color:             #fff9f2 !important;
}
/* Loading Overlays */
@keyframes spinner {
    to {transform: rotate(360deg);}
}
.loading-row-overlay {
    position: relative;
}
.loading-row-overlay::before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
}
.loading-row-overlay::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 2px solid #ccc;
    border-top-color: #333;
    animation: spinner .6s linear infinite;
    z-index: 101;
}
.loading-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
  display: block;
}

.loading-overlay::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-top-color: #333;
  animation: spinner .6s linear infinite;
  z-index: 3;
}
/* Notifications */

/* Google Translate */
#goog-gt-tt {display: none !important;}
.goog-te-gadget-icon {display:none;}
.goog-te-gadget-simple a {text-decoration: none!important;}
.goog-te-banner-frame.skiptranslate {display: none!important;}
.goog-tooltip {display: none!important;}
.goog-tooltip:hover {display: none!important;}
iframe.skiptranslate {display: none} /* for apple devices */
.goog-text-highlight {
    background-color: transparent!important;
    border: none!important;
    box-shadow: none!important;
}
/* Remove Arrows on Number Input */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance: textfield;
}