
/* PRELOADER CSS */
.page-loader {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #272727;
  z-index: 10000;
  display: none;
  top: 0;
}
.page-loader .txt {
  color: #666;
  text-align: center;
  top: 42%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
  font-weight: bold;
  line-height: 1.5;
}
/* SPINNER ANIMATION */
.spinner {
  position: relative;
  top: 38%;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sk-scaleout 1s infinite ease-in-out;
  animation: sk-scaleout 1s infinite ease-in-out;
}
@-webkit-keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}
@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}


.spinner-border.loading {
  display: none;
}

.btn.active span.loading,
.btn-download.active span.loading {
  display: inline-block;
}

.btn.active svg#ico-download-light,
.btn-download.active svg {
  display: none;
}

@media (min-width: 1200px) {
   .modal-xl {
      width: 96%; 
   }
}

.nav-toolbar {
    min-height: 85px !important;
}

.modal-mobile {
  max-width: 420px;
  width: 420px;
}
