/* Preloader */
.handle-preloader {
  background-color: #0591af;
  align-items: center;
  display: flex;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  direction: ltr;
}

.handle-preloader .animation-preloader {
  text-align: center;
}

.handle-preloader .animation-preloader .spinner {
  animation: spinner 2s infinite linear;
  border-radius: 50%;
  height: 120px;
  width: 120px;
  margin: 0 auto 40px;
  border: 3px solid #fff;
  border-top-color: rgba(255, 255, 255, 0.4);
}

.handle-preloader .animation-preloader .txt-loading {
  text-align: center;
  user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
  font-weight: 600;
  letter-spacing: 8px;
  display: inline-block;
  position: relative;
  font-size: 48px;
  line-height: 70px;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.6);
  font-family: 'Nunito Sans', sans-serif;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 3s infinite;
  content: attr(data-text-preloader);
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before { animation-delay: 0.1s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before { animation-delay: 0.2s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before { animation-delay: 0.3s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before { animation-delay: 0.4s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before { animation-delay: 0.5s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before { animation-delay: 0.6s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before { animation-delay: 0.7s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(9):before { animation-delay: 0.8s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(10):before { animation-delay: 0.9s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(11):before { animation-delay: 1.0s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(12):before { animation-delay: 1.1s; }
.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(13):before { animation-delay: 1.2s; }

@keyframes spinner {
  to { transform: rotate(360deg); }
}

@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: scale(0.8);
  }
  25%, 50% {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (max-width: 600px) {
  .handle-preloader .animation-preloader .txt-loading .letters-loading {
    font-size: 32px;
    letter-spacing: 4px;
  }
}