body{
-webkit-tap-highlight-color: transparent;
    background: #F4F7FC;
    font-family: "Open Sans", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #2D2D2D;
    font-size: 14px; /* base font size */
    margin: 0;
    padding: 0;
    
}

body.fixed{
    overflow: hidden;
}

#deposit input {
width:auto;
}


p {
    margin: 0;
}

.hidden-lg{
    display: none!important;
}


/*Preloader wrapper*/

.loading_jr {
overflow:hidden;
max-height:100px;
}

#loader-wrapper {
  position:absolute;
  top: 0;
  width:100%;
  height:100vh;
  z-index: 6000;
  
background: rgb(255,255,255);
background: linear-gradient(30deg, rgba(255,255,255,1) 0%, rgba(244,247,252,1) 100%);
} 



/*preloader logo*/

.loader-middle {
  margin: auto;
  position: absolute;
  top:45%;
  left:50%;
  transform: translate(-50%,-50%);
text-align:center;
} 

#loader-wrapper .main-logo-desktop {
display:block;
width:120px;
margin:0;
background-repeat: no-repeat;
    background-size: contain;
    background-image: url(/img/assets/betsson_logo_orange.svg);
    padding-bottom:25px;
    height: 40px;


}


/*Preloader animation*/
.lds-roller {
  transform: scale(0.75);
  display: block;
  margin:0 auto;
  width: 64px;
  height: 64px;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin:32px 32px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f60;
  margin: -3px 0 0 -3px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 50px;
  left: 50px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 54px;
  left: 45px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 57px;
  left: 39px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 58px;
  left: 32px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 57px;
  left: 25px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 54px;
  left: 19px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 50px;
  left: 14px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 45px;
  left: 10px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Preloader end*/





/* Color Variables */

/* End */

/* Buttons */

.btn-secondary{
    font-size: 14px!important;
    color: #FF6600!important;
    display: initial!important;
    border: 1px solid #FF6600;
    border-radius: 2px;
    padding: 6px 15px;
    text-decoration: none;
    
}

.btn-primary, .btn-blue {
    font-size: 18px!important;
    font-weight: 400;
    color: #FFFFFF!important;
    background: #FF6600!important;
    border-radius: 3px;
    padding: 10px 20px;
    text-decoration: none;
}

.btn-blue {
	background: #0e0680!important;
}

.btn-primary:hover{
    color: #FFFFFF!important;
}

.btn-secondary:hover{
    background: #FF6600;
    color: #FFFFFF!important;
}

.btn-success{
    font-size: 14px!important;
    font-weight: 400;
    color: #FFFFFF!important;
    background: #40B840!important;
    border-radius: 2px;
    display: block;
    min-width: 120px;
    width: calc(50% - 5px);
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}

.btn-reverse{
    font-size: 14px!important;
    font-weight: 400;
    color: #FFFFFF!important;
    border: 1px solid #ffffff;
    border-radius: 2px;
    display: block;
    min-width: 120px;
    width: calc(50% - 5px);
    line-height: 30px;
    text-decoration: none;
    text-align: center;
}
/* End */




/* Mobile Menu */



.st-content,
.st-content-inner {
	position: relative;
}

.st-container {
	position: relative;
	overflow: hidden;
}

.st-pusher {
	position: relative;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

.st-pusher::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 0;
	background: rgba(0,0,0,0.2);
	content: '';
    opacity: 0;
    z-index: 9999;;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

body.fixed .st-pusher{
    overflow-x: hidden; 
    overflow-y: auto;
}

.st-menu-open .st-pusher::after {
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	visibility: hidden;
	width: 300px;
	height: 100%;
	background: #48a770;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.st-menu::after {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	content: '';
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.st-menu-open .st-menu::after {
	width: 0;
	height: 0;
	opacity: 0;
	-webkit-transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
	transition: opacity 0.5s, width 0.1s 0.5s, height 0.1s 0.5s;
}

.st-menu{
    margin: 0;
    padding: 0;
    background: #2D2D2D;
    display: block;
    min-width: 289px;
    color: #fff;
    height: 100vh;
    overflow-y: scroll!important;
    overflow-x: hidden;
}

.st-menu .logo-nav.logo-static{
    position: absolute;
    top: 15px;
    left:150px;
    transform: translateX(-50%);
}

.st-menu .logo-nav img{
    width: 100px;
}

.st-menu .submenu{
    list-style: none;
    margin: 0!important;
    padding: 0;
    transition: all 0.5s;
}

.accordion-menu input[type=checkbox] {
    /* hide native checkbox */
    position: absolute;
    opacity: 0;
  }

  .accordion-menu ul {
    /* by default hide all sub menus */
    display: none;
    padding-left: 0!important;
    margin-left: 0!important;
  }

  .accordion-menu input[type=checkbox]:checked + label + ul,
  .accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
    /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
    /* show children when item is checked */
    display: block;
    padding-left: 0;
  }

.st-menu .submenu .back-to-main{
    position: absolute;
    padding: 14px 20px;
    top: -105px;
    left: -300px;
    opacity: 0;
    transform: rotate(180deg);
    transition: all .5s;
}

.st-menu .submenu.pushed .back-to-main{
    left: 10px;
    top: 5px;
    opacity: 1;
    
}

.st-menu .submenu.pushed{
    transform: translateX(-100%);
}

.st-menu .submenu.user-menu{
    position: absolute;
    top: 0;
    width: 300px;
    left: 300px;
}

.st-menu .submenu li{
    display: block;
    
    padding: 0px 0px;
    min-height: 56px;
    
    box-sizing: border-box;
}

.st-menu .submenu li.logo{
    float: none;
    text-align: center;
}
.st-menu .submenu li.logo img{
    width: 100px;
}

.st-menu .submenu li.show-sub{
	background-color: #3a3a3a;
}

.st-menu .submenu li.show-sub a.icon-user {
    background: url(/img/assets/svg/icon_profile.svg);
    background-repeat: no-repeat;
    background-position: 40px 50%;
    text-indent: 40px;
}

.st-menu .submenu li.green{
    background-color: #40B840;
}

.st-menu .submenu li.orange{
    background-color: #FF6600;
    border-bottom: none;
}

.st-menu .submenu li.red{
    background-color: #F53D3D;
}

.st-menu .submenu li.balances{
    display: flex;
    flex-flow: row nowrap;
    align-content: center;
    padding: 10px 0px;
    text-align: right;
    padding-right: 24px;
}
.st-menu .submenu .balance-r{
    width: 100px;
    text-align: right;
    
}
.st-menu .submenu .balance-r span{
    display: block;
    font-size: 10px;
}

.st-menu .submenu li.session-time{
    padding: 10px 0px;
    padding-left: 40px;
}
.st-menu .submenu li.session-time span{
    font-size: 10px;
    display: block;
}

.st-menu .submenu li.icon{
    background-repeat: no-repeat;
    background-position-y: 50%;
    background-position-x: 265px;
}



.icon-deposit{
    background-image: url(/img/assets/svg/icon_quickdeposit.svg);
}

.icon-caret-right{
    background-image: url(/img/assets/svg/icon_oddsdown.svg);
}

.st-menu .submenu li a, .st-menu .submenu li label{
    color: #FFFFFF;
    text-decoration: none;
    padding: 18px 40px;
    display: block;
    border-bottom: 1px solid #3A3A3A;
    position: relative;
}

.st-menu .submenu li label::after{
    content: '';
    background-image: url(/img/assets/svg/icon_oddsdown.svg);
    width: 8px;
    height: 10px;
    display: block;
    position: absolute;
    right: 28px;
    top: 21px;
    transform: rotate(90deg);
    
}

.st-menu .submenu li input[type=checkbox]:checked+label::after {
    transform: rotate(-90deg)!important;
}


.st-menu .submenu li ul li{
    background-color: #3A3A3A;
}

.st-menu .submenu li ul li a{
    padding-left: 60px;
    border-bottom: 1px solid #454545;
}

/* Effect 2: Reveal */
.st-effect-2.st-menu-open .st-pusher {
	-webkit-transform: translate3d(300px, 0, 0);
	transform: translate3d(300px, 0, 0);
}

.st-effect-2.st-menu {
	z-index: 1;
}

.st-effect-2.st-menu-open .st-effect-2.st-menu {
	visibility: visible;
	-webkit-transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
}

.st-effect-2.st-menu::after {
	display: none;
}

/* Fallback example for browsers that don't support 3D transforms (and no JS fallback) */
.no-csstransforms3d .st-pusher,
.no-js .st-pusher {
	padding-left: 300px;
}

/* End *

/* Add to Homescreen iOS/Android */

    .add-to-home{
        position: fixed;
        z-index: 10000;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.65);
    }

    .add-to-home .modal.inner{
        position: absolute;
        width: 281px;
        max-height: 350px;
        background: #FFFFFF;
        left:50%;
        top: 50%;
        transform: translate(-50%, -50%);
        
        text-align: center;
        align-content: center;
    }

    .add-to-home .modal.inner .pre{
        width: 100%;
        background: #F3F3F3;
        
        padding: 20px;
        box-sizing: border-box;
    }

    .add-to-home .modal.inner .pre .ico{
        display: block;
    }

    .add-to-home .modal.inner .pre .title{
        font-size: 16px;
        font-weight: 600;
        display: block;
        color: #4A4A4A;
        max-width: 200px;
        margin: 0 auto;
        padding: 15px 0;
    }
    .add-to-home .modal.inner .pre .info{
        font-size: 12px;
        font-weight: 400;
        display: block;
        color: #4A4A4A;
        max-width: 200px;
        margin: 0 auto;
        padding-bottom: 10px;

    }
    .add-to-home .modal.inner .post{
        padding: 20px;
        box-sizing: border-box;
        display: block;
    }

    .add-to-home .modal.inner .post .btn-modal{
        max-width: 120px;
        display: block;
        margin: 0 auto;
    }

    .add-to-home .modal.inner .post .sub-btn{
        display: block;
        font-size: 14px;
        color: #9B9B9B;
        text-decoration: none;
        padding: 15px 0px;
    }

    
/* End */

/* Snackbar */

.snackbar{
    position: fixed;
    bottom: 0;
    display: flex;
    align-content: center;
    width: 100%;
    max-height: 48px;
    z-index: 10001;
    background: #FFFFFF;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.25);
    padding: 0 16px;
    line-height: 48px;
    cursor: pointer;
}

.snackbar .fav-ico img{
    width: 24px;
    height: 24px;
    margin-top: 12px;
}

.snackbar .msg{
    font-size: 14px;
    color: #4A90E2!important;
    text-decoration: none;
    text-indent: 15px;
    
}

.snackbar .close img{
    width: 12px;
    height: 12px;
    margin-top: 18px;
    padding-left: 15px;
    
}

/* End */

/* Header Menu */

header.primary{
    position: sticky;
position: -webkit-sticky;
    background: #fff;
    border-top: 3px solid #FF6600;
    height: 65px;
    width: 100%;
    top: 0;
    left: 0;
    display: block;
    z-index: 199;
}

header.mobile{
    background: #FF6600;
    border-top: 0;
    height: 112px;
    display: flex;
    flex-flow: row wrap;
    align-content: center;
}

header.mobile-loggedin{
            height: 56px;
        }

header.mobile-loggedin a.logo {
             margin-left: 40px;
        }

header.mobile-loggedin a.btn-deposit{
            float: right;
            width: initial;
            margin-right: 20px;
        }

header.mobile .bottom{
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 8px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;

}

header.mobile .top{
    
    text-align: center;
    height: 56px;
    padding-top: 15px;
}

header.mobile .top a.burger{
    float:left;
    position: absolute;
    top: 20px;
    left: 20px;
}



header.mobile .top a.logo img{
    float:none;
    width: 100px;
    
}

header.primary .header-navigation {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
}

header.primary .header-navigation .header-navigation-left ul{
    display: flex;
    list-style: none;
    flex-flow: row;
    align-items: center;
    padding: 0;
    margin: 0;
}

header.primary .header-navigation .header-navigation-left ul li{
    padding: 23px;
}

header.primary .header-navigation .header-navigation-left ul li:first-child{
    padding: 15px;
}

/* active element in TOP desktop nav*/
.currentPage {
    color:#FF6600!important;
}

header.primary a{
    font-size: 14px;
    color: #9B9B9B;
    text-decoration: none;
}

.header-navigation-right a.btn-primary-scucess {
    color: #fff;
    background: #40B840!important;
    border-radius: 2px;
   padding: 6px 15px;
}

header.primary .header-navigation .header-navigation-right ul{
    display: flex;
    list-style: none;
    flex-flow: row;
     padding: 0;
    margin: 0;
    position:relative;
    z-index:200;
    
}

header.primary .header-navigation .header-navigation-right ul li{
    padding: 23px;
}
li.deposit{
padding:0!important;
}
li.deposit a {
color:#FFF;
line-height: 65px;
    padding: 24px;
    width: 100%;
    margin: 0;
}

.header-navigation-right li.balance-r{
    background: #FF6600;
    color: #FFFFFF;
    text-align: right;
    padding: 14px 23px!important;
    position: relative;
}

.header-navigation-right li.balance-r:after{
    content: '';
    width: 1px;
    height: 52px;
    background: #F3F3F3;
    opacity: 0.25;
    display: block;
    position: absolute;
    right: 0;
    top: 5px;
}
.header-navigation-right li.balance-b{
    background: #FF6600;
    color: #FFFFFF;
    text-align: right;
    padding: 14px 23px!important;
}

.header-navigation-right li.balance-r span, .header-navigation-right li.balance-b span{
    display: block;
    font-size: 10px;
}
.header-navigation-right li.deposit{
    background: #40B840;
    color: #FFFFFF;
    position: relative;
}
.header-navigation-right li.deposit:hover{
    cursor: pointer;
    background: #35a035;
}

.header-navigation-right li.deposit:after{
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    right: -6px;
    margin-top: 4px;
	border-top: 6px solid transparent;
	border-left: 6px solid #40B840;
	border-bottom: 6px solid transparent;
}

.header-navigation-right li.deposit:hover:after{
    border-left: 6px solid #35a035;
}



.header-navigation-right li.user{
    background: #2D2D2D;
    color: #FFFFFF;
    text-indent: 35px;
    align-items: center;
   position: relative;
}

.header-navigation-right li.user .submenu{
    position: absolute;
    right: 0;
    margin-top: 23px;
    background: #2D2D2D;
}

.header-navigation-right .submenu ul{
    display: block!important;
    min-width: 289px;
}

.header-navigation-right .submenu ul li{
    display: block;
    border-bottom: 1px solid #3A3A3A;
    padding: 0px!important;
}

.header-navigation-right  .submenu ul li:hover{
    background: #1d1c1c;
    
}

.header-navigation-right .submenu ul li.red{
    background: #F53D3D;
    border-bottom: 0;
    color: #ffffff;
}



.header-navigation-right .submenu ul li:last-child a{
	color: #ffffff;
}

.header-navigation-right .submenu ul li a, .header-navigation-right li.session-time {

    display: block;
    line-height: 50px;
}

.header-navigation-right li.session-time:hover {

background-color: transparent!important;
}

a.dropbtn, a.show-balances {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    cursor:pointer;
}

li.balance-b:hover {
    background: #ea5d01;
}

div#userDropdown.show {
    display:block!important;
    color: #FFFFFF;
    text-indent: 35px;
    position: absolute;
    right: 0;
    top: 65px;
    background: #2D2D2D;
    width: 100%;
}

div#balanceDropdown.show {
    display:block!important;
    color: #FFFFFF;
    text-indent: 35px;
    position: absolute;
    right: 0;
    top: 65px;
    background: #2D2D2D;
    width: 100%;
}

.header-navigation-right li.orange.balances {

display: flex!important;
    flex-flow: row nowrap;
    align-content: center;
    padding: 16px 0px!important;
    text-align: right;
    padding-right: 62px!important;
    background-color: #1d1c1c;
    border-bottom: none;
    box-sizing: border-box;
    min-height: 66px;
    
}

.header-navigation-right li.orange.balances .balance-r {
    flex-basis: calc(100%/3);
    text-align: right;
}

.header-navigation-right li.orange.balances .balance-r span {
    display: block;
    font-size: 10px;
}
.header-navigation li.user:hover{
    cursor: pointer;
    background: #1d1c1c;
    
}

.header-navigation-right li.user .icon-user{
    background: url('/img/assets/svg/icon_profile.svg');
    position: absolute;
    height: 18px;
    width: 20px;
    margin-left: -35px;
}
.header-navigation-right li.user .icon-caret{
    padding-left: 10px;
}

/* End */

/* Content and classes inside content */

.content{
    max-width: 1170px;
    display: block;
    margin: 0 auto;
}

.gamelist .section-header {

width: 100%;

}

.playlogado, .playlogado:hover {
    color: #E89E09;
    font-size: 3.5rem;
    font-weight: 300;
}


.section-header{
    border-bottom: 3px solid #FF6600;
    margin-bottom: 40px;
    margin-top: 40px;
}


.section-header .icon{
    width: 36px;
    height: 36px;
    background: #FF6600;
    display: inline-block;
    margin-bottom: -6px;
}
.section-header .title{
    font-size: 20px;
    letter-spacing: -0.6px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 36px;
}

.section-header a{
    text-decoration: none;
    color: #9B9B9B;
    float: right;
    padding-top: 8px;
    padding-bottom: 0px;
}

.section-header a.show-filters{
    padding-right: 25px;
    position: relative;
}
.section-header a.show-filters:after{
    content: '';
    width: 16px;
    height: 16px;
    display: block;
    background-image: url(assets/svg/icon-sorting_answers.svg);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 7px;
}

/* Banner */
    section.banner{
        width: 100%;
        max-height: 300px;
        height: 300px;
        overflow: hidden;
        
    }
    
     
.owl-carousel.owl-loaded {
   
    margin: 0 auto;
}
    section.banner img{
        width: 100%;
    }

    section.banner .item{
        height: 100%;
        position: relative;
        background-size: cover!important;
    }

   .owl-carousel .wrapper {
           max-width: 1170px;
           margin: auto;
           padding-top: 63px;
        }
        

    section.banner .item .banner-content{
        /*position: absolute;*/
        box-sizing: border-box;
        background: rgba(0,0,0,.45);
        bottom: 61px;
   	 left: 135px;
   	 padding: 24px 43px;
    	 width: 605px;
         color: #fff;
    }

    section.banner .item .banner-content span.title{
        display: block;
        font-weight: 700;
        font-size: 14px;
        color: #FFFFFF;
        line-height: 6px;
    }

    .promo-title {

            display: block;
            font-size: 36px;
            font-weight: bold;
            letter-spacing: 1.0px;
            line-height: 49px;

        }

        .promo-text {

            display: block;
            font-size: 18px;
            line-height: 24px;
            letter-spacing: 0.5px;
        }



    section.banner .item .banner-content span.description {
        font-size: 12px;
        color: #FFFFFF;
    }
    section.banner .item .banner-content span.go {
        display:none;
       
    }
    section.banner .item .banner-content span.go img {
        width: 18px;
        height: 18px;
    }

  .banner-button a {

            display: inline-block;
            width: 160px;
            margin-top: 20px;
            border: 1px solid #FF6600;
            border-radius: 3px;
            background-color: #FF6600;
            text-decoration: none;
            color: #fff;
            font-size: 21px;
            line-height: 37px;
            text-align: center;
        }

.banner-button a:hover {

color: #FFF!important;

}


        /* banner navigation */

        .owl-theme .owl-dots {

            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
        }




.owl-theme .owl-nav {
                position: absolute;
   		 top: calc(50% - 20px);
   		 left: 0;
   		 right: 0;
   		 color: #fff;
              
        }

.banner .owl-carousel .owl-nav button.owl-prev, .banner .owl-carousel .owl-nav button.owl-next {
font-size:40px
}



.owl-carousel .owl-nav button.owl-prev {
    float: left;
}


.owl-carousel .owl-nav button.owl-next {
  float:right;
}

.fa-play-circle-o:before {
    content: "\f01d";
}

.owl-prev img {
     transform: rotate(180deg);
}

.owl-carousel .owl-nav img {
	width: 42px;
}

.owl-theme .owl-nav [class*='owl-']:hover { 

border-radius: 100%;
}

/* End */

/* Casino Navigation */

nav.casino-nav{
    display: flex;
    flex-flow: row wrap;
    height: 55px;
    background: #2D2D2D;
    width: 100%;
}
nav.casino-nav ul.main {
    display: flex;
    flex-flow: row nowrap;
    list-style: none;
    align-content: center;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    max-width:1170px;
     height: 55px;
}

nav.casino-nav ul.main > li{
    color: #ffffff;
    font-size: 10px;
    text-align: center;
    width: 33.3%;
    background-repeat: no-repeat;
    background-position: 50% 25%;
}

nav.casino-nav ul.main > li:hover{
	background-color: #3A3A3A;
}

nav.casino-nav ul.main > li > a{
    padding: 15px 5px;
    line-height: 55px;
    color: #fff;
    text-decoration: none;
    display: block;

}

nav.casino-nav ul.main > li > a:hover{
	color:#fff!important;
}

/* Casino Nav Icons */

.icon-destacados-bg{
    background-image: url(/img/assets/svg/icon-destacados.svg);
}

.icon-casino-bg{
   background-image: url(/img/assets/svg/icon-casino.svg);
}

.icon-tragaperras-bg{
    background-image: url(/img/assets/svg/icon_tragaperras.svg);
}

.icon-ruletas-bg{
    background-image: url(/img/assets/svg/icon-ruletas.svg);
}

.icon-juegos-bg{
    background-image: url(/img/assets/svg/icon-juegos.svg);
}

.icon-botes-bg{
    background-image: url(/img/assets/svg/icon-botes.svg);
}

.icon-videobingos-bg{
    background-image: url(/img/assets/svg/icon-videobingo.svg);
}

.icon-sportbook-bg{
    background-image: url(/img/assets/svg/icon_lobby.svg);
}



.icon-livecasino-bg{
    background-image: url(/img/assets/svg/icon_livecasino.svg);
}

.icon-promotions-bg{
    background-image: url(/img/assets/svg/icon_promotions.svg);
}

nav.casino-nav li.cassino-nav-current{
    border-bottom: 3px solid #FF6600;
    background-color: #3A3A3A;
}






/* End */

/* Steps */

.steps-hp-bar {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    padding: 36px 0;
    padding-bottom:0;
}

.steps {
    width: 32%;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.steps::before {
    display: inline-block;
    text-align: center;
    margin-right: 10px;
    width: 48px;
    line-height: 48px;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    background-color: #FF6600;
    color: #fff;
}

.step-1::before {
    content: "1";
}

.step-2::before {
    content: "2";
}

.step-3::before {
    content: "3";
}

/* End */


/*Games jackpot label*/

.jackpot_ticker.lazyload {
    opacity: 1 !important;
}

div.jackpot_ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    background-color: rgba(255, 102, 0, 0.8);
    box-sizing: border-box;
    color: white;
    z-index:10;
    }

/*Games jackpot label - end*/

/* Promotions Cards */

div.promotion-cards-bar {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding-top:40px;
}

.promotion-card {
    width: calc(100% * (1/3) - 20px - 1px);
    background-color: #fff;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.promotion-card:hover {
   webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,0.25);
    box-shadow: 0 0 20px 0 rgba(0,0,0,0.25);
}


.promotion-card > p {
    line-height: 43px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.7px;
    text-align: center;
}

div.promotions-img {
    position: relative;
}

.promotion-icon {
    position: absolute;
    top: -28px;
    left: 12px;
    background-color: #ff6600;
}

span.icon-promo-casino {
    display: block;
    width: 36px;
    height: 36px;
    background-image: url(/img/assets/svg/icon-casino.svg);
    background-repeat: no-repeat;
    background-position: center;
}

span.icon-promo-sport {
    display: block;
    width: 36px;
    height: 36px;
    background-image: url(/img/assets/svg/icon_sports.svg);
    background-repeat: no-repeat;
    background-position: center;
}

span.icon-promo-livecasino {
    display: block;
    width: 36px;
    height: 36px;
    background-image: url(/img/assets/svg/icon_livecasino.svg);
    background-repeat: no-repeat;
    background-position: center;
}

.promotions-img img {
    width: 100%;
}
.promotion-page-card-foot {
    display: flex;
    flex-flow: column;
    padding: 30px
}


.promotion-page-card-foot .promotion-card-b {
    margin-top: 20px;
}

.promotion-page-card-foot  {


}

.promotion-card-foot {
    display: flex;
    flex-flow: row;
    padding: 30px
}

.promotion-card-p {
    flex-grow: 1;
    flex-basis: 0;
    font-weight: 300;
    padding-right:12px;

}

.promotion-card-p span{
    font-weight: 600;
}

.promotion-card-b a{
    display: block;
    word-wrap: none;
}





/* End */



/*Games*/ 

          
           .gameRibbon {        
    position: absolute;
    top: 8px;
    color: white;
    display: block;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Open Sans';
    font-weight: bold;
    font-size: 11px;
    background-color: #f60;
    padding: 5px;
    left: -5px;
    z-index: 20;
  }

  .gameRibbon.position2 {
    top: 38px;
  }

  .gameRibbon.position3 {
    top: 68px;
  }
 
  .gameRibbon.exclusive {
    background-color: #2D2D2D;
  }

  .gameRibbon.hot {
    background-color: #ff0000;
  }

  .gameRibbon.promo {
    background-color: #FFD700 !important;
    color: #111 !important;
  }
         
.arrow-down {
  
    position: absolute;
    bottom: -5px;
    left:0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-top: 5px solid #B35409;
     
 } 
 
 
 .exclusive .arrow-down {
     border-top: 5px solid #5a5a5a;
     
     
 }


/*Games END*/ 


/* Video Ad */

/* Video bar */



.video-bar {
    display: flex;
    background-color: #fff;
}

.vide-card {
    width: 75%;

}

.vide-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

div.video-text {
    flex: 1;
}

div.text {
    padding-left: 27px;
    padding-right: 33px;
}

.video-text h2 {
    margin-top: 23px;
    margin-bottom: 30px;
    color: #FF6600;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.67px;
    line-height: 27px;
}

p.video-text {

    margin-bottom: 60px;
    font-size: 14px;
    font-weight: 300;
    line-height: 19px;
}

 .video-btn {
    padding-left: 27px;
    padding-right: 33px;
 }       

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

.videoWrapper iframe {
    position: absolute;
    border-style: none;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* End */

/* Footer */

footer{
    display: block;
    background: #FFFFFF;
    width: 100%;
    margin-top: 80px;
}

.footer-logos {
padding-top: 26px;
padding-bottom: 26px;
}

.pay-methods, .rg-icons {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    
}

.pay-methods { 
        margin-bottom: 10px;

}

footer {
    background-color: #ffffff;
}

footer div {
    max-width: 1170px;
    display: block;
    margin: 0 auto;
}


.footer-full{
    display: block;
    padding-top: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #DCDCDC;
}

.footer-full li {
font-weight: 300;
}

.footer-full a {
color: #FF6600;
}

.footer-full h1.footer-title, .footer-full h2, .footer-full h3, .footer-full h4  {
   display: block;
    padding-bottom: 10px;
    margin: 0;
    font-size: 20px;
    color: #FF6600;
    font-weight: 600;
}

.footer-full h4  {
font-size:14px;
}

.footer-full .footer-p{
    font-size: 14px;
    font-weight: 300;
}

.footer-full > a{
    color: #FF6600;
    text-decoration: none;
}

.footer-full > a#toggleVisibilty{
	border: 1px solid #FF6600;
    border-radius: 2px;
    padding: 4px 6px;
    margin: 15px 0px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    padding-right: 10px;
}

.footer-full > a#toggleVisibilty:hover{
	background:#FF6600;
	color: #FFF;
}

a#toggleVisibiltyCat{
	border: 1px solid #FF6600;
    border-radius: 2px;
    padding: 4px 6px;
    margin: 15px 0px;
    display: inline-block;
    cursor: pointer;
    font-size: 12px;
    padding-right: 10px;
}

a#toggleVisibiltyCat:hover{
	background:#FF6600;
	color: #FFF;
}

.footer-links{
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-flow: row;
    justify-content: space-between; 
      
}

.footer-links .foot-links-col{
    flex-grow: 1;
    flex-basis: 0;
}

.footer-links .title{
    display: block;
    font-size: 20px;
    color: #FF6600;
    padding-bottom: 15px;
}

.footer-links .foot-links-col > a{
    display: block;
    font-size: 12px;
    line-height: 28px;
    color: #9B9B9B;
    text-decoration: none;
}

.footer-links p{
    font-size: 12px;
    color: #9B9B9B;
    margin-top: 0;
    padding-bottom: 30px;
    
}

.footer-links p a{
    color: #FF6600;
    text-decoration: underline;
    display: initial;
}


.footer-logos{
    border-top: 1px solid #DCDCDC;
    border-bottom: 1px solid #DCDCDC;
    margin-bottom: 60px;
}

.footer-small{
    padding-bottom: 40px;
}
.footer-small p{
    font-size: 12px;
    font-weight: 300;
    padding-bottom: 40px;
}

.footer-small img{
    height: 35px;
    width: auto;
}
/* End */

/* Cookies*/ 

div#cookiesInfo{
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: left;
    background-color: #2D2D2D;
    color: #FFF;
    padding: 30px;
    z-index: 201;
    margin: -2;
    border: 1px solid #fff;
    border-color: #333333 #4A4A4A #626262;
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

div#cookiesInfo h5{
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.4px;
    padding: 0;
    margin: 0 0 10px 0;
}

div#cookiesInfo p{
    font-weight: 300;
    font-size: 12px;
    margin-bottom: 20px;
    
}

div#cookiesInfo a{
    color: #FF6600;
}

div#cookiesInfo .btn-cookies{
    font-size: 14px!important;
    font-weight: 400;
    color: #ffffff!important;
    border: 1px solid #ff6600;
    border-radius: 2px;
    display: inline-block!important;
    min-width: 120px;
    
    line-height: 30px;
    text-decoration: none;
    text-align: center;
    background: #FF6600;
}

/*Cokkies End*/




/* Additionals & Misc */

.support-cta{
    position: fixed;
    right: 10px; 
    bottom: 50px;
    z-index: 200;
}

@media screen and (min-width:1024px) {
    section.banner .item {
    background-position-x: 50%!important;
    }

    .owl-carousel .owl-item {
        height: 300px;
    }
}



/* Mobile Breakpoint */


    
@media screen and (max-width:1024px) {
        
    body {
        padding-top: 0px;
    }

    .st-content {
        overflow-y: scroll;
        -webkit-overflow-scrolling: touch;
    }

    section.banner .item .banner-content {
        position: absolute; 
    }

    .owl-carousel .owl-item {
        height: 170px;
    }   




/*banner mobile style start*/


    
    
    section.banner .item .banner-content {
    height: 55px;
    padding: 16px 20px 0px 20px;
    width: 100%;
    left:0;
    bottom: 0;
}


section.banner .item .banner-content span.promo-title {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 6px;
    letter-spacing: 0px;
  
}


section.banner .item .banner-content span.promo-text {
    font-size: 12px;
    color: #FFFFFF;
}

button.owl-dot {
    
    display:none!important;
}


.owl-theme .owl-nav {
               
                 display: none;
        }



 /* banner mobile style end*/





/* Adjust content height depend on mobile header size */

.mob-lin{
padding-top:56px;
}
.mob-lot{
/* padding-top:112px; */
}

#register .hidden-sm {
display: none;
}

.consentWrapper .hidden-sm {
   display:none;
}


.hidden-lg{
    display: block!important;
}

section.banner{
    height: 170px;
    
}

        .support-cta{
            bottom: 20px; 
        }

        footer{
            margin-top: 40px;
        }

      

        .footer-logos{
            
            margin-bottom: 25px;
        }

        .footer-small{
            padding: 0 20px;
        }

        .footer-small p{
            font-size: 10px;
            line-height: 14px;
            padding-bottom: 20px;
        }

        .footer-small img{
            height: 25px;
            padding-bottom: 20px;
        }

        .video-bar {
            flex-wrap: wrap;
            margin: 0 20px;
        }
        .vide-card {
            width: 100%;
            
        }
        .video-text h2 {
            margin-top: 13px;
            margin-bottom: 13px;
            font-size: 16px;
        }

        p.video-text {
            margin-bottom: 20px;

        }
        
        .video-btn {
            padding: 0;
        }

        .video-btn .btn-primary{
            border-radius: 0;
            
            display: block;
            text-align: center;
        }

        .content{
            padding: 0 0px;
        }


/*promotions hp mob*/


.promotion-card {
	position: relative;
}

.promotion-card-foot a.btn-primary {
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	color: transparent!important;
	background: transparent!important;
}

 .promotion-cards-bar {
	
     overflow-x: scroll!important;
    overflow-y: hidden!important;
    -webkit-overflow-scrolling: touch;
padding-top:0!important;

        }
        
.promotion-card{
            min-width: 245px;
            margin-right: 10px;
-webkit-transform: translateZ(0);
        }
        .promotion-card:first-child{
            margin-left: 20px;
        }

.promotion-card-p{
    font-size: 12px;
    font-weight: 300;
}

        .promotion-card > p{
            display: none;
        }

        .promotion-icon {
            top: 0;
            left: 0;
        }
    
        .promotion-card-foot {
            align-items: center;
            padding: 15px 20px;
        }
    
        
    
        .promotion-card-text-jr {
            padding: 10px 60px 15px 18px;
        }
        p.promotion-card-text {
            padding-right: 0px;
            font-size: 12px;
        }
           
        .gamelist{
            
            flex-flow: row;
            overflow-x: scroll!important;
   	    overflow-y: hidden!important;
            -webkit-overflow-scrolling: touch;
            
        }
        .game-card{
            
            min-width: 245px;
            margin-right: 10px;
        }
        .game-card:first-child{
            margin-left: 15px;
        }

        .gamelist:after{
            content: " ";
            width: 20px;
            
        }
        
        .section-header:first-child{
            margin-top: 20px!important
        }

        .section-header{
            border-bottom: 2px solid #FF6600;
            margin: 20px 15px;
            margin-top: 0;
        }


        
        
        .section-header .title{
            font-size: 14px;
            letter-spacing: -0.5px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 28px;
        }
        
        .section-header a{
            text-decoration: none;
            color: #9B9B9B;
            font-size: 12px;
            float: right;
            padding-top: 4px;
            padding-bottom: 0px;
        }


section.banner .item .banner-content span.go {
    display:block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: calc(50% - 9px);
    right: 28px;
    box-sizing: border-box;
}

section.banner .item .banner-content .banner-button {
    
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.banner-button a {

    width: 100%;
    height: 170px;
    margin-top: 0;
    border: none;
    border-radius: unset;
    background-color: transparent;
    text-decoration: none;
    color: transparent;

}

.banner-button a:hover {

color: transparent!important;

}



/*footer */

.footer-logos img {
   max-height: 40px;
}

.footer-full , .footer-links {
    padding-top: 35px;
    padding-bottom: 25px;
    margin-left: 20px;
    margin-right: 20px;
}

    }

@media screen and (max-width: 768px) { 

.footer-links div.foot-links-col {
display:none;
}

.footer-links div.foot-links-col:nth-of-type(4n+1) {
display:block;
}

.footer-links .title {
font-size:13px;
}

}

@media screen and (max-width: 411px) {

 .footer-logos, .footer-full , footer-links  {
    margin-left: 20px;
    margin-right: 20px;
}

.footer-full , footer-links {
    padding-top: 35px;
    padding-bottom: 25px;
}

.footer-full h1.footer-title, .footer-full h2, .footer-full h3  {
font-size:14px;
}

.footer-full .footer-p, .footer-full li   {
font-size:11px;
}
    }


    /* End */