<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* -------------------------------- 

Primary style

-------------------------------- */
html * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    /* you need to set this to assign to the main element a min height of 100% */
    height: 100%;
}

body {
    font-size: 20px;
    color: #fff;
    background-color: #1e1e1e;
}

a {
    color: #fff;
    text-decoration: none;
}

    a:hover {
        color: #fff;
        text-decoration: none;
    }

strong {
    font-weight: 700;
}
/* -------------------------------- 

Modules - reusable parts of our design

-------------------------------- */
.cd-img-replace {
    /* replace text with a background-image */
    display: inline-block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.overflow-hidden {
    overflow: hidden;
}

/* -------------------------------- 

Main components 

-------------------------------- */
.cd-main-content {
    /* set a min-height and a z-index to be sure that the main element completely covers the lateral menu */
    min-height: 100%;
    position: relative;
    background-color: #1e1e1e;
    z-index: 2;
    padding: 0;
    margin: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .cd-main-content.lateral-menu-is-open {
        /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -ms-transform: translateX(300px);
        -o-transform: translateX(300px);
        transform: translateX(300px);
    }

@media only screen and (min-width: 768px) {
    .cd-main-content {
        padding-top: 30px;
    }
}

header {
    position: absolute;
    top: 0;
    left: 0;
    height: 120px;
    width: 100%;
    z-index: 3;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.7);
    -moz-box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.7);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.95);
}

    header.lateral-menu-is-open {
        /* translate to show the lateral menu 
  -webkit-transform: translateX(300px);
  -moz-transform: translateX(300px);
  -ms-transform: translateX(300px);
  -o-transform: translateX(300px);
  transform: translateX(300px);*/
    }

    header.is-fixed {
        position: fixed;
    }

.cd-content {
    padding: 0;
    margin-top: 80px;
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    header {
        height: 120px;
    }

    .cd-content {
        padding: 0;
    }
}

header .livech {
    position: absolute;
    top: 3px;
    right: 0;
    color: #ededed;
    margin: 0 15px 0 0;
    line-height: 120px;
    font-size: 1.4em;
}

    header .livech &gt; a {
        color: #ededed;
    }

@media only screen and (min-width: 768px) {
    header .livech {
        position: absolute;
        top: 3px;
        right: 0;
        color: #ededed;
        margin: 0 30px 0 0;
        line-height: 120px;
        font-size: 1.8em;
    }
}

header .livechLeft {
    position: absolute;
    top: 3px;
    right: 0;
    color: #ededed;
    margin: 0 0 0 15px;
    line-height: 120px;
    font-size: 1.4em;
}

    header .livechLeft &gt; a {
        color: #ededed;
    }

@media only screen and (min-width: 768px) {
    header .livechLeft {
        position: absolute;
        top: 3px;
        right: 0;
        color: #ededed;
        margin: 0 0 0 30px;
        line-height: 120px;
        font-size: 1.8em;
    }
}

#cd-logo {
}

    #cd-logo img {
        display: block;
        width: auto;
        margin: 8px 20px 0;
        height: 120px;
    }

@media only screen and (min-width: 768px) {
    #cd-logo img {
        display: block;
        width: auto;
        margin: 12px 24px 0;
    }
}

#cd-top-nav {
    position: absolute;
    top: 0;
    right: 120px;
    height: 100%;
    display: none;
}

    #cd-top-nav ul {
        height: 100%;
        padding-top: 18px;
    }

    #cd-top-nav li {
        display: inline-block;
        margin-right: 1em;
    }

    #cd-top-nav a {
        display: inline-block;
        padding: .5em;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 600;
    }

        #cd-top-nav a.current {
            background-color: #393939;
        }

.no-touch #cd-top-nav a:hover {
    color: rgba(255, 255, 255, 0.7);
}

@media only screen and (min-width: 768px) {
    #cd-top-nav {
        display: block;
    }
}

#cd-menu-trigger {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background: #670808;
    background: -moz-linear-gradient(left, #a71c1c 0%, #670808 100%);
    background: -webkit-linear-gradient(left, #a71c1c 0%,#670808 100%);
    background: linear-gradient(to right, #a71c1c 0%,#670808 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a71c1c', endColorstr='#670808',GradientType=1 );
}

    #cd-menu-trigger .cd-menu-text {
        height: 100%;
        text-transform: uppercase;
        color: #fff;
        font-weight: 600;
        display: none;
    }

    #cd-menu-trigger .cd-menu-icon {
        /* this span is the central line in the menu menu */
        display: inline-block;
        position: absolute;
        left: 50%;
        top: 50%;
        bottom: auto;
        right: auto;
        -webkit-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -ms-transform: translateX(-50%) translateY(-50%);
        -o-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
        width: 18px;
        height: 2px;
        background-color: #fff;
        /* these are the upper and lower lines in the menu menu */
    }

        #cd-menu-trigger .cd-menu-icon::before, #cd-menu-trigger .cd-menu-icon:after {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            background-color: inherit;
            left: 0;
        }

        #cd-menu-trigger .cd-menu-icon::before {
            bottom: 5px;
        }

        #cd-menu-trigger .cd-menu-icon::after {
            top: 5px;
        }

    #cd-menu-trigger.is-clicked .cd-menu-icon {
        background-color: rgba(255, 255, 255, 0);
    }

        #cd-menu-trigger.is-clicked .cd-menu-icon::before, #cd-menu-trigger.is-clicked .cd-menu-icon::after {
            background-color: white;
        }

        #cd-menu-trigger.is-clicked .cd-menu-icon::before {
            bottom: 0;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            -o-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        #cd-menu-trigger.is-clicked .cd-menu-icon::after {
            top: 0;
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

@media only screen and (min-width: 768px) {
    #cd-menu-trigger {
        width: 110px;
        padding-left: 1.25em;
    }

        #cd-menu-trigger .cd-menu-text {
            display: inline-block;
            line-height: 70px;
        }

        #cd-menu-trigger .cd-menu-icon {
            left: auto;
            right: 1.25em;
            -webkit-transform: translateX(0);
            -moz-transform: translateX(0);
            -ms-transform: translateX(0);
            -o-transform: translateX(0);
            transform: translateX(0);
        }
}

#cd-lateral-nav {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    visibility: hidden;
    /* the secondary navigation is covered by the main element */
    z-index: 1;
    width: 300px;
    background-color: #262626;
    color: #888888;
    overflow-y: auto;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s .4s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s .4s;
    transition: transform .4s 0s, visibility 0s .4s;
    /* this creates the subtle slide in animation of the navigation */
    -webkit-transform: translateX(-80px);
    -moz-transform: translateX(-80px);
    -ms-transform: translateX(-80px);
    -o-transform: translateX(-80px);
    transform: translateX(-80px);
}

    #cd-lateral-nav .pad32 {
        padding: 0 32px 32px;
    }

    #cd-lateral-nav .navlogo {
        width: 60%;
        padding: 20px 0 20px 32px;
    }

    #cd-lateral-nav .cd-navigation {
        margin: 10px 0 16px;
    }

    #cd-lateral-nav .sub-menu {
        padding: 0 0 5px;
        display: none;
        background-color: #181818;
    }

        #cd-lateral-nav .sub-menu &gt; li a {
            line-height: 3em;
            border-bottom: 1px dotted #393939;
        }

        #cd-lateral-nav .sub-menu &gt; li:last-child a {
            line-height: 3em;
            border-bottom: 0px dotted #393939;
        }

    #cd-lateral-nav h2 {
        display: block;
        line-height: 2em;
        padding: 16px 16px 0 32px;
        margin: 16px 0 0;
        border-top: 1px dotted #393939;
        font-size: 1.2em;
    }

    #cd-lateral-nav a {
        display: block;
        line-height: 2em;
        padding: 0 16px 0 32px;
        color: #ededed;
        text-decoration: none;
    }

        #cd-lateral-nav a.current {
            background-color: #393939;
            color: #fff;
        }

.no-touch #cd-lateral-nav a:hover {
    color: #fff;
}

@media only screen and (min-width: 768px) {
    #cd-lateral-nav .cd-navigation {
        margin: 20px 0;
    }
}

#cd-lateral-nav.lateral-menu-is-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    -webkit-transition: -webkit-transform .4s 0s, visibility 0s 0s;
    -moz-transition: -moz-transform .4s 0s, visibility 0s 0s;
    transition: transform .4s 0s, visibility 0s 0s;
    /* smooth the scrolling on touch devices - webkit browsers */
    -webkit-overflow-scrolling: touch;
}

/* style menu items which have a submenu  */
#cd-lateral-nav .item-no-children &gt; a, #cd-lateral-nav .item-ext-link &gt; a {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    /* this is the right arrow to show that the item has a submenu  */
}

    #cd-lateral-nav .item-no-children &gt; a::after {
        content: '';
        display: block;
        height: 11px;
        width: 8px;
        position: absolute;
        top: 50%;
        bottom: auto;
        right: 1em;
    }

#cd-lateral-nav .item-has-children &gt; a {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    /* this is the right arrow to show that the item has a submenu  */
}

#cd-lateral-nav .item-ext-link &gt; a::after {
    font-family: FontAwesome;
    font-weight: 400;
    content: '\f08e';
    color: rgba(255, 255, 255, 0.5);
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 0;
    bottom: auto;
    right: 1.4em;
}

#cd-lateral-nav .item-has-children &gt; a::after {
    content: '';
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 1em;
    background: url("../img/cd-arrow.svg") no-repeat center center;
    background-size: 8px 11px;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

#cd-lateral-nav .item-has-children &gt; a.submenu-open::after {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg);
}

.gnavwrap {
    margin: 0 0 30px;
}

ul.gnav {
    width: 100%;
}

.gnavli {
    width: 20%;
    float: left;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85em;
    display: inline-block;
    background: #fff;
    background: -moz-linear-gradient(top, #fff 70%, #dedede 100%);
    background: -webkit-linear-gradient(top, #fff 70%,#dedede 100%);
    background: linear-gradient(to bottom, #fff 70%,#dedede 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#b8b8b8',GradientType=0 );
    border-right: 1px #fff solid;
    cursor: pointer !important;
}

.gnavli-active {
    background: -moz-linear-gradient(top, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 50%);
    background: -webkit-linear-gradient(top, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0) 50%);
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0) 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a65b5b5b', endColorstr='#00000000',GradientType=0 );
}

.gnavli img {
    width: 65%;
    display: block;
    margin: 0 auto;
}

@media only screen and (min-width: 768px) {
    .gnavli img {
        width: 35%;
    }
}


.filtr-item {
    text-align: center;
}

.filtr-container .col-xs-2 {
    padding-left: 5px;
    padding-right: 0px;
}

.provwrap {
    padding-bottom: 5px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
}

.provini {
    font-family: 'Teko', sans-serif;
    font-size: 1.75em;
    line-height: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    color: #fff;
    width: 100%;
    padding: 15px 0 9px;
    margin: 15px auto 0;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}

.provdesc {
    min-height: 25px;
    display: block;
    font-size: 0.6em;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 120%;
    margin: 5px 0 0;
}

.provcas {
    background: rgb(222,49,49);
    background: -moz-radial-gradient(center, ellipse cover, rgba(222,49,49,1) 0%, rgba(135,17,17,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(222,49,49,1) 0%,rgba(135,17,17,1) 100%);
    background: radial-gradient(ellipse at center, rgba(222,49,49,1) 0%,rgba(135,17,17,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#de3131', endColorstr='#871111',GradientType=1 );
}

.provslots {
    background: rgb(240,216,79);
    background: -moz-radial-gradient(center, ellipse cover, rgba(240,216,79,1) 0%, rgba(201,152,50,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(240,216,79,1) 0%,rgba(201,152,50,1) 100%);
    background: radial-gradient(ellipse at center, rgba(240,216,79,1) 0%,rgba(201,152,50,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0d84f', endColorstr='#c99832',GradientType=1 );
}

.provsports {
    background: rgb(120,207,72);
    background: -moz-radial-gradient(center, ellipse cover, rgba(120,207,72,1) 0%, rgba(40,114,17,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(120,207,72,1) 0%,rgba(40,114,17,1) 100%);
    background: radial-gradient(ellipse at center, rgba(120,207,72,1) 0%,rgba(40,114,17,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#78cf48', endColorstr='#287211',GradientType=1 );
}

.provothers {
    background: rgb(41,148,223);
    background: -moz-radial-gradient(center, ellipse cover, rgba(41,148,223,1) 0%, rgba(18,81,165,1) 100%);
    background: -webkit-radial-gradient(center, ellipse cover, rgba(41,148,223,1) 0%,rgba(18,81,165,1) 100%);
    background: radial-gradient(ellipse at center, rgba(41,148,223,1) 0%,rgba(18,81,165,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2994df', endColorstr='#1251a5',GradientType=1 );
}

.provcassd {
    background: #500404;
}

.provslosd {
    background: #85671c;
}

.provsposd {
    background: #154604;
}

.provothsd {
    background: #094079;
}

.slotspg {
    background: url("/Images/slotsbg.jpg") center top no-repeat;
}

.downlpg {
    background: url("/Images/mbdlbg.jpg") center top no-repeat;
}

.mainbanner {
    width: 100%;
}

.popslots {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .popslots {
        width: 90%;
    }
}

.swiper-slide img {
    max-width: 100%;
}

.swiper-pagination-bullet-active {
    background: #a71c1c;
}

.swiper-container-horizontal &gt; .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 30px;
}

@media only screen and (min-width: 768px) {
    .swiper-container-horizontal &gt; .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: 40px;
    }
}

.promoliwrap {
    margin-bottom: 20px;
}

.promoli {
    width: 100%;
    min-height: 60px;
    background: #ccc;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    margin: 0 0 15px;
}

    .promoli img {
        max-width: 100%;
        width: 100%;
        -webkit-border-top-left-radius: 20px;
        -moz-border-radius-topleft: 20px;
        border-top-left-radius: 20px;
        -webkit-border-top-right-radius: 20px;
        -moz-border-radius-topright: 20px;
        border-top-right-radius: 20px;
    }


.btmhelper {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 1080px;
    background-color: #101010;
    z-index: 3;
    padding: 0;
    /* Force Hardware Acceleration in WebKit */
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

    .btmhelper.lateral-menu-is-open {
        /* translate to show the lateral menu - all content needs to be put in the .cd-main-content to translate*/
        -webkit-transform: translateX(300px);
        -moz-transform: translateX(300px);
        -ms-transform: translateX(300px);
        -o-transform: translateX(300px);
        transform: translateX(300px);
    }

    .btmhelper .btmnav {
        width: 14.285%;
        display: block;
        float: left;
        padding: 5px 0;
        background: #101010;
        position: relative;
        margin: 0;
        text-align: center;
        color: #fff;
        font-size: 0.50em;
        text-transform: uppercase;
        font-weight: 400;
        height: 70px;
    }

@media only screen and (min-width: 768px) {
    .btmhelper .btmnav {
        padding: 10px 0 0;
    }
}

.btmhelper img.bnavbtn {
    width: 38%;
    display: block;
    margin: 5px auto;
}

@media only screen and (min-width: 768px) {
    .btmhelper img.bnavbtn {
        width: 38%;
        display: block;
        margin: 0 auto 5px;
    }
}

.gamespgtitle {
    margin: 100px 0;
}

    .gamespgtitle h2 {
        margin: 0;
        padding: 0;
    }

    .gamespgtitle h4 {
        margin: 0;
        font-size: 0.85em;
    }

@media only screen and (min-width: 768px) {
    .gamespgtitle {
        margin: 100px 0;
    }
}

.prevli a,
.nextli a {
    font-size: 2em;
    background: rgba(255,255,255,0.05);
    margin: 30px 0 0;
    padding: 5px 10px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    position: relative;
    display: inline-block;
}

.prevli a {
    float: left;
}

.nextli a {
    float: right;
}

.provpgtitle {
    margin: 30px 0;
}

    .provpgtitle h2 {
        margin: 0;
        padding: 0;
    }

    .provpgtitle h4 {
        margin: 0;
        font-size: 0.85em;
    }

ul.gamescatli::after,
ul.listgames::after {
    content: "";
    clear: both;
    display: table;
}

ul.gamescatli {
    list-style-type: none;
    margin: 0 0 30px;
    padding: 0;
    text-align: center;
}

    ul.gamescatli li {
        display: inline-block;
        font-size: 1.2em;
        margin: 0 15px;
    }

        ul.gamescatli li a {
            color: #fff;
        }

        ul.gamescatli li.active {
            padding: 0 0 2px;
            border-bottom: 2px solid #fff;
        }

ul.listgames {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 0.75em;
}

    ul.listgames li {
        float: left;
        width: 25%;
        text-align: center;
        min-height: 130px;
    }

        ul.listgames li img {
            max-width: 80%;
            display: block;
            margin: 0 auto 5px;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
        }

@media only screen and (min-width: 768px) {
    ul.listgames li {
        width: 16.66%;
        margin: 0 0 10px;
    }
}

@media only screen and (min-width: 1024px) {
    ul.listgames li {
        width: 12.5%;
        margin: 0 0 15px;
    }
}

@media only screen and (min-width: 1280px) {
    ul.listgames li {
        width: 10%;
        margin: 0 0 15px;
    }
}

.slotsgameli {
    width: 100px;
    margin: 0 5px 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
    text-align: center;
    display: inline-block;
}

    .slotsgameli img {
        width: 100%;
    }

    .slotsgameli h5 {
        display: none;
    }

    .slotsgameli p {
        font-size: 0.85em;
        margin-top: 0.5em;
        color: #ccc;
    }

@media only screen and (min-width: 768px) {
    .slotsgameli {
        width: 120px;
    }

        .slotsgameli h5 {
            display: block;
            min-height: 30px;
        }

        .slotsgameli p {
            font-size: 1em;
            margin-top: 0;
        }
}

/* -------------------------------- 

Spacing

-------------------------------- */

.tp10 {
    margin-top: 10px;
}

.tp20 {
    margin-top: 20px;
}

.tp40 {
    margin-top: 40px;
}

.tp50 {
    margin-top: 50px;
}

.tp60 {
    margin-top: 60px;
}

.tp80 {
    margin-top: 80px;
}

.tp100 {
    margin-top: 100px;
}

.btm10 {
    margin-bottom: 10px;
}

.btm20 {
    margin-bottom: 20px;
}

.btm40 {
    margin-bottom: 40px;
}

.btm50 {
    margin-bottom: 50px;
}

.btm60 {
    margin-bottom: 60px;
}

.btm80 {
    margin-bottom: 80px;
}

.btm100 {
    margin-bottom: 100px;
}

.tb10 {
    margin: 10px 0;
}

.tb20 {
    margin: 20px 0;
}

.tb40 {
    margin: 40px 0;
}

.tb50 {
    margin: 50px 0;
}

.tb60 {
    margin: 60px 0;
}

.tb80 {
    margin: 80px 0;
}

.tb100 {
    margin: 100px 0;
}

.pd50 {
    padding-bottom: 50px;
}

.lh150 {
    line-height: 150%;
}

.lh200 {
    line-height: 200%;
}


/* -------------------------------- 

Bootstrap

-------------------------------- */

.modal-title {
    font-weight: 600;
    text-transform: uppercase;
}

.modal-content {
    -webkit-border-radius: 0px !important;
    -moz-border-radius: 0px !important;
    border-radius: 0px !important;
}

.modal-box-foot {
    font-size: 0.85em;
    color: #999;
    text-align: center;
    background: #ededed;
    line-height: 130%;
    border-top: 1px solid #dcdcdc;
    width: 100%;
    display: block;
    padding: 20px 0;
}

.readterms {
    display: block;
    line-height: 130% !important;
    margin: 0 0 20px;
}

label {
    margin-bottom: 7px !important;
}

    label.depAmount {
        margin-right: 7px;
    }

.cas-content {
    padding: 50px 0 30px;
    background: #000;
}

.mem-content {
    padding: 70px 0 0;
}

    .mem-content .secpromo {
        background: #f0f0f0;
        border: 1px #ccc dashed;
        padding: 10px 30px 30px 5px;
        margin: 20px 0 0;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px;
    }

.mempagetitle {
    margin: 12px 0 0 0;
    padding: 18px 0 0 0;
    border-top: 1px dotted #eee;
    display: block;
    width: 100%;
}

div.histblwrap {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
}

div.histbl {
    min-width: 500px;
}

/* -------------------------------- 

Pickadate

-------------------------------- */

.picker__select--month, .picker__select--year {
    padding: 0;
    margin-top: 0;
}

.picker__nav--prev, .picker__nav--next {
    top: 0.2em;
}

.picker__select--year {
    width: 30%;
}

#livechat-compact-container {
    display: none !important;
}

/* liScroll styles */

.annoucem {
    position: relative;
    bottom: 25px;
    z-index: 9;
    margin-bottom: -25px;
}

.tickercontainer { /* the outer div with the black border */
    width: 100%;
    height: 25px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: rgba(0,0,0,0.6);
    line-height: 25px;
}

@media only screen and (min-width: 768px) {
    .depositMethod, .non-reward-modal {
        height: auto !important;
    }

    .reward-modal, .non-reward-modal {
        height: 120px !important;
    }
        
    #productCarousel {
        height: 100px !important;
    }
}

@media only screen and (max-width: 480px) {
    ul.walletmn li {
        width: 33.33% !important;
    }

    .reward-modal, .non-reward-modal {
        width: 27vw;
        height: 32.4vw;
    }

    .depositMethod {
        height: 120px;
    }
}

@media only screen and (min-width: 768px) {
    .annoucem {
        position: relative;
        bottom: 35px;
        margin-bottom: -35px;
    }

    .tickercontainer { /* the outer div with the black border */
        height: 35px;
        line-height: 35px;
    }
}

.tickercontainer .mask { /* that serves as a mask. so you get a sort of padding both left and right */
    position: relative;
    top: 0;
    width: 100%;
    overflow: hidden;
}

ul.liscroll { /* that's your list */
    position: relative;
    left: 30px;
    font-size: 0.75em;
    list-style-type: none;
    margin: 0;
    padding: 0;
    color: #fff;
}

@media only screen and (min-width: 768px) {
    ul.liscroll { /* that's your list */
        font-size: 1em;
    }
}

ul.liscroll li {
    float: left; /* important: display inline gives incorrect results when you check for elem's width */
    margin: 0 30px 0 0;
    padding: 0;
}

ul.liscroll a {
    white-space: nowrap;
    padding: 0;
    color: #fff;
    font-size: 0.75em;
    margin: 0 30px 0 0;
}

ul.liscroll span {
    margin: 0 10px 0 0;
}

.selgames {
    background: #101010;
    padding: 15px;
    margin: 0 0 3px;
}

    .selgames h3 {
        font-size: 1em;
        margin: 0 0 15px;
        font-weight: 900;
    }

.slotslb {
    background: #101010;
    padding: 15px;
    margin: 0 0 3px;
    text-align: center;
    margin-bottom: 0 !important;
    border: 2px solid #353b48;
}

    .slotslb h3 {
        font-size: 1em;
        margin: 0;
        font-weight: 900;
    }

    .slotslb span.provtitle {
        font-size: 0.85em;
        display: block;
        margin: 0 0 15px;
    }


.popslots, .lvgames, .slotsprov {
    font-size: 0.75em;
    text-align: center;
    margin: 0 auto;
}

    .popslots img, .lvgames img, .slotsprov img {
        margin: 0 0 5px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .popslots .swiper-slide a, .popslots .swiper-slide a:visited,
    .lvgames .swiper-slide a, .lvgames .swiper-slide a:visited,
    .slotsprov .swiper-slide a, .slotsprov .swiper-slide a:visited {
        color: #fff;
        text-decoration: none;
    }

.playall a {
    color: #fff;
    padding: 10px 0;
    margin: 15px 0 0;
    font-size: 1.2em;
    background: #1e1e1e;
    display: block;
    width: 100%;
}

.logsec {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    content: "";
    display: table;
    clear: both;
    width: 100%;
}

.logdetl,
.logdetr {
    font-size: 1.2em;
    width: 50%;
    float: left;
}

.logdetl {
    text-align: right;
    padding: 0 10px 0 0;
}

.logdetr {
    text-align: left;
    padding: 0 0 0 10px;
}

    .logdetr a {
        font-weight: 900;
    }

.provlogo {
    margin: 5px auto 15px;
    display: block;
    text-align: center;
}

    .provlogo img {
        max-width: 150px;
    }

.mobdownload a {
    color: #fff;
    padding: 10px 2.5%;
    margin: 15px 0 0;
    font-size: 1.2em;
    background: #1e1e1e;
    display: inline-block;
    width: 49.5%;
}

.loginf {
    font-size: 1.2em;
    text-align: center;
}

.butregwrap {
    padding-bottom: 7px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    position: absolute;
    display: block;
    width: 100%;
    bottom: 10px;
    background: #530006;
}

.butreg {
    font-size: 1.8em;
    line-height: 100%;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    color: #fff;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
}

.maincontent {
    margin: 0 0 50px;
}

ul.gamecat {
    list-style-type: none;
    width: 100%;
    content: "";
    clear: both;
    display: table;
    margin: 0 0 3px;
    padding: 0;
}

    ul.gamecat li {
        float: left;
        text-align: center;
        width: 20%;
        font-size: 0.75em;
    }

        ul.gamecat li img {
            width: 45%;
            display: block;
            margin: 0 auto 10px;
        }

        ul.gamecat li a {
            display: block;
            padding: 20px 0;
            color: #fff;
            background: #101010;
        }

ul.regbox {
    list-style-type: none;
    width: 100%;
    content: "";
    clear: both;
    display: table;
    background: #101010;
    padding: 15px 0;
    margin: 3px 0;
}

    ul.regbox li {
        float: left;
        text-align: center;
        width: 50%;
    }

        ul.regbox li a {
            display: block;
            padding: 15px 0;
            margin: 0 auto;
            width: 90%;
            color: #fff;
            font-weight: 900;
            -webkit-border-radius: 7px;
            -moz-border-radius: 7px;
            border-radius: 7px;
            text-transform: uppercase;
            background: #FBC403;
            background: -moz-linear-gradient(top, #FBC403 0%, #FBC403 45%, #DAA520 55%, #DAA520 100%);
            background: -webkit-linear-gradient(top, #FBC403 0%,#FBC403 45%,#DAA520 55%,#DAA520 100%);
            background: linear-gradient(to bottom, #FBC403 0%,#FBC403 45%,#DAA520 55%,#DAA520 100%);
            filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBC403', endColorstr='#DAA520',GradientType=0 );
        }

.luckgico {
    display: block;
    max-width: 100%;
    margin: 0 auto;
}

ul.contactico {
    list-style-type: none;
    clear: both;
    display: table;
    width: 100%;
}

    ul.contactico li {
        float: left;
        width: 20%;
        text-align: center;
        font-weight: 300;
    }

        ul.contactico li a i {
            display: block;
            font-size: 1.8em;
            margin: 0 0 5px;
        }

        ul.contactico li a {
            color: #fff;
        }

span.cttdesc {
    font-size: 0.75em;
}

.lcmobile {
    width: 100%;
    min-height: 350px;
    text-align: center;
    display: block;
}

@media only screen and (min-width: 768px) {
    .lcmobile {
        width: 50%;
        float: left;
    }
}

.lcsapphire {
    background: url("../img/cas/sapphire.jpg") no-repeat;
    background-position: center -70px;
}

.lcamber {
    background: url("../img/cas/amber.jpg") no-repeat;
    background-position: center -70px;
}

.lcopal {
    background: url("../img/cas/opal.jpg") no-repeat;
    background-position: center -110px;
}

.lcemerald {
    background: url("../img/cas/emerald.jpg") no-repeat;
    background-position: center -70px;
}

.lcpearl {
    background: url("../img/cas/pearl.jpg") no-repeat;
    background-position: center -80px;
}

.lcpdream {
    background: url("../img/cas/jade.jpg") no-repeat;
    background-position: center -80px;
}

.lcruby {
    background: url("../img/cas/ruby.jpg") no-repeat;
    background-position: center -70px;
}

.isports {
    background: url("../img/sports/isports.jpg") top center no-repeat;
}

.esports {
    background: url("../img/sports/esports.jpg") top center no-repeat;
}

.lcmobile ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    .lcmobile ul li {
        display: inline-block;
        margin: 0 5px 0 0;
        font-size: 1.4em;
        line-height: 30px;
    }

        .lcmobile ul li a {
            background: rgba(255,255,255,0.1);
            padding: 8px 15px 5px;
            -webkit-border-radius: 7px;
            -moz-border-radius: 7px;
            border-radius: 7px;
            color: #fff;
        }

            .lcmobile ul li a:hover {
                color: #000;
                background: rgba(255,255,255,0.8);
                padding: 8px 15px 5px;
                -webkit-border-radius: 7px;
                -moz-border-radius: 7px;
                border-radius: 7px;
            }

            .lcmobile ul li a.livecasbtn {
                background: #FBC403;
                font-size: 1em;
                padding: 8px 25px;
                font-weight: 500;
                background: -moz-linear-gradient(top, #FBC403 0%, #FBC403 45%, #DAA520 55%, #DAA520 100%);
                background: -webkit-linear-gradient(top, #FBC403 0%,#FBC403 45%,#DAA520 55%,#DAA520 100%);
                background: linear-gradient(to bottom, #FBC403 0%,#FBC403 45%,#DAA520 55%,#DAA520 100%);
                filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBC403', endColorstr='#DAA520',GradientType=0 );
                border: 0;
            }

                .lcmobile ul li a.livecasbtn:hover {
                    color: #fff;
                    -webkit-animation: neon3 1.5s ease-in-out infinite alternate;
                    -moz-animation: neon3 1.5s ease-in-out infinite alternate;
                    animation: neon3 1.5s ease-in-out infinite alternate;
                }

.lcmomenu {
    position: relative;
    top: 200px;
}

    .lcmomenu h3 {
        color: #fff;
        line-height: 100%;
        margin: 0;
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 1);
    }

    .lcmomenu p {
        color: #fff;
        font-size: 0.85em;
        margin: 0 0 20px;
        text-shadow: 0px 0px 5px rgba(0, 0, 0, 1);
    }

.lcmobilewrap {
    width: 100%;
    background: #000;
    content: "";
    clear: both;
    display: table;
}

.livecasbtn i {
    font-size: 0.85em;
}



.btmspace {
    font-size: 0.75em;
    background: #101010;
    width: 100%;
    min-height: 30px;
    text-align: center;
    padding: 15px;
    margin: 3px 0 0;
}

    .btmspace h3 {
        font-size: 1.6em;
        font-weight: 900;
        margin: 0 0 5px;
        padding: 0;
    }

.sgjpcount {
    position: relative;
    background: #961116;
    border: 5px solid #dc1920;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto 25px;
    padding: 0 0 15px;
    width: 95%;
    max-width: 470px;
    text-align: center;
}

    .sgjpcount .sgjpcrc {
        font-size: 1.8em;
        position: relative;
        top: 8px;
        margin: 0 5px 0 0;
    }

    .sgjpcount .sgjppj {
        font-size: 1em;
        position: relative;
        top: 12px;
        margin: 0 10px 0 0;
        display: block;
    }

#sgjpcount.odometer {
    font-size: 1.8em;
    font-weight: 900;
    z-index: 3;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    position: relative;
    top: 8px;
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    .sgjpcount {
        position: relative;
        background: #961116;
        border: 5px solid #dc1920;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        margin: 0 auto 25px;
        padding: 0 0 15px;
        width: 95%;
        max-width: 470px;
    }

        .sgjpcount .sgjpcrc {
            font-size: 2.1em;
            position: relative;
            top: 8px;
            margin: 0 5px 0 0;
        }

        .sgjpcount .sgjppj {
            font-size: 0.70em;
            position: relative;
            text-align: right;
            top: 8px;
            width: 90px;
            margin: 0 10px 0 0;
            display: inline-block;
        }

    #sgjpcount.odometer {
        font-size: 2.1em;
        font-weight: 900;
        z-index: 3;
        letter-spacing: 0;
        color: #fff;
        margin: 0;
        position: relative;
        top: 8px;
        display: inline-block;
    }
}

.walletpg {
    margin: 140px 0 0;
    padding: 0;
}

.mainwallet {
    float: left;
    width: 50%;
    margin: 0 0 2px;
    padding: 0 15px 15px;
    background: rgba(30,30,30,1);
    background: -moz-linear-gradient(top, rgba(30,30,30,1) 0%, rgba(22,22,22,1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(30,30,30,1)), color-stop(100%, rgba(22,22,22,1)));
    background: -webkit-linear-gradient(top, rgba(30,30,30,1) 0%, rgba(22,22,22,1) 100%);
    background: -o-linear-gradient(top, rgba(30,30,30,1) 0%, rgba(22,22,22,1) 100%);
    background: -ms-linear-gradient(top, rgba(30,30,30,1) 0%, rgba(22,22,22,1) 100%);
    background: linear-gradient(to bottom, rgba(30,30,30,1) 0%, rgba(22,22,22,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1e1e1e', endColorstr='#161616', GradientType=0 );
}

    .mainwallet .mainamt {
        display: block;
        font-size: 1.5em;
    }

    .mainwallet .maindesc {
        display: block;
        font-weight: 900;
        font-size: 1em;
        text-transform: uppercase;
    }

.provwallet {
    content: "";
    display: table;
    clear: both;
    margin: 0;
    padding: 0;
}

    .provwallet ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        .provwallet ul li {
            float: left;
            font-size: 1.25em;
            width: 33.33%;
            border-right: 3px solid #1e1e1e;
            border-bottom: 3px solid #1e1e1e;
            padding: 10px 0 10px 15px;
        }

    .provwallet .provamt {
    }

    .provwallet .provsuite {
        display: block;
        font-size: 1em;
        font-weight: 700;
    }

    .provwallet .provname {
        display: block;
        font-size: 1em;
        font-weight: 300;
        color: rgba(255,255,255,0.7);
        line-height: 100%;
        min-height: 20px;
    }

ul.walletmn {
    list-style-type: none;
    width: 100%;
    content: "";
    clear: both;
    display: table;
    margin: 0 0 3px;
    padding: 0;
}

    ul.walletmn li {
        float: left;
        text-align: center;
        width: 24.95%;
        font-size: 0.75em;
        border-right: 3px solid transparent;
    }

        ul.walletmn li img {
            width: 45%;
            max-width: 55px;
            display: block;
            margin: 0 auto 10px;
        }

        ul.walletmn li a {
            display: block;
            padding: 20px 0;
            color: #fff;
            background: #101010;
        }

        ul.walletmn li:last-child {
            border-right: 0 !important;
            margin: 0 0 -3px;
        }

ul.gamemn {
    list-style-type: none;
    width: 100%;
    content: "";
    clear: both;
    display: table;
    margin: 0 0 3px;
    padding: 0;
}

    ul.gamemn li {
        float: left;
        text-align: center;
        width: 25%;
        font-size: 0.75em;
    }

        ul.gamemn li img {
            width: 45%;
            max-width: 45px;
            display: block;
            margin: 0 auto 10px;
        }

        ul.gamemn li a {
            display: block;
            padding: 10px 0;
            border-right: 3px solid #1e1e1e;
            border-radius: 15px;
            color: #fff;
            text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
        }

        ul.gamemn li:last-child a {
            border: 0;
        }

ul.profilemn {
    list-style-type: none;
    width: 100%;
    content: "";
    clear: both;
    display: table;
    margin: 0 0 3px;
    padding: 0;
}

    ul.profilemn li {
        float: left;
        text-align: center;
        width: 50%;
        font-size: 0.75em;
    }

        ul.profilemn li img {
            width: 45%;
            max-width: 45px;
            display: block;
            margin: 0 auto 10px;
        }

        ul.profilemn li a {
            display: block;
            padding: 20px 0;
            border-right: 3px solid #1e1e1e;
            color: #fff;
            background: #101010;
        }

        ul.profilemn li:last-child a {
            border: 0;
        }

a.regbtn {
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    text-align: center;
    font-weight: 900;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-transform: uppercase;
    background: #FBC403;
    background: -moz-linear-gradient(top, #FBC403 0%, #FBC403 45%, #0A0A0A 55%, #0A0A0A 100%);
    background: -webkit-linear-gradient(top, #FBC403 0%,#FBC403 45%,#0A0A0A 55%,#0A0A0A 100%);
    background: linear-gradient(to bottom, #FBC403 0%,#FBC403 45%,#0A0A0A 55%,#0A0A0A 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FBC403', endColorstr='#0A0A0A',GradientType=0 );
}

/* history */
#pagebar {
    color: #000;
    font-size: 15px;
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

.pageborder {
    background-color: #fff !important;
    border: 1px solid #dee2e6;
    padding: 0.5rem 0.75rem;
}

.slotsgameli img {
    height: 70px;
}

.bankdetails {
    border: 1px solid rgba(0,0,0,0.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-left: -15px;
    margin-bottom: -90px;
    width: 345px;
}
/* lobby */
#lobby_wrap {
    display: flex;
    flex-wrap: wrap;
    margin-top: 140px;
    margin-left: 30px;
}

    #lobby_wrap li {
        flex: 0 1 45%;
    }

/* mobile login */
.midCinner {
    padding: 0 20px;
}

.login_title {
    padding: 60px 0 0;
}

    .login_title i {
        padding-right: 20px;
    }

#loginsubmit {
    margin: 1.8rem 0;
    font-size: 16px;
}

.btn-login, .btn-login:active, .btn-register, .btn-register:active, .btn_submit, .btn_submit:active {
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    font-weight: 900;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-transform: uppercase;
}

.btn-red {
    display: block;
    padding: 15px 0;
    margin: 0 auto;
    width: 100%;
    color: #fff;
    font-weight: 900;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-transform: uppercase;
}

.btn_background {
    color: #fff;
    font-weight: 900;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    text-transform: uppercase;
}

.btn-login:hover, .btn-register:hover, .btn_submit:hover {
    color: #fff;
}

.btn_deposit {
    margin-top: 1rem;
}

.blk {
    margin-bottom: 1rem;
}

.register_link {
    float: left;
    width: 50%;
    text-align: center;
    font-size: 14px;
}

.forgot_link {
    float: right;
    width: 50%;
    text-align: center;
    font-size: 14px;
}

#copyInput, #referInput {
    width: 10px;
    height: 10px;
    opacity: 0;
    position: absolute;
    left: -9999px;
}

.deposit_padding {
    padding: 0 30px;
}

#firstP {
    line-height: 170%;
}

#copyBtn, #copylinkBtn {
    color: #000;
}

.clr, .clearfix {
    clear: both;
}

.text-black {
    color: #000;
}
/* download */
.before_detail {
    font-size: 1.4rem;
}

    .before_detail a {
        font-weight: 600;
    }

/*transfer*/
.text-success {
    color: #3c763d;
}


.butlogin {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    padding: 10px;
}

.butSelect {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 10px;
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
}

.caslwrap {
    width: 100%;
    max-width: 100vw;
    min-width: 90vw;
    min-height: 300px;
    position: relative;
    padding: 50px 10px 50px 10px;
    background: #262626 url(../../Images/livebg.jpg) top center no-repeat;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.rankingBox {
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 10px;
    color: #fff;
    margin: 10px;
    padding-top: 10px;
}

.gameBox {
    font-weight: 500;
    text-align: center;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.casldesc {
    color: #fff;
}

.caslgirl {
    position: absolute;
    right: 50px;
    bottom: 0;
}

ul.caslgame {
    list-style-type: none;
    width: 30%;
    margin: 30px 0;
    padding: 0;
}

    ul.caslgame li {
        float: left;
        margin: 0 20px 0 0;
        min-width: 100px;
        font-weight: 900;
    }

ul.provlc {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

    ul.provlc li {
        display: inline-block;
    }

        ul.provlc li a {
            display: block;
            color: #fff;
            border: 2px solid rgba(255,255,255,0.1);
            margin: 0 3px;
            padding: 5px 10px;
            text-align: center;
            font-weight: 900;
            -webkit-border-radius: 7px;
            -moz-border-radius: 7px;
            border-radius: 7px;
        }

            ul.provlc li a:hover {
                background: rgba(255,255,255,0.1);
                border: 2px solid rgba(255,255,255,0.5);
            }

table.dataTable tbody tr td {
    background-color: black !important;
}

.dataTables_info {
    color: white !important;
}

.close {
    font-size: 50px !important;
}

.imageOverlay {
    position: relative;
    display: inline-block; /* Make the width of box same as image */
}

    .imageOverlay .text {
        position: absolute;
        z-index: 999;
        margin: 0 auto;
        left: 0;
        right: 0;
        text-align: center;
        padding-top: 35%;
        top: 0%;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        width: 100%;
        height: 100%;
        font-size: 16px;
        border-radius: 100px;
    }

    .imageOverlay .noBorderRadius {
        border-radius: 0px !important;
    }

.productOverlay_Hot {
    position: relative;
    display: inline-block; /* Make the width of box same as image */
}

    .productOverlay_Hot .text {
        position: absolute;
        z-index: 999;
        margin: 0 auto;
        left: 60%;
        right: 0;
        text-align: center;
        padding-top: 9px;
        top: 0%;
        background: #e74c3c;
        text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
        color: #fff;
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 100px;
    }

    .productOverlay_Hot .noBorderRadius {
        border-radius: 0px !important;
    }

.bannerOverlay {
    position: relative;
    display: inline-block; /* Make the width of box same as image */
}

    .bannerOverlay .text {
        position: absolute;
        z-index: 999;
        margin: 0 auto;
        left: 60%;
        right: 0;
        text-align: center;
        padding-top: 9px;
        top: 0%;
        background: #e74c3c;
        text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
        color: #fff;
        width: auto;
        height: 30px;
        font-size: 14px;
        border-radius: 10px;
    }

.productOverlay_New {
    position: relative;
    display: inline-block; /* Make the width of box same as image */
}

    .productOverlay_New .text {
        position: absolute;
        z-index: 999;
        margin: 0 auto;
        left: 60%;
        right: 0;
        text-align: center;
        padding-top: 9px;
        top: 0%;
        background: #f39c12;
        text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
        color: #fff;
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 100px;
    }

    .productOverlay_New .noBorderRadius {
        border-radius: 0px !important;
    }

.sticky-bottom-left {
    position: -webkit-sticky;
    position: sticky;
    bottom: 75px;
    padding-left: 10px;
}

.sticky-bottom-right {
    text-align: right;
    position: -webkit-sticky;
    position: sticky;
    bottom: 135px;
    padding-right: 10px;
}

.notificationOverlay {
    position: relative;
    display: inline-block; /* Make the width of box same as image */
    background: #C33764; /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1D2671, #C33764); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1D2671, #C33764); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

    .notificationOverlay .text {
        position: absolute;
        z-index: 999;
        margin: 0 auto;
        left: 60%;
        right: 0;
        text-align: center;
        padding-top: 7px;
        top: 0%;
        background: #ED213A; /* fallback for old browsers */
        background: -webkit-linear-gradient(to right, #93291E, #ED213A); /* Chrome 10-25, Safari 5.1-6 */
        background: linear-gradient(to right, #93291E, #ED213A); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
        text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.8);
        color: #fff;
        width: 30px;
        height: 30px;
        font-size: 14px;
        border-radius: 100px;
        border: 2px solid #95a5a6;
    }

    .notificationOverlay .noBorderRadius {
        border-radius: 0px !important;
    }</pre></body></html>