* {
  border: 0;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ol,
ul,
li {
  list-style: none;
}

button,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

a {
  outline: none;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

h1 {
  display: none;
}

.delighter.fadein.started {
  opacity: 1;
}

.delighter.fadein {
  opacity: 0;
  -webkit-transition: all 0.75s ease-out;
  transition: all 0.75s ease-out;
}

.delighter.fadeLeft.started {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.delighter.fadeLeft {
  -webkit-transform: translateX(-50px);
  transform: translateX(-50px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.delighter.fadeRight.started {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.delighter.fadeRight {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.delighter.fadeTop.started {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.delighter.fadeTop {
  opacity: 0;
  -webkit-transform: translateY(25px);
  transform: translateY(25px);
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

html {
  scroll-behavior: smooth;
}

.kv {
  position: relative;
  overflow: hidden;
}

.kv canvas {
  display: none;
}

@media (min-width: 996px) {
  .kv canvas {
    display: block;
    position: absolute;
    right: 10%;
    bottom: 30%;
    z-index: 1;
    width: 50%;
    transform: rotate(-45deg);
    filter: drop-shadow(0 0 5px #edaf7e) blur(1px);
    mix-blend-mode: hard-light;
  }
}

.kv__img {
  position: absolute;
  top: 0;
  left: 0;
}

.eligible {
  position: relative;
  padding: 0 0 5%;

}

.eligible::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(#0c0b07), to(transparent));
  background: linear-gradient(#0c0b07, transparent);
  z-index: 0;
}

.eligible::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
}

.eligible__wrapper {
  position: relative;
  z-index: 10;
}

.eligible__wrapper h2 {
  font-family: var(--fontB);
  padding: 30px 0;
  text-align: center;
}

.eligible__wrapper-pdLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
}

@media (min-width: 996px) {
  .eligible__wrapper-pdLine {
    gap: 50px;
  }
}

.eligible__wrapper-pdLine .itemBox {
  position: relative;
  width: 33%;
  padding: 2% 0 0;
  border: 1px solid #5f5347;
  border-radius: 10px;
  overflow: hidden;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 996px) {
  .eligible__wrapper-pdLine .itemBox {
    width: calc(33% - 20px);
    border-radius: 25px;
  }
}

.eligible__wrapper-pdLine .itemBox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.eligible__wrapper-pdLine .itemBox:hover {
  cursor: pointer;
  -webkit-filter: drop-shadow(0 0 10px #6f644b);
  filter: drop-shadow(0 0 10px #6f644b);
}

.eligible__wrapper-pdLine .itemBox:hover figure {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.eligible__wrapper-pdLine .itemBox figure {
  position: relative;
  width: 75%;
  margin: 0 auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 0;
}

.eligible__wrapper-pdLine .itemBox h4 {
  position: relative;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
  background: #3f4c4c;
  border-top: 1px solid #5f5347;
  padding: 5px 0;
  z-index: 10;
  text-transform: uppercase;
  min-height: 60px;
}

@media (min-width: 375px) {
  .eligible__wrapper-pdLine .itemBox h4 {
    min-height: 45px;
  }
}

@media (min-width: 690px) {
  .eligible__wrapper-pdLine .itemBox h4 {
    min-height: auto;
  }
}

@media (min-width: 996px) {
  .eligible__wrapper-pdLine .itemBox h4 {
    font-size: 22px;
    margin-top: 20px;
    padding: 15px 0;
  }
}

.eligible__wrapper-pdLine .itemBox.active::before {
  background: #9b9184;
}

.eligible__wrapper-subTitle {
  position: relative;
  color: #e3ddd7;
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 20px 0 10px;
}

@media (min-width: 996px) {
  .eligible__wrapper-subTitle {
    font-size: 28px;
    padding: 5% 0 2%;
    max-width: 1200px;
    margin: 0 auto;
  }
}

.eligible__wrapper-subTitle::before,
.eligible__wrapper-subTitle::after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-bottom: 2px solid #8f8173;
}

.eligible__wrapper-subTitle::before {
  margin-right: 5%;
}

.eligible__wrapper-subTitle::after {
  margin-left: 5%;
}

.eligible__wrapper-subTitle h4 {
  font-size: 20px;
  padding: 5px 25px;
  border-radius: 10px;
}

@media (min-width: 996px) {
  .eligible__wrapper-subTitle h4 {
    font-size: 22px;
  }
}

.eligible__wrapper-subtabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.eligible__wrapper-subtabs .btnSty {
  width: auto;
  color: #fff;
  font-weight: bold;
  background: #8f8173;
  font-size: 14px;
  border: 1px solid #fff;
}

@media (min-width: 996px) {
  .eligible__wrapper-subtabs .btnSty {
    font-size: 20px;
  }
}

.eligible__wrapper-subtabs .btnSty:hover {
  background: #8f8173;
}

.eligible__wrapper-subtabs .btnSty.active {
  background: #705e4d;
}

.eligible__wrapper-table {
  margin: 20px 0;
}

.eligible__wrapper-table .item {
  display: block;
  width: calc(30% - 20px);
  margin: 10px;
}

.eligible__wrapper-table .item .pdNameCol {
  width: 65%;
  border-right: 1px solid #e3bd99;
}

.eligible__wrapper-table .item .steamCodeCol {
  width: 35%;
}

.eligible__wrapper-table .item .steamCodeCol .col-numBox {
  font-size: 14px;
  padding: 15px;
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 996px) {
  .eligible__wrapper-table .item .steamCodeCol .col-numBox {
    font-size: 20px;
  }
}

.eligible__wrapper-table .item .col-title {
  font-size: 14px;
  color: #fff;
  text-align: center;
  padding: 5px;
  background: #34537b;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 996px) {
  .eligible__wrapper-table .item .col-title {
    font-size: 22px;
    padding: 10px;
  }
}

.eligible__wrapper-table .item .col-pdBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

.eligible__wrapper-table .item .col-pdBox__name {
  font-size: 14px;
  margin-right: 20px;
  color: #fff;
}

@media (min-width: 996px) {
  .eligible__wrapper-table .item .col-pdBox__name {
    font-size: 20px;
  }
}

.eligible__wrapper-table .item .col-pdBox__name:hover {
  text-decoration: underline;
}

.eligible__wrapper-table .item .col-pdBox__btn {
  color: #fff;
  background: #7c5e21;
  padding: 5px 0;
  border-radius: 5px;
  border: 1px solid #7c5e21;
  -webkit-box-shadow: 6px 6px 0 0 #fff;
  box-shadow: 6px 6px 0 0 #fff;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

@media (min-width: 996px) {
  .eligible__wrapper-table .item .col-pdBox__btn {
    padding: 5px 20px;
    font-size: 18px;
    width: auto;
  }
}

.eligible__wrapper-table .item .col-pdBox__btn:hover {
  color: #7c5e21;
  background: rgba(255, 255, 255, 0.937254902);
}

.wtb {
  background: -webkit-gradient(linear, left top, left bottom, from(#282b32), color-stop(#2d2822), to(#000));
  background: linear-gradient(#282b32, #2d2822, #000);
  padding: 4vh 0;
}

.wtb__title {
  width: 100%;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  font-family: var(--fontB);
  z-index: 20;
  position: relative;
}

@media (min-width: 996px) {
  .wtb__title {
    font-size: 32px;
  }
}

.redeemarea__block {
  display: none;
}

.redeemarea__block--active {
  display: block;
}

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