html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'roboto', Arial;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: auto;
    /*background-color: #272f36;*/
    background-color: #28282a;
    color: white;
}

@font-face {
    font-family: 'roboto';
    src: url('/Content/fonts/RobotoRegular.eot');
    src: url('/Content/fonts/RobotoRegular.eot') format('embedded-opentype'), url('/Content/fonts/RobotoRegular.woff2') format('woff2'), url('/Content/fonts/RobotoRegular.woff') format('woff'), url('/Content/fonts/RobotoRegular.ttf') format('truetype'), url('/Content/fonts/RobotoRegular.svg#RobotoRegular') format('svg');
}

@font-face {
    font-family: 'robotoBold';
    src: url('/Content/fonts/RobotoBold.eot');
    src: url('/Content/fonts/RobotoBold.eot') format('embedded-opentype'), url('/Content/fonts/RobotoBold.woff2') format('woff2'), url('/Content/fonts/RobotoBold.woff') format('woff'), url('/Content/fonts/RobotoBold.ttf') format('truetype'), url('/Content/fonts/RobotoBold.svg#RobotoBold') format('svg');
}

@font-face {
    font-family: 'bebas';
    src: url('/Content/fonts/BebasNeueRegular.eot');
    src: url('/Content/fonts/BebasNeueRegular.eot') format('embedded-opentype'), url('/Content/fonts/BebasNeueRegular.woff2') format('woff2'), url('/Content/fonts/BebasNeueRegular.woff') format('woff'), url('/Content/fonts/BebasNeueRegular.ttf') format('truetype'), url('/Content/fonts/BebasNeueRegular.svg#BebasNeueRegular') format('svg');
}

@font-face {
    font-family: 'ocra';
    src: url('/Content/fonts/OCRAStdRegular.eot');
    src: url('/Content/fonts/OCRAStdRegular.eot') format('embedded-opentype'), url('/Content/fonts/OCRAStdRegular.woff2') format('woff2'), url('/Content/fonts/OCRAStdRegular.woff') format('woff'), url('/Content/fonts/OCRAStdRegular.ttf') format('truetype'), url('/Content/fonts/OCRAStdRegular.svg#OCRAStdRegular') format('svg');
}

@font-face {
    font-family: 'biko-black';
    src: url('/Content/fonts/Biko_Black.otf');
}

@font-face {
    font-family: 'biko-regular';
    src: url('/Content/fonts/Biko_Regular.otf');
}

label {
    font-weight: normal;
    color: black;
}

input, select, textarea, button {
    outline: none !important;
}

a, a:focus {
    color: var(--grey);
    text-decoration: none !important;
    outline: none !important;
    cursor: pointer;
}

    a:hover {
        /*color: var(--yellow);*/
        color: #64b000;
    }

.relative {
    position: relative;
}

.container-size {
    width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.group-xs {
    margin-bottom: 5px;
}

.group-xsm {
    margin-bottom: 10px;
}

.group-sm {
    margin-bottom: 15px;
}

.group-md {
    margin-bottom: 20px;
}

.group-lg {
    margin-bottom: 30px;
}

    .form-group::after, .group-xs::after, .group-xsm::after, .group-sm::after, .group-md::after, .group-lg::after, .container-size::after {
        display: block;
        clear: both;
        content: "";
    }

.form-control {
    outline: none !important;
    box-shadow: none;
    background-color: #2d363e;
    border: 0;
    border-radius: 0;
    padding-left: 8px;
    color: #cccccc;
    transition: 250ms;
    -moz-transition: 250ms;
    -ms-transition: 250ms;
    -webkit-transition: 250ms;
}

    .form-control:focus {
        box-shadow: none;
        background-color:#333c45;
    }

div.form-control {
    min-height: 34px;
    height: auto;
    padding: 7px 8px;
}

select.form-control {
    padding-left: 5px;
    padding-right: 22px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    -ms-appearance: none;
    appearance: none;
    background-image: url(/Content/img/sel.png);
    background-position: right;
    background-repeat: no-repeat;
    text-align: left;
}

.recovery_pass__phone-pre {
    position: absolute;
    padding-left: 8px;
    height: 34px;
    font-size: 15px;
    display: flex;
    gap: 6px;
    align-items: center;
    line-height: normal;
    top: 0;
}

    .recovery_pass__phone-pre > div {
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background: url(/Content/img/tr.svg) no-repeat center;
        background-size: cover;
    }

    .recovery_pass__phone-pre > span {
        border-right: solid 1px #cccccc;
        padding-right: 7px;
    }

select option {
    padding: 6px;
}

textarea.form-control {
    height: 130px;
    max-height: 130px;
    resize: none;
}

.check__page {
    margin-bottom: 20px;
    text-transform: none;
    color: #fff;
}

    .check__page p {
        margin: 10px 0 0;
    }

.page__address {
    background: #e4e9ed;
    padding: 7px 11px;
    display: inline-block;
    color: #1d242a;
    font-size: 15px;
}

    .page__address span {
        color: #25a858;
    }


.lock__icon {
    color: #25a858;
    padding-right: 6px;
}

.form-control[disabled], .form-control[readonly] {
    background-color: #2e373f;
    border: 0;
    box-shadow: none;
    cursor: not-allowed;
    color: #e4e9ed;
}

.form-control[disabled] {
    color: #999999;
}

.flex {
    display: flex;
}

.flex-col {
    width: 100%;
    flex-grow: 1;
}

.flex-center {
    display: flex;
    align-items: center;
}

.no-border {
    border: 0 !important;
}

.no-background {
    background: none !important;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.tooltip, .popover {
    font-family: 'roboto', Arial;
}

.control-label {
    padding-top: 5px;
    padding-right: 0;
    text-align: left;
}

.homepage__main-container {
    background: #17191f url(/Content/img/home_background.jpg) no-repeat top;
    background-size: 100% auto;
    padding-bottom: 30px;
    min-height: 650px;
}

.homepage__content-blocks {
    padding-bottom: 20px;
}




.last-winners__container, .popular-slots__container {
    min-width: 220px;
    max-width: 220px;
    margin-right: 11px;
    background: #1d242a;
    margin-bottom: 20px;
}

.jackpots__container {
    min-width: 230px;
    max-width: 0;
    margin-left: 11px;
    background: #1d242a;
    margin-bottom: 20px;
}

.lastm-bets__container {
    /*background: #1d242a;*/
    background: #343743;
    margin-bottom: 20px;
}

.block__container {
    display: flex;
    flex-direction: column;
}

.block__title-bar {
    display: block;
    min-height: 45px;
    max-height: 45px;
    overflow: hidden;
    background: #d1d6d9;
    color: black;
    font-size: 15px;
    padding: 11px;
    margin: 0;
    line-height: 24px;
    white-space: nowrap;
    text-transform: uppercase;
    position: relative;
}

.title-icon {
    display: inline-block;
    margin-right: 3px;
    vertical-align: top;
}

    .title-icon::before {
        content: "";
        display: block;
        width: 24px;
        height: 24px;
        background: url(/Content/img/icon__title-icons.png) no-repeat 0 0;
    }

.icon__last-winners::before {
    background-position: 0 -24px;
}

.icon__popular-slots::before {
    background-position: 0 -48px;
}

.icon__jackpots {
    margin-right: 7px;
}

    .icon__jackpots::before {
        background-position: 0 0;
    }

.lw__title-bar {
    background: var(--blue);
    color: white;
}

.ps__title-bar {
    background: var(--yellow);
    color: black;
}

.block__content {
    padding: 6px 10px 6px 15px;
    height: 100%;
}

.block__footer {
    min-height: 43px;
    max-height: 43px;
    border-top: 1px solid #36414a;
}

.hide-scroll {
    display: block;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.hide-scroll-inner {
    display: block;
    width: calc(100% + 25px);
    overflow-y: scroll;
    box-sizing: border-box;
    max-height: 100%;
    height: 235px;
    padding-right: 8px;
}

.fullheight {
    height: 100%;
}

.hot-new__container {
    display: block;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    font-size: 0;
}

.new__item, .hot {
    display: inline-block;
    vertical-align: top;
    padding: 0 5px;
    line-height: 20px;
    background: #e74c3c;
    color: white;
    font-size: 11px;
    font-family: Arial;
    font-weight: bold;
    text-transform: uppercase;
}

.hot {
    background: #ecb50d;
}

.slick-slide {
    margin: 0px 12px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-prev:before,
.slick-next:before {
    color: black;
}

.fullsize-container {
    width: 100%;
    height: 100%;
}

.login-page__main-container {
    padding: 40px 0 50px 0;
    position: relative;
    z-index: 5;
}

.login__container {
    margin: 0 auto;
    background: #1d242a;
    width: 560px;
}

.login-page__title {
    background: #101418;
    color: var(--yellow);
    padding: 11px 20px;
}

.login__content {
    padding: 25px 65px;
}

.forgotpass-link {
    font-size: 13px;
    cursor: pointer;
}

.forgotpass-label {
    float: left;
}

.forgotpass {
    float: right;
}

.login-label {
    color: #cccccc;
}

.error-text {
    color: var(--red);
    font-size: 13px;
    padding-top: 5px;
    display: flex;
}

    .error-text ul {
        list-style-type: none;
    }

.error-messages__container {
    margin-bottom: 15px;
    padding: 3px 10px 8px 10px;
    background: rgba(0,0,0,0.1);
    font-size: 14px;
}

    .error-messages__container .error-text {
        font-size: 14px;
    }

.error-text i, .info-text i {
    margin-right: 4px;
}

.info-text {
    color: #cccccc;
    margin-top: 5px;
}

.sms-code__container {
    display: flex;
}

.new-message {
    background: #64b000;
    color: white !important;
}

.sms-code__input-container {
    position: relative;
    width: 65%;
    min-width: 65%;
    max-width: 65%;
    margin-right: 10px;
    flex-grow: 1;
}

.sms-code__button-container {
    flex-grow: 1;
}

.sms-code__timer {
    position: absolute;
    z-index: 10;
    right: 10px;
    top: calc(50% - 10px);
    line-height: 20px;
    color: rgba(255,255,255,0.5);
    font-size: 15px;
}

.sms-code__input-container input {
    padding-right: 55px;
}

.inner-pages__main-container {
    padding: 25px 0 60px 0;
    position: relative;
    z-index: 5;
}

.breadcrumbs__container {
    background: #1d242a;
}

    .breadcrumbs__container .container-size {
        position: relative;
    }

.breadcrumbs__content {
    padding: 15px 0;
    font-size: 13px;
    font-family: 'robotoBold', Arial;
    color: var(--yellow);
    text-transform: uppercase;
}

    .breadcrumbs__content i {
        font-size: 14px;
    }

.text-pages__content-container {
    color: #cccccc;
}

.deposit-tabs {
    display: flex;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    border-bottom: 3px solid var(--blue);
}

.deposit-tabs__list {
    display: block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.deposit-tabs__link, .deposit-tabs__link:focus {
    display: block;
    padding: 12px 22px 11px 22px;
    font-size: 15px;
    color: var(--grey);
    cursor: pointer;
    transition: 250ms;
    -moz-transition: 250ms;
    -ms-transition: 250ms;
    -webkit-transition: 250ms;
    line-height: 18px;
}

    .deposit-tabs__link:hover {
        background: rgba(255,255,255,0.05);
        color: #cccccc;
    }

.deposit-tabs__link--active, .deposit-tabs__link--active:hover, .deposit-tabs__link--active:focus {
    background: var(--blue);
    color: white;
    cursor: auto;
}


.tabs-multilevel {
    display: flex;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: -25px 0 25px 0;
    background: #303a42;
}

.tabs-multilevel__list {
    display: block;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.tabs-multilevel__link, .tabs-multilevel__link:focus {
    display: block;
    padding: 10px 18px 10px 18px;
    font-size: 13px;
    color: var(--grey);
    cursor: pointer;
    transition: 250ms;
    -moz-transition: 250ms;
    -ms-transition: 250ms;
    -webkit-transition: 250ms;
    line-height: 17px;
    text-transform: uppercase;
}

    .tabs-multilevel__link:hover {
        background: rgba(255,255,255,0.05);
        color: #cccccc;
    }

.tabs-multilevel__link--active, .tabs-multilevel__link--active:hover, .tabs-multilevel__link--active:focus {
    background: #1d242a;
    color: var(--yellow);
    cursor: auto;
}

.transactions-filters {
    background: #1d242a;
    padding: 13px 20px 20px 20px;
    margin-bottom: 20px;
}

.transactions-filter__label {
    font-size: 15px;
    color: white;
    min-height: 22px;
}

.datetimepicker__flex {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.datetimepicker__flex-container {
    flex-grow: 1;
    width: calc(50% - 5px);
    max-width: calc(50% - 5px);
}

    .datetimepicker__flex-container .form-control {
        font-size: 13px;
        color: #cccccc;
    }

.transactions-filters__button {
    min-width: 80px;
}

.transactions-filters__button--margin {
    margin-top: 27px;
}

.page-h1-header {
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0;
    float: left;
}








.regdivaff2 input {
    outline: none;
    max-width: 250px;
    width: 100%;
    background: #353f48;
    color: #e4e9ed;
    height: 37px;
    padding-left: 8px;
    border: 0;
}

    .regdivaff2 input:focus {
        background-color: #3f4a53;
    }



.regdivaff2 textarea {
    outline: none;
    width: 100%;
    min-height: 130px;
    max-width: 250px;
    background: #353f48;
    color: #e4e9ed;
    padding-left: 8px;
    border: 0;
}

    .regdivaff2 textarea:focus {
        background-color: #3f4a53;
    }
/* EMAIL SECURITY CUSTOM MODAL BEGIN */

#sn_mail_modal_person .modal_twofa .modal-custom_content {
    padding: 0px !important;
}

#sn_mail_modal_person .modal_twofa .modal-custom_content {
    background-color: #16181a;
    color: white;
    padding: 10px;
    position: relative;
    text-align: center;
    border: 1px solid #2d2e30;
    border-radius: 8px;
}

    #sn_mail_modal_person .modal_twofa .modal-custom_content .modal-header .close {
        background: transparent;
        color: white;
    }

    #sn_mail_modal_person .modal_twofa .modal-custom_content .modal-header .twofa-modal-title {
        margin-right: 0px !important;
    }

.email_security__container {
    background-color: #23292f;
    padding: 29px 0px 61px;
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

#sn_mail_modal_person .modal-dialog {
    width: 556px;
    border-radius: 6px;
}

.EmailModalCenter {
    display: flex;
    align-items: center;
}

#sn_mail_modal_person .modal-dialog .modal-content .modal-header {
    height: 59px !important;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
}

#sn_mail_modal_person .modal_twofa.modal-custom_content .modal-header {
    border: 1px solid transparent !important;
    display: flex;
    justify-content: flex-end;
    padding: 0;
    height: 29px;
    display: flex;
    justify-content: right;
    align-items: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
}

.code-inputs input {
    width: 49px;
    height: 48px;
    text-align: center;
    font-size: 42px;
    margin: 5px;
    background-color: white;
    color: #64b000;
    background-color: #293037;
    border: 2px solid #64b000;
    font-weight: 700;
}

    .code-inputs input::-webkit-inner-spin-button,
    .code-inputs input::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

.verify-btn,
.resend-btn {
    height: 38px;
    background-color: #64b000;
    color: #FFFFFF;
    border: none;
    padding: 10px 49px;
    font-weight: 600;
    cursor: pointer;
    margin: 5px;
}

.verify_remainig__time {
    color: #FFFFFF;
    font-size: 16px;
}

.verify_timer {
    color: #64b000;
    font-size: 16px;
}

.email_verification__switcher input:disabled + .slider .swith-on {
    background: url('/Content/img/emailLock.png') no-repeat center;
    background-size: contain;
    background-position: 92% 46%;
    opacity: 1;
    background-size: 16px 16px;
    position: relative;
    z-index: 122;
}

.error23 {
    /*    padding: 0px 0 6px 15px;*/
    font-size: 13px;
    color: #ee1a42;
    margin: 10px;
}

.resend-btn {
    background-color: #1f2429;
    border: 1px solid #64b000;
    color: #FFFFFF;
}

.success_email {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 29px 0px 61px;
}

.success_email__text p {
    font-size: 24px;
}

.success_email__img {
    width: 107px;
}

.remaining-time {
    font-size: 16px;
    color: #fec234;
}

.security_suggestion_container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 11px;
}

#security_suggestion_resend_mail:focus {
    background-color: #333546;
}

.verify_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* EMAIL SECURITY CUSTOM MODAL END*/
.affcontactmain {
    padding-bottom: 20px;
    padding-top: 15px;
}

    .affcontactmain p {
        padding: 0;
        margin: 0 0 15px 0;
    }

.affcontactinner {
    display: inline-block;
    width: 48%;
    margin-right: 1%;
    vertical-align: top;
}

    .affcontactinner label {
        width: 160px;
        display: inline-block;
    }

    .affcontactinner .error2 {
        text-align: right;
        max-width: 330px;
    }


.sn-terms, .regdivaff2 label {
    font-size: 15px;
    color: #ccc;
}




#affi_par_container {
    margin: 0 0 0 18px;
}

#affi_textarea_container {
    width: 966px;
    margin: 0px 12px;
    height: 166px;
    outline: none;
    color: #cccccc;
    border: none;
    padding: 0 7px;
    background-color: #171717;
    -webkit-appearance: none;
    font-size: 10pt;
    line-height: 17px;
}

    #affi_textarea_container::-webkit-scrollbar {
        width: 4px;
    }

    #affi_textarea_container::-webkit-scrollbar-track {
        background-image: URL('/Content/img/textareascroll.png');
        padding-bottom: 10px;
        height: 30px;
    }

    #affi_textarea_container::-webkit-scrollbar-thumb {
        background-color: #f18e30;
    }

        #affi_textarea_container::-webkit-scrollbar-thumb:hover {
            background-color: #aaa;
        }

#affi_terms_agg_container {
    margin: 25px 15px;
    float: left;
}

    #affi_terms_agg_container div.regdiv6_1 {
        width: auto;
    }

/*.affi_reg_btn {
    float: right;
    margin-top: 41px;
    margin-right: 13px;
    padding: 0px;
}*/


.affi_bottom_clear_container {
    width: 100%;
    height: 65px;
}

.contactInfoSpan, .businessModelSpan, .introInfoSpan {
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 24px;
    text-transform: uppercase;
    color: #64b000;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #353f48;
}

.affilates_container .regdivaff2 label {
    font-size: 16px;
    line-height: 24px;
    color: #757c8b;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 20px;
}
#contactInfo {
    display: flex;
    background-color: #1f2429;
    margin-top: 50px;
}

.affiliates-container .form-control {
    min-height: 38px;
    border-radius: 19px;
    background-color: #1b1f28;
    border: 1px solid #363c4c;
    color: #fff;
}

.affBtns {
    margin-top: 20px;
}

    .affBtns .affilateModdalBtn {
        background-color: transparent;
        border: 1px solid #64b000;
        min-width: 222px;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        color: #fff;
        font-weight: 600;
    }

    .affBtns #affiliate_reg_btn {
        background-color: #64b000;
        border: 1px solid #64b000;
        min-width: 222px;
        text-align: center;
        font-size: 14px;
        line-height: 24px;
        color: #fff;
    }
#affiliateModal .modal-header {
    padding: 10px;
    display: flex;
}

.regdiv6_1 {
    float: left;
    width: 325px;
    padding-left: 5px;
}

    .regdiv6_1 label {
        color: #ccc;
    }

    .regdiv6_1 a {
        color: #ec990d;
        text-decoration: none;
    }

        .regdiv6_1 a:hover {
            text-decoration: underline;
        }


.error3 {
    padding: 3px 0 6px 4px;
    font-size: 13px;
    color: #d8281b;
    max-width: 222px;
}
.affiliates-checkbox {
    display: block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .affiliates-checkbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

    .affiliates-checkbox .checkmark {
        position: absolute;
        top: 4px;
        left: 0;
        height: 20px;
        width: 20px;
        border: solid 1px #a0a5b3;
        background-color: transparent;
    }

    .affiliates-checkbox:hover input ~ .checkmark {
        background-color: transparent;
    }

    .affiliates-checkbox input:checked ~ .checkmark {
        border: solid 1px #a0a5b3;
    }

    .affiliates-checkbox .checkmark:after {
        content: "";
        position: absolute;
        display: none;
        border: solid 1px #64b000;
    }

    .affiliates-checkbox input:checked ~ .checkmark:after {
        display: block;
    }

    .affiliates-checkbox .checkmark:after {
        left: 7px;
        top: 4px;
        width: 5px;
        height: 10px;
        border: solid #64b000;
        border-width: 0 3px 3px 0;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

.skillgamesdiv1 {
    margin: 0 0 30px 0;
}

.skillgamesdiv2 {
    max-width: 576px;
    margin: 0 auto;
    height: 304px;
    background: #34363f url(/Content/img/okeybanbg.png) no-repeat right bottom;
    padding: 65px 170px 0 37px;
    box-sizing: border-box;
    font-size: 18px;
    border-bottom: 5px solid #e9a025;
    transition: 250ms;
    -moz-transition: 250ms;
    -ms-transition: 250ms;
    -webkit-transition: 250ms;
}

.sg-tavla {
    background: #34363f url(/Content/img/nardibanbg.png) no-repeat right bottom;
}

.skillgamesdiv2:hover {
    box-shadow: 0 0 40px rgba(0,0,0,0.4);
    border-color: #107e68;
}

























.sn_scratch_main {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13.5px;
    align-items: center;
    padding: 25px 27px 0 27px;
}

    .sn_scratch_main li {
        margin-bottom: 20px;
        height: 270px;
        width: 282px;
    }

        .sn_scratch_main li:nth-child(3n+2) {
            margin: auto 20px 20px 20px;
        }

.sn_scratch_link {
    display: block;
    cursor: pointer;
    position: relative;
    text-decoration: none !important;
    outline: none !important;
}

    .sn_scratch_link:hover {
        box-shadow: 0 0 15px rgba(0,0,0,0.8);
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
    }

.sn_scratch_bgs {
    background: black;
    padding: 15px 0;
    color: white;
    margin-bottom: 1px;
}

    .sn_scratch_bgs h2 {
        display: block;
        padding: 0 10px;
        margin: 0 0 2px 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 23px;
        text-overflow: ellipsis;
    }

    .sn_scratch_bgs p {
        display: block;
        padding: 0 10px;
        margin: 0 0 10px 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 13.5px;
    }

        .sn_scratch_bgs p .green {
            color: #c6ff68 !important;
            font-size: 13.5px !important;
        }

.sn_scratch_image {
    float: left;
    width: calc(100% - 80px);
    height: 130px;
    overflow: hidden;
    display: block;
}

    .sn_scratch_image img {
        width: 100%;
        min-height: 100%;
    }

.sn_scratch_price {
    float: left;
    width: 56px;
    text-align: center;
    line-height: 18px;
    margin-left: 10px;
}

    .sn_scratch_price .price {
        display: block;
        margin-bottom: 2px;
        padding: 8px 3px;
        font-size: 17px;
        color: white;
        text-transform: uppercase;
        background: rgb(226,205,160);
        background: -moz-linear-gradient(top, rgba(226,205,160,1) 0%, rgba(239,205,100,1) 50%, rgba(239,188,34,1) 51%, rgba(251,225,37,1) 100%);
        background: -webkit-linear-gradient(top, rgba(226,205,160,1) 0%,rgba(239,205,100,1) 50%,rgba(239,188,34,1) 51%,rgba(251,225,37,1) 100%);
        background: linear-gradient(to bottom, rgba(226,205,160,1) 0%,rgba(239,205,100,1) 50%,rgba(239,188,34,1) 51%,rgba(251,225,37,1) 100%);
    }

    .sn_scratch_price .newone {
        display: block;
        margin-bottom: 2px;
        padding: 8px 5px;
        font-size: 17px;
        color: #c6ff68;
        text-transform: uppercase;
        background: rgb(11,12,12);
        background: -moz-linear-gradient(top, rgba(11,12,12,1) 0%, rgba(11,12,12,1) 50%, rgba(50,50,50,1) 51%, rgba(71,72,72,1) 100%);
        background: -webkit-linear-gradient(top, rgba(11,12,12,1) 0%,rgba(11,12,12,1) 50%,rgba(50,50,50,1) 51%,rgba(71,72,72,1) 100%);
        background: linear-gradient(to bottom, rgba(11,12,12,1) 0%,rgba(11,12,12,1) 50%,rgba(50,50,50,1) 51%,rgba(71,72,72,1) 100%);
    }

.sn_scratch_tati {
    height: 44px;
    line-height: 44px;
    font-size: 14px;
    color: #444444;
    position: relative;
    padding: 0 10px 0 48px;
    background: rgb(198,255,104);
    background: -moz-linear-gradient(-45deg, rgba(198,255,104,1) 0%, rgba(166,236,52,1) 78%, rgba(105,154,34,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(198,255,104,1) 0%,rgba(166,236,52,1) 78%,rgba(105,154,34,1) 100%);
    background: linear-gradient(135deg, rgba(198,255,104,1) 0%,rgba(166,236,52,1) 78%,rgba(105,154,34,1) 100%);
}

    .sn_scratch_tati:before {
        content: "";
        display: block;
        width: 25px;
        height: 24px;
        position: absolute;
        top: calc(50% - 11px);
        left: 15px;
        background: url(/Content/img/scratch_tati.png);
    }

.sn_scratch_main li:nth-of-type(1) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(7) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(13) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(19) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(25) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(31) .sn_scratch_bgs {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(-45deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 70%, rgba(91,92,92,1) 71%, rgba(39,40,40,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(91,92,92,1) 71%,rgba(39,40,40,1) 100%);
    background: linear-gradient(135deg, rgba(0,0,0,1) 0%,rgba(0,0,0,1) 70%,rgba(91,92,92,1) 71%,rgba(39,40,40,1) 100%);
}

.sn_scratch_main li:nth-of-type(2) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(8) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(14) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(20) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(26) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(32) .sn_scratch_bgs {
    background: rgb(118,26,100);
    background: -moz-linear-gradient(-45deg, rgba(118,26,100,1) 0%, rgba(175,85,159,1) 68%, rgba(214,166,204,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(118,26,100,1) 0%,rgba(175,85,159,1) 68%,rgba(214,166,204,1) 100%);
    background: linear-gradient(135deg, rgba(118,26,100,1) 0%,rgba(175,85,159,1) 68%,rgba(214,166,204,1) 100%);
}

.sn_scratch_main li:nth-of-type(3) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(9) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(15) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(21) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(37) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(33) .sn_scratch_bgs {
    background: rgb(0,121,186);
    background: -moz-linear-gradient(-45deg, rgba(0,121,186,1) 0%, rgba(0,9,119,1) 70%, rgba(35,76,160,1) 71%, rgba(139,164,203,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(0,121,186,1) 0%,rgba(0,9,119,1) 70%,rgba(35,76,160,1) 71%,rgba(139,164,203,1) 100%);
    background: linear-gradient(135deg, rgba(0,121,186,1) 0%,rgba(0,9,119,1) 70%,rgba(35,76,160,1) 71%,rgba(139,164,203,1) 100%);
}

.sn_scratch_main li:nth-of-type(4) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(10) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(16) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(22) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(28) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(34) .sn_scratch_bgs {
    background: rgb(137,142,174);
    background: -moz-linear-gradient(-45deg, rgba(137,142,174,1) 0%, rgba(99,72,91,1) 55%, rgba(54,46,59,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(137,142,174,1) 0%,rgba(99,72,91,1) 55%,rgba(54,46,59,1) 100%);
    background: linear-gradient(135deg, rgba(137,142,174,1) 0%,rgba(99,72,91,1) 55%,rgba(54,46,59,1) 100%);
}

.sn_scratch_main li:nth-of-type(5) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(11) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(17) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(23) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(29) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(35) .sn_scratch_bgs {
    background: rgb(71,87,111);
    background: -moz-linear-gradient(-45deg, rgba(71,87,111,1) 0%, rgba(73,150,210,1) 55%, rgba(158,202,237,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(71,87,111,1) 0%,rgba(73,150,210,1) 55%,rgba(158,202,237,1) 100%);
    background: linear-gradient(135deg, rgba(71,87,111,1) 0%,rgba(73,150,210,1) 55%,rgba(158,202,237,1) 100%);
}

.sn_scratch_main li:nth-of-type(6) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(12) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(18) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(24) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(30) .sn_scratch_bgs, .sn_scratch_main li:nth-of-type(36) .sn_scratch_bgs {
    background: rgb(32,121,2);
    background: -moz-linear-gradient(-45deg, rgba(32,121,2,1) 0%, rgba(109,185,3,1) 55%, rgba(152,202,52,1) 100%);
    background: -webkit-linear-gradient(-45deg, rgba(32,121,2,1) 0%,rgba(109,185,3,1) 55%,rgba(152,202,52,1) 100%);
    background: linear-gradient(135deg, rgba(32,121,2,1) 0%,rgba(109,185,3,1) 55%,rgba(152,202,52,1) 100%);
}





.sn-brandname {
    position: absolute;
    height: 20px;
    box-sizing: border-box;
    padding: 0 6px;
    line-height: 19px;
    background: rgba(13,116,94,0.55);
    font-size: 12px;
    color: white;
    text-transform: uppercase;
    font-family: 'robotoBold';
    text-align: right;
    right: 0;
    top: 0;
    z-index: 150;
}



iframe {
    border: none !important;
}

.license {
    display: flex;
    justify-content: center;
    align-items: center;
}

.license__logo {
    width: 85px;
    margin-left: 15px;
    object-fit: contain;
}

.licence_18_logo {
    padding: 5px 0px 5px 10px;
    object-fit: cover;
}

.cashrace_frame__container {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}

    .cashrace_frame__container img {
        height: 100%;
        width: 100%;
    }


.sports-menu {
    overflow: hidden;
    white-space: nowrap;
    background: #111f1f;
}

    .sports-menu ul {
        padding: 0;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        list-style: none;
        overflow: auto;
    }

        .sports-menu ul li {
            height: 40px;
            width: 120px;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: .3em;
            border-left: 0;
            border-radius: 10px 0;
        }

            .sports-menu ul li.active.auth {
                background: #08090d;
            }

            .sports-menu ul li.active {
                background: #08090d;
            }

            .sports-menu ul li:not(.active):hover {
                background: #1a2c2c
            }

                .sports-menu ul li:not(.active):hover a:before,
                .sports-menu ul li:not(.active):hover a:after {
                    transform: translate(0, 0);
                    opacity: 1;
                }

            .sports-menu ul li:not(.active):hover {
                background: #1a2c2c;
            }

            .sports-menu ul li.active a:before,
            .sports-menu ul li.active a:after {
                transform: translate(0, 0);
                opacity: 1;
            }

            .sports-menu ul li a::before,
            .sports-menu ul li a::after {
                content: '';
                height: 16px;
                width: 16px;
                position: absolute;
                transition: all .35s ease;
                opacity: 0;
            }

            .sports-menu ul li a::before {
                content: '';
                right: 0;
                top: 0;
                border-top: 3px solid #117989;
                border-right: 3px solid #117989;
                transform: translate(-100%, 50%);
            }

            .sports-menu ul li a:after {
                content: '';
                left: 0;
                bottom: 0;
                border-bottom: 3px solid #ecb50d;
                border-left: 3px solid #ecb50d;
                transform: translate(100%, -50%);
            }


            .sports-menu ul li a:hover:before,
            .sports-menu ul li a:hover:after {
                transform: translate(0, 0);
                opacity: 1;
            }

            .sports-menu ul li a:hover {
                color: #3DA35D;
            }

            .sports-menu ul li a img {
                object-fit: contain;
            }

            .sports-menu ul li a {
                /*padding: 13px 13px 5px;*/
                cursor: pointer;
                width: 100%;
                height: 100%;
                display: inline-flex;
                flex-flow: column;
                align-items: center;
                justify-content: center;
                position: relative;
            }

.com-egt-jackpot-container {
    max-width: 1200px;
    margin: auto;
}

.com-egt-jackpot-html-box {
    display: flex !important;
    justify-content: center;
    align-items: center;
}

    .com-egt-jackpot-html-box span {
        font-size: 16px;
        text-align: center;
    }

.fifa-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 18px;
}

.fifa-timer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fifa-item-timer {
    display: flex;
    flex-direction: column;
    padding: 0 12px;
}

    .fifa-item-timer span {
        color: #fff;
        font-size: 16pt;
        font-family: biko-regular;
        text-transform: uppercase;
        text-align: center;
    }

        .fifa-item-timer span:first-child {
            font-size: 45pt;
            font-family: biko-black;
            line-height: 1;
        }

.twofa_banner-img {
    background: url('/Content/img/twofa-banner-img.jpg') center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 68px;
    margin-bottom: 35px;
}


.bgs-navigation {
    display: flex;
    background: #30323e;
    position: absolute;
    bottom: 3px;
    left: calc(50% - 50px);
    width: 94px;
    z-index: 200;
    text-align: center;
    color: white;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
    line-height: normal;
    height: 32px;
    font-size: 17px;
}

    .bgs-navigation .bgs-nav {
        width: 28px;
        height: 28px;
    }

        .bgs-navigation .bgs-nav.bgs-nav-prev {
            margin-left: -15px;
        }

            .bgs-navigation .bgs-nav.bgs-nav-prev a {
                padding-right: 2px;
            }

        .bgs-navigation .bgs-nav.bgs-nav-next {
            margin-right: -15px;
        }

            .bgs-navigation .bgs-nav.bgs-nav-next a {
                padding-left: 2px;
            }

        .bgs-navigation .bgs-nav a {
            width: 100%;
            height: 100%;
            color: #30323e;
            background: #62af01;
            border-radius: 50rem;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: normal;
        }

    .bgs-navigation .bgs-nav-numbers {
        display: flex;
        gap: 2px;
    }

.header-socials__telegram-live {
    background: url(/Content/img/header-socials__telegram-live.png) no-repeat center;
    height: 19px;
    width: 24px;
    background-size: contain;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
}

.header-socials__telegram-live-url:hover .header-socials__telegram-live {
    background-image: url(/Content/img/header-socials__telegram-live-hover.png);
}

.tryNew__container .slots-view__col {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}

/* _PersonalDetailsForm style */
.products-navigation-cities-list {
    font-size: 14px;
    padding: 0 12px;
    max-height: 350px;
    overflow-y: auto;
}

    .products-navigation-cities-list::-webkit-scrollbar {
        width: 8px;
    }

    .products-navigation-cities-list::-webkit-scrollbar-track {
        background: trasparent;
    }

    .products-navigation-cities-list::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, .2);
        border-radius: 6px;
    }

    .products-navigation-cities-list .products-navigation-filter-list-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
        cursor: pointer;
        color: white;
    }

        .products-navigation-cities-list .products-navigation-filter-list-item:hover {
            color: var(--main-color);
        }

        .products-navigation-cities-list .products-navigation-filter-list-item .category-filter__games-number {
            color: var(--main-color);
            font-weight: bold;
        }

        .products-navigation-cities-list .products-navigation-filter-list-item.category-filter__link--active {
            color: var(--main-color);
        }

.personal__Details_dropdown-button {
    color: #cccccc;
}

    .personal__Details_dropdown-button:focus {
        outline: none !important;
        background-color: #353F48 !important ;
    }

.personal__Details_dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.personal__Details_dropdown-button {
    width: 100%;
    height: 38px;
    padding: 10px;
    border: solid 1px #353F48 ;
    border-radius: 4px;
    cursor: pointer;
    background-color: #353F48 !important;
    text-align: left;
}

.personal__Details_dropdown-content {
    display: none;
    position: absolute;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    overflow-y: auto;
    padding: 12px 10px;
    background: #1c1e22;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
} 
.personal__Details_dropdown-content {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

    .personal__Details_dropdown-content::-webkit-scrollbar {
        display: none;
    }

    .personal__Details_dropdown-content .products-navigation-search-item-provider .form-control {
        border: solid 1px rgba(255, 255, 255, .1) !important;
        background: #2d303b;
        padding: 10px 15px;
        border-radius: 0px !important;
        color: white;
        margin-bottom: 10px;
        font-size: 17px;
        right: 0 !important;
        background-image: url(/Content/img/search-icon-grey.png);
        background-repeat: no-repeat;
        background-position: calc(100% - 16px) center;
        background-size: 16px;
    }

    .personal__Details_dropdown-content .products-navigation-search-item-provider input {
        box-sizing: border-box;
        width: 100%;
        padding: 8px;
        border: none;
        border-bottom: 1px solid #ddd;
    }

    .personal__Details_dropdown-content .products-navigation-cities-list div {
        padding: 12px 16px;
        cursor: pointer;
        background-color: #1c1e22;
        color: white;
    }

        .personal__Details_dropdown-content .products-navigation-cities-list div:hover {
            background-color: rgba(100, 176, 0, 0.9) !important;
        }

.products-navigation-cities-list {
    max-height: 250px !important;
    padding: 0 !important;
}

.personal__Details_show {
    display: block;
}

.back-to-top-button {
    background: transparent;
    border: none;
    position: fixed;
    bottom: 15px;
    right: 76px;
    transition: transform .2s;
    z-index: 9999;
    display: none;
}

.back-to-top-button:hover {
    transform: scale(1.2);
    outline: none;
}

.back-to-top-button:focus,.back-to-top-button:active:focus {
    outline: none;
    background: transparent;
}

/* _PersonalDetailsForm style end*/
.btn {
  padding: 10px 12px 8px 12px;
  font-size: 14px;
  font-family: 'robotoBold', Arial;
  text-transform: uppercase;
  height: auto;
  line-height: 14px;
  background-color: #ecf0f3;
  color: #333333;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  box-shadow: none !important;
}

.btn-lg {
  padding: 13px 20px 11px 20px;
  font-size: 16px;
  line-height: 18px;
}

.btn-sm {
  padding: 7px 10px 5px 10px;
  font-size: 12px;
  line-height: 14px;
}

.btn-xs {
  padding: 6px 8px 3px 8px;
  font-size: 11px;
  line-height: 11px;
}

.btn-default, .btn-default:disabled, .btn-default:disabled:hover, .btn-default:disabled:focus, .btn-default:disabled:active {
  background: var(--grey);
  color: white;
  border-color: var(--grey);
  filter: brightness(100%);
}

  .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default:active:focus, .btn-default:active:hover {
    background: var(--grey);
    color: white;
    border-color: var(--grey);
    filter: brightness(92%);
  }

.btn-primary, .btn-primary:disabled {
  background: none;
  color: var(--darkBlue);
  border-color: var(--blue);
}

  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: var(--blue);
    color: white;
    border-color: var(--blue);
  }

.btn-warning, .btn-warning:disabled {
  color: black;
  background: var(--yellow);
  border-color: var(--yellow);
}

  .btn-warning:hover, .btn-warning:focus, .btn-warning:active {
    background: var(--yellow);
    border-color: var(--yellow);
    filter: brightness(92%);
    color: black;
  }

.btn-danger, .btn-danger:disabled {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

  .btn-danger:hover, .btn-danger:focus, .btn-danger:active {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
    filter: brightness(92%);
  }

.btn-danger-o, .btn-danger-o:disabled {
  color: var(--red);
  background: none;
  border-color: var(--red);
}

  .btn-danger-o:hover, .btn-danger-o:focus, .btn-danger-o:active {
    color: var(--white);
    background: var(--red);
    border-color: var(--red);
  }

.btn-success, .btn-success:disabled {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

  .btn-success:hover, .btn-success:focus, .btn-success:active {
    color: var(--white);
    background: var(--darkGreen);
    border-color: var(--darkGreen);
  }

.btn-info, .btn-info:disabled {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

  .btn-info:hover, .btn-info:focus, .btn-info:active {
    color: var(--white);
    background: #13535f;
    border-color: #13535f;
  }

.btn-link, .btn-link:disabled {
  background: none;
  border: none;
  color: var(--Blue);
}

  .btn-link:hover, .btn-link:focus, .btn-link:active {
    background: none;
    border: none;
    color: var(--darkBlue);
  }

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  filter: alpha(opacity=30);
  opacity: 0.3;
}

.button-icon {
  margin-left: 5px;
  line-height: 12px;
  vertical-align: top;
}

.bet-now__button {
  min-width: 95px;
}

.modal-footer__button {
  display: inline-block;
  margin: 0 0 0 10px !important;
}

.button__view-more {
  display: block;
  line-height: 42px;
  padding: 0 10px 0 15px;
  font-size: 14px;
  color: #60646e;
  text-transform: capitalize;
}

  .button__view-more:hover, .button__view-more:focus {
    color: var(--grey);
    background: rgba(255,255,255,0.04);
  }

.button__view-more-icon {
  font-size: 20px;
  vertical-align: top;
  line-height: 41px;
  margin-left: 5px;
}

.icon-left {
  margin-right: 5px;
}

.icon-right {
  margin-left: 5px;
}

.btn-link--text, .btn-link--text:focus {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  margin-left: 5px;
  color: var(--yellow);
  text-decoration: underline !important;
  cursor: pointer;
}

  .btn-link--text:hover {
    text-decoration: none !important;
  }

.loader1, .loader2, .loader3, .loader4, .loader5 {
    border: 5px solid rgba(0,0,0,0.07);
    border-radius: 50%;
    border-top: 5px solid #64b000 !important;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 1s linear infinite;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    margin: 0 auto;
}

.loader2 {
  width: 25px;
  height: 25px;
}

.loader3 {
  width: 30px;
  height: 30px;
}

.loader4 {
    width: 40px;
    height: 40px;
    border: 6px solid rgba(0,0,0,0.07);
    border-top: 6px solid #64b000 !important;
}

.loader5 {
    width: 50px;
    height: 50px;
    border: 7px solid rgba(0,0,0,0.07);
    border-top: 7px solid #64b000 !important;
}

.loader_white {
  border-color: rgba(255,255,255,0.2);
  border-top-color: white !important;
}

.fullpage_loader {
  position: fixed;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.85);
  top: 0;
  left: 0;
}

  .fullpage_loader .loader1, .fullpage_loader .loader2, .fullpage_loader .loader3, .fullpage_loader .loader4, .fullpage_loader .loader5 {
    position: absolute;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
    border-color: rgba(0,0,0,0.1);
  }

  .fullpage_loader .loader2 {
    top: calc(50% - 13px);
    left: calc(50% - 13px);
  }

  .fullpage_loader .loader3 {
    top: calc(50% - 15px);
    left: calc(50% - 15px);
  }

  .fullpage_loader .loader4 {
    top: calc(50% - 20px);
    left: calc(50% - 20px);
  }

  .fullpage_loader .loader5 {
    top: calc(50% - 25px);
    left: calc(50% - 25px);
  }

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.modal-lg {
    width: 1000px;
}

.modal-content {
  background: #272f36;
  color: #fff;
  border:0;
  border-radius: 0;
}

.modal-header {
    background-color: var(--yellow);
    font-family: 'robotoBold';
    border-bottom: none;
    text-transform:uppercase;
}
.close {
    color: #13171b;
    opacity:0.4;

}
.modal-title{
    font-size: 20px; 
    color: #000;
}

.modal-twofa {
  width: 770px;
}

.modal-footer {
  border-color: #353f48;
}

.modal-footer .btn {
  min-width: 100px;
}
:root {
  --black: #000;
  --white: #fff;
  --blue: #117989;
  --darkBlue: #272f36;
  --lightBlue: #43e6ff;
  --green: #27ae60;
  --darkGreen: #1b924e;
  --red: #d8281b;
  --grey: #858c91;
  --greyBg: #e4e9ed;
  --yellow: #ecb50d;
}
.whiteBg {
  background-color: var(--white);
}
.blackBg {
  background-color: var(--black);
}
.greyBg {
  background-color: var(--greyBg);
}
.darkGreyBg {
  background-color: var(--grey);
}
.redBg {
  background-color: var(--red);
}
.blueBg {
  background-color: var(--blue);
}
.darkBlueBg {
  background-color: var(--darkBlue);
}
.lightBlueBg {
  background-color: var(--lightBlue);
}
.greenBg {
  background-color: var(--green);
}
.darkGreenBg {
  background-color: var(--darkGreen);
}
.yellowBg {
  background-color: var(--yellow);
}
.whiteColor {
  color: var(--white);
}
.blackColor {
  color: var(--black);
}
.greyColor {
  color: var(--grey);
}
.redColor {
  color: var(--red);
}
.blueColor {
  color: var(--blue);
}
.darkBlueColor {
  color: var(--darkBlue);
}
.lightBlueColor {
  color: var(--lightBlue);
}
.greenColor {
  color: var(--green);
}
.yellowColor {
  color: var(--yellow);
}
header {
  background: var(--blue);
  font-size: 0;
  padding: 0 !important;
}
.logo {
  float: left;
  display: flex;
  align-items: center;
  min-height: 63px;
  height: 100%;
  padding-left:15px;
}
.logo__link {
  cursor: pointer;
}
  .logo__link::before {
    content: "";
    display: block;
    width: 135px;
    height: 29px;
    background: url(/Content/img/logo.png) no-repeat top left;
  }
.header__content {
  float: right;
}
.header__content-col {
  display: inline-block;
  vertical-align: top;
}
.header-button-links, .header-button-links:hover, .header-button-links:focus {
  display: flex;
  align-items: center;
  padding: 0 13px;
  line-height: 62px;
  min-height: 63px;
  font-size: 13px;
  text-transform: uppercase;
  color: white;
  cursor: pointer;
  transition: 300ms;
  -moz-transition: 300ms;
  -webkit-transition: 300ms;
}
.header-button-icon {
  font-size: 20px;
  color: var(--yellow);
  vertical-align: top;
  margin: 0 0 0 6px;
  line-height: 62px;
}
.promotions-link {
  background: #13535f;
}
.account-link:hover, .account-link:focus, .login-link:hover, .login-link:focus,
.call-link:hover, .call-link:focus, .live-help-link:hover, .live-help-link:focus
{
    background-color: rgba(255,255,255,0.1);
}
.create-account-icon::before {
  content: "";
  background: url(/Content/img/icon_user.png) no-repeat left;
  width: 16px;
  height:17px;
  display: inline-block;
  vertical-align: middle;
  margin-left:6px;
}

.lang {
  border-left: 1px solid #188b9d;
  border-right: 1px solid #188b9d;
  font-size: 13px;
}
.lang__dropdown-button, .lang__dropdown-button:hover, .lang__dropdown-button:focus {
  display: block;
  padding: 16px 12px 0 12px;
  min-height: 63px;
  min-width: 55px;
  line-height: 15px;
  color: white;
  text-align: center;
  text-transform: uppercase;
}
  .lang__dropdown-button::after {
    content: "\f078";
    display: block;
    padding-top: 5px;
    line-height: 10px;
    font-size: 14px;
    color: var(--yellow);
    font-family:'fontAwesome';
  }
.lang.open .lang__dropdown-button {
  background-color: #188b9d;
}
.lang.open .lang__dropdown-button::after {
  content: "\f077";
}
.lang__dropdown {
  min-width: 100%;
  padding: 4px 0;
  margin:1px 0 0 0;
  font-size: 13px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  background-color: #188b9d;
  border: 0;
  text-transform: uppercase;
}
.lang__dropdown-list {
  margin-bottom:1px;
}
.lang__dropdown-link {
  padding: 0 !important;
  text-align: center;
  line-height: 30px !important;
  color: white !important;
}
  .lang__dropdown-link:hover, .lang__dropdown-link:focus, .lang__dropdown-link--active, .lang__dropdown-link--active:hover, .lang__dropdown-link--active:focus {
    color: black !important;
    background: var(--yellow) !important;
    cursor: pointer;
  }
    .lang__dropdown-link--active, .lang__dropdown-link--active:hover, .lang__dropdown-link--active:focus {
      cursor: auto;
    }
.authorized .text-to-hide {
  display: none;
}
.authorized .promotions-link, .authorized .live-help-link {
  padding: 0 16px;
}
  .authorized .promotions-link .header-button-icon, .authorized .live-help-link .header-button-icon {
    margin: 0;
  }
.envelope-icon {
  font-size: 18px;
}
.badge__for-sms {
  background: var(--darkBlue);
  color: white;
  font-size: 11px;
  font-family: Arial;
  font-weight: bold;
  margin-right: 4px;
  padding: 3px 6px;
}
.showhide__account-link {
  width: 16px;
  margin-right: 1px;
  margin-left: 1px;
  float: left;
  height: 63px;
  background: rgba(255,255,255,0.1);
  text-align: center;
  font-size: 16px;
  color: var(--lightBlue);
  display: flex;
  align-items: center;
}
  .showhide__account-link i.fa {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    vertical-align: top;
    line-height: 16px;
  }
  .showhide__account-link:hover {
    color: white;
    background: rgba(255,255,255,0.2);
  }
.grecaptcha-badge {
    visibility: hidden;
}
.showhide__collapse-account {
  display: none;
  float: left;
  background: rgba(255,255,255,0.1);
  padding: 0;
  min-height: 63px;
  font-size: 13px;
}
  .showhide__collapse-account.in {
    display: block;
  }
.showhide__account-link.in .fa-angle-left::before {
  content: "\f105";
}
.account__dropdown-link {
  display: flex;
  align-items: center;
  padding: 0 15px 0 1px;
  min-height: 63px;
  cursor: pointer;
  transition: 300ms;
  -moz-transition: 300ms;
  -webkit-transition: 300ms;
}
  .account__dropdown-link:hover, .account__dropdown-link:focus, .open .account__dropdown-link {
    background: rgba(255,255,255,0.1);
  }
.account-username {
  font-size: 13px;
  text-transform: uppercase;
  color: white !important;
  text-align: right;
  display: block;
  width: 100%;
  padding-left: 15px;
  line-height: 19px;
}
.account-icon {
  color: var(--yellow);
  font-size: 14px;
}
.account-username .create-account-icon::before {
  margin-left: 3px;
}
.account__cash {
  float: right;
  display: block;
  margin-left: 15px;
  color: white;
  padding-top: 4px;
}
  .account__cash::before {
    /*content: "$";*/
    display: inline-block;
    width: 16px;
    height: 15px;
    text-align: center;
    line-height: 15px;
    font-size: 10px;
    font-weight: bold;
    font-family: Arial;
    background: white;
    color: var(--darkBlue);
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    vertical-align: top;
    margin-top: 1px;
  }
.bonus-cash {
  color: var(--lightBlue);
}
  .bonus-cash::before {
    content: "B";
    background: var(--lightBlue);
  }
.account__dropdown-menu, .bonus-cash__dropdown {
  top: 64px;
  margin: 0;
  min-width: 100%;
  border-radius: 0;
  background: #188b9d;
  border: 0;
}
.account__row {
  display: block;
  margin-bottom: 1px;
}
.account__link {
  padding: 8px 15px !important;
  text-align: left;
  line-height: 16px !important;
  color: white !important;
}
  .account__link:hover, .account__link:focus, .account__link--active, .account__link--active:hover, .account__link--active:focus {
    color: black !important;
    background: var(--yellow) !important;
    cursor: pointer;
  }
    .account__link--active, .account__link--active:hover, .account__link--active:focus {
      cursor: auto;
    }
.bonus-cash__dropdown {
  top: 34px;
  cursor: auto;
  padding: 8px 0;
  right: -15px !important;
}
.dropdown.open > .bonus-cash__dropdown {
  display: flex;
}
.bonus-cash__row {
  display: flex;
  margin-bottom: 0;
  padding: 4px 14px;
  white-space: nowrap;
  font-size: 13px;
  color: white;
  line-height: 18px;
}
.bonus-cash__amount {
  font-size: 14px;
  padding-left:26px;
  text-align: right;
}
.bonus-cash__li {
  display: block;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.bonus-cash__li:last-child {
  border: 0;
}
.main-menu {
  background: #e4e9ed;
  color:var(--darkBlue);
}
.main-menu__container {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: 'RobotoBold';
  text-transform: capitalize;
  list-style: none;

}
.main-menu__li {
  flex-grow: 1;
}
.main-menu__link {
    display: block;
    cursor: pointer;
    color: var(--darkBlue);
    opacity: 0.55;
    /*padding: 13px 16px 16px 16px;*/
    padding: 13px 0px 16px 0px;
    transition: 300ms;
    -moz-transition: 300ms;
    -webkit-transition: 300ms;
    text-align: center;
    height: 100%;

}
  .main-menu__link:hover, .main-menu__link:focus {
    opacity: 1;
    background: rgba(255,255,255,0.7);
    color: var(--darkBlue);
  }
.main-menu__link--active, .main-menu__link--active:hover, .main-menu__link--active:focus {
  opacity: 1;
  background: rgba(236,181,13,0.8);
  color: var(--darkBlue);
  cursor: auto;
}
.menu-icons {
  display: block;
}
  .menu-icons::before {
    display: block;
    content:"";
    width: 25px;
    height: 25px;
    margin: 0 auto 5px auto;
    background: url(/Content/img/icon__menu-sprite.png) no-repeat 0 0;
  }
.icon__sports::before {
  background-position: 0 0;
}
.icon__live-betting::before {
  background-position: 0 -25px;
}
.icon__bet-exchange::before {
  background-position: 0 -50px;
}
.icon__live-casino::before {
  background-position: 0 -75px;
}
.icon__slots::before {
  background-position: 0 -100px;
}
.icon__poker::before {
  background-position: 0 -125px;
}
.icon__virtual-games::before {
  background-position: 0 -150px;
}
.icon__asian-betting::before {
  background-position: 0 -175px;
}
.icon__games::before {
  background-position: 0 -200px;
}
.icon__bingo::before {
  background-position: 0 -225px;
}
.icon__scrath-win::before {
  background-position: 0 -250px;
}
.icon__kahve::before {
    background-position: 0 -275px;
}
.icon__zeppelin::before {
    background: url(/Content/img/icon__zeppelin.png) no-repeat 0 0;
}
.icon__borsa::before {
    background: url(/Content/img/borsa-icon.png) no-repeat 0 0;
}
.icon__esports::before {
    background: url(/Content/img/icon__esports.png) no-repeat 0 0 !important;
    background-size: contain !important;
    background-position: center;
}

.new_mark {
    position: absolute;
    background-color: #e74c3c;
    z-index: 10;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 5px;
    margin: 0;
    display: none;
    color: white;
}

.menu_icons {
    position: absolute;
    left: -1000px;
    top: -1000px;
    z-index: 30;
}

.menu_icons img {
    max-width: 30px;
    max-height: 24px;
}

.social__icons {
    display: flex;
    list-style: none;
    padding-left: 0;
}

.social__icons li {
    margin-right: 20px;
}


.header-socials {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(28,30,34,.85);
    box-shadow: 0 3px 10px rgba(0,0,0,.3);
    padding: 0 13px;
    box-sizing: border-box;
    z-index: 100;
}

    .header-socials ul {
        display: block;
        font-size: 14px;
        color: #fff;
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

        .header-socials ul li {
            display: inline-block;
            margin: 0;
            padding: 9px 6px;
        }

            .header-socials ul li a {
                cursor: pointer;
                font-size: 19px;
                color: #fff;
                display: flex;
                align-items: center;
                height: 30px;
                width: 30px;
                border-radius: 6px;
            }

    .header-socials .custom-icon-x {
        background-image: url(/Content/img/icon-x.svg);
        background-repeat: no-repeat;
        background-size: cover;
        display: inline-block;
        width: 15px;
        height: 15px;
        filter: brightness(0) invert(1);
    }

    .header-socials .custom-icon-x:hover {
        filter: invert(58%) sepia(75%) saturate(439%) hue-rotate(118deg) brightness(92%) contrast(90%);
    }

    .header-socials ul li a.icon-fb {
        background-image: url(/Content/img/facebook_nw.png);
    }
    .header-socials ul li a.icon-twetter {
        background-image: url(/Content/img/twetter_nw.png);
    }
    .header-socials ul li a.icon-instagram {
        background-image: url(/Content/img/instagram_nw.png);
    }
    .header-socials ul li a.icon-youtube {
        background-image: url(/Content/img/youtube_nw.png);
    }
    .header-socials ul li a.icon-television {
        background-image: url(/Content/img/television_nw.png);
    }
    .header-socials ul li a.icon-download {
        background-image: url(/Content/img/download_nw.png);
    }
    .header-socials ul li a.icon-telegram {
        background-image: url(/Content/img/telegram_nw.png);
    }

    .header-socials ul li a.icon-livetelegram {
        background-image: url(/Content/img/livetelegram_nw.png);
    }
    .error4 {
        padding: 0 0 15px;
        font-size: 13px;
        color: #d8281b;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

.trans_ok {
    width: 450px;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 8px;
    background: #27ae60 ;
}

.trans_error {
    width: 450px;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 8px;
    background: #d8281b;
}

.trans_processing {
    width: 450px;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 8px;
    background: #e9a025; 
}




.forgot--password__modal button {
    color: #ecb50d !important;
    opacity: 0.8 !important;
}

.forgot--password__modal button:focus {
    color: #ecb50d !important;
    background: transparent !important;
}

.forgot--password__modal h3 {
    color: #ecb50d !important;
}


.password__progress {
    height: 3px !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #2d363e !important;
    margin-bottom: 0;
}

.progress-bar-20, .progress-bar-50, .progress-bar-100 {
    background-color: #ecb50d !important;
}

.icon__BonusReq::before {
    background: url(/Content/img/bonus-request-icon2.png) no-repeat 0 0 !important;
    background-size: contain !important;
    background-position: center;
}
.slider__main-container {
  height: 446px;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.slider__indicators-container {
  position: absolute;
  bottom: 0;
  left: calc(50% - 200px);
  width: 400px;
  z-index: 200;
  font-size: 0;
  text-align: center;
}
.slider__indicators {
  display: inline-block;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0 auto;
  padding: 10px 20px;
  background: #e4e9ed;
  width: auto;
}
  .slider__indicators::before, .slider__indicators::after {
    content: "";
    width: 25px;
    height: 100%;
    -ms-transform: skewX(-20deg);
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    position: absolute;
    left: -15px;
    bottom: 0;
    background: #e4e9ed;
  }
  .slider__indicators::after {
    left: auto;
    right: -15px;
    -ms-transform: skewX(20deg);
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
  }
  .slider__indicators li, .slider__indicators li:hover, .slider__indicators li:focus {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 4px;
    cursor: pointer;
    background: #9fa3a5;
    border: 0;
    border-radius: 20px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
  }
    .slider__indicators li.active, .slider__indicators li.active:hover, .slider__indicators li.active:focus {
      background: var(--blue);
      margin: 0 4px;
    }
.slider__indicators-sm li, .slider__indicators-sm li:focus, .slider__indicators-sm li:hover, .slider__indicators-sm li.active, .slider__indicators-sm li.active:focus, .slider__indicators-sm li.active:hover {
  width: 10px;
  height: 10px;
  margin: 0 3px;
}
.fg__main-container {
  margin-bottom: 45px;
  position: relative;
  background: #121217;
}
.fg__title {
  display: block;
  padding: 15px 130px 15px 20px;
  position: relative;
  background: #121217;
  font-size: 14px;
  color: var(--yellow);
  text-transform: uppercase;
  border-bottom: 1px solid #1d242a;
}
.fg__carousel-dots, .slick-dots {
    position: absolute;
    left: auto;
    right: 30px;
    margin: 0;
    padding: 0;
    top: calc(50% - 5px);
    bottom: auto;
    width: auto;
    font-size: 0;
}
  .fg__carousel-dots li {
    width: 10px;
    height: 10px;
    border: 0;
    margin: 0 0 0 8px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
  }
    .fg__carousel-dots li.active, .slick-dots .slick-active button  {
        width: 10px;
        height: 10px;
        border: 0;
        margin: 0 0 0 8px;
        background: var(--yellow) !important;
    }
.fg__datetime {
    min-width: 104px;
    max-width: 104px;
    /*background: #1d242a url(/Content/img/image__fg-background.png) no-repeat bottom left;*/
    text-align: center;
    min-height: 130px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-color: #1d242a;
}
.fg__date-day {
  font-size: 40px;
  font-family: 'robotoBold', Arial;
  color: var(--yellow);
  display: block;
  line-height: 40px;
  text-align: center;
  width: 100%;
}
.fg__date-month, .fg__time {
  display: block;
  width: 100%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: var(--grey);
  padding:0;
  margin:0;
}
.fg__flex-content {
  width:100%;
}
.fg__game-info {
  display: flex;
  align-items: center;
  padding: 15px 30px 16px 20px;
  background: #121217;
  color: white;
  font-size: 15px;
}
.fg__team-flag {
  min-width: 29px;
  max-width: 29px;
  padding-top:4px;
}
.fg__team-flag img {
  max-width:20px;
  max-height:20px;
  vertical-align: top;
}
.fg__team-name {
  font-size: 15px;
  text-transform: capitalize;
}
.fg__team-cash {
  white-space: nowrap;
  text-align: right;
  font-size: 15px;
  font-family:'robotoBold', Arial;
}
.fg__team-cash i {
  margin-right: 3px;
}
.lw__list-container {
  display: flex;
  padding:6px 0;
  align-items: center;
  list-style: none;
  margin:0;
}
.lw__list-row {
    display: flex;
    flex-direction: column;
    /* position: relative; */
    align-items: flex-start;
    width: 100%;
}
.lw__list-number {
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* right: 7px; */
    height: 64px;
    background: transparent !important;
}
.lw__username {
    display: block;
    font-size: 12px;
    color: var(--grey) !important;
}
.lw__winnings {
    font-size: 12px;
    display: block;
    color: var(--yellow) !important;
    font-weight: bold;
}

.slots__main_container_img {
    background-size: cover;
    height: 64px;
    margin-right: 16px;
    min-width: 70px;
    /* width: 112px; */
    background-position: center;
    display: block;
    min-height: 50px;
    max-width: 70px;
    max-height: 50px;
}

.slots__container_img {
    width: 100%;
    height: 100%;
    min-width: 112px;
}

.lw__winnings__slotnames {
    font-size: 11px;
    color: white !important;
}
.lastm-bets__time-filter {
  display: block;
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 5;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0;
}
.lastm-bets__time-filter-col {
  display: inline-block;
  margin-left: 8px;
  font-size: 13px;
  line-height: 15px;
}
.lastm-bets__time-filter-link {
  display: block;
  cursor: pointer;
  color: #666666;
  font-size: 13px;
  padding: 12px 11px;
  line-height: 15px;
}
  .lastm-bets__time-filter-link:hover, .lastm-bets__time-filter-link:focus {
    color: var(--blue);
  }
.lastm-bets__time-filter-link--active, .lastm-bets__time-filter-link--active:hover, .lastm-bets__time-filter-link--active:focus {
  color: var(--blue);
  border-bottom: 3px solid var(--blue);
  font-family: 'robotoBold', Arial;
  cursor: auto;
}
.lastm-bets__game-filter {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 0;
  list-style: none;
  overflow: hidden;
  height: 30px;
}
.lastm-bets__game-filter-col {
  display: inline-block;
  font-size: 12px;
  color: var(--grey);
}
.lastm-bets__game-filter-link {
  display: block;
  padding: 0 10px;
  line-height: 30px;
  color: var(--grey);
  cursor: pointer;
  text-transform: capitalize;
}
  .lastm-bets__game-filter-link:hover, .lastm-bets__game-filter-link:focus {
    background: rgba(255,255,255,0.06);
    color: white;
  }
.lastm-bets__game-filter-link--active, .lastm-bets__game-filter-link--active:hover, .lastm-bets__game-filter-link--active:focus {
  background: var(--blue);
  color: white;
  cursor: auto;
}
.lastm-bets__table {
  margin: 0;
  padding: 0 20px 0 0; 
  border: 0 !important;
  font-size: 12px;
}
  .lastm-bets__table > tbody > tr > td, .lastm-bets__table > tbody > tr > th, .lastm-bets__table > tfoot > tr > td, .lastm-bets__table > tfoot > tr > th, .lastm-bets__table > thead > tr > td, .lastm-bets__table > thead > tr > th {
    padding: 7px 0 6px 0;
    vertical-align: top;
    border: 0;
    line-height: 17px;
    color: white;
  }
  .lastm-bets__table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #1d242a;
    background: #121217;
    font-size: 12px;
    font-weight: normal;
    font-family: 'robotoBold', Arial;
    padding: 11px 0 8px 0;
    line-height: 16px;
    color: var(--yellow);
    text-transform: uppercase;
  }
  .lastm-bets__table > tbody > tr:nth-of-type(2n+1) {
    background-color: #121217;
  }
.lmb__time-td {
  width: 70px;
  max-width: 70px;
  min-width: 70px;
  text-align: center;
}
.lmb__team1-td {
  text-align: right;
}
.lmb__vs-td {
  width: 32px;
  max-width: 32px;
  min-width: 32px;
  text-align: center;
}
.lmb__team2-td {
  text-align: left;
}
.lmb__bet-td {
  width: 63px;
  max-width: 63px;
  min-width: 63px;
  text-align: center;
}
.lmb__bet-plus-td {
  width: 55px;
  max-width: 55px;
  min-width: 55px;
  text-align: center;
}
  .lmb__bet-plus-td a {
    color: white;
    cursor: pointer;
  }
    .lmb__bet-plus-td a:hover, .lmb__bet-plus-td a:focus {
      color: var(--yellow);
    }


.ps__list-container {
    display: flex;
    padding: 12px 0;
    list-style: none;
    margin: 0;
    height: 65px;
}
.ps__list-row {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  width: 100%;
  flex-grow: 1;
  color: white;
  align-self: center;
}
.ps__list-image {
  min-width: 70px;
  max-width: 70px;
  margin-right: 11px;
  background: #121217;
  min-height: 46px;
  overflow: hidden;
  align-items: initial;
}
.ps__list-image-link {
  display: block;
  cursor: pointer;
}
.ps__list-image-link img {
  width:100%;
  min-height: 50px;
  max-height: 50px;
}
.ps__list-row a {
  display: block;
  color:white;
  cursor: pointer;
}
.jp__list-container {
  display: flex;
  padding: 8px 0;
  align-items: center;
  list-style: none;
  margin: 0;
}
.jp__list-row {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  width: 100%;
  flex-grow: 1;
  color: var(--grey);
}
.jp__list-image {
  min-width: 55px;
  max-width: 55px;
  margin-right: 11px;
  background: #121217;
  min-height: 55px;
  overflow: hidden;
  align-items: initial;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
}
.jp__list-image-link {
  display: block;
  cursor: pointer;
}
  .jp__list-image-link img {
    width: 55px;
    height: 55px;
  }
.jp__name {
  display: block;
  line-height: 21px;
  font-size: 15px;
  color: var(--grey);
  cursor: pointer;
  text-transform: capitalize;
}
    .jp__name:hover, .jp__name:focus {
        /*color: white;*/
        color: var(--grey);
    }
.jp__winnings {
  font-size: 16px;
  line-height: 29px;
  display: block;
  color: var(--yellow);
}

.web_footer {
    background: #1d242a;
    color: #7a8b99;
    font-size: 13px;
    font-family: 'robotoBold', Arial;
    padding: 60px 0 40px;
}

.footer_logo{
    margin-right: 16px;
    margin-bottom: 10px;
}
.footer_copyright-text {
    font-family: 'RobotoRegular', Arial;
    margin-top: 16px;
}
.footer__line-short {
    margin: 30px 0;
    width: 100px;
    height: 1px;
    background: #36414a;
}
.footer_list_heading {
    color: #43e6ff;
    font-size: 15px;
    text-transform: uppercase;
}

.footer_list {
    margin: 24px 0 40px;
    list-style-type: none;
    padding: 0;
    text-transform: capitalize;
}
.footer_list-item{
    padding-bottom: 10px;
}
.footer_list-item-link {
    font-family: 'RobotoRegular', Arial;
    color: #bbbcbd;
    transition: .2s;
}
.footer_list-icon{
    padding-right: 10px;
}
.footer_list-item-link:hover {
    color: #43e6ff;
}
.footer__desc-text {
    margin-bottom: 20px;
    font-family: 'RobotoRegular', Arial;
    padding: 7px 0;
}
.footer__desc-heading {
    font-size: 13px;
    color: #bbbcbd;
    font-family: 'robotoBold', Arial;
    margin: 0;
    padding: 0;
}

.footer_light {
    background: #222a30;
    text-align:center;
}
.footer-light-padding{
    padding: 30px 0;
}
.footer__line-long {
    width: 100%;
    height: 1px;
    background: #36414a;
}
.providers-logo-color {
    filter: opacity(70%);
}
.payments-logo {
    filter: opacity(70%);
}
.curaco-logo{
    width: 50px;
    height:auto;
}
.footer_loght-text {
    color: #7a8b99;
    font-size: 14px;
    font-family: 'RobotoRegular', Arial;
    width: 680px;
    margin: auto;
    margin-top:20px;
}
.footerList, .footerImg {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.live-casino__main-container {
    padding: 20px 0 60px 0;
    position: relative;
    z-index: 5;
}

.live-casino__flex-container {
    display: flex;
    width: 100%;
}

.live-casino__left-column {
    flex-grow: 1;
    max-width: calc(100% - 260px);
}

.live-casino__right-column {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
    margin-left: 20px;
}

.live-casino__jackpots, .live-casino__last-winners {
    margin-bottom: 20px;
    background: #1d242a;
}

    .live-casino__jackpots .button__view-more:hover, .live-casino__jackpots .button__view-more:focus, .live-casino__last-winners .button__view-more:hover, .live-casino__last-winners .button__view-more:focus {
        color: var(--grey);
        background: rgba(0,0,0,0.2);
    }

.live-casino__slider-container {
    width: 100%;
    height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #101418;
    position: relative;
}

.games-menu__container {
    background: #101418;
    position: relative;
}

.games-menu__list {
    display: flex;
    position: relative;
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.games-menu__item {
    flex-grow: 1;
    max-width: 100%;
}

.games-menu__link, .games-menu__link:focus {
    display: block;
    padding: 17px 12px 16px 12px;
    color: var(--grey);
    font-size: 14px;
    text-align: center;
}

    .games-menu__link:hover {
        color: white;
    }

.active, .active:hover, .active:focus {
    color: var(--yellow);
}

.gm-icon {
    display: table;
    margin: 0 auto 8px auto;
    height: 35px;
}

    .gm-icon::before {
        display: block;
        content: "";
        height: 35px;
        width: 35px;
        background: url(/Content/img/icon__games-menu-sprite.png) no-repeat top left;
    }

.gm-link__all-games .gm-icon::before {
    width: 48px;
    background-position: 0 0;
}

.gm-link__live-baccarat .gm-icon::before {
    background-position: 0 -70px;
}

.gm-link__live-poker .gm-icon::before {
    background-position: 0 -140px;
}

.gm-link__live-blackjack .gm-icon::before {
    background-position: 0 -210px;
}

.gm-link__live-roulette .gm-icon::before {
    background-position: 0 -280px;
}

.gm-link__other-games .gm-icon::before {
    background-position: 0 -350px;
}

.gm-link__favorite-slots .gm-icon::before {
    background-position: 0 -420px;
}

.gm-link__popular-slots .gm-icon::before {
    background-position: 0 -490px;
}

.gm-link__newest-slots .gm-icon::before {
    background-position: 0 -560px;
}

.gm-link__video-slots .gm-icon::before {
    width: 40px;
    background-position: 0 -630px;
}

.gm-link__classic-slots .gm-icon::before {
    background-position: 0 -700px;
}

.gm-link__megaways-slots .gm-icon::before {
    background-position: 5px -1400px;
}

.gm-link__buyfreespin-slots .gm-icon::before {
    background-position: 5px -1330px;
}

.gm-link__dropsandwins-slots .gm-icon::before {
    background-position: 0 -1260px;
}

.gm-link__jackpot-slots .gm-icon::before {
    background-position: 0 -770px;
}

.gm-link__lobby .gm-icon::before {
    width: 39px;
    background-position: 0 -839px;
}

.gm-link__binary .gm-icon::before {
    width: 38px;
    background-position: 0 -910px;
}

.gm-link__horse .gm-icon::before {
    width: 36px;
    background-position: 0 -980px;
}

.gm-link__motor .gm-icon::before {
    width: 30px;
    background-position: 0 -1050px;
}

.gm-link__virtual-sports .gm-icon::before {
    width: 45px;
    background-position: 0 -1120px;
}
.gm-link__provably-fair .gm-icon::before {
    width: 31px;
    background-position: 0 -1190px;
}

.active.gm-link__all-games .gm-icon::before {
    background-position: 0 -35px;
}

.active.gm-link__live-baccarat .gm-icon::before {
    background-position: 0 -105px;
}

.active.gm-link__live-poker .gm-icon::before {
    background-position: 0 -175px;
}

.active.gm-link__live-blackjack .gm-icon::before {
    background-position: 0 -245px;
}

.active.gm-link__live-roulette .gm-icon::before {
    background-position: 0 -315px;
}

.active.gm-link__other-games .gm-icon::before {
    background-position: 0 -385px;
}

.active.gm-link__favorite-slots .gm-icon::before {
    background-position: 0 -455px;
}

.active.gm-link__popular-slots .gm-icon::before {
    background-position: 0 -525px;
}

.active.gm-link__newest-slots .gm-icon::before {
    background-position: 0 -595px;
}

.active.gm-link__video-slots .gm-icon::before {
    background-position: 0 -665px;
}

.active.gm-link__classic-slots .gm-icon::before {
    background-position: 0 -735px;
}

.active.gm-link__megaways-slots .gm-icon::before {
    background-position: 5px -1435px;
}

.active.gm-link__buyfreespin-slots .gm-icon::before {
    background-position: 5px -1365px;
}

.active.gm-link__dropsandwins-slots .gm-icon::before {
    background-position: 0 -1295px;
}

.active.gm-link__jackpot-slots .gm-icon::before {
    background-position: 0 -805px;
}

.active.gm-link__lobby .gm-icon::before {
    background-position: 0 -874px;
}

.active.gm-link__binary .gm-icon::before {
    background-position: 0 -945px;
}

.active.gm-link__horse .gm-icon::before {
    background-position: 0 -1015px;
}

.active.gm-link__motor .gm-icon::before {
    background-position: 0 -1085px;
}

.active.gm-link__virtual-sports .gm-icon::before {
    background-position: 0 -1155px;
}

.active.gm-link__provably-fair .gm-icon::before {
    background-position: 0 -1225px;
}
.active.gm-link__jackpot-slots-menu .gm-icon::before {
    background-image: url('/Content/img/duman-jackpot-slot-active-icon.png');
}
    .games-filter__container {
    background: #1d242a;
    padding: 15px;
    margin-bottom: 20px;
}

    .games-filter__container::after {
        display: block;
        content: "";
        clear: both;
        font-size: 0;
    }

.search-games__container {
    float: left;
    width: 270px;
    position: relative;
}

/*.search-games__container::after {
    display: block;
    content: "";
    width: 25px;
    height: 100%;
    min-height: 16px;
    position: absolute;
    right: 0;
    top: 0;
    background: url(../img/icon__game-search.png) no-repeat left;
    z-index: 10;
  }*/

.search-games__input, .modal-search {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0 30px 0 10px;
    border: 0;
    outline: none;
    background: #2d363e;
    color: white;
    height: 37px;
    transition: 250ms;
    -moz-transition: 250ms;
    -webkit-transition: 250ms;
    -ms-transition: 250ms;
    font-size: 14px;
}

    .search-games__input:focus, .modal-search:focus {
        background: #333c45;
    }

.LC-games__container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.LC-games__col {
    flex-grow: 1;
    max-width: calc(100% / 3);
    width: calc(100% / 3);
    padding: 0 15px;
    margin-bottom: 30px;
}

.two-columns .LC-games__col {
    width: 50%;
    max-width: 50%;
}

.LC-games__box {
    min-height: 100%;
    background: black;
    position: relative;
}

.LC-games__image-container {
    height: 195px;
    overflow: hidden;
    position: relative;
}

.two-columns .LC-games__image-container {
    height: 300px;
}

.LC-games__image {
    width: 100%;
    min-height: 100%;
    height: 100%;
    object-fit: contain;
}

.LC-games__logo-container {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 8px;
    background: rgba(17, 121, 137, 0.9);
    text-align: center;
    height: 45px;
    z-index: 5;
}

.LC-games__logo {
    max-width: 100%;
    height: 100%;
    margin: 0 auto;
}

.LC-games__name {
    background: var(--greyBg);
    display: block;
    color: var(--darkBlue);
    text-transform: uppercase;
    font-size: 17px;
    padding: 0 15px;
    line-height: 35px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -webkit-transition: 300ms;
    font-family: 'roboto', Arial;
}

    /*.LC-games__name:hover, .LC-games__name:focus {
        background: var(--yellow);
        color: black;
    }*/


.lcGame__link:hover .LC-games__name, .lcGame__link:active .LC-games__name {

    background: var(--yellow);
    color: black;

}
.search-icon {
    position: absolute;
    height: 37px;
    font-size: 18px;
    background: transparent;
    border: none;
    outline: none;
    color: #4E535A;
    right: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    right: 8px;
}

.search__form {
    position: relative;
}

.gm-link__xmas-slots .gm-icon::before {
    background-image: url('/Content/img/duman-xmas-slot-icon.gif');
    background-size: 110%;
}
.gm-link__xmas-slots-active .gm-icon::before {
    background-image: url('/Content/img/duman-xmas-slot-icon-active.gif');
    background-size: 110%;
}
.gm-link__jackpot-slots-menu .gm-icon::before {
    background-image: url('/Content/img/duman-jackpot-slot-icon.png');
    background-size: cover;
    width: 48px;
    background-position-y: -7px;
}

.gm-link__mega-multiplier .gm-icon::before {
    background-image: url('/Content/img/mega-icon.png');
    background-size: 100%;
}

.games-menu__link--active.gm-link__mega-multiplier .gm-icon::before {
    background-image: url('/Content/img/mega-icon-active.png');
    background-size: 100%;
}
.games-menu__link--active.gm-link__live-dropsAndWins .gm-icon::before {
    background-position: 0 -1295px;
}

.gm-link__live-dropsAndWins .gm-icon::before {
    background-position: 0 -1260px;
}
.category-filter__container {
  float: right;
  min-width: 170px;
  position: relative;
}

.category-filter__button {
    display: block;
    border: 1px solid #41444e;
    background: #1d242a;
    line-height: 35px;
    font-size: 14px;
    color: white;
    cursor: pointer;
    padding: 0 25px 0 10px;
    position: relative;
    z-index: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 170px;
    white-space: nowrap;
    text-transform: capitalize;
}


  .category-filter__button::after {
    position: absolute;
    right: 7px;
    top: 0;
    line-height: 35px;
    font-size: 21px;
    content: "\f107";
    font-family: 'fontAwesome';
    color: #6d7280;
  }

  .category-filter__button:hover, .category-filter__button:focus {
    color: white;
    border-color: #636876;
  }

.category-filter__container.dropdown.open .category-filter__button {
  color: white;
  border-color: #ecb50d;
}

.category-filter__dropdown-menu {
  border-radius: 0;
  box-sizing: border-box;
  background: #101418;
  border: 0;
  color: #555962;
  left: auto;
  right: 0;
  margin: 0;
  min-width: 100%;
  width: 649px;
  padding: 11px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.8);
  position: absolute;
  /*z-index: 501;*/
 
}

.slot__categories {
    max-height: 300px;
    overflow-y: scroll;
}



    .slot__categories::-webkit-scrollbar {
        width: 16px;
        background-clip: padding-box;
    }

    .slot__categories::-webkit-scrollbar-track {
        background-color: #2d303b;
        /*height: 8px;
    background-clip: padding-box;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
    }

    .slot__categories::-webkit-scrollbar-thumb {
        /*background-clip: padding-box;*/
        background-color: #64b000 !important;
        width: 100%;
        height: 40px;
        /*border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
    }

    .slot__categories::-webkit-scrollbar-button {
        display: none;
    }


.category-filter__container.dropdown::before {
  position: fixed;
  z-index: 450;
  content: "";
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
}

.category-filter__container.dropdown.open::before {
  display: block;
}

.category-filter__dropdown-menu::after {
  display: block;
  content: "";
  clear: both;
}

.category-filter__link, .category-filter__link:hover, .category-filter__link:focus {
    float: left;
    width: 200px;
    display: flex;
    margin: 1px;
    padding: 13px 10px;
    font-size: 14px;
    color: #555962;
    cursor: pointer;
    background: #181e23;
}


    .category-filter__link:hover {
        background: #101418;
        color: white;
    }

.category-filter__link--active {
    color: white;
    background: #101418;
}

.category-filter__cat-logo {
  width: 20px;
  max-width: 20px;
  min-width: 20px;
  height: 19px;
  margin-right: 8px;
}

.category-filter__cat-name {
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.category-filter__games-number {
  white-space: nowrap;
  color: #ecb50d;
  font-size: 13px;
  margin-left: 5px;
}

.sort-filter__container {
  display: flex;
  float: right;
  font-size: 0;
  padding: 0 0 0 17px;
  align-items: center;
  margin-left: 23px;
  border-left: 1px solid rgba(255,255,255,0.15);
  min-height: 37px;
}

.sort-filter__link {
  margin: 0 5px;
  display: block;
}

.sort-filter__icon::before {
    display: block;
    width: 20px;
    height: 20px;
    content: "";
    background: url(/Content/img/icons__sort-by-sprite.png) no-repeat top left;
}

.sort-filter__bydate::before {
  background-position: 0 0;
}

.sort-filter__link--active .sort-filter__bydate::before {
  background-position: 0 -20px;
}

.sort-filter__byname::before {
  background-position: 0 -40px;
}

.sort-filter__link--active .sort-filter__byname::before {
  background-position: 0 -60px;
}

.openby-filter__container {
  display: flex;
  float: right;
  font-size: 0;
  padding: 0 0 0 17px;
  align-items: center;
  margin-left: 17px;
  border-left: 1px solid rgba(255,255,255,0.15);
  min-height: 37px;
}

.openby-filter__link, .openby-filter__link:focus {
  font-size: 19px;
  color: #525765;
  cursor: pointer;
  margin: 0 5px;
}

  .openby-filter__link i {
    line-height: 16px;
    display: block;
  }

  .openby-filter__link .fa-external-link {
    padding-top: 3px;
  }

  .openby-filter__link:hover {
    color: #858c91;
  }

.openby-filter__link--active, .openby-filter__link--active:hover, .openby-filter__link--active:focus {
  color: #ecb50d;
}

.provider-bet-dropdown-menu {
    background: #0b121b;
    width: 600px;
    height: 300px;
    border-radius: 30px;
    transform: translate3d(-762px, 18px, 0px);
    padding: 16px
}

.filter-dropdown-content {
    width: 98%;
    background: #1b1f28;
    border-radius: 20px;
    color: #747475;
    padding: 10px;
    height: 196px;
}

.prodacts-filter-container {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 3px;
}

.products-search-container {
    display: grid;
    grid-template-columns: 80% 30%;
    align-items: center;
    margin-bottom: 20px;
}

.clearButton {
    background: #a3a3a3;
    border-radius: 16px;
    border: none;
    padding: 5px 17px;
    margin-left: 20px;
}

.products-navigation-filter-dropdown-head, .bet-amount-filter-dropdown-head {
    background: #131314;
    border-radius: 38px;
    color: #64b000;
    margin-bottom: 10px;
    padding: 2px;
}

    .products-navigation-filter-dropdown-head h3, .bet-amount-filter-dropdown-head h3 {
        padding-left: 20px;
        font-size: 21px !important;
        margin-bottom: 0.2rem;
        margin-top: 0px !important;
    }

.products-navigation-filter-dropdown {
    overflow-y: scroll;
    /*height: 135px;*/
    height: 119px;
    margin-top: 1.5rem;
    margin-right: 11px;
    padding: 0px 18px 0px 12px;
}


    .products-navigation-filter-dropdown::-webkit-scrollbar {
        width: 8px;
    }


    .products-navigation-filter-dropdown::-webkit-scrollbar-track {
        background: #262d37;
        border-radius: 10px;
    }

    .products-navigation-filter-dropdown::-webkit-scrollbar-thumb {
        background: #60a901;
        border-radius: 10px;
    }



.live-casino__proviers-dropdown-menu .rounded-pill {
    width: 100%;
    background-color: #1b1f28;
    border-radius: 30px !important;
    height: 35px;
    border: 0;
    padding: 12px 0;
    position: relative;
    color: #444141;
    padding-left: 25px;
    padding-right: 30px;
    font-size: 12px;
    font-family: gilroy-regular;
}

.live-casino__proviers-dropdown-menu .old-rounded-pill {
    width: 100%;
    background-color: #1d1c21;
    border-radius: 4.8px !important;
    border: 0;
    padding: 12px 0;
    position: relative;
    color: #fff;
    padding-left: 13px;
    padding-right: 30px;
    font-size: 12px;
    font-family: gilroy-regular;
}

.live-casino__proviers-dropdown-menu input::placeholder {
    color: #444141 !important;
}

.live-casino__proviers-dropdown-menu .old-rounded-pill::placeholder {
    color: white !important;
}

.search-button {
    position: absolute;
    right: 129px;
    background: #64b000;
    border-radius: 17px;
    padding: 7px 11px;
    color: #fff;
    border: none;
}

.products-navigation-filter-option label, .providers-filter-list-item label {
    /*margin-bottom: 1rem;*/
    margin-left: 1rem;
    color: #747475;
    font-weight: 500;
    font-size: 17px;
}

.products-navigation-item-providers, .products-navigation-item-providers:hover, .products-navigation-item-providers:focus {

    display: grid;
    grid-template-columns: 10% 80% 10%;
    background: #1b1f28;
    color: #70778d !important;
    margin-bottom: 1rem;
    padding: 0px;
}

    .products-navigation-item-providers label {
        color: #747475;
        font-weight: 500;
        font-size: 17px;
    }

.products-navigation-item-providers img {
    padding-left: 5px;
}

.products-navigation-filter-option {
    margin-bottom: 1rem;
    margin-left: 5px;
    position: relative;
}

.providers-filter-list-item:hover {
    pointer-events: none !important;
}

.bet-amount-filter-dropdown-content {
    margin-left: 5px;
}

.products-navigation-filter-providers-option {
    position: relative;
}

    .products-navigation-filter-option input.form-check-input, .products-navigation-filter-providers-option input.form-check-input {
        background-color: #1b1f28;
        border: 2px solid #37add4;
        border-radius: 0px !important;
        padding: 7px;
    }

.providers-filter-list-item img {
    margin-left: 0.5rem;
}

.products-navigation-filter-option input.form-check-input:focus, .products-navigation-filter-providers-option input.form-check-input:focus {
    border-color: #737374;
}

.filter-checkmark {
    position: absolute;
    background-color: #1b1f28;
    border: 2px solid #64b000;
    top: 50%;
    /*left: 5px; 
    transform: translateY(-50%); */
    left: 0px;
    transform: translateY(-64%);
    height: 18px;
    width: 18px;
}

.products-navigation-filter-option input:checked ~ .filter-checkmark, .products-navigation-filter-providers-option input:checked ~ .filter-checkmark {
    background-color: #1b1f28;
}

.filter-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.products-navigation-filter-option input:checked ~ .filter-checkmark:after, .products-navigation-filter-providers-option input:checked ~ .filter-checkmark:after {
    display: block;
}

.products-navigation-filter-option .filter-checkmark:after, .products-navigation-filter-providers-option .filter-checkmark:after {
    left: 4px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid lime;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.slot__box {
  padding: 14px 12px 14px 7px;
  position: relative;
}

.slot__image-container {
    position: relative;
    width: 100%;
    height: 130px;
    overflow: hidden;
    background: #101418;
}

.slot__image {
  width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: contain;
}

.slot__dropsandwins-img {
    width: 70px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.slot-buttons__container {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  z-index: 30;
  width: 100%;
  height: 100%;
  align-items: center;
  display: flex;
  font-size: 0;
  transition: 250ms;
  -moz-transition: 250ms;
  -ms-transition: 250ms;
  -webkit-transition: 250ms;
  opacity: 0;
  filter: alpha(opacity=0);
}

  .slot-buttons__container:hover {
    opacity: 1;
    filter: alpha(opacity=100);
  }

.slot-buttons__box {
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.slot-button__star, .slot-button__smile {
  display: inline-block;
  width: 27px;
  height: 27px;
  background: #cfcfcf;
  border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -webkit-border-radius: 30px;
  color: #101418;
  font-size: 17px;
  line-height: 27px;
  margin: 0 5px;
  text-align: center;
}

    .snfavact,
    .slot-button__star:hover,
    .slot-button__star:focus,
    .slot-button__smile:hover,
    .slot-button__smile:focus {
        background: #64b000;
        color: black;
    }

.slot-button__play, .slot-button__play:focus {
  font-size: 55px;
  display: inline-block;
  border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -webkit-border-radius: 50px;
  color: #cfcfcf;
  line-height: 48px;
  margin: 0 5px;
  width: 48px;
  max-width: 48px;
  text-align: center;
}

  .slot-button__play i {
    line-height: 48px;
  }

    .slot-button__play:hover {
        color: #64b000;
    }

.slot__game-title {
  padding-top: 10px;
  font-size: 14px;
  color: var(--grey);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.slot__game-SlotPageName {
    font-size: 12px;
    padding-top: 0;
    color: var(--grey);
}

.lastplayed-content, .sameProviders__content {
    padding: 25px 15px 25px 15px;
}






.lp__title-bar, .sameProviders__title {
    background: #101418;
    color: white;
    cursor: pointer;
}

    .lp__title-bar::after, .sameProviders__title::after {
        display: block;
        font-family: 'fontAwesome';
        content: "\f106";
        position: absolute;
        right: 10px;
        top: calc(50% - 12px);
        font-size: 26px;
        color: rgba(255,255,255,0.2);
        line-height: 20px;
    }

    .lp__title-bar.open::after, .sameProviders__title.open::after {
        content: "\f107";
        top: calc(50% - 10px);
    }

.slots-carousel__container {
  width: calc(100% - 30px);
  margin: 0 auto;
}

  .slots-carousel__container .slick-prev, .slots-carousel__container .slick-next {
    top: calc(50% - 15px);
    left: -22px;
    height: auto;
  }

  .slots-carousel__container .slick-next {
    left: auto;
    right: -22px;
  }

    .slots-carousel__container .slick-prev::before, .slots-carousel__container .slick-next::before {
      font-family: 'fontAwesome';
      font-size: 40px;
      opacity: 1;
      content: "\f104";
    }

    .slots-carousel__container .slick-next::before {
      content: "\f105";
    }

  .slots-carousel__container .slick-arrow::before, .slots-carousel__container .slick-arrow::before {
    color: inherit;
  }

  .slots-carousel__container .slick-arrow, .slots-carousel__container .slick-arrow {
    color: rgba(255,255,255,0.2);
  }

    .slots-carousel__container .slick-arrow:hover, .slots-carousel__container .slick-arrow:focus {
        color: #64b000;
    }

.slots-view__content {
  padding: 25px 12px 0 12px;
}

.slots-view__container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.slots-view__col {
  width: 25%;
  max-width: 25%;
  padding: 0 15px 30px 15px;
}

.slots-view__container .slot__game-title {
  white-space: inherit;
  overflow: auto;
  text-overflow: inherit;
}

.slot-tabs {
  display: block;
  float: left;
  margin-left: 10px;
  padding: 1px 1px 0 0;
}

.slot-tab__icon {
  display: block;
}

    .slot-tab__icon::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: url(/Content/img/icon__slots-tabs.png) no-repeat top left;
    }

.slot-tab__blocks::before {
  background-position: 0 0;
}

.slot-tab__list::before {
  background-position: 0 -40px;
}

.slot-tabs--active .slot-tab__blocks::before {
  background-position: 0 -20px;
}

.slot-tabs--active .slot-tab__list::before {
  background-position: 0 -60px;
}

.games-filter__container--inner {
  padding: 10px 15px;
  margin-bottom: 15px;
}

  .games-filter__container--inner .openby-filter__container {
    float: left;
    border: 0;
    margin: 0;
    padding: 0 17px 0 0;
  }

.openby-filter__text {
  display: block;
  font-size: 14px;
  color: var(--grey);
  padding-right: 15px;
}

.slot-inner__container {
  margin-bottom: 15px;
}

.slot__inner-title {
  background: #101418;
  display: flex;
  color: white;
  text-transform: inherit;
}

.inner-slot-name {
  flex-grow: 1;
  max-width: calc(100% - 17px);
}

.slot__close-button {
  text-align: center;
  display: block;
  font-size: 22px;
  color: var(--grey);
  cursor: pointer;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

  .slot__close-button:hover {
    color: var(--yellow);
    opacity: 1;
    filter: alpha(opacity=100);
  }

.slot-opened__container {
  position: relative;
  background: black;
  overflow: hidden;
}

  .slot-opened__container img, .slot-opened__container iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

.slot__background-image-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 450px;
  z-index: -1;
}

    .slot__background-image-container::after {
        display: block;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        background: url(/Content/img/slot-bacground.png) repeat-x bottom left;
        height: 389px;
    }

  .slot__background-image-container img {
    width: 100%;
    opacity: 0.6;
    filter: alpha(opacity=60);
  }

.slot-fullscreen__container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  background-position: center;
  background-size: cover;
  padding: 64px 7px 7px 7px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.slot-fullscreen__filter {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 10px 20px;
  background: rgba(24,30,35,0.8);
  z-index: 400;
}

  .slot-fullscreen__filter .openby-filter__container {
    float: left;
    border: 0;
    margin: 0;
    padding: 0 17px 0 0;
  }

.slot__close-button--fullscreen {
  position: absolute;
  right: 20px;
  font-size: 24px;
}

.slot-fullscreen__slot {
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  width: 1200px;
  max-width: 1200px;
  min-width: 1200px;
  background: black;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  overflow: hidden;
}

  .slot-fullscreen__slot img, .slot-fullscreen__slot iframe {
    width: 100% !important;
    max-width: 100% !important;
  }

.slot-blocks__column {
  width: 50%;
  height: 50%;
  box-sizing: border-box;
  padding: 7px;
  margin: 0 auto;
}

.slot-blocks__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  border: 1px solid #2e3038;
  background: #181e23;
  overflow: hidden;
  position: relative;
}

.btn-select-new, .btn-select-new:focus {
  min-width: 240px;
  height: 50px;
  margin: 0 auto;
  background: none;
  border: 1px solid var(--yellow);
  color: var(--yellow);
}

  .btn-select-new:hover {
    background: var(--yellow);
    color: black;
    border-color: var(--yellow);
  }

  .btn-select-new i {
    margin-left: 7px;
  }

.slot-blocks__content iframe, .slot-blocks__content img {
  max-width: 100% !important;
  height: 100% !important;
  margin: 0 auto !important;
  width: 100%;
}

.refresh-slot__button, .refresh-slot__button:focus {
  position: absolute;
  z-index: 400;
  left: 14px;
  top: 7px;
  color: var(--grey);
  cursor: pointer;
  font-size: 21px;
}

  .refresh-slot__button:hover {
    color: var(--yellow);
  }

.close-slot__button, .close-slot__button:focus {
  position: absolute;
  z-index: 400;
  right: 13px;
  top: 6px;
  color: var(--grey);
  cursor: pointer;
  font-size: 21px;
}

  .close-slot__button:hover {
    color: var(--yellow);
  }


.sn-listview {
    display: none;
}

.ui-helper-hidden-accessible {
    display: none;
}


.sn-filt-search {
    position: relative;
}

    .sn-filt-search .form-control {
        width: 280px;
        padding-right: 30px;
        height: 34px;
    }

    .sn-filt-search span {
        position: absolute;
        right: 1px;
        top: 1px;
    }

        .sn-filt-search span input {
            display: block;
            width: 30px;
            height: 32px;
            border: 0;
            outline: none;
            box-sizing: border-box;
            background: #2d303b url(/Content/img/sn-search.png) no-repeat center;
            opacity: 0.4;
            filter: alpha(opacity="40");
            transition: 250ms;
            -moz-transition: 250ms;
            -ms-transition: 250ms;
            -webit-transition: 250ms;
        }

            .sn-filt-search span input:hover {
                opacity: 1.0;
                filter: alpha(opacity=100);
            }






.ui-autocomplete {
    max-height: 350px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    
}

ui-autocomplete li a {
    color: #646873;
    border: none;
}

.ui-autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: left;
    display: none;
    min-width: 160px;
    _width: 160px;
    width: 270px;
    padding: 4px 0;
    margin: 2px 0 0 0;
    list-style: none;
    background-color: #323B43;
    border-color: #ccc;
    border-color: rgba(0, 0, 0, 0.2);
    border-style: solid;
    border-width: 1px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}


/*li.ui-menu-item:hover{background-color:#ccc; 
  color: red!important;
}*/





li.ui-menu-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    border-bottom: 1px solid #272F36 !important;
    transition: background 200ms;
    width: 100% !important;
}

li.ui-menu-item:hover {
    background: #272F36;
}
    li.ui-menu-item:hover a {
        color: #64b000;
        cursor: pointer;
        border: none;
    }



.ui-autocomplete::-webkit-scrollbar, .slots__list__items #slotcontainer::-webkit-scrollbar {
    width: 16px;
    background-clip: padding-box;
}

.ui-autocomplete::-webkit-scrollbar-track, .slots__list__items #slotcontainer::-webkit-scrollbar-track {
    background-color: #2d303b;
    /*height: 8px;
    background-clip: padding-box;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
}

.ui-autocomplete::-webkit-scrollbar-thumb, .slots__list__items #slotcontainer::-webkit-scrollbar-thumb {
    /*background-clip: padding-box;*/
    background-color: #64b000 !important;
    width: 100%;
    height: 40px;
    /*border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
}

.ui-autocomplete::-webkit-scrollbar-button, .slots__list__items #slotcontainer::-webkit-scrollbar-button {
    display: none;
}


.slots__list {
    position: relative;
    width: 100vw;
    height: 100vh;


}
.slots__list__items #slotcontainer {
    max-height: 300px;
    overflow-y: scroll;
    margin-top: 50px;
}






.sn-listview, .sn-blockview {
    padding: 0 !important;
    /*padding-bottom: 15px !important;*/
    min-height: 90px;
}



.sn-listview-block1 {
    color: #646873;
    display: inline-block;
    margin: 0 0 30px 0;
    max-width: 100%;
    white-space: nowrap;
    cursor: pointer;
    line-height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
}



.sn-listview-block1 img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    width: 19px;
}


.sameProviderGamesSlick .slots-view__col {
    width: auto;
    max-width: 100%;
    padding: inherit;
}


.games-menu__item span, .category-filter__cat-name {
    text-transform: capitalize;
}


.slots_partials--cont {
    background: #1D242A;
}
.deposit__box-container {
  position: relative;
}

.deposit__box-main-container .deposit__box-container .deposit__box-flex {
  background: #181e23;
}

.deposit__box-main-container .deposit__box-container:nth-child(2n+1) .deposit__box-flex {
  background: #101418;
}

.deposit__box-content {
  background: #1d242a;
  padding: 25px 50px;
  position: relative;
}

.close-deposit-content, .close-deposit-content:focus {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 10;
  color: var(--grey);
  cursor: pointer;
  font-size: 20px;
  line-height: 20px;
}

  .close-deposit-content:hover {
    color: var(--red);
  }

.deposit-content__title {
  font-size: 17px;
  color: var(--yellow);
  font-family: 'robotoBold', Arial;
  display: block;
  padding: 0;
  margin: 0 0 20px 0;
}

.deposit-content::after {
  content: "";
  display: block;
  clear: both;
}

.deposit-content__left {
  float: left;
  width: 480px;
}

.deposit-content__right {
  float: right;
  width: 410px;
}

.deposit__box-flex {
  display: flex;
  width: 100%;
  max-width: 100%;
  cursor:pointer;
}

.deposit__box-col {
  flex-grow: 1;
  padding: 10px 0 10px 15px;
  margin-right: 15px;
}

.deposit__box-col--logo {
  min-width: 210px;
  max-width: 210px;
  background: rgba(0,0,0,0.3);
  padding: 10px;
  text-align: center;
  align-self: center;
}

  .deposit__box-col--logo img {
    max-width: 100%;
    max-height: 80px;
    margin: 0 auto;
  }

.deposit__box-col--fee {
  min-width: 230px;
  max-width: 230px;
}

.deposit__box-col--time {
  min-width: 230px;
  max-width: 230px;
}

.deposit__box-col--limit {
  min-width: 185px;
  max-width: 185px;
}



.deposit__col-title {
  line-height: 24px;
  color: var(--yellow);
  font-size: 16px;
  padding-top: 5px;
}

.deposit__col-description {
  line-height: 20px;
  color: var(--grey);
  font-size: 14px;
}

.deposit__label-md {
  width: 35%;
  padding-right: 10px;
  color: #cccccc;
  float:left;
}
.deposit__col-md {
  width: 65%;
  float:left;
}
.deposit__col-offset-md {
  margin-left: 35%;
}
.info-block__container {
  background: #272f36;
}
  .info-block__container .block__content {
    padding:13px 20px 8px 20px;
    color: var(--grey);
    font-size: 14px;
    line-height: 20px;
  }















/*--------  OLD DEPOSIT STYLES ----------*/



.clear {
    clear: both;
}


.leftmenu1 {
    float: left;
    width: 270px;
    font-size: 14px;
    color: white;
}

.profilemain1 {
    width: 100%;
}

.leftmenu2 {
    padding: 0 20px;
    text-align: left;
    background: #020202;
    color: #64b000;
    font-size: 14px;
    text-transform: uppercase;
    font-family: 'robotoBold';
    line-height: 45px;
}

.leftmenu3 {
    padding: 10px 0;
    background: #090a0c;
    line-height: 39px;
}

.leftmenu4 {
    padding-bottom: 1px;
    font-size: 14px;
}

    .leftmenu4 a {
        display: block;
        color: #474b58;
        text-decoration: none;
        cursor: pointer;
        padding: 0 20px;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
    }

        .leftmenu4 a:hover {
            background: #20232b;
            color: #64b000;
        }

.lmact a {
    background: #20232b;
    color: #64b000;
}

.deposit1 {
    padding: 0;
    background: #181e23;
    color: var(--grey);
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
}

    .deposit1 span {
        color: #64b000;
        font-family: 'roboto';
        font-size: 16px;
        line-height: 24px;
    }





.deposit2 {
    float: left;
    width: 210px;
    height: 100px;
    background: #111518;
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .deposit2 img {
        width: 150px;
        height: 80px;
    }

.deposit3 {
    /*float: left;*/
    width: 238px;
    /*padding: 20px 10px 0 30px;*/
    padding: 20px 0 0 0 ;

}

.deposit4, .deposit5 {
    /*float: left;*/
    width: 150px;
    /*padding-top: 20px;*/
    padding: 20px 0 0 0;
}

.dep_open1 {
    padding: 25px 20px 30px 30px;
    background: #1d242a;
    display: none;
}

.float {
    float: left;
}
.float2 {
    float: right;
}

.dep_open2 {
    font-size: 16px;
    color: #64b000;
    padding-bottom: 16px;
    font-family: 'robotoBold';
}

.dep_open2 a {
    font-size: 20px;
}

    /*.dep_open2 a {
        display: block;     
        margin-top: -5px;
        cursor: pointer;
    }
        .dep_open2 a i {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            background: #858c91;
            color: #1d242a;
            font-size: 16px;
            border-radius: 50%;
        }

        .dep_open2 a i:hover {
            background: #e74c3c;
        }*/

.depbg {
    background: #101418 !important;
}

    .depbg .deposit2 {
        background: #0b0e11;
    }

.dep_open3 {
    float: left;
    width: 440px;
}

.dep_open4 {
    float: right;
    width: 450px;
    font-size: 14px;
    color: var(--grey);
    padding: 0 15px 18px 15px;
    background: #272f36;
    box-sizing: border-box;
}

.dep_open4_1 {
    padding: 10px 0 10px 15px;
    border-bottom: 1px solid #101115;
    margin: 0 -15px 10px -15px;
    background: #d1d6d9;
    color: black;
    font-size: 15px;
    text-transform: uppercase;
}

.dep_open4_2 {
    padding-bottom: 6px;
    /*color: #858c91;*/
}

    .dep_open4_2 img {
        vertical-align: top;
        margin-right: 3px;
    }

.dep_open3_1 {
    padding: 10px 0 12px 10px;
    background: black;
    color: #64b000;
    font-size: 15px;
    text-transform: uppercase;
}

.dep_open3_2 {
    padding: 14px 13px;
    background: #111111;
    color: #999999;
    font-size: 13px;
}

.dep_open3_2_1 {
    float: left;
    padding: 6px 8px 0 0;
}

.dep_open3_2_2 {
    float: left;
    padding: 0 10px 0 0;
    font-size: 14px;
}

    .dep_open3_2_2 input {
        width: 70px;
        height: 27px;
        border: 0;
        padding-left: 6px;
        background: #cccccc;
        border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -webkit-border-radius: 2px;
        color: #333333;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2);
    }

        .dep_open3_2_2 input:hover {
            background: white;
        }

    .dep_open3_2_2 a {
        display: block;
        height: 29px;
        line-height: 26px;
        background: #64b000;
        color: black;
        text-decoration: none;
        padding: 0 12px;
        cursor: pointer;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        border: 1px solid #64b000;
    }

    .dep_open3_2_2 span {
        font-size: 22px;
        padding-left: 4px;
        vertical-align: top;
    }

    .dep_open3_2_2 a:hover {
        color: #64b000;
        background: black;
    }

.dep_open3_2_3 {
    float: left;
    padding: 0 10px 0 0;
    font-size: 14px;
}

    .dep_open3_2_3 a {
        display: block;
        height: 29px;
        line-height: 26px;
        color: #64b000;
        background: black;
        text-decoration: none;
        padding: 0 12px;
        cursor: pointer;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        border: 1px solid #64b000;
    }

    .dep_open3_2_3 span {
        font-size: 22px;
        padding-right: 4px;
        vertical-align: top;
    }

    .dep_open3_2_3 a:hover {
        background: #64b000;
        color: black;
    }

.dep_open3_2_4 {
    float: left;
    padding-right: 20px;
}

    .dep_open3_2_4 span {
        color: #64b000;
    }

.dep_open3_2_5 {
    float: left;
    width: 170px;
    font-weight: bold;
}

.dep_open3_2_6 {
    padding-bottom: 9px;
}

    .dep_open3_2_6 select {
        width: 178px;
        height: 30px;
        border: 0;
        padding-left: 6px;
        background: #cccccc;
        border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        -webkit-border-radius: 2px;
        color: #333333;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
    }

        .dep_open3_2_6 select:hover {
            background: white;
        }

.dep_open5 {
    float: left;
    width:35%;
    color: #cccccc;
    font-size: 14px;
    line-height: 20px;
    padding-top: 6px;
}

.dep_open5_1 {
    float: left;
    width: 65%;
    padding-bottom: 10px;
}

    .dep_open5_1 input {
        width: 100%;
        height: 35px;
        box-sizing: border-box;
        border: 1px solid #373a44;
        padding: 5px 8px;
        background-color: #2d363e;
        border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -webkit-border-radius: 0;
        color: #cccccc;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        box-shadow: none;
        outline: none;
    }

        
        .dep_open5_1 input:focus {
           
            box-shadow: none;
            background-color: #333c45;
        }



    .dep_open5_1 select {
        width: 100%;
        height: 35px;
        box-sizing: border-box;
        border: 1px solid #373a44;
        padding: 5px 8px;
        padding-right: 26px;
        background: #373a44;
        border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -webkit-border-radius: 0;
        color: #cccccc;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        box-shadow: none;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
        -ms-appearance: none;
        appearance: none;
        background-image: url(/Content/img/sn-selar.png);
        background-position: right;
        background-repeat: no-repeat;
    }

        .dep_open5_1 select::-ms-expand {
            display: none;
        }

        .dep_open5_1 select:hover {
            border: 1px solid #64b000;
        }

.dep_open5_2 {
    float: left;
    padding: 0 0 10px 0;
}

    .dep_open5_2 select {
        width: 110px;
        height: 35px;
        box-sizing: border-box;
        border: 1px solid #373a44;
        padding: 5px 8px;
        background: #373a44;
        border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -webkit-border-radius: 0;
        color: #cccccc;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        box-shadow: none;
        outline: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        -o-appearance: none;
        -ms-appearance: none;
        appearance: none;
        background-image: url(/Content/img/sn-selar.png);
        background-position: right;
        background-repeat: no-repeat;
    }

        .dep_open5_2 select::-ms-expand {
            display: none;
        }

        .dep_open5_2 select:hover {
            border: 1px solid #64b000;
        }

.dep_open5_but {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 24px;
    text-align: center;
    float: right;
    margin-right: 15px;
}

    .dep_open5_but a {
        display: inline-block;
        color: white;
        border: 0;
        text-decoration: none;
        background: #64b000;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        cursor: pointer;
        padding: 6px 50px 6px 50px;
        box-sizing: border-box;
        margin-top: 8px;
    }

        .dep_open5_but a:hover {
            background: #7ebb2f;
            color: white;
        }

        .dep_open5_but a span {
            font-size: 27px;
            vertical-align: top;
            line-height: 18px;
        }

.trans_ok {
    display: table;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 6px 10px 8px 25px;
    background: #27ae60 url(/Content/themes/v1/img/ok.png) no-repeat left;
    width: 428px;
}

.trans_error {
    display: table;
    margin-bottom: 5px;
    font-size: 14px;
    color: #d8281b;
    padding: 6px 10px 8px 25px;
    /*background: #e74c3c url(../themes/v1/img/no.png) no-repeat left;*/
    background: #1A2026;
    width: 428px;
}

    .trans_error:before {
        content: "\f05a";
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        color: #d8281b;
        margin-right: 4px;
    }

.trans_processing {
    display: table;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 6px 10px 8px 25px;
    background: #ECB50D url(/Content/themes/v1/img/no.png) no-repeat left;
    width: 428px;
}

.trans_cancel_but {
    display: table;
    margin-bottom: 5px;
    font-size: 14px;
    color: white;
    padding: 2px 10px 2px 25px;
    background: #d8281b url(/Content/img/no.png) no-repeat left;
    cursor: pointer;
}



.dep_div1 {
    position: relative;

}






.sn-hovicon1 {
    /*float: left;
    margin-top: 11px;
    width: 27px;
    height: 27px;*/
    text-align: center;
    line-height: 28px;
    position: absolute;
    left: 7px;
    top: 4px;
    font-size: 16px;
    color: var(--grey);
   
    cursor: pointer;
}

    .sn-hovicon1 .fa-star {
        display: none;
    }

.sn-hovicon2 {
    float: left;
    margin: -5px 9px 0 9px;
    background: none !important;
    color: #cfcfcf !important;
    font-size: 59px;
    height: 57px;
    line-height: 50px;
}

    .sn-hovicon2:hover, .sn-hovicon2:focus {
        color: #27ae60 !important;
    }

/*.snfavact {
    background: #ECB50D;
    color: #101418;
}*/

    .snfavact .fa-star {
        display: inline-block;
    }

    .snfavact .fa-star-o {
        display: none;
    }




.float2 .dep_close:hover {

    color: #d8281b;
}




















.favorite-link, .favorite-link:focus {
    position: absolute;
    left: 7px;
    top: 4px;
    font-size: 16px;
    color: var(--grey);
    opacity: 0.3;
    filter: alpha(opacity=30);
    cursor: pointer;
}

    .favorite-link:hover {
        opacity: 0.8;
        filter: alpha(opacity=80);
    }

.favorite-link--active, .favorite-link--active:hover, .favorite-link--active:focus {
    color: var(--yellow);
    opacity: 1;
    filter: alpha(opacity=100);
}

.dep_instruction-text {
    text-transform: capitalize;
    margin: 8px 0 0;
}

.modal-deposit-instruction .modal-header {
    background-color: #437600;
    border-bottom: 4px solid white;
}

.modal-deposit-instruction .modal-header .close {
    color: white;
    opacity: 1;
    font-size: 27px;
}

.modal-deposit-instruction .modal-header .modal-title {
    color: white;
    text-align: center;
}

.modal-deposit-instruction .modal-body {
    background-color: #2f5103;
}

.modal-deposit-instruction .modal-footer {
    padding: 0;
}

    .modal-deposit-instruction .modal-footer h5 {
        text-align: center;
        color: #272b28;
        background-color: white;
        padding: 7px 0;
        font-weight: bold;
        margin: 0;
        border-bottom: solid 14px #2f5103;
        font-size: 19.5px;
    }

.dep_instruction-item {
    position: relative;
}

    .dep_instruction-item > div {
        font-size: 36px;
        color: white;
        background: url(../../Content/img/deposit_instructions/dep_instruction-icon-bg.png) no-repeat;
        background-size: cover;
        display: flex;
        border-radius: 50%;
        width: 70px;
        height: 70px;
        line-height: normal;
        position: absolute;
        left: calc(50% - 35px);
        top: 0px;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }

    .dep_instruction-item img {
        max-width: 100%;
        margin-top: 35px;
    }

    .dep_instruction-item p {
        margin: 0;
        text-align: center;
        color: white;
        position: absolute;
        font-size: 15px;
        top: 345px;
        width: 100%;
    }

        .dep_instruction-item p span {
            color: #f5b333;
        }





















.new-message-li {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: right;
}

.message__container {
  padding-bottom: 5px;
}

.message__click, .message__click:focus {
  color: var(--grey);
  font-size: 14px;
  padding:0 30px;
  border: none;
  height: 60px;
  background-color: #101418;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: none;
}

.message__click p {
    margin-bottom: 0;
}

.message__subject{
    color: var(--yellow);
    padding-right:20px;
}

.message__content {
    color: #cccccc;
    font-size: 14px;
    background-color: #1d242a;
    padding: 30px;
}

.message__click.collapsed {
  background-color: #303a42;
  transition: 250ms;
  -moz-transition: 250ms;
  -ms-transition: 250ms;
  -webkit-transition: 250ms;
}

  .message__click.collapsed:hover {
    background-color: #38434d;
  }




.msg_del {
    font-size: 20px;
    transition:color 200ms;
    display: none;

}

.msg_del:hover {
    color: #e74c3c;
   
}

.message__container:hover .msg_del {
    display: block;
}


.msg_textarea {
    /*max-width: 1164px;*/
    width: 100%;
    height: 210px;
    border: none;
    margin: 0px 0px 5px;
    background-color: transparent;
}

    .msg_textarea::-webkit-scrollbar {
        width: 1em;
    }

    .msg_textarea::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }


    .msg_textarea::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid #1d242a;
        
    }

    .msg_textarea::-webkit-scrollbar-corner {
        background-color: #22242d;
        border: none;
    }

    .msg_textarea::-webkit-resizer {
        border: none;
    }



.reply-btn {
    background: #64b000;
    color: white;
}

.reply-btn:hover {
    color: white;
}





.message__header {
    position: relative;
}



.message__header--unread .message__click.collapsed {
    background-color: #38434d;
    color: white;
}

    .message__header--unread .message__click.collapsed::before {
        display: block;
        content: "";
        width: 3px;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 5;
        background: #64b000;
    }

    .message__header--unread .message__click.collapsed:hover {
        background-color: #3d4954;
    }

.message__header--unread .message__click, .message__header--unread .message__click:focus {
    color: var(--grey);
    background-color: #101418;
}

    .message__header--unread .message__click::before {
        display: none;
    }
.transfer_user1 {
    margin: 0 auto;
    width: 500px;
    background: #1d242a;
    padding: 30px 75px 50px 75px;
}

.transfer__form--img {
  padding: 0 0 28px 0;
}

.transfer__form--header {
  display: block;
  font-size: 16px;
  color: var(--yellow);
  margin: 0 0 30px 0;
  padding: 0;
  text-transform: uppercase;
  text-align: center;
}

.transfer__form--input, .transfer__form--input:focus, .transfer__form--input:disabled {
  background: none;
  border: 0;
  border-bottom: 2px solid #2d363e;
  color: #cccccc;
  font-size: 14px;
  transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -webkit-transition: 300ms;
  box-shadow: none;
  height: 40px;
  padding-left: 2px;
  padding-right: 0;
}

  .transfer__form--input::placeholder {
    color: var(--grey);
  }

  .transfer__form--input:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 2px solid #ecb50d;
  }

.transfer__form--button {
  padding: 12px 12px 11px 12px;
  line-height: 15px;
}

.transfer__form--converted-amount {
  position: absolute;
  z-index: 5;
  right: 2px;
  top: calc(50% - 8px);
  line-height: 16px;
  text-align: right;
  display: block;
  font-size: 14px;
  color: var(--yellow);
}

.transfer__icon {
  display: block;
  text-align: center;
  font-size: 0;
}

  .transfer__icon::before {
    display: inline-block;
    content: "";
    width: 101px;
    height: 90px;
    background: url(/Content/img/icon__money-transfer.png) no-repeat top;
  }

.transfer__icon--user::before {
  background-position: top;
}

.transfer__icon--amount::before {
  background-position: bottom;
}

.transfer__info-content {
    margin: 30px auto 20px;
    width: 700px;
    color: #cccccc;
    font-size: 15px;
    text-align: center;
}
.transfer-description {
    color: var(--grey);
    font-size: 14px;
    padding-bottom: 40px;
}

.transfer__left-section {
    display: flex;
    justify-content: space-between;
}

.transfer__block-header {
    margin: 0;
    font-size: 15px;
    color: #64b000;
    padding-bottom: 15px;
    background-color: #272f36;
}

.transfer__block-header--transparent {
    background: #272f36;
}

.transfer__block-header-hidden {
    visibility: hidden;
}

.transfer__block {
    width: 400px;
    background-color: transparent;
}

.transfer__block-content {
    width: 100%;
    background: #303a42;
    display: flex;
    justify-content: space-between;
    padding: 13px 13px 10px 17px;
    text-transform: capitalize;
    margin-bottom: 4px;
}

.transfer__block-content-text {
    color: #c6c9d8;
    font-size: 14px;
}

.transfer__block-content-text--money {
    text-transform: uppercase;
    color: var(--grey);
}

.transfer__block-content:hover {
    background: #38434d;
    transition: .3s;
}

.transfer__block-content:hover .transfer__block-content-text {
    color: #fff;
}

.transfer__block-content--active, .transfer__block-content--active:hover {
    background: #697dce;
    color: #fff;
}

.transfer__block-content--active .transfer__block-content-text {
    color: #fff;
}


.transfer__block-arrows--container {
    width: 50px;
    position: relative;
    padding: 32px 0 4px 0;
}

.transfer__block-arrows--background {
  background: #1d242a;
  height: 100%;
}

.transfer__block-arrow {
    display: block;
    color: #64b000;
}

.transfer__block-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    font-size: 18px;
}

.transfer__block-arrow {
  line-height: 12px;
}

.transfer__amount-form {
  background: #1d242a;
  margin-top: 32px;
}

.transfer__amount-form-content {
  padding: 25px 30px 30px 30px;
}

.transfer__amount-form-laber {
    color: #64b000;
    text-transform: capitalize;
    font-size: 15px;
    padding-bottom: 10px;
}

.transfer__amount-form-input, .transfer__amount-form-input:focus, .transfer__amount-form-input:disabled {
    background: #2d363e;
    color: var(--grey);
    border: none;
    font-size: 15px;
    box-shadow: none;
    height: 37px;
    padding-left: 10px;
}

.transfer__amount-form-input:disabled {
    background: #252d34;
}


.transfer_exchange-icon::before {
    display: inline-block;
    content: "";
    width: 15px;
    height: 10px;
    background: url(/Content/img/change_icon.png) no-repeat top;
}















/*---------  OLD TRANSFER STYLES ----------*/



.lightbox {
    display: none;
}

#lightm {
    color: #171717;
}

.h3lightbox {
    font-family: 'roboto';
}




.ilo {
    position: relative;
}




.transfer1 {
    padding-bottom: 30px;
    color: var(--grey);
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    margin-top: -10px;
    max-width: 880px;
    margin: 0 auto;
}


.trans_currency1 {
    padding: 15px 15px 20px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: #e9a025;
    background: #0e0f13;
}

.trans_currency1_1 {
    padding-bottom: 12px;
}

.trans_currency1_2 {
    float: left;
    padding-right: 10px;
}

    .trans_currency1_2 select {
        width: 70px;
        height: 35px;
        box-sizing: border-box;
        background: #292c33;
        padding-left: 4px;
        border: 1px solid #292c33;
        box-shadow: none;
        color: #cccccc;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
        -webkit-appearance: none;
        -moz-appearance: none;
        -webkit-appearance: menulist;
    }

        .trans_currency1_2 select:hover {
            border: 1px solid #e9a025;
        }

    .trans_currency1_2 input {
        width: 170px;
        height: 35px;
        box-sizing: border-box;
        background: #292c33;
        padding-left: 6px;
        border: 1px solid #292c33;
        box-shadow: none;
        color: #cccccc;
        transition: 250ms;
        -moz-transition: 250ms;
        -ms-transition: 250ms;
        -webkit-transition: 250ms;
    }

        .trans_currency1_2 input:hover {
            border: 1px solid #e9a025;
        }

.trans_currency1_3 {
    float: left;
    padding-right: 10px;
    color: #ec990d;
    font-size: 22px;
    line-height: 27px;
}

.trans_currency1_4 {
    float: left;
    padding-right: 10px;
    color: #ec990d;
    font-size: 31px;
    line-height: 24px;
}

.transfer3 {
    display: table-cell;
    padding: 0 12px 0 0;
    width: 400px;
    background-color: transparent;
}

.transfer3_2:last-child {
    margin-bottom: 0px;
}


.transfer4 {
    display: table-cell;
    background: #202022;
    vertical-align: middle;
    text-align: center;
    padding: 10px 12px 0 12px;
    color: #64b000;
    font-size: 30px;
    position: relative;
}

.transfer5 {
    display: table-cell;
    width: 415px;
    padding: 0 0 0 12px;
}

.transfer4_1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 31px;
    background: #28282A;
}

.transfer3_1 {
    margin: 0;
    font-size: 15px;
    color: #64b000;
    padding-bottom: 10px;
}

.transfer3_2 {
    width: 100%;
    background: #303a42;
    display: flex;
    justify-content: space-between;
    padding: 13px 13px 10px 17px;
    text-transform: capitalize;
    margin-bottom: 4px;
    transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -webkit-transition: 300ms;
    cursor: pointer;
}

.transfer3_3 {
    color: #c6c9d8;
    font-size: 14px;

}

.transfer3_4 {
    text-transform: uppercase;
    color: var(--grey);

}

.transfer3_2:hover {
    background: #38434d;
    color: white;
}

    .transfer3_2:hover .transfer3_3 {
        color: white;
    }

    .transfer3_2:hover .transfer3_4 {
        color: white;
    }

.trnact {
    background: #697dce;
    color: #fff;
}

    .trnact .transfer3_3 {
        color: white;
    }

    .trnact .transfer3_4 {
        color: white;
    }

    .trnact:hover {
        border: 0;
        background: #697dce;
        color: white;
    }

        .trnact:hover .transfer3_3 {
            color: white;
        }

        .trnact:hover .transfer3_4 {
            color: white;
        }

.transfer6 {
    float: right;
    /*width: 20%;*/
    margin-top:31px;
    padding: 25px 30px 30px 30px;
    background: #1d242a;
    width: 270px;
}

.transfer6_1 {
    padding: 4px 0 10px 0;
}

    .transfer6_1 input {
        height: 35px;
        box-sizing: border-box;
        padding: 0 3px 0 8px;
        background: #2d363e !important;
        color: var(--grey);
        border: none;
        font-size: 15px;
        box-shadow: none;
        height: 37px;
    }

       

.transfer6_2 {
    /*font-size: 14px;
    text-align: center;
    text-transform: uppercase;*/
    margin-bottom: 15px;
}

    

.transfer_balance_anim_icon {
    font-size: 18px;
}



.loaderTransfer div {
    position: relative;
    top: 4px;
    left: 53%;
    width: 52px;
    height: 52px;
    background: url('/Content/themes/v1/img/468.GIF') no-repeat;
}

.loaderTransfer p {
    margin-left: 45px;
}
.contact__form-label {
  color: #fff;
  text-transform: capitalize;
  font-size: 15px;
}

.form-group.required .control-label:after {
  content: "*";
  color: var(--yellow);
  padding-left: 5px;
}

.form-group-flex {
  display: flex;
}

.contact__form-input {
  background: #353f48;
  color: #e4e9ed;
  height: 37px;
}

  .contact__form-input:focus {
    background-color: #3f4a53;
  }

.contact__form-input-name {
  width: 250px;
}

.contact__form-select {
  text-transform: capitalize;
}

.contact__form-captcha-input-container {
  width: 110px;
  min-width: 110px;
  max-width: 110px;
  margin-right: 10px;
}

.contact__form-captcha-code-img {
  width: 90px;
  height: 37px;
}

.contact__form-captcha-refresh-button {
  width: 37px;
  height: 37px;
  background-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.contact__form-captcha-refresh {
  color: #fff;
}

.contact__form-captcha-refresh-button:hover {
  opacity: 0.9;
}

.contact__form-textarea {
  background: #353f48;
  resize: none;
}

  .contact__form-textarea::-webkit-scrollbar {
    width: 15px;
  }

    .contact__form-textarea::-webkit-scrollbar-thumb {
        background-color: #64b000;
    }

        .contact__form-textarea::-webkit-scrollbar-thumb:hover {
            background-color: #64b000;
            transition: 0.3s;
        }

  .contact__form-textarea::-webkit-scrollbar-track {
    background-color: var(--grey);
  }

.contact__information-content {
  background-color: #1d242a;
  padding: 30px 0 30px 20px;
  font-size: 15px;
  color: #fff;
}

.contact__information-content-link {
  color: #fff;
}

.contact__information-content-mail {
  padding-bottom: 20px;
}

.contact__information-content-icon {
  color: var(--yellow);
  padding-right: 5px;
}

.contact__form--button {
  min-width: 130px;
  line-height: 16px;
  padding: 12px 12px 10px 12px;
}

.registerModal__body--height {
  min-height: 192px;
}

.registerModal__body-header {
  text-transform: capitalize;
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #353f48;
}

.registerModal__body-header--padding {
  padding-bottom: 10px;
}

.register__form-label {
  color: #e4e9ed;
  text-transform: capitalize;
  font-size: 14px;
}

.register__form-input {
  background: #353f48;
  color: #e4e9ed;
  height: 40px;
  border-radius: 7PX;
}

  .register__form-input:focus {
    background-color: #3f4a53;
  }

.register__form--capitalize {
  text-transform: capitalize;
}

.registerModal__footer {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-top: 1px solid #353f48;
}

.registerModal__buttons {
  display: flex;
}

.registerModal__link--align {
  display: flex;
  align-items: center;
}

.registerModal__link {
  color: var(--yellow);
  text-decoration: underline !important;
}

  .registerModal__link:hover {
    text-decoration: none !important;
    cursor: pointer;
  }

.register__form-button {
  margin-left: 10px;
  min-width: 140px;
  min-height: 40px;
}

.register__form-input--icon-wrong {
  /*background-image: url(/Content/img/icon_wrong.png);*/
  background-position: 95% 50%;
  background-repeat: no-repeat;
}

.register__form-input--icon-correct {
  /*background-image: url(/Content/img/icon_correct.png);*/
  background-position: 95% 50%;
  background-repeat: no-repeat;
}

.password {
  height: 3px;
}

.strong-password {
  width: 100%;
  background-color: #27ae60;
}

.bad-password {
  width: 100px;
  background-color: #d8281b;
}

.normal-password {
  width: 200px;
  background-color: var(--yellow);
}

.register__form--list {
  background: #3f4951;
  height: 37px;
  display: flex;
  position: relative;
  align-items: center;
}

.register__form-col--padding-r {
  padding-right: 0;
}

.register__form-col--padding-l {
  padding-left: 0;
  display: flex;
}

.register__form--list-item {
  list-style-type: none;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
}

.register__form-select-img {
  width: 20px;
}

.register__dropdown-icon {
  padding-left: 2px;
  vertical-align: middle;
}

.register__form-value--color {
  color: #838689;
}

    .register__form-value--color::-webkit-input-placeholder {
        color: #838689c7;
    }

    .register__form-value--color:-ms-input-placeholder {
        color: #838689c7;
    }

    .register__form-value--color::placeholder {
        color: #838689c7;
    }

.register__form-button--sms-code {
    height: 40px;
    border-radius: 8px;
    width: 100%;
}

.register__form-button--sms-code-time {
  background: #1d242a;
  color: var(--grey);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.register__form-info-block {
    background: transparent;
    padding: 13px 0;
    font-size: 10px;
   
}

.register__form-info-block--link {
  display: flex;
  justify-content: space-between;
  color: white;
}

.info-circle-icon::before {
  display: inline-block;
  content: "";
  width: 15px;
  height: 15px;
  background: url(/Content/img/info-circle.png) no-repeat top;
  margin: 2px 5px 0 0;
}

/*------------------------------------*\
  style checkboxes
\*------------------------------------*/
.form-check-label {
  display: flex;
  position: relative;
  padding-left: 25px !important;
  margin-bottom: 0px !important;
  cursor: pointer;
  font-size: 12px;
  color: var(--grey);
  font-family: 'roboto';
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

  /* Hide the browser's default checkbox */
  .form-check-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0px;
    left: 0;
    height: 15px;
    width: 15px;
    border-radius: 0px;
    background-color: #848c8f;
    border: 1px solid var(--grey);
}

/* When the checkbox is checked, add yellow border color */
.form-check-label input:checked ~ .checkmark {
  border: 1px solid var(--yellow);
}

.form-check-label input:checked ~ .label-color {
  color: var(--yellow);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.form-check-label input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.form-check-label .checkmark:after {
  left: 4px;
  width: 6px;
  height: 10px;
  border: solid var(--yellow);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


.select2-container--default .select2-selection--single {
    background-color: #353F48 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(100, 176, 0, 0.9) !important;
}

.select2-container--default .select2-results__option[aria-selected=true] {
    background-color: rgba(100, 176, 0, 1) !important;
}

.select2-results__options::-webkit-scrollbar {
    width: 16px;
    background-clip: padding-box;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: #2d303b;
    /*height: 8px;
    background-clip: padding-box;
    border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
}

.select2-results__options::-webkit-scrollbar-thumb {
    /*background-clip: padding-box;*/
    background-color: rgba(100, 176, 0, 1) !important;
    width: 100%;
    height: 40px;
    /*border-right: 10px solid rgba(0, 0, 0, 0);
    border-top: 10px solid rgba(0, 0, 0, 0);
    border-bottom: 10px solid rgba(0, 0, 0, 0);*/
}

.select2-results__options::-webkit-scrollbar-button {
    display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
   
    background-color: transparent !important;
    background-image: url(/Content/img/sel.png);
    background-position: center;
    background-repeat: no-repeat;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
}


.sn-valid-check {
    position: relative;
}

.sn-valid-check input{

    width: 100%
}

.sn-valid-check i {
    position: absolute;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
}




.green {
    color: #27ae60 !important;
    font-size: 17px;
}

.red {
    color: #d8281b !important;
    font-size: 17px;
}

/*.show-green .green.hidden {
    display: block !important;
}*/

/*.show-red .red.hidden {
    display: block !important;
}*/

.error2 {
    padding: 5px 0 6px 15px;
    font-size: 13px;
    color: #d8281b;
    max-width: 300px;
}

.regMainMobileSelect {
    border: 0;
    background: none;
    padding: 6px 10px 5px 10px;
    height: 33px;
    color: #888888;
}




.drop-icon {
    position: static !important;
    transform: none !important;
    color: #858c91;
    margin-left: 8px;
}



















.open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default:hover {
    background: #3f4a53 !important;
}

.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
    background: #3f4a53 !important;
}
.btn-default:hover {
    filter: brightness(100%) !important;
}
.country-dropup {
    position: absolute;
    width: calc(100% - 15px);
    height: 40px;
    padding: 1px;
    left: 15px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3f4a53 !important;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-right: 0;
}

    .country-dropup .btn {
        border: 0;
        background: none;
        padding: 6px 10px 5px 10px;
        height: 100%;
        width: 100%;
        color: #888888;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        .country-dropup .btn:focus {
            background: #3f4a53 !important;
        }

    .country-dropup .dropdown-menu {
        width: 300px;
        /* min-width:440px; */
        /* max-width:440px; */
        max-height: 200px;
        overflow: auto;
        text-align: left;
        font-family: 'roboto';
        text-transform: capitalize;
        color: #82828e;
        background: #1c1e22;
        border: 0;
        font-size: 13px;
    }

    .country-dropup .divider {
        background-color: rgba(255,255,255,0.1);
    }

    .country-dropup .dropdown-menu li a {
        color: #82828e;
        font-size: 13px;
        text-transform: capitalize;
    }

        .country-dropup .dropdown-menu li a:hover {
            background: #3f4a53;
        }

.flags {
    display: inline-block;
    width: 20px;
    height: 18px;
    background: url(/Content/img/flags.png) no-repeat;
    margin-right: 3px;
    vertical-align: top;
}

.flag-1 {
    background-position: 0 3px;
}

.flag-2 {
    background-position: -22px 3px;
}

li.country {
    padding: 5px 10px;
    cursor: pointer;
}

.flag-box {
    margin-right: 6px;
    display: inline-block;
    width: 20px;
}

.iti-flag {
    width: 20px;
    height: 15px;
    box-shadow: 0px 0px 1px 0px #888;
    background-image: url("/Content/img/flags.png");
    background-repeat: no-repeat;
    background-color: #DBDBDB;
    background-position: 20px 0;
}

    .iti-flag.ac {
        height: 10px;
        background-position: 0px 0px;
    }

    .iti-flag.ad {
        height: 14px;
        background-position: -22px 0px;
    }

    .iti-flag.ae {
        height: 10px;
        background-position: -44px 0px;
    }

    .iti-flag.af {
        height: 14px;
        background-position: -66px 0px;
    }

    .iti-flag.ag {
        height: 14px;
        background-position: -88px 0px;
    }

    .iti-flag.ai {
        height: 10px;
        background-position: -110px 0px;
    }

    .iti-flag.al {
        height: 15px;
        background-position: -132px 0px;
    }

    .iti-flag.am {
        height: 10px;
        background-position: -154px 0px;
    }

    .iti-flag.ao {
        height: 14px;
        background-position: -176px 0px;
    }

    .iti-flag.aq {
        height: 14px;
        background-position: -198px 0px;
    }

    .iti-flag.ar {
        height: 13px;
        background-position: -220px 0px;
    }

    .iti-flag.as {
        height: 10px;
        background-position: -242px 0px;
    }

    .iti-flag.at {
        height: 14px;
        background-position: -264px 0px;
    }

    .iti-flag.au {
        height: 10px;
        background-position: -286px 0px;
    }

    .iti-flag.aw {
        height: 14px;
        background-position: -308px 0px;
    }

    .iti-flag.ax {
        height: 13px;
        background-position: -330px 0px;
    }

    .iti-flag.az {
        height: 10px;
        background-position: -352px 0px;
    }

    .iti-flag.ba {
        height: 10px;
        background-position: -374px 0px;
    }

    .iti-flag.bb {
        height: 14px;
        background-position: -396px 0px;
    }

    .iti-flag.bd {
        height: 12px;
        background-position: -418px 0px;
    }

    .iti-flag.be {
        height: 15px;
        background-position: -440px 0px;
    }

    .iti-flag.bf {
        height: 14px;
        background-position: -460px 0px;
    }

    .iti-flag.bg {
        height: 12px;
        background-position: -482px 0px;
    }

    .iti-flag.bh {
        height: 12px;
        background-position: -504px 0px;
    }

    .iti-flag.bi {
        height: 12px;
        background-position: -526px 0px;
    }

    .iti-flag.bj {
        height: 14px;
        background-position: -548px 0px;
    }

    .iti-flag.bl {
        height: 14px;
        background-position: -570px 0px;
    }

    .iti-flag.bm {
        height: 10px;
        background-position: -592px 0px;
    }

    .iti-flag.bn {
        height: 10px;
        background-position: -614px 0px;
    }

    .iti-flag.bo {
        height: 14px;
        background-position: -636px 0px;
    }

    .iti-flag.bq {
        height: 14px;
        background-position: -658px 0px;
    }

    .iti-flag.br {
        height: 14px;
        background-position: -680px 0px;
    }

    .iti-flag.bs {
        height: 10px;
        background-position: -702px 0px;
    }

    .iti-flag.bt {
        height: 14px;
        background-position: -724px 0px;
    }

    .iti-flag.bv {
        height: 15px;
        background-position: -746px 0px;
    }

    .iti-flag.bw {
        height: 14px;
        background-position: -768px 0px;
    }

    .iti-flag.by {
        height: 10px;
        background-position: -790px 0px;
    }

    .iti-flag.bz {
        height: 14px;
        background-position: -812px 0px;
    }

    .iti-flag.ca {
        height: 10px;
        background-position: -834px 0px;
    }

    .iti-flag.cc {
        height: 10px;
        background-position: -856px 0px;
    }

    .iti-flag.cd {
        height: 15px;
        background-position: -878px 0px;
    }

    .iti-flag.cf {
        height: 14px;
        background-position: -900px 0px;
    }

    .iti-flag.cg {
        height: 14px;
        background-position: -922px 0px;
    }

    .iti-flag.ch {
        height: 15px;
        background-position: -944px 0px;
    }

    .iti-flag.ci {
        height: 14px;
        background-position: -961px 0px;
    }

    .iti-flag.ck {
        height: 10px;
        background-position: -983px 0px;
    }

    .iti-flag.cl {
        height: 14px;
        background-position: -1005px 0px;
    }

    .iti-flag.cm {
        height: 14px;
        background-position: -1027px 0px;
    }

    .iti-flag.cn {
        height: 14px;
        background-position: -1049px 0px;
    }

    .iti-flag.co {
        height: 14px;
        background-position: -1071px 0px;
    }

    .iti-flag.cp {
        height: 14px;
        background-position: -1093px 0px;
    }

    .iti-flag.cr {
        height: 12px;
        background-position: -1115px 0px;
    }

    .iti-flag.cu {
        height: 10px;
        background-position: -1137px 0px;
    }

    .iti-flag.cv {
        height: 12px;
        background-position: -1159px 0px;
    }

    .iti-flag.cw {
        height: 14px;
        background-position: -1181px 0px;
    }

    .iti-flag.cx {
        height: 10px;
        background-position: -1203px 0px;
    }

    .iti-flag.cy {
        height: 13px;
        background-position: -1225px 0px;
    }

    .iti-flag.cz {
        height: 14px;
        background-position: -1247px 0px;
    }

    .iti-flag.de {
        height: 12px;
        background-position: -1269px 0px;
    }

    .iti-flag.dg {
        height: 10px;
        background-position: -1291px 0px;
    }

    .iti-flag.dj {
        height: 14px;
        background-position: -1313px 0px;
    }

    .iti-flag.dk {
        height: 15px;
        background-position: -1335px 0px;
    }

    .iti-flag.dm {
        height: 10px;
        background-position: -1357px 0px;
    }

    .iti-flag.do {
        height: 13px;
        background-position: -1379px 0px;
    }

    .iti-flag.dz {
        height: 14px;
        background-position: -1401px 0px;
    }

    .iti-flag.ea {
        height: 14px;
        background-position: -1423px 0px;
    }

    .iti-flag.ec {
        height: 14px;
        background-position: -1445px 0px;
    }

    .iti-flag.ee {
        height: 13px;
        background-position: -1467px 0px;
    }

    .iti-flag.eg {
        height: 14px;
        background-position: -1489px 0px;
    }

    .iti-flag.eh {
        height: 10px;
        background-position: -1511px 0px;
    }

    .iti-flag.er {
        height: 10px;
        background-position: -1533px 0px;
    }

    .iti-flag.es {
        height: 14px;
        background-position: -1555px 0px;
    }

    .iti-flag.et {
        height: 10px;
        background-position: -1577px 0px;
    }

    .iti-flag.eu {
        height: 14px;
        background-position: -1599px 0px;
    }

    .iti-flag.fi {
        height: 12px;
        background-position: -1621px 0px;
    }

    .iti-flag.fj {
        height: 10px;
        background-position: -1643px 0px;
    }

    .iti-flag.fk {
        height: 10px;
        background-position: -1665px 0px;
    }

    .iti-flag.fm {
        height: 11px;
        background-position: -1687px 0px;
    }

    .iti-flag.fo {
        height: 15px;
        background-position: -1709px 0px;
    }

    .iti-flag.fr {
        height: 14px;
        background-position: -1731px 0px;
    }

    .iti-flag.ga {
        height: 15px;
        background-position: -1753px 0px;
    }

    .iti-flag.gb {
        height: 10px;
        background-position: -1775px 0px;
    }

    .iti-flag.gd {
        height: 12px;
        background-position: -1797px 0px;
    }

    .iti-flag.ge {
        height: 14px;
        background-position: -1819px 0px;
    }

    .iti-flag.gf {
        height: 14px;
        background-position: -1841px 0px;
    }

    .iti-flag.gg {
        height: 14px;
        background-position: -1863px 0px;
    }

    .iti-flag.gh {
        height: 14px;
        background-position: -1885px 0px;
    }

    .iti-flag.gi {
        height: 10px;
        background-position: -1907px 0px;
    }

    .iti-flag.gl {
        height: 14px;
        background-position: -1929px 0px;
    }

    .iti-flag.gm {
        height: 14px;
        background-position: -1951px 0px;
    }

    .iti-flag.gn {
        height: 14px;
        background-position: -1973px 0px;
    }

    .iti-flag.gp {
        height: 14px;
        background-position: -1995px 0px;
    }

    .iti-flag.gq {
        height: 14px;
        background-position: -2017px 0px;
    }

    .iti-flag.gr {
        height: 14px;
        background-position: -2039px 0px;
    }

    .iti-flag.gs {
        height: 10px;
        background-position: -2061px 0px;
    }

    .iti-flag.gt {
        height: 13px;
        background-position: -2083px 0px;
    }

    .iti-flag.gu {
        height: 11px;
        background-position: -2105px 0px;
    }

    .iti-flag.gw {
        height: 10px;
        background-position: -2127px 0px;
    }

    .iti-flag.gy {
        height: 12px;
        background-position: -2149px 0px;
    }

    .iti-flag.hk {
        height: 14px;
        background-position: -2171px 0px;
    }

    .iti-flag.hm {
        height: 10px;
        background-position: -2193px 0px;
    }

    .iti-flag.hn {
        height: 10px;
        background-position: -2215px 0px;
    }

    .iti-flag.hr {
        height: 10px;
        background-position: -2237px 0px;
    }

    .iti-flag.ht {
        height: 12px;
        background-position: -2259px 0px;
    }

    .iti-flag.hu {
        height: 10px;
        background-position: -2281px 0px;
    }

    .iti-flag.ic {
        height: 14px;
        background-position: -2303px 0px;
    }

    .iti-flag.id {
        height: 14px;
        background-position: -2325px 0px;
    }

    .iti-flag.ie {
        height: 10px;
        background-position: -2347px 0px;
    }

    .iti-flag.il {
        height: 15px;
        background-position: -2369px 0px;
    }

    .iti-flag.im {
        height: 10px;
        background-position: -2391px 0px;
    }

    .iti-flag.in {
        height: 14px;
        background-position: -2413px 0px;
    }

    .iti-flag.io {
        height: 10px;
        background-position: -2435px 0px;
    }

    .iti-flag.iq {
        height: 14px;
        background-position: -2457px 0px;
    }

    .iti-flag.ir {
        height: 12px;
        background-position: -2479px 0px;
    }

    .iti-flag.is {
        height: 15px;
        background-position: -2501px 0px;
    }

    .iti-flag.it {
        height: 14px;
        background-position: -2523px 0px;
    }

    .iti-flag.je {
        height: 12px;
        background-position: -2545px 0px;
    }

    .iti-flag.jm {
        height: 10px;
        background-position: -2567px 0px;
    }

    .iti-flag.jo {
        height: 10px;
        background-position: -2589px 0px;
    }

    .iti-flag.jp {
        height: 14px;
        background-position: -2611px 0px;
    }

    .iti-flag.ke {
        height: 14px;
        background-position: -2633px 0px;
    }

    .iti-flag.kg {
        height: 12px;
        background-position: -2655px 0px;
    }

    .iti-flag.kh {
        height: 13px;
        background-position: -2677px 0px;
    }

    .iti-flag.ki {
        height: 10px;
        background-position: -2699px 0px;
    }

    .iti-flag.km {
        height: 12px;
        background-position: -2721px 0px;
    }

    .iti-flag.kn {
        height: 14px;
        background-position: -2743px 0px;
    }

    .iti-flag.kp {
        height: 10px;
        background-position: -2765px 0px;
    }

    .iti-flag.kr {
        height: 14px;
        background-position: -2787px 0px;
    }

    .iti-flag.kw {
        height: 10px;
        background-position: -2809px 0px;
    }

    .iti-flag.ky {
        height: 10px;
        background-position: -2831px 0px;
    }

    .iti-flag.kz {
        height: 10px;
        background-position: -2853px 0px;
    }

    .iti-flag.la {
        height: 14px;
        background-position: -2875px 0px;
    }

    .iti-flag.lb {
        height: 14px;
        background-position: -2897px 0px;
    }

    .iti-flag.lc {
        height: 10px;
        background-position: -2919px 0px;
    }

    .iti-flag.li {
        height: 12px;
        background-position: -2941px 0px;
    }

    .iti-flag.lk {
        height: 10px;
        background-position: -2963px 0px;
    }

    .iti-flag.lr {
        height: 11px;
        background-position: -2985px 0px;
    }

    .iti-flag.ls {
        height: 14px;
        background-position: -3007px 0px;
    }

    .iti-flag.lt {
        height: 12px;
        background-position: -3029px 0px;
    }

    .iti-flag.lu {
        height: 12px;
        background-position: -3051px 0px;
    }

    .iti-flag.lv {
        height: 10px;
        background-position: -3073px 0px;
    }

    .iti-flag.ly {
        height: 10px;
        background-position: -3095px 0px;
    }

    .iti-flag.ma {
        height: 14px;
        background-position: -3117px 0px;
    }

    .iti-flag.mc {
        height: 15px;
        background-position: -3139px 0px;
    }

    .iti-flag.md {
        height: 10px;
        background-position: -3160px 0px;
    }

    .iti-flag.me {
        height: 10px;
        background-position: -3182px 0px;
    }

    .iti-flag.mf {
        height: 14px;
        background-position: -3204px 0px;
    }

    .iti-flag.mg {
        height: 14px;
        background-position: -3226px 0px;
    }

    .iti-flag.mh {
        height: 11px;
        background-position: -3248px 0px;
    }

    .iti-flag.mk {
        height: 10px;
        background-position: -3270px 0px;
    }

    .iti-flag.ml {
        height: 14px;
        background-position: -3292px 0px;
    }

    .iti-flag.mm {
        height: 14px;
        background-position: -3314px 0px;
    }

    .iti-flag.mn {
        height: 10px;
        background-position: -3336px 0px;
    }

    .iti-flag.mo {
        height: 14px;
        background-position: -3358px 0px;
    }

    .iti-flag.mp {
        height: 10px;
        background-position: -3380px 0px;
    }

    .iti-flag.mq {
        height: 14px;
        background-position: -3402px 0px;
    }

    .iti-flag.mr {
        height: 14px;
        background-position: -3424px 0px;
    }

    .iti-flag.ms {
        height: 10px;
        background-position: -3446px 0px;
    }

    .iti-flag.mt {
        height: 14px;
        background-position: -3468px 0px;
    }

    .iti-flag.mu {
        height: 14px;
        background-position: -3490px 0px;
    }

    .iti-flag.mv {
        height: 14px;
        background-position: -3512px 0px;
    }

    .iti-flag.mw {
        height: 14px;
        background-position: -3534px 0px;
    }

    .iti-flag.mx {
        height: 12px;
        background-position: -3556px 0px;
    }

    .iti-flag.my {
        height: 10px;
        background-position: -3578px 0px;
    }

    .iti-flag.mz {
        height: 14px;
        background-position: -3600px 0px;
    }

    .iti-flag.na {
        height: 14px;
        background-position: -3622px 0px;
    }

    .iti-flag.nc {
        height: 10px;
        background-position: -3644px 0px;
    }

    .iti-flag.ne {
        height: 15px;
        background-position: -3666px 0px;
    }

    .iti-flag.nf {
        height: 10px;
        background-position: -3686px 0px;
    }

    .iti-flag.ng {
        height: 10px;
        background-position: -3708px 0px;
    }

    .iti-flag.ni {
        height: 12px;
        background-position: -3730px 0px;
    }

    .iti-flag.nl {
        height: 14px;
        background-position: -3752px 0px;
    }

    .iti-flag.no {
        height: 15px;
        background-position: -3774px 0px;
    }

    .iti-flag.np {
        height: 15px;
        background-position: -3796px 0px;
    }

    .iti-flag.nr {
        height: 10px;
        background-position: -3811px 0px;
    }

    .iti-flag.nu {
        height: 10px;
        background-position: -3833px 0px;
    }

    .iti-flag.nz {
        height: 10px;
        background-position: -3855px 0px;
    }

    .iti-flag.om {
        height: 10px;
        background-position: -3877px 0px;
    }

    .iti-flag.pa {
        height: 14px;
        background-position: -3899px 0px;
    }

    .iti-flag.pe {
        height: 14px;
        background-position: -3921px 0px;
    }

    .iti-flag.pf {
        height: 14px;
        background-position: -3943px 0px;
    }

    .iti-flag.pg {
        height: 15px;
        background-position: -3965px 0px;
    }

    .iti-flag.ph {
        height: 10px;
        background-position: -3987px 0px;
    }

    .iti-flag.pk {
        height: 14px;
        background-position: -4009px 0px;
    }

    .iti-flag.pl {
        height: 13px;
        background-position: -4031px 0px;
    }

    .iti-flag.pm {
        height: 14px;
        background-position: -4053px 0px;
    }

    .iti-flag.pn {
        height: 10px;
        background-position: -4075px 0px;
    }

    .iti-flag.pr {
        height: 14px;
        background-position: -4097px 0px;
    }

    .iti-flag.ps {
        height: 10px;
        background-position: -4119px 0px;
    }

    .iti-flag.pt {
        height: 14px;
        background-position: -4141px 0px;
    }

    .iti-flag.pw {
        height: 13px;
        background-position: -4163px 0px;
    }

    .iti-flag.py {
        height: 11px;
        background-position: -4185px 0px;
    }

    .iti-flag.qa {
        height: 8px;
        background-position: -4207px 0px;
    }

    .iti-flag.re {
        height: 14px;
        background-position: -4229px 0px;
    }

    .iti-flag.ro {
        height: 14px;
        background-position: -4251px 0px;
    }

    .iti-flag.rs {
        height: 14px;
        background-position: -4273px 0px;
    }

    .iti-flag.ru {
        height: 14px;
        background-position: -4295px 0px;
    }

    .iti-flag.rw {
        height: 14px;
        background-position: -4317px 0px;
    }

    .iti-flag.sa {
        height: 14px;
        background-position: -4339px 0px;
    }

    .iti-flag.sb {
        height: 10px;
        background-position: -4361px 0px;
    }

    .iti-flag.sc {
        height: 10px;
        background-position: -4383px 0px;
    }

    .iti-flag.sd {
        height: 10px;
        background-position: -4405px 0px;
    }

    .iti-flag.se {
        height: 13px;
        background-position: -4427px 0px;
    }

    .iti-flag.sg {
        height: 14px;
        background-position: -4449px 0px;
    }

    .iti-flag.sh {
        height: 10px;
        background-position: -4471px 0px;
    }

    .iti-flag.si {
        height: 10px;
        background-position: -4493px 0px;
    }

    .iti-flag.sj {
        height: 15px;
        background-position: -4515px 0px;
    }

    .iti-flag.sk {
        height: 14px;
        background-position: -4537px 0px;
    }

    .iti-flag.sl {
        height: 14px;
        background-position: -4559px 0px;
    }

    .iti-flag.sm {
        height: 15px;
        background-position: -4581px 0px;
    }

    .iti-flag.sn {
        height: 14px;
        background-position: -4603px 0px;
    }

    .iti-flag.so {
        height: 14px;
        background-position: -4625px 0px;
    }

    .iti-flag.sr {
        height: 14px;
        background-position: -4647px 0px;
    }

    .iti-flag.ss {
        height: 10px;
        background-position: -4669px 0px;
    }

    .iti-flag.st {
        height: 10px;
        background-position: -4691px 0px;
    }

    .iti-flag.sv {
        height: 12px;
        background-position: -4713px 0px;
    }

    .iti-flag.sx {
        height: 14px;
        background-position: -4735px 0px;
    }

    .iti-flag.sy {
        height: 14px;
        background-position: -4757px 0px;
    }

    .iti-flag.sz {
        height: 14px;
        background-position: -4779px 0px;
    }

    .iti-flag.ta {
        height: 10px;
        background-position: -4801px 0px;
    }

    .iti-flag.tc {
        height: 10px;
        background-position: -4823px 0px;
    }

    .iti-flag.td {
        height: 14px;
        background-position: -4845px 0px;
    }

    .iti-flag.tf {
        height: 14px;
        background-position: -4867px 0px;
    }

    .iti-flag.tg {
        height: 13px;
        background-position: -4889px 0px;
    }

    .iti-flag.th {
        height: 14px;
        background-position: -4911px 0px;
    }

    .iti-flag.tj {
        height: 10px;
        background-position: -4933px 0px;
    }

    .iti-flag.tk {
        height: 10px;
        background-position: -4955px 0px;
    }

    .iti-flag.tl {
        height: 10px;
        background-position: -4977px 0px;
    }

    .iti-flag.tm {
        height: 14px;
        background-position: -4999px 0px;
    }

    .iti-flag.tn {
        height: 14px;
        background-position: -5021px 0px;
    }

    .iti-flag.to {
        height: 10px;
        background-position: -5043px 0px;
    }

    .iti-flag.tr {
        height: 14px;
        background-position: -5065px 0px;
    }

    .iti-flag.tt {
        height: 12px;
        background-position: -5087px 0px;
    }

    .iti-flag.tv {
        height: 10px;
        background-position: -5109px 0px;
    }

    .iti-flag.tw {
        height: 14px;
        background-position: -5131px 0px;
    }

    .iti-flag.tz {
        height: 14px;
        background-position: -5153px 0px;
    }

    .iti-flag.ua {
        height: 14px;
        background-position: -5175px 0px;
    }

    .iti-flag.ug {
        height: 14px;
        background-position: -5197px 0px;
    }

    .iti-flag.um {
        height: 11px;
        background-position: -5219px 0px;
    }

    .iti-flag.us {
        height: 11px;
        background-position: -5241px 0px;
    }

    .iti-flag.uy {
        height: 14px;
        background-position: -5263px 0px;
    }

    .iti-flag.uz {
        height: 10px;
        background-position: -5285px 0px;
    }

    .iti-flag.va {
        height: 15px;
        background-position: -5307px 0px;
    }

    .iti-flag.vc {
        height: 14px;
        background-position: -5324px 0px;
    }

    .iti-flag.ve {
        height: 14px;
        background-position: -5346px 0px;
    }

    .iti-flag.vg {
        height: 10px;
        background-position: -5368px 0px;
    }

    .iti-flag.vi {
        height: 14px;
        background-position: -5390px 0px;
    }

    .iti-flag.vn {
        height: 14px;
        background-position: -5412px 0px;
    }

    .iti-flag.vu {
        height: 12px;
        background-position: -5434px 0px;
    }

    .iti-flag.wf {
        height: 14px;
        background-position: -5456px 0px;
    }

    .iti-flag.ws {
        height: 10px;
        background-position: -5478px 0px;
    }

    .iti-flag.xk {
        height: 15px;
        background-position: -5500px 0px;
    }

    .iti-flag.ye {
        height: 14px;
        background-position: -5522px 0px;
    }

    .iti-flag.yt {
        height: 14px;
        background-position: -5544px 0px;
    }

    .iti-flag.za {
        height: 14px;
        background-position: -5566px 0px;
    }

    .iti-flag.zm {
        height: 14px;
        background-position: -5588px 0px;
    }

    .iti-flag.zw {
        height: 10px;
        background-position: -5610px 0px;
    }






.loader-padding {
    padding: 30px;
    text-align: center;
}

.loader {
    display: inline-block;
    margin: 0 auto;
    border: 5px solid rgba(0,0,0,0.6);
    border-radius: 50%;
    border-top: 5px solid rgba(100, 176, 0, 1);
    width: 35px;
    height: 35px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* loading css end*/

.lightbox {
    display: none;
}

.mylightbox {
    width: 300px;
    height: 150px;
}

#mylightboxm p {
    font-size: 14px;
}

.h3lightbox {
    font-family: 'roboto';
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2045;
    display: none;
}


.confirmation_modal {
    z-index: 2050;
    font-family: "Roboto" !important;
}

    .confirmation_modal .modal-content {
        display: flex;
        align-items: center;
        margin: auto;
        background: none;
        box-shadow: none;
        border: none;
    }

    .confirmation_modal .confirmation_modal_content {
        width: 465px;
        height: 590px;
        background-image: url(/Content/img/duman_confirmation_modal_bg.png);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        border-radius: 15px;
        position: relative;
        overflow: hidden;
    }

    .confirmation_modal .confirmation_modal_btns {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        transform: translateX(53%);
        height: 150px;
        position: absolute;
        bottom: 80px;
        font-family: "Roboto" !important;
    }

        .confirmation_modal .confirmation_modal_btns .continue_reg_button {
            width: 227px;
            height: 64px;
            border-radius: 13px;
            background-color: #75B900;
            font-size: 22px;
            line-height: 32px;
            color: #ffffff;
            font-weight: 600;
            font-family: "Roboto" !important;
            text-align: center;
        }

            .confirmation_modal .confirmation_modal_btns .continue_reg_button span {
                font-size: 32px;
                margin-right: 10px;
            }

            .confirmation_modal .confirmation_modal_btns .continue_reg_button:hover {
                opacity: 0.8;
            }

        .confirmation_modal .confirmation_modal_btns .close_reg_button {
            width: 227px;
            height: 64px;
            border: none;
            background-color: transparent;
            font-size: 21px;
            line-height: 25px;
            color: #fefefe;
            font-weight: 400;
            font-family: "Roboto" !important;
            text-align: center;
            border-radius: 13px;
            border: 2px solid #fff;
        }

            .confirmation_modal .confirmation_modal_btns .close_reg_button:hover {
                opacity: 0.8;
            }
.profile-flex-container {
  display: flex;
  justify-content: space-between;
}

.profile-columns {
  width: calc(50% - 75px);
}

.profile_page-label-color {
  color: #e4e9ed;
  font-size: 14px;
}

.profile__page-section-header {
  color: var(--yellow);
  text-transform: capitalize;
  font-size: 18px;
  padding-bottom: 15px;
  border-bottom: 1px solid #353f48;
}

.profile__page-section-header--white {
  /*color: #fff;*/
  padding-top: 45px;
}

.profile__page-section-header--padding {
  padding-top: 60px;
}

.game__profile--disabled-input {
  background: #2e373f !important;
  border: 1px solid #2e373f !important;
  padding: 18px 0 18px 10px;
}



.switch {
  position: relative;
  display: block;
  width: 100px;
  height: 30px;
  line-height: 31px;
  cursor: pointer;
  overflow: hidden;
}

  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

.slider {
  display: block;
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
  background: var(--grey);
  transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -webkit-transition: 300ms;
}

  .slider:before {
    position: absolute;
    z-index: 5;
    content: "";
    height: 26px;
    width: 26px;
    left: 2px;
    top: calc(50% - 13px);
    background-color: white;
    transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -webkit-transition: 300ms;
    box-shadow: 0 1px 8px rgba(0,0,0,0.3);
  }

.swith-off, .swith-on {
  display: none;
  font-size: 14px;
  color: white;
  font-family: 'robotoBold', Arial;
  text-align: center;
  text-transform: uppercase;
  transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -webkit-transition: 300ms;
}

.swith-off {
  padding-left: 17px;
  display: block;
}

.swith-on {
  padding-right: 17px;
}

input:checked + .slider {
  background: var(--green);
}

  input:checked + .slider .swith-on {
    display: block;
  }

  input:checked + .slider .swith-off {
    display: none;
  }

  input:checked + .slider:before {
    left: calc(100% - 28px);
  }

/* Rounded sliders */
.slider.round {
  border-radius: 30px;
}

  .slider.round:before {
    border-radius: 50%;
  }



.change-main__password {
    display: flex;
    justify-content: flex-end;
    margin-right: 0;
}

.form-horizontal .control-label {
    text-align: left;
    color: #e4e9ed;
    font-size: 14px;
    padding-top: 9px;
}

.sn-passres-but {
    position: absolute;
    right: 23px;
    top: 8px;
    display: block;
    cursor: pointer;
    color: #797d86;
    font-size: 22px;
    line-height: 20px;
    text-align: center;
}

.sn-loginbut input {
    background: #117989;
    color: white;
    transition: background 300ms;
    border: none;
}

    .sn-loginbut input:hover {
        background: #13535f;
    }



.btn-link {
    color: #e9a025;
    
    text-transform: capitalize !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

    .btn-link:hover {
        color: #e9a025;
        text-decoration: underline !important;
    } 
.flex_between {
  display: flex;
  justify-content: space-between;
}

.promotions__section-margin {
  margin-bottom: 30px;
}

.promotions__section {
  background-color: #1d242a;
  display: flex;
  flex-direction: column;
}

.promotions__section-image {
  width: 100%;
}

.promotions__section-background {
  position: relative;
}

.promotions__section-background-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  position: absolute;
  top: 0;
  right: 15px;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 90px;
  background: linear-gradient(to right, rgba(236,181,13,0), rgba(236,181,13,1) 50%);
}

.promotion__tags {
  color: #545961;
  font-size: 11px;
  text-transform: capitalize;
  display: flex;
  padding: 15px 0 3px 20px;
}

.promotion__tags-padding {
  padding: 0;
}

.promotion__tags-list {
  list-style-type: none;
  display: inline-block;
  padding: 0 5px;
}

.promotion__tags-link {
  text-decoration: underline !important;
}

.promotions__section-container {
  padding: 18px 20px 70px 20px;
  border-top: 1px solid #2c303d;
  position: relative;
  height: 100%;
}

.promotions__section-title {
  font-size: 17px;
  text-transform: capitalize;
  color: #15a487;
  margin: 0;
  padding-bottom: 20px;
}

.promotions__section-container-paragraph {
  font-size: 14px;
  color: var(--grey);
}

.buttons--absolute {
  display: flex;
  position: absolute;
  bottom: 20px;
  left: 20px;
  max-width: calc(100% - 40px);
  z-index: 10;
}

.btn-read-more {
  background: #107e68;
  color: #fff;
  border-color: #107e68;
}

  .btn-read-more:hover {
    color: #fff;
    background: #15a487;
    border-color: #15a487;
  }

.promotions__padding-button {
  padding: 14px 26px 12px 26px;
  margin-right: 20px;
}

.breadcrumbs-tabs {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs-tabs__list {
  padding: 0;
  margin: 0 1px;
  display: block;
}

.breadcrumbs-tabs__link, .breadcrumbs-tabs__link:focus {
  display: block;
  padding: 11px 7px;
  color: var(--grey);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  font-size: 13px;
  line-height: 20px;
  text-transform: uppercase;
  transition: 300ms;
  -moz-transition: 300ms;
  -ms-transition: 300ms;
  -webkit-transition: 300ms;
}

  .breadcrumbs-tabs__link:hover {
    border-color: rgba(255,255,255,0.3);
    color: #cccccc;
  }

.breadcrumbs-tabs__link--active, .breadcrumbs-tabs__link--active:hover, .breadcrumbs-tabs__link--active:focus {
  color: var(--yellow);
  border-color: var(--yellow);
}

.promotions_info {
  margin-top: 60px;
}

.info-icon {
  font-size: 26px;
  background: #323a40;
  color: var(--grey);
  padding: 16px 25px;
  border-radius: 50%;
}

.promotions_info-text {
  color: #969aa6;
  padding-top: 20px;
  font-size: 16px;
  width: 450px;
  margin: auto;
}

.promotions_info-text--yellow {
  color: var(--yellow);
}


.promotionsInner__slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.promotionsInner__slider img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.promotionsInner__slider-text {
    padding: 42px 0 42px 47px;
    background-image: linear-gradient(to right, rgba(10,11,13,0.9), rgba(10,11,13,0), rgba(10,11,13,0));
    border-left: 5px solid #107e68;
}

.promotionsInner__slider-text--width {
    width: 360px;
}

.promotionsInner__slider-text-caption {
    color: #fff;
    font-size: 30px;
    text-transform: uppercase;
    font-family: 'robotoBold';
    margin:0;
}
.promotionsInner__slider-text-description {
    display: block;
    color: #969aa6;
    font-size:20px;
    padding:15px 0 30px 0;
}
.promotions__btn--block {
    display: block;
}

.steps__blocks--padding {
    padding-top: 60px;
}

.steps_blocks {
    display:flex;
    justify-content:center;
    margin-bottom:70px;
}
.promotions__step {
    width: 25%;
    padding: 45px 0 50px 0;
    margin:0 15px;
    background-color: #1d242a;
    display: block;
    text-align:center;
}
.promotions__step-number {
    color: #15a487;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'robotoBold';
    margin:0;
    padding:0;
}

.promotions__step-number::after{
    content:"";
    width:35px;
    height:1px;
    display:block;
    background-color:#373c4b;
    margin:30px auto;
}
.promotions__step-description--width{
    width:170px;
    margin:auto;
}
.promotions__step-description {
    font-size: 18px;
    color: #858c91;
}

.promotionsInner-info-block{
    text-align:center;
    padding-bottom:20px;
}
.promotionsInner-title-yellow {
    color: var(--yellow);
    text-transform: uppercase;
    font-family: 'robotoBold';
    font-size: 20px;
    margin:0;
    padding-bottom:30px;
}
.promotionsInner-info{
    color:var(--grey);
    font-size:18px;
    width:950px;
    margin:auto;
}

.terms-block {
    background-color: #1d242a;
    padding:60px 0 75px 0;
}

.terms__conditions {
    color: var(--grey);
    font-size: 16px;
}
.terms__block-title--white {
    color: #fff;
    text-transform: uppercase;
    font-family: 'robotoBold';
    font-size: 16px;
    margin: 0;
    padding: 30px 0 15px;
}
.promotions__section-title-padding{
    padding-top:55px;
}


.prom__minus--margin .no-padding .inner-pages__main-container .flex .flex {
    padding-left: 0px;
}





/*------    CASHRACE -------*/


.grid3 {
    max-width: 1000px;
    margin: 0 auto;
}



.rakeraceleft {
    float: left;
    width: 670px;
}

.rakeraceright {
    float: right;
    width: 290px;
}

.rakeracebigban {
    padding-bottom: 20px;
}

    .rakeracebigban img {
        width: 100%;
    }

.rakesmban1 {
    margin-bottom: 15px;
    background: #232323;
    min-height: 78px;
    position: relative;
    font-family: tahoma;
}

    .rakesmban1 span {
        display: block;
        position: absolute;
        right: 0;
        bottom: 0;
        width: 60px;
        height: 60px;
        z-index: 0;
    }

.rakeicon1 {
    background: url(/Content/img/rakebanicon1.png) no-repeat right bottom;
}

.rakeicon2 {
    background: url(/Content/img/rakebanicon2.png) no-repeat right bottom;
}

.rakeicon3 {
    background: url(/Content/img/rakebanicon3.png) no-repeat right bottom;
}

.rakesmban-text1 {
    padding: 12px 15px 8px 15px;
    margin: 0;
    font-size: 14px;
    color: #999999;
    line-height: 20px;
}

.rakesmban-text2 {
    padding: 0 0 0 15px;
    margin: 0;
    font-size: 23px;
    color: #ECB50D;
    line-height: 20px;
}

.rakesmban2 {
    border: 2px solid #232323;
    border-bottom: 1px solid #232323;
    margin-bottom: 15px;
}

.rakesmban2_1 {
    padding: 6px 10px 10px 8px;
    background: #232323;
    color: #ECB50D;
    font-size: 15px;
    text-transform: uppercase;
}

.rakesmban2_2 {
    display: table;
    width: 100%;
    font-size: 13px;
    color: #cccccc;
    border-bottom: 1px solid #232323;
    line-height: 19px;
}

.rakesmban2_3 {
    display: table-cell;
    width: 80px;
    box-sizing: border-box;
    vertical-align: middle;
    color: #999999;
    padding: 7px 7px 8px 9px;
    border-right: 1px solid #232323;
}

.rakesmban2_4 {
    display: table-cell;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 7px 7px 8px 9px;
}

.rakerace_sched1 {
    margin-bottom: 20px;
}

.rakeracetitle {
    color: white;
    text-transform: lowercase;
    font-size: 12px;
    font-weight: normal;
    padding: 0;
    margin: 0 0 10px 0;
}

.rake_sched_title {
    display: table;
    width: 100%;
    background: black;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 20px;
    color: #ECB50D;
    text-align: left;
    margin-bottom: 2px;
}

.rkschtd {
    display: table-cell;
    height: 38px;
    box-sizing: border-box;
    padding: 5px 10px 6px 15px;
    text-align: left;
    vertical-align: middle;
}

.rktd1 {
    width: 120px;
}

.rktd2 {
    width: 175px;
}

.rktd3 {
    width: 145px;
}

.rake_sched_body {
    font-size: 13px;
    line-height: 19px;
    color: #cccccc;
    text-align: left;
}

.rkschtr {
    display: table;
    width: 100%;
    margin-bottom: 2px;
    background: #101010;
    transition: 250ms;
    -moz-transition: 250ms;
    -ms-transition: 250ms;
    -webkit-transition: 250ms;
}

    .rkschtr:hover {
        background: #171717;
    }

.ns-chatbut {
    width: 120px;
    height: 35px;
    overflow: hidden;
}

    .ns-chatbut img {
        width: 120px;
        height: 35px;
    }

.sn-footdiv2 a {
    color: #107e68;
    text-decoration: none !important;
}


.tournament-detail-header {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    overflow: hidden;
}

    .tournament-detail-header > img {
        max-width: 100%;
        margin: 0 auto;
    }

.tournament-detail-content-container {
    margin: 40px 0 27px 0;
}

.tournament-detail-sub {
    height: 100%;
    background-color: #101418;
    border-radius: 9.6px;
}

.tournament-detail-sub-title {
    font-size: 28px;
    color: #64b000;
    -webkit-background-clip: text;
    background-clip: text;
    padding-top: 21px;
    font-weight: bold;
    text-align: center;
}

.tournament-detail-sub-title-2 {
    font-size: 28px;
    padding-bottom: 25px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: bold;
}

.tournament-detail-content-container-inner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 48px 0 30px;
}

    .tournament-detail-content-container-inner-header.justify-content-between {
        justify-content: space-between;
    }

    .tournament-detail-content-container-inner-header h5 {
        margin: 0;
        color: #fff;
        font-weight: bold;
        font-size: 30px;
    }

    .tournament-detail-content-container-inner-header .pull-left {
        display: flex;
        align-items: center;
    }

    .tournament-detail-content-container-inner-header .pull-right {
        max-width: 50%;
        justify-content: flex-end;
        display: flex;
        flex-wrap: wrap;
        color: #cccccc;
    }

        .tournament-detail-content-container-inner-header .pull-right p {
            margin-bottom: 0;
            font-size: 15px;
        }

            .tournament-detail-content-container-inner-header .pull-right p:first-child {
                padding-right: 17px;
            }

        .tournament-detail-content-container-inner-header .pull-right span {
            font-size: 16px;
        }

.tournament-detail-winning-table-container .table > thead {
    background-color: #101418;
    border-radius: 9.6px;
    text-align: center;
}

    .tournament-detail-winning-table-container .table > thead > tr > th {
        text-align: center;
    }

.tournament-detail-winning-table-container .table > :not(:last-child) > :last-child > * {
    border-bottom: 6px solid #2a2e35;
    font-weight: unset;
}

.tournament-detail-winning-table-container .table > tbody > tr {
    text-align: center;
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 7px;
}

    .tournament-detail-winning-table-container .table > tbody > tr:nth-of-type(odd) {
        background-color: #10141873;
        border-radius: 9.6px;
        text-align: center;
    }

.tournament-detail-winning-table-container .table > :not(caption) > * > * {
    border: 0;
}

.tournament-detail-winning-table-container th {
    color: #cccccc;
    font-size: 18px;
}

.tournament-detail-content-container-inner-header.justify-content-start {
    justify-content: start;
}

.tournament-detail-rules-text {
    background-color: #101418;
    border-radius: 9.6px;
    color: #fff;
    font-size: 14px;
    padding: 30px 10px 50px 24px;
}

.tournament-detail-info-container {
    background-color: #101418;
    border-radius: 9.6px;
    padding: 17px 24px 20px 25px;
    margin-bottom: 80px;
}

    .tournament-detail-info-container .row {
        --bs-gutter-x: 14px;
    }

.tournament-detail-info-container-item {
    background-color: #ffffff0d;
    border-radius: 9.6px;
    padding: 22px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

    .tournament-detail-info-container-item span {
        width: 100%;
        color: #64b000;
        font-size: 15px;
    }

        .tournament-detail-info-container-item span:last-child {
            color: #fff;
        }

.card-header-text {
    color: #fff;
    padding-left: 10px;
}

.poker__page-video--background {
    background-color: #1d242a;
    padding:20px 0 50px;
    width:1140px;
    height:565px;
}
.poker__page-video {
    width: 1100px;
    height: 495px;
    margin: auto;
    display: block;
    background-color:var(--grey);
}
.poker__video-link--margin {
    margin-top:13px;
}
.poker__video-link {
    padding-left: 20px;
    color: #cccccc;
    font-size:15px;
}
.poker__blocks {
    display:flex;
    justify-content:space-between;
    /*margin-top:65px;*/
    flex-wrap: wrap;
}
.poker__block {
    background-color: #1d242a;
    width: 555px;
    height: 300px;
    position: relative;
    transition: .3s;
    margin-top: 65px;
}

.poker__block-title--bar {
    width: 495px;
    /*height: 35px;*/
    /*color: #000;
    background-color: var(--yellow);*/
    position: absolute;
    z-index: 2;
    text-transform: uppercase;
    padding: 15px 0;
    left: 50%;
    top: -13%;
    transform: translate(-50%);
    font-family: 'robotoBold';
    text-align: center;
    transition: .3s;

}
.poker__block-title {
    font-size: 20px;
}
.poker-image {
    width: 525px;
    height: 270px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.large-star-icon {
    color: rgba(0, 0,0, 0.8);
    font-size: 18px;
}
.little-star-icon {
    color: rgba(0, 0,0, 0.5);
    font-size:13px;
}
/*.poker__block-link {
    color: #000;
    transition: .3s;
}*/
.poker__block:hover {
    cursor: pointer;
    background-color: #101214;
}

.poker__block:hover .poker__block-title--bar {
    background-color: var(--blue);
    color:#fff;
}


.poker__page-img-background {
    width: 100%;
    height: 1140px;
    background-color: #1d242a;
    margin-top:60px;
}
.poker__page-img--margin{
    padding:20px;
}
.poker__page-img{
    width:100%;
}



/*.poker__block:hover .poker__block-link{
    color: #fff;
}*/
/*--------------------------Modals Styles*/
.poker_modal-width {
    width: 520px;
}
.pokerRegisterModal__content {
    padding: 30px 20px 15px;
}
.pokerRegisterModal__footer {
    justify-content: flex-end;
}
.poker__register-button-title{
    font-size:15px;
}
.poker_register__form-button{
    padding: 14px 27px;
}

.poker__register-password-input{
    position:relative;
}
.poker__register-password-icon {
    color: #858c91;
    font-size: 20px;
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%);
}

.poker_modal__content{
    padding:26px 0 38px;
}
.poker_modal-buttons {
    margin: auto;
    margin-top: 10px;
    justify-content: center;
}
.poker_modal-button--margin-b {
    margin-bottom:20px;
}
.poker_modal-button--blue {
    padding: 22px 60px 20px;
    margin: auto;
}

.poker__modal-button-title-align{
    text-align:left;
}

.poker__modal-button-title {
    font-size: 16px;
    font-family: 'roboto';
    text-align: left;
}
.poker__modal-button-title--sm {
    font-size: 13px;
    display: block;
    padding-top: 10px;
    text-transform: capitalize;
    font-family: 'roboto';
}
.poker_modal--icon-right {
    padding-left: 20px;
    font-size:16px;
}


.poker_modal-button {
    /*padding: 12px 65px 12px 22px;*/
    width:200px;
    /*padding:14px 0 12px 22px;*/
    padding-left:20px;
    margin: auto;
    background-color: #3d4a54;
    color: #fff;
    transition: .3s;
    /*margin:10px 0;*/
}
.poker_modal-button-margin{
    margin:0 5px;
}
.poker_modal-button:hover {
    color: #fff;
    background-color: #64b000;
}
.poker_modal--icon-left {
    font-size: 20px;
    padding-right: 20px;
    padding-top: 7px;
}


.poker__page-img--margin {
    width: 100%;
}

.poker__page-img--margin img {
    width: 100%;
}


















.wpnpromotion_item {
    display: none;
}

.wpn_promotion_item_table {
    margin: 0 auto;
    width: 900px;
    line-height: 29px;
    font-size: 14px;
}

#sn-promo-modal .video_section, .wpnpromo_video_section {
    background-color: #373b46;
    border-radius: 1px;
    margin: 10px 0 20px;
    padding: 20px;
}

#sn-promo-modal .video, .wpnpromo_video {
    text-align: center;
}

.wpnPokerFaqItem_header {
    background: #111216;
    padding: 15px 21px;
    cursor: pointer;
}

    .wpnPokerFaqItem_header i {
        width: 10px;
        margin-right: 6px;
    }

.wpnPokerFaqItem_content {
    display: none;
    background: #1d1f26;
    padding: 15px 21px 17px;
}

.wpnPokerFaqItem_header_even {
    background: #090a0c !important;
}

.wpnhowtoplaynav, .wpnrulesnav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;
}

    .wpnhowtoplaynav li, .wpnrulesnav li {
        display: inline;
        padding: 0 11px;
    }

        .wpnhowtoplaynav li a, .wpnrulesnav li a {
            color: #797d86;
            font-family: 'roboto';
        }

            .wpnhowtoplaynav li a:hover, .wpnrulesnav li a:hover {
                color: #939393;
            }

        .wpnhowtoplaynav li.active a, .wpnrulesnav li.active a {
            color: #fff;
        }

        .wpnhowtoplaynav li a:focus, .wpnrulesnav li a:focus {
            text-decoration: none;
        }

.stick {
    position: fixed;
    top: 0;
}

.ns-breadcrumb-wpnhowtoplay, .ns-breadcrumb-wpnrules {
    margin-bottom: 20px !important;
    padding: 14px 0px !important;
    width: 100%;
}













.sn-prom-main {
    padding: 0 20px;
}

.sn-promotions-1 {
    margin-bottom: 45px;
    font-size: 16px;
    color: #818693;
}

.sn-promotions-2 {
    height: 222px;
    overflow: hidden;
}

    .sn-promotions-2 img {
        width: 100%;
        max-height: 230px;
        min-height: 222px;
    }

    .sn-promotions-2 a {
        cursor: pointer;
    }

.sn-promotions-3 {
    padding: 40px;
    background: #22252e;
    transition: 300ms;
    -moz-transition: 300ms;
    -ms-transition: 300ms;
    -webkit-transition: 300ms;
}

    .sn-promotions-3 .btn {
        padding: 9px 20px;
        font-size: 18px;
    }

.sn-promotions-4 {
    height: 130px;
    max-height: 130px;
    line-height: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-sizing: border-box;
}

    .sn-promotions-4 h3 {
        color: #15a487;
        font-size: 24px;
        font-family: 'robotoBold';
        display: block;
        margin: 0 0 16px 0;
        line-height: 27px;
        padding: 0;
    }

    .sn-promotions-4 p {
        margin: 0;
        padding: 0;
    }

.sn-promotions-1:hover .sn-promotions-3 {
    background: #2a2d38;
}

.sn-smpromimg {
    height: 145px !important;
}

.sn-small-img {
    min-height: 145px !important;
}

.sn-small-prom {
    padding: 15px 30px 20px 30px;
    font-size: 13px;
    line-height: 17px;
}

    .sn-small-prom .sn-promotions-4 {
        height: 112px;
        max-height: 112px;
        margin-bottom: 17px;
    }

    .sn-small-prom h3 {
        color: #15a487;
        font-size: 15px;
        font-family: 'robotoBold';
        display: block;
        margin: 0 0 10px 0;
        line-height: 17px;
        padding: 0;
    }

    .sn-small-prom p {
        line-height: 17px;
    }

    .sn-small-prom .btn {
        font-size: 14px;
        background: #117989 !important;
        color: white !important;
    }


.btn-primary {
    background: #117989 !important;
    color: white !important;
}

    .btn-primary:hover {
        background: #13535f !important;
        border-color: #13535f !important;
        color: white !important;
    }








.modal-body {
    font-size: 14px;
    color: #a0a5b3;
}


.fixedheight11 {
    max-height: 450px;
    overflow: auto;
}






/* Kahve
================================================== */

.kahve__blocks {
    width: 960px;
}

.kahve__block {
   
    background-color: #1d242a;
    width: 430px;
    height: 238px;
    padding: 15px;
    margin: 0 13px 13px 0;
    box-sizing: content-box;
    display: inline-block;
    transition: .3s;
}

.kahve-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kahve__block:hover {
    background-color: #101214;
}
.pokerbtn {
    text-transform: none;
}

.table-dark {
  margin: 0;
  padding: 0;
  border: 0 !important;
  font-size: 13px;
  color: #cccccc;
}

  .table-dark > tbody > tr > td, .table-dark > tbody > tr > th, .table-dark > tfoot > tr > td, .table-dark > tfoot > tr > th {
    padding: 7px 8px 7px 12px;
    vertical-align: middle;
    border: 0;
    line-height: 16px;
    color: #cccccc;
    height: 40px;
    font-size: 13px;
  }

  .table-dark > thead > tr > th {
    padding: 12px 8px 10px 12px;
    vertical-align: bottom;
    border: 0;
    line-height: 16px;
    color: var(--yellow);
    height: 40px;
    border-bottom: 2px solid #272f36;
    background: #121217;
    font-size: 13px;
    font-weight: normal;
    font-family: 'robotoBold', Arial;
    text-transform: uppercase;
  }

  .table-dark > tbody > tr {
    background-color: rgba(255,255,255,0.02);
  }

    .table-dark > tbody > tr:nth-of-type(2n+1) {
      background-color: #1d242a;
    }

.table-button, .table-button:focus, .table-button:focus:active {
  padding: 7px 8px 6px 8px;
  font-size: 12px;
  line-height: 13px;
  background: rgba(255,255,255,0.1);
  color: #cccccc;
  cursor: pointer;
  min-width: 100px;
  border: 0 !important;
}

  .table-button i {
    font-size: 14px;
    line-height: 12px;
  }

  .table-button:hover {
    background: var(--yellow);
    color: black;
  }

.table-button--remove:hover {
  background: var(--red);
  color: white;
}
/*TWO FACTORY CSS*/
.modal-twofa .modal-body {
  padding: 25px 50px 40px 50px !important;
}

.twofa_title {
  padding: 20px 0 35px 0;
  font-size: 17px;
  color: var(--yellow);
  text-align: center;
  margin: 0;
}

.modal_twofa .modal-body {
  padding: 25px 50px 40px 50px;
}

.twofa_buttons {
  font-size: 17px;
  line-height: 39px;
  color: white;
  text-align: center;
  padding-bottom: 35px;
}

  .twofa_buttons a, .twofa_buttons button {
    display: block;
    padding: 15px 15px 16px 15px;
    border: 0;
    background: #353f48;
    color: white;
    cursor: pointer;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

    .twofa_buttons a:hover, .twofa_buttons button:hover, .twofa_buttons button:focus {
      background: #3b4650;
    }

.google_2fa:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: url(/Content/img/icon_google2fa.png) no-repeat left;
    background-size: auto 100%;
}

.SMS_2fa:before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    background: url(/Content/img/icon_sms2fa.png) no-repeat left;
    background-size: auto 100%;
}

.twofa_text {
  text-align: center;
  font-size: 15px;
  padding: 10px 0;
}

.twofa_qrcode {
  padding: 15px;
  background: #353f48;
  margin: 0 auto 20px auto;
  width: 180px;
  height: 180px;
}

  .twofa_qrcode img {
    width: 100%;
    height: 100%
  }

.twofa_qr_seccode {
  width: 100%;
  white-space: nowrap;
  padding: 5px 90px 5px 10px;
  background: #353f48;
  line-height: 35px;
  position: relative;
  text-overflow: ellipsis;
  overflow: hidden;
  min-height: 45px;
  box-sizing: border-box;
  font-size: 14px;
  color: white;
  margin-bottom: 20px;
}

  .twofa_qr_seccode button, .twofa_qr_seccode button:hover, .twofa_qr_seccode button:focus {
    position: absolute;
    right: 5px;
    top: 5px;
    display: block;
    padding: 0 8px;
    height: 35px;
    border: 0;
    background: #858c91;
    color: white;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
  }

    .twofa_qr_seccode button.active.focus, button.active:focus, button.focus, button:active.focus, button:active:focus, button:focus {
      background: var(--green);
      color: white;
    }

.twofa_sms_code {
  padding: 35px 0 20px 0;
}

  .twofa_sms_code label {
    color: white;
    line-height: 40px;
    padding: 0;
    margin: 0;
    display: block;
  }

  .twofa_sms_code .form-control {
    height: 40px;
    color: #cccccc;
  }

    .twofa_sms_code .form-control[disabled], .twofa_sms_code .form-control[readonly] {
      box-shadow: none;
      height: 40px;
      color: #cccccc;
      opacity: 1;
      background-color: #353f48;
    }

.success_message, .failure_message {
  font-size: 15px;
  color: white;
  text-align: center;
  padding: 30px 0;
  color: var(--green);
}

  .success_message i {
    display: block;
    margin-bottom: 10px;
    font-size: 38px;
    color: var(--green);
  }

.failure_message {
  color: #e74c3c;
}

  .failure_message i {
    display: block;
    margin-bottom: 10px;
    font-size: 38px;
    color: #e74c3c;
  }

.modal-twofa .form-control {
  background-color: #353f48;
}
  .modal-twofa .form-control:focus {
    background-color: #3b4650;
  }
.modal-twofa .form-control[readonly]:focus {
  background-color: #353f48;
}

/*TWO FACTORY CSS*/

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '←';
}
[dir='rtl'] .slick-prev:before
{
    content: '→';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '→';
}
[dir='rtl'] .slick-next:before
{
    content: '←';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/** 
 * Featherlight - ultra slim jQuery lightbox
 * Version 0.4.9 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2014, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/



@media all{.featherlight{display:none;position:fixed;top:0;right:0;bottom:0;left:0;z-index: 1100;text-align:center;white-space:nowrap;cursor:pointer;background:#333;background:rgba(0,0,0,0)}.featherlight:last-of-type{background:rgba(0,0,0,.7)}.featherlight:before{content:'';display:inline-block;height:100%;vertical-align:middle;margin-right:-.25em}.featherlight .featherlight-content{
  position: relative;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
/*  overflow: auto;*/
/*  padding: 25px 25px 0;*/
  border-bottom: 25px solid transparent;
  width: 500px;
  border-radius: 3px;
  height: 164px;
  font-size: 12px;
  line-height: 34px;
  color: #ffffff;
  background: #141414;;
  cursor: auto;
  white-space: normal;
}.featherlight .featherlight-inner{display:block}.featherlight .featherlight-close-icon{ display: none; position:absolute;z-index:9999;top:0;right:0;line-height:25px;width:25px;cursor:pointer;text-align:center;font:Arial,sans-serif;background:#fff;background:rgba(255,255,255,.7);color:#000}.featherlight .featherlight-image{width:100%}.featherlight-iframe .featherlight-content{border-bottom:0;padding:0}.featherlight iframe{border:0}}@media only screen and (max-width:1024px){.featherlight .featherlight-content{margin-left:10px;margin-right:10px;max-height:98%;padding:10px 10px 0;border-bottom:10px solid transparent}}
.h3lightbox{
  margin-top: 0px;
 
  text-align: center;
  padding-left: 14px;
  padding-right: 14px;
  padding-top: 2px;
  color: #999;
  font-size: 15px;
  font-family: 'Trajan';
}
.mylightboxregmess {
    padding: 6px 25px 6px 38px;
    background: URL('~/img/succ_reg_icon.png') #175929 4% 50% no-repeat;
}
.light-close_own{
    padding: 5px 15px 6px;
    cursor: pointer;
    background-color: #ec990d;
    border-radius: 1px;
    font-size: 15px;
    color: #252525;
    border: solid 2px #000000;
}
.div_light-close_own{
      padding: 7px 22px 7px 22px;
      cursor: pointer;
      margin-top: 15px;
}

.select2-container{
    box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle;}
.select2-container .select2-selection--single{
    box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none;

}
.select2-container .select2-selection--single .select2-selection__rendered{
    display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap

}
.select2-container .select2-selection--single .select2-selection__clear{
    position:relative}
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap}.select2-container .select2-search--inline{float:left}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;padding:0}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-dropdown{background-color: #1c1e22;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051;box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);-moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);-ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);}.select2-results{display:block}.select2-results__options{list-style:none;margin:0;padding:0}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none}.select2-results__option[aria-selected]{cursor:pointer}.select2-container--open .select2-dropdown{left:0}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-search--dropdown{display:block;padding:4px}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none}.select2-search--dropdown.select2-search--hide{display:none}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0)}.select2-hidden-accessible{border:0 !important;clip:rect(0 0 0 0) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important}
.select2-container--default .select2-selection--single {
    background-color: #2d303b;
    border: 1px solid #2d303b;
    height: 40px;
    padding: 4px;
    outline: none;
    border-radius: 7px;
    display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{color: #cccccc;line-height:28px;}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top: 7px;right: 4px;width:20px;background-color: #107e68;}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color: #fff transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0;}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color: transparent transparent #fff transparent;border-width:0 4px 5px 4px;}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%}.select2-container--default .select2-selection--multiple .select2-selection__rendered li{list-style:none}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline{float:right}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--default .select2-search--dropdown .select2-search__field{
    color: #cccccc;
    background-color: #2d303b;
    border: 1px solid #2d303b;
    border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -webkit-box-shadow: none;
    height: 35px;
}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;box-shadow:none;-webkit-appearance:textfield}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--default .select2-results__option[role=group]{padding:0}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999}.select2-container--default .select2-results__option[aria-selected=true]{background-color: #107e68;}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color: rgba(17, 119, 100, 0.6);color:white;}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic .select2-selection--single{background-color:#f7f7f7;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #fff 50%, #eee 100%);background-image:-o-linear-gradient(top, #fff 50%, #eee 100%);background-image:linear-gradient(to bottom, #fff 50%, #eee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eee 50%, #ccc 100%);background-image:-o-linear-gradient(top, #eee 50%, #ccc 100%);background-image:linear-gradient(to bottom, #eee 50%, #ccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0)}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #fff 0%, #eee 50%);background-image:-o-linear-gradient(top, #fff 0%, #eee 50%);background-image:linear-gradient(to bottom, #fff 0%, #eee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0)}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eee 50%, #fff 100%);background-image:-o-linear-gradient(top, #eee 50%, #fff 100%);background-image:linear-gradient(to bottom, #eee 50%, #fff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0)}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;box-shadow:none}.select2-container--classic .select2-dropdown{background-color:#fff;border:1px solid transparent}.select2-container--classic .select2-dropdown--above{border-bottom:none}.select2-container--classic .select2-dropdown--below{border-top:none}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--classic .select2-results__option[role=group]{padding:0}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:#fff}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb}
span.select2-container--focus, span.select2-container--open {
    border-color: #2d303b;
    outline: none;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -ms-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(236, 156, 13, 0.6);
}
.providers_page_main{
    overflow: hidden;
}

.providers_title {
    color: #e4e9ed;
    font-size: 35px;
    text-transform: capitalize;
}

.providers_line-short {
    width: 50px;
    height: 2px;
    background: #64b000;
    margin-bottom: 68px;
}

.providers_background {
    background-color: #313c45;
    width: 100%;
    height: 180px;
    position: relative;
    transition: .3s;
    margin-bottom: 30px;
}

.providers_background:hover {
    background-color: #1d242a;
}

.providers_img {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 11px;
    bottom: 11px;
    opacity: 0.8;
}

.providers_item-links {
    position: absolute;
    bottom: 11px;
    right: 11px;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 15px;
}

.providers_item-link {
    color: #fff;
    font-size: 14px;
    padding-right: 12px;
}
.providers_item-link:active, .providers_item-link:focus{
    color:#64b000;
}

.providers_item-link i {
    padding-right: 7px;
}

.dots_img {
    position: absolute;
    top: 62px;
    left: 49%;
    transform: translateX(-6%);
}
.dark_background {
    width: 460px;
    height: 610px;
    background-color: #1d242a;
    position: relative;
    right: -260px;
    top: -115px;
}

.providers_page-carousel {
    position: absolute;
    /*top: -44px;*/
    top: -6%;
    left: 30px;
}
.providers_page-carousel-indicators {
    left: 2%;
    bottom: 0;
    margin-left: 0;
    text-align: left;
}
.providers_page-carousel-indicators li {
    background: #e4e9ed;
    border: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 3px;
}
.providers_page-carousel-indicators .active {
    background: #64b000;
    border: 0;
    width: 12px;
    height: 12px;
    margin: 0 3px;
}

.providers__info--icon {
    opacity: 1;
    position: absolute;
    right: 11px;
    top: -11px;
    background: url(/Content/img/info__icon.png);
    width: 38px;
    height: 38px;
    transform: scale(0);
    -webkit-transition: transform 500ms;
    -moz-transition: transform 500ms;
    -o-transition: transform 500ms;
    transition: transform 500ms;

    display: flex;
    align-items: center;
    justify-content: center;
}

.providers__info--icon-loaded {
    transform: scale(1) rotate(360deg);
}

.providers__info--icon-animating {
    transform: scale(1.3) rotate(360deg);
}

.providers__info--icon-active {
    background-position: bottom;
}

.providers__additional--info {
    width: 100%;
    width: calc(100% + 22px);
    right: 0;
    top: 31px;
    position: absolute;
    background: #e4e9ed;
    border-radius: 5px;
    display: none;
    z-index: 1;
    box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.7);
}

.info-triangle {
    width: 15px;
    height: 15px;
    background: #e4e9ed;
    transform: rotate(45deg);
    position: absolute;
    top: -5px;
    right: 22px;
    z-index: -1;
}

.info__element--cnt {
    color: #4c5053;
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 4px 12px;
    border-bottom: 2px solid #c2c6ca;
    font-size: 15px;
}

.info__element--cnt:last-child {
    border-bottom: 0;
}

.info__element--cnt p {
    margin-bottom: 0;
}

.info__stars--cnt i {
    color: #a5a3ab;
}

.info__stars--cnt .providers__star--active {
    /*color: #117989;*/
    color: #697dce;
}


.info__overlay--cnt {
    width: 21px;
    height: 21px;
    /* background: #00800075; */
    z-index: 0;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info__overlay {
    width: 10px;
    height: 51px;
    /*background: rgba(17, 121, 137, 0.6);*/
    /*background: rgba(100, 176, 0, 0.5);*/
    background: rgba(105, 125, 206, 0.5);
    transform: rotate(45deg);
    margin-top: -22px;
    margin-left: -22px;
    -webkit-transition: margin 800ms;
    -moz-transition: margin 800ms;
    -o-transition: margin 800ms;
    transition: margin 800ms;
}

.info__overlay--active {
    margin-top: 22px;
    margin-left: 22px;
}
/*-----------------------Home Page*/

header {
    background: #343743;
}

.logo__link::before {
    width: 195px;
}

.main-menu__link--active, .main-menu__link--active:hover, .main-menu__link--active:focus {
    background: #7ebb2f;
}

.account__dropdown-menu, .bonus-cash__dropdown {
    background: #343743;
}

.account__link:hover, .account__link:focus, .account__link--active, .account__link--active:hover, .account__link--active:focus {
    background: #64b000 !important;
}

/*.lang.open .lang__dropdown-button {
    background-color: #343743;
}*/
.lang__dropdown-button, .lang__dropdown-button:hover, .lang__dropdown-button:focus {
    background: #343743 !important;
}

.lang__dropdown {
    background: #343743;
}

.lang__dropdown-link:hover, .lang__dropdown-link:focus, .lang__dropdown-link--active, .lang__dropdown-link--active:hover, .lang__dropdown-link--active:focus {
    background: #64b000 !important;
}

.bonus-cash__amount {
    color: #697dce !important;
}

.header-button-icon {
    color: #64b000;
}

.account-icon {
    color: #64b000;
}

.account__cash::before {
    color: #0b535e;
}

.bonus-cash {
    color: #697dce;
}

    .bonus-cash::before {
        background: #697dce;
    }

.showhide__account-link {
    color: var(--grey);
}

.promotions-link {
    background: #282b35;
}

.lang {
    border-left: 1px solid #444752;
    border-right: 1px solid #444752;
}

.lang__dropdown-button::after {
    color: #64b000;
}

.slider__indicators li.active, .slider__indicators li.active:hover, .slider__indicators li.active:focus {
    background: #64b000;
}

.fg__carousel-dots li.active {
    background: #64b000;
}

.fg__title {
    color: #fff;
    background: #202022;
    border-bottom: 1px solid #343743;
}

.fg__date-day {
    color: #fff;
}

.btn-warning, .btn-warning:disabled {
    color: #fff;
    background: #64b000;
    border-color: #64b000;
}

    .btn-warning:hover, .btn-warning:focus, .btn-warning:active, .btn-warning:active:focus, .btn-warning:active:hover {
        background: #64b000;
        border-color: #64b000;
        filter: brightness(92%);
        color: #fff;
    }

.fg__game-info {
    background: #202022;
}

.carousel-inner {
    background: #202022;
}

.fg__datetime {
    background: #343743 url(/Content/img/image__fg-background.png) no-repeat bottom left;
}

.lw__title-bar {
    background: #64b000;
}

.ps__title-bar {
    background: #697dce;
}

.lastm-bets__time-filter-link--active, .lastm-bets__time-filter-link--active:hover, .lastm-bets__time-filter-link--active:focus {
    color: #64b000;
    border-bottom: 3px solid #64b000;
}

.lastm-bets__time-filter-link:hover {
    color: #64b000;
}

.lastm-bets__game-filter-link--active, .lastm-bets__game-filter-link--active:hover, .lastm-bets__game-filter-link--active:focus {
    background: #64b000;
}

.lw__winnings {
    color: #fff;
}

.jp__winnings {
    color: #fff;
}

.lastm-bets__table > thead > tr > th {
    color: #697dce;
    background: #343743;
}

.lastm-bets__game-filter {
    background: #2a2c36;
}

.lastm-bets__table > tbody > tr:nth-of-type(2n+1) {
    background: #343743;
}

.lastm-bets__table {
    background: #2a2c36;
}

.last-winners__container, .popular-slots__container {
    background: #343743;
}

.block__footer {
    border-top: 1px solid #36414a;
}

.button__view-more {
    color: #8b8fa0;
}

.jackpots__container {
    background: #343743;
}

.lw__list-number {
    background: #2a2c36;
}

.homepage__main-container {
    background: #28282a url(/Content/img/home_background.jpg) no-repeat top;
    background-size: cover;
}


/*new footer styles*/

footer {
    padding-bottom: 0;
}

.web_footer {
    background: #343743;
    color: #7a8b99;
    font-size: 13px;
    font-family: 'robotoBold', Arial;
    padding: 60px 0 40px;
}

.footer_logo {
    margin-right: 16px;
}

.footer_copyright-text {
    font-family: 'RobotoRegular', Arial;
    margin-top: 16px;
}

.footer__line-short {
    margin: 30px 0;
    width: 100px;
    height: 1px;
    background: #36414a;
}

.web_footer .web-footer_socials{
    padding-top: 10px;
}

.web_footer .web-footer_socials a {
    width: 30px;
    height: 30px;
    display: inline-block;
    background-repeat: no-repeat;
    margin-right: 7px;
}

    .web_footer .web-footer_socials a.icon-fb {
        background-image: url(/Content/img/facebook_nw.png);
    }

    .web_footer .web-footer_socials a.icon-twetter {
        background-image: url(/Content/img/twetter_nw.png);
    }

    .web_footer .web-footer_socials a.icon-instagram {
        background-image: url(/Content/img/instagram_nw.png);
    }

    .web_footer .web-footer_socials a.icon-youtube {
        background-image: url(/Content/img/youtube_nw.png);
    }

    .web_footer .web-footer_socials a.icon-television {
        background-image: url(/Content/img/television_nw.png);
    }

    .web_footer .web-footer_socials a.icon-download {
        background-image: url(/Content/img/download_nw.png);
    }

    .web_footer .web-footer_socials a.icon-telegram {
        background-image: url(/Content/img/telegram_nw.png);
    }
    .web_footer .web-footer_socials a.icon-livetelegram {
        background-image: url(/Content/img/livetelegram_nw.png);
    }


        .footer__line-long-top {
            position: relative;
            height: 5px;
            width: 100%;
            top: -60px;
            background: #64b000;
        }

.footer_list_heading {
    color: #64b000;
    font-size: 15px;
    text-transform: uppercase;
}

.footer_list {
    margin: 24px 0 40px;
    list-style-type: none;
    padding: 0;
    text-transform: capitalize;
}

.footer_list-item {
    padding-bottom: 10px;
}

.footer_list-item-link {
    font-family: 'RobotoRegular', Arial;
    color: #bbbcbd;
    transition: .2s;
}

.footer_list-icon {
    padding-right: 10px;
}

.footer_list-item-link:hover {
    color: #64b000;
}

.footer__desc-text {
    margin-bottom: 20px;
    font-family: 'RobotoRegular', Arial;
    padding: 7px 0;
    color: #7a8b99;
}

.footer__desc-heading {
    font-size: 13px;
    color: #bbbcbd;
    font-family: 'robotoBold', Arial;
    margin: 0;
    padding: 0;
}

.footer_light {
    background: #30323d;
    text-align: center;
}

.footer-light-padding {
    padding: 30px 0;
}

.footer__line-long {
    width: 100%;
    height: 1px;
    background: #36414a;
}

.providers-logo-color {
    filter: opacity(100%);
}

.payments-logo {
    filter: opacity(100%);
}

.footer_loght-text {
    color: #7a8b99;
    font-size: 14px;
    font-family: 'RobotoRegular', Arial;
    width: 680px;
    margin: auto;
    margin-top: 20px;
}


/*-----------------------Contact Page*/

.deposit-tabs__link--active, .deposit-tabs__link--active:hover, .deposit-tabs__link--active:focus {
    background: #697dce;
    color: black;
}

.deposit-tabs {
    border-bottom: 3px solid #697dce;
}

.breadcrumbs__content {
    color: #fff;
}

#____BODY_CONTAINER {
    background: #28282a;
}

.breadcrumbs__container {
    background: #202022;
}

.contact__form-input {
    background: #343743;
}

.contact__information-content-icon {
    color: #64b000;
}

.contact__information-content-link:hover {
    color: #64b000;
}

.contact__information-content {
    background: #2a2c36;
}

.form-group.required .control-label:after {
    color: #64b000;
}

.contact__form-captcha-refresh-button {
    background: #64b000;
}


/*-----------------------LiveCasino Page*/

.games-menu__link--active, .liveca-menu .active, .games-menu__link--active:hover, .liveca-menu .active:hover, .games-menu__link--active:focus, .liveca-menu .active:focus {
    color: #64b000;
}

.LC-games__name:hover {
    background: #697dce;
}

.category-filter__games-number {
    color: #64b000;
}

.category-filter__container.dropdown.open .category-filter__button {
    border-color: #64b000;
}

.games-menu__container {
    background: #1d242a;
}

.games-filter__container {
    background: #2a2c36;
}

/*-----------------------Login Page*/
.login-page__title {
    background: #101418;
    color: #fff;
}

.btn-info, .btn-info:disabled {
    color: var(--white);
    background: #64b000;
    border-color: #64b000;
}

    .btn-info:hover, .btn-info:focus, .btn-info:active, .btn-info:active:focus, .btn-info:active:hover {
        background: #64b000;
        border-color: #64b000;
        filter: brightness(92%);
        color: #fff;
    }

.forgotpass-link:hover {
    color: #64b000;
}

.login__container {
    background: #282b35;
}

/*-----------------------Messages*/
.message__click.collapsed {
    background-color: #30323d;
}

    .message__click.collapsed:hover {
        background-color: #38434d;
    }

.message__subject {
    color: #64b000;
}

.message__click, .message__click:focus {
    background-color: #202022;
}

.message__content {
    background-color: #30323d;
}

/*-----------------------Poker Page*/

.poker__block:hover .poker__block-title--bar {
    background-color: #64b000;
    color: #fff;
}
/*-----------------------Bonus Page*/
.table-dark > thead > tr > th {
    color: #697dce;
}

.table-dark > tbody > tr:nth-of-type(2n+1) {
    background-color: #1d242a;
}

.table-dark > tbody > tr {
    background: #2a2c36;
}

/*-----------------------Deposit Page*/
.deposit__col-title {
    color: #64b000;
}
/*.deposit__box-main-container .deposit__box-container:nth-child(2n+1) .deposit__box-flex {
    background: #282b35;
}
.deposit__box-main-container .deposit__box-container .deposit__box-flex {
    background: #343743;
}*/
.deposit-content__title {
    color: #697dce;
}

/*-----------------------P2P Transfer Page*/

.transfer__form--input:focus {
    border-bottom: 2px solid #64b000;
}

.transfer__form--header {
    color: #64b000;
}

.transfer__form {
    background: #282b35;
}

.transfer__form--converted-amount {
    color: #697dce;
}

/*-----------------------Profile Page*/
.profile__page-section-header {
    color: #64b000;
}

input:checked + .slider {
    background-color: rgb(126, 187, 47);
}


/*-----------------------Security Devices Page*/
.tabs-multilevel__link--active, .tabs-multilevel__link--active:hover, .tabs-multilevel__link--active:focus {
    color: #64b000;
}

/*-----------------------Promotions Page*/
.promotions__section-background-text {
    background: linear-gradient(to right, rgba(100,176,0,0), rgba(100,176,0,1) 50%);
}

.btn-read-more {
    background: #697dce;
    border-color: #697dce;
}

    .btn-read-more:hover, .btn-read-more:focus, .btn-read-more:active, .btn-read-more:active:focus, .btn-read-more:active:hover {
        background: #697dce;
        border-color: #697dce;
        filter: brightness(92%);
    }

.promotions__section {
    background-color: #202022;
}

.promotions__section-title {
    color: #697dce;
}

.promotions_info-text--yellow {
    color: #7ebb2f;
}

    .promotions_info-text--yellow:hover {
        color: #7ebb2f;
        filter: brightness(92%);
    }

.promotion__tags-link:hover {
    color: #64b000;
    filter: brightness(92%);
}

.breadcrumbs-tabs__link--active, .breadcrumbs-tabs__link--active:hover, .breadcrumbs-tabs__link--active:focus {
    color: #64b000;
    border-color: #64b000;
}
/*-----------------------Promotions Inner Page*/
.promotionsInner__slider-text {
    border-left: 5px solid #7ebb2f;
}

.promotionsInner-title-yellow {
    color: #64b000;
}

.promotions__step-number {
    color: #697dce;
}

.terms-block {
    background-color: #202022;
}

.promotions__step {
    background-color: #202022;
}

/*-----------------------Registration Page*/
#UserSecureWordPopup-modal {
    padding-right: 0 !important;
}

    #UserSecureWordPopup-modal .modal-header .close {
        margin-top: -24px;
    }

    #UserSecureWordPopup-modal button {
        margin-top: 16px;
    }

    #UserSecureWordPopup-modal input {
        margin-top: 10px;
        background: #353f48;
        color: #e4e9ed;
        height: 37px;
        padding-left: 8px;
        border: 0;
    }

    #UserSecureWordPopup-modal .error-text {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

.modal-header {
    background-color: #697dce;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.registerModal__link {
    color: white;
    margin-bottom: 15px;
}

#sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content {
    display: flex;
}

    #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item {
        width: 30%;
        border-right: solid 1px #42484f;
        padding: 0 20px;
    }

        #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .register-item-form {
            margin-bottom: 0px;
        }

        #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social {
            display: flex;
            margin-bottom: 15px;
            margin-top: 20px;
        }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social a {
                font-size: 30px;
                display: flex;
                height: 37px;
                width: 37px;
                padding: 5px;
                text-align: center;
                border-radius: 4px;
                color: white;
                justify-content: center;
                align-items: center;
                margin-right: 5px;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social i {
                line-height: normal;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social .registerModal__social-whatsapp {
                background: #34cc34;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social .registerModal__social-instagram {
                background-image: url(/Content/img/register-instagram-bg.png);
                background-repeat: no-repeat;
                background-size: cover;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social .registerModal__social-facebook {
                background: #3b5998;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social .registerModal__social-twitter {
                background-image: url(/Content/img/twitter-X.jpg);
                background-repeat: no-repeat;
                background-size: cover;
            }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .regitration-social .registerModal__social-telegram {
                background: #28aae1;
            }

        #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .btn-success {
            width: 100%;
            border-radius: 8px;
            height: 40px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

            #sn-registration-modal .modal-content .modal-body .content-registration .registration-modal-content .registration-modal-item .btn-success i {
                font-size: 12px;
                padding-right: 6px;
            }

.normal-password {
    background-color: #7ebb2f;
}

.form-check-label input:checked ~ .checkmark {
    border: 1px solid #64b000;
    background: #64b000;
}

.form-check-label input:checked ~ .label-color {
    color: #64b000;
}

.form-check-label .checkmark:after {
    left: 4px;
    width: 6px;
    height: 10px;
    border: solid #64b000;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.register__form-info-block--link:hover {
    color: white;
}
/*.register__form-info-block--link:hover {
    color: #64b000;
}*/
.register__dropdown-icon:hover {
    color: #64b000;
}

/*-----------------------Slots Page*/

.slot-button__play:hover {
    color: #64b000;
}

.slot-button__star:hover, .slot-button__star:focus, .slot-button__smile:hover, .slot-button__smile:focus {
    background: #64b000;
}

.slots-carousel__container .slick-arrow:active, .slots-carousel__container .slick-arrow:focus, .slots-carousel__container .slick-arrow:hover {
    background: transparent;
    color: #64b000;
    filter: brightness(92%);
}

.openby-filter__link--active, .openby-filter__link--active:hover, .openby-filter__link--active:focus {
    color: #64b000;
}

.slot__close-button--fullscreen:hover, .slot__close-button:hover {
    color: #64b000;
    filter: brightness(92%);
}

.btn-select-new {
    border: 1px solid #64b000;
    color: #64b000;
}

    .btn-select-new:hover, .btn-select-new:focus, .btn-select-new:active, .btn-select-new:active:focus, .btn-select-new:active:hover {
        background-color: #64b000;
        border-color: #64b000;
        filter: brightness(92%);
    }

/*-----------------------Transfer Page*/

.transfer__block-header {
    background-color: transparent;
    color: #64b000;
}

.transfer__block-arrow {
    color: #64b000;
}

.transfer__block-content--active, .transfer__block-content--active:hover {
    background-color: #697dce;
}

.transfer__amount-form .btn-warning, .btn-warning:disabled {
    color: black;
}

.transfer__amount-form-laber {
    color: #64b000;
}


/*-----------------------2FA Page*/
.twofa_title {
    color: #64b000;
}

.btn-link--text, .btn-link--text:focus {
    color: #64b000;
}

    .btn-link--text:hover {
        color: #64b000;
    }

.twofa_text.greenColor {
    color: #7ebb2f !important;
}

.success_message, .failure_message {
    color: #7ebb2f;
}

    .success_message i {
        color: #7ebb2f;
    }



.sn-loginbut input {
    background: #697dce !important;
}

    .sn-loginbut input:hover, .sn-loginbut input:focus, .sn-loginbut input:active, .sn-loginbut input:active:focus, .sn-loginbut input:active:hover {
        background: #697dce !important;
        border-color: #697dce !important;
        filter: brightness(94%);
        color: #fff;
    }

.btn-success, .btn-success:disabled {
    background: #697dce;
    border-color: #697dce;
}

    .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success:active:focus, .btn-success:active:hover {
        background: #697dce;
        border-color: #697dce;
        filter: brightness(92%);
        color: #fff;
    }

.trans_ok {
    background: #64b000 url(/Content/themes/v1/img/ok.png) no-repeat left;
}

.div_light-close_own {
    background: #697dce !important;
}

    .div_light-close_own .btn-primary {
        background: #697dce !important;
        border-color: #697dce !important;
    }

        .div_light-close_own .btn-primary:hover {
            background: #697dce !important;
            border-color: #697dce !important;
        }

.progress-bar-20, .progress-bar-50, .progress-bar-100 {
    background-color: #64b000 !important;
}

.forgot--password__modal h3 {
    color: #fff !important;
}

.forgot--password__modal button {
    color: #fff !important;
}

.datepicker.dropdown-menu {
    color: #697dce !important;
    border: 1px solid rgb(116, 138, 224) !important;
    box-shadow: 0 5px 15px rgb(105, 125, 206) !important;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
    color: #fff;
    background-color: #343743 !important;
    border-color: #3b3f4c !important;
    box-shadow: inset 0px 0px 10px 0px #5f72bb !important;
}

.datepicker table tr td:hover {
    color: #fff;
    background-color: #343743 !important;
}

.datepicker table tr td.today {
    color: #64b000 !important;
    box-shadow: inset 0px 0px 10px 0px #5f72bb !important;
}

.datepicker table tr td.highlighted {
    color: #497d04 !important;
}

.LC-games__logo-container {
    background: #697dce;
}

.lcGame__link:hover .LC-games__name, .lcGame__link:active .LC-games__name {
    background: #64b000;
}

.lcGame__link:hover {
    color: #64b000 !important;
}

.rakerace_sched1 h5.rakeracetitle {
    color: #fff !important;
}

.rakerace_sched1 h5 {
    color: #64b000 !important;
}

.rake_sched_title {
    color: #64b000;
}

.rakesmban-text2 {
    color: #64b000;
}

.rakesmban-text2 {
    color: #64b000;
}

.rakeraceright #clockdiv {
    color: #64b000 !important;
}

.rakesmban2_1 {
    color: #64b000;
}

/*Call request section*/

.osp__container {
    background-image: url(/Content/img/duman-call-page.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 60px;
    padding-bottom: 100px;
}

    .osp__container .osp__registration {
        background-color: rgba(0, 0, 0, 0.76);
        width: 650px;
        text-align: center;
        margin: 0 auto;
        padding: 0px 121px;
    }

        .osp__container .osp__registration img {
            margin-top: 40px;
            height: 100px;
        }

        .osp__container .osp__registration .osp__first-text {
            margin: 0;
            font-size: 21px;
            color: #76b701;
            font-weight: bold;
            padding-top: 7px;
            padding-bottom: 23px;
            line-height: normal;
        }

        .osp__container .osp__registration .osp__second-text {
            margin: 0;
            color: #ffffff;
            font-size: 13px;
            line-height: normal;
            font-weight: bold;
            padding: 0 60px 0 60px;
        }

        .osp__container .osp__registration .osp__input-group {
            display: grid;
            padding-top: 25px;
        }

            .osp__container .osp__registration .osp__input-group input,
            .osp__container .osp__registration .osp__input-group select {
                border: solid 3px #76b701 !important;
                background: none;
                border-radius: 12px;
                margin-bottom: 20px;
                padding: 12px 0px 12px 16px;
                line-height: normal;
                color: white;
            }

                .osp__container .osp__registration .osp__input-group input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
                    -webkit-appearance: none;
                    margin: 0;
                }

                .osp__container .osp__registration .osp__input-group input[type=number] {
                    -moz-appearance: textfield;
                }

                .osp__container .osp__registration .osp__input-group input::placeholder,
                .osp__container .osp__registration .osp__input-group select {
                    color: #b5b5b5;
                    opacity: 1; /* Firefox */
                }

                .osp__container .osp__registration .osp__input-group input:-ms-input-placeholder,
                .osp__container .osp__registration .osp__input-group select {
                    color: #b5b5b5;
                }

                .osp__container .osp__registration .osp__input-group input::-ms-input-placeholder,
                .osp__container .osp__registration .osp__input-group select {
                    color: #b5b5b5;
                }

                    .osp__container .osp__registration .osp__input-group select option:nth-of-type(2),
                    .osp__container .osp__registration .osp__input-group select option:nth-of-type(3),
                    .osp__container .osp__registration .osp__input-group select option:nth-of-type(4) {
                        color: white;
                        background-color: #343743;
                    }

            .osp__container .osp__registration .osp__input-group textarea {
                height: 155px;
                max-height: 155px;
                border: solid 3px #76b701 !important;
                background: none;
                border-radius: 15px;
                padding: 12px 0px 13px 16px;
                line-height: normal;
                color: white;
            }

                .osp__container .osp__registration .osp__input-group textarea::placeholder {
                    color: #b5b5b5;
                    opacity: 1; /* Firefox */
                }

                .osp__container .osp__registration .osp__input-group textarea:-ms-input-placeholder {
                    color: #b5b5b5;
                }

                .osp__container .osp__registration .osp__input-group textarea::-ms-input-placeholder {
                    color: #b5b5b5;
                }

    .osp__container .container .osp__registration .osp__input-group textarea:focus-visible {
        outline: none;
    }

    .osp__container .container .osp__registration .osp__input-group input:focus-visible {
        outline: none;
    }

    .osp__container .container .osp__registration .osp__third-text {
        margin: 0;
        font-size: 17px;
        color: white;
        font-weight: bold;
        line-height: normal;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px 50px 10px 47px;
        border-radius: 14px;
        text-transform: uppercase;
        border: solid 1px #76b701;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background-color: #76b701;
    }

        .osp__container .container .osp__registration .osp__third-text:hover {
            opacity: .85;
        }

        .osp__container .container .osp__registration .osp__third-text:disabled {
            /*            background-color: #343240;*/
        }

            .osp__container .container .osp__registration .osp__third-text:disabled:hover {
                opacity: .3;
            }

        .osp__container .container .osp__registration .osp__third-text .fa-play {
            font-size: 14px;
        }

    .osp__container .container .osp__registration .osp__back-btn {
        margin: 0;
        font-size: 17px;
        font-weight: bold;
        line-height: normal;
        margin-top: 20px;
        margin-bottom: 20px;
        padding: 10px 50px 10px 47px;
        border-radius: 14px;
        text-transform: uppercase;
        color: #333;
        border-color: #2a2c36;
    }

        .osp__container .container .osp__registration .osp__back-btn:hover {
            background: #6c757d;
        }

    .osp__container .container .osp__last-text {
        margin: 0;
        color: white;
        font-size: 20px;
        line-height: normal;
        padding-top: 8px;
        text-align: center;
    }

.osp__step_1 .btn {
    font-size: 17px;
    width: 47%;
    padding: 14px 3px;
    background-color: #76b701 !important;
    color: white !important;
    font-weight: bold;
    margin-bottom: 42px;
    border-radius: 14px;
    border: none;
    text-transform: none;
    margin: 0 5px 45px;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
}

    .osp__step_1 .btn:hover {
        opacity: .85;
    }

/*End of Call request section*/

.user-navigation-notification-count {
    background: red;
    color: #fff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-border-radius: 50%;
    font-size: 10px;
    width: 6px;
    height: 6px;
    position: absolute;
    margin-top: -19px;
    margin-left: 12px;
    padding: 2px 0;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid red;
}

.user-notifications {
    position: relative;
}

.main-notification-dropdown-menu {
    transform: translate(-18px, 49px) !important;
    width: 300px;
    /*height: 340px;*/
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    background: linear-gradient(120deg, #4e5361, #65686d, #515051);
    border-radius: 10px;
}

.notification-dropdown-container {
    max-height: 284px;
    overflow-y: auto !important;
    overflow-x: hidden;
}

    .notification-dropdown-container::-webkit-scrollbar {
        width: 5px;
    }


    .notification-dropdown-container::-webkit-scrollbar-track {
        /*box-shadow: inset 0 0 5px #262d37;*/
        background: transparent;
        border-radius: 10px;
    }

    .notification-dropdown-container::-webkit-scrollbar-thumb {
        background: #343743;
        border-radius: 10px;
        height: 10px;
    }

.btn-ntf {
    margin-right: 5px;
    background-color: transparent !important;
    min-height: 59px;
}

.user-notifications .notification-dropdown-item {
    display: flex;
    color: #fff;
    align-items: center;
    gap: 10px;
    /*padding:10px;*/
    padding: 5px 10px 5px 10px;
}

    .user-notifications .notification-dropdown-item:first-child {
        padding: 0px 10px 5px 10px;
    }

    .user-notifications .notification-dropdown-item:last-child {
        padding: 5px 10px 0px 10px;
    }

.user-notifications .notification-content {
    display: grid;
}

.notification-date {
    font-size: 13px;
    color: #a3adba;
}

.notification-text {
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

    .notification-text:hover {
        color: #fff;
        /*text-decoration: underline;*/
        text-decoration: none;
    }

.user-notifications .notification-hr {
    margin: auto;
    width: 90%;
    border-top: 1px solid #1e2027;
}

.notification-dropdown-container .notification-hr:last-child {
    display: none;
}

.noNotification-dropdown-item {
    color: white;
    text-transform: uppercase;
    padding: 4px 4px 4px 22px;
    margin-bottom: 0px !important;
    font-size: 14px
}

    .noNotification-dropdown-item p {
        margin-bottom: 0px !important;
    }

/*Temrs Print/Download button start*/

.terms__container-new {
    margin-top: 24px;
    max-width: 1320px !important;
}

.terms__header-container {
    display: flex;
    justify-content: space-between !important;
}

.terms__containet-date {
    font-size: 11px;
    align-items: center;
    display: flex;
    justify-content: center;
    color: #bfbfc1;
    position: relative;
    font-weight: 800;
}

.terms__print-download-btn {
    background: transparent;
    border: 2px solid #64b000;
    border-radius: 10px;
    font-size: 14px;
    padding: 5px;
    text-transform: uppercase;
    color: #64b000;
    font-weight: 800;
    width: 160px;
}

    .terms__print-download-btn:focus {
        color: #64b000 !important;
        outline: none;
        background: transparent !important;
    }

.terms__print-download-btn-container {
    position: relative;
    /* top: -15px; */
    width: 160px;
    left: 83%;
}


/*Temrs Print/Download button end*/


.register_personal_information_container_header {
    color: white;
    margin-top: 32px;
    text-transform: uppercase;
    font-size: 20px;
}

.registration_form_dateofbirth_div_selectors {
    display: flex;
    gap: 10px;
}

.birthdate-selector {
    background-color: #353f48;
    border: none;
    outline: none;
    border-radius: 8px !important;
    color: #fff;
    font-size: 15px;
    opacity: 1;
    height: 40px;
}

    .birthdate-selector:focus {
        color: #fff;
        background-color: #1d1c23;
    }
