@font-face {
  font-family: Roboto-Medium;
  src: url(../../Roboto-Medium.ttf);
  font-display: swap;
}
* {
  box-sizing: border-box;
}
* ::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: rgba(24, 26, 39, 0.8);
}
* ::-webkit-scrollbar-track {
  background-color: transparent;
}
* ::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #181a27;
}

body {
  margin: 0;
  padding: 0;
  font-family: Roboto-Medium, "Arial", sans-serif;
  scroll-behavior: smooth;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body button {
  outline: none;
  border: none;
  cursor: pointer;
  background: transparent;
}
body button:active {
  filter: brightness(1.2);
}
body a {
  text-decoration: none;
}
body select {
  border: none;
  outline: none;
}
body input {
  border: none;
  outline: none;
  background: transparent;
}
body input[type=number]::-webkit-outer-spin-button,
body input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body input[type=number] {
  -moz-appearance: textfield;
}
body #toast-container {
  margin-top: 10px !important;
}

.main-wrapper {
  width: 100%;
  display: flex;
  max-width: 100%;
  background: #181a27;
  min-height: 100vh;
  flex-wrap: wrap;
  height: auto;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
}
.main-wrapper .header-wrapper {
  width: 100%;
  display: flex;
  padding: 0 12%;
  height: 84px;
  background-color: #181a27;
  align-items: center;
  position: relative;
  justify-content: space-between;
}
.main-wrapper .header-wrapper > a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-wrapper .header-wrapper > a > img {
  height: 90px;
}
.main-wrapper .header-wrapper .menu-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  visibility: hidden;
  pointer-events: none;
}
.main-wrapper .header-wrapper .menu-btn:active {
  filter: brightness(1.2);
}
.main-wrapper .header-wrapper .menu-btn > img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.main-wrapper .header-wrapper .menu-btn > span {
  font-size: 1em;
  font-weight: bold;
  color: #52e3ff;
}
.main-wrapper .header-wrapper .function-wrapper {
  display: flex;
}
.main-wrapper .header-wrapper .function-wrapper.notLogined > li:first-child {
  margin-right: 20px;
}
.main-wrapper .header-wrapper .function-wrapper.notLogined > li:nth-child(2) {
  display: flex;
  color: #808080;
  align-items: center;
  justify-content: center;
  background-color: #808080;
  opacity: 0.5;
  margin-right: 20px;
  cursor: default;
}
.main-wrapper .header-wrapper .function-wrapper.notLogined > li > a {
  width: 150px;
  height: 32px;
  color: #ffda45;
  border-radius: 6px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 1px;
  cursor: pointer;
}
.main-wrapper .header-wrapper .function-wrapper.notLogined > li > a > img {
  margin-right: 20px;
  height: 30px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:first-child {
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.548);
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:first-child > img {
  margin-right: 10px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:first-child > span {
  color: #ed7652;
  white-space: nowrap;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2), .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) {
  position: relative;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.548);
  cursor: auto;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > img, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > img {
  margin-right: 10px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > span, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > span {
  color: #fff;
  white-space: nowrap;
  position: relative;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > span::before, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > span::before {
  content: attr(data-label);
  color: #fff;
  margin-right: 5px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > .icon-rotate, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > .icon-rotate {
  position: relative;
  top: -1px;
  margin-left: 9px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #ffda45;
  border-bottom: 2px solid #ffda45;
  transform: rotate(45deg);
  transform-origin: center;
  transition: 0.5s;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translate(-50%, 0%);
  display: flex;
  flex-direction: column;
  padding: 2px;
  background-color: #222631;
  z-index: 0;
  opacity: 0;
  transition: 0.7s;
  border-radius: 5px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li {
  padding: 10px 15px;
  background-color: #41495d;
  white-space: nowrap;
  margin-bottom: 3px;
  border-radius: 5px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li > a, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li > a {
  display: flex;
  align-items: center;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li > a > img, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li > a > img {
  width: 15px;
  height: auto;
  margin-right: 5px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li > a > img:nth-child(2), .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li > a > img:nth-child(2) {
  display: none;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li > a > span, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li > a > span {
  font-size: 13px;
  white-space: nowrap;
  color: #e8f1ff;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li:hover img:nth-child(1), .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li:hover img:nth-child(1) {
  display: none;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li:hover img:nth-child(2), .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li:hover img:nth-child(2) {
  display: inline-block;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2) > ul > li:hover span, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li:hover span {
  color: #efcd46;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2):hover > .icon-rotate, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3):hover > .icon-rotate {
  transform: rotate(-135deg);
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(2):hover > ul, .main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3):hover > ul {
  opacity: 1;
  top: 30px;
  z-index: 500;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) {
  padding: 0 40px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:nth-child(3) > ul > li {
  padding: 10px 20px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:last-child {
  padding-left: 30px;
  margin-right: 10px;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:last-child > a {
  display: flex;
  align-items: center;
  color: #fff;
}
.main-wrapper .header-wrapper .function-wrapper.isLogined > li:last-child > a > img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.main-wrapper .top-nav-wrapper {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: flex-end;
  padding: 0 12%;
  background-color: #181a27;
}
@media (max-width: 1500px) {
  .main-wrapper .top-nav-wrapper {
    padding: 0 5%;
  }
}
@media (max-width: 1350px) {
  .main-wrapper .top-nav-wrapper {
    padding: 0 2%;
  }
}
@media (max-width: 1200px) {
  .main-wrapper .top-nav-wrapper {
    padding: 0 1%;
  }
}
@media (max-width: 1100px) {
  .main-wrapper .top-nav-wrapper {
    padding: 0;
  }
}
.main-wrapper .top-nav-wrapper .top-nav-logo {
  position: absolute;
  bottom: 0;
  left: 12%;
}
@media (max-width: 1100px) {
  .main-wrapper .top-nav-wrapper .top-nav-logo {
    left: 2%;
  }
}
.main-wrapper .top-nav-wrapper .top-nav-logo > img {
  height: 100px;
}
.main-wrapper .top-nav-wrapper > ul {
  width: 100%;
  display: flex;
  width: 60%;
  padding: 0%;
  height: 64px;
  z-index: 2;
}
@media (max-width: 1100px) {
  .main-wrapper .top-nav-wrapper > ul {
    width: 70%;
  }
}
.main-wrapper .top-nav-wrapper > ul > li {
  width: 16.6666666667%;
  padding: 0 10px;
  white-space: nowrap;
}
.main-wrapper .top-nav-wrapper > ul > li > a {
  height: 64px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.main-wrapper .top-nav-wrapper > ul > li > a.active > span {
  color: #ffda45;
}
.main-wrapper .top-nav-wrapper > ul > li > a > img {
  height: 38px;
  margin-right: 5px;
}
.main-wrapper .top-nav-wrapper > ul > li > a > img.hot {
  position: absolute;
  margin-right: unset;
  height: 22px;
  top: 5px;
  left: 10%;
  animation: hotshine 2s linear infinite;
}
.main-wrapper .top-nav-wrapper > ul > li > a > span {
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
}
.main-wrapper .side-wrapper {
  z-index: 99;
}
.main-wrapper .side-wrapper .right-wrapper {
  position: fixed;
  right: 20px;
  bottom: 40px;
}
.main-wrapper .side-wrapper .right-wrapper img {
  width: 50px;
  height: auto;
}
.main-wrapper .banner-wrapper {
  width: 100%;
  display: flex;
  background: black;
  overflow: hidden;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.main-wrapper .banner-wrapper > div {
  width: 100%;
}
.main-wrapper .banner-wrapper > div > a {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}
.main-wrapper .banner-wrapper > div > a > img {
  width: 100%;
  height: auto;
}
.main-wrapper .reduce {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 12%;
  background-image: linear-gradient(to bottom, #222631, #181a27);
  position: relative;
}
.main-wrapper .index-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
.main-wrapper .index-wrapper .marquee-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -25px;
  z-index: 9;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  width: 100%;
  height: 25px;
  max-width: 100% !important;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper {
  background: transparent;
  width: 100%;
  height: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 5px 0;
  max-width: 1300px;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper > div {
  display: flex;
  align-items: center;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper > div:first-of-type > img {
  height: 15px;
  margin-right: 5px;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper > div:first-of-type > span {
  color: #ffda45;
  font-size: 14px;
  white-space: nowrap;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper .marquee-container {
  display: flex;
  overflow: hidden;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper .marquee-container div {
  display: flex;
}
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper .marquee-container span,
.main-wrapper .index-wrapper .marquee-overlay .marquee-wrapper .marquee-container p {
  color: #d1d1d1;
  font-size: 16px;
  white-space: nowrap;
  text-shadow: 0.1em 0.1em 0.2em black;
}
.main-wrapper .index-wrapper .step-wrapper {
  width: 100%;
  display: flex;
}
.main-wrapper .index-wrapper .step-wrapper > li {
  width: 25%;
  display: flex;
  transition: 0.3s ease-out;
  background-repeat: no-repeat;
  position: relative;
  background-size: contain;
}
.main-wrapper .index-wrapper .step-wrapper > li:hover {
  filter: brightness(1.3);
}
.main-wrapper .index-wrapper .step-wrapper > li > a {
  display: flex;
  height: 100px;
  flex-direction: column;
  width: 100%;
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div {
  display: flex;
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div:first-child {
  transform: skew(-10deg);
  border-radius: 10px;
  height: 30px;
  margin: 10px 0 5px 10%;
  padding-left: 22%;
  white-space: nowrap;
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div:first-child > * {
  transform: skew(10deg);
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div:first-child > span {
  font-style: italic;
  color: #ffda45;
  font-size: 1.5em;
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div:last-child {
  flex-direction: column;
  justify-content: center;
  padding-left: 30%;
}
.main-wrapper .index-wrapper .step-wrapper > li > a > div:last-child > span {
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.91px;
  line-height: 1.23;
  color: #fff;
}
.main-wrapper .index-wrapper .step-wrapper > li:first-child {
  background-image: url(../../../images/index/w/step-wrapper/step1.svg);
}
.main-wrapper .index-wrapper .step-wrapper > li:nth-child(2) {
  background-image: url(../../../images/index/w/step-wrapper/step2.svg);
}
.main-wrapper .index-wrapper .step-wrapper > li:nth-child(3) {
  background-image: url(../../../images/index/w/step-wrapper/step3.svg);
}
.main-wrapper .index-wrapper .step-wrapper > li:last-child {
  background-image: url(../../../images/index/w/step-wrapper/step4.svg);
}
.main-wrapper .index-wrapper .step-wrapper > li:last-child > a > div:last-child > span {
  color: #002833;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper {
  width: 100%;
  display: flex;
  margin: 40px 0 50px 0;
  width: 99%;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper {
  width: 34%;
  margin-top: 45px;
  margin-right: 2%;
  position: relative;
  overflow: hidden;
  height: 475px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  border-radius: 15px;
  background-image: linear-gradient(to bottom, rgba(24, 26, 39, 0.0901960784), #0e1016);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper {
  min-width: 100%;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide {
  background: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: calc((100% - 15px) / 2);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 300px;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li:hover {
  filter: brightness(1.3);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li:hover .game-overlay {
  visibility: visible;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li:hover .game-overlay > button {
  margin-top: 10px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li:nth-child(6n) {
  margin-right: 0;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > img {
  width: 100%;
  height: auto;
  max-width: 195px;
  max-height: 300px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div {
  transition: 0.3s ease-out;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-name {
  width: 100%;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-name > span {
  margin: 0 10%;
  width: 80%;
  text-align: center;
  color: #ffda45;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 15px;
  letter-spacing: 0.7px;
  font-weight: 300;
  white-space: nowrap;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-overlay {
  transition: 0.3s ease-out;
  visibility: hidden;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-overlay > button {
  transition: 0.3s ease-out;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 4px;
  width: 100px;
  height: 30px;
  margin-top: -250px;
  z-index: 99;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-overlay > button:active {
  filter: brightness(1.2);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > li > div.game-overlay > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > div > img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  margin-bottom: 15px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > div > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-wrapper .swiper-slide > div > span {
  color: #fff;
  font-size: 1.1em;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-pagination {
  bottom: 10px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 50px;
  border-radius: 5px;
  background: rgba(255, 218, 69, 0.662745098);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffda45;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.fish-swiper .swiper-wrapper ul li {
  justify-content: center;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.fish-swiper .swiper-wrapper ul li img {
  width: 80%;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.ezwin .swiper-slide > li {
  justify-content: center;
  position: relative;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.ezwin .swiper-slide > li > img {
  width: 86%;
  height: auto;
  max-height: 190px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.ezwin .swiper-slide > li > div.game-overlay {
  flex-direction: column;
  background: rgba(0, 0, 0, 0.8);
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .game-swiper.ezwin .swiper-slide > li > div.game-overlay img {
  width: 90px;
  height: auto;
  border-radius: 13px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper {
  margin-top: 45px;
  width: 33%;
  height: 450px;
  border-radius: 6px;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  position: relative;
  z-index: 1;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > img {
  position: absolute;
  width: 137%;
  height: auto;
  bottom: -28px;
  left: 52%;
  transform: translateX(-50%);
  z-index: 3;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span {
  width: 100%;
  text-align: center;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span:nth-child(1) {
  font-size: 1.2em;
  position: relative;
  margin-bottom: 15px;
  letter-spacing: 1.5px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span:nth-child(1)::before {
  content: attr(data-label);
  color: #fff;
  margin-right: 5px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span.jackpot-title {
  color: #ffda45;
  margin-bottom: 20px;
  margin-top: 10px;
  z-index: 5;
  font-size: 1.2em;
  position: relative;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span.jackpot-title::before {
  content: url("/assets/images/icon/jackdot.svg");
  width: 30px;
  height: 2px;
  position: relative;
  top: -3px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span.jackpot-title::after {
  content: url("/assets/images/icon/jackdot2.svg");
  width: 30px;
  height: 15px;
  position: relative;
  transform: translate(-100%, -100%);
  top: -3px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span.jackpot-amount {
  z-index: 5;
  font-size: 1.7em;
  position: relative;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > span.jackpot-amount::before {
  content: "";
  position: absolute;
  left: 15%;
  bottom: -7px;
  z-index: 5;
  color: #fff;
  font-size: 1.5em;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 4px 15% 0 15%;
  overflow: hidden;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul > li:first-child {
  margin-bottom: 15px;
  color: #ffda45;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul > li > span {
  font-size: 1em;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul > li > span:last-child {
  position: relative;
}
.main-wrapper .index-wrapper .games-jackpot-wrapper .jackpot-wrapper > ul > li > span:last-child::before {
  content: attr(data-label);
  color: #fff;
  margin-right: 5px;
}
.main-wrapper .index-wrapper .app-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 55px;
}
.main-wrapper .index-wrapper .app-wrapper > a {
  width: 32%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e8f1ff;
  background-image: linear-gradient(to bottom, rgba(24, 26, 39, 0.0901960784), #0e1016);
  border-radius: 15px;
}
.main-wrapper .index-wrapper .app-wrapper > a > img {
  width: 100%;
  height: auto;
  transition: 0.3s ease-out;
}
.main-wrapper .index-wrapper .app-wrapper > a > img:hover {
  filter: brightness(1.3);
}
.main-wrapper .index-wrapper .app-wrapper > a > h2 {
  color: #ffda45;
  margin: 5px 0 0;
}
.main-wrapper .index-wrapper .app-wrapper > a > p {
  width: 69%;
  text-align: center;
  margin: 5px 0 20px;
}
.main-wrapper .bot-footer {
  width: 100%;
  display: flex;
  height: 300px;
  align-items: center;
  background-color: #121524;
}
.main-wrapper .bot-footer > div {
  width: 30%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.main-wrapper .bot-footer > div > img {
  height: 80px;
  margin-bottom: 10px;
}
.main-wrapper .bot-footer > div > span {
  color: #808080;
  text-align: center;
}
.main-wrapper .bot-footer > ul {
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2%;
}
.main-wrapper .bot-footer > ul:nth-child(2) {
  width: 40%;
  flex-wrap: wrap;
}
.main-wrapper .bot-footer > ul:nth-child(2) > li {
  width: 50%;
}
.main-wrapper .bot-footer > ul:nth-child(2) > li > a {
  white-space: nowrap;
  color: #808080;
  transition: 0.3s ease-out;
}
.main-wrapper .bot-footer > ul:nth-child(2) > li > a:hover {
  filter: brightness(1.3);
}
.main-wrapper .bot-footer > ul:last-child {
  width: 30%;
  flex-wrap: wrap;
  justify-content: center;
}
.main-wrapper .bot-footer > ul:last-child > li {
  width: 100%;
  display: flex;
  align-items: center;
}
.main-wrapper .bot-footer > ul:last-child > li > a {
  transition: 0.4s ease-out;
  color: #808080;
}
.main-wrapper .bot-footer > ul:last-child > li > a:hover {
  transform: scale(1.2);
}
.main-wrapper .bot-footer > ul:last-child > li > a > img {
  width: 40px;
  height: 40px;
  margin-right: 15px;
}
.main-wrapper .bot-footer > ul:last-child > li > a > i {
  margin-right: 10px;
  font-size: 1.4em;
}
.main-wrapper .bot-footer > ul:last-child > li > span,
.main-wrapper .bot-footer > ul:last-child > li i {
  color: #9aafeb;
}
.main-wrapper .dialog-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
}
.main-wrapper .dialog-overlay .dialog-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrapper .dialog-overlay .dialog-wrapper.fadeIn {
  animation: fadeIn ease-out 0.3s forwards;
}
.main-wrapper .dialog-overlay .dialog-wrapper.fadeOut {
  animation: fadeout ease-out 0.3s forwards;
}
.main-wrapper .dialog-overlay .dialog-wrapper .dialog-container {
  color: #fff;
}
.main-wrapper .basic-game-wrapper {
  width: 100%;
  height: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 0px 20% 0 20%;
}
.main-wrapper .basic-game-wrapper.multi {
  padding: 350px 20% 0 20%;
}
.main-wrapper .basic-game-wrapper.livecasino {
  padding: 50px 10% 300px 10%;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
}
.main-wrapper .basic-game-wrapper.livecasino > li {
  width: 31%;
  height: 250px;
  margin-right: 2%;
  display: flex;
  justify-content: space-between;
  background-image: linear-gradient(to bottom, #181a27, #0e1017);
  border-radius: 25px;
  cursor: auto;
}
.main-wrapper .basic-game-wrapper.livecasino > li:hover {
  transform: scale(1);
}
.main-wrapper .basic-game-wrapper.livecasino > li > img {
  width: 47%;
  height: auto;
}
.main-wrapper .basic-game-wrapper.livecasino > li > div {
  position: relative;
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-wrapper .basic-game-wrapper.livecasino > li > div > h2 {
  color: #ffda45;
  font-size: 19px;
}
.main-wrapper .basic-game-wrapper.livecasino > li > div > span {
  width: 90%;
  font-size: 13px;
  color: #fff;
  margin-bottom: 25px;
}
.main-wrapper .basic-game-wrapper.livecasino > li > div > button {
  width: 135px;
  height: 47px;
  font-size: 1em;
  font-weight: bold;
  border-radius: 4px;
  background-color: #efcd46;
  color: #181a27;
  transition: 0.3s;
}
.main-wrapper .basic-game-wrapper.livecasino > li > div > button:hover {
  transform: scale(1.2);
}
.main-wrapper .basic-game-wrapper.fishing {
  background-repeat: no-repeat;
  background-size: 100%;
  height: auto;
  padding: 130px 20% 0 20%;
}
.main-wrapper .basic-game-wrapper.fishing > li {
  width: 23%;
  flex-direction: column;
  background-image: linear-gradient(to bottom, #181a27, #0e1017);
  border-radius: 13px;
  margin-right: 2%;
  cursor: auto;
}
.main-wrapper .basic-game-wrapper.fishing > li > img {
  margin-bottom: 10px;
}
.main-wrapper .basic-game-wrapper.fishing > li > span {
  color: #fff;
  margin-bottom: 15px;
}
.main-wrapper .basic-game-wrapper.fishing > li > button {
  background-color: #efcd46;
  color: #181a27;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  cursor: pointer;
}
.main-wrapper .basic-game-wrapper > li {
  width: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  transition: 0.4s ease-out;
}
.main-wrapper .basic-game-wrapper > li:hover {
  transform: scale(1.2);
}
.main-wrapper .basic-game-wrapper > li > img {
  width: 90%;
}
.main-wrapper .sports-wrapper, .main-wrapper .esports-wrapper {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 5%;
}
.main-wrapper .sports-wrapper > div, .main-wrapper .esports-wrapper > div {
  display: flex;
  width: 50%;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(transparent 0%, #000 100%);
  border-radius: 12px;
}
.main-wrapper .sports-wrapper > div > img, .main-wrapper .esports-wrapper > div > img {
  width: 80%;
  max-width: 500px;
}
.main-wrapper .sports-wrapper > div > h2, .main-wrapper .esports-wrapper > div > h2 {
  width: 100%;
  text-align: center;
  color: #ffda45;
  font-size: 1.8rem;
}
.main-wrapper .sports-wrapper > div > span, .main-wrapper .esports-wrapper > div > span {
  width: 80%;
  text-align: center;
  font-size: 1.2rem;
  color: #fff;
  margin: 10px 0 30px 0;
}
.main-wrapper .sports-wrapper > div > div, .main-wrapper .esports-wrapper > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #efcd46;
  color: #181a27;
  font-weight: bold;
  font-size: 1.1em;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease-out;
  width: 180px;
  height: 45px;
  margin-bottom: 30px;
}
.main-wrapper .sports-wrapper > div > div:hover, .main-wrapper .esports-wrapper > div > div:hover {
  filter: brightness(1.3);
}
.main-wrapper .sports-wrapper.multiple > div, .main-wrapper .esports-wrapper.multiple > div {
  width: calc((100% - 30px) / 2);
}
.main-wrapper .sports-wrapper.multiple > div:nth-of-type(odd), .main-wrapper .esports-wrapper.multiple > div:nth-of-type(odd) {
  margin-right: 30px;
}
.main-wrapper .slots-wrapper {
  width: 100%;
  display: flex;
  height: auto;
  background: #080f1a;
  flex-direction: column;
  padding: 0px 15% 0 15%;
}
.main-wrapper .slots-wrapper .slots-swiper {
  width: 70vw;
  left: -15vw;
  margin-left: 15vw;
  padding: 25px 0% 0 0%;
  position: relative;
  overflow: hidden;
  background-color: #181a27;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper {
  position: relative;
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10px;
  background-color: #181a27;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li {
  width: 12.5%;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease-out;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li:hover {
  transform: scale(1.2);
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li.active {
  background-color: #2b2f46;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li.active > a > img {
  opacity: 1;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li:hover {
  background-color: #2b2f46;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li:hover > a > img {
  opacity: 1;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li > a {
  width: 135px;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li > a > img {
  width: 100%;
  height: auto;
  opacity: 0.65;
}
.main-wrapper .slots-wrapper .slots-swiper .provider-wrapper > li > a > span {
  color: #fff;
  font-size: 1.1em;
}
.main-wrapper .slots-wrapper .swiper-control {
  position: relative;
  top: -70px;
}
.main-wrapper .slots-wrapper .swiper-control .swiper-button-next {
  right: -40px;
  top: -15px;
}
.main-wrapper .slots-wrapper .swiper-control .swiper-button-prev {
  left: -40px;
  top: -15px;
}
.main-wrapper .slots-wrapper .swiper-control .control-bg {
  position: absolute;
  top: -100px;
  left: -15vw;
  height: 170px;
  width: 99.5vw;
  background-color: #181a27;
}
.main-wrapper .slots-wrapper .tab-wrapper {
  width: 100%;
  display: flex;
  background: #080f1a;
  position: relative;
  margin: 15px 0 15px;
}
.main-wrapper .slots-wrapper .tab-wrapper > li {
  width: 135px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-wrapper .slots-wrapper .tab-wrapper > li.active > span {
  color: #2cbebd;
}
.main-wrapper .slots-wrapper .tab-wrapper > li:hover > span {
  color: #2cbebd;
}
.main-wrapper .slots-wrapper .tab-wrapper > li > span {
  color: #fff;
}
.main-wrapper .slots-wrapper .tab-wrapper .search-wrapper {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  background: #2b2f46;
}
.main-wrapper .slots-wrapper .tab-wrapper .search-wrapper > input {
  width: 90%;
  color: #fff;
  height: 50px;
  padding-left: 15px;
  font-size: 1.1em;
}
.main-wrapper .slots-wrapper .tab-wrapper .search-wrapper > i {
  color: #fff;
  padding: 10px 10px;
  cursor: pointer;
  font-size: 1.2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.main-wrapper .slots-wrapper .games-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main-wrapper .slots-wrapper .games-wrapper > li {
  display: flex;
  flex-wrap: wrap;
  width: calc((100% - 125px) / 6);
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-height: 300px;
  margin-right: 25px;
  cursor: pointer;
  transition: 0.4s ease-out;
}
.main-wrapper .slots-wrapper .games-wrapper > li:hover {
  transform: scale(1.2);
}
.main-wrapper .slots-wrapper .games-wrapper > li:hover .game-overlay {
  visibility: visible;
}
.main-wrapper .slots-wrapper .games-wrapper > li:hover .game-overlay > div {
  margin-top: 10px;
}
.main-wrapper .slots-wrapper .games-wrapper > li:nth-child(6n) {
  margin-right: 0;
}
.main-wrapper .slots-wrapper .games-wrapper > li > img {
  width: 100%;
  height: auto;
  max-height: 300px;
}
.main-wrapper .slots-wrapper .games-wrapper > li > div {
  pointer-events: none;
  transition: 0.3s ease-out;
}
.main-wrapper .slots-wrapper .games-wrapper > li > div.game-overlay {
  transition: 0.3s ease-out;
  visibility: hidden;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 30px);
  background: rgba(0, 0, 0, 0.4);
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.main-wrapper .slots-wrapper .games-wrapper > li > div.game-overlay > div {
  transition: 0.3s ease-out;
  border-radius: 4px;
  width: 100px;
  height: 30px;
  margin-top: -250px;
  pointer-events: none;
  background-color: #efcd46;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-wrapper .slots-wrapper .games-wrapper > li > div.game-overlay > span {
  width: 100%;
  height: 30px;
  position: absolute;
  text-align: center;
  bottom: 0;
  color: #fff;
  background-color: rgba(23, 24, 31, 0.7803921569);
}
.main-wrapper .slots-wrapper .games-wrapper > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 50px 0;
}
.main-wrapper .slots-wrapper .games-wrapper > div > img {
  width: 100px;
  height: 100px;
  max-width: 100px;
  max-height: 100px;
  margin-bottom: 15px;
}
.main-wrapper .slots-wrapper .games-wrapper > div > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.main-wrapper .slots-wrapper .games-wrapper > div > span {
  color: #fff;
  font-size: 1.1em;
}
.main-wrapper .slots-wrapper .pagination-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 20px;
  overflow-x: scroll;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li {
  opacity: 0.6;
  cursor: pointer;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  background: #071131;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li:not(:last-child) {
  margin-right: 10px;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li > span {
  color: #fff;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li.active {
  opacity: 1;
  background: #f1cc50;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li.active > span {
  color: #071131;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li.pagination-btn {
  border-radius: 5px;
  width: auto;
  padding: 0 5px;
}
.main-wrapper .slots-wrapper .pagination-wrapper > li:hover {
  opacity: 1;
}
.main-wrapper .promotion-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.main-wrapper .promotion-wrapper .promotion-container {
  max-width: 1280px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.main-wrapper .promotion-wrapper .promotion-container > div {
  width: 100%;
  display: flex;
  align-items: center;
  height: 60px;
  background: #242732;
  margin: 30px 0;
}
.main-wrapper .promotion-wrapper .promotion-container > div > ul {
  display: flex;
  height: 60px;
  font-weight: normal;
}
.main-wrapper .promotion-wrapper .promotion-container > div > ul > li {
  display: flex;
  align-items: center;
  padding: 5px 25px;
  cursor: pointer;
}
.main-wrapper .promotion-wrapper .promotion-container > div > ul > li:hover > span, .main-wrapper .promotion-wrapper .promotion-container > div > ul > li.active > span {
  color: #ffda45;
}
.main-wrapper .promotion-wrapper .promotion-container > div > ul > li > span {
  color: #d9d9d9;
  font-size: 1.1em;
}
.main-wrapper .promotion-wrapper .promotion-container > li {
  display: flex;
  width: calc((100% - 60px) / 3);
  flex-direction: column;
  justify-content: center;
  background: #242732;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.main-wrapper .promotion-wrapper .promotion-container > li:not(:nth-of-type(3n)) {
  margin-right: 30px;
}
.main-wrapper .promotion-wrapper .promotion-container > li > img {
  width: 100%;
  height: auto;
  max-height: 200px;
}
.main-wrapper .promotion-wrapper .promotion-container > li > h6 {
  padding: 0 15px;
  color: #ffda45;
  font-size: 1rem;
  margin: 10px 0;
  font-weight: normal;
}
.main-wrapper .promotion-wrapper .promotion-container > li span {
  padding: 0 15px;
  color: #959595;
  font-size: 12px;
  font-weight: normal;
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  height: 40px;
}
.main-wrapper .promotion-wrapper .promotion-container > li span div {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.main-wrapper .promotion-wrapper .promotion-container > li span p {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}
.main-wrapper .promotion-wrapper .promotion-container > li > div {
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button {
  width: 145px;
  height: 40px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s ease-out;
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button:hover {
  filter: brightness(1.3);
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button:first-child {
  color: #d9d9d9;
  border: solid 1px #d9d9d9;
  background: transparent;
  margin-right: 15px;
  font-weight: normal;
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button:last-child {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-weight: normal;
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button:last-child:active {
  filter: brightness(1.2);
}
.main-wrapper .promotion-wrapper .promotion-container > li > div > button:last-child:disabled {
  filter: grayscale(1);
}
.main-wrapper .coming-soon-wrapper {
  width: 100%;
  display: flex;
}
.main-wrapper .coming-soon-wrapper > img {
  width: 100%;
  height: auto;
}
.main-wrapper .maintenance-wrapper {
  width: 100%;
  display: flex;
  background-image: url(../../../images/maintenance/w.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 1080px;
  position: relative;
}
.main-wrapper .maintenance-wrapper > span {
  position: absolute;
  top: 570px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.6rem;
}
.main-wrapper .download-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-image: url(../../../images/download/w-mobile-download.png);
  background-repeat: no-repeat;
  height: 900px;
  position: relative;
}
.main-wrapper .download-wrapper > ul {
  width: 40%;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translate(20%, -50%);
}
.main-wrapper .download-wrapper > ul > li {
  display: flex;
  width: 100%;
  padding: 0 10%;
  flex-wrap: wrap;
}
.main-wrapper .download-wrapper > ul > li:nth-child(1) {
  margin-top: 15px;
}
.main-wrapper .download-wrapper > ul > li:nth-child(1) > span {
  color: #fff;
  text-align: center;
  font-size: 1.6em;
  width: 100%;
}
.main-wrapper .download-wrapper > ul > li:nth-child(1) > span:last-child {
  margin: 30px 0;
  color: #fff;
}
.main-wrapper .download-wrapper > ul > li:last-child {
  flex-wrap: nowrap;
  justify-content: center;
}
.main-wrapper .download-wrapper > ul > li:last-child > a {
  width: 23%;
  height: 120px;
  padding: 0 10px;
  box-shadow: 0 0 6px 0 #ffda45;
  border: solid 1px #ffda45;
  border-radius: 6px;
  background: linear-gradient(to bottom, #222631, #000);
  transform: skew(-10deg);
  transition: 0.3s ease-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main-wrapper .download-wrapper > ul > li:last-child > a > * {
  transform: skew(10deg);
}
.main-wrapper .download-wrapper > ul > li:last-child > a:hover {
  filter: brightness(1.3);
}
.main-wrapper .download-wrapper > ul > li:last-child > a:first-child {
  margin-right: 25px;
}
.main-wrapper .download-wrapper > ul > li:last-child > a > img {
  height: 50px;
  margin-bottom: 10px;
}
.main-wrapper .download-wrapper > ul > li:last-child > a > span {
  width: 100%;
  color: #ffda45;
  font-size: 12px;
  text-align: center;
  transform: skewX(10deg);
}
.main-wrapper .register-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 1080px;
  padding: 0 20% 0 62%;
  margin-bottom: 40px;
  background: url(../../../images/register/w/bg.jpg);
  background-repeat: no-repeat;
}
.main-wrapper .register-wrapper .register-container1 {
  min-width: 350px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main-wrapper .register-wrapper .register-container1 > li {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
}
.main-wrapper .register-wrapper .register-container1 > li:first-child > span {
  font-size: 2em;
  margin-bottom: 15px;
}
.main-wrapper .register-wrapper .register-container1 > li:nth-child(2) > span {
  font-size: 1em;
  margin-bottom: 15px;
}
.main-wrapper .register-wrapper .register-container1 > li:last-child > button {
  width: 50%;
  height: 35px;
  border-radius: 8px;
  color: #fff;
}
.main-wrapper .register-wrapper .register-container1 > li:last-child > button > i {
  margin-right: 10px;
}
.main-wrapper .register-wrapper .register-container1 > li:last-child > button:first-child {
  background: #04a7eb;
  margin-right: 10px;
}
.main-wrapper .register-wrapper .register-container1 > li:last-child > button:last-child {
  background: #cb4a23;
}
.main-wrapper .register-wrapper .register-container2 {
  min-width: 350px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.main-wrapper .register-wrapper .register-container2 > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main-wrapper .register-wrapper .register-container2 > li > span {
  color: #9aafeb;
  font-size: 0.8em;
}
.main-wrapper .register-wrapper .register-container2 > li.field {
  position: relative;
  align-items: center;
  border-radius: 9px;
  border: solid 1px #9aafeb;
  height: 35px;
  margin-bottom: 20px;
}
.main-wrapper .register-wrapper .register-container2 > li.field > i:first-child {
  color: #9aafeb;
  padding: 0 10px;
  border-right: 1px solid #9aafeb;
}
.main-wrapper .register-wrapper .register-container2 > li.field > i.end-icon {
  color: #9aafeb;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.main-wrapper .register-wrapper .register-container2 > li.field > img {
  width: 35px;
  height: auto;
  padding: 0 10px;
  border-right: 1px solid #9aafeb;
}
.main-wrapper .register-wrapper .register-container2 > li.field > input {
  width: calc(100% - 35px);
  height: 35px;
  color: #fff;
  padding-left: 10px;
}
.main-wrapper .register-wrapper .register-container2 > li.field > input::-moz-placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper .register-wrapper .register-container2 > li.field > input::placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper .register-wrapper .register-container2 > li.field > select {
  width: calc(100% - 35px);
  height: 35px;
  color: rgba(154, 175, 235, 0.5);
  padding-left: 5px;
  background: transparent;
}
.main-wrapper .register-wrapper .register-container2 > li.field > span {
  color: rgb(219, 30, 30);
  margin-top: 2px;
  white-space: nowrap;
}
.main-wrapper .register-wrapper .register-container2 > li.field > span.fadeIn {
  animation: fadeIn ease 0.5s;
}
.main-wrapper .register-wrapper .register-container2 > li.text {
  margin-bottom: 55px;
  position: relative;
}
.main-wrapper .register-wrapper .register-container2 > li.text::after {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 40px;
  font-size: 12px;
  color: #ff91b3;
}
.main-wrapper .register-wrapper .register-container2 > li.text > span {
  margin-top: 35px;
}
.main-wrapper .register-wrapper .register-container2 > li:last-child {
  margin-top: 20px;
}
.main-wrapper .register-wrapper .register-container2 > li:last-child > button {
  width: 100%;
  height: 47px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
}
.main-wrapper .register-wrapper .register-container3 {
  min-width: 350px;
  margin: 40px 0 0 0;
  list-style: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  display: none;
}
.main-wrapper .register-wrapper .register-container3 > li {
  width: 100%;
  display: flex;
  margin: 0 4%;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(1) {
  justify-content: center;
  margin-bottom: 15px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(1) > span {
  color: #fff;
  font-weight: 600;
  font-size: 2em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(2) {
  justify-content: center;
  margin-bottom: 30px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(2) > span {
  white-space: nowrap;
  color: #fff;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(3) {
  justify-content: flex-start;
  margin-bottom: 10px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(3) > span {
  color: #fff;
  font-size: 1.2em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(4) {
  justify-content: flex-start;
  margin-bottom: 30px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(4) > span {
  color: #fff;
  font-size: 1em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(5) {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(5) > i {
  color: #52e3ff;
  margin-right: 30px;
  font-size: 1.2em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(5) > span {
  color: #52e3ff;
  font-size: 1.2em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(6) {
  justify-content: flex-start;
  margin-bottom: 30px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(6) > i {
  color: #808080;
  margin-right: 30px;
  font-size: 1.2em;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(6) > span {
  color: #808080;
  font-size: 1.2em;
  margin-bottom: 10px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(7) {
  justify-content: center;
  margin-bottom: 20px;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(7) > button {
  width: 90%;
  height: 45px;
  font-size: 1.2em;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #52e3ff;
  background: linear-gradient(to bottom, #3355c6, #001d7b);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(7) > button:active {
  filter: brightness(1.2);
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(7) > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .register-wrapper .register-container3 > li:nth-child(7) > button:active {
  color: #f1cc50;
}
.main-wrapper .register-wrapper .register-container3 > li:last-child {
  justify-content: center;
  margin: 0;
}
.main-wrapper .register-wrapper .register-container3 > li:last-child > img {
  width: 100%;
}
.main-wrapper .member-wrapper {
  width: 100%;
  background: url(../../../images/index/w/bg.png);
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 5%;
}
.main-wrapper .member-wrapper .member-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main-wrapper .member-wrapper .member-container .member-container1 {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  background: rgba(8, 33, 114, 0.5);
  border-radius: 7px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child {
  width: 20%;
  margin-right: 15px;
  padding: 0 1%;
  justify-content: space-between;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > div {
  display: flex;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > div > img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > div > span {
  color: #fff;
  font-size: 1.2em;
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > button {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #52e3ff;
  background: linear-gradient(to bottom, #3355c6, #001d7b);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-out;
  width: 90px;
  height: 30px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:first-child > button:hover {
  filter: brightness(1.3);
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:last-child {
  width: 80%;
  padding: 0 2%;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:last-child > img {
  width: 35px;
  height: 35px;
  margin-right: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:last-child > span:nth-child(2) {
  margin-right: 15px;
  color: #52e3ff;
  font-size: 1.4em;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:last-child > span:last-child {
  color: #fff;
  font-size: 1.4em;
  position: relative;
}
.main-wrapper .member-wrapper .member-container .member-container1 > li:last-child > span:last-child::before {
  content: attr(data-label);
  color: #fff;
  margin-right: 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 {
  width: 100%;
  display: flex;
}
.main-wrapper .member-wrapper .member-container .member-container2 > ul {
  border-radius: 7px;
}
.main-wrapper .member-wrapper .member-container .member-container2 > ul:first-child {
  width: 20%;
  margin-right: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container2 > ul:nth-child(2) {
  width: 80%;
  margin-right: 15px;
  background-color: rgba(34, 38, 49, 0.6862745098);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 20%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li {
  width: 100%;
  display: flex;
  padding: 15px 6%;
  margin-bottom: 10px;
  border-radius: 15px;
  background-color: rgba(34, 38, 49, 0.6862745098);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li > a.active > span {
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li > a > img {
  width: 25px;
  height: auto;
  margin-right: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li > a > span {
  font-size: 1em;
  color: #b5b5b5;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li:nth-child(3) {
  position: relative;
  margin-bottom: 40px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-menu-wrapper > li:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: #808080;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper {
  width: 50%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 5%;
  display: none;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li > span:first-of-type {
  width: 100%;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li input,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li select {
  font-size: 12px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type {
  border-bottom: 1px solid #808080;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div {
  display: flex;
  width: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
  background: transparent;
  border: solid 1px #808080;
  border-radius: 9px;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div.active, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div:hover {
  z-index: 2;
  position: relative;
  box-shadow: -3px -3px 20px 3px rgba(255, 218, 69, 0.2), 3px 3px 20px 3px rgba(255, 218, 69, 0.2);
  background: #000;
  border: none;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div.active::before, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div:hover::before {
  content: "";
  background: #171717;
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-radius: 12px;
  z-index: -1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div.active::after, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div:hover::after {
  content: "";
  background: #ffda45;
  position: absolute;
  left: -3.5px;
  top: -3.5px;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 12px;
  z-index: -2;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:first-of-type > div > img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) {
  border-bottom: 1px solid #808080;
  padding-bottom: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li {
  display: flex;
  width: 100px;
  margin-right: 10px;
  height: auto;
  background: transparent;
  border: solid 2px #808080;
  border-radius: 9px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li > img {
  border-radius: 9px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li > span {
  color: rgba(170, 170, 170, 0.6666666667);
  text-align: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li.active, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li:hover {
  z-index: 2;
  position: relative;
  box-shadow: -3px -3px 20px 3px rgba(255, 218, 69, 0.2), 3px 3px 20px 3px rgba(255, 218, 69, 0.2);
  background: #000;
  border: none;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li.active::before, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li:hover::before {
  content: "";
  background: #171717;
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-radius: 12px;
  z-index: -1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li.active::after, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-list > li:hover::after {
  content: "";
  background: #ffda45;
  position: absolute;
  left: -3.5px;
  top: -3.5px;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 12px;
  z-index: -2;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  background: #1C1D1F;
  border-radius: 8px;
  padding: 5px 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li {
  width: 100%;
  display: flex;
  margin-bottom: 3px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li > span {
  color: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li > span:first-child {
  margin-right: 3px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li > span:last-child {
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li:last-child {
  justify-content: flex-end;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li:last-child > button {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
  width: 85px;
  height: 35px;
  transition: 0.3s ease-out;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li:last-child > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li:last-child > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(2) .bank-detail > li:last-child > button:hover {
  filter: brightness(1.3);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) {
  flex-wrap: wrap;
  border-bottom: 1px solid #808080;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div {
  width: calc((100% - 30px) / 3);
  height: 40px;
  background: transparent;
  border-radius: 9px;
  border: solid 1px #808080;
  color: #fff;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button.active, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button:hover,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div.active,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div:hover {
  z-index: 2;
  position: relative;
  box-shadow: -3px -3px 20px 3px rgba(255, 218, 69, 0.2), 3px 3px 20px 3px rgba(255, 218, 69, 0.2);
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button.active::before, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button:hover::before,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div.active::before,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div:hover::before {
  content: "";
  background: #171717;
  position: absolute;
  left: -1.5px;
  top: -1.5px;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-radius: 12px;
  z-index: -1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button.active::after, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button:hover::after,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div.active::after,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div:hover::after {
  content: "";
  background: #ffda45;
  position: absolute;
  left: -3.5px;
  top: -3.5px;
  width: calc(100% + 7px);
  height: calc(100% + 7px);
  border-radius: 12px;
  z-index: -2;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button.active > input, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > button:hover > input,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div.active > input,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div:hover > input {
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  position: relative;
  padding-left: 5%;
  cursor: default;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div > span {
  margin-right: 5px;
  font-size: 12px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(3) > div > input {
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: 14px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) {
  cursor: default;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > div {
  width: calc(100% - 85px - 10px);
  height: 40px;
  background: transparent;
  border-radius: 9px;
  border: solid 1px #808080;
  text-align: center;
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-left: 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > div > span {
  color: rgba(170, 170, 170, 0.6666666667);
  font-size: 14px;
  font-weight: normal;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > button {
  width: 85px;
  height: 35px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > button:hover {
  filter: brightness(1.3);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(4) > input {
  display: none;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(5) > input {
  width: 100%;
  height: 40px;
  border-radius: 9px;
  border: solid 1px #808080;
  background: transparent;
  color: #fff;
  padding-left: 5%;
  font-size: 14px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(6) {
  padding-bottom: 10px;
  border-bottom: 1px solid #808080;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(6) > select {
  width: 100%;
  height: 40px;
  border: solid 1px #808080;
  background: transparent;
  border-radius: 9px;
  color: #fff;
  padding-left: 3%;
  font-size: 14px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(6) > select optgroup {
  color: black;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:nth-of-type(6) > select option {
  color: black;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:last-of-type {
  justify-content: center;
  margin-bottom: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:last-of-type > button {
  width: 80%;
  height: 47px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:last-of-type > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .deposit-wrapper > li:last-of-type > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:first-child {
  margin-bottom: 25px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:first-child > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background: transparent;
  border-radius: 25px;
  color: #969696;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:first-child > div:not(:last-child) {
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:first-child > div.active {
  color: #ffda45;
  border: 1px solid #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) {
  align-items: flex-end;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div {
  display: flex;
  flex-direction: column;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:not(:last-child) {
  margin-right: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:not(:last-child) > span {
  color: #fff;
  margin-bottom: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:not(:last-child) > input {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  width: 200px;
  height: 40px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:not(:last-child) > input::-webkit-calendar-picker-indicator {
  filter: invert(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:last-child > button {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #52e3ff;
  background: linear-gradient(to bottom, #3355c6, #001d7b);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background: #ffda45;
  color: #222631;
  width: 120px;
  height: 40px;
  font-size: 1em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:last-child > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) > div:last-child > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > span {
  color: #fff;
  font-size: 1.1em;
  width: 100%;
  margin-bottom: 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > input,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field select {
  width: 100%;
  height: 35px;
  border: 1.5px solid #9aafeb;
  border-radius: 6px;
  background: transparent;
  padding-left: 10px;
  font-size: 1em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > input > option,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field select > option {
  color: black;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > input {
  color: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > input:disabled {
  color: #b5b5b5;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.field > select {
  color: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.btn {
  justify-content: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.btn > button {
  width: 80%;
  height: 47px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #52e3ff;
  background: linear-gradient(to bottom, #3355c6, #001d7b);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.btn > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li.btn > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:first-child {
  width: 100%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2), .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(3) {
  width: calc(50% - 10px);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:nth-child(2) {
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-value-wrapper > li:last-child {
  width: 100%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  max-height: 400px;
  overflow-y: scroll;
  padding: 0 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper > li {
  width: 100%;
  height: 38px;
  display: flex;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper > li > span {
  width: 20%;
  height: inherit;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper > li:first-child {
  background: rgba(2, 13, 48, 0.8);
  margin-bottom: 12px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper > li:nth-child(even) {
  background: #0f1c46;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper > li:nth-child(odd):not(:first-child) {
  background: #02103d;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper.transaction > li > span {
  width: 20%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper.statement > li > span {
  width: 25%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .history-wrapper .history-table-wrapper.transfer > li > span {
  width: 20%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 30px 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:first-child {
  justify-content: flex-start;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:first-child > span {
  font-size: 1.4em;
  color: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) {
  width: 60%;
  flex-direction: column;
  align-items: flex-start;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(1), .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(2) {
  width: 90%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  border-radius: 8px;
  border: solid 0.5px rgba(255, 218, 69, 0.5882352941);
  margin-bottom: 15px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(1) > span, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(2) > span {
  width: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #fff;
  font-size: 0.9em;
  display: flex;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(1) > button, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(2) > button {
  font-size: 12px;
  width: 18%;
  height: 25px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 6px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(1) > button:active, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(2) > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(1) > button:disabled, .main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:nth-child(2) > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:last-child {
  width: 90%;
  height: 92px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 80px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:last-child::before {
  content: attr(data-label);
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffda45;
  font-size: 1.2em;
  white-space: nowrap;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:last-child > a:not(:last-child) {
  margin-right: 17px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:last-child > a > img {
  width: 50px;
  height: 50px;
  transition: 0.4s ease-out;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(2) > div:last-child > a > img:hover {
  transform: scale(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(3) {
  width: 40%;
  align-items: flex-start;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(3) > img {
  width: 300px;
  height: 300px;
  padding: 10px 10px;
  background: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .referral-id-wrapper > li:nth-child(3) > img.icon {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 30px 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.title {
  justify-content: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.title > span {
  font-size: 2em;
  color: #fff;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field {
  position: relative;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > span {
  color: #fff;
  font-size: 1.1em;
  width: 100%;
  margin-bottom: 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > input,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field select {
  width: 100%;
  height: 35px;
  border-radius: 6px;
  background: #181a27;
  padding-left: 10px;
  font-size: 1em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > input.no-border,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field select.no-border {
  border: none;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > input:disabled,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field select:disabled {
  color: #aaa;
  background: rgba(170, 170, 170, 0.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > input {
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > input:disabled {
  color: #aaaaaa;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > select {
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > i {
  position: absolute;
  right: 15px;
  bottom: 5px;
  color: #fff;
  font-size: 1em;
  padding: 5px 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > button {
  width: 105px;
  height: 35px;
  font-size: 1.2em;
  border: solid 1px #ffda45;
  border-radius: 9px;
  color: #ffda45;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > button.active {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > button.active:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > button.active:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.field > button:last-child {
  margin-left: 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.notice {
  justify-content: center;
  margin-top: 60px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.notice > span {
  font-size: 1.1em;
  color: #ff91b3;
  text-align: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.text {
  margin-bottom: 50px;
  position: relative;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.text::after {
  content: attr(data-label);
  position: absolute;
  bottom: -45px;
  left: 0;
  color: #aaa;
  font-size: 1em;
  text-align: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.btn {
  justify-content: center;
  margin-top: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.btn > button {
  width: 40%;
  height: 47px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.2em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.btn > button:active {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.btn > button:disabled {
  filter: grayscale(1);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .member-basic-wrapper > li.btn > button:disabled {
  filter: grayscale(0.8);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper {
  width: 100%;
  display: flex;
  height: auto;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px 0 0 0;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper {
  width: 100%;
  display: flex;
  height: 30px;
  padding: 0 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li {
  width: 100%;
  display: flex;
  height: 30px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:first-child {
  margin-right: 5%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:not(:last-child) {
  width: 60%;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:not(:last-child) > span {
  color: #fff;
  font-size: 1.4em;
  white-space: nowrap;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:not(:last-child).new::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 4px;
  background: #ffa190;
  border-radius: 50%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child {
  width: 35%;
  justify-content: flex-end;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child > img {
  height: 30px;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child > img:hover {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child > button {
  width: 70px;
  height: 30px;
  background: transparent;
  border-radius: 9px;
  border: solid 1px #e08791;
  color: #e08791;
  border-radius: 6px;
  font-size: 0.8em;
  display: none;
  margin-right: 5px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child > button:last-child {
  border: solid 1px #6cb5f4;
  color: #6cb5f4;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .tab-wrapper > li:last-child > button:hover {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper {
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  max-height: calc(100vh - 80px - 60px - 56px);
  overflow-y: scroll;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li {
  width: 100%;
  display: flex;
  height: 50px;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 0.5px solid #adadad;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li.new::before,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li.new::before {
  opacity: 1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li.new > span,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li.new > span {
  opacity: 1;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li::before,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li::before {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 0;
  color: #b6c3c6;
  font-size: 8px;
  opacity: 0.5;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li > span,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li > span {
  width: 70%;
  color: #fff;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 0.5;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li > div,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li > div {
  width: 18px;
  height: 18px;
  border: 1px solid #52e3ff;
  border-radius: 50%;
  position: relative;
  margin-right: 10px;
  display: none;
  cursor: pointer;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li > div:hover,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li > div:hover {
  filter: brightness(1.2);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > li > div.active::after,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > li > div.active::after {
  content: "";
  width: 55%;
  height: 55%;
  background: #de7373;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > div,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > div {
  width: 100%;
  display: flex;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > div > i,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > div > i {
  color: orange;
  font-size: 1em;
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .notifications-wrapper > div > span,
.main-wrapper .member-wrapper .member-container .member-container2 .member-content-wrapper .messages-wrapper .personal-wrapper > div > span {
  color: #fff;
  font-size: 0.9em;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper {
  width: 30%;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div {
  padding: 10px 15px 0 15px;
  background: rgba(34, 38, 49, 0.6862745098);
  border-radius: 7px;
  height: 60px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div > div {
  display: flex;
  align-items: center;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div > div:first-of-type > img {
  height: 30px;
  margin-right: 10px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div > div:first-of-type > span {
  color: #ffda45;
  font-size: 1.2rem;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div > div:last-of-type {
  justify-content: flex-end;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > div > div:last-of-type > span {
  color: #ffda45;
  font-size: 1.4rem;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul {
  max-height: 958px;
  overflow-y: scroll;
  background: rgba(34, 38, 49, 0.6862745098);
  border-radius: 7px;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: transparent;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #181a27;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 45px;
  border-bottom: 1px solid #808080;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul > li > span {
  color: #fff;
  font-size: 1.2em;
  position: relative;
}
.main-wrapper .member-wrapper .member-container .member-container2 .member-wallet-wrapper > ul > li > span::before {
  content: attr(data-label);
  color: #fff;
  margin-right: 5px;
}
.main-wrapper .member-wrapper .contact-us-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 5%;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li.title {
  justify-content: center;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li.title > span {
  font-size: 2em;
  color: #fff;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li:last-child {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li:last-child > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-bottom: 30px;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li:last-child > a > img {
  height: 60px;
  margin-bottom: 10px;
}
.main-wrapper .member-wrapper .contact-us-wrapper > li:last-child > a > span {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
}
.main-wrapper .member-wrapper .info-center-wrapper {
  width: 100%;
  display: flex;
  padding: 10px 5% 30px 5%;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper {
  display: flex;
  width: 30%;
  margin-right: 30px;
  flex-direction: column;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  height: 50px;
  border-radius: 7px;
  background-color: #222631;
  justify-content: flex-start;
  align-items: center;
  padding: 0 5%;
  position: relative;
  opacity: 0.7;
  cursor: pointer;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li:hover {
  opacity: 1;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li:hover > a > span {
  color: #ffda45;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li.active {
  opacity: 1;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li.active > a > span {
  color: #ffda45;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li > a {
  width: 100%;
  display: flex;
  align-items: center;
  height: 50px;
}
.main-wrapper .member-wrapper .info-center-wrapper .tab-wrapper > li > a > span {
  color: #808080;
  font-size: 1.2em;
}
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper {
  padding: 10px 20px;
  width: 70%;
  display: none;
  background-color: #222631;
  border-radius: 8px;
  max-height: 1000px;
  overflow-y: scroll;
  cursor: default;
}
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper.tc > span,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper.tc p, .main-wrapper .member-wrapper .info-center-wrapper .article-wrapper.ht > span,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper.ht p {
  line-height: 2;
}
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper > h1,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper h2,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper h3,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper h4,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper h5,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper h6 {
  color: #ffda45;
}
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper > span,
.main-wrapper .member-wrapper .info-center-wrapper .article-wrapper p {
  color: #fff;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  width: 70%;
  display: none;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  cursor: default;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li.title {
  justify-content: center;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li.title > span {
  font-size: 2em;
  color: #fff;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li:last-child {
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li:last-child > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  margin-bottom: 30px;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li:last-child > a > img {
  height: 60px;
  margin-bottom: 10px;
  transition: 0.4s ease-out;
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li:last-child > a > img:hover {
  transform: scale(1.2);
}
.main-wrapper .member-wrapper .info-center-wrapper .cu > li:last-child > a > span {
  color: #fff;
  width: 100%;
  display: flex;
  justify-content: center;
}
.main-wrapper .member-wrapper .how-to-play-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px 5% 30px 5%;
}
.main-wrapper .member-wrapper .how-to-play-wrapper > div.title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.main-wrapper .member-wrapper .how-to-play-wrapper > div.title > span {
  font-size: 2em;
  color: #fff;
}
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper > h1,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper h2,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper h3,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper h4,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper h5,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper h6 {
  color: #fff;
}
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper > span,
.main-wrapper .member-wrapper .how-to-play-wrapper .article-wrapper p {
  color: #9aafeb;
  line-height: 2;
}
.main-wrapper .reload-wallet {
  cursor: pointer;
}
.main-wrapper .reload-wallet.rotate {
  animation: rotate 0.4s ease-out forwards;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 630px;
  padding: 40px 10%;
  background: rgba(24, 26, 39, 0.9);
  border-radius: 9px;
  position: relative;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper > i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 1.6em;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper > i:hover {
  transform: rotate(360deg);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li {
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:first-child > div {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  margin-bottom: 15px;
  cursor: pointer;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:first-child > div > img {
  width: 30px;
  height: auto;
  margin-right: 8px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:first-child > div.active {
  opacity: 1;
  color: #ffda45;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:first-child > div:hover {
  opacity: 1;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:first-child > span {
  position: relative;
  opacity: 0.6;
  top: -5px;
  font-size: 2em;
  margin: 0 20px 0;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:nth-child(2) > span {
  font-size: 1em;
  margin-bottom: 15px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:last-child > button {
  width: 50%;
  height: 35px;
  border-radius: 8px;
  color: #fff;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:last-child > button > i {
  margin-right: 10px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:last-child > button:first-child {
  background: #04a7eb;
  margin-right: 10px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container1 > li:last-child > button:last-child {
  background: #cb4a23;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  display: none;
  padding: 0 10%;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li {
  width: 100%;
  display: flex;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) {
  position: relative;
  align-items: center;
  border-radius: 9px;
  border: solid 1px #222631;
  height: 35px;
  margin-bottom: 15px;
  background-color: #222631;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child > i:first-child, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) > i:first-child {
  color: #efcd46;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.548);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child > i:last-child, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) > i:last-child {
  color: #efcd46;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child > input, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) > input {
  width: 100%;
  height: 35px;
  color: #fff;
  padding-left: 10px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child > input::-moz-placeholder, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) > input::-moz-placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:first-child > input::placeholder, .main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(2) > input::placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) {
  justify-content: space-between;
  margin: 10px 0 30px 0;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:first-child {
  display: flex;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:first-child > img {
  width: 42px;
  height: 42px;
  margin-top: -13px;
  margin-right: 5px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:first-child > span {
  color: #efcd46;
  font-size: 0.9em;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child {
  position: relative;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child > a {
  color: #c4c4c4;
  font-size: 0.9em;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child .forgot-block {
  position: absolute;
  top: 33px;
  background: linear-gradient(#e9e5e5, #c9cbcc);
  border-radius: 6px;
  padding: 7px 10px;
  display: none;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child .forgot-block::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -15px;
  left: 25px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 15px solid #ccc;
  border-bottom-color: #e9e5e5;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child .forgot-block > span:first-child {
  font-size: 14px;
  color: black;
  white-space: nowrap;
  margin-bottom: 10px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:nth-child(3) > div:last-child .forgot-block > span:last-child {
  font-size: 12px;
  color: black;
  font-weight: normal;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:last-child {
  width: 50%;
  margin-left: 25%;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .login-container2 > li:last-child > button {
  width: 100%;
  height: 47px;
  border-radius: 9px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(to top, #ffda45 121%, #efcd46 1%);
  color: #181a27;
  font-size: 1.2em;
  font-weight: bold;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  display: none;
  padding: 0 10%;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li {
  width: 100%;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 9px;
  border: solid 1px #222631;
  background-color: #222631;
  height: 35px;
  margin-bottom: 25px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > i:first-child {
  color: #ffda45;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.548);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > i.end-icon {
  color: #ffda45;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  cursor: pointer;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > img {
  width: 35px;
  height: auto;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > img:first-child {
  color: #ffda45;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.548);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > input {
  width: 100%;
  height: 35px;
  color: #fff;
  padding-left: 10px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > input:disabled {
  opacity: 0.6;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > input::-moz-placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > input::placeholder {
  color: rgba(154, 175, 235, 0.5);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li > span {
  position: absolute;
  bottom: -17px;
  font-size: 13px;
  color: rgb(219, 30, 30);
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li:nth-child(2) > i:first-child {
  padding: 0 9px;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li:last-child {
  margin-top: 5px;
  width: 50%;
  left: 25%;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li:last-child > button {
  width: 100%;
  height: 47px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  font-size: 1.2em;
  border-radius: 6px;
  background-color: #ffda45;
  color: #00101e;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease-out;
}
.main-wrapper #login-dialog .dialog-wrapper .dialog-container .login-wrapper .register-container2 > li:last-child > button:hover {
  filter: brightness(1.3);
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper {
  display: flex;
  width: 500px;
  height: 500px;
  border-radius: 12px;
  background: #0f1c46;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 1.6em;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > i:hover {
  transform: rotate(360deg);
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li {
  width: 100%;
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 25px;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li:nth-child(2) > img {
  height: 80px;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li:nth-child(3) > span {
  color: #fff;
  font-size: 1.2em;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li:last-child > button {
  height: 40px;
  width: 30%;
  font-size: 1.1em;
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #52e3ff;
  background: linear-gradient(to bottom, #3355c6, #001d7b);
  color: #fff;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li:last-child > button:active {
  filter: brightness(1.2);
}
.main-wrapper #message-confirm-dialog .dialog-wrapper .dialog-container .message-confirm-wrapper > li:last-child > button:disabled {
  filter: grayscale(1);
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 500px;
  border-radius: 9px;
  background: rgba(24, 26, 39, 0.8901960784);
  position: relative;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 1.6em;
  cursor: pointer;
  transition: 0.5s ease-out;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > i:hover {
  transform: rotate(360deg);
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(2) {
  margin: 15px 0 0;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(2) > span {
  color: #ffda45;
  font-size: 18px;
  font-weight: 500;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(3) {
  margin: 15px 0 0;
  width: 300px;
  position: relative;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(3) > span {
  width: 300px;
  background-color: #242732;
  border: solid 0.5px #808080;
  padding: 7.4px 9.9px 6.1px 20px;
  border-radius: 5px;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(3) > button {
  position: absolute;
  background-color: #efcd46;
  color: #181a27;
  right: 6px;
  padding: 3px 5px;
  border-radius: 3px;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(4) {
  margin: 15px 0;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(4) > img {
  height: 300px;
  padding: 15px 15px;
  background: #fff;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(5) {
  width: 100%;
  height: 92px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(5) > a {
  transition: 0.4s ease-out;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(5) > a:hover {
  transform: scale(1.2);
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(5) > a:not(:last-child) {
  margin-right: 17px;
}
.main-wrapper #share-dialog .dialog-wrapper .dialog-container .share-wrapper > div:nth-child(5) > a > img {
  width: 44.5px;
  height: 44.5px;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container {
  display: flex;
  flex-direction: column;
  position: relative;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container > i {
  position: absolute;
  right: 15px;
  top: 15px;
  color: #fff;
  font-size: 1.6em;
  cursor: pointer;
  transition: 0.5s ease-out;
  color: #ffda45;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container > i:hover {
  transform: rotate(360deg);
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container > img {
  width: 100%;
  max-width: 1100px;
  height: auto;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper {
  width: 100%;
  max-width: 1100px;
  height: auto;
  max-height: 450px;
  border-radius: 0 0 6px 6px;
  background: #242732;
  position: relative;
  overflow-y: scroll;
  padding: 10px 15px;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper span,
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper p,
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper font,
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper * {
  color: #959595;
  font-size: 14px;
  font-weight: normal;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper::-webkit-scrollbar {
  width: 10px;
  height: 10px;
  background-color: #ffda45;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper::-webkit-scrollbar-track {
  background-color: transparent;
}
.main-wrapper #promotion-dialog .dialog-wrapper .dialog-container .article-wrapper::-webkit-scrollbar-thumb {
  border-radius: 25px;
  background-color: #ffda45;
}

.custom-form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 5%;
}
.custom-form-wrapper .custom-form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.custom-form-wrapper .custom-form > li {
  width: 100%;
  display: flex;
}
.custom-form-wrapper .custom-form > li > span {
  margin-bottom: 5px;
  color: #fff;
}
.custom-form-wrapper .custom-form > li.touch, .custom-form-wrapper .custom-form > li.touch2 {
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.custom-form-wrapper .custom-form > li.touch > span, .custom-form-wrapper .custom-form > li.touch2 > span {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.touch > div, .custom-form-wrapper .custom-form > li.touch2 > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  width: calc((100% - 70px) / 8);
  height: auto;
  margin-bottom: 7px;
  position: relative;
}
.custom-form-wrapper .custom-form > li.touch > div > img, .custom-form-wrapper .custom-form > li.touch2 > div > img {
  width: 90%;
}
.custom-form-wrapper .custom-form > li.touch > div > span, .custom-form-wrapper .custom-form > li.touch2 > div > span {
  text-align: center;
  color: #fff;
}
.custom-form-wrapper .custom-form > li.touch > div:not(:nth-of-type(8n)), .custom-form-wrapper .custom-form > li.touch2 > div:not(:nth-of-type(8n)) {
  margin-right: 10px;
}
.custom-form-wrapper .custom-form > li.touch > div.active, .custom-form-wrapper .custom-form > li.touch2 > div.active {
  color: #fff;
  border: 2px solid #ffda45;
  background: #000;
}
.custom-form-wrapper .custom-form > li.touch > div.tag:after, .custom-form-wrapper .custom-form > li.touch2 > div.tag:after {
  content: attr(data-tag);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: red;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  animation: blinker 1.5s linear infinite;
}
.custom-form-wrapper .custom-form > li.touch2 {
  position: relative;
}
.custom-form-wrapper .custom-form > li.touch2::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #a7a1a1;
  position: absolute;
  bottom: -5px;
}
.custom-form-wrapper .custom-form > li.touch2 > div {
  position: relative;
  min-height: 89px;
}
.custom-form-wrapper .custom-form > li.touch2 > div > span {
  position: absolute;
  bottom: 6px;
}
.custom-form-wrapper .custom-form > li.detail {
  margin-bottom: 15px;
  display: none;
}
.custom-form-wrapper .custom-form > li.detail.show {
  display: flex;
  flex-direction: column;
}
.custom-form-wrapper .custom-form > li.detail > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  border: solid 1px #fff;
  padding: 20px 20px;
  border-radius: 8px;
  position: relative;
}
.custom-form-wrapper .custom-form > li.detail > ul > li {
  width: 100%;
  display: flex;
  cursor: pointer;
}
.custom-form-wrapper .custom-form > li.detail > ul > li:not(:last-of-type) {
  margin-bottom: 15px;
}
.custom-form-wrapper .custom-form > li.detail > ul > li:hover {
  filter: brightness(1.1);
}
.custom-form-wrapper .custom-form > li.detail > ul > li > span {
  color: #fff;
  font-size: 1rem;
}
.custom-form-wrapper .custom-form > li.detail > ul > li > span:last-of-type {
  margin-left: 5px;
  color: #ffce50;
}
.custom-form-wrapper .custom-form > li.detail > ul > li > i {
  margin-left: 5px;
  font-size: 1rem;
  color: #ffce50;
}
.custom-form-wrapper .custom-form > li.detail > ul > button {
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  border-radius: 8px;
  padding: 10px 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.custom-form-wrapper .custom-form > li.detail > div {
  width: 100%;
  display: none;
  flex-direction: column;
  background: transparent;
  border: solid 1px #fff;
  margin-top: 15px;
  padding: 20px 20px;
  border-radius: 8px;
  position: relative;
}
.custom-form-wrapper .custom-form > li.detail > div.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.detail > div > span {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}
.custom-form-wrapper .custom-form > li.detail > div > img {
  width: 60%;
  max-width: 200px;
  border-radius: 8px;
  padding: 10px 10px;
  background-color: #fff;
}
.custom-form-wrapper .custom-form > li.release {
  align-items: center;
  margin-bottom: 15px;
  display: none;
}
.custom-form-wrapper .custom-form > li.release.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.release > div {
  width: 20px;
  height: 20px;
  border: solid 1px #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 8px;
  cursor: pointer;
}
.custom-form-wrapper .custom-form > li.release > span {
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}
.custom-form-wrapper .custom-form > li.release.active > div::after {
  content: "";
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.custom-form-wrapper .custom-form > li.extreme {
  justify-content: space-between;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.extreme > span {
  color: #fff;
  font-size: 1rem;
}
.custom-form-wrapper .custom-form > li.amount {
  margin-bottom: 15px;
  flex-direction: column;
}
.custom-form-wrapper .custom-form > li.amount > div {
  width: 100%;
  display: flex;
}
.custom-form-wrapper .custom-form > li.amount > div.typing {
  position: relative;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.amount > div.typing::after {
  content: attr(data-bonus);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #ffce50;
}
.custom-form-wrapper .custom-form > li.amount > div.typing > input {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 1px solid #a7a1a1;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: 10px 10px;
}
.custom-form-wrapper .custom-form > li.amount > div.fill {
  flex-wrap: wrap;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.amount > div.fill > button {
  background: transparent;
  border: 1px solid #a7a1a1;
  border-radius: 8px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc((100% - 20px) / 3);
  height: 42px;
  margin-bottom: 5px;
  position: relative;
}
.custom-form-wrapper .custom-form > li.amount > div.fill > button::after {
  content: attr(data-bonus);
  position: absolute;
  right: 2px;
  top: 0;
  font-size: 12px;
  color: #ffce50;
}
.custom-form-wrapper .custom-form > li.amount > div.fill > button:not(:nth-of-type(3n)) {
  margin-right: 10px;
}
.custom-form-wrapper .custom-form > li.pin, .custom-form-wrapper .custom-form > li.refno {
  margin-bottom: 15px;
  flex-direction: column;
  display: none;
}
.custom-form-wrapper .custom-form > li.pin.show, .custom-form-wrapper .custom-form > li.refno.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.pin > div, .custom-form-wrapper .custom-form > li.refno > div {
  width: 100%;
  display: flex;
  position: relative;
}
.custom-form-wrapper .custom-form > li.pin > div > input, .custom-form-wrapper .custom-form > li.refno > div > input {
  width: 100%;
  color: #fff;
  background: transparent;
  border: 1px solid #a7a1a1;
  border-radius: 8px;
  margin-bottom: 5px;
  padding: 10px 10px;
}
.custom-form-wrapper .custom-form > li.pin > div > i.fa-eye, .custom-form-wrapper .custom-form > li.pin > div > i.fa-eye-slash, .custom-form-wrapper .custom-form > li.refno > div > i.fa-eye, .custom-form-wrapper .custom-form > li.refno > div > i.fa-eye-slash {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  font-size: 1rem;
}
.custom-form-wrapper .custom-form > li.receipt {
  cursor: default;
  display: none;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.custom-form-wrapper .custom-form > li.receipt.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.receipt > span {
  width: 100%;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.receipt > div {
  width: calc(100% - 85px - 10px);
  height: 40px;
  background: transparent;
  border-radius: 9px;
  border: 1px solid #a7a1a1;
  text-align: center;
  display: flex;
  align-items: center;
  margin-right: 10px;
  padding-left: 5%;
}
.custom-form-wrapper .custom-form > li.receipt > div > span {
  color: rgba(170, 170, 170, 0.6666666667);
  font-size: 14px;
}
.custom-form-wrapper .custom-form > li.receipt > button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85px;
  height: 40px;
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
}
.custom-form-wrapper .custom-form > li.receipt > input {
  display: none;
}
.custom-form-wrapper .custom-form > li.list {
  flex-direction: column;
  margin-bottom: 15px;
}
.custom-form-wrapper .custom-form > li.list > span {
  width: 100%;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 5px;
}
.custom-form-wrapper .custom-form > li.list > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.custom-form-wrapper .custom-form > li.list > ul > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #a7a1a1;
  border-radius: 8px;
  color: #fff;
  padding: 8px 5%;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.custom-form-wrapper .custom-form > li.list > ul > li > span {
  width: 100%;
  text-align: center;
  color: #ffce50;
}
.custom-form-wrapper .custom-form > li.list > ul > li > i {
  display: none;
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 1.2rem;
  color: green;
}
.custom-form-wrapper .custom-form > li.list > ul > li > button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  justify-content: center;
  align-items: center;
}
.custom-form-wrapper .custom-form > li.list > ul > li > button.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.list > ul > li > button > i {
  color: #fff;
  font-size: 1.4rem;
}
.custom-form-wrapper .custom-form > li.list > ul > li > div {
  margin-top: 5px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.custom-form-wrapper .custom-form > li.list > ul > li > div > span {
  color: #fff;
  border: solid 1px #efefef;
  border-radius: 12px;
  padding: 3px 5px;
}
.custom-form-wrapper .custom-form > li.list > ul > li > div > span:not(:last-of-type) {
  margin-right: 5px;
}
.custom-form-wrapper .custom-form > li.list > ul > li.active {
  color: #fff;
  border: 2px solid #ffce50;
}
.custom-form-wrapper .custom-form > li.list > ul > li.active > i {
  display: flex;
}
.custom-form-wrapper .custom-form > li.list > ul > li.none > span {
  color: #fff;
}
.custom-form-wrapper .custom-form > li.turnover {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  border: solid 2px #c61123;
  background: #101010;
  display: none;
  margin-bottom: 15px;
  position: relative;
}
.custom-form-wrapper .custom-form > li.turnover::before {
  content: "Note :";
  color: #c61123;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  top: -20px;
  left: 0;
}
.custom-form-wrapper .custom-form > li.turnover.show {
  display: flex;
}
.custom-form-wrapper .custom-form > li.turnover > div {
  display: flex;
  flex-direction: column;
  padding: 5px 0;
}
.custom-form-wrapper .custom-form > li.turnover > div > span {
  width: auto;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
.custom-form-wrapper .custom-form > li.turnover > div > span:first-of-type {
  color: #ec8028;
  font-size: 1.2rem;
}
.custom-form-wrapper .custom-form > li.turnover > div > span.pad {
  position: relative;
}
.custom-form-wrapper .custom-form > li.turnover > div > span.pad::before {
  content: "*";
  color: red;
  font-size: 14px;
  line-height: 1.5;
  padding: 0 5px;
}
.custom-form-wrapper .custom-form > li.button {
  justify-content: center;
}
.custom-form-wrapper .custom-form > li.button > button {
  width: 80%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  transition: all 0.3s;
  border-radius: 8px;
  font-size: 1.2rem;
}
.custom-form-wrapper .custom-form > li.button > button:disabled {
  filter: grayscale(1);
}

.full-overlay {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.status-msg-wrapper {
  width: 100%;
  display: flex;
  min-height: 500px;
  justify-content: center;
  align-items: center;
  display: none;
}
.status-msg-wrapper.show {
  display: flex;
}
.status-msg-wrapper .status-msg-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 15px 0;
  justify-content: center;
  align-items: center;
}
.status-msg-wrapper .status-msg-container > img {
  width: 180px;
  margin-bottom: 30px;
}
.status-msg-wrapper .status-msg-container > img.rotate {
  animation: rotate 1.2s ease-out infinite forwards;
}
.status-msg-wrapper .status-msg-container > img.padding {
  padding: 10px 10px;
  background: #fff;
  border-radius: 8px;
}
.status-msg-wrapper .status-msg-container > span {
  color: #fff;
  font-size: 1.6rem;
}
.status-msg-wrapper .status-msg-container > button {
  border-radius: 6px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  border: solid 1px #ffda45;
  background: #ffda45;
  color: black;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  justify-content: center;
  align-items: center;
  padding: 15px 60px;
  margin-top: 30px;
  border-radius: 8px;
  display: none;
}
.status-msg-wrapper .status-msg-container > button:active {
  filter: brightness(1.2);
}
.status-msg-wrapper .status-msg-container > button:disabled {
  filter: grayscale(1);
}
.status-msg-wrapper .status-msg-container > button.show {
  display: flex;
}
.status-msg-wrapper .status-msg-container > div {
  display: none;
}
.status-msg-wrapper .status-msg-container > div.show {
  display: flex;
  background: #fff;
  padding: 10px 10px;
  margin-bottom: 30px;
  border-radius: 8px;
}
.status-msg-wrapper .status-msg-container > div.show > img,
.status-msg-wrapper .status-msg-container > div.show > canvas {
  width: 300px;
  height: 300px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slideIn {
  0% {
    left: -350px;
  }
  100% {
    left: 0;
  }
}
@keyframes slideOut {
  0% {
    left: 0;
  }
  100% {
    left: -500px;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes expand {
  0% {
    height: 52px;
  }
  100% {
    height: 404px;
  }
}
@keyframes shrink {
  0% {
    height: 404px;
  }
  100% {
    height: 52px;
  }
}
@keyframes expandWallet {
  0% {
    height: 0;
    opacity: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes shrinkWallet {
  0% {
    display: flex;
    height: 100%;
  }
  90% {
    height: 0%;
  }
  100% {
    display: none;
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(-360deg);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.infinite-rotation {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hotshine {
  0% {
    height: 22px;
    filter: brightness(100%);
  }
  50% {
    height: 26px;
    filter: brightness(150%);
  }
  100% {
    height: 22px;
    filter: brightness(100%);
  }
}
@media only screen and (max-width: 1399px) {
  .main-wrapper .step-wrapper > li > a > div:first-child > span {
    font-size: 1.2em;
  }
  .main-wrapper .step-wrapper > li > a > div:last-child {
    position: relative;
    top: -10px;
  }
  .main-wrapper .step-wrapper > li > a > div:last-child > span {
    font-size: 12px;
  }
  .main-wrapper .step-wrapper > li:last-child > a > div:last-child {
    top: -17px;
  }
}/*# sourceMappingURL=index.css.map */