.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: 15px;
  right: 15px;
  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: 20;
  opacity: 0.8;
}
.popup__close:hover {
  opacity: 1;
}
.popup__title {
  text-align: center;
  display: block;
  font-size: 30px;
  font-weight: bold;
  padding-top: 50px;
}
@media (min-width: 992px) {
  .popup__title {
    font-size: 35px;
    padding-top: 40px;
  }
}
.popup__inner {
  text-align: left;
  vertical-align: middle;
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 50px auto 0;
  /* padding: 6px; */
  /* background: url(../images/page-bg.jpg) center center no-repeat ; */
  /* background-size: cover */
  /* &::before
  *  content: ""
  *  display: block
  *  width: 16px
  *  height: 16px */
  /* &::after
  *  content: ""
  *  display: block
  *  width: 16px
  *  height: 16px */
}
.popup__body {
  padding: 15px;
  position: relative;
  z-index: 20;
}
.popup__body table {
  background: #222;
  margin: 10px 0;
  width: 100%;
}
@media (min-width: 992px) {
  .popup__body table {
    width: 100%;
  }
}
.popup__body table th, .popup__body table td {
  border: 1px solid #eee;
  border-collapse: collapse;
  font-size: 12px;
}
@media (min-width: 992px) {
  .popup__body table th, .popup__body table td {
    font-size: 14px;
  }
}
.popup__body table th {
  width: 50%;
}
.popup__body table tr:hover {
  background: #393939;
}
.popup__body table tr th, .popup__body table tr td {
  text-align: center;
  padding: 2px 10px;
}
.popup__body table tr th {
  background: -webkit-gradient(linear, left top, left bottom, from(#77a8de), to(#918ff9));
  background: linear-gradient(#77a8de, #918ff9);
}
.popup__content {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  /* padding: 40px 10px; */
  position: relative;
  /* background: rgba(0, 0, 0, 0.9); */
  /* &::before
  *  content: ""
  *  display: block
  *  width: 16px
  *  height: 16px */
  /* &::after
  *  content: ""
  *  display: block
  *  width: 16px
  *  height: 16px */
}
.popup__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: 10;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  background-image: -webkit-gradient(linear, left top, right top, from(#04f2f1), to(#204991));
  background-image: linear-gradient(to right, #04f2f1, #204991);
  background-origin: border-box;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  -webkit-mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(white), to(white)), -webkit-gradient(linear, left top, left bottom, from(white), to(white));
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  -webkit-mask-composite: xor, source-over;
  mask-composite: exclude, add;
  -webkit-mask-clip: padding-box, border-box;
  mask-clip: padding-box, border-box;
}
.popup__content p {
  padding-bottom: 20px;
}
.popup__content ul {
  margin-left: 20px;
  padding: 0 0 10px;
}
.popup__content ul li {
  list-style: circle;
}
.popup__content footer {
  text-align: center;
  padding-top: 20px;
  position: relative;
  z-index: 10;
}
.popup__content footer button {
  outline: none;
  border: #fff 1px solid;
  color: #ffffff;
  background: none;
  font-size: 16px;
  padding: 10px 25px;
  cursor: pointer;
  margin-bottom: 40px;
}
.popup__content footer button:hover {
  background: #77a8de;
}
.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 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #77a8de;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(120deg, #ff00cf 0%, #81f6ff 80%);
  -webkit-background-clip: text;
}
.popup__content a {
  color: #81f6ff;
}
.popup__content a:hover {
  text-decoration: none;
  color: #5380cf;
  text-decoration: underline;
}
.popup__content .terms ul li {
  list-style: disc;
  padding: 8px 0;
}
.popup__content .terms ul li ol {
  margin-left: 20px;
}
.popup__content .terms ul li ol li {
  list-style: lower-roman;
  padding: 3px 0;
}
.popup__content .terms .pd__category {
  margin: 25px 0 10px;
  padding: 5px 15px;
  font-weight: bold;
  border: #fff 1px solid;
  display: inline-block;
}
.popup__content .terms 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 .terms 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 .terms dl dt {
    width: calc(25% - 2px);
  }
}
@media (min-width: 992px) {
  .popup__content {
    /* padding: 40px 20px; */
  }
}

#tc .popup__content {
  background: rgba(0, 0, 0, 0.9);
  padding: 0 10px;
}

/* HOW TO REDEEM */
#popup-howToRedeem .popup__content {
  border: none;
}
#popup-howToRedeem .popup__close {
  top: 4%;
  right: 2%;
  z-index: 30;
}
@media (min-width: 768px) {
  #popup-howToRedeem .popup__close {
    top: 3%;
    right: 2%;
  }
}
@media (min-width: 992px) {
  #popup-howToRedeem .popup__close {
    top: 3%;
    right: 2%;
  }
}
#popup-howToRedeem .popup__inner {
  margin: 50px auto;
  width: 90%;
}
@media (min-width: 992px) {
  #popup-howToRedeem .popup__inner {
    margin: 50px auto 0;
  }
}

.popup__content .powerByMsi__redeem {
  position: relative;
  z-index: 20;
}

.powerByMsi__redeem {
  position: relative;
  /* padding: 40px 0px; */
  text-align: center;
  border-radius: 10px;
  background: #000;
  /* border-image-source: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAAB4BAMAAADLSivhAAAAJFBMVEVHcEzh4eHh4ODg4ODi4ODh4eHh4eHg4ODh4eHf39/h4ODh4OBhceB7AAAAC3RSTlMAf9oju0OYX28Q74DQp+AAAAK5SURBVFjD7ZnPaxNBFMe3+yNj2kuVgoVc+kMKupdlwXroRQXTWC8Bi4i5aNIWsZcIRTxGqRX1EqSCxIs/4sGbiT+q2X9ObfbH7Ga+82ZdxMu8U5KXTyYz897Mvu8zDM6mAtJmDWRT2EV/o9ShYHYbuuw6BTsXocv0KNhagK6eQdon6Nmk4SvQc5eGD6BnmYZ7f7GU9IbYbRpmaADfULCP4PN1FXgf/KNxADCUE2EgiSfte/LUCldVHCZ3iLzsjv1bwmwLw9ZGcBj4tigrH4dOE8HhRlqLk+yJKLzeIDhKZX9y6FNROjYQHGXj5NCHcVzvIvhnvC2tTFivxC9dBA+Sf5mKY+dyvPUwRoIhNxR35DgbyRrY+NhNYoutRK/LN/rPkh9qYJhLKLa0/Sdm7u+cu8SHq4vhI/4k3B9W543BU0/10hh1UwfpzYrxOb3sa7K7JnMQzGTgsiuDf8hhU37NtaXwrhw+ksGH1A3bwbDlUvAAw8/py30ZwZuBgrXEsBIbDFsC+NW9QNHWvTTMDpqBuo2q8x4HzwQ5bVbDGtawhjWsYQ1rWMMa/g/wdF64wz9vl8+rPzOPatcnnvQvuGpsvy4qExwl+l1XXKAwBfqrh0qjVXq+dVzRVfKUVVmYUXVRV1aINuTwWWkVy3IM/BsePPGUa+DUjK2HFePRllvjcFux9nbm3u+cPpY6lpJPLQn7PWFfb2xHU3CabZXd+pJoGn1uv61m/KaH4Vieds6khEC2qCCUxEvTzIiIq9FKlukp+1ehmHYNwd+gmJbIeC8Q/DYauIMFxDVC3BEJiLF0OU1oJKawoVAlYixc4jmh4vpy7C3Jd8oSK+jOgorWawIRvDZedjm8B6TrW8exbp0EJtf9C8nyhRoCxgca9os0QR78m/ZLocZPoZZToWZXidxoSZutUIMvb2vxF2h8C0YZIQ6sAAAAAElFTkSuQmCC); */
  border-image-slice: 40 40 40 40;
  border-image-width: 40px 40px 40px 40px;
  border-image-outset: 40px 40px 40px 40px;
  border-image-repeat: stretch stretch;
  border-style: solid;
  /* margin-top: 50px; */
  padding: 40px 20px;
}

/* T&C pd list */
.pdList {
  margin: 20px 0;
}
.pdList__title {
  color: #fff;
  padding: 5px 0;
  font-size: 16px;
  text-align: center;
  background: #263a4a;
}
.pdList__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: #3b4852;
}
.pdList__wrapper-item {
  width: 50%;
  padding: 5px 0;
  color: #fff;
  background: #3b4852;
  font-size: 12px;
  text-align: center;
  border: 1px solid #263a4a;
  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;
}
@media (min-width: 992px) {
  .pdList__wrapper-item {
    width: 25%;
  }
}
.pdList__wrapper-item:nth-child(odd) {
  background: #3b4852;
  /* background: #263a4a; */
}/*# sourceMappingURL=popup.css.map */