@charset "UTF-8";

/*==============================================
Author: Tripleone Technology
Version:    1.0
Created:    08 July 2021
Last updated:    
Template:  Mobile/Web HTML/
================================================*/
/*
[Table of Contents]
★ 00 Commons
★ 01 Header
★ 02 Homepage
★ 03 Crash
★ 04 Double
★ 05 Promotions
★ 06 VIP Club
★ 07 Live Casino / Slots
★ 08 Footer
★ 09 Affiliate
★ 10 Lucky Roulette
★ 11 Annoucement
★ 12 Terms/Policy/FAQ

★ 00 Media Querries


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 00 Commons
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
html,
body {
  width: 100%;
  height: 100%;
  font-size: 14px;
}

::selection {
  color: #fff;
  background-color: #de1176;
}

::-moz-selection {
  color: #fff;
  background-color: #de1176;
}

body {
  background: #050505;
  color: #fff;
}

body,
ul,
ol {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

li {
  list-style: none;
}

a {
  transition: all 0.4s;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  margin: 0;
  padding: 0;
}

.red-bg {
  background: #f23e2f;
  color: #fff;
}

.green-bg {
  background: #009944;
  color: #fff;
}

.light-blue-bg {
  background: #37334b;
  color: #b4b2bf;
}

.orange-bg {
  background: #fe551b;
  color: #fff;
}

.gray-bg {
  background: #5c6573;
  color: #fff;
}

.white-bg {
  background: #fff;
  color: #f4321f;
}

.is-desktop {
  display: none;
}

@font-face {
  font-family: 'aileronbold';
  src: url('../css/font/aileron-bold-webfont.woff2') format('woff2'),
    url('../css/font/aileron-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'aileronregular';
  src: url('../css/font/aileron-regular-webfont.woff2') format('woff2'),
    url('../css/font/aileron-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'aileronblack';
  src: url('../css/font/aileron-black-webfont.woff2') format('woff2'),
    url('../css/font/aileron-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

body.promo__page #page-content {
  padding-bottom: 30px;
}

/* loading pages */
#page-content {
  display: none;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  padding-top: 40vh;
  background: #030409 url('/includes/images/stars_bg.jpg') center no-repeat;
}

.loading-content {
  display: grid;
  justify-items: center;
}

.loading-content img {
  width: 250px;
}

.loading-content .lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 01 Header
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */

/** Desktop Menu **/
header nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  background: #252238;
  z-index: 999;
  width: 250px;
  border-right: 1px #54525c solid;
}

header nav .nav-wrapper a.brand-logo {
  left: 40px;
}

header nav .nav-wrapper a.brand-logo img {
  width: 20px;
}

header nav .nav-wrapper ul.left {
  padding: 90px 0 0 20px;
  width: 100%;
}

header nav .nav-wrapper ul.left li {
  float: unset;
  position: relative;
}

header nav .nav-wrapper ul.left li a.active:before {
  content: '';
  position: absolute;
  right: 0;
  top: 20px;
  height: 24px;
  width: 4px;
  border-radius: 8px;
  background: #f4321f;

}

header .mobile_top__header__wrapper {
  z-index: 9991;
  height: 50px;
  position: fixed;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #050505;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  left: 0;
  right: 0;
  top: 0;
}

header .mobile_top__header__wrapper a.sidenav-trigger {
  position: relative;
  z-index: 20;
}

header nav .nav-wrapper ul.left li.active,
header nav .nav-wrapper ul.left li a:hover {
  background: transparent;
}

header nav .nav-wrapper ul.left li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #615f71;
}

header nav .nav-wrapper ul.left li a.active {
  color: #fff;
}

header .top__header__wrapper {
  padding: 10px 0;
}

header .top__header__wrapper .top__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .top__header__wrapper .top__header .header__search__wrapper {
  position: relative;
}

header .top__header__wrapper .top__header .header__search__wrapper i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #4c465f;
}

header .top__header__wrapper .top__header .header__search__wrapper input {
  background: #2c2640;
  border-bottom: 0;
  padding-left: 45px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
  width: 500px;
  margin-bottom: 0;
}

header .top__header__wrapper .top__header .header__search__wrapper input:focus {
  border: 0 !important;
  box-shadow: none !important;
}

header .top__header__wrapper .top__header .header__search__wrapper input::-webkit-input-placeholder {
  color: #4c465f;
}

header .top__header__wrapper .top__header .header__user__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .top__header__wrapper .top__header .header__user__wrapper img.user__icon {
  height: 50px;
}

header .top__header__wrapper .top__header .header__user__wrapper span.name__wrapper {
  display: block;
  padding-left: 15px;
}

header .top__header__wrapper .top__header .header__user__wrapper span.name__wrapper p {
  font-size: 15px;
  font-weight: 600;
}

header .top__header__wrapper .top__header .header__user__wrapper span.name__wrapper span.name__2 {
  color: #fff;
  font-size: 12px;
}

.sidenav .nav__banner__wrapper {
  padding-top: 90px;
  background: #08001d;
  text-align: center;
  padding-bottom: 20%;
}

.sidenav .nav__banner__wrapper div {
  margin: 0 0 8px 0;
}

.sidenav .nav__banner__wrapper div a {
  display: block;
  line-height: 0;
  padding: 0 25px;
  text-align: left;
}

.sidenav .nav__banner__wrapper div a img {
  border-radius: 15px;
}


/** Mobile Menu **/

header {
  position: relative;
}

header a.brand__logo {
  margin-top: 10px;
}

header a.brand__logo img {
  width: 100px;
}

header a.sidenav-trigger img {
  width: 20px;
}

#mobile-menu {
  background: #171127;
  z-index: 1000;
}

header .sidenav .logged__user {
  padding: 20px 25px 0;
}

header .sidenav .logged__user .user__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

header .sidenav .logged__user .user__info img.user__icon {
  height: 50px;
}

header .sidenav .logged__user .user__info span.name__wrapper {
  display: block;
  padding-left: 15px;
}

header .sidenav .logged__user .user__info span.name__wrapper p.name {
  font-size: 24px;
}

header .sidenav .logged__user .user__info span.name__wrapper span.name__2 {
  color: #696575;
}

header .sidenav .logged__user .user__balance {
  text-align: center;
  padding: 30px 0;
}

header .sidenav .logged__user .user__balance p {
  font-size: 32px;
}

header .sidenav .logged__user .user__balance span {
  color: #696575;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .sidenav .logged__user .user__balance img.refresh__icon {
  width: 15px;
  display: block;
  margin-left: 5px;
  transition: all 0.5s ease-in-out;
}

.rotate360 {
  transform: rotate(360deg);
}


header .sidenav .logged__user .dep__with__btn {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

header .sidenav .logged__user .dep__with__btn a {
  padding: 5px 3px;
  border-radius: 80px;
  width: 115px;
  text-align: center;
  line-height: 2;
}

header .sidenav ul {
  background: #08001d;
  border-radius: 50px 50px 0 0;
  padding: 30px 0 0 0;
  margin-top: 40px;
  position: relative;
}

header .sidenav ul:before {
  content: "";
  background: url(../images/side-xmas1.png) no-repeat 0 0;
  display: block;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 20px;
  width: 233px;
  height: 63px;
  z-index: 0;
}

header .sidenav ul:after {
  content: "";
  background: url(../images/side-xmas2.png) no-repeat 0 0;
  display: block;
  background-size: contain;
  position: absolute;
  bottom: -90px;
  left: 20px;
  width: 245px;
  height: 116px;
  z-index: 0;
}

header .sidenav ul li {
  height: 80px;
  z-index: 20;
}

header .sidenav ul li.line__breaker {
  height: 30px;
}

header .sidenav ul li.line__breaker span {
  width: 85%;
  background: #2c2640;
  height: 1px;
  margin: 0 30px;
  display: block;
}

header .sidenav ul li a {
  padding: 0 25px;
  color: #fff;
  font-weight: 200;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

header .sidenav ul li a i.material-icons {
  color: #605e68;
  position: absolute;
  right: 0;
  top: 0;
}

header .sidenav ul li a i.menu_icon,
header nav .nav-wrapper ul li a i.menu_icon {
  background: url(../images/icon/menu-icons.png?=v0.6) no-repeat;
  height: 37px;
  width: 37px;
  background-size: cover;
  margin-right: 15px;
}

header .sidenav ul li a i.menu_icon.home,
header nav .nav-wrapper ul li a i.menu_icon.home {
  background-position: 0 0;
}

header .sidenav ul li a i.menu_icon.dice,
header nav .nav-wrapper ul li a i.menu_icon.dice {
  background-position: 0 -34px;
}

header .sidenav ul li a i.menu_icon.crash,
header nav .nav-wrapper ul li a i.menu_icon.crash {
  background-position: 0 -377px;
}

header .sidenav ul li a i.menu_icon.double,
header nav .nav-wrapper ul li a i.menu_icon.double {
  background-position: 0 -304px;
}

header .sidenav ul li a i.menu_icon.slots,
header nav .nav-wrapper ul li a i.menu_icon.slots {
  background-position: 0 -99px;
}

header .sidenav ul li a i.menu_icon.livecasino,
header nav .nav-wrapper ul li a i.menu_icon.livecasino {
  background-position: 0 -130px;
}

header .sidenav ul li a i.menu_icon.sport,
header nav .nav-wrapper ul li a i.menu_icon.sport {
  background-position: 0 -163px;
}

header .sidenav ul li a i.menu_icon.promo,
header nav .nav-wrapper ul li a i.menu_icon.promo {
  background-position: 0 -203px;
}

header .sidenav ul li a i.menu_icon.vip,
header nav .nav-wrapper ul li a i.menu_icon.vip {
  background-position: 0 -237px;
}

header .sidenav ul li a i.menu_icon.setting,
header nav .nav-wrapper ul li a i.menu_icon.setting {
  background-position: 0 -273px;
}

header .sidenav ul li a i.menu_icon.rocket,
header nav .nav-wrapper ul li a i.menu_icon.rocket {
  background-position: 0 -338px;
}

header .sidenav ul li a i.menu_icon.affiliate,
header nav .nav-wrapper ul li a i.menu_icon.affiliate {
  background-position: 0 -410px;
}

header .sidenav ul li a i.menu_icon.bistro,
header nav .nav-wrapper ul li a i.menu_icon.bistro {
  background-position: 0 -444px;
  height: 23px;
}


.back__wrapper {
  padding: 20px 0 0 30px;
}

.back__wrapper a {
  display: inline-block;
}

.back__wrapper a img {
  width: 10px;
}

/** Inner Header **/
header .inner__header__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 56px;
}

header .inner__header__wrapper .back__box {
  position: absolute;
  left: -3px;
  top: 17px;
}

header .inner__header__wrapper .back__box i {
  color: #fff;
}

header .inner__header__wrapper .page__name {
  font-size: 18px;
}

/** header login/logged **/
.sidenav ul li.logout__section a {
  background: rgb(54 44 80 / 57%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 35px;
}

.sidenav ul li.logout__section a img {
  width: 25px;
}

#slots__header__search {
  position: relative;
  margin-bottom: 15px;
}

#slots__header__search .material-icons {
  position: absolute;
  top: 12px;
  right: 0;
}

#search_game {
  color: #fff !important;
}

.lds-ellipsis-container {
  display: grid;
  place-content: center;
  min-height: 150px;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #fd8444;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0);
  }
}

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(24px, 0);
  }
}

/** RL Floating Icon **/
.lr__floating__wrapper {
  position: fixed;
  z-index: 999;
  left: 75px;
  top: -2px;
}

.lr__floating__wrapper .spin__wrapper {
  position: relative;
}

.lr__floating__wrapper .spin__wrapper a img.lr-img-snow {
  position: absolute;
  left: 9px;
  top: 3px;
  z-index: 1;
  width: 51px;
}

.lr__floating__wrapper .spin__wrapper a img.lr-img-2 {
  position: absolute;
  left: 2px;
  top: -4px;
  width: 57px;
  z-index: 10;
}

.lr__floating__wrapper .spin__wrapper a img.lr-img-light {
  position: absolute;
  left: 9px;
  top: 7px;
  width: 43px;
}

.lr__floating__wrapper .spin__wrapper a img.lr-img-xmastree {
  position: absolute;
  left: 11px;
  top: 11px;
  width: 53px;
  z-index: 11;
}

.rotate-center {
  -webkit-animation: rotate-center 4s linear infinite both;
  animation: rotate-center 4s linear infinite both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 02 Homepage
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
section.slider__section {
  margin: 10px 0 0 0;
}

section.slider__games__section {
  padding-top: 15px;
}

section.slider__section .swiper-pagination .swiper-pagination-bullet,
section.slider__games__section .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  width: 15px;
  height: 15px;
}

section.slider__section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active,
section.slider__games__section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

section.slider__section .swiper-slide a {
  position: relative;
  display: block
}

section.slider__section .swiper-slide a#redirect-worldcup {
  cursor: pointer;
}

#sports_tab_2 img {
  border-radius: 15px;
  width: 100%;
}

section.slider__section .swiper-slide a .text_banner {
  position: absolute;
  top: 15px;
  color: #fff;
  left: 12px;
}

section.slider__section .swiper-slide a .text_banner .title1 {
  font-size: 13px;
  font-weight: 700;
}

section.slider__section .swiper-slide a .text_banner .title2 {
  font-size: 11px;
  position: relative;
  top: 3px;
  max-width: 235px;
}

section.slider__section .swiper-slide a .text_banner button {
  width: auto;
  padding: 2px 10px;
  font-size: 12px;
  border-radius: 6px;
  border: 0;
  background: #f53220;
  color: #fff;
  position: relative;
  top: 10px;
}


section.slider__section .swiper-slide img,
section.slider__games__section .swiper-slide img,
section.new__games__section .swiper-slide img {
  border-radius: 15px;
}

section.slider__games__section .swiper-slide a {
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase
}

section.slider__games__section .swiper-slide a .text-item {
  position: absolute;
  top: 15px;
  left: 16px;
}

section.slider__games__section .swiper-slide a .text-item .item-title {
  font-size: 20px;
  font-weight: 700;
}

section.slider__games__section .swiper-slide a .text-item .sub-text {
  display: inline-block;
  position: absolute;
  left: 81px;
  top: 6px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 12px;
}

section.slider__games__section .swiper-slide a .text-item .item-t {
  font-size: 17px;
  font-weight: 700;
  position: relative;
  top: 3px;
}

.slider__section .hp__swiper__promo {
  width: 100%;
}

.lh1 {
  line-height: 1
}

.lime-textc {
  color: #97d248
}

.yellow-text {
  color: #fccd1b
}

section.slider__games__section .swiper-slide a .text-item button {
  background: 0 0;
  border-radius: 30px;
  border: 2px solid #73a82e;
  padding: 9px 21px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  top: 18px;
}

section.slider__games__section .swiper-pagination .swiper-pagination-bullet {
  display: none;
}

section.new__games__section,
section.hotgames__section {
  border-radius: 15px;
  margin: 30px 0;
}

section.hotgames__section.lv_casino {
  margin: 0 0 19px;
}

section.new__games__section.sm-banner {
  margin: 12px 0 13px;
}

#providerHomeSelect {
  padding: 40px 0 0px 0;
}

.hotgames__section .hotgames__wrapper .tabs {
  width: 100%;
  max-width: 500px;
  margin: auto;
  overflow: hidden;
  margin-top: 20px;
  background: #3b354c;
  color: #fff;
  border-radius: 6px;
}

.hotgames__section .hotgames__wrapper .tabs li.indicator {
  display: none;
}

.hotgames__section .hotgames__wrapper .tabs li {
  line-height: 35px;
  height: 35px;
}

.hotgames__section .hotgames__wrapper .tabs li a {
  color: #fff;
  border-radius: 50px;
}

.hotgames__section .hotgames__wrapper .tabs li a img {
  position: relative;
  top: 3px;
  left: -5px;
  display: none;
}

.hotgames__section .hotgames__wrapper .tabs li a.active {
  background-color: #5e1cd9;
  color: #fff;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper {
  margin-top: 5px;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .allgames__wrapper {
  grid-gap: 10px;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabs {
  margin: 0 auto;
  margin-bottom: 20px;
  background: transparent;
  box-shadow: none;
  height: auto;
  border-radius: 0;
  max-width: 300px;
  display: none;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabs li {
  height: 30px;
  line-height: 30px;
  margin-left: 8px;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabs li.tab:las {
  border-bottom: 0;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabs li a {
  text-transform: capitalize;
  background: #696575;
  padding: 0;
  border-radius: 4px;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabs li a.active {
  background: #fa493a;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .viewAll {
  font-size: 16px;
  text-align: center;
  display: block;
  text-transform: uppercase;
  color: #FFEB3B;
  outline: 0;
  margin-top: 20px;
  display: none;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .allgames__wrapper figure .img__thumb {
  width: 100%;
}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .allgames__wrapper figure {
  height: 154px;

}

.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .allgames__wrapper figure p.game__name {
  display: none;
}

.game__title {
  /* display: flex; */
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.game__title .main-title.more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game__title .main-title.more a {
  color: #5e1cd9;
  text-decoration: none;
}

.game__title .main-title img {
  display: inline-block;
  width: 23px;
  position: relative;
  top: 2px;
  margin-right: 5px;
}

.game__title h4 {
  font-weight: 500;
  padding: 0 0 0 0;
  margin: 0;
  display: inline;
  font-size: 2rem;
}

.game__title a {
  color: #696575;
  font-weight: 500;
}

.game__title p {
  color: #696575;
  font-weight: 500;
}

.new__games__wrapper.sport {
  height: 480px;
}

section.new__games__section .new__games__wrapper .game__container .game__box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 160px;
}

section.new__games__section .new__games__wrapper .game__container .game__box.spacexbox {
  background: url(../images/banner/thumbnails/spacex.jpg?=v0.4) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.crashbox {
  background: url(../images/banner/thumbnails/smash-icons-crash-300x409.jpg?=v0.4) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.doublebox {
  background: url(../images/banner/thumbnails/smash-icons-double-300x409.jpg?v0.1) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.dicebox {
  background: url(../images/banner/thumbnails/smash-icons-dice-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
} 

section.new__games__section .new__games__wrapper .game__container .game__box.minesbox {
  background: url(../images/banner/thumbnails/smash-icons-mines-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.hilobox {
  background: url(../images/banner/thumbnails/smash-icons-hilo2-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
} 

section.new__games__section .new__games__wrapper .game__container .game__box.comingsoon {
  background: url(../images/banner/thumbnails/Coming-Soon-template.jpg?=v0.5) no-repeat;
  background-size: cover;
  background-position: center;
} 

/** BGaming orignals  **/
section.new__games__section .new__games__wrapper .game__container .game__box.bg-crash {
  background: url(../images/banner/thumbnails/bg-crash.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-plinko {
  background: url(../images/banner/thumbnails/bg-plinko.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-mines {
  background: url(../images/banner/thumbnails/bg-mines.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-dice {
  background: url(../images/banner/thumbnails/bg-dice.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-coins {
  background: url(../images/banner/thumbnails/bg-coins.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-hilo {
  background: url(../images/banner/thumbnails/bg-hilo.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-blackjack {
  background: url(../images/banner/thumbnails/bg-blackjack.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-rocket-dice {
  background: url(../images/banner/thumbnails/bg-rocket-dice.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

section.new__games__section .new__games__wrapper .game__container .game__box.bg-hold-em {
  background: url(../images/banner/thumbnails/bg-hold-em.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

/* pgsoft and pp original tab games */
section.new__games__section .new__games__wrapper .game__container .game__box.pg1 {
  background: url(../images/game/PGsoft/1543462.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pg2 {
  background: url(../images/game/PGsoft/fortune-tiger.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pg3 {
  background: url(../images/game/PGsoft/fortune-ox.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pg4 {
  background: url(../images/game/PGsoft/fortune-mouse.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pg5 {
  background: url(../images/game/PGsoft/dragon-hatch.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pg6 {
  background: url(../images/game/PGsoft/ganesha-gold.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp1 {
  background: url(../images/game/pragmatic-2023/1301.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp2 {
  background: url(../images/game/pragmatic-2023/vs20olympgate.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp3 {
  background: url(../images/game/pragmatic-2023/vs20sugarnudge.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp4 {
  background: url(../images/game/pragmatic-2023/vs10bbbonanza.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp5 {
  background: url(../images/game/pragmatic-2023/vs20fruitsw.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
section.new__games__section .new__games__wrapper .game__container .game__box.pp6 {
  background: url(../images/game/pragmatic-2023/vs12bbb.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
/*  */
section.new__games__section .new__games__wrapper .game__container .hp__swiper__bgaming .game__box {
  height: 110px;
}

section.new__games__section .tab__orig__wrapper {
  margin-bottom: 10px;
}

section.new__games__section .tab__orig__wrapper ul {
  background: transparent;
  display: grid;
  grid-template-columns: auto auto;
  height: auto;
  gap: 10px;
}

section.new__games__section .tab__orig__wrapper ul li {
  height: 40px;
  line-height: 40px;
}

section.new__games__section .tab__orig__wrapper ul li.indicator {
  display: none;
}

section.new__games__section .tab__orig__wrapper ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #222;
  border-radius: 180px;
}

section.new__games__section .tab__orig__wrapper ul li a:focus {
  background: #222;
}

section.new__games__section .tab__orig__wrapper ul li a.active {
  background: #5e1cd9 !important;
  border-radius: 180px;
  color: white;
}

section.new__games__section .tab__orig__wrapper ul li a img {
  width: 85px;
}

section.new__games__section .new__games__wrapper .game__container .game__box img.xmas-gift {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 20px;
  z-index: 1;
  border-radius: 0;
}

section.new__games__section .new__games__wrapper .game__container .game__box .new__icon,
.yellow-tag-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  clip-path: polygon(29% 0, 0 0, 0 29%);
  -webkit-clip-path: polygon(29% 0, 0 0, 0 29%);
  background: #ffc107;
  width: 135px;
  height: 135px;
  border-radius: 15px 0 0 0;
}

section.new__games__section .new__games__wrapper .game__container .game__box .new__icon .new__text,
.new-tag-text {
  display: block;
  transform: rotate(317deg);
  position: absolute;
  top: 5px;
  left: 3px;
  font-size: 10px;
}

section.new__games__section .new__games__wrapper .game__container .game__box .img_thumb img {
  -webkit-transform: rotate(0.02deg);
  transform: rotate(0.02deg);
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  will-change: transform;
  min-height: 148px;
}

section.new__games__section .new__games__wrapper .game__container .game__box .overlay__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  background: rgb(49 52 60 / 73%);
  opacity: 0;
  z-index: 2;
  border-radius: 15px;
}

section.new__games__section .new__games__wrapper .game__container .game__box:hover .overlay__box {
  opacity: 1;
}

section.new__games__section .new__games__wrapper .game__container .game__box .overlay__box a img {
  width: 50px;
}

section.new__games__section .new__games__wrapper .game__container .bgaming__box {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 17px;
}
section.new__games__section .new__games__wrapper .game__container .og_pp_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}
section.new__games__section .new__games__wrapper .game__container .og_pgsoft_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}
section.new__games__section .new__games__wrapper .game__container .bgaming__box .game__box {
  height: 110px;
}

section.new__games__section .new__games__wrapper .game__container .hp__swiper__newgames2 {
  margin: 30px 0;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 40px;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box img {
  width: 138px;
  border-radius: 25px;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 70px;
  border-bottom: 1px #2c2640 solid;
  height: 138px;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename span {
  color: #696575;
  font-size: 18px;
  font-weight: 500;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename a {
  padding: 5px 10px !important;
  border-radius: 10px;
  white-space: nowrap;
  font-size: 10px;
}

.hotgames__wrapper ul {
  overflow: auto !important;
  background: transparent;
}


#new__bet__list {
  min-height: 100%;
  /* padding-left: 15px;
    padding-right: 5px */
  padding: 0 2rem;
}

.new__bet__wrapper table tr {
  display: grid;
  /* grid-template-columns: 47% 38% auto; */
  grid-template-columns: 40% 39% auto;
  max-height: 39px;
  overflow: hidden;
  height: 39px;
  border-bottom: 1px solid #2c2639;
}

.new__bet__wrapper ::-webkit-scrollbar {
  width: 10px;
}

.jackpot__prize__wrapper .daily-title {
  margin-right: 5px;
}

.hp__swiper__game__rank thead {
  position: relative;
  background-color: #050505;
  z-index: 2;
}

.ranking__section .player__ranking__wrapper table {
  border-collapse: separate;
  border-spacing: 0 8px;
}

#player__ranking__table tr td.rank_container {
  width: 50px;
}

#player__ranking__table .bonus-title {
  display: none;
}

#player__ranking__table td {
  padding: 5px;
  white-space: nowrap;
}

.ranking__section .nb__title {
  font-size: 20px;
  font-family: 'aileronregular';
}

.game_rank_heading {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: 40% 39% auto;
  /* grid-gap: 20px; */
  color: #484848;
  font-weight: 500;
  font-family: 'aileronregular';
  /* text-indent: 42px; */
  padding: 0 2rem;
}

section.ranking__section .player__ranking__wrapper table thead tr th:first-child {
  position: relative;
  left: -8px;
}

section.ranking__section .player__ranking__wrapper table thead tr th:last-child {
  position: relative;
  left: 19px;
}

.game_rank_heading>p {
  /* padding: 25px 5px 3px; */
  padding: 25px 0px 3px;
  color: #726d7d;
  font-size: 15px;
}

.game_rank_heading>p:nth-child(1) {
  text-indent: 10px;
}

/* New Prize Pool */
.prizepool__bg__wrapper {
  background: url(../images/prizepool/bg-prizepool-mobile.png?=v0.1) no-repeat 0 0;
  background-size: contain;
  width: 100%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.prizepool__bg__wrapper:before {
  content: '';
  display: block;
  background: url(../images/prizepool/dotted-banner-bg.svg) no-repeat 0 0;
  background-size: contain;
  width: 100%;
  height: 200px;
  position: absolute;
  top: -24px;
}

.prizepool__bg__wrapper .prize__box__wrapper {
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 250px;
}

.prizepool__bg__wrapper .prize__box__wrapper .tempo__date {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
}

.prizepool__bg__wrapper .prize__box__wrapper .tempo__date .current__date {
  margin-left: 5px;
}

.prizepool__bg__wrapper .prize__box__wrapper .prizepool__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.ranking__section .prizepool__wrapper .rs__text {
  background: linear-gradient(90deg, #ffb961 50%, #fbad4b 50%);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 120px;
  font-size: 18px;
  border: 3px #f79419 solid;
  margin-right: 5px;
  margin-top: 5px;
}

.prizepool__bg__wrapper .prize__box__wrapper .prizepool__wrapper .prizepool__amount {
  font-weight: 800;
  font-size: 52px;
  background: linear-gradient(357deg, #ffa602 0%, #ffa602 45%, #ffe7bc 60%, #ffe7bc 75%, #ffa602 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  filter: drop-shadow(1px 4px #c74211);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.prizepool__bg__wrapper .prize__box__wrapper .prizepool__wrapper p {
  color: #ffa602;
  font-size: 28px;
  padding-left: 10px;
  position: relative;
  top: 11px;
}

.tab-data {
  position: relative;
}

.tab-data .tab-roll {
  min-height: 300px;
  overflow: hidden;
  height: 300px;
  position: relative;
  margin-top: 8px;
}


#smashgames.col,
#bgaminggames.col,
#pgsoftgamesog.col,
#ppgamesog.col {
  float: none !important;
  padding: 0;
}

#bgaminggames.col,
#pgsoftgamesog.col,
#ppgamesog.col {
  display: none;
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 03 Crash
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
section.crash__game__section,
section.crash__tabs,
section.tabs__user__info,
section.double__game__section,
section.double__game {
  background: #1c1930;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.game__item__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  padding: 20px 0;
}

.game__item__wrapper .game__item__list {
  overflow: hidden;
  margin-right: 8px;
}

.game__item__wrapper .game__item__list .swiper-slide span {
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 5px;
  font-size: 18px;
}

.game__item__wrapper .time__box a {
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
}

.game__item__wrapper .time__box a i {
  font-size: 18px;
}

.tab__crash__wrapper ul,
.tab__userinfo__wrapper ul {
  background: transparent;
}

.tab__crash__wrapper ul li,
.tab__userinfo__wrapper ul li {
  flex-grow: unset !important;
  text-transform: unset !important;
}

.tab__crash__wrapper ul li.indicator {
  background: #fff !important;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
  height: 4px;
  border-radius: 120px;
  background: #cecdd6 !important;
}

.tab__userinfo__wrapper ul li.indicator {
  background: #fff !important;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
  height: 4px;
  border-radius: 120px;
  background: #f4321f !important;
}

.tab__crash__wrapper ul li a,
.tab__userinfo__wrapper ul li a {
  color: #605e68 !important;
  font-weight: 500 !important;
  font-size: 18px !important;
}

.tab__crash__wrapper ul li a.active {
  color: #cecdd6 !important;
}

.tab__userinfo__wrapper ul li a.active {
  color: #f4321f !important;
}

.tab__crash__wrapper ul li a:focus.active {
  background: transparent !important;
  color: #fff !important;
}

.tab__userinfo__wrapper ul li a:focus.active {
  background: transparent !important;
  color: #f4321f !important;
}

.tab__crash__wrapper .crash__form__wrapper .input-field input {
  background: #272237;
  border: 0;
  border-radius: 5px;
  color: #fff;
  padding-left: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 4rem;
}

.tab__crash__wrapper .crash__form__wrapper .input-field input:focus {
  border-bottom: none;
  box-shadow: none;
}

.tab__crash__wrapper .crash__form__wrapper .input-field label {
  left: 10px;
  top: 8px;
}

.tab__crash__wrapper .crash__form__wrapper .input-field label.active {
  transform: translateY(-2px) scale(0.7);
  color: #68666f !important;
}

.tab__crash__wrapper .crash__form__wrapper .input-field span.money__sign {
  color: #bdbdbd;
  position: absolute;
  right: 10px;
  top: 20px;
}

.tab__crash__wrapper .crash__form__wrapper .crash__maxmin__wrapper,
.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 5px;
}

.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper {
  padding-top: 5px;
}

.tab__crash__wrapper .crash__form__wrapper .crash__maxmin__wrapper a,
.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper a {
  flex-grow: 1;
  color: #fff;
  text-align: center;
  margin: 0 5px;
  display: flex;
  height: 4rem;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-size: 18px;
}

.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper a {
  color: #a7a5b2;
}

.tab__crash__wrapper .crash__form__wrapper .crash__maxmin__wrapper a:first-of-type,
.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper a:first-of-type {
  margin-left: 0;
}

.tab__crash__wrapper .crash__form__wrapper .crash__maxmin__wrapper a:last-of-type,
.tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper a:last-of-type {
  margin-right: 0;
}

.tab__crash__wrapper .crash__form__wrapper a.game__btn {
  display: block;
  text-align: center;
  padding: 15px 0;
  border-radius: 5px;
  font-size: 18px;
}

.tabs__content__wrapper table {
  font-size: 18px;
}

.tabs__content__wrapper table tr {
  border-bottom: 1px #242137 solid !important;
}

.tabs__content__wrapper table thead tr th {
  color: #a7a5b2;
}

.tabs__content__wrapper table tbody tr td {
  color: #939393;
}

.tabs__content__wrapper table tbody tr td.user__name {
  padding-left: 10px;
}

.tabs__content__wrapper table tbody tr td.user__name div {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
}

.tabs__content__wrapper table tbody tr td.user__name img {
  display: block;
  padding-right: 15px;
  float: left;
}

.tabs__content__wrapper table tbody tr:hover {
  background-color: rgb(242 242 242 / 6%);
}

.crash__game__page .crashframe__section #lottery__wrapper iframe {
  min-height: 100%;
  position: absolute;
  overflow: scroll;
  /*height: 993px;*/
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* top: 50px; */
  top: 0px
}

.crash__game__page.hilo__game .crashframe__section #lottery__wrapper iframe {
  height: 1181px !important;
}

.doubleframe__section #lottery__wrapper iframe {
  min-height: 100%;
  position: absolute;
  overflow: scroll;
  /*height: 1095px;*/
  padding-bottom: 25%;
  margin: 0;
  padding: 0;
  width: 100%;
  /* top: 50px; */
  top: 0px
}

.popup__notice__wrapper #modal-notice {
  background: #191919;
  border-radius: 10px;
  padding: 10px 0;
  text-align: center;
  width: 80%;
  top: 35% !important;
}

.popup__notice__wrapper #modal-notice .modal-content p {
  font-size: 18px;
}

.popup__notice__wrapper #modal-notice .modal-content .button__wrapper {
  padding-top: 20px;
}

.popup__notice__wrapper #modal-notice .modal-content .button__wrapper>div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.popup__notice__wrapper #modal-notice .modal-content .button__wrapper .notice__btn {
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.popup__notice__wrapper #modal-notice .modal-content .button__wrapper .notice__btn.dep_btn {
  background: #5e1cd9;
}

.popup__notice__wrapper #modal-notice .modal-content .button__wrapper .notice__btn.ago_btn {
  background: #6e6e6e;
}

body.om-side header.hd-cr {
  display: none !important;
}

body.double__game__page,
body.crash__game__page {
  background: #1c1930;
}


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 04 Double
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
section.double__game__section .game__item__wrapper .game__item__list .swiper-slide span {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 150px;
  padding: 0;
}

section.double__game__section .time__box a {
  width: 60px;
  height: 60px;
  border-radius: 150px;
}

section.double__game__section .time__box a i {
  font-size: 40px;
}

section.double__game {
  padding-top: 5px;
}

section.double__game .times__bet__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

section.double__game .times__bet__wrapper a {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border-radius: 150px;
  margin: 0 40px;
}

section.double__info .tabs__content__wrapper thead tr th.tb__title {
  color: #fff;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 13px;
}

section.double__info .tabs__content__wrapper thead tr th span.cicle__icon {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 120px;
  margin-right: 10px;
}

section.double__info .tabs__content__wrapper thead tr th.tbets {
  color: #f4321f;
}

section.double__info .tabs__content__wrapper thead tr th:last-of-type,
section.double__info .tabs__content__wrapper tbody tr td:last-of-type {
  text-align: right;
}




/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 05 Promotions
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
body.promo__page .sidenav-overlay {
  display: none !important;
}

section.promo__cat {
  padding: 20px 0 20px 0;
  margin-bottom: 10px;
}

section.promo__cat .row {
  margin-bottom: 0;
}

.promo__cat__wrapper .swiper-slide a {
  color: #9997a5;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
}

.promo__cat__wrapper .swiper-slide.selected a {
  color: #fff;
  position: relative;
  background: #f4321f;
  border-radius: 5px;
}

.promo__cat__wrapper .swiper-slide.selected a:before {
  content: '';
  background: #f4321f;
  width: 30px;
  height: 4px;
  border-radius: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 999;
  display: none;
}

.promo__wrapper {
  padding-top: 10px;
}

.promo__wrapper .m4.s6 {
  margin-bottom: 20px;
}

.promo__wrapper .promo__content__wrapper {
  background: #1c1930;
  overflow: hidden;
  border-radius: 10px;
}

.promo__wrapper .promo__content__wrapper .img__thumb img {
  max-width: 100% !important;
}

.promo__wrapper .promo__content__wrapper .promo__title__wrapper {
  padding: 8px;
}

.promo__wrapper .promo__content__wrapper .promo__title__wrapper h4 {
  color: #fff;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
  padding-bottom: 5px;
}

.promo__wrapper .promo__content__wrapper .promo__title__wrapper p {
  color: #707f89;
}

section.promo__contents .sidenav {
  width: 100%;
  z-index: 10;
  background: #171127;
  margin-top: 3px;
  height: 100%;
}

.promo__content__header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 56px;
}

.promo__content__header .back {
  position: absolute;
  left: 0;
  top: 6px;
  cursor: pointer;
  display: none;
}

.promo__content__header .close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
}

.promo__content__header .promo__page__name {
  font-size: 18px;
  display: none;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 300px;
}

.promo__details {
  padding: 15px;
  font-family: arial;
}

.promo__details h4 {
  margin: 0 0 15px;
  font-size: 18px;
  font-weight: 600;
  color: #ff9c00;
}

.promo__details h6 {
  color: #9997a5;
}

.promo__details p {
  /* color: #707f89; */
  color: #fff;
  line-height: 26px
}

.promo__details ul {
  padding: 10px 0px 0 15px;
}

.promo__details ul li {
  color: #707f89;
  line-height: 30px;
  list-style: decimal;
}

.promo__details .tb__dv span {
  display: inline-block;
  padding: 0 30px;
}

.promo__details ul.num_cir {
  counter-reset: section;
  list-style: none;
  padding: 0 0 30px 0;
}

.promo__details ul.num_cir li {
  color: #fff;
  font-size: 17px;
  list-style: none;
  margin-bottom: 15px;
  line-height: 24px;
}

.promo__details ul.num_cir li span {
  color: #ed7d31;
}

.promo__details ul.num_cir li:before {
  content: counter(section);
  counter-increment: section;
  display: inline-block;
  width: 25px;
  height: 25px;
  margin: 0 10px 0 0;
  border: 1px solid #ccc;
  border-radius: 100%;
  text-align: center;
}

.promo__details .gradient-text1 {
  background: linear-gradient(300deg, #902e2e 0%, #902e2e 25%, #fe4444 50%, #fe4444 75%, #902e2e 101%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo__details .gradient-text2 {
  background: #465cca;
  background: radial-gradient(circle farthest-corner at top right, #465cca 18%, #8D5AC1 50%, #D081A6 50%, #F7CB7E 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo__details .social__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  grid-gap: 10px;
  width: 200px;
}

.promo__details .social__wrapper img {
  width: 32px;
}

.promo__details ol.list__2 {
  padding-bottom: 15px;
}

.promo__details ol.list__2 li {
  font-size: 18px;
  line-height: 26px;
  padding-bottom: 20px;
}

.promo__details ol.list__2 li span {
  display: inline-block;
  border: 1px #fff solid;
  width: 20px;
  height: 20px;
  border-radius: 120px;
  margin-right: 5px;
  font-size: 12px;
  text-align: center;
  line-height: 20px;
}

.promo__details ul.super__champ {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 0 0;
}

.promo__details ul.super__champ li {
  list-style: none;
  line-height: 0;
  margin-right: 10px;
}

.promo__details ul.super__champ li a {
  height: auto;
  line-height: 0;
  padding: 0;
}

.promo__details ul.super__champ li a img {
  width: 30px;
}

.promo__details a.promo__btn {
  display: block;
  width: 180px;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin: 20px 0;
}

.promo__details table,
.promo__details table tr th,
.promo__details table tr td {
  border: 1px #2a2143 solid;
}

.promo__details table tr th,
.promo__details table tr td {
  text-align: center;
}

.promo__contents table {
  margin: 15px 0;
}

.promo__contents table tr th {
  background: rgba(0, 0, 0, .5);
}

.promo__contents table tr th,
.promo__contents table tr td {
  border: 1px solid #858489;
  padding: 6px;
  text-align: center;
}

#Avitar-100 .promo__details .table__wrapper {
  margin-left: -28px;
}

.promo__details .game__box {
  padding: 20px;
  background: #000;
  border-radius: 10px;
  text-align: center;
}
.promo__details .game__box img {
  width: 350px;
  border-radius: 10px;
}
.promo__details .game__box p {
  margin: 0;
  font-size: 20px;
  padding: 0;
}



/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 06 VIP Club
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
body.vip {
  background: #050505;
}

body.vip main {
  padding-bottom: 20%;
}

.vip__banner {
  padding-top: 20px;
}

.vip__privileges__wrapper {
  padding: 30px 20px 0;
  border-radius: 10px;
}

.vip__privileges__wrapper .vip__content__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
}

.vip__privileges__wrapper .vip__content__wrapper .vip__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.vip__privileges__wrapper .vip__content__wrapper .vip__title span {
  font-size: 18px;
  font-weight: 600;
  display: block;
  padding-left: 30px;
}

.vip__privileges__wrapper .vip__content__wrapper .vip__stars {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.vip__privileges__wrapper .vip__content__wrapper .vip__stars img {
  margin-left: 10px;
}

.vip__qualify__wrapper {
  background: rgb(25, 25, 25);
  background: linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(5, 5, 5, 0.6) 100%);
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  background-size: cover;
  position: relative;
  top: -42px;
  padding-top: 30px;
}

.vip__qualify__wrapper .vip__qualify__content {
  padding: 10px;
}

.vip__qualify__wrapper .vip__qualify__content h2 {
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  margin-top: 0;
}

.vip__qualify__wrapper .vip__qualify__content h6 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
}

.vip__qualify__wrapper .vip__qualify__content h6.op_txt {
  padding-top: 30px;
}

.vip__qualify__wrapper .vip__qualify__content p {
  color: #484848;
}

.vip__condition__wrapper {
  border-radius: 10px;
  overflow: hidden;
  background: #0f0022;
  padding: 15px !important;
}

.vip__condition__wrapper table thead tr th {
  text-align: center;
  color: #9997a5;
  font-size: 24px;
  font-weight: 600;
}

.vip__condition__wrapper table tbody tr td {
  border: 1px #2c253f solid;
  color: #8C8C8C;
  padding-left: 15px;
}

.vip__condition__wrapper table tbody tr td strong {
  color: #9997a5;
  font-size: 18px;
  font-weight: 600;
}

.vip__priqua__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  grid-gap: 25px;
}

.vip-header-ribbon {
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  background: url(../images/icon/ribbon.png);
  background-repeat: no-repeat;
  background-size: 100%;
  margin: auto;
  width: 84%;
  background-position: center;
  z-index: 2;
}

.vip-header-ribbon p {
  color: #fff !important;
}

td.vip div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 10px;
  position: relative;
  text-indent: 17px;
  white-space: nowrap;
}

td.vip div img {
  width: 100%;
  position: absolute;
  left: -1px;
}

/* td.vip.vip-lvl1 div {
  border: 2px solid #ffa600;
  color: #ffa600;
}
td.vip.vip-lvl2 div {
  border: 2px solid #ff6400;
  color: #ff6400;
}
td.vip.vip-lvl3 div {
  border: 2px solid #5e1cd9;
  color: #5e1cd9;
} */


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 07 Live Casino / Slots
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
section.search {
  background: #171127;
}

body.livecasino__page .games__section .games__wrapper .img__thumb {
  width: 100% !important;
}

.search__wrapper .input-field {
  margin-top: 0;
}

.search__wrapper .input-field input {
  background: #2c2640;
  border-bottom: 0;
  padding-left: 45px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 5px;
  color: #fff;
}

.search__wrapper .input-field input::-webkit-input-placeholder {
  color: #4c465f;
}

.search__wrapper .input-field input:focus {
  box-shadow: none !important;
  border-bottom: 0 !important;
}

.search__wrapper .input-field i {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #4c465f;
}

section.games__section {
  margin-top: 20px;
}

.allgames__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  grid-gap: 30px;
  margin-bottom: 4px;
}

.allgames__wrapper .games__wrapper {
  flex-shrink: 0;
  padding-bottom: 30px;
}

.game-grid-search .games__wrapper figure,
.allgames__wrapper .games__wrapper figure {
  text-align: center;
}

.game-grid-search .games__wrapper figure+p,
.allgames__wrapper .games__wrapper figure+p {
  text-align: center;
}

.game-grid-search .games__wrapper figure .img__thumb img,
.allgames__wrapper .games__wrapper figure .img__thumb img {
  border-radius: 20px;
}

.game-grid-search .games__wrapper figure p.game__name,
.allgames__wrapper .games__wrapper figure p.game__name {
  font-size: 18px;
  color: #fff;
}

.allgames__wrapper .games__wrapper.view-more figure {
  background: #963cef;
  background: -moz-linear-gradient(left, #963cef 0%, #5d1cda 100%);
  background: -webkit-linear-gradient(left, #963cef 0%, #5d1cda 100%);
  background: linear-gradient(to right, #963cef 0%, #5d1cda 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#963cef', endColorstr='#5d1cda', GradientType=1);
}

.allgames__wrapper .games__wrapper.view-more figure a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../images/icon/circle-bg.png) no-repeat top center;
  background-size: cover;
  height: 125px;
}

.allgames__wrapper .games__wrapper.view-more figure a p {
  color: #fff;
  font-size: 16px;
}

.game-grid-search .games__wrapper figure .hover__btn__wrapper,
.allgames__wrapper .games__wrapper figure .hover__btn__wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0 / 58%);
}

.game-grid-search .games__wrapper figure .hover__btn__wrapper>div a,
.allgames__wrapper .games__wrapper figure .hover__btn__wrapper>div a {
  display: block;
  background: #5e1cd9;
  color: #fff;
  padding: 2px 15px;
  border-radius: 120px;
}

.allgames__wrapper .games__wrapper figure .hover__btn__wrapper>div a.play__btn {
  margin-bottom: 10px;
}

.allgames__wrapper .games__wrapper figure .hover__btn__wrapper>div a.trial__btn {
  background: #ffeb52;
  color: #000;
}

.allgames__wrapper .games__wrapper figure:hover .hover__btn__wrapper {
  opacity: 1;
  visibility: visible;
}

body.slots__page main.hp_page .games__section .allgames__wrapper .live_dealer,
body.slots__page main.hp_page .games__section .allgames__wrapper .table_games {
  display: none !important;
}

body.slots__page main {
  padding-bottom: 15%;
}

.gamepro__wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.gamepro__wrapper button {
  background: #171127;
  border: 0;
  color: #696575;
  padding: 10px 0 10px 15px;
  border-radius: 150px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.gamepro__wrapper button img {
  display: block;
  padding-right: 10px;
}

.gamepro__wrapper button img.dd__icon {
  position: absolute;
  right: 7px;
}

.gamepro__wrapper button span {
  color: #696575;
}

.gamepro__wrapper ul {
  display: none;
  position: absolute;
  right: 0;
  top: 46px;
  width: 100%;
  /* background: rgb(34 26 56); */
  background-color: #fff;
  z-index: 999;
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.4s;
}

.gamepro__wrapper ul li {
  line-height: 30px;
}

.gamepro__wrapper ul li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #696575;
}

.gamepro__wrapper ul li a img {
  display: none;
  padding-right: 10px;
}

.gamepro__wrapper ul#dropdown__provider li a:before {
  content: '';
  width: 22px;
  height: 22px;
  border: 2px solid #111;
  margin-right: 10px;
  border-radius: 3px;
  position: relative;
  box-shadow: 0 0 2px 2px rgb(0 0 0 / 10%);
  text-align: center;
  line-height: 1.3;
}

.gamepro__wrapper ul#dropdown__provider li a.active:before {
  content: '✔';
  background: #945ffc;
  color: #fff;
}


.gamecategory__wrapper {
  padding: 20px 0 5px 0;
}

.gamecategory__wrapper .swiper-slide a {
  color: #696575;
}

.gamecategory__wrapper .swiper-slide.selected a {
  color: #f23e2f;
  border-bottom: 1px rgb(255 0 0 / 41%) solid;
}

main.live__casino .games__section .allgames__wrapper__livecasino,
main.live__casino .games__section .allgames__wrapper__virtualsports {
  display: grid;
  grid-template-columns: repeat(1, 1fr) !important;
  grid-gap: 15px;
}


main.live__casino .allgames__wrapper__livecasino .games__wrapper figure img,
main.live__casino .allgames__wrapper__virtualsports .games__wrapper figure img {
  border-radius: 25px;
}

main.live__casino .games__section h3 {
  font-size: 28px;
  margin: 70px 0 20px 0;
  text-align: center;
}



/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 08 Footer
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
footer {
  background: #191919;
  position: fixed;
  width: 100%;
  bottom: 0;
  z-index: 9992;
  padding-bottom: 5px;
}

footer .footer__wrapper {
  padding: 10px 0 5px 0;
}

footer .footer__wrapper ul {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
  padding-bottom: 15px;
}

footer .footer__wrapper ul li {
  flex-grow: 1;
  text-align: center;

}

footer .footer__wrapper ul li a {
  color: #fff;
  opacity: 0.5;
}

footer .footer__wrapper ul li:nth-last-child(3) a {
  opacity: 1;
}

footer .footer__wrapper ul li a span {
  opacity: 0.5 !important;
}

footer .footer__wrapper ul li a.active span {
  opacity: 1 !important;
}

footer .footer__wrapper ul li a.active {
  opacity: 1;
}

footer .footer__wrapper ul li a img {
  width: 25px;
  display: block;
  margin: auto;
}

footer .footer__wrapper ul li a span {
  display: block;
  font-size: 12px;
}

/** Site Footer **/
.footer__sp__wrapper {
  position: relative;
  background: #191919;
  padding-bottom: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.footer__sp__wrapper .col.s12 {
  padding: 0;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible {
  border: 0;
  margin: 0;
  box-shadow: none;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-header {
  background: transparent;
  border: 0;
  padding: 20px;
  position: relative;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-header h5 {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-header img {
  position: absolute;
  right: 25px;
  top: 30px;
  width: 10px;
  filter: brightness(5);
  transition: all .5s;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li.active div.collapsible-header img {
  transform: rotate(180deg);
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-body {
  border: 0;
  padding: 0;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-body ul li {
  line-height: 25px;
  padding: 15px 20px;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-body ul li a {
  color: #484848;
  font-size: 16px;
}

.footer__sp__wrapper .helpful__links__wrapper .fot2__links ul.collapsible li div.collapsible-body ul li a:hover {
  color: #5e1cd9;
}

.footer__sp__wrapper .license__wrapper {
  padding: 0 20px 20px 20px;
}

.footer__sp__wrapper .license__wrapper .flying_santa {
  width: 140px;
  position: absolute;
  right: 0;
}

.footer__sp__wrapper .license__wrapper:before {
  content: '';
  width: 100%;
  height: 2px;
  background: #242424;
  margin-bottom: 20px;
  display: block;
}

.footer__sp__wrapper .license__wrapper .logo-bot-wrapper {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  position: relative;
}

.footer__sp__wrapper .license__wrapper .logo-bot-wrapper img.footer__logo {
  width: 100px;
  margin-right: 20px;
}

.footer__sp__wrapper .license__wrapper .logo-bot-wrapper img.logbot-1 {
  opacity: .4;
  margin-right: 25px;
  width: 30px;
}

.footer__sp__wrapper .license__wrapper .logo-bot-wrapper img.logbot-2 {
  width: 100px;
}

.footer__sp__wrapper .license__wrapper .license__content {
  padding-top: 15px;
}

.footer__sp__wrapper .license__wrapper .license__content p {
  color: #615f71;
}

.footer__sp__wrapper .allright__wrapper {
  padding: 0 20px 20px 20px;
}

.footer__sp__wrapper .allright__wrapper .allright__contents p {
  color: #615f71;
  text-align: left;
}

.footer__sp__wrapper .allright__wrapper .allright__contents p.center-align {
  border-top: 2px solid #242424;
  padding-top: 20px;
}

.footer__sp__wrapper .allright__wrapper .allright__contents p:first-of-type {
  padding-bottom: 20px;
}

.footer__gp__wrapper .swiper-slide {
  display: grid;
  height: 45px;
  align-items: end;
}

.footer__gp__wrapper {
  margin-top: -10px;
}


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 09 Affiliate
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
body.aff__rec__page {
  background: #0a0813;
}

.aff__page__wrapper .aff__content {
  text-align: center;
  padding: 0 20px;
}

.aff__page__wrapper .aff__content h3 {
  font-size: 18px;
  margin: 10px 0;
  line-height: normal;
}

.aff__page__wrapper .aff__content p {
  color: #9390a5;
}

.aff__page__wrapper .aff__content .aff__content__inner1 {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px 0 10px 0;
}

.aff__page__wrapper .aff__content .aff__content__inner1 ul {
  text-align: left;
  padding-left: 15px;
}

.aff__page__wrapper .aff__content .aff__content__inner1 ul li {
  padding-left: 15px;
  line-height: 20px;
  padding-bottom: 5px;
  position: relative;
  color: #8c8c8c;
}

.aff__page__wrapper .aff__content .aff__content__inner1 ul li:before {
  content: '';
  background: #945ffc;
  width: 10px;
  height: 10px;
  border-radius: 150px;
  border: 2px #281d3c solid;
  display: block;
  position: absolute;
  left: 0;
  top: 6px;
}

.aff__page__wrapper .aff__content p.big_p {
  color: #FFDE3B;
  font-size: 16px;
  text-align: right;
  padding: 10px 0;
}

.aff__page__wrapper .aff__content .application__process {
  padding: 10px 0;
}

.aff__page__wrapper .aff__content .application__process .app__icon__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.aff__page__wrapper .aff__content .application__process .app__icon__wrapper .icon__wrapper:first-of-type {
  margin: 0 15px 0 0px;
}

.aff__page__wrapper .aff__content .application__process .app__icon__wrapper img {
  width: 90px;
}

.aff__page__wrapper .aff__content .application__process .app__icon__wrapper p {
  color: #fff;
}

.aff__page__wrapper .aff__content .application__process .app__icon__wrapper img.app__arrow {
  width: 20px;
  position: relative;
  top: -13px;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper {
  background-size: contain;
  text-align: left;
  padding-bottom: 15%;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper h4 {
  margin: 30px 0 20px 0;
  text-align: center;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper .blue__text {
  color: #8c8c8c;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper table {
  border-radius: 5px;
  padding: 0;
  display: block;
  margin-bottom: 15px;
  border: 1px solid #29263c;
  margin-top: 20px;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper table thead tr th,
.aff__page__wrapper .aff__content .parner__rules__wrapper table tr td {
  padding-left: 10px;
  color: #8c8c8c;
  border-right: 1px solid #29263c;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper table thead tr,
.aff__page__wrapper .aff__content .parner__rules__wrapper table tbody tr {
  border-bottom: 1px solid #29263c;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper table tbody tr:last-of-type {
  border-bottom: 0;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper ul {
  padding-left: 15px;
  padding-bottom: 15px;
}

.aff__page__wrapper .aff__content .parner__rules__wrapper ul li {
  list-style: decimal;
  color: #8c8c8c;
}

.partner-intro {
  background: rgb(25, 25, 25);
  background: linear-gradient(180deg, rgba(25, 25, 25, 1) 0%, rgba(5, 5, 5, 0.6) 100%);
  border-radius: 20px;
  padding: 10px;
  margin-top: 20px;
}

.partner-intro .sub-intro {
  color: #fff !important;
  text-align: left;
  margin-top: 20px;
}

.partner-intro .aff-hand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.partner-intro .aff-hand img {
  width: 120px;
}

.partner-intro .aff-hand p {
  color: #C3C3C3;
  text-align: left;
  margin-left: 15px;
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 10 Lucky Roulette
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
.lr__bonus__popup .modal-content {
  height: 236px;
}

.lr__bonus__popup .modal-content p>span:first-of-type {
  font-weight: 800;
  font-size: 22px;
  position: relative;
  top: -16px;
}

.lr__bonus__popup .modal-content p>span.earnedAmount {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lr__bonus__popup .modal-content p>span.earnedAmount>span {
  font-size: 3.8rem;
  padding-left: 10px;
}

#alertModal .modal-content {
  background-color: #1c172e;
  margin: 15% auto;
  padding: 20px;
  width: 367px;
  color: #fff;
  border-radius: 20px;
  display: grid;
  place-content: center;
  border: none !important;
  margin-top: 40%;
}

#alertModal .modal-content>p {
  margin-bottom: 20px;
  font-size: 17px;
  text-align: center;
  font-weight: 600;
}

#alertModal .modal-content a.close_btn {
  background: #DA1F1C;
  color: #fff;
  border-radius: 120px;
  border: none;
  margin: 0 auto;
  padding: 5px 10px;
  min-width: 100px;
  text-align: center;

}

#alertModal .modal-content a.close_btn:hover {
  color: #fff;
}

main.hp_page.rl__page {
  padding-top: 30px;
}

.green__bg {
  background: #236923;
  background: -moz-linear-gradient(left, #236923 0%, #459945 54%, #167716 100%);
  background: -webkit-linear-gradient(left, #236923 0%, #459945 54%, #167716 100%);
  background: linear-gradient(to right, #236923 0%, #459945 54%, #167716 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#236923', endColorstr='#167716', GradientType=1);
}

.blue__bg {
  background: #00164f;
  background: -moz-linear-gradient(left, #00164f 0%, #052473 54%, #001241 100%);
  background: -webkit-linear-gradient(left, #00164f 0%, #052473 54%, #001241 100%);
  background: linear-gradient(to right, #00164f 0%, #052473 54%, #001241 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00164f', endColorstr='#001241', GradientType=1);
}

section.rl__bg {
  padding: 0;
  border-radius: 20px 20px 0 0;
  margin-top: 20px;
}

section.rl__bg.green__gradient__bg {
  background: #459945;
  background: -moz-linear-gradient(top, #459945 0%, #08001d 50%, #08001d 100%);
  background: -webkit-linear-gradient(top, #459945 0%, #08001d 50%, #08001d 100%);
  background: linear-gradient(to bottom, #459945 0%, #08001d 50%, #08001d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#459945', endColorstr='#08001d', GradientType=0);
}

section.rl__bg.blue__gradient__bg {
  background: #052473;
  background: -moz-linear-gradient(top, #052473 0%, #08001d 43%, #08001d 100%);
  background: -webkit-linear-gradient(top, #052473 0%, #08001d 43%, #08001d 100%);
  background: linear-gradient(to bottom, #052473 0%, #08001d 43%, #08001d 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#052473', endColorstr='#08001d', GradientType=0);
}

.luckyr__wrapper {
  background: url(../images/roulette/coins-bg.png?=v0.4) no-repeat;
  background-position: 0px 540px;
  background-size: contain;
}

.luckyr__wrapper h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.56rem;
}

.luckyr__wrapper .row .col.s12 {
  padding-left: 0;
  padding-right: 0;
}

.luckyr__wrapper .top-banner-bg-img {
  width: 100%;
}

.luckyr__wrapper ul.tabs {
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}

.luckyr__wrapper ul.tabs li {
  width: 35%;
  margin: 0 5px;
}

.luckyr__wrapper ul.tabs li.indicator {
  display: none;
}

.luckyr__wrapper ul.tabs li a {
  color: #fff !important;
  border-radius: 120px;
}

.luckyr__wrapper ul.tabs li a.active.green__bg {
  border: 2px #fadf4b solid;
}

.luckyr__wrapper ul.tabs li a.active.blue__bg {
  border: 2px #0b50ff solid;
}

.luckyr__wrapper .top-banner {
  position: relative;
  top: -10px;
}

.rl__bg.green__gradient__bg .luckyr__wrapper .roulette__content table.today__table {
  width: 100%;
  margin: 0 auto;
  border: 1px #3f8e3f solid;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content table.today__table {
  width: 100%;
  margin: 0 auto;
  border: 1px #0b50ff solid;
}

.rl__bg.green__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td {
  border: 1px #3f8e3f solid;
  text-align: center;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td {
  border: 1px #0b50ff solid;
  text-align: center;
}

.luckyr__wrapper .roulette__content table.today__table tr td.title-t {
  font-weight: 700;
  text-align: center;
}

.luckyr__wrapper .roulette__content table.today__table tr td.bet__ref {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0 !important;
}

.luckyr__wrapper .roulette__content table.today__table tr td img.refresh-icon {
  padding: 0 0 0 20px;
  cursor: pointer;
}

.rl__bg.green__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td span.bet__amount,
.rl__bg.green__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td span.spin__time {
  color: #58d758;
  font-size: 22px;
  font-weight: 800;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td span.bet__amount,
.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content table.today__table tr td span.spin__time {
  color: #0b50ff;
  font-size: 22px;
  font-weight: 800;
}

.luckyr__wrapper .roulette__content .right__content__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
}

.luckyr__wrapper .roulette__content .right__content__wrapper .earn__text {
  font-size: 18px;
  padding-right: 5px;
}

.luckyr__wrapper .roulette__content .right__content__wrapper .betnow__text a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 80px;
  padding: 5px 25px;
  font-weight: 600;
  font-size: 18px;
  font-style: italic;
}

.luckyr__wrapper .roulette__content .right__content__wrapper .betnow__text a.green__glow {
  text-shadow: 1px 0px 20px #6cf06c;
  background: linear-gradient(to right, rgb(35, 105, 35) 0%, rgb(69, 153, 69) 54%, rgb(22, 119, 22) 100%);
  box-shadow: 1px 0px 14px 1px rgb(255 241 188 / 20%);
}

.luckyr__wrapper .roulette__content .right__content__wrapper .betnow__text a.blue__glow {
  text-shadow: 1px 0px 20px #3263df;
  background: linear-gradient(181deg, #00164f 0%, #00164f 25%, #194dd1 50%, #194dd1 75%, #00164f 100%);
  box-shadow: 1px 0px 14px 9px rgb(64 173 239 / 36%);
  font-size: 16px;
}

.luckyr__wrapper .roulette__content p.today__text {
  font-size: 18px;
  display: block;
  padding: 0 0 20px 0;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper {
  text-align: center;
  position: relative;
  padding: 35px 0 0 0;
  /* overflow-x: hidden; */
}

/* .luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img {position: relative;}
.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img img.lr_spin {
  width: 100%;
} */

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img div.lr_spin {
  width: 100%;
  padding-top: 100%;
  background: url(../images/roulette/spin-roulette-normal.png?=v0.3) no-repeat 0 0;
  background-size: 100%;
}

#super_roulette_backgroundimg {
  width: 100%;
  padding-top: 100%;
  background: url(../images/roulette/spin-roulette-super.png?=v0.3) no-repeat 0 0;
  background-size: 100%;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn.with__spin {
  background: url(../images/roulette/w-spin-icon.png) no-repeat 0 0;
  background-size: contain;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn.without__spin {
  background: url(../images/roulette/no-spin-icon.png) no-repeat 0 0;
  background-size: contain;
  cursor: auto !important;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn {
  position: absolute;
  width: 80px;
  height: 100px;
  background-size: contain;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotateZ(180deg);
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn span.spin__count {
  font-size: 18px;
  font-weight: 600;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn>div {
  line-height: 14px;
  position: relative;
  top: -4px;
}

.luckyr__wrapper .roulette__content .lucky__roulette__wrapper .lr__img .spin__btn p {
  font-size: 11px;
}

.luckyr__wrapper .roulette__content .rules__wrapper,
.luckyr__wrapper .roulette__content .record__wrapper {
  background: #1b3f21;
  border-radius: 20px;
  padding: 20px;
  margin: 30px 0 20px 0;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content .rules__wrapper,
.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content .record__wrapper {
  background: #000f34;
  border-radius: 20px;
  padding: 20px;
  margin: 30px 0 20px 0;
}

.luckyr__wrapper .roulette__content .rules__wrapper h4,
.luckyr__wrapper .roulette__content .record__wrapper h4 {
  margin: 0;
  padding: 0px 0 10px 0;
  font-size: 20px;
}

.luckyr__wrapper .roulette__content .rules__wrapper ul {
  padding-left: 15px;
}

.luckyr__wrapper .roulette__content .rules__wrapper ul li {
  list-style: decimal;
  line-height: 32px;
}

.luckyr__wrapper .roulette__content .record__wrapper table {
  border: 1px #3f8e3f solid;
}

.luckyr__wrapper .roulette__content .record__wrapper table thead tr th,
.luckyr__wrapper .roulette__content .record__wrapper table tbody tr td {
  border: 1px #3f8e3f solid;
  text-align: center;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content .record__wrapper table thead tr th,
.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content .record__wrapper table tbody tr td {
  border: 1px #0b50ff solid;
  text-align: center;
}

.luckyr__wrapper .roulette__content .record__wrapper table thead tr th {
  color: #58d758;
  font-weight: 700;
}

.rl__bg.blue__gradient__bg .luckyr__wrapper .roulette__content .record__wrapper table thead tr th {
  color: #4c7dff;
  font-weight: 700;
}




/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 11 Annoucement
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
.ann_section {
  padding-top: 5px;
  margin-left: -19px;
  margin-right: -19px;
}

.ann_section .announcement__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #170a2f;
  padding: 5px;
  overflow: hidden;
  height: 40px;
}

.ann_section .announcement__wrapper .ann__icon__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 0 2px;
  margin-right: 5px;
}

.ann_section .announcement__wrapper .ann__icon__wrapper img {
  width: 25px;
}

.ann_section .announcement__wrapper ._public_news {
  border: none;
  width: 100%;
  height: 30px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 98;
  overflow: hidden;
  line-height: 30px;
  font-size: 13px;
}

.ann_section .announcement__wrapper ._public_news .js-marquee {
  cursor: pointer;
}

.ann_section .announcement__wrapper ._public_news .js-marquee span.entry {
  padding-left: 15px;
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 12 Terms/Policy/FAQ
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
.tpf__wrapper {
  padding: 15px;
  background: #1b182b;
  border-radius: 10px;
  margin-bottom: 30px;
  margin-top: 30px;
  padding-bottom: 10%;
}

.tpf__wrapper .tpf__content .title__content {
  padding-bottom: 20px;
}

.tpf__wrapper .tpf__content .title__content .top_t {
  padding-bottom: 20px;
}

.tpf__wrapper .tpf__content .title__content h4 {
  font-size: 22px;
  color: #0075dd;
  margin-bottom: 0;
  font-weight: 600;
}

.tpf__wrapper .tpf__content .sub__title {
  border-bottom: 1px #3d4d65 solid;
}

.tpf__wrapper .tpf__content .title__content h4.green-text {
  color: #5bbf5a;
  font-size: 22px;
}

.tpf__wrapper .tpf__content ul.sport-bullet li {
  list-style: disc;
  padding-bottom: 20px;
}

.tpf__wrapper .tpf__content ul.sport-bullet li strong {
  font-weight: 800;
}

.tpf__wrapper .tpf__content ul.collapsible {
  border: 0;
}

.tpf__wrapper .tpf__content ul.collapsible li {
  list-style: none;
  line-height: none;
  background: rgb(0 0 0 / 25%);
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border-bottom: 1px rgb(247 247 247 / 17%) solid;
  color: #5bbf5a;
  font-size: 18px;
  font-weight: 600;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body {
  background: #0c0b0e;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body h4 {
  color: #3d4d65;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body ul.arrow__list li {
  list-style-image: URL('../images/icon/arrow-list.png');
  list-style-position: inside;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body h3 {
  color: #70b4d4;
  font-size: 27px;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body ul.inner__col__list li {
  list-style: disc;
}

.tpf__wrapper .tpf__content ul.collapsible li .collapsible-body p {
  padding-bottom: 15px;
}

.tpf__wrapper .tpf__content .title__content h4 {
  font-size: 28px;
  color: #0075dd;
  margin-bottom: 0;
  font-weight: 600;
}

.tpf__wrapper .tpf__content .title__content p {
  font-size: 18px;
  padding-bottom: 15px;
}

.tpf__wrapper .tpf__content .title__content p.t20b20 {
  padding-top: 20px;
  padding-bottom: 0;
}

.tpf__wrapper .tpf__content p span.bw {
  word-break: break-all;
}

.tpf__wrapper .tpf__content span.site__url {
  color: #f23e2f;
}

.tpf__wrapper .tpf__content ul.dot__list li {
  list-style: inside;
}

.tpf__wrapper .tpf__content ul {
  padding-left: 15px;
  padding-bottom: 30px;
}

.tpf__wrapper .tpf__content ul li {
  list-style: decimal;
  line-height: 30px;
}

.tpf__wrapper .tpf__content ul li div.inner__a__content span {
  display: block;
}

.tpf__wrapper .tpf__content .nl__list .nl__content__wrapper {
  padding-bottom: 20px;
}

.tpf__wrapper .tpf__content .nl__list .nl__content__wrapper>span {
  font-weight: 600;
}

.tpf__wrapper .tpf__content .nl__list .nl__content__wrapper .nl__content {
  padding-left: 15px;
}

.tpf__wrapper .tpf__content .center__title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tpf__wrapper .tpf__content .center__title h3 {
  font-size: 32px;
}

.tpf__wrapper .tpf__content .faq__wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 10px 0 110px 0;
}

.tpf__wrapper .tpf__content .faq__btn__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 8px;
  margin-bottom: 4px;
}

.tpf__wrapper .tpf__content .faq__btn__wrapper a {
  text-align: center;
  border: 1px #615f71 solid;
  border-radius: 5px;
  padding: 12px 0;
  color: #fff;
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tpf__wrapper .tpf__content .faq__btn__wrapper a:hover,
.tpf__wrapper .tpf__content .bot__link a:hover {
  transition: all 0.5s;
  background: #615f71;
  text-decoration: none;
}

.tpf__wrapper .tpf__content .bot__link a {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px #615f71 solid;
  border-radius: 5px;
  padding: 12px 0;
  color: #fff;
  transition: all 0.5s;
}

.pt-70 {
  padding-top: 70px;
}

.faq__modal {
  border-radius: 20px;
  background: #1b182b;
  top: 15% !important;
}

.faq__modal .modal-close {
  position: absolute;
  right: 9px;
  top: 18px;
  background: #747378;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 150px;
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  text-align: center;
}

.faq__modal__wrapper .faq__qa__wrapper {
  padding-bottom: 20px;
}

.faq__modal__wrapper .faq__qa__wrapper .faq__q {
  color: #f23e2f;
  font-weight: 600;
  padding-bottom: 5px;
}

.site__info__wrapper {
  padding: 50px 15px 15px 15px;
}

.site__info__wrapper h3 {
  font-size: 28px;
}

.site__info__wrapper .site__content__wrapper ul {
  padding: 0 0 0 15px;
}

.site__info__wrapper .site__content__wrapper ul li {
  list-style: decimal;
  margin-bottom: 15px;
}

.site__info__wrapper .site__content__wrapper ul li strong {
  color: #f23e2f;
  font-size: 22px;
}

.site__info__wrapper .site__content__wrapper ul li p {
  padding: 5px 0;
  white-space: pre-line;
}

.site__info__wrapper .site__content__wrapper ul li p span.sub__head {
  color: #8a83b2;
  font-weight: 500;
}

.site__info__wrapper .site__content__wrapper ul li p .hg__text {
  color: #9d95b9;
}

.site__info__wrapper .site__content__wrapper ul li p .c__link {
  color: #f23e2f !important;
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 13 USDT
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */

.udst-content-container {
  margin-top: 15px;
  font-size: 16px;
}

.udst-content-container h4 {
  text-align: center;
}

.udst-content-container .orange_text {
  color: #c59675;
}

.udst-content-container.yellow_text {
  color: #c8ae60;
}

.usdt-banner {
  width: 100%;
  margin-top: 50px;
}

.usdt__container {
  padding: 0 20px;
}

.usdt__container p {
  font-size: 16px;
}



.tabContainer.dw-wrapper {
  margin-top: 30px;
  background: transparent;
  padding: 10px;
}

.dw-wrapper .dw-wrapper-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  grid-gap: 15px;
}

.dw-wrapper .dw-wrapper-games .dw-games-box {}

.dw-wrapper .dw-wrapper-games .dw-games-box figure {
  overflow: hidden;
  border-radius: 15px;
  height: 141px;
  position: relative;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure::before {
  content: '';
  background: #000;
  clip-path: polygon(49% 0, 0 45%, 0 0);
  width: 120px;
  height: 120px;
  position: absolute;
  left: -1px;
  top: -2px;
  z-index: 0;
  display: block;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure img {
  width: 100%;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure img.drop__icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure figcaption {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(0 0 0/29%);
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure:hover figcaption {
  opacity: 1;
  visibility: visible;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure figcaption .dw-overlay {
  text-align: center;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure:hover>img {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure figcaption .dw-overlay p.game-name {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure figcaption .dw-overlay img {
  width: 30px;
  padding: 10px 0;
}

.dw-wrapper .dw-wrapper-games .dw-games-box figure figcaption .dw-overlay p.gp__name {
  color: #fff;
  font-size: 12px;
}

.dw__info__wrapper {
  padding: 20px 0 0 0;
}

.dw__info__wrapper p {
  font-size: 18px;
  font-weight: 600;
}

.dw__info__wrapper ul {
  padding: 20px 0 0 15px;
}

.dw__info__wrapper ul li {
  list-style: decimal;
  line-height: 25px;
}



/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ Live Chat
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
div#chat-widget-container {
  opacity: 0 !important;
  visibility: hidden !important;
}

div#chat-widget-container.show {
  opacity: 1 !important;
  visibility: visible !important;
}




/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 00 Media Querries
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
@media only screen and (max-width: 1201px) {

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 115px;
  } */
  section.new__games__section .new__games__wrapper .game__container .game__box .overlay__box a img {
    width: 40px;
  }
}

@media only screen and (max-width: 1025px) {
  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 100px;  
    border-radius: 15px;
  } */
}

@media only screen and (max-width: 769px) {

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 90px;
  } */
  header .top__header__wrapper,
  header nav {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    position: relative;
  }

  main.hp_page {
    padding-top: 3px;
  }

  main.hp_page #sports-game-iframe {
    top: 0 !important;
  }

  .nav-wrapper a.brand-logo {
    display: none;
  }

  .chat-trigger {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
  }

  .chat-trigger img {
    width: 27px;
  }

  .chat-trigger span.message__count {
    position: absolute;
    top: -10px;
    right: -7px;
    background: #f23e2f;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    border-radius: 120px;
  }

  section.slider__section .swiper-pagination .swiper-pagination-bullet,
  section.slider__games__section .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }

  section.slider__section .swiper-slide {
    width: 100% !important;
  }

  section.slider__games__section .swiper-pagination .swiper-pagination-bullet {
    display: unset;
  }

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 160px;
  } */
  .game__item__wrapper .game__item__list .swiper-slide span {
    font-size: 11px;
  }

  .game__item__wrapper .game__item__list .swiper-slide span {
    padding: 4px;
    border-radius: 3px;
    font-size: 12px;
  }

  .tab__crash__wrapper ul li a,
  .tab__userinfo__wrapper ul li a {
    font-size: 14px !important;
  }

  .tab__crash__wrapper .crash__form__wrapper .input-field input {
    height: 3rem;
  }

  .tab__crash__wrapper .crash__form__wrapper .input-field label {
    top: 0;
  }

  .tab__crash__wrapper .crash__form__wrapper .input-field span.money__sign {
    top: 10px;
  }

  .tab__crash__wrapper .crash__form__wrapper .crash__maxmin__wrapper a,
  .tab__crash__wrapper .crash__form__wrapper .crash__tprs__wrapper a {
    height: 3rem;
    font-size: 12px;
  }

  .tab__crash__wrapper .crash__form__wrapper a.game__btn {
    font-size: 14px;
    padding: 10px 0;
  }

  .tabs__content__wrapper table {
    font-size: 14px;
  }

  .tabs__content__wrapper table tbody tr td.user__name div {
    width: 115px;
  }

  section.double__game__section .game__item__wrapper .game__item__list .swiper-slide span,
  section.double__game__section .time__box a {
    width: 30px;
    height: 30px;
  }

  section.double__game__section .time__box a i {
    font-size: 18px;
  }

  section.double__game .times__bet__wrapper a {
    width: 30px;
    height: 30px;
    font-size: 12px;
    margin: 0 10px;
  }

  .promo__cat__wrapper .swiper-slide a {
    font-size: 12px;
  }

  .promo__cat__wrapper .swiper-slide.selected a {
    height: 40px;
    background: transparent;
  }

  .promo__wrapper .promo__content__wrapper .promo__title__wrapper h4 {
    font-size: 14px;
  }

  .vip__privileges__wrapper .vip__content__wrapper .vip__title img {
    width: 20px;
  }

  .vip__privileges__wrapper .vip__content__wrapper .vip__title span {
    padding-left: 15px;
    font-weight: 500;
    font-size: 14px;
  }

  .vip__privileges__wrapper .vip__content__wrapper .vip__stars img {
    margin-left: 5px;
    width: 15px;
  }

  .allgames__wrapper {
    grid-template-columns: repeat(3, 1fr) !important;
    grid-gap: 15px;
  }

  #slot-home-container .allgames__wrapper {
    grid-template-columns: repeat(6, 1fr) !important;
    grid-gap: 0;
  }

  body.slots__page .allgames__wrapper {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .promo__wrapper .content-grid .s12 {
    margin-bottom: 15px
  }

  .img__thumb {
    width: 100%;
    position: relative;
    height: 160px;
    overflow: hidden;
  }


  .img__thumb img {
    max-width: 115%;
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  .game-grid-search .games__wrapper p.game__name,
  .allgames__wrapper .games__wrapper p.game__name {
    width: 100%;
    overflow: hidden;
    font-size: 12px;
    text-align: center;
  }

  .hotgames__wrapper .allgames__wrapper .games__wrapper p.game__name {
    display: none;
  }

  .hotgames__wrapper .allgames__wrapper .games__wrapper figure .img__thumb img {
    border-radius: 15px;
    height: auto;
    width: 115px;
  }

  .promo__cat__wrapper .swiper-slide.selected a:before {
    display: block;
  }

  section.promo__cat {
    background: #171127;
    padding: 0 0 1px 0;
  }

  section.promo__contents .sidenav {
    padding-bottom: 15%;
  }

  .promo__content__header .promo__page__name,
  .promo__content__header .back {
    display: block;
  }

  .promo__content__header .back {
    top: 17px;
  }

  .promo__content__header .close {
    display: none;
  }

  .promo__details a.promo__btn {
    width: 100%;
  }

  .vip__banner {
    padding-top: 0;
  }

  .vip__priqua__wrapper {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .vip__condition__wrapper {
    padding: 0;
    background: transparent;
  }

  .vip__condition__wrapper table tbody tr td.bb-n {
    border-bottom: 0;
  }

  .lr__floating__wrapper {
    left: 155px;
  }
}

@media only screen and (max-width: 481px) {

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 102px;
  } */
  section.new__games__section .new__games__wrapper .game__container .game__box .overlay__box a img {
    width: 30px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box {
    padding-bottom: 30px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box img {
    width: 102px;
    border-radius: 15px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename {
    height: auto !important;
    margin-left: 20px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename a.pri__link {
    white-space: inherit;
    padding-left: 0 !important;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename h4 {
    font-size: 21px;
    font-weight: 500;
    padding-bottom: 5px;
    margin: 0;
    color: #fff;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename span {
    font-size: 15px;
    font-weight: 500;
  }

  .promo__wrapper .promo__content__wrapper .promo__title__wrapper p {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 120px;
    display: block;
  }
}

@media only screen and (max-width: 414px) {

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 137px;
  } */
  section.hotgames__section .hotgames__list__wrapper .hotgames__box img {
    width: 70px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box {
    padding-bottom: 20px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename {
    height: 70px;
    margin-left: 15px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename a {
    padding: 8px 15px;
  }

  .lr__floating__wrapper {
    left: 73px;
  }
}

@media only screen and (max-width: 375px) {
  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename a {
    padding: 5px 10px;
    font-size: 12px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename h4 {
    font-size: 17px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename span {
    font-size: 12px;
  }

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 137px;
  } */
  .promo__content__header .promo__page__name {
    width: 250px;
  }

  .lr__floating__wrapper {
    left: 63px;
  }
}

@media only screen and (max-width: 360px) {
  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 137px;
  } */
}

@media only screen and (max-width: 320px) {

  section.slider__section .swiper-slide img,
  section.slider__games__section .swiper-slide img,
  section.new__games__section .swiper-slide img,
  section.new__games__section .new__games__wrapper .game__container .game__box {
    border-radius: 8px;
  }

  /* section.new__games__section .new__games__wrapper .game__container .game__box {
    height: 137px;
  } */
  section.new__games__section .new__games__wrapper .game__container .hp__swiper__newgames2 {
    margin: 20px 0;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename a {
    font-size: 9px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename h4 {
    font-size: 14px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box img {
    width: 60px;
  }

  section.hotgames__section .hotgames__list__wrapper .hotgames__box .gamename {
    height: 59px;
  }

  .game__title h4 {
    font-size: 25px;
    padding: 5px 0 10px 0;
    margin: 0;
  }

  .promo__content__header .promo__page__name {
    width: 220px;
  }

  .lr__floating__wrapper {
    left: 48px;
  }
}


/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ Dropdown lang
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */
.change-lang {
  position: absolute;
  right: 36px;
  top: 13px;
  display: none;
}

.change-lang .dropdown-trigger {
  border-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background: #2c2640;
}

.change-lang img {
  width: 15px;
  margin-right: 4px;
}

.change-lang span {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.change-lang .dropdown-trigger span:after {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 10px;
  vertical-align: .255em;
  content: "";
  border-top: .3em solid;
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

.change-lang .dropdown-content {
  background: #2c2640;
  border-radius: 15px;
  width: 70px !important;
  height: auto !important;
  min-width: auto;
}

.change-lang .dropdown-content li a {
  display: flex;
  align-items: center;
}

.change-lang .dropdown-content li:hover,
.change-lang .dropdown-content li.active {
  background-color: rgba(0, 0, 0, .5);
}

.hotgames__wrapper .img__thumb {
  height: 100% !important;
}

.hotgames__wrapper .games__wrapper figure {
  height: 200px;
}



/* ====================================================================================
Announcement
==================================================================================== */
#myModal-mobile {
  left: 0 !important;
  top: 0 !important;
}

#myModal-mobile .modal-dialog .modal-content {
  margin: 0;
  background-color: #fefefe;
  margin: 0;
  padding: 0;
  border: 1px solid #888;
  width: 100%;
}

#myModal-mobile .modal-dialog .modal-content .modal-body .close {
  color: #4a4d52;
  float: right;
  font-size: 30px;
  font-weight: 500;
  background: transparent;
  border: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  right: 0;
  top: 0;
}

#myModal-mobile .modal-dialog .modal-content .modal-body .modal-heading {
  position: relative;
  height: 50px;
}

#myModal-mobile .modal-dialog .modal-content .modal-body .modal-heading .modal-title {
  font-size: 18px;
  text-indent: 10px;
  line-height: 50px;
  color: #333;
}

.announcements_nav_list .nav-tabs>li>a {
  font-weight: 500;
  color: #6a7391;
  font-size: 14px;
}

.player_announcement_popup_container.modal .modal-dialog {
  -webkit-transform: translate(0, -50%) !important;
  -o-transform: translate(0, -50%) !important;
  transform: translate(0, 0) !important;
  top: 0 !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: unset !important;
  height: 100% !important;
  min-height: auto !important;
}

@media only screen and (max-width: 960px) {
  .player_announcement_popup_container.modal .modal-content {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 55% !important;
    min-width: 100% !important;
    min-height: 55% !important;
    border-radius: 0 !important;
    padding: 0 0 30px 0 !important;
    margin: 0 !important;
    background-color: #08001d !important;
    border-radius: 20px !important;
  }
}

.player_announcement_popup_container.modal .modal-heading {
  padding: 13px 0 0 10px !important;
}

.player_announcement_popup_container.modal .modal-heading .modal-title {
  text-indent: 10px !important;
  color: #fff;
}

.player_announcement_popup_container.modal .modal-heading .close {
  top: 11px !important;
  position: fixed !important;
  right: 4px !important;
  padding-right: inherit !important;
  height: 50px !important;
  color: white !important;
  width: 50px !important;
  opacity: 1 !important;
  font-size: 30px !important;
  line-height: 50px !important;
  font-weight: 900;
}

.announcements_nav_list ul.nav,
.announcements_nav_list ul {
  background: #ededed;
  padding-bottom: 0;
}

.announcements_nav_list .nav-tabs>li>a,
.announcements_nav_list .nav-tabs>li>a {
  display: block;
  margin-right: 0;
  color: #000;
  font-weight: normal;
  border: 0 !important;
  border-radius: 0;
  font-size: 14px;
}

.player_announcement_popup_container.show {
  height: 100%;
  min-height: 100%;
  min-width: 100%;
}

.player_announcement_popup_container.modal {
  padding: 20px;
  background: transparent;
  top: 21% !important;
}

.player_announcement_popup_container.modal iframe {
  border-radius: 20px;
}

.player_announcement_popup_container.show .modal-dialog .modal-content {
  padding-bottom: 0 !important;
}

.player_announcement_popup_container.show .modal-dialog .modal-content .modal-body {
  /* background-color: #08001d!important; */
}

/* home modal */

.custom-modal {
  display: none;
  place-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 150;
  /* background: rgba(0,0,0,0.5); */
  margin-top: 25px;
  padding: 0 20px;
}

.custom-modal .modal-wrap {
  z-index: 2;
  border-radius: 15px;
}

.custom-modal .od {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
}


.modal_home_content {
  position: relative;
  padding: 12px;
  color: #000;
  height: 100%;
  overflow: hidden;
  background: white;
  max-height: 443px;
  width: 100%;
  border-radius: 15px;
  max-width: 340px;
}

.modal_home_content .pop_header {
  display: flex;
  align-items: center;
}

.modal_home_content .pop_header p {
  font-weight: 700;
  color: #5c84ef;
  font-size: 20px;
  font-family: Open, sans-serif;
}

.modal_home_content .pop_header img {
  width: 30px;
  margin-right: 7px;
  position: relative;
  top: -2px;
}

.modal_home_content .ann_cont {
  word-break: break-all;
  max-height: 248px;
  overflow-y: auto;
  padding-top: 5px;
}

.modal_home_content .socmed {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 12px;
}

.modal_home_content .socmed p {
  color: #252e93;
  font-weight: 700;
  margin-right: 5px;
}

.modal_home_content .socmed a img {
  width: 30px;
  margin: 0 5px;
}

.modal_home_content #close_modal {
  color: #fff;
  width: auto;
  padding: 8px;
  border-radius: 50px;
  display: block;
  text-align: center;
  margin: 10px auto 0;
  max-width: 150px;
  background: #5c84ef;
}

.player_link {
  display: block;
  width: 180px;
  text-align: center;
  padding: 10px 0;
  border-radius: 5px;
  margin: 20px 0 0;
  display: none;
}

.modal_home_content .fw-600 {
  font-weight: 600;
}

.modal_home_content ul {
  padding: 10px 0 10px 15px;
}

.modal_home_content ul li {
  list-style: decimal;
  line-height: 16px;
}

#close_modal_container {
  cursor: pointer;
  position: absolute;
  top: 2px;
  right: 2px;
  padding: 7px;
  border-radius: 48px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 12px;
}

#close_modal_container .material-icons {
  font-size: 14px;
}

.custom-modal table {
  margin: 10px 0;
}

.custom-modal table tr {
  border-bottom: 0;
}

.custom-modal table tr td {
  border: 1px solid rgba(0, 0, 0, 0.4);
  padding: 5px;
}

.t1t-ui.t1t-notify {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
  border-radius: 2px;
  padding: 10px;
}

.t1t-notify .t1t-notify-title {
  padding-left: 0 !important;
}

.t1t-notify .t1t-notify-message {
  padding-left: 0 !important;
}

.t1t-ui.t1t-notify .progress {
  background-color: #f5f5f5;
  border-radius: 4px;
}

.t1t-ui.t1t-notify .progress-bar-success {
  background-color: #5cb85c;
  height: 100%;
}

.t1t-ui.t1t-notify .progress-bar-danger {
  background-color: #d9534f;
  height: 100%;
}

.mobile_top__header__wrapper .log-buttons a {
  margin-left: 5px;
  padding: 8px 15px;
  border: 2px solid;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.mobile_top__header__wrapper .log-buttons a.login,
.dep__with__btn a {
  color: #945ffc;
  border-color: #945ffc;
}

.dep__with__btn a {
  margin-left: 5px;
  padding: 8px 15px;
  border: 2px solid;
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 1px;
  text-decoration: none;
}

.dep__with__btn a.login__btn {
  background: transparent;
}

.dep__with__btn a.reg__btn {
  background: #5e1cd9;
  border-color: #5e1cd9;
  color: #fff;
}

.mobile_top__header__wrapper .log-buttons a.register {
  background: #5e1cd9;
  border-color: #5e1cd9;
  color: #fff;
}

.quick_links {
  margin: 30px 0 15px;
}

.quick_links .link-items {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  grid-column-gap: 6px;
}

.quick_links .link-items img {
  display: block;
  margin: auto;
  width: 55px;
}

.quick_links .link-items span {
  display: block;
  color: #fff;
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap;
  text-align: center;
}

.hp__swiper__promo .swiper-pagination-bullets {
  position: relative;
  top: 0;
}

.hp__swiper__promo .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 7px !important;
  height: 7px !important;
}

/* ====================================================================================
App Page Section
==================================================================================== */
.app__page__wrapper {
  margin-top: 40px;
  padding: 20px;
}

.app__page__wrapper .app_info {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.app__page__wrapper .app_info img.app {
  width: 100%;
  max-width: 220px;
  padding-right: 20px;
}

.app__page__wrapper .app_info .app_intro .app_title {
  font-size: 22px;
}

.app__page__wrapper .app_info .app_intro .app_desc {
  color: #8C8C8C;
  margin-top: 10px;
}

.app__page__wrapper .app_info .app_intro img {
  width: 130px;
  margin-top: 15px;
}

.app__page__wrapper .dl__icon__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app__page__wrapper .dl__icon__wrapper .app-btn {
  background: #5E1CD9;
  color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin: 0 10px;
  height: auto;
}

.app__page__wrapper .dl__icon__wrapper .app-btn img {
  width: 60px;
}

.ios-dl {
  position: relative;
}

.ios-dl #dropdown2 {
  top: 82px !important;
  left: 0 !important;
  background: #5e1cd9;
  border-radius: 10px;
}

.ios-dl #dropdown2 li {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 1px rgb(0 0 0 / 10%);
}

.ios-dl #dropdown2 li:last-child {
  border-bottom: 0;
  box-shadow: none;
}

.ios-dl #dropdown2 li a {
  margin: 0;
  display: block;
  text-align: center;
  color: #fff;
  height: 50px;
}

.ios-dl #dropdown2 li:hover {
  background: rgba(0, 0, 0, .1);
}



/* ====================================================================================
Ranking Section
==================================================================================== */

.ranking__section {
  background: #0c0815 url(../images/jackpot-svg-bg-m.svg) no-repeat 0 0;
  border: 4px #17131f solid;
  border-radius: 15px;
  padding: 10px 0;
  position: relative;
  overflow: hidden;
}

.ranking__section:before {
  content: '';
  background: url(../images/prizepool/cirlce-blur.png) no-repeat 0 0;
  background-size: cover;
  width: 100%;
  height: 1236px;
  display: block;
  position: absolute;
  top: 0;
  left: 0px;
  background-position: center 150px;
}

/* .ranking__section:after {
  content: '';
  background: url(../images/prizepool/cirlce-blur.png) no-repeat 0 0;
  background-size: cover;
  width: 100%;
  height: 700px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background-position: center 150px;
} */

.ranking__section .trop__jackpot__wrapper {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.ranking__section .trop__jackpot__wrapper .trophy__img {
  padding-right: 15px;
}

.ranking__section .trop__jackpot__wrapper .trophy__img img {
  width: 100px;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .date__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .date__wrapper .rank-flo {
  width: 14px;
  margin: 0 5px;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .date__wrapper p {
  color: #c3c3c3;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .date__wrapper .date__two {
  padding-left: 5px;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .cpp {
  color: #484848;
  font-size: 12px;
  padding: 10px 0px 0 20px;
  font-family: 'aileronregular';
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .prize__pool__wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .prize__pool__wrapper .rs {
  background: #ffa600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 150px;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  font-weight: 600;
  font-style: italic;
  font-size: 11px;
  padding-right: 2px;
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .prize__pool__wrapper #jackpot__pool {
  color: #ffa600;
  font-weight: 700;
  font-size: 24px;
  padding-right: 10px;
  font-family: 'aileronblack';
}

.ranking__section .trop__jackpot__wrapper .jackpot__prize__wrapper .prize__pool__wrapper p {
  font-size: 24px;
  font-family: 'aileronregular';
}

section.ranking__section .new__bet__wrapper .nb__title p {
  font-size: 20px;
  margin-top: 20px;
}

section.ranking__section .new__bet__wrapper table {
  max-height: 300px;
}

section.ranking__section .new__bet__wrapper table tbody {
  position: absolute;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 1;
  width: 100%;
  padding: 0;
}

section.ranking__section .new__bet__wrapper table thead tr th,
section.ranking__section .player__ranking__wrapper table thead tr th {
  color: #716c7e;
  font-weight: 500;
  padding-bottom: 0px;
  font-family: 'aileronregular';
  font-size: 15px;
  white-space: nowrap;
}

section.ranking__section .new__bet__wrapper table tbody tr td {
  padding: 5px 0px;
  font-family: 'aileronbold';
  font-size: 12px;
  white-space: nowrap;
}

section.ranking__section .new__bet__wrapper table tbody tr td .game__rank__icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

section.ranking__section .new__bet__wrapper table tbody tr td .game__rank__icon img {
  width: 20px;
  margin-right: 10px;
}

section.ranking__section .new__bet__wrapper table tbody tr td span.rs,
section.ranking__section .player__ranking__wrapper table tbody tr td span.rs {
  display: inline-block;
  background: #ffa600;
  width: 20px;
  height: 20px;
  border-radius: 150px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  font-size: 10px;
  margin-right: 5px;
  font-style: italic;
  padding-right: 2px;
}

section.ranking__section .player__ranking__wrapper table tbody tr td span.green__text {
  color: #07af1a;
}

section.ranking__section .player__ranking__wrapper table tbody tr td img.rank_img {
  width: 23px;
}

section.ranking__section .player__ranking__wrapper table tbody tr td span.num__rank {
  color: #c3c3c3;
  font-family: 'aileronregular';
}

section.ranking__section .player__profile {
  background: #1a0b39;
  border-radius: 20px;
  padding: 20px;
  margin: 11px 0 10px;
  position: relative;
  z-index: 99;
}

section.ranking__section .player__profile .player_info {
  display: flex;
  align-items: center;
}

section.ranking__section .player__profile .player_info .profile-avatar {
  width: 52px;
  margin-right: 10px;
}

section.ranking__section .player__profile .player_info .player__stats .name {
  font-size: 20px;
  font-weight: bold;
}

section.ranking__section .player__profile .player_info .player__stats .name__info {
  display: flex;
  align-items: center;
}

section.ranking__section .player__profile .player_info .player__stats .name__info .status {
  color: #756c88;
  font-family: 'aileronregular';
}

section.ranking__section .player__profile .player_info .player__stats .name__info .p__balance {
  display: flex;
  margin: 0 15px 0 5px;
}

section.ranking__section .player__profile .player_info .player__stats .name__info .p__balance .rs {
  display: inline-block;
  background: #ffa600;
  width: 20px;
  height: 20px;
  border-radius: 150px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  font-size: 10px;
  margin-right: 5px;
  font-style: italic;
  padding-right: 2px;
}

section.ranking__section .player__profile .player_info .player__stats .name__info .c__rank {
  font-size: 12px;
  color: #756c88;
  white-space: nowrap;
  font-family: 'aileronregular';
}

section.ranking__section .player__profile .player_info .player__stats .name__info .c__rank span {
  color: #07af1a;
  font-weight: bold;
}

section.ranking__section .player__profile .player__pos {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}

section.ranking__section .player__profile .player__pos span {
  display: block;
  color: #756c88;
  font-size: 12px;
  font-family: 'aileronregular';
}

section.ranking__section .player__profile .player__pos span.place {
  font-size: 24px;
  color: #c3c3c3;
  font-weight: 700;
  font-family: 'aileronbold';
}

section.ranking__section .player__profile .player__pos .total__bet span {
  display: block;
  color: #756c88;
  font-size: 12px;
  font-family: 'aileronregular';
}

.player__ranking__wrapper {
  /* background: #130a27; */
  padding: 0 15px;
  border-radius: 10px;
  overflow-x: auto;
  position: relative;
  z-index: 99;
}

section.ranking__section .player__profile .player__pos .total__bet span.my__totalbet {
  display: block;
  color: #fff;
  font-size: 24px;
  font-family: 'aileronbold';
  font-weight: 700;
}

section.ranking__section .player__profile .player__pos .total__bet .balance {
  display: flex;
  align-items: center;
}

section.ranking__section .player__profile .player__pos .total__bet .balance #jackpot__pool {
  font-size: 24px;
  color: #c3c3c3;
  font-weight: bold;
}

section.ranking__section .player__profile .player__pos .total__bet .balance .rs {
  display: grid;
  background: #ffa600;
  width: 20px;
  height: 20px;
  border-radius: 150px;
  text-align: center;
  font-weight: 600;
  margin-right: 5px;
  color: #fff;
  line-height: 30px;
  font-size: 10px;
  place-content: center;
  font-style: italic;
  padding-right: 2px;
}

.player__ranking__wrapper .nb__title p {
  font-size: 20px;
  margin-top: 25px;
}

.player__ranking__wrapper table tr td {
  font-size: 12px;
}


.footer__sp__wrapper .helpful__links__wrapper .fot2__links li.active .collapsible-header {
  background: #222222 !important;
}

footer .footer__wrapper ul li a img.white-icon {
  display: none;
}

footer .footer__wrapper ul li.active a img.white-icon {
  display: block;
}

footer .footer__wrapper ul li.active a img.gray {
  display: none;
}

footer .footer__wrapper ul li a img.smash-icon {
  width: 55px;
}

footer .footer__wrapper ul:after {
  content: '';
  width: 150px;
  height: 5px;
  border-radius: 10px;
  background: #fff;
  display: none;
  margin: auto;
  position: absolute;
  bottom: 6px;
  right: 0;
  left: 0;
}

.social_links {
  position: fixed;
  bottom: 35px;
  right: 20px;
  z-index: 10;
}

.social_links .floating-item {
  background: #242424;
  border-radius: 8px;
  margin-bottom: 10px;
  position: relative;
}

.social_links .floating-item .floting-icons {
  display: block;
  padding: 15px;
  position: relative;
}

.social_links .floating-item.email .notif,
.share-icon .notif {
  position: absolute;
  background: #dc4913;
  width: 20px;
  height: 20px;
  color: #fff;
  line-height: 19px;
  text-align: center;
  font-size: 12px;
  border-radius: 50%;
  top: 7px;
  right: 7px;
  display: none;
}

.social_links .floating-item .floting-icons img {
  width: 30px;
}

div.socials-accounts {
  display: none;
}

.floating-item.socials ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #242424;
  padding: 12px;
  grid-gap: 20px;
  position: absolute;
  right: 0;
  top: -58px;
  border-radius: 8px;
}

.floating-item.socials ul li a img {
  width: 30px;
}

.floating-item.socials ul .social-close {
  position: absolute;
  top: -12px;
  left: -12px;
  color: #fff;
  background: #484848;
  padding: 10px;
  border-radius: 50%;
  line-height: 22px;
  padding: 0;
  width: 25px;
  height: 25px;
  text-align: center;
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
  animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.yellowtard {
  color: #FFDE3B;
  font-size: 16px;
}

@media (max-width: 390px) {
  .dep__with__btn a {
    margin-left: 0;
    padding: 8px 5px;
  }

  .player_announcement_popup_container.modal {
    top: 11% !important;
  }

  .player_announcement_popup_container.modal .modal-content {
    height: 80% !important;
    min-height: 80% !important;
  }
}

header .mobile_top__header__wrapper {
  display: none;
}

header .mobile_top__header__wrapper.logged a {
  display: block;
}

header .mobile_top__header__wrapper.logged a img {
  width: 27px;
  position: relative;
  top: 4px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper {
  padding-left: 0px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul {
  background: #242424;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border-radius: 150px;
  position: relative;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li {
  padding: 5px 15px;
  transition: all .3s ease 0s;
  position: relative;
  min-width: 95px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li.active {
  background: #5e1cd9;
  border-radius: 150px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li a {
  color: #fff;
  transition: all .3s ease 0s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li a .nav-icon {
  width: 15px;
  top: 0;
  margin-right: 4px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li a i {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-size: contain !important;
  margin-right: 8px;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li a i.game-icon {
  background: url(../images/icon/header-game-icon-white.png) no-repeat 0 0;
}

header .mobile_top__header__wrapper.logged .g-sport-wrapper ul li a i.sport-icon {
  background: url(../images/icon/header-sport-icon-dark.png) no-repeat 0 0;
}

.game__box .game__counter {
  background: rgb(5 5 5 / 40%);
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 0 7px;
  border-radius: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 2px solid #242424;
  /* padding-top: 20px; */
}

.game__box .game__counter img {
  width: 16px;
  padding-right: 5px;
}

.footer__gp__wrapper {
  padding: 0 20px;
}

.footer__gp__swiper img {
  width: 100%;
}

.cc__footer__wrapper {
  margin: 30px 0;
}

.cc__footer__wrapper ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.cc__footer__wrapper ul li {
  margin: 0 7px;
}

.cc__footer__wrapper ul li img {
  width: 50px;
}

a.roulleteGame {
  position: relative;
}

.rTimes {
  position: absolute;
  top: -5px;
  right: -12px;
  height: 20px;
  background: #ec1d25;
  color: #fff;
  font-size: 11px;
  border-radius: 50%;
  width: 20px;
  text-align: center;
  line-height: 20px;
  display: none;
}

#contentFrame {
  height: calc(100% - 5px) !important;
  padding-bottom: 25%;
  padding-top: 12%;
}

body header .mobile_top__header__wrapper.logged a.share-icon {
  display: block;
}

body header .mobile_top__header__wrapper.logged a.depo-icon {
  display: none;
}

body.sportspage header .mobile_top__header__wrapper.logged a.share-icon {
  display: none;
}

body.sportspage header .mobile_top__header__wrapper.logged a.depo-icon {
  display: block;
}

body.sportspage footer {
  display: block;
}

body.sportspage #contentFrame {
  height: 100% !important;
  padding-bottom: 0;
}

/* chatting */
.chat-bubble {
  position: relative;
}

.chat-bubble img {
  width: 25px !important;
}

.chat-bubble span {
  position: absolute;
  top: -6px;
  right: -15px;
  color: #fff;
  background: #21b93e;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 18px;
  border-radius: 50px;
  font-size: 12px;
}

.wldcp__wrapper {
  position: fixed;
  top: 200px;
  right: 11px;
  z-index: 2;
}

.wldcp__wrapper img {
  width: 65px;
}

.rdpk__wrapper {
  position: fixed;
  top: 265px;
  right: 5px;
  z-index: 10;
}

.rdpk__wrapper img {
  width: 60px;
}

.shark {
  position: relative;
  width: 60px;
  height: 60px;
  display: block;
}

.shark.hastimes::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 6px;
  right: -11px;
  border-radius: 150px;
  background: red;
}

.not-login .chat-bubble {
  margin-right: 10px;
}

.not-login .chat-bubble img {
  width: 20px;
}

#collapseThree.panel-collapse.collapse {
  display: none;
}

#collapseThree.panel-collapse.collapse.in {
  display: block;
}

#bubble-container {
  position: relative;
}

#bubble-container #_player_login_area {
  position: absolute;
  top: -14px;
}

.slide-in-bottom {
  -webkit-animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) both;
  animation: slide-in-bottom .5s cubic-bezier(.25, .46, .45, .94) both
}

@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}

@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
    transform: translateY(1000px);
    opacity: 0
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
  }
}


/*  New Vip Page */
body.vip {
  background: #050505 url(../images/vip/BG.jpg) no-repeat;
  background-position: top center;
  background-size: cover;
  padding: 20px;
}

body.vip .hp_page {
  padding-top: 30px;
}

.vip-pri h1 {
  text-align: center;
  color: #ffde3b;
  font-weight: 700;
  font-size: 40px;
  margin-top: 0;
  background: url(../images/vip/VIPBar.png) center no-repeat;
  background-size: contain;
  padding: 10px;
}

.vip-pri .about-vip {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 30px;
  flex-direction: column;
}

.vip-pri .about-vip .what-is-vip {
  font-size: 18px;
}

.vip-pri .about-vip .what-is-vip .title {
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-weight: 700;
}

.vip-pri .about-vip .what-is-vip .title span {
  color: #fa305c;
}

.vip-pri .about-vip .smash-logo img {
  width: 80%;
}

.vip-pri .about-vip .smash-logo {
  text-align: center;
  margin-top: 20px;
}

.vip-qualified-wrapper {
  margin: 30px auto 0;
  width: 100%;
}

.vip-qualified-wrapper .vip-items {
  width: 95%;
  max-width: 100%;
  position: relative;
  height: 310px;
  margin: auto;
  padding: 30px 20px;
  margin-bottom: 20px;
  border-radius: 30px;
  background: #6a3093;
  background: -webkit-linear-gradient(to right, #a044ff, #6a3093);
  background: linear-gradient(to right, #a044ff, #6a3093);
}

.vip-qualified-wrapper .vip-items div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vip-qualified-wrapper .vip-items div img {
  width: 100%;
  height: auto;
}

/* .vip-qualified-wrapper .vip-items.item1 {
  background: url(../images/vip/box1.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.vip-qualified-wrapper .vip-items.item2 {
  background: url(../images/vip/box2.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.vip-qualified-wrapper .vip-items.item3 {
  background: url(../images/vip/box3.png) no-repeat;
  background-position: center;
  background-size: cover;
} */
.vip-qualified-wrapper .vip-items .sect-title {
  color: #ffde3b;
  font-size: 25px;
  line-height: 1;
  margin-top: 15px;
  font-weight: 700;
}

.vip-qualified-wrapper .vip-items .details {
  margin-top: 5px;
  font-size: 16px;
}

.vip-qualified-wrapper .vip-items:after {
  content: '';
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  background: url(../images/vip/next.png) no-repeat;
  background-size: contain;
  bottom: -40px;
  right: 0;
  left: 0;
  z-index: 2;
  border: 8px solid #06050b;
  border-radius: 50px;
  margin: auto;
  transform: rotate(90deg);
}

.vip-qualified-wrapper .vip-items.item3:after {
  content: none;
}

.vip-condition {
  margin-top: 30px;
}

.vip-condition .vip-title {
  padding: 20px;
  text-align: center;
  background: url(../images/vip/VIPBar.png) center no-repeat;
  background-size: contain;
}

.vip-condition .vip-title p {
  text-align: center;
  color: #ffde3b;
  font-weight: 700;
  font-size: 20px;
}

.vip-swiper {
  margin-top: 30px;
  max-width: 1200px;
  padding-bottom: 32px;
}

.vip-swiper .swiper-wrapper .swiper-slide {
  background: url(../images/vip/Rank-panel.png) top center no-repeat;
  background-size: 85%;
  height: 570px;
}

.vip-swiper .swiper-wrapper .swiper-slide .vip-img {
  width: 155px;
  display: block;
  margin: auto;
  margin-top: 10px;
}

.vip-swiper .swiper-wrapper .swiper-slide .vip-item-details {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.vip-swiper .swiper-wrapper .swiper-slide .vip-item-details .yello {
  color: #ffde3b;
  margin: 10px 0;
}

.vip-swiper .swiper-pagination {
  width: 115px;
  position: relative;
  top: 20px
}

.vip-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 0.5;
}

.vip-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffde3b;
  opacity: 1;
}

.vip-detalhes-container {
  background: #141414;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid #959595;
  max-width: 1200px;
  margin: 30px auto;
}

.vip-detalhes-container .title p {
  text-align: center;
  color: #ffde3b;
  font-weight: 700;
  font-size: 20px;
}

.vip-detalhes-container .detail-wrapper {
  display: grid;
  grid-template-columns: auto;
  grid-gap: 30px;
  margin-top: 30px;
}

.vip-detalhes-container .detail-wrapper .details-items .subtitle {
  font-size: 17px;
  font-weight: bold;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible {
  border: 0;
  position: relative;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible .collapsible-header {
  background: none;
  padding-left: 2px;
  border-bottom: 1px solid #323232;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible .collapsible-body {
  padding: 10px;
  border: 0;
  background: #232323;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible li {
  position: relative;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible li .collapsible-header:after {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background: url(../images/vip/down-arrow.png?v2);
  position: absolute;
  top: 17px;
  right: 2px;
  filter: invert(.3);
  background-size: contain;
  transition: all .5s;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible li .collapsible-header:hover {
  background: #6b3095;
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible li .collapsible-header:hover:after {
  filter: invert(.8);
}

.vip-detalhes-container .detail-wrapper .details-items .collapsible li.active .collapsible-header:after {
  transform: rotate(180deg);
}

.vip-qualified-wrapper .vip-qua-slider {
  padding-bottom: 30px;
}

.vip-qualified-wrapper .vip-qua-slider .swiper-pagination {
  position: relative;
  top: 20px;
}

.vip-qualified-wrapper .vip-qua-slider .swiper-pagination .swiper-pagination-bullet {
  background: #fff;
  opacity: .4;
  width: 15px;
  height: 15px;
}

.vip-qualified-wrapper .vip-qua-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: #ffde3b;
  opacity: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url(../images/vip/prev.png);
  left: 0px;
  width: 35px;
  height: 35px;
  background-size: 35px 35px;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url(../images/vip/nex.png);
  right: 0px;
  width: 35px;
  height: 35px;
  background-size: 35px 35px;
}

.vip-swiper .swiper-wrapper .swiper-slide .vip-item-details p a {
  color: #fff;
}

.vip-swiper .swiper-wrapper .swiper-slide .vip-item-details p.yello a {
  color: #ffde3b;
}

.sports__swiper {
  border-radius: 15px;
}

@media (max-width: 414px) {
  .sports__swiper {
    max-height: 336px;
  }
}

@media (max-width: 390px) {
  .sports__swiper {
    max-height: 316px;
  }
}

@media (max-width: 375px) {
  .sports__swiper {
    max-height: 304px;
  }
}

.evoplay-link-container {
  display: none;
  height: 100%;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 2;
  align-items: center;
  gap: 10px;
}

.evoplay-link-container a {
  display: grid;
  background-color: #5e1cd9;
  color: #fff;
  width: fit-content;
  justify-self: center;
  padding: 5px 25px;
  border-radius: 15px;
}

.evoplay-link-container a.play {
  align-self: end;
}

.evoplay-link-container a.trial {
  align-self: start;
}

.evoplay-link-container a {
  display: grid;
  background-color: #5e1cd9;
  color: #fff;
  width: fit-content;
  justify-self: center;
  padding: 2px 15px;
  border-radius: 15px;
}

.evoplay_seamless_game_api:hover .evoplay-link-container {
  display: grid !important;
}


#slots-link-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  background: #000;
  width: 100%;
  height: 100vh
}

.show-slots-modal {
  display: grid !important;
  place-content: center
}

.slots-link-container {
  display: grid;
  gap: 4em;
  grid-auto-flow: column
}

.slots-link-container a.play {
  background-color: #db3d4e;
  color: #fff;
  padding: 8px 25px;
  border-radius: 5px;
  height: 45px;
  width: 100px;
  place-content: center;
  display: grid;
}

.slots-link-container a.trial {
  background-color: #3d83ee;
  color: #fff;
  padding: 8px 25px;
  border-radius: 5px;
  height: 45px;
  width: 100px;
  place-content: center;
  display: grid;
}

.close-slots-modal {
  position: absolute;
  top: 20px;
  right: 15px
}

.close-slots-modal img {
  width: 40px;
  height: 40px
}

#slots-link-modal .evoplay_logo {
  width: 250px;
  margin-bottom: 100px;
}

.parner__rules__wrapper .register-btn {
  display: block;
  margin: auto;
  text-align: center;
  color: #fff;
  padding: 5px;
  font-size: 20px;
  max-width: 90%;
  border-radius: 6px;
  position: relative;
}

.parner__rules__wrapper .register-btn img {
  width: 60px;
  position: absolute;
  right: 23px;
  bottom: -20px;
  transform: rotate(-20deg);
}

.color-change-2x {
  -webkit-animation: color-change-2x 1s linear infinite alternate both;
  animation: color-change-2x 1s linear infinite alternate both;
}

.color-change-3x {
  -webkit-animation: color-change-3x 2s linear infinite alternate both;
  animation: color-change-3x 2s linear infinite alternate both;
}

@-webkit-keyframes color-change-2x {
  0% {
    background: #5E1CD9;
  }

  100% {
    background: #b22cff;
  }
}

@keyframes color-change-2x {
  0% {
    background: #5E1CD9;
  }

  100% {
    background: #b22cff;
  }
}

@-webkit-keyframes color-change-3x {
  0% {
    background: #5E1CD9;
  }

  50% {
    background: #b22cff;
  }

  100% {
    background: #ea2222;
  }
}

@keyframes color-change-3x {
  0% {
    background: #5E1CD9;
  }

  50% {
    background: #b22cff;
  }

  100% {
    background: #ea2222;
  }
}

/* ══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════
★ 00 Slots Championship Page
══════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════════ */

.slot-champoinship {
  padding: 15px;
  overflow-x: hidden;
}

.tabswiper .swiper-button-next,
.tabswiper .swiper-button-prev {
  background-color: #000;
  width: 30px;
  height: 30px;
  background-size: 100%;
  border-radius: 50px;
  top: calc(50% + 7px);
}

.tabswiper {
  position: relative;
  z-index: 99;
}

.tabswiper .swiper-slide .swiper-tab .tab-cover {
  width: 100%;
  height: auto;
}

.tabswiper .swiper-slide .swiper-tab {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.tabswiper .swiper-slide.swiper-slide-active .swiper-tab {
  border: 3px solid #601edf;
}

.tabswiper .swiper-slide .swiper-tab .s-content {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(0, 0, 0, .4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-bottom {
  text-align: center;
  padding-bottom: 20px;
  color: #aaa;
  font-size: 16px;
  font-weight: bold;
  background: linear-gradient(0deg, #08123c 0%, transparent 100%);
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-bottom p span {
  color: #fff;
  font-size: 12px;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top .tab-tag {
  position: absolute;
  left: 0;
  top: 0;
  background: #5d1dd9;
  padding: 6px;
  padding-right: 15px;
  font-size: 10px;
  border-radius: 0 0 50px 0;
  height: 17px;
  text-transform: uppercase;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top .tab-tag.in-progress {
  background-color: #ffa602;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top .tab-tag.ended {
  background-color: #666666;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top .rules {
  position: absolute;
  right: 10px;
  top: 10px;
}

.tabswiper .swiper-slide .swiper-tab .s-content .content-top .rules img {
  width: 20px;
}

.mySwiper2 img,
.mySwiper-1row img {
  width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
  margin: auto;
  border-radius: 10px;
}

.providers-logo-games {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 37px 90px;
  margin-top: 40px;
}

.providers-logo-games a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.providers-logo-games img {
  display: block;
  margin: auto;
  text-align: center;
  height: 27px;
}

.providers-logo-games.sec-row {
  margin-bottom: 0;
}

.providers-logo-games img.pp__logo {
  height: 41px;
}

.slot-champoinship .tabcontent {
  visibility: hidden;
  opacity: 0;
  height: 0;
}

.slot-champoinship .tabcontent.active {
  visibility: visible;
  opacity: 1;
  height: auto;
}

.slot-champoinship .tabcontent .tabContainer {
  padding: 0 20px;
}

.slot-champoinship .tabcontent.active .tabContainer {
  background: #321172;
  border-radius: 25px;
  position: relative;
  padding: 50px 20px 20px;
  margin-top: 20px;
}

.slot-champoinship .tabcontent .swiper {
  overflow: hidden;
}

.slot-champoinship .tabcontent .tabContainer::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 14px 0 14px;
  border-color: #321172 transparent transparent transparent;
  line-height: 0px;
  _border-color: #001e5a #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  margin: auto;
  transform: rotate(180deg);
}

.slot-champoinship .tabcontent .tabContainer .gamepro__logo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin-top: 20px;
}

.slot-champoinship .tabcontent .tabContainer .gamepro__logo .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slot-champoinship .tabcontent .tabContainer .gamepro__logo .swiper-slide a {}

.slot-champoinship .tabcontent .tabContainer .gamepro__logo .swiper-slide a img {
  width: 110px;
  max-width: 100%;
}

.mySwiper2 .swiper-button-next,
.mySwiper2 .swiper-button-prev,
.mySwiper-1row .swiper-button-next,
.mySwiper-1row .swiper-button-prev {
  top: 35px;
  right: 30px;
  background-size: 42%;
  left: unset;
  border: 1px solid rgba(255, 255, 255, .8);
  height: 22px;
  width: 34px;
}

.mySwiper2 .swiper-button-next,
.mySwiper-1row .swiper-button-next {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU5MTUzQzhDRkVBRTExRUM5RjVGQTBCOEFBRDA3NzA3IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU5MTUzQzhERkVBRTExRUM5RjVGQTBCOEFBRDA3NzA3Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTkxNTNDOEFGRUFFMTFFQzlGNUZBMEI4QUFEMDc3MDciIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTkxNTNDOEJGRUFFMTFFQzlGNUZBMEI4QUFEMDc3MDciLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5eR0mLAAAB2klEQVR42uyavUrEQBRGk1VQGztB1EJEV7CyEUQLVzsL0adYUNQnsdsVfA3BVi0sRSsFdbew8a+1snCJ38AElpBJHGcKb+a7cIpNIHDPTCb3zmycJEkUctSiwIMCKIACKIACKIACKIACKIACKIACKOD/xw54Bl/gFIy7PjAWtCEyBbpgqO/aE1gHryHMgNVM8irq4AJMhCCga7g+7yJBkoAb0PItIRa2KRqDNtgz3O+Ahs2aIO0roEZrHxwb7s+BS5uZILEOUBIOCiTUbSRILYS8SZBcCaYS2i4SpJfCSsKhi4Qq9AJOEqrSDKUSWrYSBjO/x8AuWBAqJ9aN0rBBwrnuHd7zCqERcAdmKt4BX4MV8J19BTYDSF7FEljOWwOC3BzpfwVGwb3uu4N5BbLN0KQuLqYFL4JbOfsGaTwULYLiZ3NJp5i7e1QLOfmqCPhz8lUQ4JR8XiUoLfkT0DTcf9TJv1WxG0xHvlkw8htlyUsV4DztJQv4zaao1UGJNAFHJSPfiCxPiSQVQovgVs8Cp2kvdQbMGpLvRA7ng5IEXIFPn8lLE/ABtvX3XXVyZ2ANvPhqhyXFAOj5eJDUQqjn60H8iwwFUAAFUAAFUAAFUAAFUAAFUECI8SPAAJ6edw4jBCA8AAAAAElFTkSuQmCC');
  border-radius: 0 20px 20px 0;
}

.mySwiper2 .swiper-button-prev,
.mySwiper-1row .swiper-button-prev {
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyNpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDYuMC1jMDAyIDc5LjE2NDQ2MCwgMjAyMC8wNS8xMi0xNjowNDoxNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIDIxLjIgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjY1MEUyRjNDRkVBRTExRUNCNTA1QUEyNzRENUIzREFEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjY1MEUyRjNERkVBRTExRUNCNTA1QUEyNzRENUIzREFEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NjUwRTJGM0FGRUFFMTFFQ0I1MDVBQTI3NEQ1QjNEQUQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NjUwRTJGM0JGRUFFMTFFQ0I1MDVBQTI3NEQ1QjNEQUQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6WaiwvAAAB00lEQVR42uyYuUrEUBSGk1HwFUZLGRfQShAEC7fKSp9CZHB5EbtxAd9CtFZBsBOsBBdkCnc7GxXU+B9MQEJuchNt7rn/ga9xZoT/427nhFEUBT5XLfC8KIACKIACKIACKIACKIACKIACKIACqlUd7IA30AbzLgkI/zgQ6QEHoP/X395BA9xoXwESfj8VXqoLjGvfAkn4AcPnV5oFFIVvgRNXBHRWCH8I+gyfb4JVrbdAcuCZwm+AJRBpFJB12qfDL7sW3laA2vA2AorCr7scvkiATfgVl8PnCfAivElAUfiWlvBZvUA9Dj9o+L40PHuOhv8CZ2ALPGcJkEfRMRhV3gFfg2Hwmt4CYx6El+oFs74PRGo+bwGZUwyBlyqHoAw7dh0+BNvxLXZr6gYfwEzONSjDjicXm54y74A7MAUuDL9pxg+hUKsAryTk3QJeSLCZCnfHZ4JpBLYNFrW2w1L3YDpnJSy4vBJsH0Jqt0OZl2Ai4VKThLJPYZEwWbAS1rQdgmUHJvIPR8CpxhVgsx1kCzS0bgEbCdJkHPkgIIibiongZ0r0Ac7BHHjUfgZkVQf41HwNFpVz4f9bQEABFEABFEABFEABFEABFEABFEABjtS3AAMA9BJ+x4/f4GMAAAAASUVORK5CYII=');
  border-radius: 20px 0 0 20px;
  right: 64px;
}

.tabswiper .rules-container {
  width: 400px;
  height: auto;
  background: white;
  position: absolute;
  top: 45px;
  z-index: 8;
  right: 0;
  border-radius: 20px;
  padding: 20px;
  color: #111;
  right: -10px;
  display: none;
}

.tabswiper .rules-container.show {
  display: block
}

.tabswiper .rules-container .rules-heading {
  display: flex;
  justify-content: space-between;
}

.tabswiper .rules-container .rules-heading p {
  color: #601edf;
  font-size: 16px;
  font-weight: bold;
}

.tabswiper .rules-container .rules-heading .close-rules {
  font-size: 20px;
  color: #000;
}

.tabswiper .rules-container .rules-content {
  margin-top: 20px;
  padding-left: 10px;
  position: relative;
}

.tabswiper .rules-container .rules-content>p {
  position: relative;
  color: #aaa;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.tabswiper .rules-container .rules-content>p:before {
  content: '';
  width: 8px;
  height: 8px;
  background: #601edf;
  display: block;
  position: absolute;
  top: 7px;
  left: -15px;
  border-radius: 50px;
}

.tabswiper .rules-container .rules-content>p span {
  font-size: 11px;
  color: #111;
  margin-left: 5px;
  font-weight: 500;
  text-transform: initial;
}

.tabswiper .rules-container .rules-content>p.two-date span {
  display: block;
}

.rules-container:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 8px 0 8px;
  border-color: #fff transparent transparent transparent;
  line-height: 0px;
  _border-color: #001e5a #000000 #000000 #000000;
  _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
  position: absolute;
  right: 24px;
  top: -10px;
  margin: auto;
  transform: rotate(180deg);
}

.rules-rankings {
  display: grid;
  grid-template-columns: auto auto;
  grid-row-gap: 10px;
  grid-column-gap: 30px;
  margin-bottom: 10px;
}

.rules-rankings p {
  padding: 10px 5px;
  text-align: center;
  background: #bea5f0;
  color: #fff;
  text-transform: uppercase;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rules-rankings p span {
  color: #fedd40;
  font-weight: bold;
  margin-right: 10px;
}

.rules-rankings .rank_img {
  width: 20px;
  margin-right: 10px;
}

.tabswiper .rules-container .rules-content:before {
  content: '';
  height: 91%;
  width: 3px;
  display: block;
  position: absolute;
  left: -3px;
  top: 8px;
  border-left: 3px dashed #ddd;
}

.z-11 {
  z-index: 11;
}

.game-bets {
  padding: 30px 0;
}

.game-bets #mybet,
.game-bets #allbet,
.game-bets #tournaments {
  position: relative;
  padding-bottom: 80px;
}

.game-bets ul.tabs {
  background: none;
}

.game-bets ul.tabs .indicator {
  display: none;
}

.game-bets ul.tabs li.tab {
  height: 35px;
  line-height: 35px;
}

.game-bets ul.tabs li a {
  color: #fff;
  border-radius: 50px;
  font-size: 12px;
}

.game-bets ul.tabs li a.active,
.game-bets ul.tabs li a:focus.active {
  background-color: #5d1dd9;
  color: #fff;
}

.game-bets ul.tabs li a:focus {
  background: none;
}

.game-bets .table-wrap {
  padding: 20px 0;
  max-height: 408px;
  overflow: hidden;
  transition: all .5s;
  font-size: 12px;
  overflow-x: auto;
}

.game-bets .table-wrap.max100 {
  max-height: initial;
}

.game-bets .table-wrap table th {
  color: #aaa;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-bets .table-wrap table tr {
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.game-bets .table-wrap table tr th,
.game-bets .table-wrap table tr td {
  padding: 5px;
  font-size: 10px;
  white-space: nowrap;
  text-align: left;
}

.game-bets .table-wrap table tr .slot-icon {
  width: 15px;
  position: relative;
}

.game-bets .table-wrap table tr span.rs {
  background: linear-gradient(90deg, #ffb961 50%, #fbad4b 50%);
  border: 3px #f79419 solid;
  width: 20px;
  height: 20px;
  border-radius: 120px;
  font-size: 10px;
  margin-right: 5px;
  display: inline-block;
  line-height: 14px;
  text-align: center;
}

.game-bets .table-wrap table tr .rank_img {
  width: 20px;
}

.extender {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 10px;
  display: block;
  margin: auto;
  text-align: center;
  color: #fff;
  background: #5D1DD9;
  width: 150px;
  border-radius: 25px;
  padding: 10px;
  cursor: pointer;
}

.extender:before {
  content: "See more ↓";
}

.extender.dpdown:before {
  content: "See less ↑";
}

@media only screen and (max-width: 1440px) {
  .tabswiper .swiper-slide .swiper-tab .s-content .content-bottom {
    padding-bottom: 5px;
    font-size: 14px;
  }

  .tabswiper .rules-container {
    width: 350px;
  }

  .tabswiper .swiper-slide .swiper-tab .s-content .content-bottom p span {
    font-size: 14px;
  }

}

@media only screen and (max-width: 1280px) {
  .tabswiper .swiper-slide .swiper-tab .s-content .content-top .tab-tag+img {
    width: 110px;
  }

  .tabswiper .rules-container {
    width: 300px;
  }

  .rules-rankings {
    grid-column-gap: 10px;
  }
}


/* HOME SLOTS */
.swiper-container>.tabs__wrapper .swiper-btn-container {
  display: flex;
  gap: 0px;
  margin-bottom: 0;
}

.swiper-container>.tabs__wrapper .swiper-btn-container>* {
  height: 22px;
  /* padding: 0 12px; */
  width: 34px;
  border: 1px #fff solid;
  display: grid;
  place-items: center;
}

.tabs__wrapper .swiper-btn-container .swiper-button-disabled {
  opacity: 0.6;
  pointer-events: none;
}

.swiper-container>.tabs__wrapper .swiper-btn-container .swiper-prev-btn {
  border-radius: 20px 0px 0px 20px;
}


.swiper-container>.tabs__wrapper .swiper-btn-container .swiper-next-btn {
  border-radius: 0px 20px 20px 0px;
}

.swiper-container>.tabs__wrapper .swiper-btn-container img {
  height: 7px;
}

.swiper-container>.tabs__wrapper .swiper-btn-container>*:hover img {
  zoom: 1.2;
}


#slot-home-container .tabContent {
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.show-home-slots {
  height: fit-content !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.show-home-lanzamientos {
  height: fit-content !important;
  opacity: 1 !important;
  visibility: visible !important;
}


.hotgames__section .hotgames__wrapper .home-slots-tabs {
  text-transform: uppercase;
}

.allgames__wrapper.swiper-wrapper .games__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}


.hotgames__section .hotgames__wrapper .tabContent .tab_wrapper .tabgames .allgames__wrapper.swiper-wrapper {
  gap: 0;
  margin-bottom: 0;
}

.tabgames.swiper-container .tabs__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#slot-home-container .tab_wrapper {
  margin-top: 0;
}

#providerHomeSelect .swiper-slide {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.home-slots-tabs a {
  background-color: #222;
  padding: 10px;
  border-radius: 25px;
  display: grid;
  place-content: center;
}

.home-slots-tabs a.active {
  background-color: #5e1cd9;
}

.home-slots-tabs img {
  height: 17px;

}

.game-grid-search {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 15px;
}

#slot-home-container .title a {
  color: #fff !important;
}

.table-group-contents {
  padding: 0;
  border-left: 1px solid #5b9bd5;
  position: relative;
  margin-bottom: 40px;
}

.table-group-item .table-title-group:before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  background: #5b9bd5;
  position: absolute;
  left: -10px;
  margin-top: -20px;
}

.table-group-item {
  max-width: 90%;
  margin: auto;
  margin-bottom: 60px;
}

.table-group-item p {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .6);
  margin-bottom: 20px;
  text-align: center;
}

.table-group-item .table-title-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

.table-group-item .table-title-group p {
  width: 50%;
  margin: 0 10px 20px;
}

.game-bets #leaderboard {
  position: relative;
  padding-bottom: 65px;
}

/* megaways promo */
.megaways_games {
  overflow: hidden;
  background: #321172;
  padding: 15px 15px 25px 15px;
  border-radius: 20px;
  margin: 20px 0;
}
.megaways_games .swiper .swiper-wrapper a img{
  width: 100%;
  height: auto;
  max-height: 300px;
  display: block;
  margin: auto;
  border-radius: 20px;
}
.megaways_games .swiper .swiper-pagination {
  padding-top: 10px;
  bottom: unset;
}

/* Lanzamientos */

#topGamesAll .allgames__wrapper.swiper-wrapper .games__wrapper {
  display: inline-block;
}

#topGamesAll .nodata {
  width: 100%;
  height: 154px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #aaa;
  font-size: 16px;
  background: #141414;
  border-radius: 15px;
  max-width: 100vw;
}

#topGamesContainer .total-player,
#topGamesContainer .total-bets {
  position: absolute;
  top: 2px;
  right: 2px;
  background: #5e1dd9;
  border-radius: 4px;
  z-index: 2;
  font-size: 10px;
  padding: 2px;
}

#topGamesContainer .total-bets {
  top: 23px;
}

#slot-home-container #topGamesContainer {
  display: flex;
}
ul.numbered_type li{
  font-size: 18px;
  color: #fff;
  list-style-type: decimal;
}
div.activity-links {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
  flex-wrap: wrap;
}
div.activity-links a {
  width: 155px;
  height: 50px;
  text-align: center;
  border: 1px solid #ed7d31;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #fff;
}
div.activity-links a:hover {
  border: 1px solid #ed7d31;
  color: #fff;
  background: #ed7d31;
}
div.anniv_acts {
  display: grid;
  margin-bottom: 20px;
}
div.anniv_acts div a {
  display: flex;
  justify-content: flex-end;
}

#modal1 {
  background: none;
  box-shadow: none;
  top: 20% !important;
  width: 90%;
}

#modal1 .modal-content {
  padding: 0;
  padding-top: 35px;
}

#modal1 .modal-close {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #5e1dd9;
  border-radius: 50px;
  padding: 0;
  line-height: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.activity1-container div a img {
  width: 100%;
  border-radius: 10px;
}
.activity3-container div a img {
  width: 100%;
  border-radius: 10px
}

/* // Loadder Lanzamientos */
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loaderLanza {
  display: none;
  justify-content: center;
  align-items: center;
  min-height: 154px;
}

.filter {
    margin: 10px 0;
}

.filter ul li a {
  color: #fff;
  font-size: 14px;
  display: block;
  /* padding: 5px 15px; */
  width: 100%;
  text-align: center;
  background-color: #222;
  border-radius: 25px;
  display: grid;
  place-content: center;
  height: 37px;
}
.filter ul li a img {
  width: 85px;
}

.filter ul li a.active {
  background-color: #5e1cd9;
}

section.hotgames__section .hotgames__list__wrapper .hotgames__box img {
  width: 138px;
  border-radius: 25px
}

#smashgames {
  position: relative
}

.smashCat-swiper-btn {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
  top: -85px;
}

.smashCat-swiper-btn .swiper-button-prev {
  height: 22px;
  width: 34px;
  border: 1px #fff solid;
  border-radius: 20px 0 0 20px;
  place-content: center;
  display: grid;
  cursor: pointer;
  position: static;
  background: 0 0
}

.smashCat-swiper-btn .swiper-button-next {
  height: 22px;
  width: 34px;
  border: 1px #fff solid;
  border-radius: 0 20px 20px 0;
  place-content: center;
  display: grid;
  cursor: pointer;
  position: static;
  background: 0 0
}

.smashCat-swiper-btn img {
  height: 7px;
}

#topGamesAll .game__container .game__box {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 160px;
}

#topGamesAll .game__container .game__box.crashbox {
  background: url(../images/banner/thumbnails/smash-icons-crash-300x409.jpg?=v0.4) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.doublebox {
  background: url(../images/banner/thumbnails/smash-icons-double-300x409.jpg?v0.1) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.dicebox {
  background: url(../images/banner/thumbnails/smash-icons-dice-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.minesbox {
  background: url(../images/banner/thumbnails/smash-icons-mines-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.hilobox {
  background: url(../images/banner/thumbnails/smash-icons-hilo2-300x409.png) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.comingsoon {
  background: url(../images/banner/thumbnails/Coming-Soon-template.jpg?=v0.5) no-repeat;
  background-size: cover;
  background-position: center;
}

/** BGaming orignals  **/
#topGamesAll .game__container .game__box.bg-crash {
  background: url(../images/banner/thumbnails/bg-crash.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-plinko {
  background: url(../images/banner/thumbnails/bg-plinko.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-mines {
  background: url(../images/banner/thumbnails/bg-mines.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-dice {
  background: url(../images/banner/thumbnails/bg-dice.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-coins {
  background: url(../images/banner/thumbnails/bg-coins.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-hilo {
  background: url(../images/banner/thumbnails/bg-hilo.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-blackjack {
  background: url(../images/banner/thumbnails/bg-blackjack.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-rocket-dice {
  background: url(../images/banner/thumbnails/bg-rocket-dice.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.bg-hold-em {
  background: url(../images/banner/thumbnails/bg-hold-em.png?=v0.3) no-repeat;
  background-size: cover;
  background-position: center;
}

/* pgsoft and pp original tab games */
#topGamesAll .game__container .game__box.pg1 {
  background: url(../images/game/PGsoft/1543462.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pg2 {
  background: url(../images/game/PGsoft/fortune-tiger.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pg3 {
  background: url(../images/game/PGsoft/fortune-ox.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pg4 {
  background: url(../images/game/PGsoft/fortune-mouse.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pg5 {
  background: url(../images/game/PGsoft/dragon-hatch.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pg6 {
  background: url(../images/game/PGsoft/ganesha-gold.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp1 {
  background: url(../images/game/pragmatic-2023/1301.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp2 {
  background: url(../images/game/pragmatic-2023/vs20olympgate.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp3 {
  background: url(../images/game/pragmatic-2023/vs20sugarnudge.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp4 {
  background: url(../images/game/pragmatic-2023/vs10bbbonanza.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp5 {
  background: url(../images/game/pragmatic-2023/vs20fruitsw.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

#topGamesAll .game__container .game__box.pp6 {
  background: url(../images/game/pragmatic-2023/vs12bbb.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}

/*  */
#topGamesAll .game__container .hp__swiper__bgaming .game__box {
  height: 110px;
}

#topGamesAll .game__container .bgGaming .game__box {
  height: 110px;
}

@media only screen and (max-width: 1201px) {

  /* #topGamesAll .game__container .game__box {
    height: 115px;
  } */
  #topGamesAll .game__container .game__box .overlay__box a img {
    width: 40px;
  }
}

#topGamesAll .game__container .bgaming__box {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 20px 17px;
}

#topGamesAll .game__container .og_pp_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}

#topGamesAll .game__container .og_pgsoft_container {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 10px;
}

#topGamesAll .game__container .game__box img.xmas-gift {
  position: absolute;
  top: 6px;
  right: 5px;
  width: 20px;
  z-index: 1;
  border-radius: 0;
}

#topGamesAll .game__container .game__box .new__icon,
.yellow-tag-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
  clip-path: polygon(29% 0, 0 0, 0 29%);
  -webkit-clip-path: polygon(29% 0, 0 0, 0 29%);
  background: #ffc107;
  width: 135px;
  height: 135px;
  border-radius: 15px 0 0 0;
}

#topGamesAll .game__container .game__box .new__icon .new__text,
.new-tag-text {
  display: block;
  transform: rotate(317deg);
  position: absolute;
  top: 5px;
  left: 3px;
  font-size: 10px;
}

#topGamesAll .game__container .game__box .img_thumb img {
  -webkit-transform: rotate(0.02deg);
  transform: rotate(0.02deg);
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  will-change: transform;
  min-height: 148px;
}

#topGamesAll .game__container .game__box .overlay__box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  background: rgb(49 52 60 / 73%);
  opacity: 0;
  z-index: 2;
  border-radius: 15px;
}

#topGamesAll .game__container .game__box:hover .overlay__box {
  opacity: 1;
}

#topGamesAll .game__container .game__box .overlay__box a img {
  width: 50px;
}

div.logo_gift_logged {
  display: flex;
  gap: 10px;
  padding-left: 0;
  align-items: center;
}
div.logo_gift_logged img.logo_logged {
  width: 100px !important;
}
div.logo_gift_logged img.gift_header {
  margin: auto;
  justify-content: center;
  display: flex;
}
div.header_logo_gift {
  display: flex;
  gap: 10px;
  align-items: center;
}
div.header_logo_gift a img.gift_header_non {
  margin: auto;
  justify-content: center;
  display: grid;
  width: 25px;
}
.shake-lr {
	-webkit-animation: shake-lr 5s linear infinite both;
	        animation: shake-lr 5s linear infinite both;
}
@-webkit-keyframes shake-lr {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}
@keyframes shake-lr {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  10% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
  90% {
    -webkit-transform: rotate(8deg);
            transform: rotate(8deg);
  }
}