@charset "UTF-8";
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@300;400;500;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  margin: 0;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, Courier New, monospace;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: #ffffffb3;
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  box-sizing: border-box;
  color: #fff;
  padding: 4px;
  position: fixed;
  -webkit-transform: translate3d(0, 0, 9999 px);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  width: 320px;
  width: var(--toastify-toast-width);
  z-index: 9999;
  z-index: var(--toastify-z-index);
}

.Toastify__toast-container--top-left {
  left: 1em;
  top: 1em;
}

.Toastify__toast-container--top-center {
  left: 50%;
  top: 1em;
  transform: translateX(-50%);
}

.Toastify__toast-container--top-right {
  right: 1em;
  top: 1em;
}

.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    left: 0;
    margin: 0;
    padding: 0;
    width: 100vw;
  }

  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }

  .Toastify__toast-container--rtl {
    left: auto;
    right: 0;
  }
}

.Toastify__toast {
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 #0000001a, 0 2px 15px 0 #0000000d;
  box-sizing: border-box;
  cursor: pointer;
  direction: ltr;
  display: flex;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  justify-content: space-between;
  margin-bottom: 1rem;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  overflow: hidden;
  padding: 8px;
  position: relative;
}

.Toastify__toast--rtl {
  direction: rtl;
}

.Toastify__toast-body {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  margin: auto 0;
  padding: 6px;
}

.Toastify__toast-body > div:last-child {
  flex: 1 1;
}

.Toastify__toast-icon {
  display: flex;
  flex-shrink: 0;
  margin-inline-end: 10px;
  width: 20px;
}

.Toastify--animate {
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

.Toastify--animate-icon {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    border-radius: 0;
    margin-bottom: 0;
  }
}

.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}

.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}

.Toastify__toast-theme--colored.Toastify__toast--info {
  background: #3498db;
  background: var(--toastify-color-info);
  color: #fff;
  color: var(--toastify-text-color-info);
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  background: #07bc0c;
  background: var(--toastify-color-success);
  color: #fff;
  color: var(--toastify-text-color-success);
}

.Toastify__toast-theme--colored.Toastify__toast--warning {
  background: #f1c40f;
  background: var(--toastify-color-warning);
  color: #fff;
  color: var(--toastify-text-color-warning);
}

.Toastify__toast-theme--colored.Toastify__toast--error {
  background: #e74c3c;
  background: var(--toastify-color-error);
  color: #fff;
  color: var(--toastify-text-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}

.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}

.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}

.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}

.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}

.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}

.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: #ffffffb3;
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  align-self: flex-start;
  background: #0000;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0.7;
  outline: none;
  padding: 0;
  transition: 0.3s ease;
}

.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}

.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}

.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.Toastify__progress-bar {
  bottom: 0;
  height: 5px;
  left: 0;
  opacity: 0.7;
  position: absolute;
  transform-origin: left;
  width: 100%;
  z-index: 9999;
  z-index: var(--toastify-z-index);
}

.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}

.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}

.Toastify__progress-bar--rtl {
  left: auto;
  right: 0;
  transform-origin: right;
}

.Toastify__spinner {
  animation: Toastify__spin 0.65s linear infinite;
  border: 2px solid #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-radius: 100%;
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  box-sizing: border-box;
  height: 20px;
  width: 20px;
}

@keyframes Toastify__bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes Toastify__bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes Toastify__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft;
}

.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight;
}

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft;
}

.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight;
}

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  0% {
    animation-timing-function: ease-in;
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }

  40% {
    animation-timing-function: ease-in;
    transform: perspective(400px) rotateX(-20deg);
  }

  60% {
    opacity: 1;
    transform: perspective(400px) rotateX(10deg);
  }

  80% {
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    transform: perspective(400px);
  }
}

@keyframes Toastify__flipOut {
  0% {
    transform: perspective(400px);
  }

  30% {
    opacity: 1;
    transform: perspective(400px) rotateX(-20deg);
  }

  to {
    opacity: 0;
    transform: perspective(400px) rotateX(90deg);
  }
}

.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }

  to {
    transform: translateZ(0);
  }
}

@keyframes Toastify__slideOutRight {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(110%, 0, 0);
    visibility: hidden;
  }
}

@keyframes Toastify__slideOutLeft {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(-110%, 0, 0);
    visibility: hidden;
  }
}

@keyframes Toastify__slideOutDown {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(0, 500px, 0);
    visibility: hidden;
  }
}

@keyframes Toastify__slideOutUp {
  0% {
    transform: translateZ(0);
  }

  to {
    transform: translate3d(0, -500px, 0);
    visibility: hidden;
  }
}

.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft;
}

.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight;
}

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
  animation-name: Toastify__slideOutLeft;
}

.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-name: Toastify__slideOutRight;
}

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

body {
  /* background-color: var(--theme-body-bg-color) !important; */
  color: #fff !important;
  font-family: Prompt, sans-serif !important;
}

body:before {
  background-color: var(--theme-bg-filter);
  bottom: 0;
  left: 0;
  right: 0;
}

body:after,
body:before {
  content: "";
  position: fixed;
  top: 0;
}

body:after {
  background-attachment: inherit;
  background-image: inherit;
  background-position: 50%;
  background-repeat: inherit;
  background-size: cover;
  height: 100vh;
  width: 100%;
  z-index: -1;
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 980px !important;
  }
}

.btn-login,
.btn-register {
  border: 0 solid #0000 !important;
  color: var(--theme-register-btn-text-color) !important;
}

.btn-login:focus,
.btn-register:focus {
  box-shadow: none;
  outline: none !important;
}

.btn-login-ripples,
.btn-register-ripples {
  transition: all 0.25s;
}

.bg-register,
.btn-register {
  background: var(--theme-register-bg-color);
  background: var(--theme-register-bg-moz);
  background: var(--theme-register-bg-webkit);
  background: var(--theme-register-bg);
}

.bg-login,
.btn-login {
  background: var(--theme-login-bg-color);
  background: var(--theme-login-bg-moz);
  background: var(--theme-login-bg-webkit);
  background: var(--theme-login-bg);
}

.btn-register-ripples:hover,
.btn-register.no-ripples:hover {
  border-radius: 0.25rem;
  box-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 8px #e103a7;
}

.btn-register-ripples:hover {
  background: #e103a7;
}

.btn-login-ripples:hover,
.btn-login.no-ripples:hover {
  border-radius: 0.25rem;
  box-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 8px #07b0e2;
}

.btn-login-ripples:hover {
  background: #07b0e2;
}

.bg-play,
.btn-play {
  background: #7adb02;
  background: linear-gradient(
    45deg,
    #7adb02,
    #64c700 35%,
    #339a00 65%,
    #1d8002
  );
}

.theme-text-color {
  color: var(--theme-text-color);
}

.theme-btn-register-border {
  background-clip: content-box, border-box;
  background-origin: border-box;
  border: 1px solid #0000;
  height: 36px !important;
  padding: 1px !important;
}

.bg-play.animate,
.btn-play.animate {
  animation: gradient 5s ease infinite;
  background-size: 400% 400%;
}

.btn-play {
  color: #fff !important;
  transition: all 0.25s;
}

.btn-play:hover {
  background: #7adb02;
  background: linear-gradient(
    -45deg,
    #7adb02,
    #64c700 35%,
    #339a00 65%,
    #1d8002
  );
}

.btn-wheel {
  background: linear-gradient(
    45deg,
    #fef7b3,
    #d5a334 35%,
    #f8e154 65%,
    #d5a334
  );
}

.bg-wheel.animate,
.btn-wheel.animate {
  animation: gradient 10s ease infinite;
  background-size: 400% 400%;
}

@keyframes gradient {
  0% {
    background-position: 0 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  to {
    background-position: 0 50%;
  }
}

.navbar {
  background-image: none;
}

.fpm:before {
  background: var(--bs-secondary);
}

.fpm-open .fpm:before {
  background: var(--bs-dark);
}

.tab-games-selector-item {
  background-color: var(--bs-primary);
  background: var(--theme-tab-games-selector-item);
}

.tab-games-selector-item.active,
.tab-games-selector-item:hover {
  background-color: var(--bs-secondary);
  background: var(--theme-tab-games-selector-item-active) !important;
}

.tab-games-selector-item h5,
.tab-games-selector-item h6 {
  color: var(--theme-menu-text-color);
}

.tab-games-selector-item.active h5,
.tab-games-selector-item.active h6,
.tab-games-selector-item:hover h5,
.tab-games-selector-item:hover h6 {
  color: var(--theme-active-menu-text-color);
}

.tab-games-selector-item:hover img {
  transform: scale(1.05);
}

.tab-games-selector-item.active img {
  animation: x-floating-tab 1.5s ease-in-out infinite;
}

@keyframes x-floating-tab {
  0% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-8px) rotate(-1deg);
  }

  to {
    transform: translateY(0) rotate(0);
  }
}

.tab-selector-item {
  background-color: var(--bs-primary);
  font-size: 1.2rem;
}

.tab-selector-item.active,
.tab-selector-item:hover {
  background-color: var(--bs-secondary);
}

.dropdown-item.disabled,
.dropdown-item:disabled {
  background-color: var(--bs-primary);
}

.promo-carousel-dots {
  bottom: 20px;
  display: flex !important;
  justify-content: center;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
}

.promo-carousel-dots li {
  list-style: none;
}

.promo-carousel-dots li button {
  background-color: #fff;
  border: 0 solid;
  font-size: 0;
  height: 6px;
  margin: 0 10px;
  padding: 0;
  width: 40px;
}

.promo-carousel-dots li.slick-active button {
  background-color: gold;
}

.slick-slider {
  margin-inline: -10px;
}

.slick-slide > div {
  margin-inline: 5px;
}

.marquee-frame {
  background: var(--theme-gradient-primary);
  border: 1px solid var(--bs-tertiary);
  border-radius: 0.25rem;
  padding: 5px;
}

main {
  padding-bottom: 7.5rem;
  padding-top: 2.8rem;
}

.main-banner {
  /* margin-top: 1.5rem; */
  margin-top: 0.5rem;
}

.main-popular-games .tab-games-selector {
  padding: 0;
}

.main-popular-games .tab-games-selector li {
  list-style: none;
  text-decoration: none;
}

.main-popular-games .tab-games-selector li .tab-games-selector-item {
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  padding: 0.7rem 0.25rem;
  transition: background 0.25s;
  width: 100%;
  word-break: break-all;
}

.main-popular-games .tab-games-selector li .tab-games-selector-item h5 {
  font-size: 0.875em;
}

@media (min-width: 576px) {
  .main-popular-games .tab-games-selector li .tab-games-selector-item h5 {
    font-size: 1.25rem;
    font-weight: 700;
  }
}

.main-popular-games .tab-games-selector li .tab-games-selector-item img {
  display: block;
  margin: 0 auto 0.75rem;
  position: relative;
  width: 50%;
}

.main-popular-games .tab-games-selector li .tab-games-selector-item input {
  opacity: 0;
  position: absolute;
  width: 0;
}

.main-popular-games .tab-games-items-button {
  cursor: pointer;
}

@media (max-width: 576px) {
  .main-popular-games .favorite-game {
    grid-gap: 0 0;
    display: grid;
    gap: 0 0;
    grid-template-areas: "main main ." "main main ." ". . .";
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }

  .main-popular-games .favorite-game .tab-games-items {
    position: relative;
    width: auto !important;
  }

  .main-popular-games .favorite-game .tab-games-items:first-child {
    grid-area: main;
  }
}

.main-popular-games .tab-games-items img {
  border-radius: 0.7rem;
  display: block;
  width: 100%;
}

.main-popular-games .tab-games-items img.route {
  border-radius: 0.7rem;
  display: block;
  width: 100%;
  max-width: 100px;
}

p.title-cate {
  margin: 0px !important;
  font-size: 1rem;
}

@media (max-width: 576px) {
  .main-popular-games .tab-games-items img.route {
    max-width: 40px;
  }

  p.title-cate {
    font-size: 0.65rem;
  }
}

.main-popular-games .tab-games-items .tab-games-items-button:hover .game-off,
.main-popular-games .tab-games-items .tab-games-items-button:hover img {
  transform: scale(1.01);
}

.main-popular-games
  .tab-games-items
  .tab-games-items-button:hover
  .game-name
  .main-popular-games
  .tab-games-items
  .tab-games-items-button:hover
  .provider-name {
  transform: scale(1.01, 1.08);
}

.main-popular-games .tab-games-items-page-dots {
  display: flex !important;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0;
}

.main-popular-games .tab-games-items-page-dots li {
  font-size: 0;
  list-style: none;
  margin: 0 8px;
}

.main-popular-games .tab-games-items-page-dots li button {
  background-color: #aeaeae;
  border: 0;
  border-radius: 50%;
  display: block;
  height: 12px;
  padding: 0;
  width: 12px;
}

.main-popular-games .tab-games-items-page-dots li.slick-active button {
  background-color: #fff;
}

@media only screen and (min-width: 992px) {
  .main-popular-games .tab-games-selector {
    display: flex;
    margin-left: -1px;
    margin-right: -1px;
  }

  .main-popular-games .tab-games-selector li {
    flex: 1 1;
    margin: 0 1px;
  }

  .main-popular-games .tab-games-selector li .tab-games-selector-item img {
    width: 30%;
  }

  .main-popular-games .tab-games-selector li .tab-games-selector-item {
    border-radius: 0;
  }

  .main-popular-games
    .tab-games-selector
    li:first-of-type
    .tab-games-selector-item {
    border-radius: 0.5rem 0 0 0.5rem;
  }

  .main-popular-games
    .tab-games-selector
    li:last-of-type
    .tab-games-selector-item {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}

.mini-wallet-container {
  background-color: var(--bs-secondary);
}

.mini-wallet .box {
  position: relative;
}

@media only screen and (min-width: 768px) {
  .mini-wallet .col:first-of-type:after {
    background-color: #fff;
    bottom: auto;
    content: "";
    height: 75%;
    left: auto;
    position: absolute;
    right: -1px;
    top: 15%;
    width: 2px;
  }
}

.aff-box .total-member,
.mini-wallet .total-credit {
  font-size: 2.5rem;
}

.mini-wallet .total-credit-mini {
  font-size: 2.3rem;
}

.aff-box .total-credit {
  font-size: 3.5rem;
}

@media only screen and (min-width: 768px) {
  .aff-box .total-member,
  .mini-wallet .total-credit,
  .mini-wallet .total-credit-mini {
    font-size: 3.5rem;
  }
}

.bank-icon {
  align-items: center;
  border-radius: 0.25rem;
  display: inline-flex;
  justify-content: center;
  padding: 0.25rem;
  vertical-align: middle;
}

.bank-icon img {
  display: block;
  width: 1rem;
}

.bank-icon.sm img {
  width: 1.25rem;
}

.bank-icon.md img {
  width: 1.5rem;
}

.bank-icon.lg img {
  width: 1.75rem;
}

.bank-icon.xl img {
  width: 2rem;
}

.bank-icon.xxl img {
  width: 2.5rem;
}

.bank-icon.w100 img {
  width: 100%;
}

.shortcut-menu .bg-play {
  color: #fff;
  text-decoration: none;
}

.shortcut-menu .shortcut-menu-button {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shortcut-menu .shortcut-menu-button .icon {
  font-size: 1.75rem;
  height: 3rem;
  margin-bottom: 0.75rem;
}

.shortcut-menu .shortcut-menu-button.wheel {
  text-shadow: -1px 1px 2px #fdf4a9;
}

@media only screen and (min-width: 768px) {
  .shortcut-menu .shortcut-menu-button.wheel .icon {
    height: 5rem;
  }
}

.swal-sm {
  max-width: 540px !important;
}

.swal-md,
.swal-sm {
  width: 75% !important;
}

.swal-md {
  max-width: 768px !important;
}

.swal-lg {
  max-width: 992px !important;
}

.swal-lg,
.swal-xl {
  width: 100% !important;
}

.swal-xl {
  max-width: 1200px !important;
}

@media only screen and (min-width: 768px) {
  .swal-lg,
  .swal-xl {
    width: 75% !important;
  }
}

.pointer-event-all {
  pointer-events: all;
}

.clickable,
.cursor-pointer {
  cursor: pointer;
}

.clickable {
  pointer-events: all;
}

.clickable.anchor {
  color: var(--bs-tertiary);
  transition: color 0.25s;
}

.clickable.anchor:focus,
.clickable.anchor:hover {
  color: rgba(var(--bs-tertiary-rgb), 0.85);
}

.bg-primary-dark {
  background-color: var(--theme-primary-dark);
}

.bg-line {
  background-color: #3eba2c !important;
  border-color: #3eba2c !important;
}

.color-line {
  color: #3eba2c !important;
}

.bg-fb {
  background-color: #4564a7 !important;
  border-color: #4564a7 !important;
}

.bg-msg {
  background-color: #149ffa !important;
  border-color: #149ffa !important;
}

.game-off {
  background: #000000a6;
  border-radius: 0.7rem;
  bottom: 0;
  display: flex;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  color: white;
}

.game-off div {
  margin: auto;
}

.game-name {
  background: #000000a6;
  border-radius: 0.7rem;
  bottom: 0;
  display: flex;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  height: 40px;
  color: white;
  /* top: 0; */
}

.game-name div {
  margin: auto;
  margin: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.promotion-card {
  /* background: var(--bs-primary) !important; */
  background: #e8c55f !important;
}

.bank-block {
  background: var(--bs-primary);
}

.background-primary,
.background-secondary,
.ps-card {
  background: var(--bs-primary) !important;
}

.background-popup {
  background: #000000d9 !important;
}

.background-popup .text-white,
.background-popup a {
  color: #fff !important;
}

.tab-games-selector-item {
  border: var(--theme-menu-border);
}

.iframe-game-room {
  background: #000;
  border: none;
  bottom: 0;
  height: 100%;
  left: 0;
  padding-top: 46px !important;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}

.theme-text-tertiary {
  color: var(--theme-text-tertiary) !important;
}

.tab-games-top {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  z-index: 100;
}

.tab-games-top .tab-games-selector-item {
  box-shadow: 0 10px 30px -2px #000000de !important;
}

.custom-drawer {
  -webkit-overflow-scrolling: touch;
  background-color: initial;
  color: var(--bs-dark);
  height: 100%;
  left: 0;
  opacity: 0;
  outline: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 10001;
}

.custom-drawer .custom-drawer-overlay {
  align-items: flex-end;
  background-color: #00000040;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
}

.custom-drawer.open {
  opacity: 1;
  pointer-events: all;
}

.custom-drawer .custom-drawer-content {
  border: 0;
  border-radius: 0;
  transform: translateY(120%);
  transition: transform 0.1s ease !important;
  width: 100% !important;
}

.custom-drawer .custom-drawer-content .card-body {
  overflow: hidden;
}

.custom-drawer.open .custom-drawer-content {
  transform: translateY(0);
}

.custom-drawer .drawer-close {
  --size: 50px;
  background: #fff;
  border: 0;
  border-radius: var(--size);
  cursor: pointer;
  height: var(--size);
  line-height: var(--size);
  position: absolute;
  right: 10px;
  text-align: center;
  top: calc(var(--size) * -1);
  transform: translateY(-10px);
  transition: transform 0.2s ease;
  width: var(--size);
}

.custom-drawer .drawer-close:hover {
  background-color: #f1f1f1;
}

@media screen and (min-width: 768px) {
  .custom-drawer .custom-drawer-overlay {
    align-items: center;
  }

  .custom-drawer .custom-drawer-content {
    border-radius: 0.75rem;
    width: 500px !important;
  }

  .custom-drawer .custom-drawer-content .card-body {
    border-radius: 0.75rem;
  }

  .custom-drawer .drawer-close {
    transform: translateX(70px);
  }
}

.btn-loading-icon,
.main-promotions .check-auto-bonus .checkmark .loading .icon {
  animation: spining-anim 1s linear infinite;
}

@keyframes spining-anim {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.full-page-loading {
  align-items: center;
  background-color: #00000040;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transition: opacity 0.5s;
  width: 100%;
  z-index: 9999999999;
}

.full-page-loading.open {
  opacity: 1;
  pointer-events: all;
  width: 100%;
}

.full-page-loading .loading {
  animation: loading-out-animation 0.5s forwards;
  height: 350px;
  opacity: 0;
  transform: translateY(-150px);
  width: 350px;
}

.full-page-loading.open .loading {
  animation: loading-in-animation 0.5s forwards;
  transform: translateY(150px);
}

.full-page-loading .loading-pre {
  animation: loading-pre-out-animation 0.5s forwards;
}

.full-page-loading.open .loading-pre {
  animation: loading-pre-in-animation 0.5s forwards;
}

@keyframes loading-in-animation {
  0% {
    opacity: 0;
    transform: translateY(150px);
    transition: ease-in;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-out-animation {
  0% {
    opacity: 1;
    transform: translateY(0);
    transition: ease-out;
  }

  to {
    opacity: 0;
    transform: translateY(-150px);
  }
}

@keyframes loading-pre-in-animation {
  0% {
    opacity: 0;
    transform: translateY(0);
    transition: ease-in;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loading-pre-out-animation {
  0% {
    opacity: 1;
    transform: translateY(0);
    transition: ease-out;
  }

  to {
    opacity: 0;
    transform: translateY(0);
  }
}

.game-connecting-container {
  align-items: center;
  background-color: rgba(var(--bs-primary-rgb), 0.5);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.form-control-group-input {
  position: relative;
}

.form-control-type-toggle {
  margin-top: -0.75rem;
  position: absolute;
  right: 0.5rem;
  top: 50%;
}

.form-control-type-toggle label {
  margin: 0;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  text-align: center;
  top: 0.25rem;
}

.form-control-type-toggle input {
  width: 0;
}

.form-control-type-toggle ~ .form-control {
  padding-right: 2.25rem;
}

.form-captcha {
  border: 2px solid;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.form-captcha:after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.form-captcha img {
  pointer-events: none;
  width: 26px;
}

.auth-popup .logo {
  line-height: 0;
  padding: 1px;
}

.auth-popup .logo img {
  height: 4rem;
  margin-top: -7.5rem;
}

.main-promotions .check-auto-bonus {
  align-items: center;
  background-color: var(--bs-tertiary);
  border-radius: 3rem;
  color: var(--bs-dark);
  cursor: pointer;
  display: flex;
  padding: 0.75rem 1rem;
  position: relative;
  transition: all 0.15s;
}

.main-promotions .check-auto-bonus-disabled {
  background-color: #000000bf !important;
  color: #a4a4a4 !important;
}

@media only screen and (max-width: 575.99px) {
  .main-promotions .check-auto-bonus {
    padding: 0.5rem;
  }
}

.main-promotions .check-auto-bonus:hover {
  background-color: rgb(var(--bs-tertiary-rgb), 0.85);
}

.main-promotions .check-auto-bonus input {
  position: absolute;
  width: 0;
}

.main-promotions .check-auto-bonus .checkmark {
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  height: 26px;
  margin-right: 0.75rem;
  position: relative;
  transition: all 0.15s;
  width: 26px;
}

.main-promotions .check-auto-bonus-disabled .checkmark {
  background-color: #a4a4a4;
}

.main-promotions .check-auto-bonus:not(.loading) input:checked ~ .checkmark,
.main-promotions .check-auto-bonus:not(.loading) input:hover ~ .checkmark {
  background-color: rgb(var(--bs-success-rgb), 0.8);
}

.main-promotions
  .check-auto-bonus-disabled:not(.loading)
  input:hover
  ~ .checkmark {
  background-color: #343a40;
}

.main-promotions
  .check-auto-bonus:not(.loading)
  input:checked
  ~ .checkmark:after,
.main-promotions
  .check-auto-bonus:not(.loading)
  input:hover
  ~ .checkmark:after {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  clear: both;
  content: " ";
  height: 14px;
  left: 10px;
  position: absolute;
  top: 5px;
  transform: rotate(45deg);
  width: 6px;
}

.main-promotions .check-auto-bonus:not(.loading) .icon {
  display: none;
}

.main-promotions .check-auto-bonus .checkmark .loading {
  font-size: 22px;
  height: 100%;
  line-height: 26px;
  text-align: center;
  width: 100%;
}

.main-promotions .check-auto-bonus .checkmark .loading .icon {
  color: var(--bs-secondary);
}

.navbar-brand {
  margin-right: 1.5rem !important;
}

.navbar-brand img {
  height: 65px;
}

@media only screen and (max-width: 575.99px) {
  .navbar-brand img {
    height: 35px;
  }
}

.navbar-brand:hover img {
  transform: scale(1.1);
}

.navbar-toggler {
  border: 0 !important;
  padding: 0;
  position: relative;
}

.header-profile-menu {
  margin-top: 1rem;
  width: 100%;
}

.header-profile-menu a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.header-profile-menu svg {
  font-size: 1.15rem;
}

.header-register-menu {
  display: flex;
  margin-top: 1rem;
  width: 100%;
}

.header-profile-menu {
  display: flex;
  margin-right: 3rem;
  margin-top: 0;
  width: auto;
}

.header-profile-menu a {
  display: inline;
}

@media (min-width: 768px) {
  .header-register-menu {
    margin-right: 50px;
    margin-top: 0;
    width: 60%;
  }
}

.hamburger {
  background-color: initial;
  border: 0;
  cursor: pointer;
  height: 37px;
  padding: 5px 8px;
  position: absolute;
  right: 0.5rem;
  top: 0.15rem;
  transition: transform opacity 0.3s;
  -o-transition: transform opacity 0.3s;
  -moz-transition: transform opacity 0.3s;
  -webkit-transition: transform opacity 0.3s;
  width: 37px;
}

.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
  background-color: #fff;
  background-image: var(--theme-hamburger-bg);
  height: 1px;
  margin-bottom: 6px;
  margin-top: 6px;
  transition: all 0.35s;
  width: 100%;
}

.hamburger {
  z-index: 1000;
}

.hamburger.checked {
  position: fixed;
  top: calc(0.75rem + 2px);
}

@media (min-width: 992px) {
  .hamburger.checked {
    right: calc(50% - 490px + 1.15rem);
    right: calc(50% - 490px + var(--bs-gutter-x, 0.75rem) + 0.4rem);
  }
}

@media (min-width: 1200px) {
  .hamburger.checked {
    right: calc(50% - 490px + 0.5rem);
  }
}

.hamburger.checked .bar1 {
  transform: rotate(-45deg) translate3d(-5px, 5px, 0);
}

.hamburger.checked .bar2 {
  opacity: 0;
}

.hamburger.checked .bar3 {
  transform: rotate(45deg) translate3d(-5px, -5px, 0);
}

.hamburger .bar1,
.hamburger .bar2,
.hamburger .bar3 {
  transform: rotate(0) translateZ(0);
}

.hamburger .bar2 {
  opacity: 1;
}

.fpm {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  position: fixed;
  top: -100%;
  transform: translateZ(0);
  z-index: 999;
}

.fpm,
.fpm:before {
  left: 0;
  overflow: hidden;
  width: 100%;
}

.fpm:before {
  border-radius: 100%;
  bottom: 0;
  content: "";
  height: 0;
  margin: auto;
  padding-bottom: 100%;
  position: absolute;
  right: 0;
  top: 0;
  transform: scale(0.04), translateY(9999px);
}

.fpm-open .fpm {
  top: 0;
}

.fpm-open .fpm:before {
  animation: fpm-animation 0.4s ease-out forwards;
  transition: all 1s;
}

.fpm .fpm-header {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  left: 0;
  perspective: 1000;
  position: fixed;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 9;
}

.fpm .fpm-header .fpm-header-content {
  background-color: var(--bs-primary);
  opacity: 0;
  padding: 0.75rem 0;
  text-align: center;
  transform: translate3d(0, -36px, 0);
}

.fpm-open .fpm-header .fpm-header-content {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  transition-delay: 0.55s;
}

.fpm .fpm-header .fpm-header-content img {
  height: 42px;
}

.fpm .fpm-body {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  color: #fff;
  height: 100%;
  left: 50%;
  overflow-y: auto;
  padding-bottom: 0;
  padding-top: 80px;
  perspective: 1000;
  position: fixed;
  top: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 100%;
}

.fpm .fpm-body .fpm-content {
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 36px, 0);
}

.fpm-open .fpm-body .fpm-content {
  opacity: 1;
  transform: translateZ(0);
  transition: transform 0.15s ease-out, opacity 0.15s ease-out;
  transition-delay: 0.8s;
}

@keyframes fpm-animation {
  0% {
    opacity: 0;
    transform: scale(0.04) translateY(300%);
  }

  40% {
    transition: ease-out;
  }

  40% {
    transform: scale(0.04) translateY(0);
  }

  60% {
    opacity: 1;
    transform: scale(0.02) translateY(0);
  }

  61% {
    transform: scale(0.04);
  }

  99.9% {
    border-radius: 100%;
    height: 0;
    padding-bottom: 100%;
  }

  to {
    border-radius: 0;
    height: 100%;
    padding-bottom: 0;
    transform: scale(2);
  }
}

.fpm-open .fpm-body .fpm-content ul {
  font-size: 1.5rem;
  list-style: none;
  padding: 0;
}

.fpm-open .fpm-body .fpm-content ul li {
  background-color: var(--bs-light);
  border-radius: 5rem;
  color: var(--bs-primary);
  transition: all 0.25s;
}

.fpm-open .fpm-body .fpm-content ul li:hover {
  background-color: rgb(var(--bs-light-rgb), 0.75);
}

.fpm-open .fpm-body .fpm-content ul li .icon {
  align-items: center;
  display: flex;
  height: 3rem;
  justify-content: center;
  width: 3rem;
}

.fpm-open .fpm-body .fpm-content ul li .icon img {
  width: 100%;
}

ul.top-menu-style-1 li {
  background-color: initial !important;
}

ul.top-menu-style-1 li .nav-link {
  background-color: var(--bs-light);
  background: var(--theme-tab-games-selector-item);
  border: var(--theme-menu-border);
  border-radius: 1rem;
}

ul.top-menu-style-1 li .nav-link:hover {
  background: var(--theme-tab-games-selector-item-active);
}

ul.top-menu-style-1 li .nav-link:hover img {
  transform: scale(1.1);
}

ul.top-menu-style-1 li .nav-link div.small {
  color: var(--theme-menu-text-color) !important;
}

ul.top-menu-style-1 li .nav-link:hover div.small {
  color: var(--theme-active-menu-text-color) !important;
}

ul.top-menu-style-1 li small {
  font-size: 0.75em;
}

.tab-selector {
  padding: 0;
}

.tab-selector li {
  list-style: none;
  text-decoration: none;
}

.tab-selector li .tab-selector-item {
  border-radius: 0.5rem;
  cursor: pointer;
  margin-bottom: 0.5rem;
  padding: 1rem 0.25rem;
  transition: background 0.25s;
  width: 100%;
}

.tab-selector li .tab-selector-item img {
  display: block;
  margin: 0 auto 0.75rem;
  position: relative;
  width: 50%;
}

.tab-selector li .tab-selector-item input {
  position: absolute;
  width: 0;
}

@media only screen and (min-width: 768px) {
  .tab-selector {
    display: flex;
    margin-left: -1px;
    margin-right: -1px;
  }

  .tab-selector li {
    flex-grow: 1;
    margin: 0 1px;
  }

  .tab-selector li .tab-selector-item img {
    width: 30%;
  }

  .tab-selector li .tab-selector-item {
    border-radius: 0;
  }

  .tab-selector li:first-of-type .tab-selector-item {
    border-radius: 0.5rem 0 0 0.5rem;
  }

  .tab-selector li:last-of-type .tab-selector-item {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}

#top-header {
  /* background: var(--theme-top-header-bg-color);
  background: var(--theme-top-header-bg); */
  border-bottom: var(--theme-top-header-border);
}

#top-header .nav-container .header-register-menu .react-ripples {
  border-radius: var(--theme-register-btn-radius) !important;
  margin-bottom: auto;
  margin-top: auto;
  width: 100%;
}

/* #top-header .nav-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
} */

#top-header .nav-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.justify-content-center {
  justify-content: end;
}

#top-header .nav-container .header-register-menu {
  height: 100%;
  margin-right: 20px;
  margin-top: 0;
}

@media screen and (min-width: 0) {
  #top-header .nav-container .header-register-menu {
    width: 70%;
  }
}

@media screen and (min-width: 768px) {
  #top-header .nav-container .header-register-menu {
    min-width: 400px;
    width: auto;
  }
}

#top-header .nav-container .header-register-menu .react-ripples button {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  height: 100%;
  padding-left: 2px;
  padding-right: 2px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  #top-header .nav-container .header-register-menu .react-ripples button {
    font-size: 1rem;
  }
}

/* 
#top-header .nav-container .header-register-menu .react-ripples button svg {
  display: none !important;
} */

@media screen and (min-width: 768px) {
  #top-header .nav-container .header-register-menu .react-ripples button svg {
    display: inline !important;
  }
}

#top-header.logo-center .header-register-menu .header-register-logo-center {
  display: none;
}

@media screen and (max-width: 768px) {
  #top-header.logo-center .hamburger,
  #top-header.logo-center .navbar-brand-left {
    display: none;
  }

  #top-header.logo-center .header-register-menu {
    margin-right: 0;
    width: 100%;
  }

  #top-header.logo-center .header-register-menu .header-register-logo-center {
    display: block;
  }

  #top-header.logo-center .header-register-menu .change-lang-box {
    display: none !important;
  }
}

.change-lang-box .dropdown-toggle:after {
  display: none;
}

.header-game-box {
  background-image: linear-gradient(#000, #000) !important;
  border-bottom: 1px solid #ffffff3d;
  color: #fff !important;
}

#fachai-page,
#joker-page,
#nlc-page,
#pp-page,
#relax-page,
#ygg-page {
  padding-top: 46px !important;
}

#root {
  --footer-height: 80px;
  height: calc(100% - var(--footer-height));
  position: relative;
}

.footer-menu-item .text {
  color: var(--footer-label-color);
}

.footer {
  bottom: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
}

.footer .container > .row,
.footer > .container {
  height: 100%;
}

.footer-menu {
  display: flex;
}

.footer-menu-item {
  flex-grow: 1;
  text-align: center;
  width: 25%;
}

.footer-menu-item .footer-link {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding-bottom: 0.6rem;
  padding-top: 0.4rem;
  text-decoration: none;
  transition: background 0.25s;
  width: 100%;
}

.footer-menu-item .footer-link.active,
.footer-menu-item .footer-link:hover {
  transform: scale(1.1);
}

.footer-menu-item .icon {
  font-size: 1.25rem;
  height: 2rem;
  line-height: 1.9rem;
  margin: 0 auto 0.5rem;
  position: relative;
  width: 2rem;
}

.footer-menu-item .img {
  display: inline-block;
  height: 2.5rem;
  margin: 0 auto;
  width: 3rem;
}

.footer-menu-item .img img {
  display: block;
  width: 100%;
}

.footer-menu-item.play-button .img img {
  display: block;
  margin-left: -0.1rem;
  margin-top: -2.75rem;
  width: 5rem;
}

.footer-menu-item .icon:after {
  border: 1px solid #fff;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  width: 100%;
}

.footer-menu-item .text {
  display: block;
  line-height: 1;
  text-align: center;
  width: 85%;
}

.footer-menu-item .text div {
  padding: 0.25rem 0;
}

.games-at-footer {
  padding: 15px 0 0;
}

.games-at-footer .games-list {
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.games-at-footer .games-list .games-item {
  padding: 10px;
  width: 60px;
}

.games-at-footer .games-list .games-item img {
  width: 100%;
}

@media only screen and (min-width: 768px) {
  .games-at-footer .games-list .games-item {
    width: 80px;
  }
}

.games-at-footer .games-list .arrow {
  --scale: 50px;
  background-color: initial;
  border: 0;
  color: #fff;
  font-size: 2rem;
  height: var(--scale);
  left: calc(var(--scale) * -1);
  line-height: var(--scale);
  margin-top: calc((var(--scale) / 2) * -1);
  opacity: 0.5;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: all 0.25s;
  width: var(--scale);
}

.games-at-footer .games-list .arrow:hover {
  opacity: 0.75;
}

.games-at-footer .games-list .arrow.next {
  left: auto;
  right: calc(var(--scale) * -1);
}

.footer-menu-item.play-button .footer-link .img {
  display: flex;
  margin: 0;
  width: 5rem;
}

.footer-menu-item.play-button .footer-link .img img {
  z-index: 9;
  height: 5rem;
  height: 5rem;
  /* margin-left: auto; */
  /* margin-right: auto; */
  width: auto;
}

.footer .fake-center-bg-wrapper {
  display: none;
}

.footer-bg {
  background: var(--theme-footer-bg);
  border-top: var(--theme-footer-border);
}

.footer-style .fake-center-bg-wrapper {
  display: inline !important;
  display: initial !important;
}

.footer-style .footer-menu-item#ft-promotion {
  /* background: var(--theme-footer-bg);
  border-top: var(--theme-footer-border) !important; */
  border-top-left-radius: 10px;
}

.footer-style .footer-menu-item#ft-wallet {
  /* background: var(--theme-footer-bg);
  border-top: var(--theme-footer-border) !important; */
  border-top-right-radius: 22px;
}

.footer-style .footer-menu-item#ft-notification {
  /* background: var(--theme-footer-bg);
  border-top: var(--theme-footer-border) !important; */
  border-top-left-radius: 22px;
}

.footer-style .footer-menu-item#ft-contact {
  /* background: var(--theme-footer-bg);
  border-top: var(--theme-footer-border) !important; */
  border-top-right-radius: 10px;
}

.footer-style .footer-menu-item.play-button {
  max-width: 92px;
  min-width: 92px;
}

.footer-style .fake-center-bg-wrapper {
  bottom: 0;
  height: 58px;
  left: 0;
  overflow: hidden;
  position: absolute;
  transition: filter 0.2s;
  width: 100%;
  z-index: -1;
}

.footer-style .fake-center-bg-wrapper svg {
  bottom: 0;
  height: 110px;
  left: 50%;
  overflow: hidden;
  position: absolute;
  transform: translateX(-50%);
  vertical-align: middle;
  width: 280px;
}

.footer-style .fake-center-bg-wrapper svg .p-stop-1 {
  /* stop-color: var(--theme-footer-stop-color-1); */
  stop-color: var(--theme-footer-bg);
}

.footer-style .fake-center-bg-wrapper svg .p-stop-2 {
  /* stop-color: var(--theme-footer-stop-color-2); */
  stop-color: var(--theme-footer-bg);
}

.footer-style .fake-center-bg-wrapper path {
  fill: url(#rectangleGradient);
}

.footer-style .footer-menu-item.play-button .text {
  color: var(--theme-btn-play-text-color);
  margin-top: -10px;
}

.play-spin {
  animation: play-spin 7s linear infinite;
  position: relative;
  top: -20px;
}

.play-spin .img img {
  filter: drop-shadow(0 0 5px rgb(0 0 0));
  height: auto !important;
  left: 50%;
  max-width: inherit !important;
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  width: 84px !important;
}

.play-spin .text {
  display: none;
}

@keyframes play-spin {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

.carousel .control-arrow,
.carousel.carousel-slider .control-arrow {
  background: none;
  border: 0;
  cursor: pointer;
  filter: alpha(opacity=40);
  font-size: 32px;
  opacity: 0.4;
  position: absolute;
  top: 20px;
  transition: all 0.25s ease-in;
  z-index: 2;
}

.carousel .control-arrow:focus,
.carousel .control-arrow:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

.carousel .control-arrow:before,
.carousel.carousel-slider .control-arrow:before {
  border-bottom: 8px solid #0000;
  border-top: 8px solid #0000;
  content: "";
  display: inline-block;
  margin: 0 5px;
}

.carousel .control-disabled.control-arrow {
  cursor: inherit;
  display: none;
  filter: alpha(opacity=0);
  opacity: 0;
}

.carousel .control-prev.control-arrow {
  left: 0;
}

.carousel .control-prev.control-arrow:before {
  border-right: 8px solid #fff;
}

.carousel .control-next.control-arrow {
  right: 0;
}

.carousel .control-next.control-arrow:before {
  border-left: 8px solid #fff;
}

.carousel-root {
  outline: none;
}

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

.carousel * {
  box-sizing: border-box;
}

.carousel img {
  display: inline-block;
  pointer-events: none;
  width: 100%;
}

.carousel .carousel {
  position: relative;
}

.carousel .control-arrow {
  background: none;
  border: 0;
  font-size: 18px;
  margin-top: -13px;
  outline: 0;
  top: 50%;
}

.carousel .thumbs-wrapper {
  margin: 20px;
  overflow: hidden;
}

.carousel .thumbs {
  list-style: none;
  position: relative;
  transform: translateZ(0);
  transition: all 0.15s ease-in;
  white-space: nowrap;
}

.carousel .thumb {
  border: 3px solid #fff;
  display: inline-block;
  margin-right: 6px;
  overflow: hidden;
  padding: 2px;
  transition: border 0.15s ease-in;
  white-space: nowrap;
}

.carousel .thumb:focus {
  border: 3px solid #ccc;
  outline: none;
}

.carousel .thumb.selected,
.carousel .thumb:hover {
  border: 3px solid #333;
}

.carousel .thumb img {
  vertical-align: top;
}

.carousel.carousel-slider {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.carousel.carousel-slider .control-arrow {
  bottom: 0;
  color: #fff;
  font-size: 26px;
  margin-top: 0;
  padding: 5px;
  top: 0;
}

.carousel.carousel-slider .control-arrow:hover {
  background: #0003;
}

.carousel .slider-wrapper {
  margin: auto;
  overflow: hidden;
  transition: height 0.15s ease-in;
  width: 100%;
}

.carousel .slider-wrapper.axis-horizontal .slider {
  -ms-box-orient: horizontal;
  display: -moz-flex;
  display: flex;
}

.carousel .slider-wrapper.axis-horizontal .slider .slide {
  flex-direction: column;
  flex-flow: column;
}

.carousel .slider-wrapper.axis-vertical {
  -ms-box-orient: horizontal;
  display: -moz-flex;
  display: flex;
}

.carousel .slider-wrapper.axis-vertical .slider {
  flex-direction: column;
}

.carousel .slider {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

.carousel .slider.animated {
  transition: all 0.35s ease-in-out;
}

.carousel .slide {
  margin: 0;
  min-width: 100%;
  position: relative;
  text-align: center;
}

.carousel .slide img {
  border: 0;
  vertical-align: top;
  width: 100%;
}

.carousel .slide iframe {
  border: 0;
  display: inline-block;
  margin: 0 40px 40px;
  width: calc(100% - 80px);
}

.carousel .slide .legend {
  background: #000;
  border-radius: 10px;
  bottom: 40px;
  color: #fff;
  font-size: 12px;
  left: 50%;
  margin-left: -45%;
  opacity: 0.25;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: all 0.5s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  width: 90%;
}

.carousel .control-dots {
  bottom: 0;
  margin: 10px 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
}

@media (min-width: 960px) {
  .carousel .control-dots {
    bottom: 0;
  }
}

.carousel .control-dots .dot {
  background: #fff;
  border-radius: 50%;
  box-shadow: 1px 1px 2px #000000e6;
  cursor: pointer;
  display: inline-block;
  filter: alpha(opacity=30);
  height: 8px;
  margin: 0 8px;
  opacity: 0.3;
  transition: opacity 0.25s ease-in;
  width: 8px;
}

.carousel .control-dots .dot.selected,
.carousel .control-dots .dot:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}

.carousel .carousel-status {
  color: #fff;
  font-size: 10px;
  padding: 5px;
  position: absolute;
  right: 0;
  text-shadow: 1px 1px 1px #000000e6;
  top: 0;
}

.carousel:hover .slide .legend {
  opacity: 1;
}

.slick-slider {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
  -khtml-user-select: none;
}

.slick-list,
.slick-slider {
  display: block;
  position: relative;
}

.slick-list {
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translateZ(0);
}

.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}

.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  border: 1px solid #0000;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff
    url(data:image/gif;base64,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)
    50% no-repeat;
}

@font-face {
  font-family: slick;
  font-style: normal;
  font-weight: 400;
  src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot);
  src: url(/static/media/slick.a4e97f5a2a64f0ab1323.eot?#iefix)
      format("embedded-opentype"),
    url(/static/media/slick.295183786cd8a1389865.woff) format("woff"),
    url(/static/media/slick.c94f7671dcc99dce43e2.ttf) format("truetype"),
    url(/static/media/slick.2630a3e3eab21c607e21.svg#slick) format("svg");
}

.slick-next,
.slick-prev {
  border: none;
  cursor: pointer;
  display: block;
  font-size: 0;
  height: 20px;
  line-height: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.slick-next,
.slick-next:focus,
.slick-next:hover,
.slick-prev,
.slick-prev:focus,
.slick-prev:hover {
  background: #0000;
  color: #0000;
  outline: none;
}

.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before,
.slick-prev:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  bottom: -25px;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  position: relative;
}

.slick-dots li,
.slick-dots li button {
  cursor: pointer;
  height: 20px;
  width: 20px;
}

.slick-dots li button {
  background: #0000;
  border: 0;
  color: #0000;
  display: block;
  font-size: 0;
  line-height: 0;
  outline: none;
  padding: 5px;
}

.slick-dots li button:focus,
.slick-dots li button:hover {
  outline: none;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000;
  content: "•";
  font-family: slick;
  font-size: 6px;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.slick-dots li.slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.main-banner {
  position: relative;
}

.main-banner .arrow {
  background-color: #0000001a;
  border: 0;
  color: #eaeaea;
  font-size: 2rem;
  height: calc(100% - 7px);
  left: 0;
  line-height: 100%;
  position: absolute;
  top: 0;
  transition: all 0.25s;
  width: 40px;
  z-index: 9;
}

.main-banner .arrow.next {
  left: auto;
  right: 0;
}

.main-banner .arrow:hover {
  background-color: #0003;
  color: #fff;
}

.main-banner .main-banner-item {
  border-radius: 0.25rem;
  overflow: hidden;
}

#video-banner {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

#video-banner .play-btn {
  background: #0000;
  border: none;
  font-size: 40px;
  left: calc(50% - 25px);
  padding: 5px;
  position: absolute;
  top: calc(50% - 40px);
}

.transactions-list {
  border-radius: 0.5rem 0.5rem 0 0;
}

.transactions-list thead th {
  padding-bottom: 1.2rem;
  padding-top: 1.2rem;
}

.transactions-list tbody td {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.transactions-list tbody tr {
  background-color: rgb(var(--bs-primary-rgb), 0.5);
}

.transactions-list tbody tr:nth-child(odd) {
  background-color: rgb(var(--bs-primary-rgb), 0.25);
}

#page-error .error-title {
  font-size: 150%;
  text-align: center;
  width: 100%;
}

#page-error .error-title h1 {
  font-size: 6rem !important;
}

#__nuxt {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  background: #eeeff3;
  font-family: PingFang SC, Microsoft YaHei, WenQuanYi Micro Hei, sans-serif;
  height: 100%;
  min-height: 100%;
  overflow: auto;
  padding: 0;
  width: 100%;
}

#__nuxt #__layout #app {
  height: auto;
  width: 100%;
}

.oprlobby {
  height: 100%;
  margin: 0 auto;
  padding: 5px 10px 10px;
}

.main-wrapper {
  margin: 0 auto;
  max-width: 1200px;
}

.main-wrapper,
.main-wrapper > .gameslib {
  height: auto;
  transition: all 0.3s;
  width: 100%;
}

.main-wrapper > .gameslib {
  float: left;
}

.gameslib .nav.nav-pills {
  padding-bottom: 10px;
}

.gameslib .nav-item .nav-link {
  align-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px 0 #0000000a;
  color: #b7b8c9;
  display: flex;
  float: left;
  font-size: 12px;
  height: 40px;
  margin-right: 10px;
  padding: 0 16px 0 10px;
}

.gameslib .nav-item .nav-link.active,
.gameslib .nav-item .nav-link:hover {
  background-color: #fff;
  color: #424351;
}

.gameslib .nav-item .nav-link .icon {
  background: #b7b8c9;
  height: 20px;
  margin-right: 4px;
  width: 20px;
}

.gameslib .nav-item .nav-link.active .icon,
.gameslib .nav-item .nav-link:hover .icon {
  background: #424351;
}

.gameslib .nav-item .nav-link.all .icon,
.pgicon-all {
  -webkit-mask-image: url(/static/media/all.435f72f6e79be2b27afe.svg);
  mask-image: url(/static/media/all.435f72f6e79be2b27afe.svg);
}

.gameslib .nav-item .nav-link.hot .icon,
.pgicon-hot {
  -webkit-mask-image: url(/static/media/hot.342c712f6a4e717fe657.svg);
  mask-image: url(/static/media/hot.342c712f6a4e717fe657.svg);
}

.gameslib .nav-item .nav-link.time .icon,
.pgicon-time {
  -webkit-mask-image: url(/static/media/time.19ad4b375b4c46fe13b0.svg);
  mask-image: url(/static/media/time.19ad4b375b4c46fe13b0.svg);
}

.gameslib .nav-item .nav-link.star .icon,
.pgicon-star {
  -webkit-mask-image: url(/static/media/star.7e0a09b84e5a561266d4.svg);
  mask-image: url(/static/media/star.7e0a09b84e5a561266d4.svg);
}

.gameslib .dropdown-menu > li {
  display: grid;
}

.gameslib .dropdown-menu > li > .nav-link {
  box-shadow: none;
  margin-right: 0;
}

.gameslib .dropdown-menu .dropdown-divider {
  background: #eee;
  height: 1px;
  margin: 3px 15%;
  width: 70%;
}

.gameslib .dropdown-menu.show {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 20px 0 #0000004d;
  float: left;
  margin-top: 5px !important;
  padding: 6px 8px 6px 6px;
}

.library {
  height: auto;
  margin-bottom: 0;
}

.library > div.listClass {
  margin: 0;
}

#games_isotope .game-item.list > div {
  align-items: center;
  align-items: flex-end;
  background: #fff;
  border-radius: 8px;
  cursor: default;
  display: flex;
  height: 128px;
  margin: 0 2px 10px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}

#games_isotope .game-item.list > div > .action {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  margin-left: 0;
  padding: 28px 0 0;
  width: 25px;
}

#games_isotope .game-item.list > div > .action > div {
  align-items: center;
  color: #d8d9e7;
  display: flex;
  flex-direction: column;
}

#games_isotope .game-item.list > div > .action > div svg {
  fill: #d8d9e7;
  cursor: pointer;
  display: block;
  height: 20px;
  transform: scale(1);
  transition: transform 0.2s, fill 0.2s, filter 0.2s;
  width: 20px;
}

#games_isotope .game-item.list > div > .action > div svg:hover {
  transform: scale(1.3);
}

#games_isotope .game-item.list > div > .action > div .count {
  font-size: 10px;
}

#games_isotope .game-item.list > div > .icon {
  height: 80px;
  margin: -2px 12px 0 10px;
  position: relative;
  width: 80px;
}

#games_isotope .game-item.list > div > .icon img {
  bottom: 0;
  display: block;
  position: absolute;
  width: 100%;
}

#games_isotope .game-item.list > div > .info.full {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  left: 0;
  margin-left: 10px;
  max-width: none;
  padding-right: 0;
  position: absolute;
  top: 10px;
  width: calc(100% - 20px);
}

#games_isotope .game-item.list > div > .info .name {
  color: #424351;
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  padding-right: 4px;
}

#games_isotope .game-item.list > div > .info .online-no {
  color: #b7b8c9;
  font-size: 10px;
  line-height: 12px;
  margin-top: 0;
  white-space: nowrap;
}

#games_isotope .game-item.list > div > .detail.ani {
  align-content: flex-end;
  align-items: flex-end;
  border: none;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: flex-start;
  margin-right: 8px;
  min-width: 0;
  min-width: auto;
  padding-bottom: 2px;
  width: calc(100% - 195px);
}

#games_isotope .game-item.list > div > .detail.ani .rate {
  border: none;
  margin-bottom: 18px;
  padding: 0;
  width: 100%;
}

#games_isotope .game-item.list > div > .detail.ani .rate .value {
  align-items: center;
  color: #424351;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

#games_isotope .game-item.list > div > .detail.ani .rate .label {
  color: #b7b8c9;
  font-size: 10px;
  line-height: 11px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#games_isotope .game-item.list > div > .detail.ani .rtp {
  border-left: none;
  border-right: 1px solid #b7b8c94d;
  max-width: 50%;
  padding: 0 10px 0 0;
}

#games_isotope .game-item.list > div > .detail.ani .rtp .value {
  color: #424351;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#games_isotope .game-item.list > div > .detail.ani .rtp .label {
  color: #b7b8c9;
  font-size: 10px;
  line-height: 11px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#games_isotope .game-item.list > div > .detail.ani .right {
  max-width: 50%;
  padding: 0 0 0 10px;
}

#games_isotope .game-item.list > div > .detail.ani .right .value {
  color: #424351;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
}

#games_isotope .game-item.list > div > .detail.ani .right .label {
  color: #b7b8c9;
  font-size: 10px;
  line-height: 11px;
  margin-top: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#games_isotope .game-item.list > div > .button.full {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: auto;
  padding: 4px 0;
  width: 60px;
}

#games_isotope .game-item.list > div > .button.full > div {
  align-items: center;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: #0054fe26;
  border: 1px solid #0054fe33;
  border-radius: 4px;
  color: #0054fe;
  cursor: pointer;
  display: flex;
  font-size: 10px;
  height: 32px;
  justify-content: center;
  line-height: 10px;
  text-align: center;
  transition: filter 0.2s, background 0.2s;
  width: 100%;
}

#games_isotope .game-item.list > div > .button.full > div:hover {
  background: #0054fe4d;
  border: 1px solid #0054fe59;
}

#root {
  --footer-height: 0px;
  margin-bottom: var(--footer-height);
}

.slider {
  margin: 0 20px;
  overflow: hidden;
  /* padding: 2rem 1rem; */
  margin-left: auto;
  margin-right: auto;
}

.slider img {
  width: 100%;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  /* max-height: 300px; */
  /* change this to whatever you want */
}

.sctionRunMsg {
  height: 50px;
  padding: 10px 30px 10px 9%;
  background-color: #2d9aff;
  color: white;
  display: flex;
}

.balanceButton {
  /* color: #2e9afe !important; */
  color: #e8c55f;
  display: flex;
  align-items: center;
  font-weight: 600;
  border-radius: 30px;
  /* background-color: white; */
  background-color: #393939;
  border: solid #e8c55f 1px;
  padding: 10px 30px;
  width: 200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.5rem !important;
  font-weight: bolder !important;
  width: 100% !important;
}

.balanceButton > svg {
  float: right;
  margin-right: 1rem;
  display: block !important;
  width: 2rem;
  height: 2rem;
}

@media only screen and (max-width: 480px) {
  .balanceButton {
    padding: 3px 30px;
    width: 80% !important;
    font-size: 0.9rem !important;
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .balanceButton > svg {
    width: 1rem;
    height: 1.3rem;
  }
}

.positionRelative {
  position: relative;
}

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

.margin-right-auto {
  margin-right: auto;
}

.btn--yellow {
  background-color: #e8c55f;
  /* background-color: #fbb03c !important; */
}

.username {
  padding-left: 40px !important;
  background: url("https://apis-storage.moon89.cc/games88/default-theme/cellphone.png")
    no-repeat left;
  background-size: 20px;
  background-position: 7px 7px;
}

.password {
  padding-left: 40px !important;
  background: url("https://apis-storage.moon89.cc/games88/default-theme/key.png")
    no-repeat left;
  background-size: 20px;
  background-position: 7px 7px;
}

.message--error {
  color: red;
  font-weight: bolder;
}

#canvasCaptcha {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
}

.middleDiv {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tabAff {
  background-color: #e8c55f;
  color: #000000;
  font-size: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  cursor: pointer;
}

.borderRight {
  position: relative;
}

.borderRight:after {
  /* content: "";
  height: 80%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 8px;
  background-color: #2c97e8; */
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 0px;
  background-color: #000000;
}

.tabAff.active {
  color: #ffffff;
}

.tabAff.active > img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(157deg) brightness(100%) contrast(101%);
}

.tabAff > img {
  width: 25px;
  height: 25px;
}

.tabAff > p {
  margin: 0;
}

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

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

.affLinkText {
  pointer-events: none;
  position: absolute;
  top: 51%;
  left: 65.5%;
  transform: translate(-50%, -68%);
  color: black;
  margin: 0;
  /* font-size: 1rem; */
  width: 33%;
  height: 9%;
  border: none;
  background: white;
  padding: 0.5rem;
  border: solid 2px #e8c55f;
  border-radius: 0.5rem;
}

.affLinkTextMobile {
  pointer-events: none;
  position: absolute;
  top: 51%;
  left: 70.5%;
  transform: translate(-50%, -68%);
  color: black;
  margin: 0;
  /* font-size: 1rem; */
  width: 43%;
  height: 9%;
  border: none;
  background: white;
  padding: 0.5rem;
  border: solid 2px #e8c55f;
  border-radius: 0.5rem;
}

.btnAffClick {
  color: white !important;
  background-color: #e8c55f !important;
  /* background: linear-gradient(
    0deg,
    rgba(25, 83, 175, 1) 0%,
    rgba(15, 157, 255, 1) 100%
  ); */
  width: 100%;
  border: none !important;
  border-radius: 10px !important;
  font-weight: bold;
  padding: 0px 10px 10px 0px;
  height: 100%;
}

.btnCopy{
  padding: 0.375rem 0rem !important;
}

.btnCancel {
  color: white !important;
  background: rgb(175, 25, 25);
  background: linear-gradient(0deg, rgb(175, 25, 25) 0%, rgb(255, 15, 15) 100%);
  width: 100%;
  border: none !important;
  border-radius: 10px !important;
  font-weight: bold;
  padding: 0px 10px 10px 0px;
  height: 100%;
}

.btnMonthClick {
  color: white !important;
  /* background: rgb(25, 83, 175); */
  background-color: #393939 !important;
  /* background: linear-gradient(
    0deg,
    rgba(25, 83, 175, 1) 0%,
    rgba(15, 157, 255, 1) 100%
  ); */
  width: 100%;
  border: none !important;
  border-radius: 10px !important;
  font-weight: bold;
  padding: 0px 10px 10px 0px;
  height: 100%;
}

.btnMonthClick.active {
  /* background: linear-gradient(
    0deg,
    rgba(15, 157, 255, 1) 0%,
    rgb(25 160 175) 100%
  ); */

  background-color: #e8c55f !important;
}

.buttonPagination {
  /* background-color: #2c97e8 !important; */
  background-color: #e8c55f !important;

  color: white !important;
}

.divIncome {
  /* background: linear-gradient(
    0deg,
    rgba(25, 83, 175, 1) 0%,
    rgba(15, 157, 255, 1) 100%
  ); */
  color: white;
}

.tabDepositWithDraw {
  background: #393939;
  color: white;
  border: unset;
  border-radius: 10px;
  padding: 10px 15px;
  width: 30%;
  font-size: 1rem;
  font-weight: bolder;
}

.tabDepositWithDraw.active {
  background: #e8c55f;
  color: #545454;
  pointer-events: none;
}

.divPromotion {
  border: solid 1px #2c97e8;
}

.btnContactLine {
  background-color: #009f42 !important;
  padding: 1.375rem 1.75rem !important;
  border-radius: 1.25rem !important;
}

.btnContactLine > span {
  margin-left: 10%;
  font-size: 2rem;
  color: white;
  font-weight: bolder;
}

.btnContactTele {
  background-color: #04b0f2 !important;
  padding: 1.375rem 1.75rem !important;
  border-radius: 1.25rem !important;
}

.btnContactTele > img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
    hue-rotate(157deg) brightness(100%) contrast(101%);
}

.btnContactTele > span {
  margin-left: 10%;
  font-size: 2rem;
  color: white;
  font-weight: bolder;
}

.loader {
  width: 50px;
  height: 50px;
  border: 5px solid #04b0f2;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: #e8c55f;
  animation: loading 1s linear infinite;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}

.provider-name {
  background: #000000a6;
  border-radius: 0.7rem;
  /* bottom: 0; */
  display: flex;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  height: 40px;
  color: white;
  top: 0;
}

.provider-name div {
  margin: auto;
  margin: auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.text-left {
  text-align: left;
}

.contactIconText {
  margin-right: 2rem;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  width: 100%;
}

.modalChat > .MuiDialog-container > .MuiPaper-elevation {
  position: absolute;
  bottom: 0px;
  right: -10px;
}

.p-mt-mb {
  margin-top: 0px;
  margin-bottom: 0px;
}

.slider.popup {
  margin: 0 20px;
  overflow: hidden;
  padding: 0rem 0rem;
  margin-left: auto;
  margin-right: auto;
}

.slider.popup img {
  /* width: 100%; */
  /* width: fit-content; */
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  /* max-height: 300px; */
  object-fit: scale-down;
  /* change this to whatever you want */
}

.react-multiple-carousel__arrow--right {
  right: calc(0% + 1px) !important;
}

.react-multiple-carousel__arrow--left {
  left: calc(0% + 1px) !important;
}

.divGameName {
  text-align: center;
  padding-top: 0.5rem;
  /* padding-bottom: 0.5rem; */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.font1rem {
  font-size: 1rem !important;
}

.btn-navbar {
  color: black;
  background: linear-gradient(to right, #c7993c, #e8c55f, #c7993c);
}

.loading-icon {
  animation: spining-anim2 2s infinite;
}

@keyframes spining-anim2 {
  0% {
    transform: rotate(720deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

#loader {
  width: 120px;
  height: 120px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #e8c55f;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;

  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.tabIndexPage {
  background-color: #e8c55f;
  color: #000000;
  font-size: 14px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
  width: 33% !important;
}

.tabIndexPage.active {
  color: #ffffff;
}

.tabIndexPage > p {
  margin: 0;
}

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

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

.borderRightIndexPage {
  position: relative;
}

.borderRightIndexPage:after {
  /* content: "";
  height: 80%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 8px;
  background-color: #2c97e8; */
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 0px;
  background-color: #000000;
}

.borderRightIndexPage:last-child:after {
  /* content: "";
  height: 80%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 8px;
  background-color: #2c97e8; */
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  right: 0;
  top: 0px;
  background-color: transparent;
}

.divGameNameFav,
.divGameNameFavSport,
.divGameNameFavLotto {
  text-align: center;
  padding-top: 0.5rem;
  /* padding-bottom: 0.5rem; */
  display: flex;
  align-items: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.divGameNameFav > img {
  width: 11% !important;
}

.divGameNameFavSport > img {
  width: 10% !important;
}

.divGameNameFavLotto > img {
  width: 5% !important;
}

@media only screen and (max-width: 480px) {
  .divGameNameFav > img {
    width: 28% !important;
  }

  .divGameNameFavSport > img {
    width: 20% !important;
  }

  .divGameNameFavLotto > img {
    width: 10% !important;
  }
}

/* .divGameNameFav > img.inActive,
.divGameNameFavSport > img.inActive,
.divGameNameFavLotto > img.inActive {
  content: url("../image/inactive_fav.png");
} */
/* 
.divGameNameFav > img.inActive:hover,
.divGameNameFavSport > img.inActive:hover,
.divGameNameFavLotto > img.inActive:hover {
  content: url("../image/active_fav.png");
} */

/* .divGameNameFav > img.active,
.divGameNameFavSport > img.active,
.divGameNameFavLotto > img.active {
  content: url("../image/active_fav.png");
} */

/* .divGameNameFav > img.active:hover,
.divGameNameFavSport > img.active:hover,
.divGameNameFavLotto > img.active:hover {
  content: url("../image/inactive_fav.png");
} */

.divGameNameFav > span,
.divGameNameFavSport > span,
.divGameNameFavLotto > span {
  margin-left: auto;
  margin-right: auto;
}
