@charset "UTF-8";
/**
 * Иконка ожидания
 * @see PC.ui.waitIcon
 */
.wib-overlay {
  border: 0;
  justify-content: center;
  /*align-items: center;*/
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /*backdrop-filter: blur(1px); // не все браузеры поддерживают, начинает тормазить отображение*/
  background: rgba(255, 255, 255, 0);
  transition: 0.5s ease;
}
.wib-overlay.wib-complete {
  background: rgba(255, 255, 255, 0.5);
}
.wib-overlay div {
  background-color: rgba(192, 214, 54, 0.7);
  border-radius: 15px;
  padding: 5px 20px;
  font-weight: bold;
  color: #31187b;
  position: absolute;
}
.wib-overlay span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 3px solid transparent;
  border-top-color: #e7e4d7;
  border-radius: 50%;
  z-index: 1;
  animation: wib-spinner 2.5s infinite linear;
}
.wib-overlay span::before, .wib-overlay span::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}
.wib-overlay span::before {
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  border: 3px solid transparent;
  border-top-color: #bfd654;
  animation: wib-spinner 2s infinite linear;
}
.wib-overlay span::after {
  top: 15px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  border: 3px solid transparent;
  border-top-color: #bb2649;
  animation: wib-spinner 1s infinite linear;
}

@keyframes wib-spinner {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
