.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 40px 40px 32px 40px;
  border-radius: 24px;
  z-index: 999;
  width: 564px;
  display: none;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .popup {
    width: calc(100% - 32px);
    padding: 24px 24px 16px 24px;
  }
}
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #03173599;
  z-index: 998;
}
.thank-you-popup {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.thank-you-popup h2 {
  margin: 16px 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 41.4px;
}
@media (max-width: 768px) {
  .thank-you-popup h2 {
    font-size: 20px;
    line-height: 23px;
  }
}
.thank-you-popup span {
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24.2px;
  text-align: center;
}
.thank-you-popup span b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .thank-you-popup span {
    font-size: 16px;
    line-height: 19.36px;
  }
}
.thank-you-popup input[type="button"] {
  width: 100%;
}
/*# sourceMappingURL=popup.css.map */