.deck-header {
    font-size: 1.1vw;
}

.falcon-gray-300 {
    background-color: #d8e2ef!important;
}

.falcon-gray-200 {
    background-color: #edf2f9!important;
}

.danger-color {
    color: #dc3545!important;
}

.success-color {
    color: #3ABB9C!important;
}

.secondary-color {
    color: #596674;
}

  .container-loading {
    --uib-size: 30px;
    --uib-color: #1F3869;
    --uib-speed: 1s;
    --uib-stroke: 3px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: var(--uib-size);
    width: var(--uib-size);
  }

  .line-loading {
    position: absolute;
    top: 0;
    left: calc(50% - var(--uib-stroke) / 2);
    display: flex;
    align-items: flex-start;
    height: 100%;
    width: var(--uib-stroke);
  }

  .line-loading::before {
    content: '';
    height: 22%;
    width: 100%;
    border-radius: calc(var(--uib-stroke) / 2);
    background-color: var(--uib-color);
    animation: pulse calc(var(--uib-speed)) ease-in-out infinite;
    transition: background-color 0.3s ease;
    transform-origin: center bottom;
  }

  .line-loading:nth-child(1) {
    transform: rotate(calc(360deg / -12 * 1));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 1);
    }
  }
  .line-loading:nth-child(2) {
    transform: rotate(calc(360deg / -12 * 2));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 2);
    }
  }
  .line-loading:nth-child(3) {
    transform: rotate(calc(360deg / -12 * 3));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 3);
    }
  }
  .line-loading:nth-child(4) {
    transform: rotate(calc(360deg / -12 * 4));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 4);
    }
  }
  .line-loading:nth-child(5) {
    transform: rotate(calc(360deg / -12 * 5));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 5);
    }
  }
  .line-loading:nth-child(6) {
    transform: rotate(calc(360deg / -12 * 6));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 6);
    }
  }
  .line-loading:nth-child(7) {
    transform: rotate(calc(360deg / -12 * 7));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 7);
    }
  }
  .line-loading:nth-child(8) {
    transform: rotate(calc(360deg / -12 * 8));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 8);
    }
  }
  .line-loading:nth-child(9) {
    transform: rotate(calc(360deg / -12 * 9));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 9);
    }
  }
  .line-loading:nth-child(10) {
    transform: rotate(calc(360deg / -12 * 10));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 10);
    }
  }
  .line-loading:nth-child(11) {
    transform: rotate(calc(360deg / -12 * 11));

    &::before {
      animation-delay: calc(var(--uib-speed) / -12 * 11);
    }
  }

  @keyframes pulse {
    0%,
    80%,
    100% {
      transform: scaleY(0.75);
      opacity: 0;
    }
    20% {
      transform: scaleY(1);
      opacity: 1;
    }
  }


  /* The switch - the box around the slider */
.switch {
  font-size: 7px;
  position: relative;
  display: inline-block;
  width: 3.5em;
  height: 2em;
}

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

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cc1100;
  transition: .4s;
  border-radius: 10px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.4em;
  width: 1.4em;
  border-radius: 8px;
  left: 0.3em;
  bottom: 0.3em;
  transform: rotate(270deg);
  background-color: rgb(255, 255, 255);
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #21cc4c;
}

.switch input:checked + .slider:before {
  transform: translateX(1.5em);
}


/* BARRAS SIGNAL */
.sizing-box {
  height: 15px;
  width: 50px;
}

.signal-bars {
  display: inline-block;
  box-sizing: border-box;
}

.signal-bars .bar {
  width: 6%;
  min-height: 20%;
  display: inline-block;
}
.signal-bars .bar.first-bar {
  height: 20%;
}
.signal-bars .bar.second-bar {
  height: 40%;
}
.signal-bars .bar.third-bar {
  height: 60%;
}
.signal-bars .bar.fourth-bar {
  height: 80%;
}
.signal-bars .bar.fifth-bar {
  height: 99%;
}

.good .bar {
  background-color: #16a085;
  border: thin solid #0e6b4e;
}
.bad .bar {
  background-color: #e74c3c;
  border: thin solid #992d22;
}
.ok .bar {
  background-color: #f1c40f;
  border: thin solid #b7950b;
}

.four-bars .bar.fifth-bar,
.three-bars .bar.fifth-bar,
.three-bars .bar.fourth-bar,
.one-bar .bar:not(.first-bar),
.two-bars .bar:not(.first-bar):not(.second-bar) {
  background-color: #fafafa;
  border: thin solid #f3f3f3;
}


/* WIFI SIGNAL */
.wave {
	/*display: inline-block;*/
	border: 3px solid transparent;
	border-top-color: currentColor;
	border-radius: 50%;
	border-style: solid;
	margin: 2px;
}
  
  
.waveStrength-3 .wv4.wave,
.waveStrength-2 .wv4.wave,
.waveStrength-2 .wv3.wave,
.waveStrength-1 .wv4.wave,
.waveStrength-1 .wv3.wave,
.waveStrength-1 .wv2.wave {
	border-top-color: #eee;
}

.table-responsive .dropdown,
.table-responsive .btn-group,
.table-responsive .btn-group-vertical {
    position: static;
}