.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999999999;
  left: 0;
  top: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  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;
  opacity: 0;
  pointer-events: none;
}

.preloader.is-loading {
  opacity: 1;
  pointer-events: all;
}

.preloader.is-loading .progress circle {
  -webkit-animation: loadAnimation 8s linear infinite;
  animation: loadAnimation 8s linear infinite;
}

.preloader .loader {
  position: relative;
  width: 235px;
  height: 235px;
  pointer-events: none;
}

.preloader .loader-wrapper {
  -webkit-transition: 0.4s linear;
  -o-transition: 0.4s linear;
  transition: 0.4s linear;
  position: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 440px;
}

.preloader .loader-gray {
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90.5%;
  height: 90.5%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  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;
}

.preloader .loader-gray .loader-rocket {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 47%;
  left: 50.5%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation: 4s infinite flight;
  animation: 4s infinite flight;
}

.preloader .loader-gray img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: auto;
}

.preloader .progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotate(90deg) scale(-1, 1);
  -ms-transform: rotate(90deg) scale(-1, 1);
  transform: rotate(90deg) scale(-1, 1);
}

.preloader .progress circle {
  fill: none;
  stroke: #ff6424;
  stroke-width: 2;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
}

@-webkit-keyframes loadAnimation {
  0% {
    stroke-dashoffset: 283;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -283;
  }
}

@keyframes loadAnimation {
  0% {
    stroke-dashoffset: 283;
  }

  50% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -283;
  }
}

@-webkit-keyframes flight {
  0% {
    top: 100%;
    left: 0;
    opacity: 0%;
    -webkit-transform: translateY(-50%) scale(0.1);
    transform: translateY(-50%) scale(0.1);
  }

  2% {
    opacity: 0%;
  }

  20%, 80% {
    top: 50%;
    left: 50%;
    opacity: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    top: 50.9%;
    left: 50.9%;
  }

  35%, 75% {
    top: 49.3%;
  }

  45% {
    top: 50.8%;
    left: 51%;
  }

  55% {
    top: 49.3%;
    left: 51.1%;
  }

  65% {
    top: 50.9%;
    left: 50.7%;
  }

  90% {
    opacity: 0%;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(-20deg);
    transform: translate(-50%, -50%) scale(1) rotate(-20deg);
  }

  100% {
    top: 0;
    left: 90%;
    opacity: 0%;
    -webkit-transform: translateX(-50%), scale(0.2) rotate(-20deg);
    transform: translateX(-50%), scale(0.2) rotate(-20deg);
  }
}

@keyframes flight {
  0% {
    top: 100%;
    left: 0;
    opacity: 0%;
    -webkit-transform: translateY(-50%) scale(0.1);
    transform: translateY(-50%) scale(0.1);
  }

  2% {
    opacity: 0%;
  }

  20%, 80% {
    top: 50%;
    left: 50%;
    opacity: 100%;
    -webkit-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
  }

  25% {
    top: 50.9%;
    left: 50.9%;
  }

  35%, 75% {
    top: 49.3%;
  }

  45% {
    top: 50.8%;
    left: 51%;
  }

  55% {
    top: 49.3%;
    left: 51.1%;
  }

  65% {
    top: 50.9%;
    left: 50.7%;
  }

  90% {
    opacity: 0%;
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(-20deg);
    transform: translate(-50%, -50%) scale(1) rotate(-20deg);
  }

  100% {
    top: 0;
    left: 90%;
    opacity: 0%;
    -webkit-transform: translateX(-50%), scale(0.2) rotate(-20deg);
    transform: translateX(-50%), scale(0.2) rotate(-20deg);
  }
}