/* .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background-repeat: no-repeat;
  background-image: linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0), linear-gradient(#069fff 50px, transparent 0);
  background-size: 5px 40px;
  background-position:
    0px center,
    10px center,
    20px center,
    30px center,
    40px center,
    50px center;
  animation: spikeUp 1s linear infinite alternate;
}
@keyframes spikeUp {
  0% {
    background-size: 5px 40px;
  }
  16% {
    background-size:
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  33% {
    background-size:
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  50% {
    background-size:
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px,
      5px 40px;
  }
  66% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px,
      5px 40px;
  }
  83% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px,
      5px 40px;
  }
  100% {
    background-size:
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 40px,
      5px 55px;
  }
} */


body{
/*  margin:0;
  padding:0;
  display:flex;
  justify-content:center;
  align-items:center;
  height:100vh; */
  background-color: #240229;
}





      .loader {
        position: relative;
        width: 200px;
        height: 200px;
        border: 4px solid #240229;
        overflow: hidden;
        border-radius: 50%;
        box-shadow:
          -5px -5px 5px rgba(255, 255, 255, 0.1),
          10px 10px 10px rgba(0, 0, 0, 0.4),
          inset -5px -5px 5px rgba(255, 255, 255, 0.2),
          inset 10px 10px 10px rgba(0, 0, 0, 0.4);
      }

      .loader:before {
        content: "";
        position: absolute;
        top: 25px;
        left: 25px;
        right: 25px;
        bottom: 25px;
        z-index: 10;
        background: #240229 url('../images/logo.svg') no-repeat center;
        background-size: cover;
        border-radius: 50%;
        border: 2px solid #240229;
        box-shadow:
          inset -2px -2px 5px rgba(255, 255, 255, 0.2),
          inset 3px 3px 5px rgba(0, 0, 0, 0.5);
      }

      .loader span {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-image: linear-gradient(
          -225deg,
          #ff057c 0%,
          #8d0b93 50%,
          #321575 100%
        );
        filter: blur(20px);
        z-index: -1;
        animation: animate 0.5s linear infinite;
      }

      @keyframes animate {
        0% {
          transform: rotate(0deg);
        }
        100% {
          transform: rotate(360deg);
        }
      }


.loading-block {
  position: fixed;

  z-index: 1;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loading-top {
  background-color: rgba(0, 0, 0, 0.9);
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: auto;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}