.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: 15px;
  height: 15px;
  top: 20px;
  right: 20px;
  display: block;
  background: url(https://storage-asset.msi.com/event/2025/NB/black-friday-laptop-sale-2025/images/close.png) center center no-repeat ;
  background-size: cover;
  position: absolute;
  z-index: 50;
  opacity: 0.8;
}

.popup__close:hover {
  opacity: 1;
  filter: drop-shadow(0px 0px 5px #00c0ff);
}
.popup__body {
  position: relative;
  z-index: 10;
}
.popup__title{
  text-align: center;
  display: block;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #7c5d1c, #ebd181, #ac8127, #d8d29d, #c49635);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 996px) {
  .popup__title{
    font-size: 30px;
  }
}

.popup__inner {
  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; */
}

#popup-terms .popup__inner {
  text-align: left;
}

#popup-howToRedeem .popup__inner {
  text-align: center;
}

/* .popup__inner::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
} */

/* .popup__inner::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
} */

.popup__content {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
}

.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 a {
  color: #eec572;
}

.popup__content a:hover {
  text-decoration: underline;
}

.popup__content ul {
  margin-left: 20px;
  /* padding: 0 0 10px; */
}

.popup__content footer {
  text-align: center;
}

@media (min-width: 996px) {
  .popup__content footer {
    text-align: center;
    padding-top: 20px;
  }
}

.popup__content footer button {
  position: relative;
  outline: none;
  color: #ffffff;
  background: linear-gradient(#e64011, #ae1f0d, #ed9774);
  padding: 10px 50px;
  border-radius: 50px;
}

.popup__content footer button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99%;
  height: 99%;
  z-index: 10;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 50px;
  background-image: linear-gradient(to right, #f1c654, #ffee96, #a2621e, #eea54c);
  background-origin: border-box;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-composite: exclude, add;
  mask-clip: padding-box, border-box;
}

.popup__content footer button:hover {
  background: transparent;
}

.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 .redeem__text a {
  color: #eec572;
  word-break: break-all;
}

.popup__content .redeem__text a:hover {
  text-decoration: underline;
}

.popup__content .redeem__btn {
  position: relative;
  color: #fff;
  background: linear-gradient( #e64011, #ae1f0d, #ed9774);
  padding: 10px 50px;
  border-radius: 50px;
  color: #fff;
  text-shadow: 0 0 10px #000;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0;
  display: inline-block;
}
.popup__content .redeem__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 99%;
  height: 99%;
  z-index: 10;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  border-radius: 50px;
  background-image: linear-gradient(to right, #f1c654, #ffee96, #a2621e, #eea54c);
  background-origin: border-box;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-composite: exclude, add;
  mask-clip: padding-box, border-box;
}

.popup__content .redeem__btn:hover {
  background: none;
}

.popup__content ul li {
  list-style: none;
  /* padding: 5px 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 ul li ol li b {
  color: #ff000f;
}

.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%);
}


/* HOW TO REDEEM */
.popup__header h2 {
  position: relative;
  color: #eec572;
  font-size: 22px;
  background: linear-gradient(45deg, #7c5d1c, #ebd181, #ac8127, #d8d29d, #c49635);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 10;
  line-height: 1.2;
}
@media (min-width: 996px) {
  .popup__header h2 {
    font-size: 30px;
  }
}
#popup-howToRedeem .popup__content {
  position: relative;
  background: #000;
}
/* #popup-howToRedeem .popup__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  background-image: linear-gradient(to right, #f1c654, #ffee96, #a2621e, #eea54c);
  background-origin: border-box;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-composite: exclude, add;
  mask-clip: padding-box, border-box;
  z-index: 1;
} */

#popup-howToRedeem .popup__inner {
  margin: 50px auto;
  padding: 20px;
  width: 90%;
}

#popup-howToRedeem .popup__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  background-image: linear-gradient(to right, #f1c654, #ffee96, #a2621e, #eea54c);
  background-origin: border-box;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-composite: exclude, add;
  mask-clip: padding-box, border-box;
  z-index: 1;
}

.popup__content .powerByMsi__redeem {
  color: #000;
}

@media (min-width: 768px) {
  #popup-howToRedeem .popup__close {
    top: 25px;
    right: 25px;
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 992px) {
  /* #popup-howToRedeem .popup__close {
    top: 80px;
    right: 26px;
  } */
  #popup-howToRedeem .popup__content {
    padding: 100px 50px;
  }
  #popup-howToRedeem .popup__inner {
    margin: 0 auto;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}


/* T&C */
#popup-terms .popup__inner {
  position: relative;
  padding: 20px;
  background: #000;
}
#popup-terms .popup__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  border-width: 3px;
  border-style: solid;
  border-color: transparent;
  border-radius: 10px;
  background-image: linear-gradient(to right, #f1c654, #ffee96, #a2621e, #eea54c);
  background-origin: border-box;
  mask-image: linear-gradient(white, white), linear-gradient(white, white);
  mask-composite: exclude, add;
  mask-clip: padding-box, border-box;
}

table, th, td {
  border: 1px solid #0d3f87;
  border-collapse: collapse;
}

.popup__content table {
  width: 100%;
  margin: 20px 0;
}

.popup__content table th {
  background: #0d3f87;;
  color: #00c0ff;
  
  padding: 5px;
}

.popup__content table td {
  background: #031836;
  color: #fff;
  padding: 5px;
}

.redeemTitleBox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0px;
  font-size: 18px;
  font-weight: bold;
}

.redeemTitleBox figure {
  width: 20%;
}

.redeemTitleBox span {
  background: linear-gradient(to bottom, #dc972e 50%, #cf601b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/*# sourceMappingURL=popup.css.map */                         