html, body{
  width: 100%;
  min-height: max-content;
  height: auto;
  background: #fff;
}

body{
  font-size: 12px;
  position: relative;
  font-family: 'Poppins', sans-serif;
}

a{
  color: #fff;
  text-decoration: none;
}

a:hover{
  color: #fff;
  outline: none !important;
  text-decoration: none;
}

a:active{
  color: #fff;
  border: none;
  outline: none;
  text-decoration: none;
}

.playnow{
  left: 15%;
  bottom: 20%;
  color: #F90B0B;
  font-size: 11px;
  font-weight: 800;
  position: absolute;
  text-transform: uppercase;
}

#loading{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
  background: #FBFBFB;
  transition: all .3s ease;
}

#loading img{
  top: 50%;
  margin: auto;
  width: 150px;
  display: block;
  position: relative;
  transform: translateY(-50%);
}

#loading2{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  position: absolute;
  background: #FBFBFB;
  border-radius: 10px;
  transition: all .3s ease;
}

#loading2 img{
  top: 50%;
  margin: auto;
  width: 50px;
  display: block;
  position: relative;
  transform: translateY(-50%);
}

#lottie_loading{
  width: 100px;
}

/* SweetAlert */
.swal2-popup{
  color: #fff;
  width: 80%;
  font-size: 15px;
  font-weight: 600;
  background: #F90B0B;
  border-radius: 15px;
}

.swal2-title{
  color: #fff;
  font-size: 1.1rem;
}

.swal2-content{
  color: #fff;
  font-size: 14px;
}

.swal2-styled.swal2-confirm{
  color: #F90B0B;
  background: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  border: none;
}

.swal2-styled.swal2-deny{
  color: #F90B0B;
  background: #fff;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  border: none;
}

.swal2-styled{
  padding: 0.5em 1.8em;
}

.swal2-icon.swal2-success [class^=swal2-success-line]{
  background-color: #fff;
}

.swal2-icon.swal2-success .swal2-success-ring{
  border: .25em solid rgba(255,255,255);
}

.swal2-icon.swal2-error{
  border-color: #fff;
}

.swal2-icon.swal2-error [class^=swal2-x-mark-line]{
  background-color: #fff;
  border: .25em solid rgba(255,255,255);
}

.swal2-title{
  color: #fff;
}

.swal2-select option{
  color: #000;
}

.error{
  color: #F90B0B;
  font-size: 9px;
  font-weight: 500;
  display: block;
}

/* start preloader */
.preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  /*justify-content: center;*/
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: none repeat scroll 0 0 #FBFBFB;
}

#mainloader{
  width: 150px;
  margin: 0 auto;
}

#mainloader img{
  width: 100%;
}

#wrapper {
  z-index: 1001;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

label {
  cursor: pointer;
}
label:focus {
  outline: none;
}

.menu {
  top: 0;
  left: 0;
  color: #fff;
  width: 240px;
  min-height: 100%;
  height: 100%;
  z-index: 10002;
  position: fixed;
  font-weight: 500;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  background: #F90B0B;
  transition: transform 0.35s;
  transform: translate3d(-240px, 0, 0);
}

.menu label.menu-toggle {
  position: absolute;
  top: 35px;
  right: -60px;
  width: 60px;
  height: 60px;
  line-height: 0px;
  display: block;
  padding: 0;
  text-indent: -9999px;
  margin-bottom: 0px;
  transform: translate(0%, -50%);
  background: transparent url(../media/static/menu.svg) 50% 50%/25px 25px no-repeat;
}

/* hide inputs */
.menu-checkbox {
  display: none;
}

/* hide navigation icon for sublabels */
.menu .menu label.menu-toggle {
  background: none;
}

/* fade in checked menu */
.menu-checkbox:checked + .menu {
  transform: translate3d(0, 0, 0);
  box-shadow: 0rem 0px 1rem 0px #4C0000;
}

.menu ul{
  margin: 0;
  padding: 0;
  height: 80%;
  list-style: none;
  padding-top: 10px;
  overflow-y: auto;
}

.menu ul li{
  color: #fff;
  width: 100%;
  padding: 12px 15px;
  font-size: 13px;
  font-weight: 500;
}

.menu ul li:hover a{
  color: #fff;
  font-weight: bold;
}

.menu ul li .icon{
  width: 100%;
  display: block;
  position: relative;
}

.menu ul li .icon img{
  width: auto;
  max-width: 25px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}

.menu ul li .icon span{
  display: inline-block;
  vertical-align: middle;
}

.menu ul li .icon .active{
  font-weight: 600;
}

.menuFooter{
  bottom: 0;
  width: 100%;
  height: 55px;
  display: flex;
  position: absolute;
  text-align: center;
  font-weight: 600;
  border-top: solid 2px #fff;
}

.menuFooter img{
  width: 15px;
  margin: 0 auto;
}

.overlay{
  cursor: pointer;
  width: 100%;
  height: 1000px;
  z-index: 10001;
  background: #fff;
  opacity: 0.9;
  display: none;
  position: fixed;
}

.headerSec{
  top: 0;
  width: 100%;
  height: 70px;
  position: fixed;
  z-index: 999;
  box-shadow: 0rem 0px 1rem 0px #969696;
  background: linear-gradient(#FFFFFF,#969696);
}

.headerImg{
  height: 23px;
  margin-right: 13px;
  vertical-align: middle;
}

.mainLogoHref{
  top: 50%;
  left: 50%;
  display: block;
  position: absolute;
  width: max-content;
  transform: translate(-50%, -50%);
}

.mainLogo{
  width: auto;
  height: 55px;
}

.headerLogin{
  top: 50%;
  right: 0%;
  position: absolute;
  transform: translate(-10%, -50%);
}

.registerBtn{
  color: #F90B0B;
  font-size: 12px;
  font-weight: 700;
  margin-right: 10px;
  text-transform: uppercase;
}

.loginBtn{
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  background: #F90B0B;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
}

.loginBtn:focus{
  outline: none;
}

.titleDiv{
  width: 100%;
  position: relative;
}

.titleBanner{
  width: 100%;
}

.titleWord{
  top: 50%;
  left: 10%;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  position: absolute;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px #fff;
  transform: translate(0%, -50%);
}

#homeCarousel{
  width: 100%;
  height: max-content !important;
  max-height: max-content;
  margin: 0;
  padding: 0;
  overflow: hidden;
  margin-bottom: 0 !important;
  line-height: 0;
}

#homeCarousel img{
  width: 100%;
}

.slick-slider img{
  width: 100%;
}

.slick-dots{
  bottom: 10px;
  text-align: right;
}

.slick-dots li{
  width: 15px;
  height: 15px;
}

.marqueeWrap{
  display: flex;
  height: 30px;
  background: #999999;
}

.soundCol{
  width: 25%;
  background: #333333;
  position: relative;
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -webkit-transform: skew(-45deg);
  -ms-transform: skew(-45deg);
  transform: skew(-45deg);
  z-index: 10;
}

.soundCol2{
  width: 100%;
  height: 100%;
  position: relative;
  transform: skew(45deg);
}

.soundCol img{
  width: 22px;
  display: block;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

.marquee{
  color: #fff;
  width: 100%;
  background: #999999;
  overflow: hidden;
  font-weight: 600;
  font-size: 10px;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: -20px;
}

.quickMenuWrap{
  width: 100%;
  color: #fff;
  padding: 10px;
  margin: 10px;
  font-size: 12px;
  background: #F90B0B;
  border-radius: 10px;
  position: relative;
  display: flex;
}

.quickMenuWrap .selected{
  width: 80%;
  height: 100%;
  z-index: 1;
  color: #F90B0B;
  background: #fff;
  font-weight: 700;
  padding: 5px 0;
  font-size: 9px;
  border-radius: 10px;
  margin: 0 auto;
  box-shadow: 0rem 0px 1rem 0px #d8d8d8;
}

.refreshImg{
  width: 15px;
  margin-left: 10px;
}

.quickMenuWrap .function{
  width: 70%;
  margin: 0 auto;
  display: block;
}

.quickMenuWrap .function2{
  width: 40%;
  margin: 0 auto;
  display: block;
}

.quickMenuWrap .functionTitle{
  display: block;
  font-size: 9px;
  margin-top: 5px;
  font-weight: 600;
  text-align: center;
}

.walletDetails{
  width: 100%;
  color: #F90B0B;
  padding-bottom: 15px;
}

.walletDetails a{
  color: #F90B0B;
}

.walletDetails .btnOut{
  width: 30px;
  padding: 2px;
  font-size: 10px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #F90B0B;
}

.walletDetails .btnIn{
  width: 30px;
  color: #96D094;
  padding: 2px;
  font-size: 10px;
  background: #fff;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #96D094;
}

.categoryWrap{
  width: 100%;
}

.categoryWrap img{
  width: 100%;
}

.categoryWord{
  color: #fff;
  right: 20px;
  bottom: 35px;
  font-weight: 700;
  position: absolute;
  text-transform: uppercase;
}

.bodyWrap{
  height: auto;
  min-height: max-content;
  padding-top: 70px;
  margin-bottom: 80px;
}

.footer{
  bottom: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
}

.footer ul{
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  background: #fff;
}

.footer ul li{
  padding: 0;
  margin: 0;
  width: 20%;
  height: 50px;
  list-style: none;
  text-align: center;
  display: inline-block;
}

.footer ul li a{
  color: #F90B0B;
  width: 100%;
  height: 100%;
  display: block;
  font-weight: 600;
  position: relative;
}

.footerWrap{
  top: 50%;
  left: 50%;
  width: max-content;
  position: absolute;
  transform: translate(-50%, -50%);
}

.footerWrap img{
  height: 20px;
  display: block;
  margin: 0 auto;
}

.footer ul li svg{
  margin: 0 auto;
  display: block;
}

.footer .active a{
  color: #fff;
  background: #F90B0B;
  font-weight: 700;
}

.cassuite2 {
  width: 100%;
  margin: 0;
  height: auto;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.cassuite2 .casname {
  color: #fff;
  width: 50%;
  text-align: center;
  display: block;
  margin: 0 0 10px;
  padding: 60px 0 0;
  position: absolute;
  z-index: 2;
  left: 0;
  height: 100%;
  transition: all .3s;
}

.cassuite2:hover .casname {
  padding: 80px 0 0;
}

.cassuite2 img {
  top: 0;
  right: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0 auto;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
}

.cassuite2:hover img{
  transform: scale(1.1);
  -webkit-transform: scale(1.1);  
}

.cassuite2 .casname h3 {
  font-size: 3em;
  margin: 0;
  width: 100%;
  text-align: center;
  line-height: 100%;
  opacity: 1;
}

.cassuite2 .casname span.suite {
  font-size: 1em;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: center;
}

.cassuite2 .casname span.provname {
  font-size: 1em;
  margin: 15px 0 0;
  padding: 0;
  width: 100%;
  font-weight: 700;
  display: block;
  text-align: center;
  opacity: 1;
  transition: all .3s;
}

.cassuite2:hover .casname span.provname {
  opacity: 0;
}

.cassuite2 .cassuitehvr {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: 1px solid transparent;
  transition: all .3s;
}

.cassuite2:hover .cassuitehvr {
  opacity: 1;
  background: rgba(0, 0, 0, .75);
  outline: 1px solid rgba(255, 255, 255, .15);
  outline-offset: -10px;
}

.cassuite2 .cassuitehvr .playbtnhvr{
  color: #f2d50c;
  font-size: 8px;
  font-weight: bold;
  text-align: center;
  background: #202020;
  position: absolute;
  line-height: 30px;
  height: 30px;
  right: 10px;
  top: 80px;
  width: 40%;
  opacity: 0;
  transition: all .3s;
}

.playbtnhvr:hover{
  color: #000 !important;
  background: #f2d50c !important;
}

.cassuite2:hover .cassuitehvr .playbtnhvr {
  right: 20px;
  opacity: 1;
}

/* Modal */
.modal{
  overflow: auto;
}

.modal-dialog{
  border-radius: 6px;
}

.modal-body{
  width: 100%;
  display: block;
  overflow-x: auto;
  text-align: center;
}

.modal-content{
  background: #000;
  overflow: scroll;
}

.modal-header{
  display: block;
  position: relative;
  border-bottom: 0px;
}

.modalLogoWrap{
  width: 100%;
  text-align: center;
}

.modal-header .close{
  right: 20px;
  color: #fff;
  opacity: 1;
  position: absolute;
}

.inputCol{
  display: inline-block;
  vertical-align: middle;
}

.inputCol select{
  border-radius: 0;
}

.inputBody h2{
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.inputAmount{
  color: #F90B0B;
  width: 170px;
  height: 35px;
  border: none;
  padding-left: 10px;
  background: #EAEAEA;
  vertical-align: middle;
  border-radius: 5px;
}

.btnLogin{
  width: 100px;
  height: 30px;
  background: #fdb813;
}


.forgetCol{
  color: #f2d50c;
  font-size: 12px;
}

.forgetCol a{
  color: #f2d50c;
  font-weight: bold;
  text-decoration: underline;
  text-transform: lowercase;
}

.forgetCol a:hover{
  color: #fff;
}

/* Promotions */
.moreinfo{
  color: #f2d50c;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.moreinfo:hover{
  color: #f2d50c;
  text-decoration: none;
}

.promotionBox{
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  display: inline-block;
}

.promotionBox h1{
  color: #f2d50c;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  width: max-content;
}

.promoTextDiv{
  color: #fff;
  width: 100%;
  float: right;
  padding: 10px;
  position: relative;
  display: inline-block;
}

.promoTextDiv h1{
  color: #f2d50c;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
}

.promoTextDiv h2{
  font-size: 13px;
  font-weight: 400;
}

.promotionBox img{
  border-radius: 15px;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: .3s ease-in-out;
  -webkit-transition: .3s ease-in-out;
}

.promotionUl{
  padding: 0;
  display: flex;
  margin: 0 auto;
  color: #F90B0B;
  font-weight: 500;
  width: max-content;
  text-align: center;
  margin-bottom: 25px;
}

.promotionUl li{
  font-size: 11px;
  text-align: center;
  list-style: none;
  cursor: pointer;
  padding: 0 5px;
  transition: all .5s;
}

.promotionUl .active{
  font-size: 12px;
  font-weight: bold;
}

.promotionUl .icon{
  width: 25px;
  display: block;
  margin: 0 auto;
  padding: 10px 0 2px 0;
}

.promotionUl span{
  text-transform: uppercase;
}

.gameinfoBox{
  line-height: 2;
  font-size: 13px;
  padding-top: 10px;
  background: #ffe000;
  padding-bottom: 10px;
}

.gameinfoBox input{
  width: 120px;
}

.gameinfoBox svg{
  font-size: 15px;
  margin-right: 3px;
}

.btnCopy{
  color: #F90B0B;
  border: none;
  background: transparent;
}

.delay-1{
  animation-delay: 0.2s;
}
.delay-2{
  animation-delay: 0.4s;
}
.delay-3{
  animation-delay: 0.6s;
}
.delay-4{
  animation-delay: 0.8s;
}
.delay-5{
  animation-delay: 1s;
}
.delay-6{
  animation-delay: 1.2s;
}

.promotionsTable td{
  width: max-content;
  height: 70px;
}

.promotionsImg{
  width: auto;
  height: 40px;
  margin-right: 10px;
  box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -webkit-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -moz-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
}

.promotitle{
  color: #f2d50c;
  font-size: 14px;
}

.promotionDetails{
  color: #fff;
  padding-bottom: 1rem;
}

/* Member */
.memberCol{
  font-size: 11px;
}

.memberUl{
  padding: 0;
  display: flex;
  margin: 0 auto;
  color: #f2d50c;
  font-size: 11px;
  font-weight: 500;
  width: max-content;
}

.memberUl li{
  width: 80px;
  height: 50px;
  text-align: center;
  line-height: 40px;
  list-style: none;
  cursor: pointer;
  line-height: 50px;
  border: none;
}

.memberUl .active{
  color: #f2d50c;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  border-bottom: none;
}

.memberUl .active:after{
  bottom: -20px;
  left: 50%;
  font-size: 18px;
  transform: translate(-50%, 0%);
  display: block;
  content: "\f0d8";
  font-weight: bold;
  position: absolute;
  font-family: 'Font Awesome 5 Free';
}

.memberFrame{
  color: #F90B0B;
  width: 100%;
  margin-top: 30px;
  min-height: 500px;
  position: relative;
}

.memberTitle{
  color: #F90B0B;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.memberBody{
  position: relative;
  padding: 0px 20px;
}

.memberBody h2{
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Select Style */
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #fff;
  width: 220px;
  height: 35px;
}

.select-styled {
  width: 180px;
  font-size: 12px;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #F90B0B;
  padding: 8px 15px;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid #fff;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}

.select-styled:active, .select-styled.active {
  color: #000;
  background-color: #F90B0B;
}
.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #000 transparent;
}

.select-options {
  width: 180px;
  color: #fff;
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 9999;
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 160px;
  overflow-y: auto;
  background-color: #F90B0B;
}
.select-options li {
  margin: 0;
  font-size: 13px;
  padding: 12px 0;
  text-indent: 15px;
  border-top: 1px solid #F90B0B;
  transition: all .2s;
  -moz-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  -webkit-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
.select-options li:hover {
  color: #F90B0B;
  font-size: 14px;
  background: #fff;
}
.select-options li[rel="hide"] {
  display: none;
}

/* HIDE RADIO */
[type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
[type=radio] + img + span{
  cursor: pointer;
}

/* CHECKED STYLES */
[type=radio]:checked + img{
  -webkit-box-shadow: 0px 0px 5px 2px rgb(244 10 11);
  -moz-box-shadow: 0px 0px 5px 2px rgb(244, 10, 11);
  box-shadow: 0px 0px 5px 2px rgb(244, 10, 11);
  background: linear-gradient(#fffefe, #9e9e9e);
  border: 2px solid #F90B0B;
}

input[type="radio"]:checked+label {
  color: #fff;
  background-color: #F90B0B;
}

.btnAll{
  width: 50px;
  height: 35px;
  color: #000;
  margin-left: 15px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  background: #f2d50c;
  vertical-align: middle;
  border: 1px solid #f2d50c;
}

.btnAll:hover{
  color: #fff !important;
}

.btnAll:active{
  color: #fff;
  border-color: #000;
}

.btnSubmit{
  width: 100px;
  height: 40px;
  color: #fff;
  border-radius: 5px;
  font-size: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: #F90B0B;
}

.btnSubmit2{
  width: auto;
  height: 26px;
  color: #fff;
  border-radius: 5px;
  font-size: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  background: #F90B0B;
}


/* Deposit */
.depositOptionsImg{
  width: 100px;
  padding: 5px 10px;
  margin-right: 10px;
  box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -webkit-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -moz-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
}

.depositOptionsLabel{
  width: 110px;
  height: 35px;
  color: #F90B0B;
  font-weight: 600;
  margin-right: 5px;
  background: #fff;
  line-height: 35px;
  text-align: center;
  border-radius: 15px;
}

.depositOptionsLabel1{
  width: auto;
  height: 35px;
  color: #F90B0B;
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  margin-right: 5px;
  background: #fff;
  line-height: 35px;
  text-align: center;
  border-radius: 15px;
  padding: 0 10px;
}

.depositForm label{
  cursor: pointer;
}

.bankImgTable td{
  width: max-content;
  height: 70px;
  padding-right: 10px;
}

.bankImg{
  width: auto;
  height: 40px;
  margin-right: 10px;
  box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -webkit-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
  -moz-box-shadow: 0px 0px 5px 0px rgb(199, 199, 199);
}

.quickAmount{
  width: auto;
  height: 35px;
  color: #000;
  margin-right: 15px;
  border: .5px solid #ccc;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  vertical-align: middle;
  background: rgb(248, 248, 248);
}

.input-group>.custom-select:not(:last-child), .input-group>.form-control:not(:last-child){
  padding-left: 10%;
  font-size: 14px;
  height: 40px;
  margin-top: 0px;
  border: none;
  background: rgb(248, 248, 248);
}

.btn-choose{
  color: #000;
  height: 100%;
  background: #f2d50c;
  font-weight: 500;
  border-radius: 0px;
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
  font-size: 12px;
}

.input-file{
  height: 40px;
  vertical-align: middle;
  width: 220px;
}

.btnUpload{
  font-weight: bold;
  font-size: 14px;
}

.alterIcon{
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin-right: 5px;
}

.alterIcon svg{
  color: #F90B0B;
  font-size: 1.5rem;
  vertical-align: middle;
}

.tranDateOpt{
  width: auto;
  height: auto;
  color: #F90B0B;
  margin-bottom: 0px;
  padding: 0px 10px;
  border: .5px solid #ccc;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 500;
  cursor: pointer;
  vertical-align: middle;
  background: #fff;
  text-align: center;
  line-height: 35px;
  background: #fff;
}

.tranDateDiv{
  position: relative;
  margin-right: 5px;
  margin-bottom: 15px;
  display: inline-block;
}

.tranDateRadio{
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  position: absolute;
}

.tranDateRadio:hover{
  color: #000;
  background: #fff;
}

.tranDateRadio:checked+.tranDateOpt{
  color: #fff;
  background: #F90B0B;
}

.combodate .day, .month, .year{
  color: #fff;
  height: 26px;
  font-size: 10px;
  margin-right: 5px;
  padding: 0 5px;
  text-align: center;
  background: #F90B0B !important;
  min-width: 30px;
  width: auto !important;
  -webkit-appearance:none;
  border-radius: 5px;
}

#tranTableDiv{
  font-size: 10px;
  overflow-y: auto;
  max-height: 300px;
  margin-bottom: 20px;
}

.tranTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.tranTable td, .tranTable th {
  padding: 8px;
  text-align: center;
}

.tranTable tr:nth-child(even){
  color: #000;
  background-color: #EAEAEA;
}

.tranTable tr:hover {
  color: #000;
  font-weight: 500;
  background-color: #f2d50c;
}

.tranTable th {
  color: #000;
  font-size: 11px;
  padding-top: 12px;
  padding-bottom: 12px;
  border: none !important;
}


/* Register */
.registerDiv{
  color: #000;
  padding:0px 30px;
  margin: 0 auto;
  position: relative;
  margin-top: 50px;
}

.registerDiv2{
  width: 90%;
  padding: 40px;
  margin: 0 auto;
  border: 1px solid #fff;
}

.registerDiv2 ul{
  margin: 0;
  padding-left: 20px;
  line-height: 1.8;
}

.registerDiv3{
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.registerDiv3 .div{
  color: #F90B0B;
  font-weight: 700;
  font-size: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.registerDiv3 .commonTxt{
  width: 100%;
  height: 30px;
  padding: 0 15px;
  border-radius: 5px;
  border: 1px solid #FCBBB9;
}

.registerDiv3 .subtitle{
  color: #F90B0B;
  font-size: 12px;
  font-weight: 600;
}

.registerDiv3 p{
  color: #F90B0B;
  font-size: 11px;
}

.registerDiv3 .line{
  width: 60%;
  height: 2px;
  margin: 0 auto;
  background: #FCBBB9;
  margin-top: 45px;
}

.circle{
  top: -50%;
  z-index: 1;
  color: #fff;
  width: 35px;
  padding: 6px;
  height: 35px;
  display: block;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 50px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  background: #FCBBB9;
  position: absolute;
  transform: translateY(-50%);
}

.circle-active{
  background: #F90B0B;
}

.circle1{
  left: 15%;
}

.circle2{
  left: 45%;
}

.circle3{
  right: 15%;
}


/*Lottery*/
.betnowAHref{
  margin: 0 auto;
  display: block;
  cursor: pointer;
  position: relative;
  width: max-content;
}

.betnowAHref img{
  width: 180px;
  transition: all .5s;
}

.betnowAHref:hover img{
  filter: brightness(1.5);
}

.betnowWording{
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  position: absolute;
  text-transform: uppercase;
  white-space: break-spaces;
  transform: translate(-50%, -50%);
}

.btnPayout{
  color: #fff;
  width: 180px;
  height: 45px;
  border: unset;
  margin: 0 auto;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0rem 0px 1rem 0px #E9372B;
  background: linear-gradient(#F90B0B, #6D0000);
}

.btnDrawResult{
  color: #fff;
  width: 90px;
  height: 30px;
  display: block;
  margin: 20px auto;
  font-size: 13px;
  font-weight: 500;
  border-radius: 10px;
  background: linear-gradient(#F90B0B, #6D0000);
}

.payoutTable{
  width: 100%;
  margin: 0 auto;
  font-size: 11px;
  background:#fff;
  white-space: pre;
  text-align: center;
  table-layout: fixed;
  border-collapse: collapse;
}

.payoutTable tr{
  height: 25px;
}

.payoutTable tr:first-child{
  color: #DBBD15;
  background: #000;
  font-weight: bold;
  font-size: 12px;
  height: 35px;
}

.payoutTable td{
  color: #000;
  border: 1px solid #DBBD15;
}

.drawDateSpan{
  margin-right: 20px;
  font-size: 12px;
}

.drawResultDiv{
  color: #fff;
  width: 100%;
  padding: 20px;
  margin: 50px auto;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(#980000, #4C0000);
}

#drawresult{
    clear:both;
}
 #drawresult ul {
    margin:0px;
    padding:0px;
    list-style:none;
}
 #drawresult ul > li {
    display:-moz-inline-stack;
    display:inline-block;
    width:230px;
    margin:10px;
    padding:10px;
    text-align:center;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}
 #drawresult ul > li table {
     width:100%;
}
 #drawresult ul > li table caption {
    font-size: 14px;
  text-transform: uppercase;
    padding:5px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-align:left;
  caption-side: top;
  font-weight: bold;
}
 #drawresult ul > li table caption div { 
    font-size: 10px;
} 
 #drawresult ul > #M table caption {  
    background:url("../media/static/magnum.png") #DDDDDD 10px 10px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #P table caption {
    background:url("../media/static/damacai.png") #DDDDDD 10px 10px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #T table caption {
    background:url("../media/static/toto.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #S table caption {
    background:url("../media/static/singaporepools.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #K table caption {
    background:url("../media/static/stc.png") #DDDDDD 10px 12px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #W table caption {
    background:url("../media/static/cash.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #B table caption {
  background:url("../media/static/88.png") #DDDDDD 10px 6px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #N table caption {
  background:url("../media/static/perdana.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #L table caption {
  background:url("../media/static/luckyhari2.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}
 #drawresult ul > #H table caption {
  background:url("../media/static/gdlotto.png") #DDDDDD 10px 5px no-repeat;
    padding-left:60px;
    background-size: 16%;
}

 #drawresult ul > li table tr td {
    padding:15px 5px;
}
 #drawresult ul > li table tr:first-child td{
    border:0px;
}
 #drawresult ul > li ol {
    margin:0px;
    padding:0px;
    list-style:none;
  text-align: center;
}
 #drawresult ul > li ol li {
    display:inline;
}
 #drawresult ul > li ol.abc li {
    padding:0px 10px;
    font-weight:bold;
  font-size: 13px;
}
 #drawresult ul > li ol.p li {
    padding:0px 3px;
  font-size: 13px;
  display: inline-block;
  width: 35px;
}
 #drawresult ul > li ol.c li {
    padding:0px 3px;
  font-size: 13px;
}

/***4d***/
.f4d-date-selector{
  background-color: #FFFFFF;
  border: solid 4px #FFFFFF;
}

.r4dLimitorWord{
  color: #fff;
}

.result4dFrame{
  background: linear-gradient(#ec1c24, #811117);
  -webkit-box-shadow: 0px 0px 5px 4px rgba(51,41,51,1);
  -moz-box-shadow: 0px 0px 5px 4px rgba(51,41,51,1);
  box-shadow: 0px 0px 5px 4px rgba(51,41,51,1);
}

#drawresult ul > li {
  background:#efefef;
  border:1px solid #B2B2B2;
}

#drawresult ul > li table caption {
  color:#333333;
}

#drawresult ul > li table tr td {
  color:#333333;
  border-top:1px solid #888888;
}

.lotterySection{
  padding: 30px 0;
  min-height: max-content;
}

.lotteryTable{
  background-color: transparent;
}

.lotteryHeader{
  color: #fff;
  background: linear-gradient(#ec1c24, #811117);
}

.lotteryTable table tr td{
  color: #000000;
}

.lotteryTable td, th{
  white-space: normal;
  border: 1px solid #794444;
}

.commonModal{
  color: #fff;
  font-size: 12px;
  min-width: 80%;
  max-width: 90%;
  max-height: 600px;
  border-radius: 25px;
  -moz-box-shadow: 0rem 0px 1rem 0px #F90B0B;;
  -webkit-box-shadow: 0rem 0px 1rem 0px #F90B0B;
  box-shadow: 0rem 0px 1rem 0px #F90B0B;
  background: #F90B0B;
  text-align: center;
  margin: 0 auto;
}

.commonModal table{
  color: #F90B0B;
}

.launchGameTable{
  width: 100%;
  font-size: 12px;
  text-align: left;
  table-layout: auto;
}

.launchGameTable td{
  color: #fff !important;
  vertical-align: middle;
  padding-bottom: 15px;
}

.launchGameImg{
  width: 150px;
}

.commonField{
  width: 150px;
  height: 30px;
  border-radius: 5px;
  border: none;
  box-shadow: 0rem 0px 2rem 0px #fff;
}

.commonBtn{
  font-size: 14px;
  font-weight: 600;
  padding: 3px 15px;
  color: #F90B0B;
  background: #fff;
  border-radius: 5px;
}

.loginLogo{
  width: 100px;
  margin-left: auto;
  margin-right: auto;
  
}

.vipSection{
  padding: 40px 0px;
  background: linear-gradient(#4C0000, #F90B0B);
}

.vipSection2{
  min-height: max-content;
  height: 100%;
  padding-bottom: 40px;
  background: #F90B0B;
}

.vipCarousel{
  width: 100%;
}

.vipCarousel img{
  width: 60%;
  margin: 0 auto;
}

.vipTierLogo{
  padding-bottom: 50px;
}

.vipTierLogo img{
  width: 132px;
}

.vipTierDescWrap{
  color: #fff;
  height: 40px;
  display: block;
  font-size: 7px;
  margin-top: 20px;
  position: relative;
  text-transform: uppercase;
}

.vipTierDescWrap span{
  display: block;
}

.vipTierDesc1{
  left: 0%;
  position: absolute;
  width: max-content;
  text-align: center;
  display: inline-block;
}

.vipTierDesc2{
  left: 25%;
  position: absolute;
  width: max-content;
  text-align: center;
  display: inline-block;
}

.vipTierDesc3{
  left: 50%;
  position: absolute;
  width: max-content;
  text-align: center;
  display: inline-block;
}

.vipTierDesc4{
  right: 0%;
  position: absolute;
  width: max-content;
  text-align: center;
  display: inline-block;
}

.vipFrame{
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
}

.vipLevel{
  top: 50%;
  left: 50%;
  width: 60px;
  transform: translate(-50%, -50%);
  position: absolute;
}

.vipProgressBar{
  left: 2%;
  top: 28%;
  height: 50%;
  position: absolute;
  border-radius: 30px;
  background: linear-gradient(to right, #F2C86C, #E99C00, #F2C86C);
}

.vipProgressBarBorder{
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
}

.vipStatusTable{
  width: 100%;
  color: #fff;
  border: none;
  font-size: 9px;
  font-weight: 500;
  table-layout: auto;
  letter-spacing: 2px;
  padding: 20px 0;
  text-transform: uppercase;
}

.vipLabelWrap{
  cursor: pointer;
  width: max-content;
  position: relative;
}

.vipLabel{
  height: 40px;
  padding: 3px;
}

.vipLabelWord{
  top: 60%;
  left: 48%;
  width: 100%;
  font-size: 7px;
  font-weight: 600;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%);
}

.vipTable{
  width: 100%;
  text-align: left;
  table-layout: auto;
  color: #fff !important;
}

.vipTable td{
  vertical-align: top;
  padding-bottom: 15px;
}

.vipPrivilegesWrap{
  margin: 0 auto;
  width: max-content;
  position: relative;
}

.vipPrivilegesTable{
  width: 100%;
  border: none;
  margin: 0 auto;
  font-size: 12px;
  table-layout: auto;
  text-align: center;
}

.vipPrivilegesTable img{
  width: 100%;
}

.vipPrivilegesTable td{
  width: 50%;
  vertical-align: middle;
}

.vipPrivilegesTable{
  color: #fff;
}

.vipSelectedImg{
  height: 100%;
  position: absolute;
}

.vipOpacity{
  background-color: rgb(255 255 255 / 20%);
}

.vipTierWrap{
  margin: 0 auto;
  font-size: 10px;
  text-align: right;
  font-weight: bold;
  position: relative;
  width: 100%;
  text-transform: uppercase;
}

.vipTierLabel-1{
  top: 65%;
  right: 15%;
  position: absolute;
  white-space: pre-wrap;
  transform: translate(0%, -50%);
}

.vipTierLabel-2{
  top: 55%;
  right: 12%;
  position: absolute;
  white-space: pre-wrap;
  transform: translate(0%, -50%);
}

.vipTierLabel-3{
  top: 60%;
  right: 8%;
  position: absolute;
  white-space: pre-wrap;
  transform: translate(0%, -50%);
}

.vipTierLabel-4{
  top: 55%;
  right: 13%;
  position: absolute;
  white-space: pre-wrap;
  transform: translate(0%, -50%);
}

.vipTierLabelImg{
  display: block;
}

.vipLogo{
  width: 280px;
}

.vipSelected{
  position: absolute;
}

.vipNext{
  top: 50%;
  opacity: .7;
  right: -10px;
  color: #fff;
  border: none;
  z-index: 1;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  background: transparent;
}

.vipPrev{
  top: 50%;
  opacity: .7;
  left: -10px;
  color: #fff;
  border: none;
  z-index: 1;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  background: transparent;
}

/*------------------------------------------------------------------
[ Input ]*/

.wrap-input100 {
  width: 100%;
  font-size: 12px;
  margin-top: 40px;
  margin-bottom: 35px;
  position: relative;
  border-bottom: 2px solid #fff;
}

.input100 {
  font-size: 12px;
  color: #fff;
  line-height: 1.2;
  border: none;
  display: block;
  width: 100%;
  height: 52px;
  background: transparent;
  padding: 0 5px;
}

.input100:focus{
  outline: none;
}

.tooltip-inner{
  text-align: left;
  font-weight: bold;
  padding: 3px 5px;
  font-size: 8px !important;
}


/*---------------------------------------------*/ 
.focus-input100 {
  font-size: 12px;
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #57b846;
}

.focus-input100::after {
  font-size: 18px;
  color: #f2d50c;
  line-height: 1.2;
  font-size: 12px;
  font-weight: 500;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 15px;
  left: 0px;
  padding-left: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-input100::after {
  top: -20px;
  font-size: 12px;
}

.input100:focus + .focus-input100::before {
  width: 100%;
}

.has-val.input100 + .focus-input100::after {
  top: -20px;
  font-size: 12px;
}

.has-val.input100 + .focus-input100::before {
  width: 100%;
}

/*------------------------------------------------------------------
[ Alert validate ]*/

.validate-input {
  position: relative;
}

/*
.alert-validate::before {
  content: attr(data-validate);
  position: absolute;
  max-width: 70%;
  background-color: #fff;
  border: 1px solid #c80000;
  border-radius: 2px;
  padding: 4px 25px 4px 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0px;
  pointer-events: none;

  font-family: Poppins-Regular;
  color: #c80000;
  font-size: 13px;
  line-height: 1.4;
  text-align: left;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  -moz-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
*/

.alert-validate::after {
  content: url(../media/static/tick.jpeg);
  display: block;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-validate:hover:before {
  visibility: visible;
  opacity: 1;
}

.alert-warn::after {
  content: url(../media/static/warning.jpeg);
  display: block;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-warn:hover:before {
  visibility: visible;
  opacity: 1;
}

.alert-false::after {
  content: url(../media/static/false.jpeg);
  display: block;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
}

.alert-false:hover:before {
  visibility: visible;
  opacity: 1;
}

.btnJoin2 {
  margin: 0 auto;
  font-size: 13px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  display: inline-block;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 35px;
  background-color: #F90B0B;
  border: none;
  border-radius: 10px;

  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.btnJoin2:hover  {
  color: #fff;
  cursor: pointer;
  background-color: #333333;
}

.step1{
  margin-top: 60px;
}

.step2 a{
  margin-top: auto;
  margin-bottom: auto;
}

.registerBack{
  margin-right: 20px;
}

.step2 .fa-angle-left{
  color: #F90B0B;
  font-size: 35px;
}

.step2 label{
  font-size: 15px;
  margin-bottom: 10px;
}

.step3{
  margin-top: 60px;
  margin-bottom: 60px;
}

.btnGonow{
  display: block;
  margin: 30px auto;
  width: max-content;
  padding: 10px 15px;
  background: #F90B0B;
  border-radius: 15px;
}

.mainwallet{
  font-size: 16px;
  padding: 20px 30px 10px 30px;
  color: #F90B0B;
  font-weight: 500;
  text-align: center;
}

.mainwalletHead{
  padding: 15px;
  font-size: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.mainwalletHead:hover{
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.mainwalletGame{
  height: max-content;
  padding: 15px 10px;
  position: relative;
  margin-bottom: 15px;
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
  box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

.mainwalletGame:hover{
  box-shadow: 0rem 0px 1rem 5px #484848;
}

.mainwalletGameCol1{
  display: flex;
  min-height: 60px;
  position: relative;
}

.mainwalletGame .allin{
  color: #000;
  margin-left: 5px;
  display: inline-block;
  padding: 5px 10px;
  background: #f02e25;
}

.mainwalletGame .allin:hover{
  color: #fff;
}

.mainwalletGame .allout{
  color: #f02e25;
  background: #000;
  margin-left: 5px;
  padding: 5px 10px;
  display: inline-block;
  box-shadow: 1rem 0 3rem #0c0c0c;
}

.mainwalletGame .allout:hover{
  color: #fff;
}

.dots{
  top: 50%;
  left: 50%;
  width: 60px;
  height: auto;
  position: absolute;
  transform: translate(-100%, -50%);
}

.sync{
  cursor: pointer;
  font-size: 13px;
  vertical-align: middle;
}

.sync svg{
  color: #f02e25;
}

.sync svg:hover{
  color: #fff;
}

.restoreall{
  color: #000;
  font-size: 10px;
  padding: 5px 10px;
  background: #f02e25;
  display: inline-block;
  vertical-align: middle;
}

.quickBar{
  width: 100%;
  color: #fff;
  padding: 5px;
  font-size: 8px;
  font-weight: 500;
  text-align: center;
  height: max-content;
  background: #F90B0B;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0rem 0px 1rem 0px #000;
}

.quickBar img{
  width: 40px;
}

.quickBar ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.quickBar li{
  padding: 10px 0;
  position: relative;
}

.quickBar span{
  display: block;
  padding-top: 5px;
}

.quickBar .selected{
  width: 140%;
  z-index: 1;
  color: #F90B0B;
  background: #fff;
  font-weight: 700;
  padding: 5px 0;
  font-size: 9px;
  transform: translate(-15%, 0);
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: 0rem 0px 1rem 0px #d8d8d8;
}

#langModal .modal-body img{
  width: 35px;
  margin: 0 auto;
  display: block;
  padding-bottom: 5px;
}

.forgetPassTitle{
  color: #F90B0B;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.infoCenterDiv{
  color: #fff;
  display: flex;
  height: 500px;
  margin: 30px 0 0 0;
  border-radius: 5px;
  background: #F90B0B;
}

.infoUl{
  padding: 0;
  list-style: none;
  text-align: center;
}

.infoUl li{
  height: 125px;
  margin: auto;
  position: relative;
  border-top: 1px solid #fff;
}

.infoNav{
  top: 50%;
  left: 50%;
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
}

.infoUl li:first-child{
    border-top: none;
}

.infoTitle{
  width: 25%;
  height: 100%;
  font-size: 10px;
  font-weight: 600;
  border-right: 1px solid #fff;
}

.infoContent{
  width: 75%;
  overflow-y: auto;
}

.infoSubTitle{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.infoBannerDiv{
  width: 100%;
  position: relative;
}

.infoBanner{
  width: 100%;
}

.infoWord{
  top: 50%;
  left: 5%;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  position: absolute;
  text-transform: uppercase;
  text-shadow: 0px 0px 10px #fff;
  transform: translate(0%, -50%);
}

.infoContentWrap{
  font-size: 10px;
  padding: 10px;
}

.infoContentWrap .title{
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  margin-left: 5px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.infoContentWrap ol{
  padding-left: 25px;
}

.commonSmallDiv{
  color: #F90B0B;
  font-weight: 600;
  width: auto;
  padding: 8px;
  font-size: 10px;
  min-width: 200px;
  min-height: 60px;
  position: relative;
  border-radius: 10px;
  border: 2px solid #F90B0B;
}

.commonSmallDiv .div1{
  padding-bottom: 5px;
  border-bottom: 1px solid #F90B0B;
}

/***Notification***/
.notification{
  position: relative;
}

.notification .badge {
  top: -5px;
  right: 5px;
  font-size: 10px;
  padding: 3px 6px;
  border-radius: 50%;
  position: absolute;
  background: #F90B0B;
  color: #fff;
}

.notificationDiv{
  color: #fff;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: 0rem 5px 1rem 0px #F90B0B;
  background: linear-gradient(#E9372B, #FF5555, #E9372B);
}

.notificationDiv .logo{
  width: 80%;
  margin: auto;
}

.notificationDiv .notiDate{
  font-size: 10px;
  padding-top: 5px;
  padding-bottom: 10px;
  display: inline-block;
}

.notificationDiv .notiNew{
  padding: 2px;
  font-size: 8px;
  background: red;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  text-transform: uppercase;
  vertical-align: middle;
}

.notificationDiv .notiTitle{
  display: block;
  font-size: 13px;
  font-weight: bold;
}

.notificationDiv .notiText{
  display: block;
  font-size: 12px;
  padding-bottom: 10px;
}

.btnChangePassword{
  display: block;
  width: max-content;
  margin-top: 10px;
  color: #fff !important;
  padding: 5px 10px;
  background: #F90B0B;
  cursor: pointer;
  border-radius: 5px;
}

.aboutDiv{
  color: #fff;
  margin: 20px 0;
  border-radius: 5px;
  background: #F90B0B;
}

.aboutBody{
  padding: 10px;
}

.contactUl{
  margin-bottom: 0;
  padding-left: 15px;
  list-style-type: none;
}

.contactUl li{
  min-height: 80px;
}

.contactUl li svg{
  margin: 10px 0;
  font-size: 25px;
  padding-right: 5px;
  vertical-align: middle;
}

.page-item.active .page-link{
  border-color: #F90B0B;
  background-color: #F90B0B;
}

.page-link{
  color: #F90B0B;
}


/***Resolution***/
@media only screen and (max-width: 360px) {
  .mainLogo{
    height: 40px;
  }

  .registerBtn{
    font-size: 10px;
  }

  .loginBtn{
    font-size: 10px;
  }

  .categoryWord{
    right: 13px;
    bottom: 26px;
    font-size: 10px;
  }

  .headerImg{
    height: 18px;
  }

  .vipLabel{
    height: 34px;
  }

}
