
.popup {
  position: fixed;
  z-index: 99;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-family: var(--font);
  overflow-y: auto;
  display: none;
}
.popup.show {
  display: flex;
  align-items: center;
}
.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  background: url("../images/texture_common.png") center center repeat;
}
.popup__wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../images/line.png") center center repeat-x;
}
.popup__wrapper::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../images/line.png") center center repeat-x;
}
.popup__inner {
  position: relative;
}
.popup__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: url("../images/line-v.png") top center repeat-y;
}
.popup__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: url("../images/line-v.png") top center repeat-y;
}
.popup__header {
  padding: 25px;
  background: url("../images/line.webp") bottom center repeat-x;
}
.popup__header h2 {
  font-size: min(max(3.5vw, 28px), 36px);
  font-weight: bold;
  background-color: #f4dda3;
  background: url(../images/site_pattern.png) left center repeat-x;
  background-size: auto 100%;
  background-clip: text;
  color: #ffffff;
  line-height: 1.2;
  filter: drop-shadow(5px 0 10px rgba(193, 145, 17, 0.5));
  text-transform: uppercase;
  text-align: center;
}
.popup__body {
  background-color: #000;
  padding: 35px;
}
@media (min-width: 996px) {
  .popup__body {
    flex: 0 0 calc(100% - 300px);
    max-height: 100vh;
    overflow-y: auto;
  }
  .popup__body::-webkit-scrollbar-thumb {
    background: #11f9f8;
    border-radius: 20px;
  }
  .popup__body::-webkit-scrollbar {
    width: 10px;
    background: #334c56;
  }
}
.popup__close {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1;
  width: 45px;
  height: 45px;
  cursor: pointer;
  background: url("https://storage-asset.msi.com/event/2024/NB/star-wars-outlaws-claw-bundle/images/close.png") center center no-repeat ;
  background-size: cover;
  opacity: 0.6;
}
.popup__close:hover {
  opacity: 1;
}
@media (min-width: 996px) {
  .popup__close {
    width: 90px;
    height: 90px;
  }
}

.terms {
  font-size: 18px;
  line-height: 1.5;
}
.terms h3 {
  padding-bottom: 25px;
}
.terms ol li {
  margin-left: 20px;
  padding-bottom: 20px;
  list-style: lower-roman;
}
.terms ul {
  margin-left: 20px;
  padding-bottom: 20px;
}
.terms ul ol li {
  list-style: lower-roman;
}
.terms ul li {
  list-style: disc;
  padding: 8px 0;
}
.terms ul li ol li {
  list-style: lower-roman;
}
.terms ul li span {
  color: #11f9f8;
}
.terms p {
  padding-bottom: 20px;
}
.terms a {
  color: #11f9f8;
  border-bottom: #11f9f8 1px solid;
}
.terms a:hover {
  border: none;
}
.terms .pdList {
  margin: 20px 0;
}
.terms .pdList__title {
  color: #fff;
  padding: 5px 0;
  font-size: 16px;
  text-align: center;
  background: #263a4a;
}
.terms .pdList__wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #3b4852;
}
.terms .pdList__wrapper-item {
  width: 50%;
  padding: 5px 0;
  color: #fff;
  background: #3b4852;
  font-size: 12px;
  text-align: center;
  border: 1px solid #263a4a;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 996px) {
  .terms .pdList__wrapper-item {
    width: 100%;
  }
  .terms .pdList__wrapper-item:nth-child(odd) {
    background: #3b4852;
  }
}
