@import url("./font/font.css");

@viewport {
  width: device-width;
  zoom: 1;
}

body {
  font-family: "merri", sans-serif;
}

.desktop {
  display: block;
}
.mobile {
  display: none;
}

::-webkit-scrollbar {
  background: var(--quinary-color);
  width: 11px;
}
::-webkit-scrollbar-thumb {
  background: var(--quinary-color);
  border: 3px solid var(--quaternary-color);
}
::-webkit-scrollbar-track {
  background: var(--quaternary-color);
  border-radius: 0px;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.2;
  font-size: 15px;
  color: var(--body-text-color);
  background: var(--body-background-color);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover,
a:focus,
button:focus,
button:hover,
input:focus,
select:focus {
  text-decoration: none;
  outline: none;
}

img {
  max-width: 100%;
}


button {
  background: none;
  border: none;
  padding: 0;
}




.floating-chat {
  position: fixed;
  right: 5px;
  bottom: 100px;
  z-index: 999;
  animation: 1.8s float ease-in-out infinite;
}
.floating-chat:hover a img {
  filter: brightness(1.1) drop-shadow(0 0 5px rgb(255, 255, 255, 0.6));
  transform: scale(0.97);
}

/*====================== Form ======================
=======================================================*/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
input[type="number"],
textarea,
select {
  background: #2c3247;
  color: var(--tertiary-text-color);
  border: none;
  height: 40px;
  padding: 4px 15px 4px 50px;
  border-radius: 8px;
}
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="tel"]::placeholder,
input[type="url"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #cbcbcb;
}

.small { color: #ff0f0f; }

input#customform_UserName,
input#customform1_UserName,
input#registerform_UserName {
  background-image: url(/data/2135/uploads/username.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#customform_Password,
input#customform1_Password,
input#registerform_Password {
  background-image: url(/data/2135/uploads/password.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input.btnCheckUser {
  position: relative;
  width: 90px;
  background: var(--secondary-text-color);
  height: 40px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
  border: 0;
}
input.btnCheckUser:hover {
  filter: brightness(1.3);
}
input#customform_submit,
input#customform1_submit,
input#registerform_btnSubmit {
  background: var(--primary-color);
  border: none;
  border-radius: 45px;
  color: var(--tertiary-text-color);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  min-width: 220px;
  height: 40px;
  padding: 2px 15px;
  transition: 0.2s;
}
input#customform_submit:hover,
input#customform1_submit:hover,
input#registerform_btnSubmit:hover {
  filter: brightness(1.1);
  transform: scale(0.98);
  transition: 0.2s;
}

/*======== Side Menu (page name - menu-left / menu-item) ========
=======================================================*/
.nav > li > a:focus,
.nav > li > a:hover {
  background: var(--quinary-color);
  color: var(--primary-text-color);
}

.side-menu {
  position: fixed;
  width: 300px;
  padding: 0 15px 15px;
  transition: 0.3s;
  background: var(--menu-bg-color);
  height: 100%;
}

.body-container.active .side-menu {
  width: 65px;
  padding: 0;
  transition: 0.3s;
}
.body-container.active .sidemenu-wrapper {
  height: 81vh;
}
.body-container.active .sidemenu-wrapper.logined {
  height: 73vh;
}
.body-container.active ul.nav.sidemenu-nav {
  padding-right: 0;
  margin: 0 10px;
}
.body-container.active ul.nav.sidemenu-nav li {
  margin: 1px 0px;
}
.body-container.active ul.nav.sidemenu-nav li a.smenu-item img,
.smenu-wrap a img {
  margin: 0 10px;
}
.body-container.active ul.nav.sidemenu-nav li a.smenu-item {
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  justify-content: center;
}
.body-container.active .smenu-text {
  display: none;
}
.body-container.active .language-wrap {
  margin: 0 5px;
}
.body-container.active button.lang-btn.dropup {
  width: 50px;
  padding: 3px 6px;
  height: 30px;
}
.body-container.active button.lang-btn.dropup img {
  max-height: 20px;
  margin-right: 0;
  transition: 0.3s;
}
.body-container.active button.lang-btn.dropup::after {
  font-size: 8px;
  right: 8px;
}
.body-container.active .dropdown-menu.language {
  min-width: auto;
  font-size: 15px;
  max-width: 50px;
  width: 100%;
}
.body-container.active a.lang-link {
  padding: 5px 6px;
  text-align: center;
}
.body-container.active a.lang-link img {
  max-height: 25px;
  margin-right: 0;
}

.sm-btn-wrap {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
button.sidemenu-btn {
  position: relative;
  z-index: 99;
  background: var(--quinary-color);
  color: #9bacc9;
  width: 40px;
  height: 30px;
  font-size: 12px;
  border-radius: 45px;
  box-shadow: 0 0 6px rgb(0, 0, 0, 0.3);
}
button.sidemenu-btn:hover {
  filter: brightness(1.3);
}

.sidemenu-wrapper {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 81vh;
}
.sidemenu-wrapper.logined {
  height: 60vh;
}
.sidemenu-wrapper::-webkit-scrollbar {
  width: 6px;
}
.sidemenu-wrapper::-webkit-scrollbar-track {
  background: var(--wrapper-bg-color);
  border: 1px solid var(--wrapper-bg-color);
  border-radius: 30px;
}
.sidemenu-wrapper::-webkit-scrollbar-thumb {
  background: var(--quinary-color);
  border-radius: 30px;
}
.sidemenu-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--quinary-color);
}
ul.nav.sidemenu-nav {
  flex-direction: column;
  padding-right: 10px;
}
ul.nav.sidemenu-nav li {
  position: relative;
  width: 100%;
}
ul.nav.sidemenu-nav li a.smenu-item {
  display: flex;
  align-items: center;
  color: var(--menu-text-color);
  border-radius: 40px;
  padding: 10px 10px 10px 25px;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  text-shadow: 0 1px 1px #6262ff;
}
ul.nav.sidemenu-nav li a.smenu-item img,
.smenu-wrap a img {
  max-height: 27px;
  margin-right: 15px;
}
ul.nav.sidemenu-nav li a.smenu-item.collapsed {
  background: none;
}
ul.nav.sidemenu-nav li a.smenu-item:hover {
  background: var(--menu-hover-bg-color);
}

.language-wrap {
  position: relative;
  padding: 10px 0;
}
.language-wrap.open button.lang-btn.dropup::after {
  transform: rotate(180deg);
}
button.lang-btn.dropup {
  position: relative;
  background: #1c1c32;
  border: 1px solid #2a3246;
  border-radius: 45px;
  width: 100%;
  padding: 3px 20px;
  height: 45px;
  text-align: left;
  color: var(--tertiary-text-color);
}
button.lang-btn.dropup img {
  max-height: 30px;
  margin-right: 15px;
  transition: 0.3s;
}
button.lang-btn.dropup::after {
  content: "\f077";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 10px;
  color: #cccccc;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  transition: linear 0.3s;
}

.dropdown-menu.language {
  background: #1c1c32;
  padding: 0;
  margin: 5px 0;
  border: 0;
  border-radius: 10px;
  min-width: 100%;
  overflow: hidden;
  font-size: 15px;
}
a.lang-link {
  display: block;
  width: 100%;
  color: var(--tertiary-text-color);
  padding: 8px 20px;
}
a.lang-link img {
  max-height: 30px;
  margin-right: 15px;
}
a.lang-link:hover {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
}

/*======== Mobile Side Menu (page name - menu-left / menu-item) ========
=======================================================*/
.modal.left .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}
.modal.left.fade .modal-dialog {
  left: -100%;
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
}
.modal.left.fade.in .modal-dialog {
  left: 0;
}
.modal.left .modal-content {
  height: 100%;
  overflow-y: auto;
}
.modal-content.mobile-side {
  display: block;
  background: var(--quaternary-color);
  border: none;
  border-radius: 0;
}

button.close-menu {
  position: absolute;
  right: 15px;
  top: 17px;
  color: #9bacc9;
  font-size: 18px;
}
.mobile-menu-top {
  background: var(--quaternary-color);
  border-bottom: 1px solid var(--primary-color);
  padding: 5px 15px;
  height: 55px;
  display: flex;
  align-items: center;
}
.mb-logo img {
  max-height: 40px;
}
.mobile-sidemenu {
  position: relative;
  overflow: auto;
  height: 90vh;
}
.mobile-sidemenu .sidemenu-wrapper {
  overflow-x: visible;
  height: auto;
  margin: 0 15px;
}
.mobile-sidemenu .language-wrap {
  margin: 0 15px;
}


/*===================== Body ==========================
=======================================================*/
.body-container {
  display: grid;
  grid-template-columns: 300px auto;
  transition: 0.3s;
}
.body-container.active {
  grid-template-columns: 65px auto;
  transition: 0.3s;
}
.t-body {
  overflow: hidden;
}
.t-inner-body {
  position: relative;
  padding-top: 80px;
}
.max-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


/*======== Header (page name - header-link) ========
=======================================================*/
.header-sec {
  position: fixed;
  right: 0;
  z-index: 99;
  background: var(--menu-bg-color);
  width: calc(100% - 300px);
  transition: 0.3s;
}
.body-container.active .header-sec {
  width: calc(100% - 65px);
  transition: 0.3s;
}
.header-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 65px;
  padding: 0 10px;
}
.header-left-wrapper {
  display: flex;
  align-items: center;
}
.logo {
  margin-right: 30px;
}
.logo img {
  max-height: 55px;
}

.hdright-wrap {
  display: flex;
  align-items: center;
}
.logreg-wrap {
  display: flex;
  align-items: center;
}

button.login-btn {
  position: relative;
  min-width: 80px;
  background: var(--secondary-text-color);
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
}
.logreg-wrap button:hover {
  filter: brightness(1.3);
}
button.register-btn {
  position: relative;
  min-width: 80px;
  background: var(--primary-color);
  height: 35px;
  border-radius: 5px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
}


/*======== Home Banner (page name - home) ========
=======================================================*/
.flexslider {
  border: none;
  background: transparent;
  margin: 0 0 30px 0;
}
.flexslider .slides a:before {
  content: "";
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(
    270deg,
    rgb(45 50 73 / 60%) 0%,
    rgba(45 50 73 / 0) 100%
  );
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  border-radius: 0 20px 20px 0;
}
.flexslider .slides a:after {
  content: "";
  display: block;
  width: 8%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgb(45 50 73 / 60%) 0%,
    rgba(45 50 73 / 0) 100%
  );
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  border-radius: 20px 0 0 20px;
}
.flexslider .slides img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  width: 80%;
  margin: auto;
}

.flexslider:hover .flex-direction-nav .flex-prev,
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 1;
}
.flex-control-nav {
  bottom: 0;
  z-index: 10;
}
.flex-control-paging li a {
  width: 50px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
}
.flex-control-paging li a:hover {
  background: var(--primary-color);
  filter: drop-shadow(0px 2px 5px var(--primary-color)) brightness(1.5);
}
.flex-control-paging li a.flex-active {
  background: #fff;
  filter: drop-shadow(0px 2px 5px #fff) brightness(1.5);
}
.flex-direction-nav a:before,
.flex-direction-nav a:before {
  color: rgba(255, 255, 255, 0.5);
}


/*======== Home Jackpot (page name - jackpot) ========
=======================================================*/
.jackpot-sec {
  padding: 15px 0;
}
.jackpot-bg {
  position: relative;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(0deg, #000000, #131723);
  width: calc(100% - 30px);
  height: 150px;
  border: 7px solid var(--secondary-color);
  outline: 15px inset var(--primary-color);
  border-radius: 35px;
}
.floating:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  bottom: -4%;
  left: 15%;
  background: url(/data/2135/uploads/fimg7.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1)
    brightness(1.1);
  animation: floatimg1 2s infinite ease-in-out alternate;
  transform: translateY(0) translateX(0) scale(1);
}
@keyframes floatimg1 {
  from 0% {
    transform: translateY(0) translateX(0) scale(1);
  }
  100% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }
}
.floating:after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  top: -4%;
  right: 15%;
  background: url(/data/2135/uploads/fimg8.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  filter: drop-shadow(-2px 4px 4px rgba(0, 0, 0, 0.3)) contrast(1.1)
    brightness(1.1);
  animation: floatimg2 2s infinite ease-in-out alternate;
  transform: translateY(-5%) translateX(-5%) scale(1.05);
}
@keyframes floatimg2 {
  from 0% {
    transform: translateY(-5%) translateX(-5%) scale(1.05);
  }
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
}

.jackpot-position {
  font-size: 34px;
  color: var(--body-text-color);
  position: absolute;
  font-weight: bold;
  width: 330px;
  text-shadow: 0px 1px 6px rgba(255, 255, 255, 0.7);
}
.jptittle {
  text-align: center;
  width: fit-content;
  display: block;
  font-size: 20px;
  letter-spacing: 6px;
  border-bottom: 3px dashed var(--quinary-color);
  padding-top: 5px;
  padding-left: 6px;
  padding-bottom: 5px;
  margin: auto;
  margin-bottom: 5px;
}
.jpprice {
  margin-left: 22.5px;
}
.jackpot-position #foo {
  letter-spacing: 1px;
}



/*======== Home Prod ========
=======================================================*/
.home-custom-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
}
.hc-content-item {
  height: 230px;
  overflow: hidden;
}
.hc-content-item:hover .hc-content-display {
  height: 240px;
  transition: 0.5s;
}
.hc-content-item:hover .hc-sub-content-display p {
  bottom: 55px;
  transition: 0.5s;
}
.hc-content-item:hover .plynwbtn:before {
  bottom: 45px;
  height: 100px;
  transition: 0.5s;
}
.hc-content-item:hover .plynwbtn span {
  transform: translateY(0);
  transition: 0.5s;
  margin-bottom: 10px;
}
.index-1 {
  background: url(/data/2135/uploads/hl-bg3n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-2 {
  background: url(/data/2135/uploads/hl-bg2n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-3 {
  background: url(/data/2135/uploads/hl-bg1n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.index-4 {
  background: url(/data/2135/uploads/hl-bg5n.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.hc-content-display {
  height: 230px;
  position: relative;
  transition: 0.5s;
}
.display1 {
  background: url(/data/2135/uploads/hm1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display2 {
  background: url(/data/2135/uploads/hm2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display3 {
  background: url(/data/2135/uploads/hm3.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.display4 {
  background: url(/data/2135/uploads/hm5.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.hc-sub-content-display p {
  font-size: 24px;
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  transition: 0.5s;
  font-weight: bold;
  z-index: 1;
  color: var(--tertiary-text-color);
}
.plynwbtn {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding-top: 100px;
}
.plynwbtn:before {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  position: absolute;
  bottom: 0;
  transition: 0.5s;
}
.plynwbtn span {
  width: 100%;
  height: 45px;
  border-radius: 10px 10px 0px 0px;
  display: grid;
  place-items: center;
  -webkit-box-align: center;
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  position: relative;
  transform: translateY(85%);
  transition: 0.5s;
}


/*======== Home Game - Slots/Casino/Providers - (page name - providers) ========
=======================================================*/
.ftgame-container {
  position: relative;
  margin: 0 0 30px;
}
.fgtitle {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.hot-icon {
  margin-right: 7px;
}
.hot-icon img {
  height: 25px;
  filter: brightness(1.2) hue-rotate(300deg);
}


.owl-carousel,
.owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}
.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}
.slots-slider .owl-stage-outer {
  padding: 5px 0;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-item,
.owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.tumbox {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  transition: 0.3s;
  cursor: pointer;
}
.tumbox:hover {
  transition: 0.3s;
  transform: translateY(-3px);
  opacity: 0.6;
}
.gname {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  font-size: 13px;
  cursor: pointer;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-theme .owl-dots,
.owl-theme .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav {
  margin-top: 10px;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-theme .owl-nav [class*="owl-"] {
  color: var(--tertiary-text-color);
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*="owl-"]:hover {
  background: #869791;
  color: var(--tertiary-text-color);
  text-decoration: none;
}
.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-theme.slots-slider .owl-nav button.owl-prev {
  position: absolute;
  right: 42px;
  top: -120%;
  bottom: 0;
  font-size: 22px;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: #2b3247;
  z-index: 3;
  line-height: 0;
  padding-bottom: 2px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.owl-theme.slots-slider .owl-nav button.owl-next {
  position: absolute;
  right: 5px;
  top: -120%;
  bottom: 0;
  font-size: 22px;
  border-radius: 5px;
  height: 30px;
  width: 30px;
  margin: auto;
  background: #2b3247;
  z-index: 3;
  line-height: 0;
  padding-bottom: 2px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.owl-theme.slots-slider .owl-nav button.owl-next:hover,
.owl-theme.slots-slider .owl-nav button.owl-prev:hover {
  background: var(--primary-color);
  transition: 0.5s;
}
/*.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
  display: none;
}*/
.providers-sec .owl-carousel .owl-dots.disabled,
.providers-sec .owl-carousel .owl-nav.disabled {
  display: none;
}
.owl-carousel.slots-slider::after {
  content: "";
  background: linear-gradient(
    270deg,
    rgba(27, 32, 51, 1) 0%,
    rgba(27, 32, 51, 0) 100%
  );
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.providers-slider {
  margin-top: 10px;
}
.logo-box {
  background: #2b3247;
  padding: 10px 5px;
  border-radius: 10px;
  position: relative;
}
.logo-box img {
  width: auto;
  max-width: 90%;
  margin: auto;
}


/*======== Home Seo ========
=======================================================*/
.seo-sec {
  padding: 15px 0;
}
.seo-container {
  background: #161827;
  padding: 20px 20px;
  border-radius: 20px;
}
.seo-wrapper {
  position: relative;
  overflow: hidden;
  font-size: 13px;
  max-height: 300px;
}
.seo-wrapper::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(22, 24, 39, 0) 0%,
    rgba(22, 24, 39, 1) 91%,
    rgba(22, 24, 39, 1) 100%
  );
  width: 100%;
  height: 30%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}
.seo-container.active .seo-wrapper {
  max-height: none;
}
.seo-container.active .seo-wrapper::after {
  content: none;
}

.seo-wrapper h1 {
  font-size: 17px;
  font-weight: 700;
}
.seo-wrapper h2 {
  font-size: 16px;
  font-weight: 700;
}
.seo-wrapper h3 {
  font-size: 15px;
  font-weight: 700;
}
.seo-wrapper h4 {
  font-size: 14px;
  font-weight: 500;
}
.seo-wrapper h5 {
  font-size: 13px;
  font-weight: 500;
}
.seo-wrapper p {
  margin-bottom: 15px;
}
.seo-wrapper a {
  color: var(--tertiary-text-color);
  text-decoration: underline;
}
.seo-wrapper a:hover {
  color: var(--secondary-text-color);
}
.readmore-seo {
  text-align: center;
  margin-top: -40px;
}
.seo-container.active .readmore-seo {
  margin-top: 0;
}
button.read-more {
  position: relative;
  min-width: 100px;
  background: var(--quinary-color);
  height: 35px;
  border-radius: 7px;
  margin: 0 auto 0 8px;
  color: var(--tertiary-text-color);
  font-size: 14px;
  padding: 2px 10px;
}
button.read-more:hover {
  opacity: 0.6;
}


/*======== Footer (page name - system configuration) ========
=======================================================*/
.footer-sec {
  position: relative;
  padding: 15px 0 10px;
  color: #aaa;
}
.mobile-footer-column {
  display: none;
}
.footer-btm-wrapper {
  display: grid;
  grid-template-columns: 30% 40% 30%;
  font-size: 13px;
  border-bottom: 1px dashed #f3f5f6;
  padding: 20px 0;
}

.footer-column {
  position: relative;
  border-right: 1px dashed #f3f5f6;
  padding: 0px 10px;
}
.footer-column:last-child {
  border-right: none;
}
.ft-title {
  font-weight: 500;
  color: var(--secondary-text-color);
  margin-bottom: 8px;
}
.footer-btm-wrapper .ft-title {
  color: #aaa;
  font-weight: 400;
}

.ft-icon img {
  margin: 5px 5px;
}
.ft-payment img {
  max-height: 25px;
  margin: 5px 3px;
}
.ft-social img {
  max-height: 45px;
  margin: 5px 2px;
}
.footer-sec a {
  color: #aaa;
}
.footer-sec a:hover {
  color: var(--primary-text-color);
  text-decoration: underline;
}

.footer-copyright {
  font-size: 13px;
  text-align: center;
  padding: 10px 0 0;
}


/*======== Mobile Menu Bottom (page name - menu bottom) ========
=======================================================*/
.mobile-btm-sec {
  position: fixed;
  background: var(--quaternary-color);
  border-radius: 12px 12px 0 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0 -1px 6px rgb(0, 0, 0, 0.4);
  display: none;
}
ul.btm-menu-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  text-align: center;
  height: 58px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
a.bmenu-link {
  color: #9bacc9;
  font-size: 12px;
  font-weight: 500;
  display: block;
  padding: 5px 1px;
  position: relative;
}
.bmimg {
  margin-bottom: 2px;
  height: 25px;
}
.bmimg img {
  max-height: 25px;
}
.bmimg.rwc-img img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50%;
  margin: 0 auto;
  max-height: 45px;
}
.bmtext {
  line-height: 1;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}


/*======== Login Modal (page name - login) (call from system configuration footer) ========
=======================================================*/
.modal-dialog.login {
  max-width: 700px;
}
.modal-content.login {
  background: var(--quaternary-color);
  border: none;
  color: #535e76;
  padding: 25px;
  text-align: center;
}
button.close-x {
  background: none;
  color: var(--tertiary-text-color);
  border: none;
  padding: 0;
  font-size: 18px;
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 2;
}
button.close-x:hover {
  color: var(--primary-text-color);
}

.login-logo {
  padding-bottom: 30px;
}
.login-logo img {
  max-height: 55px;
}

.login-wrapper {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  padding-bottom: 40px;
}

.regnow-text {
  font-size: 16px;
}
.regnow-text a {
  color: var(--secondary-text-color);
}
.regnow-text a:hover {
  color: var(--tertiary-text-color);
}

.reg-line {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 0px 0 20px;
}
.reg-line.login {
  background: #535e76;
  height: 1px;
  width: 100%;
  margin: 20px 0 20px;
}
.note-issues {
  font-size: 13px;
  max-width: 400px;
  margin: 0 auto;
}


/*======== Register (page name - registration) ========
=======================================================*/
.reg-sec {
  padding: 15px 0 30px;
}
.register-wrapper {
  display: grid;
  grid-template-columns: 45% 55%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 30px;
  background: #131623;
}
.reg-left-column {
  padding: 20px;
}
.regtitle {
  display: none;
}

input#registerform_UserName {
  width: calc(100% - 98px);
  float: left;
}
input#registerform_CPassword {
  background-image: url(/data/2135/uploads/cpassword.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_FullName {
  background-image: url(/data/2135/uploads/pencil.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
select#registerform_Currency {
  background-image: url(/data/2135/uploads/ccurrency.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_Mobile {
  background-image: url(/data/2135/uploads/phone.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_PromotionCode {
  background-image: url(/data/2135/uploads/affiliate.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
}
input#registerform_varifycode {
  background-image: url(/data/2135/uploads/captcha.png);
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: left 16px center;
  width: calc(100% - 98px);
  float: left;
}
img#regcaptcha {
  position: relative;
  width: 90px;
  height: 40px;
  border-radius: 8px;
  margin: 0 auto 0 8px;
  padding: 0;
  border: 0;
}

#groupSubmit {
  text-align: center;
}
.agree-text {
  font-size: 14px;
  color: #535e76;
}
.greentext,
.agree-text a {
  color: var(--secondary-text-color);
}
.agree-text a:hover {
  color: var(--tertiary-text-color);
}

.reg-right-column {
  background: #161b2a;
  padding: 30px 20px 20px;
}
.fun-begin {
  padding: 0 5px;
}
.regtext-1 {
  color: var(--tertiary-text-color);
  font-weight: 700;
  font-size: 24px;
}
ol.fun {
  padding: 10px 0 0px 17px;
  font-size: 17px;
}
ol.fun li {
  padding-bottom: 10px;
}
ol.fun .greentext {
  font-weight: 700;
}

.reg-feature-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
}


/*======== Back To Top Button (page name - system configuration footer) ========
=======================================================*/
button.back-to-top i.fas.fa-angle-up.fa-chevron-right {
  transform: rotate(-90deg);
}
button.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 10px;
  background: var(--quinary-color);
  border: none;
  color: var(--tertiary-text-color);
  height: 45px;
  width: 45px;
  border-radius: 10px;
  font-size: 25px;
  padding: 5px;
  z-index: 100;
}
button.back-to-top:hover {
  background: var(--primary-color);
  transform: scale(0.98);
}


/*======== All Page Product (page name - lottery/casino) ========
=======================================================*/
.product-game-sec {
  position: relative;
  padding: 50px 0 30px;
}
.tab-content > .active {
  display: block;
}
.display-game-wrap {
  background: var(--quaternary-color);
  border-radius: 12px;
  border-top: 2px solid #20273b;
  position: relative;
  text-align: center;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  margin-bottom: 20px;
}
.dg-column {
  position: relative;
  padding: 30px 15px;
}
.game-pvd-img {
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.game-pvd-img img {
  max-height: 75px;
}
.dg-subtitle {
  max-width: 380px;
  margin: 0 auto 10px;
  font-size: 15px;
}
button.gmplay-btn {
  background: var(--primary-color);
  color: var(--tertiary-text-color);
  height: 45px;
  font-size: 20px;
  min-width: 180px;
  border-radius: 8px;
  padding: 2px 15px;
}
button.gmplay-btn:hover {
    filter: brightness(1.3);
}

.dg-img-column {
  position: relative;
  padding: 50px 30px 35px 0;
}
.casino-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 48%;
  margin: 0 auto;
  z-index: 3;
}
.casino-character img {
  max-height: 400px;
}
.deco {
  position: absolute;
}

.nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
ul.nav.nav-provider-game {
  justify-content: center;
  margin: 0 -10px;
}
ul.nav.nav-provider-game li.nav-item {
  max-width: 190px;
  width: 15.5%;
  margin: 0.5%;
}
ul.nav.nav-provider-game a.nav-link {
  background: #2b3048;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: 0.3s;
}
ul.nav.nav-provider-game a.nav-link:hover {
  background: #141723;
  transition: 0.3s;
}
ul.nav.nav-provider-game a.nav-link img {
  max-height: 50px;
  max-width: 90%;
}
ul.nav.nav-provider-game .nav-item.active .nav-link {
  background-color: #2b3048;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 1) 0%,
    rgba(44, 59, 72, 0.9248949579831933) 40%,
    #104a62 100%
  );
  border: 1px solid var(--secondary-color);
}
@-webkit-keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/*======== Page Slots / Casino (page name - slots/livecasino) ========
=======================================================*/
.deco.gold-dice {
  left: 0;
  right: 0;
  top: -7%;
  max-width: 66%;
  margin: 0 auto;
  animation: 2.2s float ease-in-out infinite;
}

/*======== Page Sport (page name - sportsbook) ========
=======================================================*/
.sports-character {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 50%;
  margin: 0 auto;
  z-index: 3;
}
.deco.baseball {
  left: 17%;
  top: 38%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.pingpong {
  right: 11%;
  top: 11%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.volley {
  left: 19%;
  top: 34%;
  max-width: 13%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.bowling {
  top: 10%;
  right: 14%;
  max-width: 19%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.football {
  left: 15%;
  top: 37%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.shuttercock {
  top: 9%;
  right: 10%;
  max-width: 16%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.plate {
  left: 17%;
  top: 37%;
  max-width: 16%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.cup {
  right: 11%;
  top: 9%;
  max-width: 23%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.whitsle {
  left: 15%;
  top: 33%;
  max-width: 17%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.cup-2 {
  right: 15%;
  top: 8%;
  max-width: 26%;
  animation: 2.4s float ease-in-out infinite;
}

.sport-template {
  background: var(--quaternary-color);
  padding: 30px 20px 45px;
  border-radius: 20px;
  margin-bottom: 30px;
}

#api-leaguefeed {
  position: unset !important;
  text-align: center;
  height: unset !important;
}
#api-leaguefeed .brick {
  min-width: calc(20% - 10px);
  min-height: 178.17px;
  height: auto !important;
  margin: 5px;
  position: unset !important;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  border: 1px solid transparent;
  border-top: 2px solid #535c76;
  border-radius: 10px;
  background: #2b3048 !important;
}
#api-leaguefeed .brick > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#api-leaguefeed .brick > ul > li {
  padding: 5px 10px;
}
#api-leaguefeed #playtime {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
  text-align: center;
  border-radius: 10px 10px 0 0;
}
#api-leaguefeed #versus {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 0;
}
#api-leaguefeed #versus div:nth-child(1) { color: #0080ff; }
#api-leaguefeed #versus div:nth-child(2) { color: var(--black-color); font-size: 12px; }
#api-leaguefeed #versus div:nth-child(3) { color: red; }

#api-leaguefeed #livetv a,
#api-leaguefeed #livetv a:visited {
  display: block;
  color: var(--tertiary-text-color);
  text-decoration: none;
  text-align: center;
  background: var(--primary-color);
  padding: 10px;
  border-radius: 10px;
  transition: 0.3s;
}
#api-leaguefeed #livetv a:hover {
  background: var(--quinary-color);
  color: var(--secondary-text-color);
}
/*======== Page P2P (page name - p2p) ========
=======================================================*/
.deco.mahjong {
  left: 19%;
  top: 15%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.gold {
  right: 21%;
  top: 22%;
  max-width: 18%;
  animation: 2.4s float ease-in-out infinite;
}
.deco.pussy {
  left: 17%;
  top: 33%;
  max-width: 18%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.ace {
  left: 23%;
  top: 33%;
  max-width: 11%;
  animation: 2.2s float ease-in-out infinite;
}


/*======== Page Lottery / Battle (page name - lottery/battle) ========
=======================================================*/
.deco.rocket {
  left: 13%;
  top: 56%;
  max-width: 15%;
  animation: 2.2s float ease-in-out infinite;
}
.deco.firefish {
  right: 13%;
  top: 28%;
  max-width: 19%;
  z-index: 3;
  animation: 2.4s float ease-in-out infinite;
}

.liveresult-template {
  background: var(--quaternary-color);
  padding: 30px 20px 45px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.liveresult-template div:nth-child(2) {
  max-width: 1100px;
  margin: 0 auto;
}
.btn-primary {
  background: var(--primary-color);
  width: 180px;
  color: var(--tertiary-text-color);
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 8px;
  height: 45px;
  padding: 5px;
  margin: 5px;
  border: 0;
  float: right;
  margin-right: 15px;
  margin-bottom: 20px;
  transition: 0.3s;
}
.btn-primary:hover {
  transition: 0.3s;
  background-color: #2d3249;
}
.lotto-drawresult {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  padding: 0 10px;
  max-width: 1100px;
  margin: 0 auto;
}
.lotto-drawresult .col-sm-4 {
  width: 100%;
  padding: 0;
}
.lotto-drawresult .row {
  margin: 0;
}
.panel {
  background: var(--wrapper-bg-color);
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid var(--quinary-color);
  max-width: 350px;
  margin: 0 auto;
  color: var(--tertiary-text-color);
  width: 100%;
  text-align: center;
  height: 100%;
}
.panel-default {
  border-color: transparent;
}
.panel-default > .panel-heading {
  background: linear-gradient(
    90deg,
    rgba(19, 23, 36, 1) 0%,
    rgba(42, 49, 74, 1) 100%
  );
  color: var(--tertiary-text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
  height: 55px;
}
.panel-heading .col-sm-9 {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}
.panel-body {
  padding: 0;
}
.panel-body .col-sm-3 {
  padding: 5px 1px;
  font-size: 16px;
  width: 50%;
}
.panel-body .col-sm-3 a {
  color: var(--tertiary-text-color);
}
.panel-body .row.logo {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.row.logo .col-sm-4 {
  padding: 0 15px;
}

#Magnum .panel-default { border: 3px solid #f2bc00; border-radius: 10px; overflow: hidden; }
#PMP .panel-default { border: 3px solid #148ea4; border-radius: 10px; overflow: hidden; }
#Toto .panel-default { border: 3px solid #dd0000; border-radius: 10px; overflow: hidden; }
#Singapore .panel-default { border: 3px solid #12689a; border-radius: 10px; overflow: hidden; }
#Sabah .panel-default { border: 3px solid #eee; border-radius: 10px; overflow: hidden; }
#Sandakan .panel-default { border: 3px solid #2f9405; border-radius: 10px; overflow: hidden; }
#Sarawak .panel-default { border: 3px solid #094405; border-radius: 10px; overflow: hidden; }
#GDLotto .panel-default { border: 3px solid #95650a; border-radius: 10px; overflow: hidden; }
#Perdana .panel-default { border: 3px solid #777; border-radius: 10px; overflow: hidden; }
#LuckyHari-Hari .panel-default { border: 3px solid #00aced; border-radius: 10px; overflow: hidden; }
#Perdana-3D .panel-default { border: 3px solid #444a6b; border-radius: 10px; overflow: hidden; }
#GOOD4D .panel-default { border: 3px solid #ffd45e; border-radius: 10px; overflow: hidden; }


#Magnumimg { background: url(/data/2135/uploads/4D_magnum.png) left no-repeat #383838; height: 50px; width: 85px; }
#PMPimg { background: url(/data/2135/uploads/4D_damacai.png) left no-repeat; height: 50px; width: auto; }
#Totoimg { background: url(/data/2135/uploads/4D_toto.png) left no-repeat; height: 50px; width: auto; }
#Singaporeimg { background: url(/data/2135/uploads/4D_sgpool.png) left no-repeat; height: 50px; width: auto; }
#Sabahimg { background: url(/data/2135/uploads/4D_sabah88.png) left no-repeat; height: 50px; width: auto; }
#Sandakanimg { background: url(/data/2135/uploads/4D_stc.png) left no-repeat; height: 50px; width: auto; }
#Sarawakimg { background: url(/data/2135/uploads/4D_cashsweep.png) left no-repeat; height: 50px; width: auto; }
#GDLottoimg { background: url(/data/2135/uploads/4D_gdlotto.png) left no-repeat; height: 50px; width: auto; }
#Perdanaimg { background: url(/data/2135/uploads/4D_perdana.png) left no-repeat; height: 50px; width: auto; }
#LuckyHari-Hariimg { background: url(/data/2135/uploads/4D_luckyharihari.png) left no-repeat; height: 50px; width: auto; }
#GOOD4Dimg { background: url(/data/2135/uploads/4D_good4d.png) left no-repeat; height: 50px; width: auto; }
#Perdana-3Dimg { background: url(/data/2135/uploads/4D_perdana.png) left no-repeat; height: 50px; width: auto; }


.fb_iframe_widget_fluid,
.fb_iframe_widget {
  display: none;
}
label.control-label.col-sm-12 {
  display: none;
}
#THV88,
#GDLotto,
#Toto-5D,
#Toto-6D {
  display: none;
}

#Magnum #datetime label,
#GOOD4D #datetime label,
#Sabah #datetime label {
  color: #000;
}

#datetime {
  text-align: right;
}
#datetime label {
  background: transparent;
}
#datetime .col-sm-12 {
  padding: 0;
  font-size: 70%;
  font-weight: 500;
  text-transform: uppercase;
}

#TopThree {
  display: flex;
}
#TopThree .col-sm-4 {
  width: 100%;
  padding: 0;
}
#TopThree .control-label {
  background: var(--quaternary-color);
  color: var(--secondary-text-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
}
#TopThree .col-sm-4 div {
  padding-bottom: 5px;
  border-right: 1px solid var(--quinary-color);
}
#TopThree .popwin {
  font-size: 18px;
  font-weight: 500;
  padding: 5px 1px;
  color: var(--tertiary-text-color);
}

#Special {
  width: 50%;
  float: left;
}
#Special .row label,
#Consolation .row label {
  background: var(--quaternary-color);
  color: var(--secondary-text-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 1px;
  width: 100%;
  margin: 0;
}
#Special .row:nth-child(2) {
  border-right: 1px solid var(--quinary-color);
}

#Consolation {
  float: left;
  width: 50%;
}
#LuckyHari-Hari .col-sm-9 {
  font-size: 14px;
}

a#show3d {
  color: var(--secondary-text-color);
  font-weight: bold;
}
.panel-body .small {
  color: var(--tertiary-text-color);
}


/*======== Page Vip (page name - vip) ========
=======================================================*/
.t-inner-body.vip {
  background: url("/data/2135/uploads/vip-bg.jpg") no-repeat top center;
  background-size: 100%;
  background-position-y: 60px;
}
.vip-sec {
  padding-bottom: 30px;
  position: relative;
}
.vip-top-banner {
  position: relative;
  padding-top: 30px;
  height: 26vw;
}
.vip-privilege {
  position: absolute;
  color: var(--tertiary-text-color);
  text-align: center;
  right: 12%;
  top: 10%;
}
.vptext-1 {
  color: var(--primary-text-color);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.vptext-2 {
  font-size: 24px;
  line-height: 1;
}
.vptext-current {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 15px;
}
.crt-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px;
  max-width: 425px;
  margin: 20px auto 0;
}
.turnbox-wrap {
  overflow: hidden;
  border-radius: 10px;
  max-width: 210px;
  border: 1px solid var(--quinary-color);
}
.twbox-1 {
  background: #161827;
  color: var(--secondary-text-color);
  font-size: 15px;
  padding: 3px 15px;
  line-height: 1;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.twbox-2 {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
  padding: 10px 10px;
  font-size: 17px;
}

.vip-table-wrapper {
  margin-top: 0;
  color: var(--tertiary-text-color);
}
table.vip-table tr td {
  padding: 7px 0;
  text-align: center;
}
table.vip-table tr td:first-child {
  text-align: left;
  color: var(--secondary-text-color);
}
table.vip-table tr td:last-child {
  border: none;
}
.badgeimg {
  max-width: 110px;
  margin: 0 auto;
}
.vptxt {
  font-weight: 600;
  margin-top: 5px;
}
.normal {
  color: #f06c01;
}
.bronze {
  color: #ac6936;
}
.silver {
  color: #b6b6b6;
}
.gold {
  color: #eeb536;
}
.platinum {
  color: #0ab0f2;
}
.diamond {
  color: #ff83fd;
}

tr.tbrow {
  background: linear-gradient(
    to right,
    rgba(19, 23, 36, 0) 0%,
    rgba(19, 23, 36, 0.88) 10%,
    rgba(19, 23, 36, 0.88) 21%,
    rgba(19, 23, 36, 0.88) 78%,
    rgba(19, 23, 36, 0.88) 89%,
    rgba(19, 23, 36, 0.88) 90%,
    rgba(19, 23, 36, 0) 100%
  );
}
table.vip-table tr td.whtext {
  color: var(--tertiary-text-color);
}

.vip-mobile-wrapper {
  display: none;
}
#tab_ul {
  list-style: none;
  list-style: none;
  display: grid;
  overflow-x: auto;
  grid-template-columns: 27% 27% 27% 27% 27% 27%;
  width: 100vw;
  gap: 20px;
  margin-left: -10px;
  padding: 0 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-bottom: 20px;
}
#tab_ul li a img {
  filter: blur(1.1px) brightness(0.7);
}
#tab_ul li.selected a img {
  filter: blur(0) brightness(1);
}

.vip-tnc {
  margin: 15px 0 0;
}
.vip-term-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
ul.terms {
  padding-left: 17px;
}

/*======== Page Promotion (page name - promotion) ========
=======================================================*/
.level-program {
  padding: 25px;
  //background-color: #e8e9e9;
  display: flex;
  flex-wrap: wrap;
}
.program-left {
  width: 40%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}
.level-card {
    height: 210px;
    background-color: #bbdefb;
    background-image: url(/data/2166/uploads/sport_bubble.png),url(/data/2166/uploads/sport_bubble.png);
    background-position: 0 40px, 100px -100px;
    background-repeat: no-repeat, no-repeat;
    border-radius: 12px;
    position: relative;
    padding: 20px 20px 10px;
    margin-bottom: 25px;
    color: #000;
    display: none;
}
.level-card.sport {
  display: block;
}
.level-card:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 260px;
    height: 206px;
    right: 0px;
}
.level-card.sport:after {
  background: url(/data/2166/uploads/sport_embassy1.png) no-repeat;
    right: -60px;
}
.level-card.casino:after {
  background: url(/data/2166/uploads/casino_embassy1.webp) no-repeat;
    background-size: auto 100%;
    background-position: right;
}
.level-card.lottery:after {
  background: url(/data/2166/uploads/lottery_embassy1.webp) no-repeat;
    background-size: auto 100%;
    background-position: right;
}
.level-card.games:after {
  background: url(/data/2166/uploads/games_embassy1.webp) no-repeat;
    background-size: auto 100%;
    background-position: right;
}
.level-card.p2p:after {
  background: url(/data/2166/uploads/p2p_embassy1.webp) no-repeat;
    background-size: auto 100%;
    background-position: right;
}
.level-card-info {
    font-size: 30px;
    font-weight: 700;
    align-items: center;
    display: flex;
    z-index: 2;
    position: relative;
}
.level-card-info > img {
    width: 36px;
    margin-right: 10px;
    filter: brightness(0);
}
.level-card-info h1 {
  margin: 0;
  font-weight: bold;
  font-size: 30px;
}
.level-card h2 {
    text-transform: uppercase;
  margin: 0;
  font-size: 13px;
}

#program-tab {
  border: unset;
}
#program-tab li {
  width: 100%;
  height: 45px;
  background: #d7ad61;
  border-radius: 10px;
  margin: 5px 0;
}
#program-tab li:last-child {
  margin: 5px 0 0 0;
}
#program-tab li.active, #program-tab li:hover {
  background: #ab7e3d;
}
#program-tab li.active a, #program-tab li:hover a {
  color: #fff;
}
#program-tab li a {
  padding: 0;
  display: flex;
  align-items: center;
    color: #ab7e3d;
  font-weight: bold;
  font-size: 19px;
  background: unset;
    height: 100%;
    border: unset;
    text-transform: uppercase;
    transition: unset;
}
#program-tab li a img {
  width: 30px;
    margin: 0 10px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(12%) saturate(1892%) hue-rotate(356deg) brightness(96%) contrast(90%);
}
#program-tab li.active img, #program-tab li:hover img {
    filter: brightness(100);
}


.program-right {
  padding: 16px;
  flex: 1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.program-right:has(#sport.active) {
  background: url(/data/2166/uploads/sport.webp);
    background-color: #061826;
    background-repeat: no-repeat;
    background-size: 100%;
}
.program-right:has(#casino.active) {
  background: url(/data/2166/uploads/casino.webp);
    background-color: #061826;
    background-repeat: no-repeat;
    background-size: 100%;
}
.program-right:has(#lottery.active) {
  background: url(/data/2166/uploads/lottery.webp);
    background-color: #061826;
    background-repeat: no-repeat;
    background-size: 100%;
}
.program-right:has(#games.active) {
  background: url(/data/2166/uploads/games.webp);
    background-color: #061826;
    background-repeat: no-repeat;
    background-size: 100%;
}
.program-right:has(#p2p.active) {
  background: url(/data/2166/uploads/p2p.webp);
    background-color: #061826;
    background-repeat: no-repeat;
    background-size: 100%;
}
.program-content {
  min-height: 290px;
    border-bottom: 1px solid #d7ad61;
  position: relative;
}
.program-content:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: auto 100%;
}
.program-content:has(#sport.active):after {
    background-image: url(/data/2166/uploads/sport_embassy2.webp);
    right: -20px;
}
.program-content:has(#casino.active):after {
    background-image: url(/data/2166/uploads/casino_embassy2.webp);
    right: -20px;
}
.program-content:has(#lottery.active):after {
    background-image: url(/data/2166/uploads/lottery_embassy2.webp);
    right: -20px;
}
.program-content:has(#games.active):after {
    background-image: url(/data/2166/uploads/games_embassy2.webp);
    right: -20px;
}
.program-content:has(#p2p.active):after {
    background-image: url(/data/2166/uploads/p2p_embassy2.webp);
    right: -20px;
}
.card-item {
    border-radius: 10px;
    border: 1px solid #d7ad61;
    color: #d7ad61;
    padding: 10px;
    display: block;
    background: rgba(6, 24, 38, .8);
    z-index: 10;
    position: relative;
    width: 50%;
    margin-bottom: 10px;
}
.card-info {
    display: flex;
    align-items: center;
    margin: 8px 0;
}
.card-info img {
  width: 36px;
  margin-right: 10px;
}
.card-info h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}
.card-item h2 {
  margin: 0;
  font-size: 20px;
}
.card-progress {
  margin-top: 40px;
  display: flex;
  align-items: center;
}
.card-progress .progress-bar {
    height: 10px;
    background-color: #8c6239;
    border-radius: 8px;
    width: 100%;
    flex: 1;
}
.card-progress span {
    font-weight: 700;
    margin-left: 5px;
    font-size: 14px;
    flex: 0 0 fit-content;
    width: fit-content;
}
.card-item p {
  margin: 0;
  font-size: 12px;
}

.program-content-info {
  margin: 5px 0;
}
.program-content-info h3 {
    color: #ab7e3d;
    font-weight: 700;
    font-size: 18px;
    margin: 6px 0 10px;
}
.program-content-info ul {
    padding-left: 17px;
    line-height: 20px;
    list-style: auto;
    margin: 14px 0;
}

.all-reward {
  width: 100%;
  margin: 10px 0;
    border-radius: 12px;
}








.promotion-sec {
  padding: 0 0 30px;
}
.promo {
  padding: 5px 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}
ul#promo-tab {
  display: flex;
  background: #141724;
  padding: 3px;
  border-radius: 45px;
  margin: 0 0 15px;
  max-width: fit-content;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: auto;
}
ul#promo-tab li {
  cursor: pointer;
  transition: 0.2s;
  position: relative;
  display: inline-block;
  margin: 2px 5px;
  color: #59647f;
  min-width: 55px;
  text-align: center;
  border-radius: 45px;
  cursor: pointer;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: fit-content;
}
ul#promo-tab li:not(.inactive),
ul#promo-tab li:hover {
  background: var(--quinary-color);
  color: var(--tertiary-text-color);
}

.promo-content ol#faq_modal {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  gap: 20px;
}
.promo-content ol#faq_modal li.question {
  width: calc(33.33% - 14px);
  list-style: none;
  margin: 0;
}
.promo a {
  text-decoration: none;
}
.promo-img {
  border-radius: 0;
  overflow: hidden;
}
.promo-img img {
  border-radius: 20px 20px 0 0;
}

.promo-txt {
  position: relative;
  color: #59647f;
  background: #141723;
  border-radius: 0 0 20px 20px;
  padding: 15px;
  height: 100%;
}
.promo-txt::before {
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
}
.promo-txt h3 {
  color: var(--tertiary-text-color);
  font-weight: bold;
  margin: 0 0 15px 0;
  font-size: 16px;
}
.promo-btn {
  display: flex;
  padding-bottom: 10px;
}
.promo-btn a,
.pbtn-apply a {
  color: var(--tertiary-text-color);
  text-decoration: none;
  font-weight: bold;
}
.pbtn-info,
.pbtn-apply {
  padding: 8px 10px;
  background: var(--secondary-text-color);
  color: var(--tertiary-text-color);
  font-size: 12px;
  border-radius: 5px;
  margin-right: 10px;
}
.pbtn-info:hover {
  filter: brightness(1.3);
}
.pbtn-apply {
  background: var(--primary-color);
}
.pbtn-apply:hover {
  filter: brightness(1.3);
}

.promo-banner-popup {
  padding: 0 !important;
}
.promo-banner-popup img {
  border-radius: 20px 20px 0 0;
  width: 100%;
}
.promo-popup-content {
  padding: 15px 0 0;
}
.pmtitle-wrap {
  padding: 0 20px;
}
.pmtitle {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 5px;
  color: var(--secondary-text-color);
}
.pmcaption {
  text-align: center;
  text-transform: uppercase;
  color: var(--tertiary-text-color);
}
.pm-dvd-line {
  height: 2px;
  width: 90%;
  background: var(--quinary-color);
  margin: 15px auto;
}
.pmwrap {
  padding: 5px 30px 15px;
}
.table-responsive.promo-table {
  text-align: center;
  font-size: 14px;
  border: 0;
}
table.table-promo tr td {
  font-weight: 400;
  background: var(--wrapper-bg-color);
  padding: 6px 2px;
  border: 1px solid var(--quinary-color);
}
table.table-promo tr:first-child td {
    background: var(--quinary-color);
    border-left: 1px solid rgb(0 0 0 / 30%);
    border-right: 1px solid rgb(0 0 0 / 30%);
}
.pmtnc-wrap {
  background: #161b2a;
  padding: 30px;
}


.fancybox-wrap {
  width: 60% !important;
  margin: auto !important;
  left: 0 !important;
  right: 0 !important;
}
.fancybox-skin {
  border-radius: 20px;
  background: transparent;
}
.fancybox-inner {
  width: 100% !important;
  background-color: #1f1f1f;
}
#faq_fbinner {
  background: var(--quaternary-color);
  color: var(--tertiary-text-color);
  border: none;
  border-radius: 20px;
  max-height: 90vh;
  overflow: auto;
}
#faq_fbinner::-webkit-scrollbar {
  display: none;
}
.fancybox-inner p {
  color: #9a9a9a;
  margin-bottom: 0;
  font-size: 14px;
}
.fancybox-inner h4 {
  margin: 0;
  display: none;
}
.fancybox-inner > div > h4,
.fancybox-inner > div > p {
  margin: 0;
}
.fancybox-inner .promo {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px;
  border-bottom: 1px solid #313131;
}
.fancybox-inner .promo-img,
.fancybox-inner .promo-txt {
  border-radius: 0;
  width: 100%;
}
.fancybox-inner .promo-txt {
  color: #5a5a5a;
  background: #000;
  font-size: 12px;
}
.fancybox-inner .promo-txt h3 {
  font-size: 14px;
}
.fancybox-inner .promo-btn {
  padding-bottom: 10px;
}
.fancybox-inner > div > div {
  padding: 20px;
}
.fancybox-inner table {
  width: 100%;
}
.fancybox-inner strong {
  font-size: 15px;
  color: var(--tertiary-text-color);
}
.fancybox-close {
  top: -16px;
  right: -16px;
}


/*======== Page Download (page name - download) ========
=======================================================*/
.t-inner-body.download {
  background: url("/data/2135/uploads/download-bg2.jpg") no-repeat top center;
  background-size: 100%;
  background-position-y: 55px;
}
.download-sec {
  position: relative;
  padding: 10px 0 30px;
}
.dl-banner {
  position: absolute;
  left: -4%;
  top: 0;
  max-width: 65%;
  margin: 0 auto;
  pointer-events: none;
}

.download-content {
  max-width: 650px;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
}
.download-list-wrapper {
  text-align: center;
}
.download-box {
  display: inline-block;
  background: linear-gradient(
    180deg,
    rgba(43, 50, 72, 0) 6%,
    rgba(43, 50, 72, 0.5999649859943977) 34%,
    rgba(43, 50, 72, 0.8828781512605042) 65%,
    rgba(43, 50, 72, 1) 100%
  );
  text-align: center;
  width: 31%;
  max-width: 190px;
  color: var(--tertiary-text-color);
  margin: 2% 0.5%;
  border-radius: 0 0 8px 8px;
  padding: 0 0 15px;
}
.dl-qr {
  max-width: 130px;
  margin: 5px auto;
}
.device-os {
  letter-spacing: 1px;
  padding: 6px 0;
  font-size: 14px;
}
.android-icon {
  color: #a4c639;
}
button.download-btn {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--tertiary-text-color);
  height: 35px;
  padding: 2px 5px;
  width: 100%;
  max-width: 85%;
  border-radius: 7px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 5px;
}
button.download-btn:hover {
  filter: brightness(1.3);
}

/*======== Page Redeem Mall (page name - redeem-mall) ========
=======================================================*/
.section-redeem {
    padding-top: 65px;
}
.section-redeem > img { width: 100%; }
.box-redeem-content {
    padding: 20px;
    background: var(--quaternary-color);
    border-radius: 12px;
    border-top: 2px solid #20273b;
    margin-top: 35px;
}
.box-redeem-content span { color: #ff7301; }

.country-mall {
    padding: 0;
    display: flex;
    justify-content: left;
    gap: 30px;
}
.country-mall li {
    width: 20%;
    text-align: center;
    transition: .3s;
}
.country-mall a {
    display: flex;
    flex-direction: column;
}
.country-mall a:hover span {
    text-decoration: underline;
}
.bright {
    filter: brightness(100%);
}
.bright:hover {
    filter: brightness(130%);
}
.hvr-float {
    display: inline-block;
}
.hvr-float:hover, .hvr-float:focus, .hvr-float:active {
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

/*======== Page Adminloginx (page name - adminloginx) ========
=======================================================*/
#theme-contain-adminloginx {
  padding-top: 80px;
  position: relative;
}
#theme-contain-adminloginx table {
  margin: auto;
}
#theme-contain-adminloginx table tr td input {
  margin-bottom: 10px;
}


/*======== Page Prod (page name - system modules) ========
=======================================================*/
#theme-contain-prod { min-height: 20vh; padding-top: 65px; }

#search-bar {
    border: 1px solid #4c4c4c52;
    padding: 16px;
    border-radius: 6px;
    background: #131723;
    width: 90%;
    max-width: 1300px;
    margin: 45px auto 0;
    border-top: 2px solid #20273b;
    border-bottom: 2px solid #20273b;
}
#search-bar legend {
    font-size: 24px;
    color: #ff7301;
    border-bottom: 1px solid #ffffff50;
}
#search-form {
    display: flex;
    flex-wrap: wrap;
    color: #ff7301;
    flex-direction: column;
}
#keyword {
    display: inline-block;
    width: 80%;
}
#search-bar label {
    font-size: 18px;
    margin: 8px 0;
    display: inline-block;
    font-weight: 500;
    color: #ff7301;
}
#search-bar #keyword input.alphanumeric {
    border-radius: 4px;
    padding: 0 5px;
    height: 38px;
    font-size: 15px;
    width: 70%;
    display: inline-block;
}

#search-bar #price-range {
    display: inline-block;
    width: 80%;
    margin-top: 20px;
}
#search-bar input#price-min {
    border-radius: 4px;
    display: inline-block;
    width: 23%;
    padding: 0px 5px;
    height: 38px;
}
#search-bar input#price-max {
    display: inline-block;
    border-radius: 4px;
    width: 23%;
    padding: 0 5px;
    height: 38px;
}

#search-bar #search-form input#submit-btn {
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    color: white;
    padding: 15px 1px;
    border-radius: 11px;
    font-size: 14px;
    width: 17%;
    position: relative;
    transition: 0.5s;
}
#search-bar #search-form input#submit-btn:hover {
    background-position: right center;
}

#search-bar a#clear-btn {
    color: red;
    border-radius: 5px;
    padding: 5px 10px;
    border: unset;
    font-size: 12px;
    background: #4c4c4c45;
}
#search-bar a#clear-btn:hover { text-decoration: underline; }

#search-bar #sort {
    float: right;
    position: relative;
    top: -200px;
    display: flex;
    width: fit-content;
    gap: 10px;
    justify-content: flex-end;
}
#search-bar select#sortlist {
    border-radius: 4px;
    height: 38px;
    padding: 0 5px;
    width: fit-content;
}

#cms5-pagenum {
    clear: both;
    background: #001021;
    border-top: 2px solid #20273b70;
    border-bottom: 2px solid #20273b70;
}
#cms5-pagenum ul {
    padding: 0;
    margin: 0;
    text-align: center;
    list-style: none;
}
#cms5-pagenum ul li {
    display: inline-block;
    width: 3%;
    vertical-align: top;
    color: #ff7301;
    margin: 30px 0;
    font-weight: bold;
}
#cms5-pagenum ul li #current {
    font-weight: 700;
}
#cms5-pagenum ul li a {
    padding: 3px;
    text-decoration: none;
    color: #fff;
}


#cms5-prod-list {
    max-width: 1300px;
    /* margin: 25px auto 0; */
    margin: 50px auto 50px;
    text-align: center;
}
#cms5-prod-list ul {
    margin: 10px;
    padding: 0px 0px;
    display: inline-block;
    transition: 0.3s;
    height: 300px;
    width: 227px;
    border: 2px solid #DCDCDC;
    border-radius: 7px;
    background: #fff;
    list-style: none;
    zoom: 1;
    vertical-align: top;
    overflow: hidden;
}
#cms5-prod-list ul:hover {
    border: 2px solid #0661e9;
}
#cms5-prod-list ul li {
    list-style: none;
    clear: both;
}
#cms5-prod-list ul #photo {
    display: block;
    text-align: center;
    margin-bottom: 10px;
}
#cms5-prod-list ul #photo .caption,
#cms5-prod-list ul #title .caption,
#cms5-prod-list ul #code,
#cms5-prod-list ul #price .caption,
#cms5-prod-list ul #desc,
#cms5-prod-list ul #details,
#cms5-prod-list ul #enquiry {
    display: none;
}
#cms5-prod-list ul #photo img {
    width: 100%;
}

#cms5-prod-list ul #title {
    display: block;
    height: 20px;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
    padding: 0 5px;
    font-weight: normal;
}
#cms5-prod-list ul #title a {
    color: #9f9f9f;
    font-weight: 700;
}
#cms5-prod-list ul #title a:hover, #cms5-prod-list ul #title a:visited {
    color: #0661e9;
}

#cms5-prod-list ul #price {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

#cms5-prod-list ul #addcart {
    padding-top: 10px;
    margin-top: 10px;
}
#cms5-prod-list ul #addcart a {
    padding: 12px 17px;
    text-align: center;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    width: fit-content;
    height: auto;
    border: 0px;
    color: #fff;
    margin: auto;
    border-radius: 9px;
    display: block;
}
#cms5-prod-list ul #addcart a:hover {
    background-position: right center;
}



div#back-btn {
    padding: 20px;
    max-width: 1250px;
    width: 100%;
    margin: auto;
}
#back-btn a {
    color: #fff;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    padding: 5px 20px;
    border-radius: 9px;
}
#back-btn a:hover {
    background-position: right center;
}
#cms5-prod-view table {
    width: 95%;
    margin: 20px auto;
    max-width: 1250px;
}
#cms5-prod-view > table {
    background: #131723;
    border-radius: 20px;
    box-shadow: 1px 3px 0px 0px #20273b, -1px -3px 0px 0px #20273b;
}
#cms5-prod-view > table > tbody > tr {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
}
#cms5-prod-view > table > tbody > tr > td {
    width: 47%;
    height: 100%;
    float: right;
    padding-right: 5%;
}
#cms5-prod-view table#particular {
    padding-top: 50px;
}
#cms5-prod-view table#particular tr td {
    vertical-align: top;
}
#cms5-prod-view table#particular tr td#caption,
#cms5-prod-view table#particular tr td#caption,
#cms5-prod-view table#particular tr td#caption,
#cms5-prod-view table#particular tr td#caption,
#cms5-prod-view table#particular tr td#caption {
    display: none;
}
#cms5-prod-view table#particular tr td#title {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    color:  #ff7301;
}
#cms5-prod-view table#particular tr td#price {
    font-weight: bold;
    color: #ff7301;
    font-size: 16px;
}
#cms5-prod-view table#particular tr td#addcart a {
    padding: 12px 17px;
    text-align: center;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    width: fit-content;
    height: auto;
    border: 0px;
    color: #fff;
    border-radius: 9px;
    margin-bottom: 20px;
    display: block;
}
#cms5-prod-view table#particular tr td#addcart a:hover {
    background-position: right center;
}

#cms5-prod-view div#photo {
    float: left;
    padding: 0 5px 5px 0;
}
.gcontent { width: 100% !important; }

#apimeminfo {
    background: #001021;
    padding: 10px 5px;
    display: block;
    margin: 20px auto;
    border-top: 2px solid #20273b70;
    width: 90%;
    border-bottom: 2px solid #20273b70;
    max-width: 1250px;
}
#apimeminfo tbody > tr > td {
    padding: 5px;
    margin-right: 10px;
    display: inline-block;
}
#apimeminfo tbody > tr > td:last-child a {
    padding: 9px;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%, #003f9d 100%);
    background-size: 200% auto;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    text-align: center;
    transition: .5s;
    border: 1px outset light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    display: block;
}
#apimeminfo tbody > tr > td:last-child a:hover { background-position: right center; }
#apimeminfo tbody > tr > td b {
  color: #ff7301;
}

#prod-cart {
    padding-top: 20px;
    max-width: 1250px;
    width: 90%;
    margin: auto;
}
.tbllist {
    background: #fff;
    color: #000;
    padding: 0;
}
#prod-cart .tbllist form {
    overflow-x: auto;
}
.tbllist .tbl th {
    padding: 5px;
    color: #ff7301;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid #ffffff70;
    background: #131723 top;
    padding-left: 8px;
    padding-right: 8px;
}
.tbllist.rounded.spacer tr th {
    width: 14%;
}
.tbllist .tbl td {
    border-top: 1px solid #ffffff70;
    border-left: 1px solid #131723;
    border-bottom: 1px solid #131723;
    padding-left: 8px;
    padding-right: 8px;
    color: #fff;
}

.tbllist .tbl td, .tbllist .tbl td a, .tbllist .tbl td a:visited {
    color: #000000;
}
#prod-cart #photo {
    text-align: center;
}
.tbllist .tbl td#qty input { padding: 0 8px; text-align: center; }
#cartlist td#control {
    border-right: 1px solid #ffffff70;
}
.ctrllist ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.ctrllist ul li {
    display: inline;
}
.iconx32 li#icon-delete a {
    display: block;
    float: left;
    width: 32px;
    height: 32px;
    text-indent: -3000px;
    overflow: hidden;
    text-decoration: none;
    background: url(/data/1835/uploads/icon-delete.png) 0 0 no-repeat;
}

.tbllist .tbl tfoot td {
    padding: 3px 8px;
    background: #131723;
    color: #ff7301;
    font-weight: 700;
    border: 1px solid #ffffff50;
}
#cartlist input[type=button] {
    background: #0661e9;
    color: #fff;
}
#cartlist input[type=button]:hover {
    filter: brightness(1.3);
}


#continue-shopping, #btn-submit {
    padding: 9px;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    text-align: center;
    margin-top: 12px;
    transition: .5s;
    border: 1px outset light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}
#continue-shopping:hover, #btn-submit:hover {
    background-position: right center; 
}
#continue-shopping a {
    color: #FFF;
}
.alert-warning {
    background-color: #fdfdfd00;
    margin-top: 12px;
    color: red;
}


form#customform {
    padding: 30px 18px;
    border-radius: 10px;
    width: 100%;
    max-width: 370px;
    background: #131723;
    position: relative;
    margin: 20px auto;
    box-shadow: 1px 3px 0px 0px #20273b, -1px -3px 0px 0px #20273b;
}
#theme-contain-prod #remoteloginform input, #theme-contain-prod #customform input {
    width: 100%;
    border-radius: 9px;
}
#theme-contain-prod #customform dl:has(dd#customform_MemberVerifyCode_Caption) dd {
    display: inline-block;
    vertical-align: bottom;
    width: 50%;
    float: left;
}
#theme-contain-prod #customform dl:nth-of-type(3) dd #customform_MemberVerifyCode { padding: 2px 2px 2px 15px; }
dd#customform_MemberVerifyCode_Caption b {
    display: none;
}
#remoteloginform input#remoteloginformsubmit, #customform input#customform_submit {
    color: #fff;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    width: 100%;
    margin-top: 15px;
}
#remoteloginform input#remoteloginformsubmit, #customform input#customform_submit:hover {
    background-position: right center;
}


#prod-cart caption {
    background: #001021;
    border: 1px solid #fff;
    padding: 10px;
    color: #ff7301;
    font-weight: bold;
}
#cart-member-info input, #cart-member-info select { 
    padding: 4px 10px;
   margin: 5px 0;
}
#cart-member-info tbody > tr > td:nth-child(2) {

}

#submit { padding: 0 10px; }
#submit .prev_step, #submit button, #submit input[type=submit] {
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%,#003f9d 100%);
    background-size: 200% auto;
    padding: 9px;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    text-align: center;
    transition: .5s;
    border: none;
}
#submit .prev_step:hover, #submit button:hover, #submit input[type=submit]:hover {
    background-position: right center;
}

#cart-gamepoint-info tbody > tr { 
    display: block;
    padding: 4px 10px;
}


#theme-contain-prod .alert-danger {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 10px;
    margin-top: 20px;
}
#theme-contain-prod .view-order {
    margin-left: 10%;
    margin-top: 10px;
    padding: 9px;
    background: linear-gradient(to right, #003f9d 0%, #0661e9 51%, #003f9d 100%);
    background-size: 200% auto;
    border-radius: 10px;
    color: #fff;
    width: fit-content;
    text-align: center;;
    transition: .5s;
    border: 1px outset light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
    display: block;
}
#theme-contain-prod .view-order:hover {
    background-position: right center;
}
/*=======================================================
======================= Media Screen ======================
=======================================================*/


@media (min-width: 1800px) and (max-width: 1920px) {
/*======== Page Prod (page name - system modules) ========
=======================================================*/
#keyword {
    width: 40%;
}
#search-form {
    flex-direction: row;
}
#search-bar #price-range {
    width: 44%;
    margin-top: unset
}
#search-bar #search-form input#submit-btn {
    top: 35px;
}
#search-bar #sort {
    top: -126px;
    width: 16%;
}

}

@media (max-width: 1200px) {
#cms5-pagenum ul li { width: 6%; }
#theme-contain-prod .view-order {
    margin-left: 5%;
}

}


@media (max-width: 1080px) {
  .floating-chat {
    display: none;
  }
/*===================== Body ==========================
=======================================================*/
  .body-container {
    display: block;
  }
  .t-menu {
    display: none;
  }
  .max-container {
    padding: 0 10px;
  }

/*======== Header (page name - header-link) ========
=======================================================*/
  .body-container.active .header-sec {
    width: 100%;
  }
  .header-sec {
    width: 100%;
  }
  .header-container {
    height: 55px;
  }
  .logo img {
    max-height: 40px;
  }

/*======== Footer (page name - system configuration) ========
=======================================================*/
  .footer-sec {
    padding-bottom: 80px;
  }
  .mobile-footer-column {
    display: block;
  }
  .footer-btm-wrapper {
    grid-template-columns: auto;
    padding: 5px 0;
  }
  .footer-column {
    border-right: none;
    border-bottom: 1px dashed #f3f5f6;
    padding: 10px 0;
  }
  .footer-column:last-child {
    border-bottom: none;
  }
  .ft-title {
    font-size: 13px;
  }

/*======== Mobile Menu Bottom (page name - menu bottom) ========
=======================================================*/

  .mobile-btm-sec {
    display: block;
  }


/*======== Side Menu (page name - menu-left / menu-item) ========
=======================================================*/



/*======== Back To Top Button (page name - system configuration footer) ========
=======================================================*/
  button.back-to-top {
    bottom: 80px;
    height: 40px;
    width: 40px;
  }

/*======== Page Vip (page name - vip) ========
=======================================================*/
  .t-inner-body.vip {
    background-position-y: 55px;
    background-size: 140%;
    background-position-x: left;
  }
  .vip-top-banner {
    height: 370px;
  }
  .vip-privilege {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.5775560224089635) 21%,
      rgba(0, 0, 0, 0) 85%,
      rgba(0, 0, 0, 0) 100%
    );
    padding: 15px 15px;
    margin: 0 -15px;
    left: 0;
    right: 0;
  }
  .vptext-1 {
    font-size: 40px;
  }
  .vptext-2 {
    font-size: 19px;
  }
  .vptext-current {
    font-size: 30px;
  }

  .how-vip,
  .vip-table-wrapper {
    display: none;
  }

  .vip-mobile-wrapper {
    display: block;
    padding: 0 10px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
  }
  .whtext {
    color: var(--tertiary-text-color);
  }

}


@media (max-width: 991px) {

/*======== Register (page name - registration) ========
=======================================================*/
  .regtitle {
    display: block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
  }
  .register-wrapper {
    grid-template-columns: auto;
  }
  .agree-text {
    text-align: center;
  }

/*======== All Page Product (page name - lottery/casino) ========
=======================================================*/
  .product-game-sec {
    padding: 35px 0 30px;
  }
  .display-game-wrap {
    display: flex;
    flex-direction: column-reverse;
  }
  .dg-column {
    padding: 5px 15px 30px;
  }
  .dg-subtitle {
    display: none;
  }
  .dg-img-column {
    position: relative;
    padding: 50px 15px 1px 15px;
  }
  .casino-character {
    max-width: 42%;
  }
  .deco.gold-dice {
    top: 0%;
    max-width: 60%;
  }


/*======== Page Sport (page name - sportsbook) ========
=======================================================*/
  .sports-character {
    max-width: 45%;
  }

/*======== Page Download (page name - download) ========
=======================================================*/
  .dl-banner {
    left: 0;
    right: 0;
    top: -15px;
  }
  .download-content {
    margin: 30% auto 0;
    max-width: none;
  }


.country-mall li { width: 30%; }


}


@media (max-width: 767px) {
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }
/*======== Home Banner (page name - home) ========
=======================================================*/
  .flexslider {
    width: 100vw;
    margin: -25px -10px 30px -10px;
  }
  .flexslider .slides img {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .flex-control-nav {
    bottom: -30px;
  }
  .flex-control-paging li a {
    width: 20px;
    height: 3px;
    border-radius: 0;
  }

/*======== Home Jackpot (page name - jackpot) ========
=======================================================*/
  .jackpot-bg {
    height: 90px;
    border-radius: 15px;
  }
  .floating:before {
    width: 90px;
    height: 90px;
    left: 10%;
  }
  .floating:after {
    width: 90px;
    height: 90px;
    right: 10%;
  }
  .jackpot-position {
    font-size: 30px;
    width: 300px;
  }

/*======== Home Prod ========
=======================================================*/
  section.prod-sec {
    width: 100vw;
    overflow: hidden;
  }
  .home-custom-container {
    grid-template-columns: 195px 195px 195px 195px;
    padding-right: 20px;
    width: 100%;
    gap: 10px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin: 15px 0 30px 0;
  }
  .hc-content-item,
  .hc-content-display {
    height: 160px;
  }
  .hc-content-item:hover .hc-content-display {
    height: 170px;
  }
  .hc-sub-content-display p {
    font-size: 18px;
  }
  .hc-content-item:hover .hc-sub-content-display p {
    bottom: 40px;
  }

  .hc-content-item:hover .plynwbtn:before {
    bottom: 10px;
  }
  .plynwbtn span {
    height: 35px;
  }

/*======== Page Promotion (page name - promotion) ========
=======================================================*/
  .level-program {
    flex-direction: column;
    padding: 0;
  }
  .program-left {
    width: 100%;
    margin-right: 0px;
    flex-direction: column;
  }
  .level-card.sport:after {
    right: 0;
  }

  #program-tab {
    margin-bottom: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  #program-tab::-webkit-scrollbar {
    display: none;
  }
  #program-tab li {
    height: 100%;
    margin: 0 10px;
    width: 20%;
    padding: 10px 5px;
    flex: 0 0 auto;
  }
  #program-tab li a {
    flex-direction: column;
    gap: 5px;
  }
  #program-tab li:last-child {
    margin: 0 10px;
  }

  .card-item {
    width: 65%;
  }


  .promo-content ol#faq_modal {
    gap: 0px;
  }
  .promo-content ol#faq_modal li.question {
    width: 100%;
  }


  .fancybox-wrap {
    width: 90% !important;
  }
  #faq_fbinner {
    max-height: 100vh;
  }

/*======== Page Sport (page name - sportsbook) ========
=======================================================*/
  .sport-template {
    padding: 15px 20px 15px;
  }
  #api-leaguefeed .brick {
    min-width: 100%;
    margin: 5px 0;
  }

/*======== All Page Product (page name - lottery/casino) ========
=======================================================*/
  .product-game-sec {
    padding: 4vw 0 30px;
  }
  ul.nav.nav-provider-game {
    margin: 0 -8px;
  }
  ul.nav.nav-provider-game li.nav-item {
    width: 23.5%;
  }
  ul.nav.nav-provider-game a.nav-link {
    height: 11vw;
  }
  ul.nav.nav-provider-game a.nav-link img {
    max-height: 90%;
  }

/*======== Page Vip (page name - vip) ========
=======================================================*/
  .vip-top-banner {
    height: 330px;
  }
  table.vip-table tr td {
    padding: 7px 0;
  }

  .vip-mobile-wrapper {
    padding: 0;
  }
  .vip-table-wrapper .table-responsive {
    border: 0;
  }

/*======== Page Lottery / Battle (page name - lottery/battle) ========
=======================================================*/
  .btn-primary {
    width: 100px;
    height: 35px;
    margin-right: 0;
    margin-top: -30px;
  }

  .lotto-drawresult {
    display: grid;
    grid-template-columns: 80% 80% 80% 80% 80% 80% 80% 80% 80% 80% 80%;
    overflow-x: auto;
  }

/*======== Footer (page name - system configuration) ========
=======================================================*/
  .footer-copyright {
    font-size: 11px;
  }


/*======== Page Prod (page name - system modules) ========
=======================================================*/
#search-bar input#price-min, #search-bar input#price-max { width: 36%; }
#search-bar #sort { top: -90px; }

#cms5-pagenum ul li { width: 12%; }

#cms5-prod-view > table > tbody > tr > td { padding-right: 3%; }
#cms5-prod-view table#particular tr td#title { font-size: 20px; }
#cms5-prod-view table#particular tr td#price { font-size: 16px; }
#cms5-prod-view table#particular tr td#addcart a {
    padding: 8px 10px;
    font-size: 12px;
    margin-bottom: 15px;
    border-radius: 5px;
}
#cms5-prod-view #desc { font-size: 12px; }



}




@media (max-width: 600px) {

/*======== Home Jackpot (page name - jackpot) ========
=======================================================*/
  .jackpot-position {
    width: 250px;
    font-size: 22px;
  }
  .jptittle {
    padding-bottom: 3px;
    margin-bottom: 3px;
    padding-top: 3px;
    font-size: 10px;
  }
  .jpprice {
    margin-left: 28px;
  }


/*======== Page Prod (page name - system modules) ========
=======================================================*/
#search-bar fieldset { position: relative; }
#keyword { width: 100%; }
#search-bar #price-range { width: 100%; }
#search-bar input#price-min, #search-bar input#price-max { width: 30%; }
#search-bar #search-form input#submit-btn {
    width: fit-content;
    padding: 10px 20px;
}
#search-bar a#clear-btn {
    position: absolute;
    bottom: 65px;
    right: 0px;
}
#search-bar #sort { top: -59px; }

.box-redeem-content { font-size: 13px; }
.box-redeem-content > h1 { font-size: 26px; }
}

@media (max-width: 480px) {

/*======== Home Jackpot (page name - jackpot) ========
=======================================================*/
  .floating:before {
    width: 60px;
    height: 60px;
    left: 8%;
  }
  .floating:after {
    width: 60px;
    height: 60px;
    right: 8%;
  }

/*======== Back To Top Button (page name - system configuration footer) ========
=======================================================*/
  button.back-to-top {
    bottom: 80px;
    height: 35px;
    width: 35px;
    font-size: 18px;
    opacity: 0.7;
  }

/*================== Home Seo ==================
=======================================================*/
  .seo-wrapper {
    font-size: 12px;
  }
  .seo-wrapper h1 {
    font-size: 16px;
    font-weight: 700;
  }
  .seo-wrapper h2 {
    font-size: 15px;
    font-weight: 700;
  }
  .seo-wrapper h3 {
    font-size: 14px;
    font-weight: 700;
  }
  .seo-wrapper h4 {
    font-size: 13px;
    font-weight: 500;
  }
  .seo-wrapper h5 {
    font-size: 12px;
    font-weight: 500;
  }

/*======== Home Game - Slots/Casino/Providers - (page name - providers) ========
=======================================================*/
  .gname {
    font-size: 2.2vw;
  }
  .owl-theme.slots-slider .owl-nav button.owl-prev {
    top: -128%;
    right: 35px;
    font-size: 20px;
    height: 25px;
    width: 25px;
  }
  .owl-theme.slots-slider .owl-nav button.owl-next {
    top: -128%;
    font-size: 20px;
    height: 25px;
    width: 25px;
  }

/*======== Register (page name - registration) ========
=======================================================*/
  .regtext-1 {
    font-size: 20px;
  }
  ol.fun {
    font-size: 15px;
  }
  .reg-feature-banners {
    grid-gap: 6px;
  }

/*======== All Page Product (page name - lottery/casino) ========
=======================================================*/
  .product-game-sec {
    padding: 3vw 0 30px;
  }
  .game-pvd-img {
    max-width: 80%;
    margin: 0 auto;
  }
  .game-pvd-img img {
    max-height: 65px;
  }
  .dg-img-column {
    padding: 10% 15px 1px 15px;
  }

  ul.nav.nav-provider-game li.nav-item {
    width: 31%;
    margin: 0.7%;
  }
  ul.nav.nav-provider-game a.nav-link {
    height: 13vw;
  }

/*======== Page Vip (page name - vip) ========
=======================================================*/
  .t-inner-body.vip {
    background-size: 187%;
  }
  .vip-top-banner {
    height: 360px;
  }
  .vip-privilege {
    top: 27%;
  }
  .turnbox-wrap {
    margin: 0 auto;
    width: 100%;
  }

  .vip-tnc {
    font-size: 14px;
  }

/*======== Login Modal (page name - login) (call from system configuration footer) ========
=======================================================*/
  button.close-x {
    font-size: 15px;
  }

/*======== Page Promotion (page name - promotion) ========
=======================================================*/
  #program-tab li {
        margin: 0 4px;
        padding: 5px;
  }
  #program-tab li:last-child {
        margin: 0 4px;
  }
  #program-tab li a {
    font-size: 12px;
  }
  #program-tab li a img {
    width: 25px;
  }

  #faq_fbinner {
    font-size: 14px;
  }

  .pmtitle {
    font-size: 20px;
  }
  .pmwrap {
    padding: 5px 15px 15px;
  }
  .table-responsive.promo-table {
    font-size: 13px;
  }
  .pmtnc-wrap {
      padding: 20px 15px;
  }

/*======== Page Download (page name - download) ========
=======================================================*/
  .dl-banner {
    max-width: 85%;
    right: -17%;
  }
  .download-content {
    margin: 51% auto 0;
  }
  .download-box {
    width: 47%;
  }




}

@media (max-width: 360px) {
/*======== Page Prod (page name - system modules) ========
=======================================================*/
#search-bar label { font-size: 14px; }
#search-bar a#clear-btn { float: left; margin-top: 20px; position: unset; }
#search-bar select#sortlist { font-size: 14px; }
#search-bar #sort { top: -50px; }
}