.y-color {
    color: #f0b31d;
  }
  
  .popup {
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    z-index: 999;
    overflow: hidden;
    overflow-y: auto;
  }
  
  .popup * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  
  .popup__close {
    width: 40px;
    height: 40px;
    top: 25px;
    right: 25px;
    display: block;
    background: url(https://storage-asset.msi.com/event/2022/cnd/dying_light2/images/icon-close.svg)
      center center no-repeat;
    background-size: cover;
    position: absolute;
    z-index: 5;
    opacity: 0.8;
  }
  
  .popup__close:hover {
    opacity: 1;
  }

  .popup__info{
    padding: 0 25px;
    margin: 0px auto 20px;
    /* text-align: center; */
  }
  
  .popup__title {
    text-align: center;
    display: block;
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f0b31d;
  }
  
  .popup__inner {
    text-align: left;
    vertical-align: middle;
    position: relative;
    width: 90%;
    max-width: 1280px;
    margin: 50px auto 0;
  }
  
  .popup__content {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    padding: 5px 10px;
    position: relative;
    border: 1px solid #f0b31d;
  }
  
  .popup__content::before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
  }
  
  .popup__content::after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
  }
  
  .popup__content p {
    padding-bottom: 20px;
  }
  
  .popup__content ul {
    margin: 0 20px;
    padding: 0 0 10px;
  }
  
  .popup__content ul li {
    list-style: circle;
  }
  
  .popup__content footer {
    text-align: center;
    padding-top: 45px;
  }
  
  .popup__content footer button {
    outline: none;
    border: #fff 1px solid;
    color: #ffffff;
    background: none;
    font-size: 16px;
    padding: 10px 25px;
    cursor: pointer;
  }
  
  .popup__content footer button:hover {
    background: #f0b31d;
  }
  
  .popup__content .faq__item {
    padding-bottom: 35px;
  }
  
  .popup__content .faq__q {
    color: #fff;
    font-weight: bold;
  }
  
  .popup__content .faq__a {
    padding: 10px;
  }
  
  .popup__content .terms__title {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
  }
  
  .popup__content a,
  .popup__content span a {
    color: var(--color-red-500);
    border: 3px solid #f0b31d;
    padding: 5px 20px;
    margin-top: 10px;
    color: #fff;
    display: inline-block;
    transition: 0.2s;
  }
  
  .popup__content a:hover {
    text-decoration: none;
    background-color: #f0b31d;
    color: #000;
  }
  .popup__content-tc a,
  .popup__content-tc span a {
    color: #f0b31d;
    border: none;
    padding: 0;
    margin-top: 0;
    display: inline-block;
    transition: none;
  }
  .popup__content-tc a:hover,
  .popup__content-tc span a:hover {
    text-decoration: underline;
    background-color: transparent;
    color: #fff;
  }
  .popup__content ul li {
    list-style: disc;
    padding: 8px 0;
  }
  
  .popup__content ul li ol {
    margin-left: 20px;
  }
  
  .popup__content ul li ol li {
    /* list-style: lower-roman; */
    list-style: none;
    padding: 3px 0;
  }
  
  .popup__content .pd__category {
    margin: 25px 0 10px;
    padding: 5px 15px;
    font-weight: bold;
    border: #fff 1px solid;
    display: inline-block;
  }
  
  .popup__content dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: rgba(255, 255, 255, 0.3) 1px solid;
    padding: 10px 0 20px;
  }
  
  .popup__content dl dt {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: calc(50% - 2px);
    font-size: 13px;
  }
  
  @media (min-width: 992px) {
    /* .popup__content {
      padding: 40px;
    } */
  
    .popup__content dl dt {
      width: calc(25% - 2px);
    }
  }
  
  .popup__content .hash__lsit {
    text-align: center;
  }
  
  .popup__content .hash__lsit a {
    display: inline-block;
    background: #ffffff;
    border-radius: 10px;
    width: 150px;
    height: 60px;
    line-height: 60px;
    margin: 5px;
    position: relative;
    vertical-align: top;
    text-align: center;
    -webkit-box-shadow: #eee 0 0 10px inset;
    box-shadow: #eee 0 0 10px inset;
    border: #fff 3px solid;
  }
  
  .popup__content .hash__lsit a:hover {
    border-color: #15488a;
  }
  
  .popup__content .hash__lsit a img {
    vertical-align: middle;
    max-height: 45px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  /* T&C */
  #popup-terms .popup__inner {
    padding: 20px;
    background: #000;
  }
  
  table,
  th,
  td {
    border: 1px solid #ffffff;
    border-collapse: collapse;
  }
  
  .popup__content table {
    width: 100%;
    padding: 20px;
    margin: 20px 0;
  }
  
  .popup__content table th {
    background: #f0b31d;
    color: #ffffff;
    padding: 10px;
  }
  
  .popup__content table td {
    background: #d1d1d1;
    color: #000000;
    padding: 5px;
  }