.popup {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 1080px;
  max-width: 95%;
}
.popup .popup-content {
  box-sizing: border-box;
  background: #fff;
  border-radius: 24px;
  padding: 40px 120px 40px 70px;
  min-height: 600px;
  position: relative;
}
.popup .popup-content p {
  font-family: "noto-sans-semicondensed", sans-serif;
  color: #0F204D;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 30.8px */
  letter-spacing: -0.33px;
}
.popup .popup-content h2 {
  font-family: "anton", sans-serif;
  color: #0F3081;
  font-size: 42px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%; /* 42.84px */
  letter-spacing: -1.05px;
  text-transform: uppercase;
}
.popup .popup-content .text {
  max-width: 450px;
}
.popup .popup-content a.close {
  position: absolute;
  top: 36px;
  right: 36px;
  font-family: "anton", sans-serif;
  text-decoration: none;
  color: #0F3081;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 102%; /* 24.48px */
  letter-spacing: -0.12px;
  text-transform: uppercase;
}
.popup .popup-content a.close:hover {
  color: #9EDEFF;
}
.popup .popup-content a.close:hover svg rect {
  fill: #9EDEFF;
}
.popup .popup-content img.mascot {
  display: block;
  position: absolute;
  width: 242px;
  height: auto;
  right: -40px;
  bottom: -40px;
}

.popup-backdrop {
  position: absolute;
  z-index: 900;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: block;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.popup, .popup-backdrop {
  display: none;
}
body.show-popup .popup, body.show-popup .popup-backdrop {
  display: block;
}

body.show-popup {
  overflow: hidden;
}

@media (min-width: 1080px) {
  .popup .popup-content {
    padding: 80px 141px;
  }
  .popup .popup-content img.mascot {
    width: 362px;
    right: -80px;
    bottom: -80px;
  }
  .popup .popup-content .text {
    max-width: 585px;
  }
}
