@charset "utf-8";

html.is-rt-popup-open {
  overflow: hidden;
  scrollbar-gutter: stable;
}

body.is-rt-popup-open {
  position: fixed;
  top: var(--rt-popup-scroll-position);
  left: 0;
  width: 100%;
  overflow: hidden;
}

.rt-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 50%);
}

.rt-popup-overlay[hidden] {
  display: none;
}

.rt-popup {
  position: relative;
  max-width: 400px;
  width: 94vw;
  border: solid 2px #33b1cd;
  border-radius: 20px;
  padding: 0 0 30px;
  background: url(../../images/rt-popup-bg.svg) no-repeat -70px -70px / 470px;
  box-shadow: 0 6px 30px rgb(0 0 0 / 30%);
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.rt-popup__close-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  border-radius: 10000px;
  background: #fa7757;
  color: #fff;
  font-size: 25px;
}

.rt-popup__close-text {
  margin-top: 16px;
  font-weight: 400;
  text-decoration: underline;
}

.rt-popup__close-text:hover {
  text-decoration: none;
}

.rt-popup__upper {
  margin-bottom: 20px;
  padding: 10px 0;
  border-radius: 18px 18px 0 0;
  background: #33b1cd;
  color: #fffdbf;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.rt-popup__maincopy {
  margin-bottom: 20px;
  font-size: 31px;
}

.rt-popup__subcopy {
  margin: 0 auto 6px;
  font-size: 25px;
}

.rt-popup__coupon-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.rt-popup__coupon {
  margin-bottom: 0;
  font-size: 31px;
}

.rt-popup__clip {
  padding: 4px 10px;
  border-radius: 9999px;
  background: #eeca21 !important;
  color: #003241;
  font-size: 12px;
  font-weight: 700;
}

.rt-popup__note {
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 500;
}

.rt-popup .cta__button {
  max-width: 90%;
  font-size: 25px;
}

@media (max-width: 767px) {
  .rt-popup {
    padding-bottom: 24px;
  }

  .rt-popup__upper {
    font-size: 18px;
  }

  .rt-popup__close-cross {
    top: -20px;
    right: -10px;
    width: 36px;
    height: 36px;
    font-size: 25px;
  }

  .rt-popup__maincopy {
    margin-bottom: 10px;
    font-size: 25px;
  }

  .rt-popup__subcopy {
    font-size: 20px;
  }

  .rt-popup__coupon-wrapper {
    margin-bottom: 14px;
  }

  .rt-popup__coupon {
    font-size: 25px;
  }

  .rt-popup__note {
    font-size: 16px;
  }

  .rt-popup .cta__button {
    padding: 20px 10px;
    font-size: 20px;
  }
}
