:root {
  --white: #fff;
  --black: #000;
  --theme: var(--white);
  --theme-opacity-percent: 80%;
  --standardcol: #000;
  --red-btn: #ae1f0d;
  --redeem-col: #FCE98F;
  --theme-color: #ed1c24;
}

.popup-white {
  --themeBg: var(--white);
  --themeColor: var(--black);
}

.popup-black {
  --themeBg: var(--black);
  --themeColor: var(--white);
  --themeStandard: var(--redeem-col);
}
.popup-black .popup {
  background: rgba(0, 0, 0, 0.92);
}
.popup-black .popup__content-title span {
  color: var(--themeColor);
}

.popup {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(142, 142, 142, 0.95);
  z-index: 100;
  overflow-x: hidden;
  overflow-y: auto;
}
.popup__close {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: sticky;
  top: 0px;
  left: 100%;
  border-radius: 100%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  backdrop-filter: blur(10px);
  opacity: 0.7;
  transition: 0.3s all;
}
.popup__close::before, .popup__close::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 36px;
  background: var(--themeColor);
  transform: rotate(45deg);
}
.popup__close::after {
  transform: rotate(-45deg);
}
.popup__close:hover {
  opacity: 1;
  text-decoration: none;
  filter: drop-shadow(0 0 5px var(--themeColor));
  transition: 0.3s all;
}
.popup__wrap {
  vertical-align: middle;
  position: relative;
  width: 90%;
  max-width: min(1280px, 100%);
  margin: 0 auto;
  padding: 30px 0;
  color: var(--themeColor);
  min-width: 0;
  box-sizing: border-box;
}
.popup__content {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  max-width: 100%;
  min-width: 0;
}
.popup__content p {
  margin-bottom: 3px;
}
.popup__content p + p {
  margin-bottom: 3px;
}
.popup__content a {
  border: none;
  background: none;
  border-bottom: 1px solid;
}
.popup__content a:hover {
  text-decoration: underline;
}
.popup__content b {
  font-weight: 500;
}
.popup__content b.borderBottom {
  border-bottom: 1px solid var(--themeColor);
}
.popup__content .notice {
  color: #c00;
}
.popup__content-title {
  text-align: center;
  display: block;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--themeColor);
}
@media (min-width: 996px) {
  .popup__content-title {
    font-size: 30px;
  }
}
.popup__content-title span {
  color: var(--redeem-col);
}
.popup__table-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  margin-top: 0;
}
.popup__table-scroll .dealtable {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: #fff;
  border: 1px solid var(--theme-color);
}
.popup__table-scroll .dealtable tbody tr {
  transition: background 0.12s ease;
}
.popup__table-scroll .dealtable tbody tr:hover td {
  background: #141414;
}
.popup__table-scroll .dealtable tr:first-child {
  background: var(--theme-color);
}
.popup__table-scroll .dealtable__th {
  padding: 14px;
  font-weight: 900;
  text-align: center;
  color: #fff;
  background: var(--theme-color);
  text-transform: uppercase;
  border: 1px solid var(--theme-color);
  vertical-align: middle;
}
.popup__table-scroll .dealtable__th:first-child {
  text-align: center;
}
.popup__table-scroll .dealtable__th:last-child {
  border-right: 1px solid var(--theme-color);
}
@media (min-width: 996px) {
  .popup__table-scroll .dealtable__th {
    padding: 15px 16px;
    font-size: var(--title-md);
  }
}
.popup__table-scroll .dealtable__td {
  padding: 10px 8px;
  border: 1px solid var(--theme-color);
  background: #000;
  color: #fff;
  vertical-align: middle;
  transition: background 0.12s ease;
}
@media (min-width: 996px) {
  .popup__table-scroll .dealtable__td {
    padding: 12px 10px;
  }
}
.popup__table-scroll .dealtable__td--name {
  height: 1px;
  padding: 0;
  text-align: center;
  font-weight: 400;
}
.popup__table-scroll .dealtable__td--name a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 10px 8px;
  color: inherit;
  text-decoration: none;
  border-bottom: none;
  cursor: pointer;
}
@media (min-width: 996px) {
  .popup__table-scroll .dealtable__td--name a {
    padding: 12px 10px;
  }
}
.popup__table-scroll .dealtable__td--name a:hover {
  text-decoration: underline;
  background: #141414;
}
.popup__table-scroll .dealtable__td--num {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.popup.terms {
  z-index: 999;
  text-align: center;
}
.popup.terms * {
  box-sizing: border-box;
}
.popup.terms .popup__wrapper {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 16px 40px;
  width: 100%;
}
.popup.terms .popup__inner {
  position: relative;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  text-align: left;
  color: var(--themeColor);
  border: 0;
  background: rgba(0, 0, 0, 0.92);
}
.popup.terms .popup__header {
  text-align: center;
  padding: 28px 20px 16px;
}
.popup.terms .popup__header h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--theme-color);
}
@media (min-width: 996px) {
  .popup.terms .popup__header h2 {
    font-size: 28px;
  }
}
.popup.terms .popup__body {
  padding: 20px 24px 32px;
  font-size: 16px;
  line-height: 1.6;
}
@media (min-width: 996px) {
  .popup.terms .popup__body {
    padding: 24px 40px 40px;
  }
}
.popup.terms .popup__body ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.popup.terms .popup__body ol li {
  padding-bottom: 20px;
  font-weight: normal;
}

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