.kv img {
  vertical-align: bottom;
}

.prod__tab {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

.prod__tab.on button {
  opacity: .9;
  -webkit-filter: grayscale(60%);
          filter: grayscale(60%);
}

.prod__tab button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: .5s all ease;
  transition: .5s all ease;
}

.prod__tab button:hover, .prod__tab button.active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 2;
  opacity: 1;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.prod__category {
  padding: 50px 0 20px;
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
}

.prod__category ul {
  display: none;
}

.prod__category ul.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.prod__category ul li {
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 20px;
  padding: 25px 10px;
  margin: 5px;
  cursor: pointer;
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
  font-weight: bold;
  text-shadow: #000 1px 5px 3px;
  -webkit-box-shadow: #000 1px 5px 30px;
          box-shadow: #000 1px 5px 30px;
}

.prod__category ul li::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 500%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, right top, from(#9980d9), color-stop(#17e3fc), color-stop(#6857c5), to(#0ee7fd));
  background: linear-gradient(90deg, #9980d9, #17e3fc, #6857c5, #0ee7fd);
  -webkit-transition: 1s all ease;
  transition: 1s all ease;
}

.prod__category ul li:hover::before {
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
          transform: translate(-50%, -50%) rotate(360deg);
}

.prod__category ul li.active::before {
  background: linear-gradient(40deg, #ebf64f, #6857c5, #db3fe3);
}

.prod__category ul li span {
  position: relative;
}

.prod__box {
  overflow: auto;
}

.prod-table {
  display: none;
}

.prod-table.active {
  display: block;
}

.prod-table h2 {
  padding: 35px 0 20px;
}

.prod-table ul li {
  position: relative;
  color: #222;
  font-weight: bold;
  text-shadow: #fff 1px 1px 5px;
  background: -webkit-gradient(linear, left top, right top, from(#9980d9), color-stop(#17e3fc), color-stop(#6857c5), to(#0ee7fd));
  background: linear-gradient(90deg, #9980d9, #17e3fc, #6857c5, #0ee7fd);
  padding: 2px;
}

.prod-table ul li a {
  background: rgba(255, 255, 255, 0.6);
  display: block;
  color: #222;
  padding: 10px;
}

.prod-table ul li a:hover {
  background: white;
}

@media (min-width: 996px) {
  .prod-table ul li {
    display: inline-block;
    width: calc(100% / 3 - 15px);
    margin: 5px;
  }
}

.info__box {
  -webkit-box-shadow: #c600ea 0 0 60px;
          box-shadow: #c600ea 0 0 60px;
  border-radius: 50px;
  padding: 25px;
  background: #fff;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

@media (min-width: 996px) {
  .info__box img {
    width: 80%;
  }
}

.info__text {
  font-weight: bold;
  text-shadow: #c600ea 2px 2px 3px;
  font-size: 24px;
}

.info__text p {
  padding-bottom: 60px;
}

.info__text p span {
  color: #fffc00;
  font-size: 150%;
}

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

.info-note {
  font-weight: bold;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 25px 0;
}

.redeem__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

.redeem__box a, .redeem__box div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media (min-width: 996px) {
  .redeem__box a, .redeem__box div {
    margin-right: 45px;
  }
  .redeem__box a:last-child, .redeem__box div:last-child {
    margin-right: 0;
  }
}

.redeem-note {
  color: #fffc00;
  padding: 35px 0 45px;
}

.redeem-btn {
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 35px;
}

.redeem-btn button:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.redeem-text {
  line-height: 1.6;
}

.feature__box {
  position: relative;
  background: #fff;
  -webkit-box-shadow: #c600ea 0 0 60px;
          box-shadow: #c600ea 0 0 60px;
  padding: 15px;
}

.feature__box::before {
  content: "";
  position: absolute;
  inset: 5px;
  background: linear-gradient(45deg, #9980d9, #17e3fc, #6857c5, #1f22a9, #0ee7fd);
}

.feature__box::after {
  content: "";
  position: absolute;
  inset: 10px;
  background: #fff;
}

.feature__inner {
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, #9980d9, #17e3fc, #6857c5, #1f22a9, #0ee7fd);
  padding: 2px;
}

.feature__inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 2px;
  background: #fff;
}

.feature__inner ul {
  position: relative;
  z-index: 4;
  color: #222;
  text-align: left;
  font-weight: bold;
  font-size: 20px;
  margin-left: 30px;
}

.feature__inner ul b {
  color: #56008c;
  display: block;
}

.feature__inner ul li {
  padding: 15px;
  list-style: disc;
}

@media (min-width: 996px) {
  .feature__inner ul {
    margin-left: 80px;
    padding: 50px 0;
    font-size: 24px;
  }
  .feature__inner ul li {
    padding: 30px 20px;
    line-height: 1.8;
  }
}

.wtb p {
  padding-bottom: 30px;
}

.wtb p span {
  color: #fffc00;
}

.wtb__box {
  margin-bottom: 30px;
  background: #fff;
  -webkit-box-shadow: #c600ea 0 0 60px;
          box-shadow: #c600ea 0 0 60px;
  padding: 25px;
}

.popup {
  display: none;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 25px;
  background: rgba(0, 0, 0, 0.7);
}

.popup__wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  background: #fff;
  color: #111;
  position: relative;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  padding-bottom: 10px;
}

.popup-close {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.popup-close:hover::before {
  background: rgba(255, 255, 255, 0.5);
}

.popup-close::before {
  font-family: "msi-icons" !important;
  content: "\ea02";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 100%;
  width: 25px;
  height: 25px;
  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;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

@media (min-width: 996px) {
  .popup-close::before {
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

.popup__header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background: -webkit-gradient(linear, right top, left top, from(#4c0569), color-stop(#be30b2), to(#2594e9));
  background: linear-gradient(to left, #4c0569, #be30b2, #2594e9);
  padding: 10px;
  text-align: center;
  font-size: 24px;
  color: #fff;
  text-shadow: #111 1px 1px 3px;
}

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

.popup__content {
  padding: 25px;
  height: 80vh;
  overflow-y: auto;
  margin: 10px 10px 30px;
}

.popup__content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.popup__content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.popup__content::-webkit-scrollbar-thumb {
  background: -webkit-gradient(linear, left top, left bottom, from(#4292e9), color-stop(#8ca6d1), to(#4292e9));
  background: linear-gradient(to bottom, #4292e9, #8ca6d1, #4292e9);
  border-radius: 10px;
}

@media (min-width: 996px) {
  .popup__content {
    padding: 80px;
  }
}

#terms {
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
}

#terms ul {
  margin-left: 20px;
}

#terms ul li {
  list-style: disc;
  padding: 5px 0;
}

#terms ol {
  margin-left: 25px;
  padding: 15px 0;
}

#terms ol li {
  list-style: lower-roman;
}

#terms ol li ul {
  margin-left: 20px;
}

#terms ol li ul li {
  list-style: disc;
  padding: 5px 0;
}

#terms table {
  width: 100%;
  border-collapse: collapse;
}

#terms table th {
  background: -webkit-gradient(linear, right top, left top, from(#8ca6d1), to(#4292e9));
  background: linear-gradient(to left, #8ca6d1, #4292e9);
  padding: 15px;
  text-align: center;
  color: #fff;
  border-right: #fff 1px solid;
}

#terms table td {
  border: #8ca6d1 1px solid;
  padding: 5px 10px;
  text-align: center;
  font-size: 15px;
  font-family: var(--MSIBodyFont);
}

#terms .title {
  margin: 20px 0 10px;
  position: relative;
}

#terms .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  background: -webkit-gradient(linear, right top, left top, from(#8ca6d1), to(#4292e9));
  background: linear-gradient(to left, #8ca6d1, #4292e9);
}

#terms .title span {
  display: inline-block;
  position: relative;
  z-index: 2;
  background: #fff;
  padding-right: 5px;
}

.toolBar {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 30px;
}

.project {
  position: relative;
  color: #fff;
  font-size: 20px;
}

.project img {
  max-width: 100%;
}

.wrapper {
  background: url("../images/bg.jpg") top center repeat-y;
  background-size: 100% auto;
  padding: 25px;
  text-align: center;
}

.common-container {
  width: 100%;
  margin: 0 auto;
  max-width: 1280px;
  padding-top: 30px;
}

@media (min-width: 996px) {
  .common-container {
    padding-top: 80px;
  }
}

.common-title {
  padding-bottom: 30px;
}

.common-title img {
  max-width: 60%;
}
/*# sourceMappingURL=main.css.map */