.spinner {
  margin: 100px auto;
  width: 200px;
  height: 120px;
  text-align: center;
  font-size: 10px;
  color: white;
}

.spinner > div {
  background-color: #005d75;
  height: 100%;
  width: 6px;
  display: inline-block;
  margin: 0 1px;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}

.spinner > span {
  color: #000;
  width: 100% !important;
  display: block;
  font-size: 18px;
  font-weight: 600;
  position: relative;
}

.spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}

.spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

.spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}

.spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}

@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }

  20% {
    -webkit-transform: scaleY(1);
  }
}

@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }

  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

.loadbg {
  background: var(--color-white-100);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.bdload {
  font-size: 22px;
  margin: 0 auto;
  width: 100%;
  position: fixed;
  top: 28%;
  text-align: center;
  color: #fff;
}

.is-hidden {
  display: none !important;
}
