/*Home Page Styles*/
/*GLOBAL STYLES*/
/* ----------- Non-Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 1) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}
/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  #floating-header {
    width: 100%;
    text-align: center;
  }
  #floating-header .topLoginForm {
    display: none;
  }
}
/*@font-face {
  font-family: Noto Sans SC;
  src: url(../fonts/NotoSansSC-Bold.woff);
  font-weight: 700;
}*/
/*@font-face {
  font-family: Noto Sans SC;
  src: url(../fonts/NotoSansSC-Regular.woff2);
  font-weight: 400;
}*/
body {
  font-family: Tahoma, Helvetica, Arial, "Microsoft Yahei", 微软雅黑, STXihei, 华文细黑, sans-serif;
  background-color: #EEEEEE;
  /*background-image: url('../images/bg-pattern.png');*/
}
.ismobile{
  display:none;
} 
#cover {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #00276c;
  z-index: 9999;
  text-align: center;
}
#cover img {
  margin-top: 20%;
}
a {
  outline: 0;
}
.height100 {
  height: 100%;
}
.fade-in {
  opacity: 1 !important;
}
.btnShadow {
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}
.btn {
  background-color: #FF7D00;
  border: 1px;
  color: #fff;
  cursor: pointer;
}
.btn:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.block {
  display: block !important;
}
.visible {
  visibility: visible !important;
}
.isvisible {
  visibility: hidden;
}
.hide {
  display: none;
}
.show {
  display: block;
}
.bold {
  font-weight: bold !important;
}
.clear {
  clear: both;
}
.none {
  display: none;
}
.trasition3s {
  transition: 0.3s ease-out;
}
@-webkit-keyframes slide-down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-down {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
.slideDown {
  -webkit-animation: slide-down 0.3s ease-out;
  -moz-animation: slide-down 0.3s ease-out;
}
@-webkit-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
.slideUp {
  -webkit-animation: slide-up 0.2s ease-out;
  -moz-animation: slide-up 0.2s ease-out;
}
.container {
  max-width: 1200px !important;
  padding: 0 !important;
  min-width: 1200px !important;
}
.opacity1 {
  opacity: 1 !important;
}
/*Fade In*/
.fadeIn {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
.animate1s {
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}
.animate2s {
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.animate3s {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}
.animate4s {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}
.animate5s {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
}
.animate6s {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PULSE */
.pulse:hover {
  animation-name: pulse;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  animation-direction: reverse;
}
@keyframes pulse {
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
  cursor: pointer;
}
button:focus {
  outline: none;
}
button,
submit {
  border: none;
  cursor: pointer;
}
.bg-blue {
  background-color: #001E5A;
}
.bg-light-blue {
  background-color: #003C82;
}
/*override angular material styles*/
.carousel-indicators {
  bottom: -5px;
}
.carousel-indicators li {
  background-color: #CCCCCC;
  width: 30px;
  height: 5px;
  border-radius: 15px;
}
.carousel-indicators .active {
  background-color: #FAA41D !important;
}
.carousel-item {
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /*opacity: 0;*/
}
/*.carousel-item.active {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}*/
.homePage .carousel-item {
  /*height: 470px;*/
}
.homePage .carousel-item img {
  width: 100%;
  }
.homePage .announcement {
  width: 100%;
  height: 40px;
  background-color: #fff;
  color: #505050;
  font-size: 15px;
  text-align: left;
  padding: 9px;
  position: relative;
  cursor: pointer;
}
.homePage .announcement .timer {
  width: 244px;
  height: 22px;
  display: inline-block;
  vertical-align: top;
}
.homePage .announcement .timer img {
  width: 20px;
  height: 20.13px;
  vertical-align: top;
  margin-left: 3px;
}
.homePage .announcement .texts {
  width: 952px;
  height: 22px;
  display: inline-block;
  position: absolute;
}
.homePage .announcement .texts div._public_news {
  width: 100%;
  height: 22px;
  overflow: hidden;
}
.homePage .announcement .texts #announcetxt {
  position: absolute;
  bottom: -10px;
}
.homePage .announcement .content {
  -webkit-transition: all 3ms ease-in-out;
  -moz-transition: all 3ms ease-in-out;
  -ms-transition: all 3ms ease-in-out;
  -o-transition: all 3ms ease-in-out;
  transition: all 3ms ease-in-out;
  position: relative;
  background-color: #fff;
  bottom: 0;
  z-index: 100;
}
.homePage .announcement .title {
  padding-right: 5px;
  padding-left: 70px;
}
.homePage .announcement .title:after {
  content: ':';
  font-weight: 700;
}
.homePage .paymentSection {
  width: 100%;
  height: 150px;
  position: relative;
  background-position: center;
}
.homePage .paymentSection .container {
  display: flex;
  justify-content: center;
}
.homePage .paymentSection .container div {
  display: inline-block;
  margin: 30px 32px 30px 0;
}
.homePage .paymentSection .container div:last-child {
  margin-right: 0;
}
.homePage .hoverVendors {
  opacity: 0;
  border-radius: 5px 5px 0px 0px !important;
}

.hoverVendors li { position: relative; overflow: hidden; }

 img.hoverPhoto {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
}
img.hoverPhoto { /* it's optional - for nicer transition effect */
  opacity: 0;
  -web-kit-transition:  opacity 3ms ease;
  -moz-transition:  opacity 3ms ease; 
  -o-transition:    opacity 3ms ease;
  transition:   opacity 3ms ease;
}
img.hoverPhoto:hover{ opacity: 1; }

.homePage .bgHover {
  background-size: 130% !important;
}
.homePage .liveCasino {
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease-in-out;
  -moz-transition: background-size 0.3s ease-in-out;
  -ms-transition: background-size 0.3s ease-in-out;
  -o-transition: background-size 0.3s ease-in-out;
  -webkit-transition: background-size 0.3s ease-in-out;
  height: 220px;
  margin-top: 50px;
  border-radius: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  position: relative;
}
.homePage .liveCasino img {
  width: 1200px;
  height: 220px;
}
.homePage .liveCasino .hoverVendors {
  height: 170px;
  width: 100%;
  background-color: rgba(40, 87, 168, 0.95);
}
.homePage .liveCasino .hoverVendors ul {
  list-style-type: none;
  padding: 50px 0px 0px 0px;
  text-align: center;
}
.homePage .liveCasino .hoverVendors ul li {
  display: inline-block;
  margin: 0px 0px 0px 10.8px;
}
.homePage .slots-machine .hoverVendors ul li {
  margin: 0px 0px 0px 31px ;
}
.homePage .liveCasino .hoverVendors ul li img {
  width: auto;
  height: auto;
  max-width: 120px;
}
.homePage .liveCasino .hoverVendors ul li:nth-of-type(1) {
  margin-left: 0;
}
.homePage .liveCasino:hover {
  @extend .bgHover;
}
.homePage .liveCasino:hover .hoverVendors {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}

.icon-livecasino {
    background-image: url(../images/home/livecasino/icon-livecasino.png);
    background-repeat: no-repeat;
    display: block;
}

.icon-livecasino-logo-ag-white:hover {
    background-position: -5px -5px;
}

.icon-livecasino-logo-ag-white {
    width: 127px;
    height: 72px;
    background-position: -142px -5px;
}

.icon-livecasino-logo-allbet-white:hover {
    background-position: -279px -5px;
}

.icon-livecasino-logo-allbet-white {
    width: 117px;
    height: 72px;
    background-position: -5px -87px;
}

.icon-livecasino-logo-bbin-white:hover {
    background-position: -132px -87px;
}

.icon-livecasino-logo-bbin-white {
    width: 87px;
    height: 72px;
    background-position: -229px -87px;
}

.icon-livecasino-logo-ebet-white:hover {
    background-position: -5px -169px;
}

.icon-livecasino-logo-ebet-white {
    width: 120px;
    height: 72px;
    background-position: -135px -169px;
}

.icon-livecasino-logo-gpi-white:hover {
    background-position: -5px -251px;
}

.icon-livecasino-logo-gpi-white {
    width: 162px;
    height: 72px;
    background-position: -177px -251px;
}

.icon-livecasino-logo-og-white:hover {
    background-position: -265px -169px;
}

.icon-livecasino-logo-og-white {
    width: 125px;
    height: 72px;
    background-position: -5px -333px;
}

.icon-livecasino-logo-pt-white:hover {
    background-position: -140px -333px;
}

.icon-livecasino-logo-pt-white {
    width: 146px;
    height: 72px;
    background-position: -406px -5px;
}

.icon-livecasino-logo-sbobet-white:hover {
    background-position: -326px -87px;
}

.icon-livecasino-logo-sbobet-white {
    width: 146px;
    height: 72px;
    background-position: -400px -169px;
}

.homePage .sportsBookSection {
  margin-top: 20px;
  position: relative;
}
.homePage .sportsBookSection div {
  width: 588px;
  height: 300px;
  display: inline-block;
  border-radius: 5px;
  vertical-align: top;
}
.homePage .sportsBookSection .s01 {
 background-image: url('/includes/images/home/sportsbook/588x300_Sports.jpg');
  margin-right: 19px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease-in-out;
  -moz-transition: background-size 0.3s ease-in-out;
  -ms-transition: background-size 0.3s ease-in-out;
  -o-transition: background-size 0.3s ease-in-out;
  -webkit-transition: background-size 0.3s ease-in-out;
}
.homePage .sportsBookSection .s01 .hoverVendors {
  height: 250px;
  width: 100%;
  background-color: rgba(40, 87, 168, 0.95);
  display: block;
}
.homePage .sportsBookSection .s01 .hoverVendors ul {
  list-style-type: none;
  padding: 85px 0 0 0px;
  text-align: center;
}
.homePage .sportsBookSection .s01 .hoverVendors ul li {
  display: inline-block;
  margin: 0px 0px 0px 25px;
}
.homePage .sportsBookSection .s01 .hoverVendors ul li img {
  width: auto;
  height: auto;
}
.homePage .sportsBookSection .s01 .hoverVendors ul li:nth-of-type(1) {
  margin-left: 0;
}
.homePage .sportsBookSection .s01:hover {
  @extend .bgHover;
}
.homePage .sportsBookSection .s01:hover .hoverVendors {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.homePage .sportsBookSection .s02 {
 background-image: url('/includes/images/home/lottery/588x300_Lottery.jpg');
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease-in-out;
  -moz-transition: background-size 0.3s ease-in-out;
  -ms-transition: background-size 0.3s ease-in-out;
  -o-transition: background-size 0.3s ease-in-out;
  -webkit-transition: background-size 0.3s ease-in-out;
}
.homePage .sportsBookSection .s02 .hoverVendors {
  height: 250px;
  width: 100%;
  background-color: rgba(40, 87, 168, 0.95);
  display: block;
}
.homePage .sportsBookSection .s02 .hoverVendors ul {
  list-style-type: none;
  padding: 20px 0 0 0px;
  text-align: center;
}
.homePage .sportsBookSection .s02 .hoverVendors ul li {
  display: inline-block;
  margin: 0px 0px 0px 20px;
}
.homePage .sportsBookSection .s02 .hoverVendors ul li img {
  width: auto;
  height: auto;
}
/*added by jerry 07012019*/
.homePage .sportsBookSection .s02 .hoverVendors ul li:nth-of-type(1) {
  margin-left: -13px;
}


/*/ by jerry 07012019*/
.homePage .sportsBookSection .s02:hover {
  @extend .bgHover;
}
.homePage .sportsBookSection .s02:hover .hoverVendors {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
}
.homePage .vendors {
  width: 100%;
  height: 50px !important;
  background-color: rgba(0, 39, 108, 0.9);
  position: absolute;
  bottom: 0;
  border-radius: 0px 0px 5px 5px !important;
  padding: 7px 0px 0px 20px;
  color: #fff;
}
.homePage .vendors a{
  color:  #fff;

}
.homePage .vendors a:hover{
     color:  #fff;
}
.homePage .vendors .leftTxt {
  font-family: Noto Sans SC, sans-serif;
  font-weight: bold;
  width: 39%;
  height: 36px;
  text-align: left;
  display: inline-block;
  vertical-align: top;
  color: #FAA41D;
  font-size: 24px;
}
.homePage .vendors .rightTxt {
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
  font-style: italic;
  width: 60%;
  display: inline-block;
  vertical-align: top;
  font-size: 18px;
  margin-top: 4px;
}
.homePage .vendors .rightTxt ul {
  list-style-type: none;
  position: absolute;
  right: 20px;
}
.homePage .vendors .rightTxt ul li {
  display: inline-block;
  margin: 0px 7px 0px 7px;
}
.homePage .vendor-game-list {
  background-image: url('/includes/images/home/slots-machine/bg-slots.jpg');
  width: 1200px;
  height: 422px;
  margin-top: 20px;
  border-radius: 5px;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
}
.homePage .vendor-game-list .vHeader {
  width: 1200px;
  height: 50px;
  color: #FAA41D;
  font-size: 24px;
  font-family: Noto Sans SC, sans-serif;
  font-weight: bold;
  background-color: rgba(0, 39, 108, 0.9);
  text-align: center;
  padding: 7px 0px 7px 0px;
  border-radius: 5px 5px 0px 0px;
}
.homePage .vendor-game-list .vendorTabs {
  height: 50%;
  position: absolute;
  bottom: 0;
  /* Style the tab */
  /* Style the buttons inside the tab */
  /* Style the tab content */
}
.homePage .vendor-game-list .vendorTabs .tab {
  overflow: hidden;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.homePage .vendor-game-list .vendorTabs .tablinks {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding-bottom: 55px;
  transition: 0.3s;
  font-size: 17px;
  height: 40px;
  position: relative;
  padding-left: 0;
  margin-right: 24px !important;
  /*
        .white-logo{
          @extend .show;
        }*/
}
.homePage .vendor-game-list .vendorTabs .tablinks img {
  height: 40px;
}
.homePage .vendor-game-list .vendorTabs .tablinks .original-logo {
  @extend .hide;
}
.homePage .vendor-game-list .vendorTabs .tablinks .hoverImg {
  display: none;
}
.homePage .vendor-game-list .vendorTabs .tablinks:nth-of-type(1) {
  margin-left: 24px;
}
.homePage .vendor-game-list .vendorTabs .tablinks .active {
  width: 100%;
  height: 5px;
  background-color: #FAA41D;
  bottom: 0;
  position: absolute;
}
.homePage .vendor-game-list .vendorTabs .tabcontent {
  display: none;
  opacity: 0;
  padding: 0;
  transition: opacity 0.3s ease-out;
}
.homePage .vendor-game-list .vendorTabs .tabcontent ul {
  padding: 10px 10px 10px 13px;
  list-style-type: none;
}
.homePage .vendor-game-list .vendorTabs .tabcontent ul li {
  display: inline-block;
  margin: 15px 0px 0px 15px;
}
.homePage .vendor-game-list .vendorTabs .tabcontent ul li img {
  width: 130px;
  height: 102px;
}
.vendorTabs .tabcontent .container .stat-grid .search-list-result {
  position: relative;
  top: -280px;
}
.homePage .calltoaction {
  width: 100%;
  height: 500px;
  margin-top: 50px;
}
.homePage .calltoaction .leftdiv {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  margin-top: 100px;
}
.homePage .calltoaction .leftdiv .qrcode {
   display: inline-block;
  vertical-align: top;
  width: 49%;
  margin-top: 20px;
  text-align: center;
}
.homePage .calltoaction .leftdiv .qrcode .oleicon {
  width: 50px;
  height: 50px;
}
.homePage .leftdiv .mbl-img{
  width:45%;
  display: inline-block;  
}
.homePage .leftdiv .mbl-img img{
  width: 100%;
}
.homePage .calltoaction .leftdiv .qrcode > span{
  color: #00276C;
  font-size: 30px;
  font-weight: bold;
  vertical-align: middle;
  margin-left: 10px;
}
.homePage .calltoaction .leftdiv .qrcode ul{
  margin: 32px 0 0 0;
  padding: 0;
}
.homePage .qrcode li{
  display: inline-block;
  width: 132px;
}

.homePage .qrcode li:nth-of-type(1){
  margin-right: 20px;
}
.homePage .calltoaction .leftdiv .txt01 {
  display: inline-block;
  vertical-align: top;
  width: 366px;
}
.homePage .calltoaction .leftdiv .txt01 h2 {
  color: #00276C;
  font-size: 40px;
  font-family: 'Open Sans', sans-serif;
  font-weight: bold;
}
.homePage .calltoaction .leftdiv .txt02 {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  width: 588px;
  margin-top: 21px;
}
.homePage .calltoaction .leftdiv .txt02 p {
  color: #505050;
  font-size: 24px;
}
.homePage .calltoaction .leftdiv .txt02 a {
  text-decoration: none;
  background-color: #FF7D00;
  font-size: 15px;
  color: #fff;
  width: 100px;
  height: 40px;
  border-radius: 5px;
  padding: 9px 20px 9px 20px;
}
.homePage .calltoaction .leftdiv .txt02 a:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.homePage .calltoaction .rightDiv {
  display: inline-block;
  vertical-align: top;
  width: 49%;
  margin-top: 103px;
   text-align: center;
   margin-left: 20px;
}
.homePage .rightDiv .pcimg{
  width: 100%;
}
.homePage .rightDiv p{
  color: #00276C;
  font-size: 30px;
  font-weight: bold;
}
.homePage .rightDiv ul{
  margin: 0;
  padding: 0;
}
.homePage .rightDiv li{
  display: inline-block;
  width: 142px;
 
}
.homePage .rightDiv li img{
width: 30px;
margin-bottom: 20px;
}
.homePage .rightDiv .downloadBtn a {
  text-decoration: none;
  color: #fff;
  padding: 9px 20px 9px 20px;
  background-color: #FF7D00;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
.homePage .rightDiv .rightTxt{
  width: 49%;
  display: inline-block;
  vertical-align: middle;
  margin-top: -59px;
}

.homePage .rightDiv .leftTxt{
  width: 50%;
  display: inline-block;
}
.icon-slot {
    background-repeat: no-repeat;
    display: block;
}
.icon-slot-logo-cq9-white {
  width: 78px;
  height: 40px;
  background-position: -148px -54px
}

.icon-slot-logo-cq9-white:hover {
  background-position: -73px -54px
}

.icon-slot-logo-ag-white {
    width: 78px;
    height: 40px;
    background-position: -93px -5px;
}
.icon-slot-logo-ag-white:hover {
  background-position: -5px -5px;
}

.icon-slot-logo-bbin-white {
    width: 67px;
    height: 40px;
    background-position: -5px -55px;
}
.icon-slot-logo-bbin-white:hover {
    background-position: -181px -5px;
}

.icon-slot-logo-betsoft-white {
    width: 67px;
    height: 40px;
    background-position: -159px -55px;
}
.icon-slot-logo-betsoft-white:hover {
  background-position: -82px -55px;
}

.icon-slot-logo-dt-white:hover {
    background-position: -5px -105px;
}

.icon-slot-logo-dt-white {
    width: 112px;
    height: 40px;
    background-position: -127px -105px;
}

.icon-slot-logo-gpi-white:hover {
    background-position: -5px -155px;
}

.icon-slot-logo-gpi-white {
    width: 112px;
    height: 40px;
    background-position: -127px -155px;
}

.icon-slot-logo-mg-white:hover {
    background-position: -5px -205px;
}

.icon-slot-logo-mg-white {
    width: 108px;
    height: 40px;
    background-position: -123px -205px;
}

.icon-slot-logo-pg-white:hover {
    background-position: -5px -255px;
}

.icon-slot-logo-pg-white {
    width: 95px;
    height: 40px;
    background-position: -110px -255px;
}

.icon-slot-logo-pp-white:hover {
    background-position: -215px -255px;
}

.icon-slot-logo-pp-white {
    width: 87px;
    height: 40px;
    background-position: -258px -5px;
}

.icon-slot-logo-pt-white:hover {
    background-position: -236px -55px;
}

.icon-slot-logo-pt-white {
    width: 106px;
    height: 40px;
    background-position: -249px -105px;
}

.icon-slot-logo-qt-white:hover {
    background-position: -249px -155px;
}

.icon-slot-logo-qt-white {
    width: 103px;
    height: 40px;
    background-position: -241px -205px;
}

.icon-slot-logo-habanero-white {
    width: 112px;
    height: 40px;
    background-position: -106px -295px;
}

.icon-slot-logo-habanero-white:hover {
    background-position: 6px -295px;
}

/*Navbar Styles*/
#download-gif{background: url('../images/header_footer/nav-downloads.gif');height: 22px;width: 22px;}

/* https://manage.tripleonetech.net/jira/browse/DFE-3735 */
.icon-nav {
    /* background-image: url(../images/header_footer/Navbar/icon-nav.png?v=1.3) !important; 
    background-repeat: no-repeat; */
    display: block;
    margin:   0 auto ;
}

.icon-nav-logo-nav-ag {
    width: 70px;
    height: 70px;
    background-position: -5px -5px;
}

.icon-nav-logo-nav-allbet {
    width: 70px;
    height: 70px;
    background-position: -85px -5px;
}

.icon-nav-logo-nav-bbin {
    width: 70px;
    height: 70px;
    background-position: -165px -5px;
}

.icon-nav-logo-nav-betsoft {
    width: 70px;
    height: 70px;
    background-position: -245px -5px;
}

.icon-nav-logo-nav-dt {
    width: 70px;
    height: 70px;
    background-position: -5px -85px;
}

.icon-nav-logo-nav-ebet {
    width: 70px;
    height: 70px;
    background-position: -85px -85px;
}

.icon-nav-logo-nav-gpi {
    width: 70px;
    height: 70px;
    background-position: -165px -85px;
}


.icon-nav-logo-nav-wm {   /*https://manage.tripleonetech.net/jira/browse/DFE-3735*/
    width: 70px;
    height: 70px;
    background-position: -404px -237px;
}

.icon-nav-logo-nav-idn {
    width: 70px;
    height: 70px;
    background-position: -245px -85px;
}

.icon-nav-logo-nav-kaiyuan {
    width: 70px;
    height: 70px;
    background-position: -5px -165px;
}

.icon-nav-logo-nav-mg {
    width: 70px;
    height: 70px;
    background-position: -85px -165px;
}

.icon-nav-logo-nav-og {
    width: 70px;
    height: 70px;
    background-position: -165px -165px;
}

.icon-nav-logo-nav-oneworks {
    width: 70px;
    height: 70px;
    background-position: -245px -165px;
}

.icon-nav-logo-nav-pg {
    width: 70px;
    height: 70px;
    background-position: -5px -245px;
}

.icon-nav-logo-nav-pp {
    width: 70px;
    height: 70px;
    background-position: -85px -245px;
}

.icon-nav-logo-nav-pt {
    width: 70px;
    height: 70px;
    background-position: -165px -245px;
}

.icon-nav-logo-nav-qtech {
    width: 70px;
    height: 70px;
    background-position: -245px -245px;
}

.icon-nav-logo-nav-sbobet {
    width: 70px;
    height: 70px;
    background-position: -325px -5px;
}

.icon-nav-logo-nav-sbtech {
    width: 70px;
    height: 70px;
    background-position: -325px -85px;
}

.icon-nav-logo-nav-t1 {
    width: 94px;
    height: 57px;
    background-position: -325px -165px;
}

.icon-nav-logo-nav-t1-old {
    width: 70px;
    height: 70px;
    background-position: -325px -232px;
}

.icon-nav-logo-nav-tcg {
    width: 70px;
    height: 70px;
    background-position: -325px -312px;
}

.icon-nav-logo-ole-sports-cn {
    width: 70px;
    height: 70px;
    background-position: -405px -5px;
}
.icon-nav-logo-nav-cq9 {
  width: 70px;
  height: 70px;
  background-image: url(../images/header_footer/Navbar/logo-nav-cq9.png?v=1.3) !important;
}
/* .icon-nav-logo-nav-baison {
    width: 70px;
    height: 70px;
    background: url(../images/header_footer/Navbar/logo-baison.png?v=1.3) !important;
} */

.icon-nav-logo-nav-ae{
    width: 60px;
    height: 60px;
    background-image:  url(../images/header_footer/Navbar/logo-nav-ae.png);
    background-size: cover;
}

.icon-slot-logo-jdb-white:hover {
    background-position: 17px -338px;
}

.icon-slot-logo-jdb-white {
    width: 66px;
    height: 40px;
    background-position: -47px -338px;

}


.icon-slot-ameba-white:hover {    
    background-position: -141px -338px;
}

.icon-slot-ameba-white {
    width: 86px;
    height: 40px;
    background-position: -228px -338px;

}
.dropdown .drop {
  color: #fff;
  padding: 1rem;
  display: inline-block;
}
/*.dropdown > .dropdown-menu {
  display: unset !important;
  visibility: hidden;
  opacity: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  float: left;
  overflow: hidden;
  transition: all 0.55s linear;
  background-color: #fff;
  border-radius: 0;
}*/
._player_transfer_wallet_modal .modal-body .transfer_wallet_body .tab-content {
  min-height: unset !important;
}
._player_transfer_wallet_modal .modal-body .transfer_wallet_body .tab-content form .form-group-container .form-group {
  margin-bottom: 10px !important;
}
.dropdown > .dropdown-menu.open {
  display: block;
  max-height: 300px;
  height: auto;
  transition: all 0.25s linear;
}
.dropdown > .dropdown-menu > li > a {
  padding: 0.5rem 1rem;
  display: block;
  color: #555;
  text-align: left;
  transition: all 0.25s linear;
}
.dropdown > .dropdown-menu > li > a:hover {
  background-color: #001E5A;
  color: #fff;
}
.down-caret {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
  display: inline-block;
  margin-left: 6px;
  top: -3px;
  position: relative;
  transform: rotate(0deg);
  transition: all 0.25s ease-in;
}
.open-caret {
  transform: rotate(180deg);
  transition: all 0.25s ease-out;
}
.topHeader {
  height: 80px;
}
.topHeader .navbar-brand {
  padding: 10px 0px 10px 0px;
}
.topHeader .navbar-brand img {
  height: 60px;
}
.topHeader .loginBtn {
  background-color: #FF7D00;
  border: 1px;
  width: 70px;
  height: 40px;
  font-size: 15px !important;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.topHeader .loginBtn:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.topHeader .registerBtn {
  background-color: #999999;
  border: 1px;
  width: 70px;
  height: 40px;
  font-size: 15px !important;
  color: #fff;
  border-radius: 5px;
}
.topHeader .registerBtn:hover {
  background-color: #bbbbbb;
  transition: 0.3s ease-out;
}
.topHeader .topLoginForm {
  float: right;
  margin: 10px 0 0 0;
}
.topHeader .topLoginForm input {
  margin-right: 5px;
}
.topHeader .topLoginForm .change-country-flag {
  font-size: 15px;
  width: auto;
  display: inline-block;
}
.topHeader .topLoginForm .change-country-flag:hover i {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transition: 300ms linear all;
}
.topHeader .topLoginForm .change-country-flag img {
  width: 30px;
  height: 30px;
}
.topHeader .topLoginForm .change-country-flag a {
  text-decoration: none;
  color: #fff;
}
.topHeader .topLoginForm .change-country-flag i {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 0px 0px 3px 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.topHeader .topLoginForm .change-country-flag .dropdown-content {
  top: 49px;
  min-height: 95px;
  position: absolute;
  background-color: #001E5A;
  border: 0 !important;
  -webkit-transition: opacity 0.1s ease-out, visibility 0.1s ease-out !important;
  transition: opacity 0.1s ease-out, visibility 0.1s ease-out !important;
}
.topHeader .topLoginForm .change-country-flag .dropdown-content a.active {
  background-color: #f1f1f1;
  font-family: Noto Sans SC;
}
.topHeader .topLoginForm .change-country-flag .dropdown-content a:hover {
  color: #FF7D00;
}
.topHeader .topLoginForm .form-group {
  display: inline-block;
}
.topHeader .topLoginForm .form-group .txtField {
  border-radius: 5px;
  width: 140px;
  height: 40px;
  padding: 8px;
  border: 1px solid #fff;
  font-size: 15px !important;
  color: #707070;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
.topHeader .topLoginForm .form-group .txtField:active {
  border: 1px solid #FAA41D;
}
.topHeader .topLoginForm .form-group .txtField:focus {
  border: 1px solid #FAA41D;
  transition: all 0.2s linear;
}
.navbar {
  height: 40px;
}
.navbar .dropdown {
  position: unset !important;
}
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}
.navbar .nav-item {
  margin-right: 46px;
  z-index: 500;
}
.navbar .nav-item:last-child {
  margin-right: 0px;
}
.navbar .nav-item:last-child span{
  position: absolute;left: -30px;top: 7px;
}
.navbar .nav-item:last-child a{
/*animation: float 1s ease-in-out infinite;*/
/*margin-left: 20px;*/
}

@keyframes float {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-3px);
color: #FAA41D;
}
100% {
transform: translatey(0px);
}
}

.navbar .nav-item:hover .nav-link {
  color: #FAA41D;
  transition: 0.2s ease-out;
}
.navbar .nav-item:hover i {
  border: 1px solid #FF7D00;
  border-width: 0 2px 2px 0;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transition: 300ms linear all;
}
.navbar .nav-item .nav-link {
  color: #fff;
  font-size: 15px !important;
  font-weight: 400;
  padding-left: 0;
  cursor: pointer;
  position:   relative; 
}
.navbar .nav-item .nav-link.active {
  color: #FAA41D;
}
.navbar .nav-item .dropdown-toggle::after {
  display: none;
}
.navbar .nav-item i {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 0px 0px 3px 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.navbar .nav-item .dropbtn:hover {
  display: none !important;
  /**.dropdown-content{
          display:block !important;
        }**/
}
.navbar .nav-item .dropdown {
  position: relative;
  display: inline-block;
}
.navbar .nav-item .slotsDropdownItem .dropdown-item {
  width: 77px !important;
}
.navbar .nav-item .dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  right: 0;
  background: rgba(204, 204, 204, 0.9);
  background: -moz-linear-gradient(180deg, #cccccc 0%, #ffffff 100%);
  background: -webkit-linear-gradient(180deg, #cccccc 0%, #ffffff 100%);
  background: linear-gradient(180deg, #cccccc 0%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cccccc", endColorstr="#ffffff", GradientType=1);
  height: 142px;
  z-index: 1;
  text-align: center;
  -webkit-transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}
.navbar .nav-item .dropdown-content a.active {
  background-color: #f1f1f1;
  font-family: Noto Sans SC;
}
.navbar .nav-item .dropdown-content a.active:hover {
  color: #FF7D00;
}
.navbar .nav-item .dropdown-content .dropdown-item {
  background-color: transparent !important;
  width: 115px;
  height: 120px;
  text-align: center;
  display: inline-block;
  /*margin-right: 24px;*/ 
  font-weight: 400 !important;
  padding: 20px 0px 0px 0px;
}
.navbar .nav-item .dropdown-content .dropdown-item p {
  color: #505050;
}
.navbar .nav-item .dropdown-content .dropdown-item:hover p {
  color: #FF7D00;
  transition: 0.1s ease-out;
}
.navbar .nav-item .dropdown-content .dropdown-item:last-child {
  margin-right: 0px !important;
}
.navbar .nav-item .dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
}
#floating-header {
  padding-top: 17px;
  height: 85px;
  width: 1920px;
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2000;
  display: none;
  text-align: center;
}
#floating-header .navbar-brand img {
  height: 35px;
}
#floating-header .nav-item {
  margin-right: 24px;
  padding-bottom: 30px !important;
}
#floating-header .nav-item .dropdown-content {
  top: 85px;
}
#floating-header .loginBtn {
  background-color: #FF7D00;
  border: 1px;
  width: 70px;
  height: 30px;
  font-size: 15px;
  color: #fff;
  border-radius: 5px;
}
#floating-header .loginBtn:hover {
  background-color: #FAA41D;
  transition: 0.2s ease-out;
}
#floating-header .registerBtn {
  background-color: #999999;
  border: 1px;
  width: 70px;
  height: 30px;
  font-size: 15px;
  color: #fff;
  border-radius: 5px;
}
#floating-header .registerBtn:hover {
  background-color: #bbbbbb;
  transition: 0.3s ease-out;
}
#floating-header #navbarResponsive {
  display: inline-block !important;
  padding-left: 15px;
}
#floating-header .topLoginForm {
  display: none !important;
  margin-top: -5px !important;
  display: inline-block;
  margin: 0px 0px 0px 20px;
  position: absolute;
}
#floating-header .topLoginForm input {
  margin-right: 5px;
}
#floating-header .topLoginForm .change-country-flag {
  width: auto;
  display: inline-block;
}
#floating-header .topLoginForm .change-country-flag:hover i {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  transition: 300ms linear all;
}
#floating-header .topLoginForm .change-country-flag .dropdown-content {
  top: 49px;
  min-height: 95px;
  position: absolute;
  background-color: #001E5A;
  border: 0 !important;
}
#floating-header .topLoginForm .change-country-flag img {
  width: 25px;
  height: 25px;
}
#floating-header .topLoginForm .change-country-flag a {
  text-decoration: none;
  color: #fff;
  font-size: 15px !important;
}
#floating-header .topLoginForm .change-country-flag .dropdown-menu {
  top: 54px !important;
  background-color: #001E5A;
  border-radius: 0;
  border: 0;
}
#floating-header .topLoginForm .change-country-flag .dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #FAA41D;
}
#floating-header .topLoginForm .change-country-flag .dropdown-menu .dropdown-item:focus {
  background-color: transparent;
}
#floating-header .topLoginForm .change-country-flag i {
  border: 1px solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  margin: 0px 0px 3px 5px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
#floating-header .topLoginForm .change-country-flag .dropbtn:hover {
  display: none !important;
}
#floating-header .topLoginForm .change-country-flag .dropbtn:hover .dropdown-content {
  display: block !important;
}
#floating-header .topLoginForm .form-group {
  display: inline-block;
}
#floating-header .topLoginForm .form-group .txtField {
  border-radius: 5px;
  width: 200px;
  height: 30px;
  padding: 8px;
  border: 1px solid #fff;
  font-size: 15px;
  color: #707070;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}
#floating-header .topLoginForm .form-group .txtField:active {
  border: 1px solid #FAA41D;
}
#floating-header .topLoginForm .form-group .txtField:focus {
  border: 1px solid #FAA41D;
  transition: all 0.2s linear;
}

/*Footer Styles*/
footer {
  width: 100%;
  position: relative;
}
footer .footer01 {
    background-color: #003C82;
    height: 120px;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}
footer .footer01 ul {
  list-style-type: none;
  padding: 0;
}
footer .footer01 ul li {
  display: inline-block;
  vertical-align: bottom;
  margin: 17px 32px 12px 0;
}
footer .footer01 ul li:last-child a {
  margin: 6px;
  margin-right: 5px;
}
footer .footer01 ul li img {
  height: 80px;
}
footer .footer01 ul li:nth-of-type(4) {
  text-align: center;
  line-height: 34px;
}
footer .footer01 ul li:nth-of-type(4) img {
  width: 50px;
  height: 50px;
}
footer .footer02 {
  background-color: #001E5A;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
}
footer .footer02 ul {
  width: auto;
  margin: 0 auto;
  list-style-type: none;
  padding: 0;
  text-align: center;
}
footer .footer02 ul li {
  display: inline-block;
  margin: 9px 0px 8px 26px;
  font-weight: 700;
}
footer .footer02 ul li a {
  text-decoration: none;
  color: #fff;
}
footer .footer02 ul li a:hover {
  transition: 0.3s;
  color: #FAA41D;
}
/* Floating Social Media Bar Style Starts Here */
.fl-fl {
  background: #001E5A;
  width: 200px;
  max-height: 60px;
  position: fixed;
  right: -136px;
  z-index: 1000;
  font: normal normal 10px Arial;
  -webkit-transition: all 0.25s ease;
  -moz-transition: all 0.25s ease;
  -ms-transition: all 0.25s ease;
  -o-transition: all 0.25s ease;
  transition: all 0.25s ease;
  opacity: 0.85;
  box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
  border-radius: 40px 0px 0px 40px;
  padding: 0px 0px 5px 10px;
  font-size: 15px;
    color: #fff !important;
  text-decoration: none !important;
  line-height: 3.5;
}
.fl-fl img {
  margin-right: 10px;
}
.fl-fl:hover {
  right: 0;
  opacity: 1;

}
.fa {
  font-size: 20px;
  color: #fff;
  padding: 10px 0;
  width: 40px;
  margin-left: 8px;
}
.fl-fl a{
    color: #fff !important;
  text-decoration: none;
  text-align: center;
  line-height: 3.5;
}
.live-chat {
  top: 50%;
}
.deposit {
  top: 56.5%;
}
.quick-transfer {
  top: 63%;
}
.icon-deposit {
  top: 69.5%;
}
.icon-vip {
/*  top: 70%;*/
  top: 63%;
}
.icon-shield {
/*  top: 77%;*/
    top: 69.5%;
}
.icon-down {
/*  top: 84%;*/
  top:76%;
  width: 60px;
  right: 0 !important;
}
.icon-down:hover {
  opacity: 1;
}
.icon-down .arrowDown {
  transform: rotate(0deg);
}
.icon-down .arrowUp {
  transform: rotate(180deg);
}
/* Floating Social Media Bar Style Ends Here */


/*Slots Page*/
#floating-img-slots{
  position: fixed;
  left: 95px;
  top: 250px;
}

#floating-img-slots2{
  position: fixed;
  left: 95px;
  top: 550px;
}

#floating-img-slots #close{
  height: 17px;
  width: 100%;
  position: absolute;
  bottom: 0;
  z-index: 100;
  cursor: pointer;
}

.animated {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

.slotsPage .carousel-item {
  /*height: 420px;*/
}
.slotsPage .carousel-item img {
  width: 100%;
}
.slotsPage .pricePool {
  background-image: url('/includes/images/slots/Price Pool/bg-price-pool.png');
  background-repeat: no-repeat;
  background-position: center top;
}
.slotsPage .pricePool .vendorTabs {
  height: 50%;
  bottom: 0;
  margin-top:   -5px !important;
  /* Style the tab */
  /* Style the buttons inside the tab */
  /* Style the tab content */
}
.slotsPage .pricePool .vendorTabs .tab {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #fff;
  height: 70px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.slotsPage .pricePool .vendorTabs .tablinks {
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 13px 0 55px;
    transition: .3s;
    font-size: 17px;
    height: 0;
    position: relative;
    margin-right: 24px!important;
    margin-top: 2px;
  /*
        .white-logo{
          @extend .show;
        }*/
}
.slotsPage .pricePool .vendorTabs .tablinks img {
  height: 34px;
}
.slotsPage .pricePool .vendorTabs .tablinks .original-logo {
  @extend .hide;
}
.slotsPage .pricePool .vendorTabs .tablinks .hoverImg {
  display: none;
}
.slotsPage .pricePool .vendorTabs .tablinks:nth-of-type(1) {
  margin-left: 23px;
}
.slotsPage .pricePool .vendorTabs .tablinks .active {
  width: 100%;
  height: 5px;
  background-color: #FAA41D;
  bottom: 0;
  position: absolute;
}
.slotsPage .pricePool .vendorTabs .tabcontent {
  display: none;
  opacity: 0;
  padding: 0;
  transition: opacity 0.3s ease-out;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter {
  margin-top: 35px;
  padding: 0;
  margin-bottom: 25px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter ul {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 900px;
  text-align: left;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter ul li {
  display: inline-block;
  margin: 0px 27px 0px 0px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter ul li img {
  width: auto;
  height: auto;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter ul li a {
  text-decoration: none;
  color: #505050;
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter ul li span {
  padding: 0px 0px 0px 35px;
}

.slotsPage .pricePool .vendorTabs .tabcontent .filter .searchDiv {
  display: inline-block;
  text-align: right !important;
  position: relative;
  right: -13px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter .searchDiv input {
  width: 222px;
  height: 40px;
  border-radius: 5px;
  background-color: #DDDDDD;
  border: 1px solid #BBBBBB;
  padding: 9px;
  color: #707070;
  margin-right: 10px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter .searchDiv button {
  padding: 5px 10px 5px 10px;
  background-color: #FF7D00;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 37px;
  width: 50px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .filter .searchDiv button:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList {
  min-height: 800px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul {
  list-style-type: none;
  color: #505050;
  padding: 0;
  margin-top: 35px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li {
  display: inline-block;
  position: relative;
  width: 180px;
  height: 141px;
  margin: 0px 24px 56px 0px;
  cursor: pointer;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li:nth-child(6n+0) {
  margin-right: 0;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li img {
  width: 100%;
  height: 100%;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li p {
  text-align: center;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameStatus {
  position: absolute;
  top: 0;
  right: 0;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameHover {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  padding-top: 10%;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameHover a {
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  height: 36px;
  line-height: 2;
  padding: 0 16px;
  display: block;
  margin: 10px;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameHover .playBtn01 {
  background-color: transparent;
  border: 2px solid #FF7D00;
  color: #FF7D00;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameHover .playBtn01:hover {
  background-color: #FF7D00;
  color: #fff;
}
.slotsPage .pricePool .vendorTabs .tabcontent .gameList ul li .gameHover:hover {
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/*Sportsbook Page*/
.sportsbookDiv {
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 860px;
  height: 100%;
  text-align: center;
}
.sportsbookDiv .btnSelect {
  padding: 9px 20px 9px 20px;
  background-color: #FAA41D;
  color: #222222;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
}
.sportsbookDiv .btnSelect:hover {
  background-color: #FF7D00;
  transition: 0.3s ease-out;
  color: #fff;
}
.sportsbookDiv div{width:460px;heights:460px;display:inline-block;vertical-align:top;margin-tops:250px;margin-rights:-85px;}
/*.sportsbookDiv div:nth-of-type(2) {
  margin-top: 120px !important;
}
.sportsbookDiv div:nth-of-type(3) {
  margin-right: 0px !important;
}*/
.sportsbook-ole777-desc-box{position:relative;background-color: rgba(0, 0, 0, 0.7);color: white;margin-top: 218px;height: 200px;padding-top: 38px; text-align: left; font-size: 17px;}
.sportsbookDiv div img {
  margin-bottom: 20px;
}

/*Promotion Page Styles*/
.promotionDiv {
  position: relative;
}
.promotionDiv .vendorTabs {
  height: 50%;
  bottom: 0;
  margin-top: 50px;
  /* Style the tab */
  /* Style the buttons inside the tab */
  /* Style the tab content */
}
.promotionDiv .vendorTabs .tab {
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #fff;
  height: 50px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.promotionDiv .vendorTabs .tablinks {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  font-size: 15px;
  height: 36px;
  width: 200px;
  position: relative;
  padding-left: 0;
  margin-right: 40px !important;
  color: #505050;
  text-align: center;
  margin-top: 14px;
}
.promotionDiv .vendorTabs .tablinks img {
  height: 22px;
  width: 22px;
}
.promotionDiv .vendorTabs .tablinks .original-logo {
  @extend .hide;
}
.promotionDiv .vendorTabs .tablinks .hoverImg {
  display: none;
}
.promotionDiv .vendorTabs .tablinks:nth-of-type(1) {
  margin-left: 20px;
}
.promotionDiv .vendorTabs .tablinks:nth-of-type(5) {
  margin-right: 0 !important;
}
.promotionDiv .vendorTabs .tablinks .active {
  width: 100%;
  height: 5px;
  background-color: #FAA41D;
  bottom: 0;
  position: absolute;
}
.promotionDiv .vendorTabs .tabTitle {
  text-align: center;
  color: #00276C;
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0px 30px 0px;
}
.promotionDiv .vendorTabs .tabcontent {
  display: none;
  opacity: 0;
  padding: 0;
  transition: opacity 0.3s ease-out;
  margin-bottom: 50px;
}
.promotionDiv .vendorTabs .tabcontent ul {
  @extend .fadeIn;
  @extend .animate2s;
  padding: 5px 40px 40px 40px;
  background-color: white;
  margin-top: 47px;
}
.promotionDiv .vendorTabs .tabcontent ul li {
  margin: 10px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox {
  height: 450px;
  width: 588px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden;
  @extend .fadeIn;
  @extend .animate2s;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox:nth-of-type(odd) {
  margin-right: 18px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionImage {
  width: 100%;
  height: 250px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc {
  background-color: #fff;
  padding: 20px 20px 0px 20px;
  height: 200px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc p {
  font-family: 'Open Sans', sans-serif;
  color: #505050;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc p:nth-of-type(1) {
  font-weight: 700;
  font-size: 24px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc a {
  text-decoration: none;
  color: #fff;
  padding: 9px 20px 9px 20px;
  margin-top: 30px;
  border-radius: 5px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc a:nth-of-type(1) {
  background-color: #999999;
  margin-right: 20px;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc a:nth-of-type(1):hover {
  background-color: #bbbbbb;
  transition: 0.3s ease-out;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc a:nth-of-type(2) {
  background-color: #FF7D00;
}
.promotionDiv .vendorTabs .tabcontent .promotionBox .promotionDesc a:nth-of-type(2):hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.promotionDiv .promotionDetails {
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  background-color: white;
  z-index: 500;
  border-radius: 5px;
  padding: 20px;
  display: none;
  width: 1200px;
  margin: 0 auto;
  overflow: auto;
  max-height: 800px;
}


 .promotionDetailsContent strong{
  font-weight: 400 ;
}
 .promotionDetailsContent > p:first-child strong{ 
font-weight: bolder;
}
.promotion-wrapper .disabled a{
    cursor:default; border-bottom: 0px !important ; opacity: 0.5
}
.promotion-wrapper .disabled a:hover{
    border-bottom:   0px !important ;
}
/** New Promotions **/
.promotion-wrapper {
    height: 50%;
    bottom: 0;
    margin-top: 50px;
}
.promotion-wrapper ul.nav.nav-tabs {
  border-bottom: 1px solid rgba(255,255,255,.2);
  background-color: #fff;
  height: 50px;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);
  border-radius: 5px;
}
.promotion-wrapper ul.nav.nav-tabs li {
 /* margin-left: 20px;*/
  width: 195px;
  display: inline-flex;
}
.promotion-wrapper ul.nav.nav-tabs li a {
  background-color: inherit;
  float: left;
  border: none;
  outline: 0;
  cursor: pointer;
  transition: .3s;
  font-size: 15px;
  position: relative;
  padding-left: 0;
  color: #505050;
  text-align: center;
  margin-top: 7px;
  margin: 0 auto;
  padding: 13px 20px 0 20px;
  height: 50px;
}
.promotion-wrapper ul.nav.nav-tabs li a.active,
.promotion-wrapper ul.nav.nav-tabs li a:hover {
  border-bottom: 5px #faa41d solid;
}
.promotion-wrapper ul.nav.nav-tabs li a img {
  height: 22px;
  width: 22px;
  display: inline-block;
  margin-right: 10px;
}
.promotion-wrapper ul.nav.nav-tabs li a p {
  display: inline-block;
}
.promotion-wrapper p.tabTitle {
  text-align: center;
  color: #00276C;
  font-size: 32px;
  font-weight: bold;
  margin: 30px 0px 30px 0px;
}
.tab-content{
  margin-bottom: 10px;
  min-height: 600px;
}
.promotion-wrapper .tab-content .promotionBox {
  height: 370px;
  width: 588px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.3);
  display: inline-block;
  margin-bottom: 20px;
  overflow: hidden;
  @extend .fadeIn;
  @extend .animate2s;
}
.promotionBox-vip {
  height: 425px !important;
}
.promotion-wrapper .tab-content .promotionBox:nth-of-type(odd) {
  margin-right: 18px;
}
.promotion-wrapper .tab-content .promotionBox .promotionImage {
  width: 100%;
  height: 250px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc {
  background-color: #fff;
  padding: 20px 20px 0px 20px;
  height: 200px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc p {
  font-family: 'Open Sans', sans-serif;
  color: #505050;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc p:nth-of-type(1) {
  font-weight: 700;
  font-size: 24px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc p:nth-of-type(2) {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 30px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc a {
  text-decoration: none;
  color: #fff;
  padding: 9px 20px 9px 20px;
  margin-top: 30px;
  border-radius: 5px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc a:nth-of-type(1) {
  background: #232526;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #414345, #232526);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #414345, #232526); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-right: 20px;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc a:nth-of-type(1):hover {
  background-color: #bbbbbb;
  transition: 0.3s ease-out;
  opacity: .9;
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc a:nth-of-type(2) {
  background: #FFB75E;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to left, #ED8F03, #FFB75E);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to left, #ED8F03, #FFB75E); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.promotion-wrapper .tab-content .promotionBox .promotionDesc a:nth-of-type(2):hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
  opacity: .9;
}
 .promotionDetails {
  position: fixed;
  left: 0;
  right: 0;
  top: 100px;
  background-color: white;
  z-index: 500;
  border-radius: 5px;
  padding: 20px;
  display: none;
  width:  1200px;
  margin:   0 auto ; 
      overflow: auto;
    max-height: 800px;
}
.promotion-wrapper .tab-content #rules-terms ul {
  padding: 5px 40px 40px;
  background-color: #fff;
  margin-top: 47px;
}







/*Poker Page*/
.pokerDiv {
  background-image: url('/includes/images/poker/Poker-Background.png');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 860px;
  height: 100%;
  text-align: center;
}
.pokerDiv .btnSelect {
  padding: 9px 20px 9px 20px;
  background: #ead19b;
  background: -moz-linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  background: -webkit-linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  background: linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ead19b", endColorstr="#ead19b", GradientType=1);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
  bottom: -74px;
  left: 216px;
  margin: 0 auto;
  opacity: 0;
  transition: 0.3s ease-out;
}
.pokerDiv .btnSelect:hover {
  background-color: #FF7D00 !important;
  transition: 0.3s ease-out;
  color: #001E5A;
}
.pokerDiv div {
  width: 540px;
  height: 540px;
  display: inline-block;
  position: relative;
  margin-bottom:  95px;
}
.pokerDiv div:nth-of-type(1) {
/*  margin-right: 148px;*/
}
.pokerDiv div img {
  position: absolute;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  left: 0;
  right: 0;
  top: 123px;
  margin: 0 auto;
}
.pokerDiv div .move-up {
  top: 95px;
}
.btn-show {
  opacity: 1 !important;
}



/*Not Found Page Styles*/
.notfoundDiv {
  text-align: center;
}
.notfoundDiv img {
  margin-top: 100px;
}
.notfoundDiv .pagenotfound {
  color: #505050;
  font-size: 40px;
  margin-top: 100px;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
}
.notfoundDiv .returnMessage {
  margin: 100px 0px 194px 0px;
}
.notfoundDiv .returnMessage div {
  width: 384px;
  display: inline-block;
  vertical-align: top;
  color: #505050;
  font-size: 24px;
  margin-right: 24px;
}
.notfoundDiv .returnMessage div a {
  color: #FF7D00;
}
.notfoundDiv .returnMessage div a:hover {
  color: #FAA41D;
}
.notfoundDiv .returnMessage .chsMsg {
  font-family: 'Open Sans', sans-serif;
}
.notfoundDiv .returnMessage .idMsg {
  font-family: 'Open Sans', sans-serif;
}
.notfoundDiv .returnMessage .thMsg {
  font-family: 'Prompt', sans-serif;
}

/*Lottery Styles*/
.lotteryDiv {
  background-image: url('/includes/images/lottery/Lottery-background.png');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: 100% 100%;
  -moz-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
  min-height: 860px;
  height: 100%;
  text-align: center;
}
.lotteryDiv .gameballs {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
}
.lotteryDiv .gameballs .btnSelect {
  text-decoration: none;
  background-color: #FF7D00;
  font-size: 15px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  width: 112px;
  height: 40px;
  border-radius: 5px;
  padding: 9px 20px 12px 20px;
  position: absolute;
  opacity: 0;
  transition: 0.3s ease-out;
  margin: 0 auto !important;
  bottom: -16px;
  z-index: 1000;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.lotteryDiv .gameballs .gpi{  
  right: unset;
}

.lotteryDiv .gameballs .gpi2{
  right: -120px;
}
.lotteryDiv .gameballs .btnSelect:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
.lotteryDiv .gameballs div {
  display: inline-block;
  width: 211px;
  position: relative;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
}
.lotteryDiv .gameballs .gamePlay {
  z-index: 0;
  bottom: 20px;
  /*margin-right: -10px;*/  /* https://manage.tripleonetech.net/jira/browse/DFE-3735 */
}
.lotteryDiv .gameballs .ole777 {
  z-index: 2;
  bottom: 20px;
  width: 215px;
  margin-right: 10px;
}
.lotteryDiv .gameballs .tcGaming {
  z-index: 0;
  bottom: 20px;
  margin-left: 0px;
}
.lotteryDiv .gameballs .move-up {
  bottom: 50px;
}
.lotteryDiv .gameballs .ball:hover {
  top: -40px;
}
.lotteryDiv .ballWrapper:hover .btnSelect {
  opacity: 1;
}

.lotteryDiv .gameballs .rmvShadow {
  background: unset !important;
  box-shadow: unset !important;
}
.lotteryDiv .gameballs .ballWrapper {
  width: 238px;
  height: 270px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  /*-webkit-transition: all 5s linear 0s;
      -moz-transition: all 5s linear 0s;
      transition: all 5s linear 0s;*/
  cursor: pointer;
}
.lotteryDiv .gameballs .redBall {
  background: #f85c46;
  background: -moz-radial-gradient(circle, #f85c46 0%, #e82f2f 100%);
  background: -webkit-radial-gradient(circle, #f85c46 0%, #e82f2f 100%);
  background: radial-gradient(circle, #f85c46 0%, #e82f2f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f85c46", endColorstr="#e82f2f", GradientType=1);
}
.lotteryDiv .gameballs .blueBall {
  background: #32ceff;
  background: -moz-radial-gradient(circle, #32ceff 0%, #2e81c5 100%);
  background: -webkit-radial-gradient(circle, #32ceff 0%, #2e81c5 100%);
  background: radial-gradient(circle, #32ceff 0%, #2e81c5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#32ceff", endColorstr="#2e81c5", GradientType=1);
}
.lotteryDiv .gameballs .purpleBall {    /* https://manage.tripleonetech.net/jira/browse/DFE-3735 */
  background: #df32ff;
  background: -moz-radial-gradient(circle, #df32ff 0%, #612ec5 100%);
  background: -webkit-radial-gradient(circle, #df32ff 0%, #612ec5 100%);
  background: radial-gradient(circle, #df32ff 0%, #612ec5 100%)
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#df32ff", endColorstr="#612ec5", GradientType=1);
}
.lotteryDiv .gameballs .yellowBall {
  background: #fff533;
  background: -moz-radial-gradient(circle, #fff533 0%, #ffb332 100%);
  background: -webkit-radial-gradient(circle, #fff533 0%, #ffb332 100%);
  background: radial-gradient(circle, #fff533 0%, #ffb332 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fff533", endColorstr="#ffb332", GradientType=1);
}
.lotteryDiv .gameballs .ball {
  width: 238px;
  height: 238px;
  border-radius: 50%;
  box-shadow: inset 0 -5px 15px rgba(255, 255, 255, 0.4), inset -2px -1px 40px rgba(0, 0, 0, 0.4), 0 0 1px #000;
  position: absolute;
  top: 0;
  z-index: 11;
  margin: 0 auto;
  left: 0;
  right: 0;
  cursor: pointer;
  text-align: center;
}
.lotteryDiv .gameballs .ball:before {
  content: "";
  position: absolute;
  top: 1%;
  left: 5%;
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: radial-gradient(circle at 70% 0px, #ffffff, rgba(255, 255, 255, 0) 38%);
  -webkit-filter: blur(5px);
  z-index: 2;
}
.lotteryDiv .gameballs .ballShadow {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 96px;
  height: 75px;
  margin: 0 auto;
  background: rgba(20, 20, 20, 0.4);
  box-shadow: 0px 0 20px 50px rgba(20, 20, 20, 0.4);
  border-radius: 0.75px;
  -webkit-transform: scaleY(0.3);
  -moz-transform: scaleY(0.3);
  -ms-transform: scaleY(0.3);
  -o-transform: scaleY(0.3);
  transform: scaleY(0.3);
}
/*Live Casino Styles*/
.livecasinoDiv {
  background-image: url('/includes/images/livecasino/livecasino-newyear-2.jpg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 647px;
  text-align: center;
}
.livecasinoDiv .btnSelect {
  padding: 9px 20px 9px 20px;
  background-color: #FAA41D;
  color: #222222;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
}
.livecasinoDiv .btnSelect:hover {
  background-color: #FF7D00;
  transition: 0.3s ease-out;
  color: #fff;
}
.livecasinoDiv .f1_container {
  position: relative;
  text-align: center;
  perspective: 1000;
  width: 333px;
  height: 273px;
  display: inline-block;
  margin: 0px -2px 20px 80px;
}
.livecasinoDiv .f1_container:nth-of-type(1) {
  margin-top: 44px;
}
.livecasinoDiv .f1_container:nth-of-type(5) {
  margin-right: 0;
}
.livecasinoDiv .f1_container:nth-of-type(8) {
  margin-right: 0;
}
.livecasinoDiv .f1_card {
  transform-style: preserve-3d;
  transition: all 0.6s linear;
}
.livecasinoDiv .f1_container:hover .f1_card {
  transform: rotateY(180deg);
  box-shadow: -5px 5px 5px #aaa;
}
.livecasinoDiv .face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.livecasinoDiv .face.back {
  display: block;
  transform: rotateY(180deg);
  color: white;
  text-align: center;
}
.livecasinoDiv .face.back div {
  background-image: url('/includes/images/livecasino/BBIN-BACK.png');
  background-size: 100% 100%;
  width: 333px;
  height: 273px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.livecasinoDiv .face.back div img {
  margin-top: 51px;
}
.livecasinoDiv .face.back div a {
  font-size: 12px;
  padding: 2px 30px 4px;
  background-color: #ed1c24;
  text-decoration: none;
  color: #fff;
  position: absolute;
  bottom: 59px;
  left: 114px;
  border-radius: 5px;
  box-shadow: 0 3px 2px 0 rgba(0,0,0,.5);
}
.livecasinoDiv .face.back div a:hover {
  background-color: #001E5A;
  transition: 0.3s ease-out;
}
.livecasinoDiv .face.back div p {
  font-size: 12px;
}
.livecasinoDiv .face.back div .p1 {
  color: #001E5A;
  padding: 0 63px 0 63px;
}
.livecasinoDiv .face.back div .p2 {
  margin-top: -17px;
  color: #fff;
}



/** Fishing Page **/
.fishingDiv {
  background-image: url('/includes/images/fishing/fishing-background.jpg');
  background-repeat: no-repeat;
  background-position: center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  min-height: 859px;
  height: 100%;
}
#showcase {                
  height: 800px;
  visibility: hidden;
  width: 1200px;
  margin: 0 auto;
}
#showcase img {
  cursor: pointer;
}

/*.fishingDiv .btnSelect {
  padding: 9px 20px 9px 20px;
  background: #ead19b;
  background: -moz-linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  background: -webkit-linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  background: linear-gradient(180deg, #ead19b 0%, #a36514 50%, #ead19b 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ead19b", endColorstr="#ead19b", GradientType=1);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  border-radius: 5px;
  position: absolute;
  bottom: -74px;
  left: 216px;
  margin: 0 auto;
  opacity: 0;
  transition: 0.3s ease-out;
}
.fishingDiv .btnSelect:hover {
  background-color: #FF7D00 !important;
  transition: 0.3s ease-out;
  color: #001E5A;
}
.fishingDiv div {
  width: 409px;
  height: 540px;
  display: inline-block;
  position: relative;
}
.fishingDiv div:nth-of-type(1) {
  margin-right: 102px;
}
.fishingDiv div img {
  position: absolute;
  transition: all 0.5s ease-out;
  -webkit-transition: all 0.5s ease-out;
  left: 0;
  right: 0;
  top: 167px;
  margin: 0 auto;
}
.fishingDiv div .move-up {
  top: 95px;
}
*/


/*Download Page*/
#downloadPage {
  padding: 50px 0px 50px 0px !important;
}
#downloadPage .download-box {
  width: 588px;
  height: 391px;
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  display: inline-block;
  vertical-align: top;
}
#downloadPage .download-box:nth-of-type(odd) {
  margin-right: 19px;
}
#downloadPage .download-box {
  margin-top: 20px;
}
#downloadPage .download-box:nth-of-type(1) {
  margin-top: 0;
}
#downloadPage .download-box:nth-of-type(2) {
  margin-top: 0;
}

#downloadPage .download-box .download-box-header {
  width: 588px;
  height: 60px;
  background-color: #00276C;
  border-radius: 5px 5px 0px 0px;
  text-align: center;
  padding-top: 10px;
}
#downloadPage .download-box .download-box-content {
  height: 331px;
  width: 588px;
  padding-top: 8px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  color: #fff;
  font-size: 15px !important;
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  /* Style the tab */
  /* Style the buttons inside the tab */
  /* Change background color of buttons on hover */
}
#downloadPage .download-box .download-box-content .tab {
  text-align: center;
  /* Create an active/current tablink class */
}
#downloadPage .download-box .download-box-content .tab .active {
  border-bottom: 4px solid #FAA41D;
}
#downloadPage .download-box .download-box-content .tab button {
  background-color: transparent;
  border: 0;
  font-weight: bold;
  color: #fff;
  min-width: 4px;
  padding: 0px 15px 5px 15px;
}
#downloadPage .download-box .download-box-content .tabcontent {
  display: none;
  font-weight: 400;
}
#downloadPage .download-box .download-box-content .tabcontent ul {
  list-style-type: none;
  /*width: 384px;*/
  margin: 0 auto;
  padding-left: 0px;
}
#downloadPage .download-box .download-box-content .tabcontent ul li {
  display: inline-block;
  vertical-align: top;
  /*height: 240px;*/
  width: 290px;
  text-align: center;
}
#downloadPage .download-box .download-box-content .tabcontent ul li img {
  width: 120px;
  height: 120px;
  margin-top: 5px;

margin-bottom: 5px;
}
#downloadPage .download-box .download-box-content .tabcontent ul li .apple img {
  width: 40px;
  height: 40px;
}
#downloadPage .download-box .download-box-content .tabcontent ul li .apple span {
  vertical-align: -13px;
  margin-left: 8px;
  font-weight: 700;
}
#downloadPage .download-box .download-box-content .tabcontent ul li .android img {
  width: 40px;
  height: 40px;
}
#downloadPage .download-box .download-box-content .tabcontent ul li .android span {
  vertical-align: -13px;
  margin-left: 8px;
  font-weight: 700;
}
.download-box-content .tabcontent ul li .downloadBtn {
  margin-top: 25px;
}
 .download-box-content .tabcontent ul li .downloadBtn a {
  text-decoration: none;
  color: #fff;
  padding: 9px 20px 9px 20px;
  background-color: #FF7D00;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.2);
}
 .download-box-content .tabcontent ul li .downloadBtn a:hover {
  background-color: #FAA41D;
  transition: 0.3s ease-out;
}
#downloadPage .download-box.ole777 {
  background-image: url('/includes/images/downloads/bg-ole-skyline.jpg');
}
#downloadPage .download-box.ean2 ul {
  width: 100% !important;
}
#downloadPage .download-box.ean2 ul li a {
  color: #FAA41D;
}
#downloadPage .download-box.ean2 ul li:nth-of-type(3) {
  width: 188px;
  text-align: left;
  padding-top: 85px;
}
#downloadPage .download-box.ag {
  background-image: url('/includes/images/downloads/bg-ag-skyline.jpg');
}
#downloadPage .download-box ul a {
  color: #fff;
}

#downloadPage .download-box.ag ul li:nth-of-type(2) p {
  text-align: left !important;
}

#downloadPage .download-box.bbn {
  background-image: url('/includes/images/downloads/bg-bbin-skyline.jpg');
}
#downloadPage .download-box.bbn .tabcontent {
  margin-top: 60px;
}

/*Logged Template*/

.login-menu{
font-size:14px;
}
.login-menu a {
text-decoration:none!important; 
}

.login_radius {
background: #003c82;
border-radius: 20px;
box-shadow: 0px 2px rgba(0, 0, 0, 0.48);
transition: all 0.3s ease;
margin-right:5px;
padding: 2px 0px;
padding-left:15px;
padding-right:12px;
}

.deposit_custom a,.mail_custom a{
color:white;
}

.deposit_custom a:hover,.deposit_custom a:active{
color:#faa41d;
transition: all 0.3s ease;
}

.line_custom{
margin-right:8px;
margin-left:11px;
padding:0px;
color:white; 
}

.username_custom a {
  color: #f5f5f5;
  transition: all 0.3s ease;
}

.username_custom a:hover,.username_custom a:active{
  color:#faa41d;
  transition: all 0.3s ease;
  background:#003069;
}

.mail_custom a:hover,.mail_custom a:active{
  color:#faa41d;
  transition: all 0.3s ease;
  background:#003069;
} 


.logout_custom a.login_radius{
  color:#f5f5f5;
  transition: all 0.3s ease;
  background:#999;
}

.logout_custom a.login_radius:active,.logout_custom a.login_radius:hover{
  color:black;
  transition: all 0.3s ease;
  background:#999;
}
/*Logged Template-END*/


/* navigation on smaller screen desktop */
.dp-down .hover-fix{
  z-index: 501 !important;
}
@media only screen and (max-width: 1700px) {
  #floating-img-slots{
    display: none;
  }
  #floating-img-slots2{
    display: none;
  }
}
@media only screen and (max-width: 1262px) {
  #floating-header.slideDown {
    padding-left: 10px;
    padding-right: 10px;
  }

  #floating-header.slideDown a.navbar-brand {
    margin-right: .5rem !important;
  }
  #floating-header.slideDown a.navbar-brand img {
    height: 30px !important;
  }
}

@media only screen and (max-width: 1213px) {
  #floating-header.slideDown {
    padding-left: 0px;
    padding-right: 0px;
  }

  #floating-header.slideDown a.navbar-brand {
    margin-right: 0 !important;
  }
  #floating-header.slideDown a.navbar-brand img {
    height: 26px !important;
  }
  #floating-header.slideDown div#navbarResponsive ul li {
    margin-right: 12px !important;
  }
}

@media only screen and (max-width: 1162px) { 
  #floating-header.slideDown a.navbar-brand img {
    height: 20px !important;
  }
  #floating-header.slideDown div#navbarResponsive ul li {
    margin-right: 8px !important;
  }
}

@media only screen and (max-width: 480px) { 
    #cover img{
        margin-top:   60%;
    }
}

.homePage .txt02 div{
  display: inline-block;
  width: 250px;
  
}
.homePage  .apple img {
  width: 40px;
  height: 40px;

}

.homePage .apple{
  margin-bottom: 10px;
}
.homePage .android{
  margin-bottom: 10px;
}

.homePage  .apple span {
  vertical-align: -13px;
  margin-left: 8px;
  font-weight: 700;

}

.homePage  .android span {
  vertical-align: -13px;
  margin-left: 8px;
  font-weight: 700;

}
.homePage  .android img {
  width: 40px;
  height: 40px;
}

/* Description placed below the Logo Title/Text */
.hot-text {
    background-color: #ED2024;
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
    font-weight: bold;
    padding: 2px 9px;
    animation: float_text 1s ease-in-out infinite;
    position: absolute;
}


@keyframes float_text {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-3px);
background-color: #f47c20;
}
100% {
transform: translatey(0px);
}
}
/* HOT icon on the top left corner of the logo */
.hot-circle {
    background-color: #ED2024;
    color: #fff;
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: bold;
    padding: 9px 13px;
    animation: color-change 1s ease-in-out infinite;
}

@keyframes color-change {
0% {
}
50% {
background-color: #f47c20;
}
100% {
background-color: #ED2024;
}
}
/** Games on Fishing Page **/
.fishPageGames{
width: 980px;
    margin: 0 auto;
    position: relative;
}
.fishPageGames a img.game1, 
.fishPageGames a img.game2, 
.fishPageGames a img.game3, 
.fishPageGames a img.game4 {
  position: absolute;
  display: block;
}  
.fishPageGames a img.game1 {
    top: 373px;
    left: -83px;
}
.fishPageGames a img.game2 {
    top: 173px;
    left: 176px;
}
.fishPageGames a img.game3 {
    top: 174px;
    right: 172px;
}
.fishPageGames a img.game4 {
    top: 376px;
    right: -71px;
}

/** Homepage Popup **/
.home-overlay-popup div:hover{
    cursor: pointer;
}
.home-overlay-popup {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    z-index: 100;
    display: none;
    width: 38%;
 }
#close{
  height: 50px;
  width: 100%;
  z-index: 200;
  position: absolute;
  bottom: 0;
}
.closed {
    text-align: right;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5em;
}
.closed img {
    position: relative;
    left: 15px;                    
}        

.vendorMsgBox{position: fixed;left: 0;right: 0;top: 200px;background-color: #000;z-index: 1500;border-radius: 5px;padding: 20px;width: 30%;margin: 0 auto;overflow: auto;}
.vendorMsgBox .close{color:#fff;}
.vendorMsgBox .btn{width:  150px;margin:10px;}
.vendorMsgBox h3{color: #fff;}
.vendorMsgBox div{text-align: center; font-size:  24px;}
.btn{background-color:#FF7D00;border:1px;color:#fff;cursor:pointer;}
.btn:hover{background-color:#FAA41D;transition:0.3s ease-out;}
.vendorMsgoverlay{display:block; position:fixed;width:100%;height:100%;top:0;left:0;right:0;bottom:0;background-color:transparent;z-index:2;cursor:pointer;}


/* =============================================== */
/* Temporary Fix Announcement Popup */
/* =============================================== */
.player_announcement_popup_container.modal {
    box-sizing: border-box;
    margin: 0;
}

.player_announcement_popup_container.modal .modal-dialog {
    -webkit-transform: translate(0,-50%);
    -o-transform: translate(0,-50%);
    transform: translate(0,-50%);
    top: 50%;
    margin: 0 auto;

    width: 50vw;
    max-width: unset;
    height: 550px;
    min-height: 550px;
}

.player_announcement_popup_container.modal .modal-content {
    position: relative;

    background-color: #FFF;

    width: 100%;
    height: 100%;

    box-sizing: border-box;
}

.player_announcement_popup_container.modal .modal-heading {
    padding: 0 15px;

    font-size: 16px;

    position: relative;

    width: 100%;

    box-sizing: border-box;
}

.player_announcement_popup_container.modal .modal-heading .modal-title {
    font-size: 1.5em;
    line-height: 200%;
}

.player_announcement_popup_container.modal .modal-heading .close {
    float: right;

    font-size: 1.5em;
    line-height: 200%;

    top: 0;
    position: absolute;
    right: 0;
    padding-right: inherit;
}

.player_announcement_popup_container.modal .modal-body {
    padding: 0;
    box-sizing: border-box;

    position: relative;

    overflow: hidden;
}

.player_announcement_popup_container.modal iframe {
    margin: 0;
    padding: 0;
    border: 0;
    width: 100%;
    height: 100%;

    position: absolute;
}

@media only screen and (max-width: 960px) {
    .player_announcement_popup_container.modal .modal-dialog {
        transform: unset;
        top: 0;
        width: 100vw;
        max-width: 100vw;
        height: 100vh;
        max-height: 100vh;
    }
}

/*for responsive the close buttonjerry 05022019*/

@media screen and (min-width: 1300px) {
  .closed img {
    position: relative;
    left: 211px;    
  }
}
@media screen and (min-width: 1400px) {
  .closed img {
    position: relative;
    left: 188px;    
  }
}
@media screen and (min-width: 1900px) {
  .closed img {
    position: relative;
    left: 22px;    
  }
}
/*/05022019*/


/*new layout for lottery page*/


.row-custom {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;  
}
.circle-container {
  width: 520px;
  float: left;
  position: relative;
}
.circle-container a {
    color: #fff;
    font-weight: 600;
    text-align: center;
    /* float: right; */
    margin: -45px 0 0 4px;
}

/*added by jerry 07012019*/
.adjust-lottery-link a {
  margin-left: 10px;
}

.half {
  width: 260px;
  float: left;
}

.adjust-left{
    margin-top: 3%;
    margin-left: 12%; 
}

.adjust-right {
    margin-top: 3%;
    margin-left: 4%;  
}
.center-block {
    margin-right: auto;
    margin-left: auto;
    display: block !important;
}
/*new layout for fishing page*/
.fishing-container{
  position: absolute;
  width: 100%;
  height: auto;
}

.playtech-adjust {
    position: absolute;
    top: 32em;
    left: 19.5%;
}
.bbin-adjust {
    position: absolute;
    top: 29em;
    left: 41.5%;
}

.ag-adjust {
    position: absolute;
    top: 32em;
    left: 64.5%;
}
/* Player Center Modal For Transfer */
._player_transfer_wallet_modal .modal-heading{
  background: #001e5a;
  border-radius: 4px 4px 0 0;
}
._player_transfer_wallet_modal .modal-heading .modal-title{
  color: #fff;
  font-size: 18px !important;
  line-height: 40px;
}
._player_transfer_wallet_modal .modal-heading .close{
  height: 40px;
  font-size: 18px !important;
  width: 40px !important;
  padding: 0 !important;
  color: #FFF !important;
  opacity: 1 !important;
  text-shadow: 0 0 0 !important;
}
._player_transfer_wallet_modal .modal-body{
  padding: 0 !important;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header{
  left: 0 !important;
  margin-top: 30px;
  height: 90px !important;
  padding: 0 15px !important;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container{
  padding: 0 15px !important;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container .info_item{
  padding: 5px 10px !important;
  background: #e6e6e6 !important;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container .info_item .info_item_header_text{
  font-weight: normal !important;
  font-size: 14px !important;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container .wallet_balance span{
  font-size: 16px !important;
  line-height: 25px !important;
  font-weight: normal !important;
  color: #505050 !important;
}
.t1t-ui._player_transfer_wallet_modal .t1t_currency .currency_number,
.t1t-ui .t1t_currency .currency_number{
  color: #505050;
}
._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container.pending_balance_item, ._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container.total_balance_item, ._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container.wallet_total_item, ._player_transfer_wallet_modal .player_transfer_wallet_info_header .info_item_container.transfer_wallet_actions{
  margin-top: 10px !important;
}
._player_transfer_wallet_modal .transfer_wallet_body{
  padding: 120px 0 15px 0 !important;
}
._player_transfer_wallet_modal .transfer_wallet_body .nav.nav-tabs{
  padding: 0 10px !important;
}
.t1t-ui .nav-tabs{
  border-bottom: 0 !important;
}
.t1t-ui .nav-tabs .nav-link{
  border: 0px solid transparent !important;
  background: #fff !important;
  color: #aaa !important;
  min-height: 37px;
  line-height: 37px;
  padding: 0;
}
.t1t-ui .nav-tabs .nav-item.show .nav-link, .t1t-ui .nav-tabs .nav-link.active{
  color: #00276C !important;
  border: 0 !important;
}
._player_transfer_wallet_modal .transfer_wallet_body .tab-content{
  padding: 0 10px 34px 10px !important;
}
._player_transfer_wallet_modal .transfer_wallet_body .player_transfer_modal_quick_mode > form{
  width: 100% !important;
}
._player_transfer_wallet_modal .player_transfer_modal_quick_mode .transfer_button, ._player_transfer_wallet_modal .player_transfer_modal_quick_mode .transfer_all_button{
  width: 100% !important;
}
._player_transfer_wallet_modal .player_transfer_modal_quick_mode .transfer_help_block_container{
  margin-right: 0 !important;
  width: 50% !important;
  font-size: 16px !important;
  line-height: 38px !important;
}
.transfer_max_hint{
  margin-top: 10px;
}
.transfer_allow_float{
  margin-top: 5px;
}
.transfer_allow_float_icon{
  font-size: 30px !important;
}
.t1t-ui .btn-primary{
  background: #FF7D00 !important;
  border-color: #FF7D00 !important;
  min-height: 30px;
  font-size: 14px !important;
}
._player_transfer_wallet_modal .subwallet_entry_container .subwallet_entry_field.game_balance,
._player_transfer_wallet_modal .subwallet_entry_container .subwallet_entry_field.game_transfer_balance_field,
._player_transfer_wallet_modal .subwallet_entry_container .subwallet_entry_field.game_actions{
  padding: 0px 15px 5px 0 !important;
}
._player_transfer_wallet_modal .transfer_wallet_body .subwallet_entry_container{
  padding: 10px 15px !important;
}
._player_transfer_wallet_modal .subwallet_entry_container .subwallet_note{
  padding: 0 !important;
  background: rgba(0,0,0,0.04) !important; 
}

li.category-live_dealer{
  display: none !important;
}
.category-fishing_game{
  /* display : block !important; */
}

/*expiration date*/
.hidden{
  display: none;
}
/*added by jerry 07152019*/
.percent-container{
  position: relative;
  right: 100px;
}

.percent-container img {
  margin: 0 auto !important;
  display: block;
}
.no-hover {
  padding: 0 0 0 50%;
  pointer-events: none;
 
}
.no-hover:hover {
  color: #000 !important;
}

.icon-nav-logo-nav-baison {
  height: 70px;
  background: url(../images/header_footer/Navbar/logo-baison.png?v=1.4) center no-repeat !important;
  background-size: contain !important;
}
.icon-nav-logo-nt-ent {
  height: 70px;
  background: url(../images/header_footer/Navbar/logo-net-ent.png?v=1.4) center no-repeat !important;
  background-size: contain !important;
}

.icon-nav-logo-nav-habanero {
    width: 60px;
    height: 60px;
    background-image: url(../images/header_footer/Navbar/logo-nav-habanero.png);
    background-size: cover;
}
.icon-nav-logo-nt-ent {
  height: 70px;
  background: url(../images/header_footer/Navbar/logo-net-ent.png?v=1.3) center no-repeat !important;
  background-size: contain !important;
}
.container-fluid .row{
  flex-direction: row !important;
  justify-content: center !important;
}




/*hack nav for promotions page*/

.nav-item-no-bg:hover, .nav-item-no-bg.active  {
  background-image: none !important;
}
.table {
  color: #505050;
}


.nav-item .fa-download {
  padding: 4px 0px 0 2px !important;
}
.fa-download {
  margin: 0 5px 0 0;
}

.navbar .nav-item:last-child {
    padding: 15px 13px 0 43px !important;
}

#floating-header .nav-item:last-child {
  padding: 17px 0px 0 1px !important;
}

.custom-nav .nav-item:nth-child(6) a{

   margin:0px 14px 0 -10px !important;
}

#rules-terms.active{
  color: #505050 !important;
}

.daily-wins{
  display: none;
}
.game-item.pragmaticplay .daily-wins{
  position: absolute;
  top: 0px;
  left: 0;
  width: 70px;
  display: block;
}

/*  */
.tab.chess{
  margin: 60px 0 20px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: #fff;
  height: 70px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}
.tab.chess .provider-select.tablinks{
  margin: 0 16px;
}
.tab.chess .le_gaming .btn-play{
  display: none;
}
.filter.chess .searchDiv.text-center{
  display: flex;
  justify-content: flex-end;
}
.filter.chess .searchDiv.text-center input
{
  width: 222px;
  height: 40px;
  border-radius: 5px;
  background-color: #DDDDDD;
  border: 1px solid #BBBBBB;
  padding: 9px;
  color: #707070;
  margin-right: 10px;
}
.filter.chess .searchDiv.text-center button{
  padding: 5px 10px 5px 10px;
  background-color: #FF7D00;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 37px;
  width: 50px;
}
a.provider-select.tablinks.luckygame img,
a.provider-select.tablinks.baison img{
  height: 60px !important;
}
.kycard .cover-overlay .game-cover,
.le_gaming .cover-overlay .game-cover{
  width: 135px !important;
  margin-left: 0;
}
.tabcontent .table_games img.daily-wins{
  display: none !important;
}

.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success button.close.pull-right span, 
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger button.close.pull-right span,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info button.close.pull-right span {
    font-size: 18px;
    font-weight: 500;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success button.close.pull-right, 
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger button.close.pull-right,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info button.close.pull-right {
    color: #fff;
    position: relative;
    top: 5px;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info {
  padding: 10px 10px !important;
  background: #003c82 !important;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success h4,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger h4,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info h4 {
  color: #fff !important;
  text-align: left;
  font-size: 18px !important;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success h4 i,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger h4 i,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info h4 i {
    display: none;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-success h4 i:before,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-danger h4 i:before,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-header.bg-info h4 i:before {
    display: none;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-body.bg-light p {
  margin: 0;
  font-size: 18px;
}
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-success,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-danger,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-info {
  padding: 9px 15px !important;
  margin-top: 0;
}

.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-danger {
  background-color: #f2dede !important;
}

.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-success {
      background-color: #dff0d8 !important;
}

.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-success button,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-danger button,
.t1t-ui.t1t-message-box .modal-vertical-alignment-helper .modal-dialog .modal-footer.bg-info button {
  padding: 2px 0 !important;
  font-size: 14px !important;
  background: #003c82 !important;
  color: #fff !important;
  height: 40px;
  width: 130px;
  border: 0;
}
.t1t-ui.t1t-message-box.modal .modal-body.bg-light {
    text-align: center;
    padding: 30px 0;
}