.loader-wrap {
  position: fixed;
  background: #110300f1;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
}


.brand {
  color: #fff;
  font-size: 32px;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.brand::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 5px;
  border: 3px solid #FFF;
  border-bottom-color: #fb7500;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -webkit-animation: rotation 0.6s linear infinite;
          animation: rotation 0.6s linear infinite;
}

.loader {
  width: 32px;
  height: 90px;
  margin-bottom: 20px;
  position: absolute;
  border-radius: 50% 50% 0 0;
  border-bottom: 10px solid #fb7500;
  background-color: #FFF;
  background-image: radial-gradient(ellipse at center, #FFF 34%, #e26a01 35%, #fb7500 54%, #FFF 55%), linear-gradient(#fb7500 10px, transparent 0);
  background-size: 28px 28px;
  background-position: center 20px, center 2px;
  background-repeat: no-repeat;
  -webkit-animation: animloader106back 1s linear infinite alternate;
          animation: animloader106back 1s linear infinite alternate;
  left: 49%;
  top: 40%;
}
.loader::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0px 15px #fb7500 inset;
  top: 67px;
}
.loader::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 34px;
  height: 34px;
  top: 112%;
  background: radial-gradient(ellipse at center, #ffdf00 8%, rgba(249, 62, 0, 0.6) 24%, rgba(0, 0, 0, 0) 100%);
  border-radius: 50% 50% 0;
  background-repeat: no-repeat;
  background-position: -44px -44px;
  background-size: 100px 100px;
  box-shadow: 4px 4px 12px 0px rgba(255, 61, 0, 0.5);
  -webkit-animation: animloader106 1s linear infinite alternate;
          animation: animloader106 1s linear infinite alternate;
}

/* keyFrames */
@-webkit-keyframes animloader106back {
  0%, 30%, 70% {
    transform: translateY(0px);
  }
  20%, 40%, 100% {
    transform: translateY(-5px);
  }
}
@keyframes animloader106back {
  0%, 30%, 70% {
    transform: translateY(0px);
  }
  20%, 40%, 100% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes animloader106 {
  0% {
    box-shadow: 4px 4px 12px 2px rgba(255, 61, 0, 0.75);
    width: 34px;
    height: 34px;
    background-position: -44px -44px;
    background-size: 100px 100px;
  }
  100% {
    box-shadow: 2px 2px 8px 0px rgba(255, 61, 0, 0.5);
    width: 30px;
    height: 28px;
    background-position: -36px -36px;
    background-size: 80px 80px;
  }
}
@keyframes animloader106 {
  0% {
    box-shadow: 4px 4px 12px 2px rgba(255, 61, 0, 0.75);
    width: 34px;
    height: 34px;
    background-position: -44px -44px;
    background-size: 100px 100px;
  }
  100% {
    box-shadow: 2px 2px 8px 0px rgba(255, 61, 0, 0.5);
    width: 30px;
    height: 28px;
    background-position: -36px -36px;
    background-size: 80px 80px;
  }
}