@import url("https://fonts.googleapis.com/css2?family=Prompt:wght@400;600&display=swap");

@font-face {
  font-family: "DB HelvethaicaX";
  src: url("../webfonts/DBHelvethaicaX-55Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "DB HelvethaicaX";
  src: url("../webfonts/DBHelvethaicaX-65Med.ttf");
  font-weight: bold;
  font-style: normal;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 219, 0.87);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(135, 38, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(135, 38, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 0, 219, 0.87);
    box-shadow: 0 0 0 0 rgba(255, 0, 219, 0.87);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(135, 38, 255, 0);
    box-shadow: 0 0 0 10px rgba(135, 38, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(135, 38, 255, 0);
    box-shadow: 0 0 0 0 rgba(135, 38, 255, 0);
  }
}

@-webkit-keyframes pulseWheel {
  0% {
    -webkit-box-shadow: 0 0 20px 0 #ffc800;
  }

  70% {
    -webkit-box-shadow: 0 0 20px 40px rgba(255, 200, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 20px 0 rgba(255, 200, 0, 0);
  }
}

@keyframes pulseWheel {
  0% {
    -moz-box-shadow: 0 0 20px 0 #ffc800;
    box-shadow: 0 0 20px 0 #ffc800;
  }

  70% {
    -moz-box-shadow: 0 0 20px 40px rgba(255, 200, 0, 0);
    box-shadow: 0 0 20px 40px rgba(255, 200, 0, 0);
  }

  100% {
    -moz-box-shadow: 0 0 20px 0 rgba(255, 200, 0, 0);
    box-shadow: 0 0 20px 0 rgba(255, 200, 0, 0);
  }
}

@-webkit-keyframes pulseWheelMobile {
  0% {
    -webkit-box-shadow: 0 0 30px 0 #ffc800;
  }

  70% {
    -webkit-box-shadow: 0 0 30px 10px rgba(255, 200, 0, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 30px 0 rgba(255, 200, 0, 0);
  }
}

@keyframes pulseWheelMobile {
  0% {
    -moz-box-shadow: 0 0 30px 0 #ffc800;
    box-shadow: 0 0 30px 0 #ffc800;
  }

  70% {
    -moz-box-shadow: 0 0 30px 10px rgba(255, 200, 0, 0);
    box-shadow: 0 0 30px 10px rgba(255, 200, 0, 0);
  }

  100% {
    -moz-box-shadow: 0 0 30px 0 rgba(255, 200, 0, 0);
    box-shadow: 0 0 30px 0 rgba(255, 200, 0, 0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes blinkTo {
  50% {
    opacity: 0;
  }
}

@keyframes blinkForm {
  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(-45deg);
  }

  1% {
    transform: translate(-1px, -2px) rotate(-55deg);
  }

  2% {
    transform: translate(-3px, 0px) rotate(-35deg);
  }

  3% {
    transform: translate(3px, 2px) rotate(-45deg);
  }

  4% {
    transform: translate(1px, -1px) rotate(-35deg);
  }

  5% {
    transform: translate(-1px, 2px) rotate(-55deg);
  }

  6% {
    transform: translate(-3px, 1px) rotate(-45deg);
  }

  7% {
    transform: translate(3px, 1px) rotate(-55deg);
  }

  8% {
    transform: translate(-1px, -1px) rotate(-35deg);
  }

  9% {
    transform: translate(1px, 2px) rotate(-45deg);
  }

  10% {
    transform: translate(1px, -2px) rotate(-55deg);
  }

  11% {
    transform: translate(1px, 1px) rotate(-45deg);
  }
}

.btn {
  position: relative;
  padding: 8px 28px;
  text-align: center;
  border-radius: 38px;
  overflow: hidden;
  font-weight: bold;
  transition: all 0.25s ease;
}

.btn span {
  z-index: 10;
}

.btn span i {
  font-size: 16px;
  margin-left: 8px;
}

.btn--primary {
  color: #000 !important;
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
}

.btn--primary:hover {
  transform: scale(1.015);
  box-shadow: 0 0 0 0.25rem rgba(255, 200, 0, 0.1);
}

.btn--danger {
  color: #fff !important;
  background-color: #e5003c;
}

.btn--danger:hover {
  background-color: rgba(229, 0, 60, 0.75);
}

.btn--secondary {
  color: #fff !important;
  background-image: linear-gradient(310deg, #5a028d 0%, #f794ff 100%);
  transition: 250ms all ease-out;
}

.btn--secondary:hover {
  transform: scale(1.015);
  box-shadow: 0 0 0 0.25rem rgba(255, 0, 219, 0.15);
}

.btn--third {
  color: #fff !important;
  background: #000 !important;
  border: 1px solid #ffcd1850;
  transition: all 0.25s ease;
}

.btn--third:hover {
  transform: scale(1.015);
  color: #ffcd18 !important;
  border: 1px solid #ffcd18;
}

.btn--dark {
  color: #fff !important;
  background-color: black;
}

.btn--dark:hover {
  background-color: rgba(0, 0, 0, 0.75);
}

.radio-group {
  display: block;
  position: relative;
  padding: 16px 0 16px 64px;
  margin-right: 24px;
  border-radius: 38px;
  cursor: pointer;
  font-size: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.75);
}

.radio-group:before {
  content: "";
  position: relative;
  width: 24px;
}

.radio-group input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-group input:checked~.checkmark {
  color: #00be7b;
  background-color: #00be7b;
}

.radio-group input:checked~.checkmark:after {
  opacity: 1;
}

.radio-group input:checked~.text {
  color: #00be7b;
}

.radio-group .checkmark {
  position: absolute;
  top: 22px;
  left: 24px;
  height: 24px;
  width: 24px;
  background-color: #eee;
  border-radius: 50%;
  transition: 250ms all ease-out;
}

.radio-group .checkmark:before,
.radio-group .checkmark:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 9px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -75%) rotate(-45deg);
  left: 50%;
  top: 50%;
  opacity: 0;
  transition: 250ms all ease-out;
}

.radio-group:hover .checkmark {
  background-color: #00be7b;
}

.radio-group:hover .checkmark:before {
  opacity: 1;
}

.non-bonus-auto {
  padding-top: 24px;
  position: relative;
  margin-bottom: 32px;
}

.non-bonus-auto:before {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  top: -1px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.non-bonus-auto .radio-group {
  margin: 0;
}

.history {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding: 32px 48px;
  display: flex;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  margin-bottom: 24px;
}

.history h1 {
  color: #ffc800;
  font-size: 2rem;
  line-height: 1;
}

.history p {
  font-size: 1rem;
}

.history small {
  line-height: 0.75;
  display: block;
  font-size: 0.9rem;
}

.history__type {
  align-self: center;
}

.history__amount {
  margin-left: auto;
  text-align: right;
}

.history__amount--status {
  font-size: 0.9rem;
  border-radius: 16px;
  display: inline-block;
}

.history__amount--status span strong {
  color: #ffc800;
}

.history__amount--status.wait {
  padding: 2px 8px;
  color: #000;
  background-color: #ffc800;
}

.history__amount--status.failed {
  padding: 2px 8px;
  color: #fff;
  background-color: #e5003c;
}

.history__amount--status.success {
  padding: 2px 8px;
  color: #fff;
  background-color: #00be7b;
}

@media screen and (max-width: 1200px) {
  .history {
    padding: 16px 24px;
  }
}

@media screen and (max-width: 576px) {
  .history h1 {
    font-size: 1.5rem;
  }

  .history p {
    font-size: 0.9rem;
  }

  .history__amount--status {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 576px) {
  #bonus .history {
    display: block;
  }

  #bonus .history__amount {
    margin-left: 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
  }
}

.download {
  -webkit-box-flex: 0;
  max-width: 50%;
  flex: 0 0 50%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  display: block;
  margin-bottom: 32px;
}

@media screen and (min-width: 992px) and (max-width: 1200px) {
  .download {
    -webkit-box-flex: 0;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 576px) {
  .download {
    -webkit-box-flex: 0;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.download__img {
  display: block;
  margin-right: 1rem;
}

.download__info h1 {
  font-size: 1.5rem;
}

.download__info p {
  font-size: 0.9rem;
  opacity: 0.75;
}

.download__info a {
  display: inline-block;
  margin-top: 1rem;
}

.download .title-bar {
  padding: 0;
}

.tab {
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 32px;
}

.tab:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.04);
  z-index: 0;
  border-radius: 20px;
}

.tab__link {
  padding: 12px;
  cursor: pointer;
  z-index: 1;
  transition: 250ms all ease-out;
  text-transform: uppercase;
  text-align: center;
  font-size: 24px;
  white-space: nowrap;
  flex: 1 auto;
}

.tab__link:first-child {
  border-radius: 20px 0 0 20px;
}

.tab__link:last-child {
  border-radius: 0 20px 20px 0;
}

.tab__link.tab-active {
  color: #000;
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
}

.tab__link:hover:not(.tab-active) {
  background-color: rgba(255, 255, 255, 0.04);
}

@media screen and (max-width: 1200px) {
  .tab__link {
    padding: 12px 0;
    width: calc(100% / 4);
    text-align: center;
    font-size: 0.9rem;
  }

  .tab__link:last-child {
    border-radius: 0 20px 20px 0;
  }
}

.tab__content {
  width: 100%;
}

.profile {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 32px;
  margin-top: 32px;
  margin-bottom: 32px;
  position: relative;
}

.profile:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

.profile__col {
  width: 40%;
}

.profile__col--account {
  width: 20%;
}

.profile__col--account .bank-info {
  margin: 0;
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  margin-right: 24px;
}

.profile__col--account .bank-info h1 {
  color: #ffc800;
}

.profile__col--withdraw {
  width: 255px;
}

.profile__col--form {
  width: 100%;
  margin-top: 24px;
}

.profile__col--form form {
  width: 510px;
}

.profile__col--form form.affiliate-withdraw {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.profile__col--form form.affiliate-withdraw fieldset {
  width: calc(50% - 24px);
  margin-right: 24px;
}

.profile__col--form form .btn-submit {
  width: 100%;
}

.profile__col--form form button[type="submit"] {
  width: auto;
  min-width: 200px;
}

.profile__col--image {
  width: 20%;
}

.profile__col--image img {
  display: block;
  width: 100px;
  border-radius: 50%;
}

.profile__col--image img.bank {
  border-radius: 20px;
}

.profile__col--image img.qrcode {
  width: 150px;
  border-radius: 20px;
}

.profile__col h2 {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.profile__col p.highlight {
  color: #ffc800;
  font-size: 1.5rem;
}

.profile__col p.danger {
  color: #e5003c;
  font-size: 1.5rem;
}

.profile__col p.link {
  display: block;
}

.profile__col p.link a {
  display: block;
  width: 100px;
}

.profile__col p.link a:hover {
  opacity: 0.75;
}

.profile__col p.link span {
  display: inline-block;
  margin-left: 0;
  margin-top: 0.5rem;
}

.profile__col p i {
  width: 20px;
  font-size: 0.6rem;
  opacity: 0.75;
  margin-right: 0.25rem;
}

.profile__col p .btn-copy {
  margin-left: 1rem;
}

@media screen and (max-width: 1200px) {
  .profile__col {
    width: 35%;
  }

  .profile__col--withdraw {
    width: 200px;
  }

  .profile__col--image {
    width: 30%;
  }
}

@media screen and (max-width: 576px) {
  .profile__col {
    width: 70%;
    margin-bottom: 24px;
  }

  .profile__col--withdraw {
    width: 50%;
  }

  .profile__col--withdraw.xs-right {
    text-align: right;
  }

  .profile__col--form {
    margin-top: 0;
  }

  .profile__col--form form {
    width: 100%;
  }

  .profile__col--form form button[type="submit"] {
    width: 100%;
    min-width: 100%;
  }

  .profile__col--form form.affiliate-withdraw {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }

  .profile__col--form form.affiliate-withdraw fieldset {
    width: 100%;
    margin-right: 0;
  }

  .profile__col--image {
    width: 30%;
    margin-bottom: 24px;
  }

  .profile__col--image img {
    width: 100%;
    margin-left: auto;
  }

  .profile__col--image img.qrcode {
    width: 100%;
    border-radius: 20px;
  }

  .profile__col--order-xs-1 {
    order: 1;
  }

  .profile__col--order-xs-2 {
    order: 2;
  }

  .profile__col--order-xs-3 {
    order: 3;
    width: 100% !important;
    margin: 0;
  }

  .profile__col--order-xs-3 p {
    display: flex;
  }

  .profile__col--order-xs-3 p i {
    width: 20px;
    align-self: center;
  }

  .profile__col--order-xs-3 p .btn-copy {
    margin-left: auto;
  }
}

.profile .title-bar {
  width: 100%;
  padding: 0;
}

.profile .btn {
  cursor: pointer;
  display: inline-block;
  margin-top: 0.5rem;
  transition: 250ms all ease-out;
  white-space: nowrap;
}

.btn-copy {
  color: #ffc800;
  cursor: pointer;
  position: relative;
  font-size: 0.9rem;
}

.btn-copy i {
  font-size: 0.6rem;
  opacity: 0.75;
  margin-right: 0.25rem;
}

.btn-copy:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -10px;
  right: -10px;
  bottom: -2px;
  border-radius: 20px;
  z-index: 0;
  background-color: rgba(255, 255, 255, 0);
  transition: 250ms all ease-out;
}

.btn-copy:hover:before {
  background-color: rgba(255, 255, 255, 0.1);
}

.change-password {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 1200;
  animation: fadeIn 250ms 1;
}

.change-password h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.change-password.fadeOut {
  animation: fadeOut 250ms 1;
}

.change-password__wrapper {
  position: absolute;
  min-width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #101010;
  border-radius: 20px;
  padding: 1.5rem 1rem 1rem;
}

@media screen and (max-width: 576px) {
  .change-password__wrapper {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    transform: translate(0, 0);
    background-color: #101010;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1rem 1rem;
    box-sizing: border-box;
  }
}

.change-password .btn {
  border: 0;
}

.msn-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 1200;
  animation: fadeIn 250ms 1;
}

.msn-modal--success {
  width: 100%;
  margin: 1rem auto;
  text-align: center;
}

.msn-modal--success i {
  color: #00be7b;
  font-size: 100px;
  margin-bottom: 0.5rem;
}

.msn-modal--failed {
  width: 100%;
  margin: 1rem auto;
  text-align: center;
}

.msn-modal--failed i {
  color: #e5003c;
  font-size: 100px;
  margin-bottom: 0.5rem;
}

.msn-modal .submit-redeem {
  display: block;
}

.msn-modal h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.msn-modal.fadeOut {
  animation: fadeOut 250ms 1;
}

.msn-modal__wrapper {
  position: absolute;
  min-width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #101010;
  border-radius: 20px;
  padding: 1.5rem 1rem 1rem;
}

@media screen and (max-width: 576px) {
  .msn-modal__wrapper {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    min-width: 100%;
    transform: translate(0, 0);
    background-color: #101010;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem 1rem 1rem;
    box-sizing: border-box;
  }
}

.msn-modal .btn {
  border: 0;
}

.affiliate-wrapper {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.affiliate-wrapper .title-bar {
  width: 100%;
  padding: 0;
}

.affiliate-wrapper__list {
  display: flex;
  border-radius: 20px;
  padding: 24px 32px;
  background-color: rgba(255, 255, 255, 0.04);
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.affiliate-wrapper__list img {
  border-radius: 50%;
  margin-right: 24px;
  width: 72px;
  align-items: start;
}

.affiliate-wrapper__list--info {
  margin: auto 0;
  width: 100%;
  display: flex;
}

.affiliate-wrapper__list--info .profile-info h1 {
  font-size: 1rem;
}

.affiliate-wrapper__list--info .profile-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

.affiliate-wrapper__list--info .status {
  color: #fff;
  margin-left: auto;
  display: flex;
}

.affiliate-wrapper__list--info .status .success {
  background-color: #00be7b;
  padding: 8px 16px;
  border-radius: 20px;
  margin: auto 0;
}

.affiliate-wrapper__list--info .status .failed {
  background-color: #e5003c;
  padding: 8px 16px;
  border-radius: 20px;
  margin: auto 0;
}

@media screen and (max-width: 576px) {
  .affiliate-wrapper__list img {
    max-height: 72px;
  }

  .affiliate-wrapper__list--info {
    display: block;
  }

  .affiliate-wrapper__list--info .status {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

.affiliate_qr_code_container {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.small_coin,
.medium_coin,
.large_coin,
.x_large_coin {
  position: absolute;
}

.small_coin {
  right: -20px;
  bottom: 30px;
  z-index: 1;
}

.x_large_coin {
  left: -50px;
  bottom: 0;
  z-index: 4;
}

.medium_coin {
  left: -25px;
  bottom: 40px;
  z-index: 1;
}

.large_coin {
  bottom: 0;
  z-index: 4;
  right: -40px;
}

.notice {
  width: 100%;
}

.notice__list {
  padding: 16px 24px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
}

.notice__list p.notice-alert {
  display: flex;
}

.notice__list p.notice-alert strong,
.notice__list p.notice-alert i {
  color: #e5003c;
}

.notice__list p.warning {
  display: flex;
}

.notice__list p.warning strong,
.notice__list p.warning i {
  color: #ffc800;
}

.notice__list p i {
  font-size: 0.75rem;
  width: 20px;
  margin-right: 0.5rem;
  align-self: center;
}

@media screen and (max-width: 576px) {
  .notice__list {
    font-size: 0.75rem;
  }
}

.bank-info {
  padding: 24px;
  margin-bottom: 32px;
  border-radius: 20px;
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
}

.bank-info img {
  display: block;
  margin-bottom: 1rem;
}

.bank-info h1 {
  line-height: 1;
  font-size: 1.25rem;
  font-weight: bold;
}

.bank-info small,
.bank-info p {
  opacity: 0.75;
}

.bank-info small,
.bank-info p {
  opacity: 0.75;
}

.bank-info .btn-copy,
.affiliate__info--group .btn-copy {
  display: inline-block;
  margin-top: 12px;
}

@media screen and (max-width: 1200px) {
  .bank-info small {
    font-size: 0.75rem;
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
  }

  .bank-info p {
    font-size: 0.85rem;
  }

  .bank-info h1 {
    font-size: 1rem;
  }
}

.lucky-wheel-wrapper {
  display: flex;
  align-items: center;
  height: 75vh;
}

.lucky-wheel {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
  width: 100%;
  margin-top: 48px;
  margin-bottom: 84px;
}

.lucky-wheel:before {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  z-index: 0;
  box-shadow: 0 0 200px 10px #ffc800;
}

@media screen and (max-width: 1200px) {
  .lucky-wheel:before {
    box-shadow: 0 0 120px 10px #ffc800;
  }
}

@media screen and (max-width: 576px) {
  .lucky-wheel:before {
    top: 50%;
    width: 260px;
    height: 260px;
    box-shadow: 0 0 120px 0 #ffc800;
  }
}

.lucky-wheel__frame {
  position: absolute;
  top: -91px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 0;
}

@media screen and (max-width: 576px) {
  .lucky-wheel__frame {
    top: -49px;
    width: 100%;
  }

  .lucky-wheel__frame img {
    width: 100% !important;
    top: -1px !important;
    left: 0 !important;
  }
}

.lucky-wheel__frame img {
  display: flex;
  justify-content: center;
}

.lucky-wheel__frame .animate-form {
  animation: blinkForm 0.5s step-start 0s infinite;
}

.lucky-wheel__frame .animate-to {
  animation: blinkTo 0.5s step-start 0s infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.lucky-wheel__wheel {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 576px) {
  .lucky-wheel__wheel {
    width: 100%;
  }

  .lucky-wheel__wheel canvas {
    width: 90% !important;
    height: 90% !important;
  }
}

.lucky-wheel__arrow {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

@media screen and (max-width: 576px) {
  .lucky-wheel__arrow {
    top: -40px;
    width: 36px;
  }

  .lucky-wheel__arrow img {
    width: 100%;
  }
}

.lucky-wheel__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.lucky-wheel__logo:before {
  content: "";
  position: absolute;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  z-index: -1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  animation: pulseWheel 1s infinite;
}

@media screen and (max-width: 576px) {
  .lucky-wheel__logo:before {
    animation: pulseWheelMobile 1s infinite;
  }
}

@media screen and (max-width: 576px) {
  .lucky-wheel__logo--bg {
    width: 100px;
  }
}

.lucky-wheel__logo .logo-wheel {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90px;
}

@media screen and (max-width: 576px) {
  .lucky-wheel__logo .logo-wheel {
    max-width: 72px;
  }
}

.lucky-wheel__play {
  position: absolute;
  bottom: -84px;
  left: 50%;
  transform: translateX(-50%);
  will-change: transform;
  transition: transform .25s ease;
  cursor: pointer;
  z-index: 20;
}

.lucky-wheel__play:hover {
  transform: translateX(-50%) scale(1.10);
}

@media screen and (max-width: 576px) {
  .lucky-wheel__play {
    max-width: 400px;
    bottom: -70px;
  }

  .lucky-wheel__play img {
    width: 100%;
  }
}


.lucky-wheel__play #spin_button {
  cursor: pointer;
  transition: 250ms all ease-out;
}

.lucky-wheel__play #spin_button.spin-disabled {
  cursor: not-allowed;
}

.lucky-wheel__play #spin_button:hover {
  transform: scale(1.05);
}

.lucky-wheel__play a {
  display: block;
}

.num-spin {
  width: 100%;
  text-align: center;
}

.reward-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  z-index: 1200;
  text-align: center;
  animation: fadeIn 250ms 1;
}

.reward-modal h1 {
  font-size: 3rem;
  text-align: center;
  line-height: 1;
  color: #ffc800;
  margin-bottom: 1rem;
}

.reward-modal p {
  text-align: center;
}

.reward-modal.fadeOut {
  animation: fadeOut 250ms 1;
}

.reward-modal__wrapper {
  position: absolute;
  min-width: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #101010;
  border-radius: 20px;
  padding: 1.5rem 1rem 1rem;
}

@media screen and (max-width: 576px) {
  .reward-modal__wrapper {
    min-width: calc(100% - 48px);
    box-sizing: border-box;
  }
}

.reward-modal .btn {
  display: inline-block;
  min-width: 200px;
  cursor: pointer;
  transition: 250ms all ease-out;
}

.reward-list {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  padding: 16px 24px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  margin-bottom: 24px;
}

.reward-list h1 {
  font-size: 1.25rem;
  color: #ffc800;
}

.reward-list p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

@media screen and (max-width: 576px) {
  .reward-list h1 {
    font-size: 1rem;
  }

  .reward-list p {
    font-size: 0.8rem;
  }
}

.reward-list__amount {
  margin-left: auto;
}

.slot-logo {
  text-align: center;
  display: flex;
  padding: 0 15px;
}

.slot-logo__img {
  width: calc(100% / 4);
  padding: 0 12px;
}

.slot-logo__img img {
  height: 72px;
}

@media screen and (max-width: 992px) {
  .slot-logo__img {
    min-width: calc(100% / 8);
    padding: 0;
  }

  .slot-logo__img img {
    height: 30px;
  }
}

@media screen and (max-width: 576px) {
  .slot-logo__img {
    min-width: calc((100% / 4) - 8px);
  }
}

.slot-wrapper {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .slot-wrapper {
    margin: 0 -12px;
  }
}

.slot-card {
  text-align: center;
  position: relative;
  display: block;
  animation: fadeIn 0.25s linear;
  position: relative;
  margin-bottom: 1rem;
}

.slot-card:hover .slot-card__img {
  transform: scale(1.05);
  border: 1px solid #ffc800;
}

.slot-card:hover .slot-card__new {
  transform: scale(1.18);
}

.slot-card__img {
  width: 100%;
  display: block;
  transition: all 250ms ease-in-out;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: rgb(0 0 0 / 61%) 0px 5px 15px;
}

.slot-card__new {
  position: absolute;
  top: 12px;
  left: 0;
  width: 72px;
  transition: all 250ms ease-in-out;
}

.slot-card span {
  display: block;
  margin-top: 0.5rem;
  font-size: 20px;
}

@media screen and (max-width: 992px) {
  .slot-card__new {
    width: 48px;
  }

  .slot-card span {
    font-size: 18px;
  }
}

.custom-tab-slot.tab .tab__link {
  width: calc(100% / 4);
  font-size: 24px;
}

@media screen and (max-width: 992px) {
  .custom-tab-slot {
    width: 100%;
  }

  .custom-tab-slot.tab .tab__link {
    width: calc(100% / 8);
    font-size: 18px;
  }
}

@media screen and (max-width: 576px) {
  .custom-tab-slot {
    border-radius: 0;
    padding-right: 0;
  }

  .custom-tab-slot.tab:before {
    display: none;
  }

  .custom-tab-slot.tab .tab__link {
    min-width: calc(100% / 4);
  }

  .custom-tab-slot.tab .tab__link:last-child {
    border-radius: 0 20px 20px 0;
  }
}

.super-tab {
  width: 100%;
  position: relative;
}

@media screen and (max-width: 576px) {
  .super-tab {
    overflow-x: scroll;
    width: 100vw;
    margin-left: -9px;
    margin-right: -35px;
  }

  .super-tab:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 32px;
    height: 41px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
  }
}

.brand-wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 0.1rem;
  margin-bottom: 3rem;
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 992px) {
  .brand-wrapper {
    margin-left: -0.25rem;
    margin-right: -0.25rem;
    margin-bottom: 1rem;
  }
}

.casino-card {
  position: relative;
  display: block;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 1400px) {
  .casino-card {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 1024px) {
  .casino-card {
    margin-bottom: 1.5rem;
  }
}

@media screen and (max-width: 576px) {
  .casino-card {
    margin-bottom: 2.5rem;
  }
}

.casino-card:hover .casino-card__img {
  background-color: #745b00;
}

.casino-card:hover .casino-card__img .women-card {
  transform: translateX(-50%) scale(1.05);
}

.casino-card__img {
  background-color: #333;
  display: block;
  position: relative;
  border-radius: 20px;
  transition: background-color 250ms ease-in-out;
}

.casino-card__img .bg-card {
  padding-top: 75%;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  box-shadow: rgb(0 0 0 / 61%) 0px 5px 15px;
}

@media screen and (max-width: 992px) {
  .casino-card__img .bg-card {
    border-radius: 12px;
  }
}

.casino-card__img .bg-card img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: block;
  filter: grayscale(100%);
  mix-blend-mode: multiply;
}

.casino-card__img .women-card {
  position: absolute;
  left: 50%;
  bottom: 0;
  height: 115%;
  transform: translateX(-50%);
  transition: all 250ms ease;
}

@media screen and (max-width: 992px) {
  .casino-card__img .women-card {
    height: 110px;
  }
}

@media screen and (max-width: 576px) {
  .casino-card__img .women-card {
    height: 130px;
  }
}

.casino-card__logo {
  position: absolute;
  left: 50%;
  bottom: -10%;
  transform: translateX(-50%);
  transition: transform 1s;
}

.casino-card__logo img {
  width: auto;
  height: 84px;
}

.casino-card__logo:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 1px;
  height: 1px;
  border-radius: 50%;
  box-shadow: 0 0 30px 40px rgba(0, 0, 0, 0.75);
  z-index: -1;
}

@media screen and (max-width: 1400px) {
  .casino-card__logo img {
    height: 60px;
  }
}

@media screen and (max-width: 992px) {
  .casino-card__logo img {
    height: 40px;
  }
}

.topup-method {
  width: 840px;
  max-width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1400px) {
 .topup-method {
    width: 100%;
    margin: 32px auto;
 }
}

.topup-method>p {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.topup-card {
  height: 124px;
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
  background-color: #ffc800;
  border-radius: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  line-height: 1;
  margin-bottom: 24px;
  transition: all 0.25s ease;
}

.topup-card__wrapper {
  padding: 32px;
  display: flex;
  align-items: center;
  color: #000;
}

.topup-card img {
  width: 60px;
  margin-right: 32px;
}

.topup-card i {
  margin-right: 32px;
}

.topup-card span {
  font-size: 32px;
}

.topup-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(255, 200, 0, 0.3);
}


.topup-card__wrapper span small {
  font-size: 28px;
  font-weight: normal;
  color: #4f3e02;
}

@media screen and (max-width: 992px) {
  .topup-card__wrapper span {
    font-size: 28px;
    font-weight: bold;
  }

  .topup-card__wrapper span small {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .topup-card {
    width: 100%;
    height: 80px;
  }

  .topup-card__wrapper {
    padding: 16px;
  }

  .topup-card img {
    width: 48px;
    margin-right: 32px;
  }

  .topup-card i {
    margin-right: 32px;
  }

  .topup-card span {
    font-size: 28px;
  }
}

.topup-decimal {
  padding-left: 15px;
  padding-right: 15px;
  width: 840px;
}

.topup-decimal #inputOtherTopup {
  max-width: 50%;
}

.topup-decimal--has-image {
  display: flex;
  width: 100%;
  margin: 48px auto 24px;
}

.topup-decimal__title {
  display: flex;
}

.topup-decimal__title--img {
  padding-top: 0.5rem;
  padding-right: 0.75rem;
}

.topup-decimal__title--img img {
  width: 32px;
  display: block;
}

.topup-decimal__title--text h2 {
  margin-top: 0;
}

.topup-decimal__cancel {
  margin-left: auto;
}

.topup-decimal__cancel a {
  color: #fff !important;
  display: block;
  padding: 15px 32px;
  text-align: center;
  background: #e5003c;
  border-radius: 12px;
  line-height: 1;
}

.topup-decimal__cancel a img {
  margin-right: 0.5rem;
}

.topup-decimal__cancel a:hover {
  opacity: 0.75;
}

.topup-decimal .btn--primary {
  max-width: 200px;
  margin-top: 40px;
  cursor: pointer;
}

@media only screen and (max-width: 576px) {
  .topup-decimal {
    width: 100%;
  }

  .topup-decimal #inputOtherTopup {
    max-width: 100%;
  }

  .topup-decimal--has-image {
    display: block;
    margin-top: 0;
  }

  .topup-decimal__title--text {
    margin-bottom: 1rem;
  }

  .topup-decimal__title--text h2 {
    font-size: 0.9rem;
  }

  .topup-decimal__title--text p {
    font-size: 0.7rem;
  }

  .topup-decimal .btn--primary {
    max-width: 100%;
  }
}

.form-topup {
  display: flex;
  flex-wrap: wrap;
  margin: 48px -15px 0 -15px;
  width: 100%;
}

@media only screen and (max-width: 576px) {
  .form-topup {
    margin: 32px 0;
  }
}

input[type="radio"] {
  visibility: hidden;
  height: 0;
  width: 0;
  position: absolute;
}

.btn-radio {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.btn-radio span {
  display: flex;
  justify-content: center;
  align-content: center;
  text-align: center;
  cursor: pointer;
  color: white;
  font-size: 40px;
  font-weight: bold;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: 250ms all ease-out;
  min-height: 60px;
  line-height: 60px;
}

.btn-radio:last-child span {
  font-size: 32px;
  font-weight: normal;
}

.btn-radio:hover span {
  background-color: #ffc800;
  color: #1c1817;
  border: 1px solid transparent;
}

@media only screen and (max-width: 576px) {
  .btn-radio {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    margin-bottom: 24px;
  }

  .btn-radio span {
    font-size: 36;
    min-height: 54px;
    line-height: 54px;
  }

  .btn-radio:nth-of-type(2n-1) {
    padding-left: 0;
    padding-right: 7.5px;
  }

  .btn-radio:nth-of-type(2n) {
    padding-left: 7.5px;
    padding-right: 0;
  }
}

input[type="radio"]:checked+.btn-radio span {
  background-color: #ffc800;
  color: #1c1817;
  border: 1px solid transparent;
}

.topup-body {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}

.topup-info {
  width: calc(50% - 7.5px);
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  padding: 28px 0;
  margin-bottom: 24px;
}

.topup-info:nth-of-type(2n-1) {
  margin-right: 7.5px;
}

.topup-info:nth-of-type(2n) {
  margin-left: 7.5px;
}

.topup-info h1 {
  font-size: 100px;
  margin: 0;
  line-height: 0.8;
}

.topup-info h1 span {
  color: #ffc800;
}

.topup-info p {
  margin: 0;
}

@media only screen and (max-width: 767px) {
  .topup-info {
    width: 100%;
  }

  .topup-info h1 {
    font-size: 72px;
    line-height: 1;
  }
}

.caution {
  width: 100%;
  margin-bottom: 40px;
}

.caution--warning {
  color: #e5003c;
}

.caution__item {
  display: flex;
}

.caution__item p {
  opacity: 1;
}

.caution__item span,
.caution__item img {
  display: block;
  min-width: 20px;
  text-align: center;
  margin-right: 1rem;
}

.caution__item img {
  align-self: start;
  margin-top: 0.25rem;
}

@media only screen and (max-width: 767px) {
  .caution__item p {
    font-size: 0.75rem;
  }
}

.topup-transaction {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 1024px;
}

@media only screen and (max-width: 1024px) {
  .topup-transaction {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .topup-transaction {
    padding: 0 15px;
  }
}

.topup-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.topup-footer .bank-info {
  -webkit-box-flex: 0;
  max-width: 20%;
  flex: 0 0 20%;
}

@media only screen and (max-width: 767px) {
  .topup-footer {
    justify-content: start;
  }

  .topup-footer .bank-info {
    -webkit-box-flex: 0;
    max-width: 50%;
    flex: 0 0 50%;
  }

  .topup-footer .bank-info:nth-of-type(2n-1) {
    padding-left: 0;
  }

  .topup-footer .bank-info:nth-of-type(2n) {
    padding-right: 0;
  }
}

.result {
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
}

.result img {
  margin-bottom: 0.5rem;
}

.result h1 {
  margin-top: 0;
}

.upload-slip {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 15px;
}

.upload-slip label {
  display: inline-block;
  margin-top: 1rem;
  cursor: pointer;
  width: 180px;
}

.upload-slip span {
  display: block;
  font-size: 0.9rem;
  color: #e5003c;
}

@media only screen and (max-width: 767px) {
  .upload-slip label {
    width: auto;
    display: block;
  }

  .upload-slip span {
    font-size: 0.75rem;
    margin-top: 16px;
    text-align: center;
  }
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0 0 0.5rem 0;
  border: 0;
}

fieldset:focus {
  outline: 0 !important;
}

fieldset .select-group {
  position: relative;
}

fieldset .select-group i {
  position: absolute;
  height: 1em;
  font-size: 0.625em;
  line-height: 1;
  right: 0.75rem;
  top: 50%;
  margin-top: -0.5em;
}

fieldset select {
  position: relative;
}

fieldset select:after {
  content: "/";
  position: absolute;
  right: 0;
}

fieldset p {
  font-size: 0.9rem;
  text-align: left;
  padding-bottom: 0.1rem;
  padding-left: 1.6rem;
}

fieldset div:focus,
fieldset label:focus {
  outline: 0 !important;
}

fieldset label {
  font-size: 1rem;
  opacity: 0.9;
  display: block;
  /* margin-bottom: 0.25rem; */
}

fieldset .form-control,
fieldset select,
fieldset option {
  font-family: DB HelvethaicaX, Arial, sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.25);
  color: #fbfaf9;
  display: block;
  width: 100%;
  height: 58px;
  padding: 0 0.75rem;
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  /* margin-bottom: 0.5rem; */
}

fieldset .form-control:hover,
fieldset select:hover,
fieldset option:hover {
  background-color: rgba(0, 0, 0, 0.5);
  border-color: #ffc800;
  color: #fbfaf9;
}

fieldset .form-control:focus,
fieldset select:focus,
fieldset option:focus {
  outline: 0 !important;
}

fieldset .form-control select,
fieldset select select,
fieldset option select {
  position: relative;
}

fieldset .form-control select:after,
fieldset select select:after,
fieldset option select:after {
  content: "v";
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
}

.button-close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  text-shadow: none;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
  z-index: 1050;
  opacity: 0.8;
  padding: 0.4rem 0.7rem;
  margin: -1rem -1rem -1rem auto;
  cursor: pointer;
  transition: 250ms all ease-out;
}

@media screen and (max-width: 576px) {
  .button-close {
    right: 1rem;
  }
}

.button-close:hover {
  color: white;
}

button[type="submit"] {
  font-family: DB HelvethaicaX, Arial, sans-serif;
  font-size: 24px;
  border: 0;
  display: block;
  width: 100%;
  cursor: pointer;
}

button[type="submit"]:hover,
button[type="submit"]:focus {
  outline: 0;
}

body,
html {
  color: #fff;
  background-color: #121416;
  margin: 0;
  padding: 0;
  font-family: DB HelvethaicaX, Arial, sans-serif;
  font-weight: normal;
  font-size: 24px;
}

a {
  color: #fff;
  text-decoration: none;
  transition: 250ms all ease-out;
}

a:hover {
  color: #ffc800;
}

h1,
h2,
h3,
p {
  margin: 0;
}

#root {
  display: flex;
  position: relative;
  min-height: 100vh;
}

.sidebar {
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  width: 260px;
  height: 100vh;
  border: 1px solid #222222;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  .sidebar {
    min-width: 240px;
    width: 240px;
  }
}

@media screen and (max-width: 992px) {
  .sidebar {
    display: none;
  }
}

.sidebar__logo {
  display: block;
  width: 120px;
  margin: 24px auto;
}

.sidebar__logo img {
  display: block;
  width: 100%;
}

.sidebar ul {
  margin: 0;
  padding: 16px 32px;
  overflow-x: hidden;
  overflow-y: auto;
}

.sidebar ul li {
  list-style: none;
}

.sidebar ul li a {
  display: block;
  font-size: 1rem;
  padding: 12px 0;
  color: #a7a7a7;
  position: relative;
}

.sidebar ul li a i {
  width: 24px;
  text-align: center;
  font-size: 0.9rem;
  margin-right: 16px;
  color: #767f86;
}

.sidebar ul li a img {
  width: 24px;
  margin-right: 16px;
  opacity: 0.5;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.sidebar ul li a.active-menu {
  color: #ffc800;
}

.sidebar ul li a.active-menu i {
  color: #ffc800;
}

.sidebar ul li a.active-menu img {
  opacity: 1;
  filter: invert(83%) sepia(44%) saturate(4415%) hue-rotate(2deg) brightness(107%) contrast(105%);
}

.sidebar ul li a.active-menu:before {
  content: "";
  position: absolute;
  top: 0;
  left: -48px;
  right: -48px;
  bottom: 0;
  z-index: -1;
}

.sidebar ul li a:hover:not(.active-menu) {
  color: #fff;
}

.sidebar ul li a:hover:not(.active-menu):before {
  content: "";
  position: absolute;
  top: 0;
  left: -48px;
  right: -48px;
  bottom: 0;
  z-index: -1;
  background-color: #1b1b1b;
}

.main {
  position: relative;
  width: 100%;
}

@media screen and (max-width: 992px) {
  .main--space-y {
    margin-top: 70px;
    margin-bottom: 94px;
  }
}

.topbar-mobile {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(19, 19, 19, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #222;
  padding-left: 12px;
  padding-right: 12px;
  display: none;
}

@media screen and (max-width: 992px) {
  .topbar-mobile {
    display: flex;
  }
}

.topbar-mobile__back {
  padding: 14px 12px;
  display: flex;
  z-index: 10;
}

.topbar-mobile__back i {
  align-self: center;
}

.topbar-mobile__title {
  padding-top: 14px;
  padding-bottom: 14px;
  width: 100%;
  margin-left: -36px;
  text-align: center;
}

.topbar-mobile__title span {
  line-height: 1;
}

.topbar-mobile__title.cant-back {
  margin: 0 auto;
}

.bottombar-mobile {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
}

@media screen and (max-width: 992px) {
  .bottombar-mobile {
    display: block;
  }
}

.bottombar-mobile .nav-menu {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
}

.bottombar-mobile .nav-menu .nav-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  list-style-type: none;
  text-align: center;
}

.bottombar-mobile .nav-menu .nav-item.middle-item span {
  font-size: 0.75rem;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.bottombar-mobile .nav-menu .nav-item.middle-item .nav-link {
  opacity: 1;
  border-radius: 20px;
  /* transform: rotate(45deg); */
  position: relative;
  color: #e4e5ea;
  width: 60px;
  height: 60px;
  margin: -1rem auto auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* -webkit-transition: -webkit-transform 0.15s ease-out;
  transition: -webkit-transform 0.15s ease-out;
  transition: transform 0.15s ease-out;
  -webkit-animation: pulse 2s infinite; */
  /* animation: pulse 2s infinite; */
  padding: 0;
  /* background-image: linear-gradient(225deg, #5a028d 0%, #f794ff 100%); */
}

.bottombar-mobile .nav-menu .nav-item.middle-item .nav-link i {
  position: relative;
  line-height: 1;
  font-size: 28px;
  color: #fff;
  display: flex;
  align-content: center;
}

.bottombar-mobile .nav-menu .nav-item .nav-link {
  text-decoration: none;
  padding: 0.25rem 0;
  opacity: 0.75;
  color: #fff;
  display: block;
}

.bottombar-mobile .nav-menu .nav-item .nav-link.active {
  color: #ffc800;
  opacity: 1;
}

.bottombar-mobile .nav-menu .nav-item .nav-link i {
  display: block;
  line-height: 1.4;
  color: #ffc800;
}

.bottombar-mobile .nav-menu .nav-item .nav-link img:not(.icon-center) {
  width: 24px;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.bottombar-mobile .nav-menu .nav-item .nav-link.active img:not(.icon-center) {
  filter: invert(83%) sepia(44%) saturate(4415%) hue-rotate(2deg) brightness(107%) contrast(105%);
}

.bottombar-mobile .nav-menu .nav-item .nav-link .icon-center {
  width: 75px;
  /* animation: shake;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  transform: rotate(-45deg); */
}

.bottombar-mobile .nav-menu .nav-item .nav-link span {
  font-size: 0.75rem;
  line-height: 1.25;
  display: block;
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  margin-bottom: 32px;
  background-color: rgba(19, 19, 19, 0.85);
  -webket-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 32px;
  border-bottom: 1px solid #222;
  z-index: 999;
}

@media screen and (max-width: 992px) {
  .topbar {
    margin-bottom: 24px;
  }

  .topbar-hidden {
    display: none;
  }
}

.topbar__profile {
  display: flex;
  align-items: center;
  line-height: 1.05;
  margin-right: 24px;
}

@media screen and (max-width: 992px) {
  .topbar__profile {
    margin-right: 0;
  }
}

.profile__amount {
  color: rgba(255, 255, 255, 0.75);
}

.profile__avatar {
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
  border-radius: 50%;
  min-width: 36px;
  height: 36px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 12px;
}

@media screen and (max-width: 576px) {
  .profile__info {
    font-size: 20px;
  }
}

.profile__topup {
  width: 16px;
  height: 16px;
  font-size: 12px;
  background-color: rgba(255, 200, 0, 0.85);
  color: #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 8px;
  transition: background 0.25s ease;
}

.profile__topup:hover {
  background-color: rgba(255, 200, 0, 1);
}

.topbar__logo {
  display: none;
  flex-basis: 0;
  -webkit-box-flex: 1;
  flex-grow: 1;
  max-width: 100%;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .topbar__logo {
    display: block;
  }

  .topbar__logo a {
    display: block;
    max-width: 125px;
  }

  .topbar__logo a img {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .topbar__logo a img {
    width: auto;
    max-height: 48px;
  }
}

.topbar__welcome {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.topbar__welcome h1 {
  font-size: 1.25rem;
}

@media screen and (max-width: 1200px) {
  .topbar__welcome h1 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 992px) {
  .topbar__welcome {
    display: none;
  }
}

.topbar__member {
  box-sizing: border-box;
  margin-left: auto;
  display: flex;
  margin-left: auto;
}

.topbar__member .btn {
  margin-left: auto;
  white-space: nowrap;
}

@media screen and (max-width: 1200px) {
  .topbar__member {
    justify-content: flex-end;
  }

  .topbar__member .btn {
    margin-left: 0;
  }
}

@media screen and (max-width: 992px) {
  .topbar__member .btn {
    display: none;
  }
}

.topbar__member--image {
  border-radius: 100%;
  overflow: hidden;
  margin-right: 24px;
  width: 54px;
  height: 54px;
}

.topbar__member--image img {
  display: block;
  height: 100%;
}

@media screen and (max-width: 992px) {
  .topbar__member--image {
    width: 40px;
    height: 40px;
    margin-right: 0;
  }
}

.topbar__member--info h1 {
  font-size: 1rem;
}

.topbar__member--info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media screen and (max-width: 1200px) {
  .topbar__member--info {
    display: none;
  }
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 0 32px;
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
}

.wrapper:last-of-type {
  margin-bottom: 0;
}

.wrapper--top {
  margin-bottom: 94px !important;
}

.wrapper--desktop {
  display: flex;
}

@media screen and (max-width: 992px) {
  .wrapper {
    padding-top: 24px;
  }

  .wrapper--desktop {
    display: none;
  }
}

.wrapper--mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .wrapper--mobile {
    display: flex;
  }
}

.wrapper .topbar {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.title-bar {
  display: flex;
  margin-bottom: 24px;
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.title-bar--desktop {
  display: flex;
}

@media screen and (max-width: 1200px) {
  .title-bar--desktop {
    display: none;
  }
}

.title-bar--sub-title {
  display: flex;
}

.title-bar--sub-title h1 {
  font-size: 1rem !important;
}

.title-bar--sub-title h1 i {
  margin-right: 0.5rem;
}

.title-bar--sub-title h1 span {
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.title-bar--sub-title h1 span strong {
  color: #fff;
}

.title-bar--sub-title h2 {
  font-size: 28px !important;
}

.title-bar--sub-title a {
  display: block;
  margin-left: auto;
}

@media screen and (max-width: 1200px) {
  .title-bar--sub-title h1 span {
    display: block;
    margin: 0;
    font-size: 0.75rem;
  }
}

.title-bar h1 {
  font-size: 1.5rem;
}

.title-bar a {
  margin-left: auto;
  color: #ffc800;
}

.title-bar a:hover {
  opacity: 0.75;
}

.wallet {
  -webkit-box-flex: 0;
  max-width: 33.33%;
  flex: 0 0 33.33%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.wallet--lg {
  max-width: 66.666667%;
  flex: 0 0 66.666667%;
}

@media screen and (max-width: 1200px) {
  .wallet {
    -webkit-box-flex: 0;
    max-width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1200px) {
  .wallet {
    max-width: 100%;
    flex: 0 0 100%;
  }
}

.wallet__main {
  position: relative;
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
  border-radius: 20px;
  padding: 32px 48px;
  margin-bottom: 24px;
  box-sizing: border-box;
  width: 100%;
  /* height: 100%; */
  color: #000;
  display: flex;
}

.wallet__secondary {
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
  border-radius: 20px;
  padding: 16px 48px;
  margin-bottom: 24px;
  box-sizing: border-box;
  width: 100%;
  /* height: 100%; */
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.wallet__secondary .wallet__main--amount {
  align-self: flex-start;
}

.wallet__secondary h1 {
  font-size: 2rem !important;
}

.wallet__secondary .btn--secondary {
  margin-top: 10px;
}

.wallet__main--amount {
  align-self: center;
}

.wallet__main--amount h1 {
  font-size: 3.5rem;
  line-height: 0.75;
  font-weight: bold;
}

.wallet__main--amount span {
  opacity: 0.75;
  display: block;
}

.wallet__main--amount span i {
  cursor: pointer;
  font-size: 0.6rem;
  margin-left: 0.25rem;
  position: relative;
}

.wallet__main--amount span i:after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  transition: 250ms all ease-out;
}

.wallet__main--amount span i:hover:after {
  background: rgba(255, 255, 255, 0.75);
}

.wallet__main--bonus {
  margin-left: auto;
  align-self: center;
}

.wallet__main--bonus .btn {
  font-size: 32px;
}

.wallet__main--bonus .btn br {
  display: none;
}

.wallet__main--turnover {
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 8px 12px;
  color: #000;
  width: auto;
  max-height: 36px;
  display: inline-flex;
  margin-top: 10px;
}

.wallet__main--turnover span {
  opacity: 0.6;
  align-self: center;
}

.wallet__main--turnover p {
  margin-left: auto;
  display: flex;
}

.wallet__main--turnover p strong {
  font-size: 24px;
  font-weight: bold;
  line-height: 0.8;
  margin-right: 2px;
}

@media screen and (max-width: 1200px) {

  .wallet__main,
  .wallet__secondary {
    padding: 24px 32px;
  }

  .wallet__secondary {
    flex-direction: row;
    justify-content: space-between;
  }

  .wallet__secondary h1 {
    font-size: 40px !important;
  }

  .wallet__secondary .btn--secondary {
    white-space: nowrap;
  }
}

@media screen and (max-width: 576px) {

  .wallet__main,
  .wallet__secondary {
    padding: 24px 32px;
  }

  .wallet__main--amount {
    width: 100%;
  }

  .wallet__main--amount h1 {
    font-size: 65px;
  }

  .wallet__main--bonus {
    position: absolute;
    top: 80%;
    right: 24px;
    width: calc(40% - 48px);
  }

  .wallet__main--bonus .btn {
    background-color: #232323;
    border-radius: 20px;
    font-size: 20px;
    padding: 16px 0px 10px;
    text-align: center;
  }

  .wallet__main--bonus .btn br {
    display: block;
  }

  .wallet__main--bonus .btn span {
    font-size: 1.5rem;
    line-height: 1;
  }

  .wallet__main--bonus a {
    display: block;
    padding: 24px 32px;
  }

  .wallet__main--turnover {
    font-size: 20px;
  }

  .wallet__main--turnover strong {
    font-size: 20px;
    line-height: 1;
  }
}

.affiliate {
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
  border-radius: 24px 24px 0 0;
  padding: 32px 48px;
  margin-bottom: -15px;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
  position: relative;
}

@media screen and (max-width: 576px) {
  .affiliate {
    padding: 24px 16px;
  }
}

.affiliate_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 840px;
  max-width: 100%;
  margin: 0 auto;
}

.affiliate_wrapper .affiliate {
  margin-bottom: 0px;
}

.affiliate_wrapper .affiliate::before {
  content: "";
  width: calc(100% - 32px);
  background: #ffcd18;
  position: absolute;
  top: -8px;
  height: 8px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 4px 4px 0 0;
}

.affiliate__qrcode {
  display: flex;
  z-index: 3;
  border: 8px solid #000;
  border-radius: 10px;
}

.affiliate__qrcode img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.affiliate__info {
  margin: 5px;
}

.affiliate__info h1 {
  font-size: 1.5rem;
}

.affiliate__info--group {
  margin-bottom: 0.25rem;
}

.affiliate__info--group span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
}

.affiliate__info--group span i {
  cursor: pointer;
  font-size: 0.7rem;
  margin-left: 0.4rem;
  position: relative;
}

.affiliate__info--group span i:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  z-index: 0;
  border-radius: 100%;
  background: rgba(255, 255, 255, 0);
  transition: 250ms all ease-out;
}

.affiliate__info--group span i:hover:after {
  background: rgba(255, 255, 255, 0.25);
}

.affiliate__info--group strong {
  line-height: 1;
  font-size: 1.5rem;
}

.affiliate__info--group a {
  color: #ffc800;
}

.affiliate__info--group a:hover {
  opacity: 0.75;
}

.affiliate_wrapper_bg {
  top: 20px;
  right: 20px;
  position: absolute;
  z-index: 1;
  overflow: hidden;
  height: 130px;
}

.affiliate_secon_wrapper {
  margin-top: 16px;
  z-index: 2;
}

.affiliate_link {
  display: flex;
}

.affiliate_link_label {
  font-size: 22px;
}

.affiliate_link_input {
  flex: 1;
  background: #0c0e0f;
  border-radius: 12px;
  padding: 10px 0 10px 16px;
  border: none;
  color: #ffffff;
  margin-right: 8px;
  font-family: "DB HelvethaicaX";
}

.affiliate_total_credit {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 12px;
  background: #0c0e0f;
  z-index: 2;
  width: 100%;
}

.affiliate_link_wrapper {
  margin-top: 18px;
}

.copy_affiliate_link_button {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(318.11deg, #ffcd18 31.96%, #ffe27a 103.83%);
  display: flex;
  transition: all 0.25s ease;
}

.copy_affiliate_link_button:hover {
  transform: scale(1.008);
  box-shadow: 0 0 0 0.25rem rgb(255 198 0 / 15%);
}

.copy_affiliate_link_button .fad {
  color: #000;
}

.affiliate_label {
  font-size: 22px;
}

.download_qrcode_btn {
  color: #fff;
  border: 1px solid #ffcd18;
  border-radius: 100px;
  width: 100%;
  height: 52px;
  padding: 0 16px;
  flex-direction: row;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
  line-height: 48px;
  font-weight: bold;
  font-size: 19px;
}

.affiliate_code_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 16px 48px;
  background: linear-gradient(180deg, #0c0e0f 0%, #0c0e0f00 100%);
  color: #fff;
}


@media screen and (max-width: 576px) {
  .affiliate_code_wrapper {
    padding: 8px 16px;
  }
}

.affiliate_code_caption {
  line-height: 40px;
  font-size: 22px;
}

.affiliate_withdraw {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.promo {
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
}

.promo__img {
  width: 100%;
}

.promo__img img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.promo__info {
  padding: 0px 0 10px;
}

.promo__info--text h1 {
  font-size: 28px;
}

.promo__info--text p {
  font-size: 0.9rem;
  opacity: 0.75;
}

.promo__info .btn {
  white-space: nowrap;
  min-width: 120px;
}

@media screen and (max-width: 1200px) {
  .promo__info {
    display: block;
  }

  .promo__info .btn {
    min-width: 100px;
  }
}

.promo--page {
  margin-bottom: 32px;
}

.promo--page .promo__info {
  flex-wrap: wrap;
}

.promo--page .promo__info--text {
  margin-bottom: 16px;
}

.promo--page .radio-group {
  width: calc(60% - 24px);
  box-sizing: border-box;
}

.promo--page .btn {
  width: 40%;
  box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .promo--page .radio-group {
    width: 100%;
  }

  .promo--page .btn {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .promo--page {
    -webkit-box-flex: 0;
    max-width: 50%;
    flex: 0 0 50%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 576px) {
  .promo--page {
    -webkit-box-flex: 0;
    max-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .promo--page .promo__info {
    display: flex;
  }

  .promo--page .radio-group {
    width: calc(67% - 24px);
    font-size: 22px;
    padding-top: 20px;
  }

  .promo--page .radio-group .checkmark {
    top: 20px;
  }

  .promo--page .btn {
    width: 33%;
    font-size: 22px;
    margin-top: 0;
    padding-top: 20px;
  }
}

.play-mobile {
  -webkit-box-flex: 0;
  max-width: 100%;
  flex: 0 0 100%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 32px;
}

.play-mobile .btn {
  max-width: 100%;
  display: block;
}

.menu-mobile-wrapper {
	margin-bottom: 4rem;
}

@media screen and (min-width: 576px) {
	.menu-mobile-wrapper {
		margin-bottom: 0;
	}
}

.menu-mobile {
  -webkit-box-flex: 0;
  max-width: 25%;
  flex: 0 0 25%;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 24px;
  display: block;
  font-size: 20px;
}
@media screen and (min-width: 576px) {
	.menu-mobile {
		max-width: 12.5%;
		flex: 0 0 12.5%;
	}
}
.menu-mobile__icon {
  width: 100%;
  position: relative;
  padding-top: 100%;
  border-radius: 20px;
  background: linear-gradient(121.12deg,
      #262626 19.2%,
      #1b1b1b 51.08%,
      #1b1b1b 51.08%);
}

.menu-mobile__icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffc800;
  font-size: 48px;
}

.menu-mobile__icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
}

.menu-mobile span {
  display: block;
  font-size: 1rem;
  margin-top: 8px;
}

@media screen and (max-width: 576px) {
  .menu-mobile__icon i {
    font-size: 24px;
  }

  .menu-mobile span {
    font-size: 0.75rem;
  }
}

.input-xs {
  font-family: DB HelvethaicaX, Arial, sans-serif;
  height: 58px;
  padding: 0 0.75rem;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.25) !important;
  color: #fbfaf9;
}

.tc-gray {
  color: #a7a7a7;
}