.terms {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}
.terms__wrapper {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 0px;
}
.terms__wrapper .msi__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.terms__wrapper .nr__btn,
.terms__wrapper .tc__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  color: #C5A059;
  padding: 10px 16px;
  background: transparent;
  border: 2px solid #C5A059;
  border-radius: 50px;
  text-align: center;
  font-family: var(--MSIBodyFont);
  font-size: 14px;
  width: auto;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
}
@media (min-width: 996px) {
  .terms__wrapper .nr__btn,
  .terms__wrapper .tc__btn {
    padding: 12px 20px;
  }
}
.terms__wrapper .nr__btn:hover,
.terms__wrapper .tc__btn:hover {
  cursor: pointer;
  text-decoration: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#dabe74), to(#977632));
  background: linear-gradient(to bottom, #dabe74, #977632);
  color: #fff;
  border-color: #E9CC88;
  -webkit-box-shadow: 0 0 14px rgba(154, 122, 58, 0.45);
          box-shadow: 0 0 14px rgba(154, 122, 58, 0.45);
}
.terms__wrapper .apply__cta-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}
.terms__note {
  font-size: 14px;
  color: rgba(245, 230, 200, 0.75);
  text-align: center;
}
.terms__heading {
  font-family: var(--MSIBodyFont);
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#dabe74), to(#977632));
  background: linear-gradient(to bottom, #dabe74, #977632);
  margin-bottom: 0;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: sticky;
  padding: 16px 48px 16px 24px;
  top: 0;
  color: #fff;
  border-bottom: 2px solid rgba(233, 204, 136, 0.35);
  text-shadow: rgba(96, 75, 32, 0.6) 1px 1px 2px;
  z-index: 2;
}
.terms__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(#1a1612), to(#000));
  background: linear-gradient(180deg, #1a1612 0%, #000 100%);
  border: 1px solid rgba(197, 160, 89, 0.45);
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(154, 122, 58, 0.2);
          box-shadow: 0 12px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(154, 122, 58, 0.2);
  width: 90%;
  max-width: 1280px;
  margin: auto;
  height: auto;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.terms__area::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(96, 75, 32, 0.3);
}
.terms__area::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#dabe74), to(#977632));
  background: linear-gradient(to bottom, #dabe74, #977632);
  border-radius: 3px;
}
.terms__area::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.3);
}
.terms__area li {
  margin-bottom: 15px;
}
.terms__area ul {
  list-style: disc;
  margin: 12px 0 12px 1.2em;
}
.terms__area ul li {
  list-style: disc;
  margin: 8px 0;
}
.terms__area ul ul {
  list-style: circle;
  margin: 8px 0 8px 1.2em;
}
.terms__area ol {
  list-style: decimal;
  margin: 12px 0 12px 1.2em;
}
.terms__area ol li {
  list-style: decimal;
  margin: 8px 0;
}
.terms__content {
  text-align: left;
  font-family: var(--MSIBodyFont);
  font-size: clamp(13px, 3.2vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  padding: 20px 25px 25px;
}
@media (min-width: 996px) {
  .terms__content {
    padding: 30px 50px 40px;
  }
}
.terms__content table {
  display: table;
  width: 100%;
  margin: 16px 0;
  border-collapse: collapse;
}
.terms__content table th,
.terms__content table td {
  border: 1px solid rgba(154, 122, 58, 0.5);
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}
.terms__content table th {
  background: #584730;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}
.terms__content table td {
  background: rgba(96, 75, 32, 0.25);
}
.terms__table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  -webkit-overflow-scrolling: touch;
}
.terms__table {
  min-width: 520px;
}
.terms__title {
  margin: 24px 0 12px;
  font-size: clamp(18px, 4vw, 22px);
  font-weight: 700;
  line-height: 1.4;
  color: #C5A059;
}
.terms__title span {
  text-decoration: none;
}
.terms__area-line {
  width: 100%;
  height: 1px;
  margin: 10px auto 40px auto;
  position: relative;
  background: rgba(197, 160, 89, 0.35);
  z-index: 5;
}
.terms__area-subtitle {
  font-size: var(--title-lg);
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  color: #C5A059;
}
.terms__dashLi li {
  list-style: disc !important;
  margin: 20px 0 10px 18px;
}
.terms__numLi li {
  list-style: lower-alpha !important;
  margin: 20px 0 10px 18px;
}
.terms a {
  color: #D4B87A;
  text-decoration: underline;
}
.terms a:hover {
  cursor: pointer;
  color: #E9CC88;
}
.terms p {
  line-height: 1.5;
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}
.terms p span {
  text-decoration: underline;
}
.terms strong,
.terms b {
  color: #F5E6C8;
}

.terms .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 #fff;
}
.terms .popup-close::after, .terms .popup-close::before {
  content: "";
  font-family: inherit;
  position: absolute;
  top: 6px;
  left: 2px;
  height: 2px;
  width: 10px;
  border-radius: 30px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.terms .popup-close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (min-width: 996px) {
  .terms .popup-close {
    width: 36px;
    height: 36px;
    right: 24px;
    border-width: 2px;
  }
  .terms .popup-close::after, .terms .popup-close::before {
    top: 14px;
    left: 6px;
    height: 2px;
    width: 20px;
  }
}
.terms .popup-close:hover {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  background: transparent;
  text-decoration: none;
  border-color: #fff;
  opacity: 0.85;
}
.terms .popup-close:hover::after, .terms .popup-close:hover::before {
  background: #fff;
}/*# sourceMappingURL=terms.css.map */