.popup {
  width: 100%;
  height: 100%;
  background: rgba(245, 246, 247, 0.72);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  color: #010101;
  backdrop-filter: blur(8px);
}
.popup__heading {
  position: relative;
  font-family: var(--MSIBodyFont);
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: transparent;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: sticky;
  padding: 14px 44px 14px 16px;
  top: 0;
  color: #ffffff;
  z-index: 2;
}
@media (min-width: 996px) {
  .popup__heading {
    padding: 16px 48px 16px 24px;
  }
}
.popup__area {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fafafa));
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid #dde0e4;
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(0, 0, 0, 0.04);
  width: 94%;
  max-width: 1280px;
  height: auto;
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 996px) {
  .popup__area {
    width: 90%;
    max-height: 90vh;
  }
}
.popup__area::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(0, 0, 0, 0.06);
}
.popup__area::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 3px;
}
.popup__area::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.04);
}
.popup__content {
  text-align: left;
  font-family: var(--MSIBodyFont);
  font-size: clamp(13px, 3.2vw, 16px);
  line-height: 1.6;
  color: #010101;
  padding: 14px 14px 20px;
}
@media (min-width: 996px) {
  .popup__content {
    padding: 30px 50px 40px;
  }
}
.popup__table-wrap {
  overflow-x: visible;
  margin: 0;
}
.popup__table {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  border-collapse: collapse;
}
.popup__table thead {
  display: none;
}
.popup__table tbody {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
}
@media (min-width: 576px) {
  .popup__table tbody {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media (min-width: 996px) {
  .popup__table tbody {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
.popup__table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0;
  border: 1px solid #dde0e4;
  border-radius: 10px;
  overflow: hidden;
  background: #f2f3f5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popup__table th,
.popup__table td {
  border: none;
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.popup__table th {
  background: #111111;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}
.popup__table td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid #dde0e4;
}
.popup__table td::before {
  content: attr(data-label);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 55%;
  font-size: 12px;
  font-weight: 700;
  color: #555555;
  line-height: 1.3;
}
.popup__table td:last-child {
  border-bottom: none;
}
.popup__table-img {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 16px 12px 12px;
  background: transparent;
}
.popup__table-img::before {
  display: none;
}
.popup__table-img img {
  display: block;
  width: 96px;
  height: 96px;
  max-width: none;
  margin: 0;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (min-width: 996px) {
  .popup__table-img img {
    width: 110px;
    height: 110px;
  }
}
.popup__table-name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #010101;
}
@media (min-width: 996px) {
  .popup__table-name {
    font-size: 14px;
  }
}
.popup__table-center {
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}

.popup .popup-close,
.popup .popup__close {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transition: transform 0.3s ease, opacity 0.2s ease, -webkit-transform 0.3s ease;
  border-radius: 100%;
  background: transparent;
  border: solid 2px #ffffff;
}
.popup .popup-close::after, .popup .popup-close::before,
.popup .popup__close::after,
.popup .popup__close::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  height: 2px;
  width: 10px;
  border-radius: 30px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.popup .popup-close::after,
.popup .popup__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 996px) {
  .popup .popup-close,
  .popup .popup__close {
    width: 36px;
    height: 36px;
    right: 24px;
  }
  .popup .popup-close::after, .popup .popup-close::before,
  .popup .popup__close::after,
  .popup .popup__close::before {
    top: 14px;
    left: 6px;
    height: 2px;
    width: 20px;
  }
}
.popup .popup-close:hover,
.popup .popup__close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: transparent;
  text-decoration: none;
  border-color: #ffffff;
  opacity: 0.75;
}
.popup .popup-close:hover::after, .popup .popup-close:hover::before,
.popup .popup__close:hover::after,
.popup .popup__close:hover::before {
  background: #ffffff;
}

.popup__content a {
  color: #010101;
  text-decoration: underline;
  word-break: break-word;
}
.popup__content a:hover {
  color: #333333;
}
.popup__content .popRedeem {
  text-align: center;
}
.popup__content .popRedeem__titlebox {
  margin: 0 auto -25px;
}
.popup__content .popRedeem__title {
  display: inline-block;
  border: 8px solid #fff;
  padding: 8px 28px;
  border-radius: 999px;
  background: #3f48cc;
  color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}
.popup__content .popRedeem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  text-align: left;
}
@media (min-width: 996px) {
  .popup__content .popRedeem__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}
.popup__content .popRedeem__item {
  position: relative;
  margin: 0;
  font-size: clamp(14px, 1.5vw, 16px);
}
@media (min-width: 996px) {
  .popup__content .popRedeem__item {
    padding: 0 18px;
    border-right: 1px solid rgba(0, 0, 0, 0.12);
  }
  .popup__content .popRedeem__item:last-child {
    border-right: none;
  }
}
.popup__content .popRedeem__item h4 {
  margin: 0 0 8px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.45;
  color: #010101;
}
.popup__content .popRedeem__item p {
  margin: 6px 0;
  font-size: 0.95em;
  line-height: 1.55;
  color: #010101;
}
.popup__content .popRedeem__item span {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 15px;
  color: #010101;
  font-weight: 700;
  border-radius: 20px;
  background: #f2f3f5;
}
.popup__content .popRedeem__note {
  margin-top: 8px !important;
  color: #e40046 !important;
  font-weight: 700;
}
.popup__content .popRedeem .text__note {
  margin-top: 20px;
  font-size: 0.75em;
  line-height: 1.5;
  text-align: left;
  color: rgba(1, 1, 1, 0.55);
}
.popup__content .popTC {
  position: relative;
}
.popup__content .popTC p {
  margin: 0 0 12px;
  line-height: 1.55;
  color: #010101;
}
.popup__content .popTC__subtitle {
  margin: 28px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  text-align: left;
  color: #010101;
}
@media (min-width: 996px) {
  .popup__content .popTC__subtitle {
    margin-top: 36px;
  }
}
.popup__content .popTC__line {
  width: 100%;
  height: 1px;
  margin: 6px auto 16px;
  background: #dde0e4;
}
.popup__content .popTC ul,
.popup__content .popTC ol {
  margin: 8px 0 12px 1.2em;
  padding-left: 1.2em;
}
.popup__content .popTC ul li,
.popup__content .popTC ol li {
  display: list-item;
  margin: 8px 0;
  line-height: 1.55;
}
.popup__content .popTC ul.lower-roman {
  list-style: lower-roman;
}
.popup__content .popTC ul.lower-roman li {
  list-style: lower-roman;
}
.popup__content .popTC ul.discStyle {
  list-style: disc;
}
.popup__content .popTC ul.discStyle li {
  list-style: disc;
}
.popup__content .popTC ol.lower-alpha,
.popup__content .popTC ul .lower-alpha {
  list-style: lower-alpha;
}
.popup__content .popTC ol.lower-alpha li,
.popup__content .popTC ul .lower-alpha li {
  list-style: lower-alpha;
}
.popup__content .popTC ol {
  list-style: decimal;
}
.popup__content .popTC ol li {
  list-style: decimal;
}

.popup--flow .popup__area,
.popup--terms .popup__area {
  background: #fff;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
          box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}
.popup--flow .popup__heading,
.popup--terms .popup__heading {
  position: sticky;
  top: 0;
  z-index: 3;
  min-height: 60px;
  padding: 16px 48px 16px 16px;
  background: transparent;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #010101;
}
@media (min-width: 996px) {
  .popup--flow .popup__heading,
  .popup--terms .popup__heading {
    padding: 12px 56px 12px 24px;
  }
}
.popup--flow .popup__heading-text,
.popup--terms .popup__heading-text {
  display: block;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #010101;
}
.popup--flow .popup__heading .popup__close,
.popup--terms .popup__heading .popup__close {
  top: 50%;
  bottom: auto;
  right: 16px;
  width: 28px;
  height: 28px;
  margin: 0;
  border: none;
  border-radius: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popup--flow .popup__heading .popup__close::after, .popup--flow .popup__heading .popup__close::before,
.popup--terms .popup__heading .popup__close::after,
.popup--terms .popup__heading .popup__close::before {
  top: 13px;
  left: 2px;
  width: 24px;
  height: 2px;
  background: #010101;
}
.popup--flow .popup__heading .popup__close:hover,
.popup--terms .popup__heading .popup__close:hover {
  border: none;
  opacity: 0.6;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.popup--flow .popup__heading .popup__close:hover::after, .popup--flow .popup__heading .popup__close:hover::before,
.popup--terms .popup__heading .popup__close:hover::after,
.popup--terms .popup__heading .popup__close:hover::before {
  background: #010101;
}
@media (min-width: 996px) {
  .popup--flow .popup__heading .popup__close,
  .popup--terms .popup__heading .popup__close {
    right: 24px;
    width: 36px;
    height: 36px;
  }
  .popup--flow .popup__heading .popup__close::after, .popup--flow .popup__heading .popup__close::before,
  .popup--terms .popup__heading .popup__close::after,
  .popup--terms .popup__heading .popup__close::before {
    top: 17px;
    left: 4px;
    width: 28px;
  }
}
.popup--flow .popup__content,
.popup--terms .popup__content {
  padding: 8px 20px 32px;
}
@media (min-width: 996px) {
  .popup--flow .popup__content,
  .popup--terms .popup__content {
    padding: 12px 48px 40px;
  }
}

.popup--flow .popRedeem {
  position: relative;
  padding: 44px 16px 32px;
  border-radius: 16px;
  background: #f0f5fa;
}
@media (min-width: 996px) {
  .popup--flow .popRedeem {
    padding: 48px 28px 36px;
  }
}
.popup--flow .popRedeem__titlebox {
  text-align: center;
}
.popup--flow .popRedeem__title {
  position: relative;
  z-index: 1;
  padding: 10px 40px;
  border-radius: 999px;
  background: #3f48cc;
  color: #fff;
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}
.popup--flow .popRedeem__grid {
  gap: 0;
}
@media (min-width: 996px) {
  .popup--flow .popRedeem__grid {
    gap: 0;
  }
}
.popup--flow .popRedeem__item {
  text-align: center;
  font-size: clamp(13px, 1.15vw, 15px);
  padding: 32px 12px;
}
.popup--flow .popRedeem__item:not(:last-child) {
  border-bottom: 1px solid rgba(1, 1, 1, 0.35);
}
.popup--flow .popRedeem__item:first-child {
  padding-top: 20px;
}
.popup--flow .popRedeem__item:last-child {
  padding-bottom: 24px;
}
@media (min-width: 996px) {
  .popup--flow .popRedeem__item {
    padding: 28px 22px;
    border-bottom: none;
  }
  .popup--flow .popRedeem__item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid rgba(1, 1, 1, 0.35);
  }
  .popup--flow .popRedeem__item:first-child {
    padding-top: 28px;
  }
  .popup--flow .popRedeem__item:last-child {
    padding-bottom: 28px;
    border-right: none;
  }
}
.popup--flow .popRedeem__item span {
  display: inline-block;
  margin: 0 auto 16px;
  padding: 0 6px;
  border: none;
  border-radius: 0;
  background: none;
  font-size: clamp(24px, 1.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.04em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.popup--flow .popRedeem__item span.blue {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #b1e1ff), color-stop(68%, #b1e1ff), color-stop(68%, transparent));
  background: linear-gradient(180deg, transparent 40%, #b1e1ff 40%, #b1e1ff 68%, transparent 68%);
}
.popup--flow .popRedeem__item span.pink {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #ffc5dc), color-stop(68%, #ffc5dc), color-stop(68%, transparent));
  background: linear-gradient(180deg, transparent 40%, #ffc5dc 40%, #ffc5dc 68%, transparent 68%);
}
.popup--flow .popRedeem__item p {
  margin: 0 0 8px;
  font-size: 1em;
  line-height: 1.7;
  text-align: center;
}
.popup--flow .popRedeem__item p:last-child {
  margin-bottom: 0;
}
.popup--flow .popRedeem__item .popRedeem__path {
  font-size: 0.92em;
  line-height: 1.55;
}
.popup--flow .popRedeem__item a {
  color: #3f48cc;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.popup--flow .popRedeem__item a:hover {
  color: #3440b0;
}
.popup--flow .popRedeem__note {
  margin-top: 16px !important;
  color: #e40046 !important;
  font-weight: 700;
  font-size: 0.95em !important;
  line-height: 1.55 !important;
  text-align: center;
}
.popup--flow .popTC--flow {
  margin-top: 32px;
  padding: 0;
}
@media (min-width: 996px) {
  .popup--flow .popTC--flow {
    margin-top: 40px;
  }
}
.popup--flow .popTC--flow .popTC__heading {
  margin: 0 0 8px;
}
.popup--flow .popTC--flow .popTC__intro {
  margin: 0 0 12px;
}
.popup--flow .popTC--flow .popTC__list {
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.7;
}

.popup--terms .popTC__heading {
  margin-top: 0;
}

.popup--flow .popTC__heading,
.popup--terms .popTC__heading {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 800;
  color: #3f48cc;
  text-underline-offset: 4px;
  text-decoration-color: #3f48cc;
}
.popup--flow .popTC__intro,
.popup--terms .popTC__intro {
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 1.65;
  color: #010101;
}
.popup--flow .popTC__list,
.popup--terms .popTC__list {
  margin: 0;
  padding-left: 1.4em;
}
.popup--flow .popTC__list li,
.popup--terms .popTC__list li {
  margin: 10px 0;
  line-height: 1.7;
}
.popup--flow .popTC__sublist,
.popup--terms .popTC__sublist {
  margin: 8px 0 0;
  padding-left: 1.4em;
  list-style: decimal;
}
.popup--flow .popTC__sublist li,
.popup--terms .popTC__sublist li {
  margin: 6px 0;
}
.popup--flow .popTC__warn,
.popup--terms .popTC__warn {
  color: #e40046;
  font-weight: 700;
}
.popup--flow .popTC a,
.popup--terms .popTC a {
  color: #3f48cc;
  text-decoration: underline;
}
.popup--flow .popTC a:hover,
.popup--terms .popTC a:hover {
  color: #3440b0;
}/*# sourceMappingURL=popup.css.map */