.popup-window .title {
  padding-bottom: 16px;
  text-align: center;
  color: #273540;
  font-weight: 700;
  font-size: 24px;
}
.popup-window .title.ico:before {
  display: block;
  content: "";
  margin: 0 auto;
  width: 50px;
  height: 50px;
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
.popup-window .title.ico-error:before {
  background-image: url(../../images/icons/error_red.svg);
}
.popup-window .title.ico-clock:before {
  padding-top: 10px;
  background-image: url(../../images/icons/clock.svg);
}
.popup-window .subtitle {
  padding: 8px 0;
  text-align: center;
  color: #273540;
  font-size: 18px;
}
.popup-window .button {
  display: block;
  width: 100%;
}
.popup-window .note {
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
}
.popup-window .note a {
  color: #18C171;
}
.popup {
  position: relative;
  margin: 20px auto;
  padding: 40px 55px 55px 55px;
  max-width: 600px;
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
}
.popup .text p {
  padding-bottom: 10px;
  font-size: 14px;
}
#popup-wait {
  display: flex;
  align-items: center;
  height: 100vh;
  text-align: center;
}
#popup-wait .mfp-close {
  display: none;
}

.spin {
  display: block;
  width: 100%;
}
.spin .spin-dot {
  position: relative;
  display: inline-block;
  font-size: 32px;
  width: 1em;
  height: 1em;
}
.spin .spin-dot-spin {
  transform: rotate(45deg);
  -webkit-animation-name: css-ixblex-antRotate;
  animation-name: css-ixblex-antRotate;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.spin .spin-dot-spin .spin-dot-item {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #1677ff;
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  -webkit-animation-name: css-ixblex-antSpinMove;
  animation-name: css-ixblex-antSpinMove;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.spin .spin-dot-spin .spin-dot-item:nth-child(1) {
  top: 0;
  inset-inline-start: 0;
}
.spin .spin-dot-spin .spin-dot-item:nth-child(2) {
  top: 0;
  inset-inline-end: 0;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.spin .spin-dot-spin .spin-dot-item:nth-child(3) {
  inset-inline-end: 0;
  bottom: 0;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.spin .spin-dot-spin .spin-dot-item:nth-child(4) {
  bottom: 0;
  inset-inline-start: 0;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
@-webkit-keyframes css-ixblex-antRotate {
  to {
    transform: rotate(405deg);
  }
}
@keyframes css-ixblex-antRotate {
  to {
    transform: rotate(405deg);
  }
}