.popup {
    position: fixed;
    z-index: 100;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
  }
  
  .popup__inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
    height: auto;
    background: #fff;
    color: #222;
    -webkit-box-shadow: #ccc 0 0 30px;
    box-shadow: #ccc 0 0 30px;
  }
  
  .popup-close {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 100%;
  }
  
  .popup-close:hover::before {
    background: #b30906;
  }
  
  .popup-close::before {
    font-family: "msi-icons" !important;
    content: "\ea02";
    color: #fff;
    font-size: 20px;
    position: absolute;
    left: 100%;
    width: 25px;
    height: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #d45f05;
    cursor: pointer;
  }
  
  @media (min-width: 996px) {
    .popup-close::before {
      width: 50px;
      height: 50px;
      font-size: 30px;
    }
  }
  
  .popup__header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#b30906),
      color-stop(#fdcb04),
      to(#b30906)
    );
    background: linear-gradient(to right, #b30906, #fdcb04, #b30906);
    padding: 10px;
    text-align: center;
    font-size: 24px;
    color: #fff;
    text-shadow: #490706 1px 1px 3px;
  }
  
  @media (min-width: 996px) {
    .popup__header {
      font-size: 30px;
    }
  }
  
  .popup__content {
    height: 80vh;
    overflow-y: auto;
    padding: 25px;
  }
  
  .popup__content::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  .popup__content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  .popup__content::-webkit-scrollbar-thumb {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#737576),
      color-stop(#bdbfc3),
      to(#96999c)
    );
    background: linear-gradient(to bottom, #737576, #bdbfc3, #96999c);
    border-radius: 10px;
  }
  
  @media (min-width: 996px) {
    .popup__content {
      padding: 50px;
    }
  }
  
  .terms {
    font-size: 17px;
    line-height: 1.8;
    font-weight: normal;
  }
  
  .terms-title {
    font-weight: bold;
    font-size: 20px;
    padding-bottom: 15px;
    margin-top: 25px;
  }
  
  .terms ul {
    margin-left: 20px;
  }
  
  .terms ul li {
    list-style: disc;
    padding: 5px 0;
  }
  
  .terms ol {
    margin-left: 25px;
  }
  
  .terms ol li {
    list-style: lower-roman;
  }
  
  .terms h4 {
    padding: 15px 0;
  }
  
  .tcBox a {
    color: #dc341a;
    text-decoration: underline;
  }
  
  .terms a:hover {
    text-decoration: none;
  }
  
  .terms table {
    display: table;
    margin-top: 10px;
    width: 100%;
  }
  
  .terms table th {
    background: -webkit-gradient(
      linear,
      left top,
      right top,
      from(#dc7d6e),
      color-stop(#e6ac75),
      to(#ea5a5a)
    );
    background: linear-gradient(to right, #dc7d6e, #e6ac75, #ea5a5a);
    padding: 10px;
    color: #fff;
  }
  
  .terms table td {
    border: #ccc 1px solid;
    padding: 10px;
  }

  .tcBox {
    font-size: 17px;
    line-height: 1.8;
  }
  
  .tcBox ul {
    margin-left: 20px;
  }
  .tcBox ul.terms__numLi li {
    list-style-type: decimal;
  }
  .tcBox ul li {
    list-style: disc;
    padding: 5px 0;
  }
  
  .tcBox ol {
    margin-left: 25px;
  }
  
  .tcBox ol li {
    list-style: lower-roman;
  }
  
  .tcBox h4 {
    padding: 15px 0;
  }
  
  .tcBox table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
  }
  .tcBox table tr:nth-of-type(1) th:nth-of-type(1) {
    width: 40%;
  }
  .tcBox table tr:nth-of-type(1) th:nth-of-type(2) {
    width: 30%;
  }
  .tcBox table tr:nth-of-type(1) th:nth-of-type(3) {
    width: 30%;
  }
  .tcBox table th {
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(#8ca6d1),
      to(#4292e9)
    );
    background: linear-gradient(to right, #452689, #6596ee);
    padding: 15px;
    text-align: center;
    color: #fff;
    border-right: #fff 1px solid;
    line-height: 1.2;
  }

  .tcBox table th span {
    font-size: 14px;
    font-weight: 500;
  }

  .tcBox table strong {
    font-weight: 600;
  }
  
  .tcBox table td {
    padding: 5px 10px;
    text-align: center;
    font-size: 15px;
    font-family: var(--MSIBodyFont);
  }

  .tcBox table th, td {
    border: #ababab 1px solid;
  }
  
  .tcBox .title {
    margin: 20px 0 10px;
    position: relative;
  }
  
  .tcBox .title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    background: -webkit-gradient(
      linear,
      right top,
      left top,
      from(#8ca6d1),
      to(#4292e9)
    );
    background: linear-gradient(to left, #8ca6d1, #4292e9);
  }
  
  .tcBox .title span {
    display: inline-block;
    position: relative;
    z-index: 2;
    background: #fff;
    padding-right: 5px;
  }

  .tcBox table.colSty tr th {
    width: 25% !important;
  }

  .