/* --------------------------------------
    GENERAL
----------------------------------------- */
body{
    background-color:#fefefe;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.footer{
    margin-top: auto;
}
.debug{
    color: #fff;
}
h5{
    color: #fff;
}
a.btn-primary{
    font-size: 1.5rem;
}
#messageDialog{
    color: #2bff5b;
}
#errorDialog{
    color: red;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 20px;
}
@media(max-width: 800px){
    .header-container{
        margin-bottom: 0 !important;
    }
}
#output-table{
    color: #fff;
}
.output-table{
    color: #fff;
}
.date-id-container *{
    font-size: 1rem;
}
/* --------------------------------------
    UTILITY
----------------------------------------- */
.hidden{
    display: none !important;
}
.flex-center{
    display:flex;
    align-items: center;
    justify-content: center;
}
.divider{
    width:100%;
    height:2px;
    background:#CCC;
    margin-bottom:5px;
}
#loading-container{
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    background: rgba(0,0,0,.6);
    top: 0;
    left: 0;
    display: inline-block;
}
#loading-container h1{
    position: absolute;
    text-align: center;
    top: 300px;
    width: 100%;
    height: 100%;
    align-items: center; /** Y-axis align **/
    justify-content: center; /** X-axis align **/
}
#loading-container i{
      animation-name: spin;
      animation-duration: 2000ms;
      animation-iteration-count: infinite;
      animation-timing-function: linear; 
}
@keyframes spin {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
/* --------------------------------------
    BUTTONS
----------------------------------------- */
.btn-green{
    border-color: #004405;
    background: #008f0b;
}
.btn-green:hover{
    border-color: #008f0b;
    background: #004405;
}
.btn-red{
    border-color: #440000;
    background: #ff0202;
}
.btn-red:hover{
    border-color: #440000;
    background: #440000;
}
.btn-half{
    width: 50%;
}
.btn-cancel{
    background: #ff0000;
    background-color: #ff0000;
    border-color: #7c0000;
}
.btn-route{
    margin: auto 10px;
}
.green{
    color:#008f0b;
}
.red{
    color:#ff0202;
}
/* --------------------------------------
    SWITCH AND SLIDERS
----------------------------------------- */

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
#adjust-selector{
    color: white;
}
#adjust-selector h4{
    margin: 0 5px;
}
.slider:before{
    background: #04224e;
    background-color: #04224e;
}
.slider {
    background: #00ff2b;
    background-color: #00ff2b;
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background-color: #ccc;*/
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  /*background-color: white;*/
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
    background-color: #ff0000;
}
input:checked + .slider-blue {
  background-color: #2196F3;
}

input:focus + .slider-blue {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.load-select.selected,
.unchecked-select.selected{
    color: #00ff2b;
}

.unload-select.selected,
.checked-select.selected{
    color: #ff0000;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* --------------------------------------
    ICONS
----------------------------------------- */
/* Icons */
.icon-text{
    font-size: 12px;
    display: block;
    margin: 0 auto;
}
i{
    margin-right: 15px;
}