.loading_wrap {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #000000 0%, #120000 56%, #1a1a1a 100%);
}

.loading_wrap::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 6, 0, 0.35) 0%, rgba(225, 6, 0, 0) 70%);
  pointer-events: none;
}

.loader_logo {
  height: 88px;
  width: 88px;
  position: absolute;
  left: calc(50% - 44px);
  top: 38%;
}

.loader_logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(225, 6, 0, 0.4));
}

.loading {
  border: 3px solid rgba(255, 255, 255, 0.26);
  position: absolute;
  left: calc(50% - 29px);
  top: 52%;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border-top-color: #e10600;
  border-right-color: #e10600;
  animation: loader 0.85s linear infinite;
  -webkit-animation: loader 0.85s linear infinite;
}

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

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