.terms {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  color: #363d3f;
  backdrop-filter: blur(8px);
}
.terms__wrapper {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 24px;
}
.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 .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: #21a8ec;
  padding: 12px 28px;
  margin: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid #21a8ec;
  border-radius: 8px;
  text-align: center;
  font-family: var(--MSIBodyFont);
  font-size: 22px;
  width: auto;
  min-width: 200px;
  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 .tc__btn {
    font-size: 28px;
    min-width: 280px;
    padding: 14px 40px;
  }
}
.terms__wrapper .tc__btn:hover {
  cursor: pointer;
  text-decoration: none;
  background: #21a8ec;
  color: #fff;
  border-color: #21a8ec;
  -webkit-box-shadow: 0 0 14px rgba(33, 168, 236, 0.4);
          box-shadow: 0 0 14px rgba(33, 168, 236, 0.4);
}
.terms__note {
  font-size: 14px;
  color: #4f4f4f;
  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, right top, from(#1a7fc0), color-stop(50%, #21a8ec), to(#1a7fc0));
  background: linear-gradient(90deg, #1a7fc0 0%, #21a8ec 50%, #1a7fc0 100%);
  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(124, 200, 242, 0.45);
  text-shadow: rgba(26, 127, 192, 0.45) 1px 1px 2px;
  z-index: 2;
}
.terms__area {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  margin: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f7fbfe));
  background: linear-gradient(180deg, #fff 0%, #f7fbfe 100%);
  border: 1px solid rgba(33, 168, 236, 0.45);
  border-radius: 12px;
  -webkit-box-shadow: 0 12px 40px rgba(22, 48, 72, 0.35), 0 0 0 1px rgba(26, 127, 192, 0.12);
          box-shadow: 0 12px 40px rgba(22, 48, 72, 0.35), 0 0 0 1px rgba(26, 127, 192, 0.12);
  width: 90%;
  max-width: 1280px;
  height: auto;
  max-height: 90vh;
  overflow-x: hidden;
  overflow-y: auto;
}
.terms__area::-webkit-scrollbar {
  width: 6px;
  background-color: rgba(26, 127, 192, 0.12);
}
.terms__area::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#2bb0f0), to(#1a7fc0));
  background: linear-gradient(180deg, #2bb0f0, #1a7fc0);
  border-radius: 3px;
}
.terms__area::-webkit-scrollbar-track {
  background-color: rgba(22, 48, 72, 0.08);
}
.terms__area li {
  margin-bottom: 15px;
}
.terms__area ul {
  list-style: disc !important;
  margin: 12px 0 12px 1.2em;
  padding-left: 1.2em;
}
.terms__area ul li {
  display: list-item;
  list-style: disc !important;
  margin: 8px 0;
}
.terms__area ul ul {
  list-style: circle !important;
  margin: 8px 0 8px 1.2em;
}
.terms__area ol {
  list-style: decimal !important;
  margin: 12px 0 12px 1.2em;
  padding-left: 1.2em;
}
.terms__area ol li {
  display: list-item;
  list-style: decimal !important;
  margin: 8px 0;
}
.terms__content {
  text-align: left;
  font-family: var(--MSIBodyFont);
  font-size: clamp(13px, 3.2vw, 16px);
  line-height: 1.6;
  color: #363d3f;
  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(26, 127, 192, 0.25);
  padding: 10px 12px;
  text-align: left;
  vertical-align: middle;
}
.terms__content table th {
  background: #1a7fc0;
  color: #fff;
  font-weight: 700;
}
.terms__content table td {
  background: rgba(33, 168, 236, 0.06);
}
.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: #1a7fc0;
}
.terms__title span {
  text-decoration: none;
}
.terms__area-line {
  width: 100%;
  height: 1px;
  margin: 10px auto 40px auto;
  position: relative;
  background: rgba(33, 168, 236, 0.3);
  z-index: 5;
}
.terms__area-subtitle {
  font-size: var(--title-lg);
  margin-top: 40px;
  text-align: center;
  font-weight: bold;
  color: #1a7fc0;
}
.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: #21a8ec;
  text-decoration: underline;
}
.terms a:hover {
  cursor: pointer;
  color: #1a7fc0;
}
.terms p {
  line-height: 1.5;
  text-align: left;
  color: #363d3f;
}
.terms p span {
  text-decoration: underline;
}
.terms strong,
.terms b {
  color: #1a7fc0;
}

.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 */