.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.popup__overlay {
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.popup__wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
}
.popup__content {
  background: #ffffff;
  margin: 0 auto;
  max-height: 100%;
  overflow-y: auto;
  border-radius: 25px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
.popup__title {
  font-size: 26px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 576px) {
  .popup__title {
    font-size: 20px;
    line-height: 28px;
  }
}
.popup__description {
  font-size: 18px;
  line-height: 22px;
}
@media (max-width: 480px) {
  .popup {
    font-size: 16px;
  }
}
.popup__close {
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:none;stroke:%23000;stroke-linecap:round;stroke-linejoin:round;stroke-width:2px;%7D%3C/style%3E%3C/defs%3E%3Ctitle/%3E%3Cg id='cross'%3E%3Cline class='cls-1' x1='7' x2='25' y1='7' y2='25'/%3E%3Cline class='cls-1' x1='7' x2='25' y1='25' y2='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
}
@media (min-width: 992px) {
  .popup__close:hover {
    cursor: pointer;
  }
}