.scale-loading {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}

.loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(19, 22, 27, 0.95);
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: 1s;
  transition: 1s;
  overflow: hidden;
}

.loading .loading-progress {
  width: 100px;
  height: 100px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.loading .loading-progress .loading-progress-bar {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 4px solid rgba(2, 2, 2, 0.329);
  border-top-color: #435a79;
  -webkit-animation: spin 1s infinite linear;
          animation: spin 1s infinite linear;
  -webkit-transition: 1s;
  transition: 1s;
}

.loading .loading-progress .loading-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 0;
}

.loading .loading-progress .loading-icon img {
  width: 40px;
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes float {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*# sourceMappingURL=loading.css.map */