.loader__wrapper--common {
  align-items: center;
  background: rgba(0, 0, 0, 0.985);
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
.loader__wrapper--common.active {
  display: flex;
}
.loader__wrapper--common .wrapper {
  height: 60px;
  position: relative;
  width: 200px;
  z-index: 1;
}
.loader__wrapper--common .circle {
  animation: circle7124 0.5s ease infinite alternate;
  background-color: #fff;
  border-radius: 50%;
  height: 20px;
  left: 15%;
  position: absolute;
  transform-origin: 50%;
  width: 20px;
}
.loader__wrapper--common .circle:nth-child(2) {
  animation-delay: 0.2s;
  left: 45%;
}
.loader__wrapper--common .circle:nth-child(3) {
  animation-delay: 0.3s;
  left: auto;
  right: 15%;
}
.loader__wrapper--common .shadow {
  animation: shadow046 0.5s ease infinite alternate;
  background-color: rgba(84, 89, 156, 0.75);
  border-radius: 50%;
  filter: blur(1px);
  height: 4px;
  left: 15%;
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  width: 20px;
  z-index: -1;
}
.loader__wrapper--common .shadow:nth-child(4) {
  animation-delay: 0.2s;
  left: 45%;
}
.loader__wrapper--common .shadow:nth-child(5) {
  animation-delay: 0.3s;
  left: auto;
  right: 15%;
}
@keyframes circle7124 {
  0% {
    border-radius: 50px 50px 25px 25px;
    height: 5px;
    top: 60px;
    transform: scaleX(1.7);
  }
  40% {
    border-radius: 50%;
    height: 20px;
    transform: scaleX(1);
  }
  to {
    top: 0;
  }
}
@keyframes shadow046 {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    opacity: 0.7;
    transform: scaleX(1);
  }
  to {
    opacity: 0.4;
    transform: scaleX(0.2);
  }
}
