/**
 * alertifyjs 1.13.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dimmer {
    position: fixed;
    z-index: 1981;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0;
    margin: 0;
    background-color: #252525;
    opacity: .5
}

.alertify .ajs-modal {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0;
    overflow-y: auto;
    z-index: 1981
}

.alertify .ajs-dialog {
    position: relative;
    margin: 5% auto;
    min-height: 110px;
    max-width: 500px;
    padding: 24px 24px 0 24px;
    outline: 0;
    background-color: #fff
}

    .alertify .ajs-dialog.ajs-capture:before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        z-index: 1
    }

.alertify .ajs-reset {
    position: absolute !important;
    display: inline !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important
}

.alertify .ajs-commands {
    position: absolute;
    right: 4px;
    margin: -14px 24px 0 0;
    z-index: 2
}

    .alertify .ajs-commands button {
        display: none;
        width: 10px;
        height: 10px;
        margin-left: 10px;
        padding: 10px;
        border: 0;
        background-color: transparent;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer
    }

        .alertify .ajs-commands button.ajs-close {
            background-image: url('/Images/alertify/close.png');
        }

        .alertify .ajs-commands button.ajs-maximize {
            background-image: url('/Images/alertify/maximize.png');
        }

.alertify .ajs-header {
    margin: -24px;
    margin-bottom: 0;
    padding: 16px 24px;
    background-color: #fff
}

.alertify .ajs-body {
    min-height: 56px
}

    .alertify .ajs-body .ajs-content {
        padding: 16px 24px 16px 16px
    }

.alertify .ajs-footer {
    padding: 4px;
    margin-left: -24px;
    margin-right: -24px;
    min-height: 43px;
    background-color: #fff
}

    .alertify .ajs-footer .ajs-buttons.ajs-primary {
        text-align: right
    }

        .alertify .ajs-footer .ajs-buttons.ajs-primary .ajs-button {
            margin: 4px
        }

    .alertify .ajs-footer .ajs-buttons.ajs-auxiliary {
        float: left;
        clear: none;
        text-align: left
    }

        .alertify .ajs-footer .ajs-buttons.ajs-auxiliary .ajs-button {
            margin: 4px
        }

    .alertify .ajs-footer .ajs-buttons .ajs-button {
        min-width: 88px;
        min-height: 35px
    }

.alertify .ajs-handle {
    position: absolute;
    display: none;
    width: 10px;
    height: 10px;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: url('/Images/alertify/handle.png');
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    cursor: se-resize
}

.alertify.ajs-no-overflow .ajs-body .ajs-content {
    overflow: hidden !important
}

.alertify.ajs-no-padding.ajs-maximized .ajs-body .ajs-content {
    left: 0;
    right: 0;
    padding: 0
}

.alertify.ajs-no-padding:not(.ajs-maximized) .ajs-body {
    margin-left: -24px;
    margin-right: -24px
}

    .alertify.ajs-no-padding:not(.ajs-maximized) .ajs-body .ajs-content {
        padding: 0
    }

.alertify.ajs-no-padding.ajs-resizable .ajs-body .ajs-content {
    left: 0;
    right: 0
}

.alertify.ajs-maximizable .ajs-commands button.ajs-maximize, .alertify.ajs-maximizable .ajs-commands button.ajs-restore {
    display: inline-block
}

.alertify.ajs-closable .ajs-commands button.ajs-close {
    display: inline-block
}

.alertify.ajs-maximized .ajs-dialog {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    top: 0 !important;
    left: 0 !important
}

.alertify.ajs-maximized.ajs-modeless .ajs-modal {
    position: fixed !important;
    min-height: 100% !important;
    max-height: none !important;
    margin: 0 !important
}

.alertify.ajs-maximized .ajs-commands button.ajs-maximize {
    background-image: url('/Images/alertify/unmaximize.png');
}

.alertify.ajs-maximized .ajs-dialog, .alertify.ajs-resizable .ajs-dialog {
    padding: 0
}

.alertify.ajs-maximized .ajs-commands, .alertify.ajs-resizable .ajs-commands {
    margin: 14px 24px 0 0
}

.alertify.ajs-maximized .ajs-header, .alertify.ajs-resizable .ajs-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 16px 24px
}

.alertify.ajs-maximized .ajs-body, .alertify.ajs-resizable .ajs-body {
    min-height: 224px;
    display: inline-block
}

    .alertify.ajs-maximized .ajs-body .ajs-content, .alertify.ajs-resizable .ajs-body .ajs-content {
        position: absolute;
        top: 50px;
        right: 24px;
        bottom: 50px;
        left: 24px;
        overflow: auto
    }

.alertify.ajs-maximized .ajs-footer, .alertify.ajs-resizable .ajs-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0
}

.alertify.ajs-resizable:not(.ajs-maximized) .ajs-dialog {
    min-width: 548px
}

.alertify.ajs-resizable:not(.ajs-maximized) .ajs-handle {
    display: block
}

.alertify.ajs-movable:not(.ajs-maximized) .ajs-header {
    cursor: move
}

.alertify.ajs-modeless .ajs-dimmer, .alertify.ajs-modeless .ajs-reset {
    display: none
}

.alertify.ajs-modeless .ajs-modal {
    overflow: visible;
    max-width: none;
    max-height: 0
}

.alertify.ajs-modeless.ajs-pinnable .ajs-commands button.ajs-pin {
    display: inline-block;
    background-image: url('/Images/alertify/pin.png');
}

.alertify.ajs-modeless.ajs-unpinned .ajs-modal {
    position: absolute
}

.alertify.ajs-modeless.ajs-unpinned .ajs-commands button.ajs-pin {
    background-image: url('/Images/alertify/unpin.png');
}

.alertify.ajs-modeless:not(.ajs-unpinned) .ajs-body {
    max-height: 500px;
    overflow: auto
}

.alertify.ajs-basic .ajs-header {
    opacity: 0
}

.alertify.ajs-basic .ajs-footer {
    visibility: hidden
}

.alertify.ajs-frameless .ajs-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    min-height: 60px;
    margin: 0;
    padding: 0;
    opacity: 0;
    z-index: 1
}

.alertify.ajs-frameless .ajs-footer {
    display: none
}

.alertify.ajs-frameless .ajs-body .ajs-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.alertify.ajs-frameless:not(.ajs-resizable) .ajs-dialog {
    padding-top: 0
}

    .alertify.ajs-frameless:not(.ajs-resizable) .ajs-dialog .ajs-commands {
        margin-top: 0
    }

.ajs-no-overflow {
    overflow: hidden !important;
    outline: 0
}

    .ajs-no-overflow.ajs-fixed {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        overflow-y: scroll !important
    }

.ajs-no-selection, .ajs-no-selection * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

@media screen and (max-width:568px) {
    .alertify .ajs-dialog {
        min-width: 150px
    }

    .alertify:not(.ajs-maximized) .ajs-modal {
        padding: 0 5%
    }

    .alertify:not(.ajs-maximized).ajs-resizable .ajs-dialog {
        min-width: initial;
        min-width: auto
    }
}

@-moz-document url-prefix() {
    .alertify button:focus {
        outline: 1px dotted #3593d2
    }
}

.alertify .ajs-dimmer, .alertify .ajs-modal {
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    -webkit-transition-property: opacity,visibility;
    transition-property: opacity,visibility;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms
}

.alertify.ajs-hidden .ajs-dimmer, .alertify.ajs-hidden .ajs-modal {
    visibility: hidden;
    opacity: 0
}

.alertify.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.alertify.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-duration: 250ms;
    animation-duration: 250ms
}

.alertify .ajs-dialog.ajs-shake {
    -webkit-animation-name: ajs-shake;
    animation-name: ajs-shake;
    -webkit-animation-duration: .1s;
    animation-duration: .1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@-webkit-keyframes ajs-shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

@keyframes ajs-shake {
    0%,100% {
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translate3d(-10px,0,0);
        transform: translate3d(-10px,0,0)
    }

    20%,40%,60%,80% {
        -webkit-transform: translate3d(10px,0,0);
        transform: translate3d(10px,0,0)
    }
}

.alertify.ajs-slide.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-slideIn;
    animation-name: ajs-slideIn;
    -webkit-animation-timing-function: cubic-bezier(.175,.885,.32,1.275);
    animation-timing-function: cubic-bezier(.175,.885,.32,1.275)
}

.alertify.ajs-slide.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-slideOut;
    animation-name: ajs-slideOut;
    -webkit-animation-timing-function: cubic-bezier(.6,-.28,.735,.045);
    animation-timing-function: cubic-bezier(.6,-.28,.735,.045)
}

.alertify.ajs-zoom.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-zoomIn;
    animation-name: ajs-zoomIn
}

.alertify.ajs-zoom.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-zoomOut;
    animation-name: ajs-zoomOut
}

.alertify.ajs-fade.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-fadeIn;
    animation-name: ajs-fadeIn
}

.alertify.ajs-fade.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-fadeOut;
    animation-name: ajs-fadeOut
}

.alertify.ajs-pulse.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-pulseIn;
    animation-name: ajs-pulseIn
}

.alertify.ajs-pulse.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-pulseOut;
    animation-name: ajs-pulseOut
}

.alertify.ajs-flipx.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-flipInX;
    animation-name: ajs-flipInX
}

.alertify.ajs-flipx.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-flipOutX;
    animation-name: ajs-flipOutX
}

.alertify.ajs-flipy.ajs-in:not(.ajs-hidden) .ajs-dialog {
    -webkit-animation-name: ajs-flipInY;
    animation-name: ajs-flipInY
}

.alertify.ajs-flipy.ajs-out.ajs-hidden .ajs-dialog {
    -webkit-animation-name: ajs-flipOutY;
    animation-name: ajs-flipOutY
}

@-webkit-keyframes ajs-pulseIn {
    0%,100%,20%,40%,60%,80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes ajs-pulseIn {
    0%,100%,20%,40%,60%,80% {
        -webkit-transition-timing-function: cubic-bezier(.215,.61,.355,1);
        transition-timing-function: cubic-bezier(.215,.61,.355,1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }

    20% {
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    40% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03,1.03,1.03);
        transform: scale3d(1.03,1.03,1.03)
    }

    80% {
        -webkit-transform: scale3d(.97,.97,.97);
        transform: scale3d(.97,.97,.97)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@-webkit-keyframes ajs-pulseOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@keyframes ajs-pulseOut {
    20% {
        -webkit-transform: scale3d(.9,.9,.9);
        transform: scale3d(.9,.9,.9)
    }

    50%,55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1,1.1,1.1);
        transform: scale3d(1.1,1.1,1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.3,.3,.3);
        transform: scale3d(.3,.3,.3)
    }
}

@-webkit-keyframes ajs-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.25,.25,.25);
        transform: scale3d(.25,.25,.25)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@keyframes ajs-zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.25,.25,.25);
        transform: scale3d(.25,.25,.25)
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }
}

@-webkit-keyframes ajs-zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.25,.25,.25);
        transform: scale3d(.25,.25,.25)
    }
}

@keyframes ajs-zoomOut {
    0% {
        opacity: 1;
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale3d(.25,.25,.25);
        transform: scale3d(.25,.25,.25)
    }
}

@-webkit-keyframes ajs-fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes ajs-fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes ajs-fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes ajs-fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@-webkit-keyframes ajs-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes ajs-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,10deg);
        transform: perspective(400px) rotate3d(1,0,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-5deg);
        transform: perspective(400px) rotate3d(1,0,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes ajs-flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0
    }
}

@keyframes ajs-flipOutX {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,-20deg);
        transform: perspective(400px) rotate3d(1,0,0,-20deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(1,0,0,90deg);
        transform: perspective(400px) rotate3d(1,0,0,90deg);
        opacity: 0
    }
}

@-webkit-keyframes ajs-flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes ajs-flipInY {
    0% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in;
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-20deg);
        transform: perspective(400px) rotate3d(0,1,0,-20deg);
        -webkit-transition-timing-function: ease-in;
        transition-timing-function: ease-in
    }

    60% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,10deg);
        transform: perspective(400px) rotate3d(0,1,0,10deg);
        opacity: 1
    }

    80% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-5deg);
        transform: perspective(400px) rotate3d(0,1,0,-5deg)
    }

    100% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes ajs-flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0
    }
}

@keyframes ajs-flipOutY {
    0% {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }

    30% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,-15deg);
        transform: perspective(400px) rotate3d(0,1,0,-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotate3d(0,1,0,90deg);
        transform: perspective(400px) rotate3d(0,1,0,90deg);
        opacity: 0
    }
}

@-webkit-keyframes ajs-slideIn {
    0% {
        margin-top: -100%
    }

    100% {
        margin-top: 5%
    }
}

@keyframes ajs-slideIn {
    0% {
        margin-top: -100%
    }

    100% {
        margin-top: 5%
    }
}

@-webkit-keyframes ajs-slideOut {
    0% {
        margin-top: 5%
    }

    100% {
        margin-top: -100%
    }
}

@keyframes ajs-slideOut {
    0% {
        margin-top: 5%
    }

    100% {
        margin-top: -100%
    }
}

.alertify-notifier {
    position: fixed;
    direction: ltr;
    width: 0;
    overflow: visible;
    z-index: 1982;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

    .alertify-notifier .ajs-message {
        position: relative;
        width: 260px;
        max-height: 0;
        padding: 0;
        opacity: 0;
        margin: 0;
        -webkit-transform: translate3d(0,0,0);
        transform: translate3d(0,0,0);
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        -webkit-transition-timing-function: linear;
        transition-timing-function: linear
    }

        .alertify-notifier .ajs-message.ajs-visible {
            -webkit-transition-duration: .5s;
            transition-duration: .5s;
            -webkit-transition-timing-function: cubic-bezier(.175,.885,.32,1.275);
            transition-timing-function: cubic-bezier(.175,.885,.32,1.275);
            opacity: 1;
            max-height: 100%;
            padding: 15px;
            margin-top: 10px
        }

        .alertify-notifier .ajs-message.ajs-success {
            background: rgba(91,189,114,.95)
        }

        .alertify-notifier .ajs-message.ajs-error {
            background: rgba(217,92,92,.95)
        }

        .alertify-notifier .ajs-message.ajs-warning {
            background: rgba(252,248,215,.95)
        }

        .alertify-notifier .ajs-message .ajs-close {
            position: absolute;
            top: 0;
            right: 0;
            width: 16px;
            height: 16px;
            cursor: pointer;
            background-image: url('/Images/alertify/close-white.png');
            background-repeat: no-repeat;
            background-position: center center;
            background-color: rgba(0,0,0,.5);
            border-top-right-radius: 2px
        }

    .alertify-notifier.ajs-top {
        top: 10px
    }

    .alertify-notifier.ajs-bottom {
        bottom: 10px
    }

    .alertify-notifier.ajs-right {
        right: 10px
    }

        .alertify-notifier.ajs-right .ajs-message {
            right: -320px
        }

            .alertify-notifier.ajs-right .ajs-message.ajs-visible {
                right: 290px
            }

    .alertify-notifier.ajs-left {
        left: 10px
    }

        .alertify-notifier.ajs-left .ajs-message {
            left: -300px
        }

            .alertify-notifier.ajs-left .ajs-message.ajs-visible {
                left: 0
            }

    .alertify-notifier.ajs-center {
        left: 50%
    }

        .alertify-notifier.ajs-center .ajs-message {
            -webkit-transform: translateX(-50%);
            transform: translateX(-50%)
        }

            .alertify-notifier.ajs-center .ajs-message.ajs-visible {
                left: 50%;
                -webkit-transition-timing-function: cubic-bezier(.57,.43,.1,.65);
                transition-timing-function: cubic-bezier(.57,.43,.1,.65)
            }

        .alertify-notifier.ajs-center.ajs-top .ajs-message {
            top: -300px
        }

            .alertify-notifier.ajs-center.ajs-top .ajs-message.ajs-visible {
                top: 0
            }

        .alertify-notifier.ajs-center.ajs-bottom .ajs-message {
            bottom: -300px
        }

            .alertify-notifier.ajs-center.ajs-bottom .ajs-message.ajs-visible {
                bottom: 0
            }

.ajs-no-transition.alertify .ajs-dialog, .ajs-no-transition.alertify .ajs-dimmer, .ajs-no-transition.alertify .ajs-modal {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important
}

.ajs-no-transition.alertify-notifier .ajs-message {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important
}

@media (prefers-reduced-motion:reduce) {
    .alertify .ajs-dialog, .alertify .ajs-dimmer, .alertify .ajs-modal {
        -webkit-transition: none !important;
        transition: none !important;
        -webkit-animation: none !important;
        animation: none !important
    }

    .alertify-notifier .ajs-message {
        -webkit-transition: none !important;
        transition: none !important;
        -webkit-animation: none !important;
        animation: none !important
    }
}

/**
 * alertifyjs 1.13.1 http://alertifyjs.com
 * AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
 * Copyright 2019 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com) 
 * Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dialog {
    background-color: #fff;
    -webkit-box-shadow: 0 15px 20px 0 rgba(0,0,0,.25);
    box-shadow: 0 15px 20px 0 rgba(0,0,0,.25);
    border-radius: 2px
}

.alertify .ajs-header {
    color: #000;
    font-weight: 700;
    background: #fafafa;
    border-bottom: #eee 1px solid;
    border-radius: 2px 2px 0 0
}

.alertify .ajs-body {
    color: #000
}

    .alertify .ajs-body .ajs-content .ajs-input {
        display: block;
        width: 100%;
        padding: 8px;
        margin: 4px;
        border-radius: 2px;
        border: 1px solid #ccc
    }

    .alertify .ajs-body .ajs-content p {
        margin: 0
    }

.alertify .ajs-footer {
    background: #fbfbfb;
    border-top: #eee 1px solid;
    border-radius: 0 0 2px 2px
}

    .alertify .ajs-footer .ajs-buttons .ajs-button {
        background-color: transparent;
        color: #000;
        border: 0;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase
    }

        .alertify .ajs-footer .ajs-buttons .ajs-button.ajs-ok {
            color: #3593d2
        }

.alertify-notifier .ajs-message {
    background: rgba(255,255,255,.95);
    color: #000;
    text-align: center;
    border: solid 1px #ddd;
    border-radius: 2px
}

    .alertify-notifier .ajs-message.ajs-success {
        color: #fff;
        background: rgba(91,189,114,.95);
        text-shadow: -1px -1px 0 rgba(0,0,0,.5)
    }

    .alertify-notifier .ajs-message.ajs-error {
        color: #fff;
        background: rgba(217,92,92,.95);
        text-shadow: -1px -1px 0 rgba(0,0,0,.5)
    }

    .alertify-notifier .ajs-message.ajs-warning {
        background: rgba(252,248,215,.95);
        border-color: #999
    }

/*.VueCarousel-slide {
    position: relative;
    background: #42b983;
    color: #fff;
    font-family: Arial;
    font-size: 24px;
    text-align: center;
    min-height: 100px;
}

.label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}*/
/* component style */
.vue-slider-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* rail style */
.vue-slider-rail {
    background-color: #ccc;
    border-radius: 15px;
}

/* process style */
.vue-slider-process {
    background-color: #3498db;
    border-radius: 15px;
}

/* mark style */
.vue-slider-mark {
    z-index: 4;
}

.vue-slider-mark:first-child .vue-slider-mark-step, .vue-slider-mark:last-child .vue-slider-mark-step {
    display: none;
}

.vue-slider-mark-step {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.16);
}

.vue-slider-mark-label {
    font-size: 14px;
    white-space: nowrap;
}
/* dot style */
.vue-slider-dot-handle {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    box-shadow: 0.5px 0.5px 2px 1px rgba(0, 0, 0, 0.32);
}

.vue-slider-dot-handle-focus {
    box-shadow: 0px 0px 1px 2px rgba(52, 152, 219, 0.36);
}

.vue-slider-dot-handle-disabled {
    cursor: not-allowed;
    background-color: #ccc;
}

.vue-slider-dot-tooltip-inner {
    font-size: 14px;
    white-space: nowrap;
    padding: 2px 5px;
    min-width: 20px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
    border-color: #3498db;
    background-color: #3498db;
    box-sizing: content-box;
}

.vue-slider-dot-tooltip-inner::after {
    content: "";
    position: absolute;
}

.vue-slider-dot-tooltip-inner-top::after {
    top: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-top-color: inherit;
}

.vue-slider-dot-tooltip-inner-bottom::after {
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-bottom-color: inherit;
}

.vue-slider-dot-tooltip-inner-left::after {
    left: 100%;
    top: 50%;
    transform: translate(0, -50%);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-left-color: inherit;
}

.vue-slider-dot-tooltip-inner-right::after {
    right: 100%;
    top: 50%;
    transform: translate(0, -50%);
    height: 0;
    width: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px;
    border-right-color: inherit;
}

.vue-slider-dot-tooltip-wrapper {
    opacity: 0;
    transition: all 0.3s;
}

.vue-slider-dot-tooltip-wrapper-show {
    opacity: 1;
}

/*# sourceMappingURL=default.css.map */

/*Reset Style*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 12px;
    font: inherit;
    vertical-align: baseline;
    font-family: Tahoma, Geneva, sans-serif;
}

.lucky6 div {
    font-family: system-ui,-apple-system,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,Liberation Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
}

html {
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    /* mobile viewport bug fix */
    height: 100vh;
    height: -webkit-fill-available;
}

body {
    line-height: 1;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    /* mobile viewport bug fix */
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.clearfix:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

a {
    cursor: pointer;
    text-decoration: none;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.button span {
    -ms-touch-action: manipulation; /* IE10  */
    touch-action: manipulation; /* IE11+ */
}

input,
textarea {
    outline: 0;
    -moz-user-select: text;
}

    input:-webkit-autofill,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:hover,
    select:-webkit-autofill,
    select:-webkit-autofill:focus,
    select:-webkit-autofill:hover,
    textarea:-webkit-autofill,
    textarea:-webkit-autofill:focus,
    textarea:-webkit-autofill:hover {
        -webkit-text-fill-color: var(--color-08);
        box-shadow: 0 0 0 1000px var(--color-01) inset;
        -webkit-transition: background-color 5000s ease-in-out 0s;
        transition: background-color 5000s ease-in-out 0s
    }

    input[type="checkbox"] {
        vertical-align: middle;
    }

    input[type=checkbox] + label {
        display: block;
        margin: 5px 0;
        height: 35px;
        line-height: 35px;
        cursor: pointer;
    }

    input[type=checkbox] {
        display: none;
        vertical-align: middle;
    }

        input[type=checkbox] + label:before {
            content: "\2714";
            display: inline-block;
            vertical-align: middle;
            text-align: center;
            margin-right: 10px;
            padding: 3px;
            width: 1em;
            height: 1em;
            line-height: 1em;
            color: transparent;
            -webkit-transition: .2s;
            transition: .2s;
            border-radius: .2em;
            border: .1em solid #666;
        }

        input[type=checkbox] + label:active:before {
            -webkit-transform: scale(0);
            transform: scale(0)
        }

        input[type=checkbox].selected + label:before,
        input[type=checkbox]:checked + label:before {
            color: #fff;
            background-color: #3cb371;
            border-color: #3cb371;
        }

        input[type=checkbox]:disabled + label:before {
            -webkit-transform: scale(1);
            transform: scale(1);
        }

        input[type=checkbox]:checked:disabled + label:before {
            -webkit-transform: scale(1);
            transform: scale(1);
            background-color: #bfb;
            border-color: #bfb
        }

.noScroll {
    position: fixed;
    width: 100%;
    height: 100vh;
    -ms-overflow-style: none;
    overflow: hidden;
}

    .noScroll::-webkit-scrollbar {
        display: none;
    }

header {
    height: 90px;
}

/* Home p = 1 */
#content .logo img {
    display: block;
    width: 60%;
    margin: 0 auto;
    padding: 0 20%;
    box-sizing: border-box;
}

.home-page .slider {
    position: relative;
    width: 100%;
}

.home-page .slots .VueCarousel-wrapper .slide {
    border-radius: 0;
}

.home-page .slider .hidden {
    visibility: hidden;
    width: 100%;
}

.home-page .homeBanner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 33.33%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

.homes {
    position: relative;
    min-height: 120px;
}

.homeBanner_0_2 {
    background-image: url(../../../images/sliders/slider/slide0_2.webp);
}

.homeBanner_1_2 {
    background-image: url(../../../Images/sliders/slider/slide1_2.webp);
}

.homeBanner_2_2 {
    background-image: url(../../../Images/sliders/slider/slide2_2.webp);
}

.homeBanner_0_1 {
    background-image: url(../../../images/sliders/slider/slide0_1.webp);
}

.homeBanner_1_1 {
    background-image: url(../../../Images/sliders/slider/slide1_1.webp);
}

.homeBanner_2_1 {
    background-image: url(../../../Images/sliders/slider/slide2_1.webp);
}

.home-page .slider .innerSlider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

    .home-page .slider .innerSlider .text {
        position: absolute;
        top: 20px;
        left: 20px;
    }

        .home-page .slider .innerSlider .text .yellowText {
            font-size: 11px;
            line-height: 16px;
            color: #ffdf1b;
        }

        .home-page .slider .innerSlider .text .whiteText {
            display: inline-block;
            font-size: 15px;
            line-height: 18px;
            padding-bottom: 3px;
            color: #fff;
        }

        .home-page .slider .innerSlider .text .greyText {
            font-size: 11px;
            color: #bbb;
            padding-bottom: 9px;
            line-height: 16px;
        }

        .home-page .slider .innerSlider .text .btnJoin {
            display: table-cell;
            height: 25px;
            min-width: 60px;
            color: #ffdf1b !important;
            font-size: 12px;
            line-height: 25px;
            padding: 0 11px;
            border: 1px solid #ffdf1b;
            border-radius: 2px;
            text-decoration: none;
            -webkit-box-sizing: border-box;
            box-sizing: border-box;
        }

.home-page .slider .slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.home-page .tournament {
    display: block;
    padding: 7px 10px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    font-weight: bold;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000000;
    background-color: #f4d416;
}

.home-page .highContainer {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

    .home-page .highContainer .highMenu {
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        .home-page .highContainer .highMenu .flex {
            display: flex;
            flex-wrap: nowrap;
            margin: 0 auto;
        }

            .home-page .highContainer .highMenu .flex .fixture {
                min-width: 250px;
                border-left: 1px solid #bbb;
                overflow: hidden;
            }

                .home-page .highContainer .highMenu .flex .fixture:first-of-type {
                    border-left: none;
                }

.home-page .matchInfo_home {
    display: block;
    padding: 5px 10px;
    cursor: pointer;
    box-sizing: border-box;
    background: #ececec;
}

.home-page .tournament .icon {
    float: left;
    background-image: url(/Images/SportsSprite.svg);
    background-repeat: no-repeat;
    background-size: 12em 8em;
    width: 16px;
    height: 16px;
    font-size: 16px;
    margin-right: 5px;
}

    /*Football*/
    .home-page .tournament .icon.sp1 {
        background-position: 0 0;
    }
    /*Basketball*/
    .home-page .tournament .icon.sp2 {
        background-position: -5em 0;
    }
    /*Tennis*/
    .home-page .tournament .icon.sp3 {
        background-position: -1em 0;
    }
    /*Ice Hockey*/
    .home-page .tournament .icon.sp4 {
        background-position: -6em 0;
    }
    /*American Football*/
    .home-page .tournament .icon.sp5 {
        background-position: -3em 0;
    }
    /*Motor Sports*/
    .home-page .tournament .icon.sp6 {
        /*background-position: -.98em -1em;*/
        background-position: -5em -3em;
    }
    /*Baseball*/
    .home-page .tournament .icon.sp7 {
        background-position: -4em 0;
    }
    /*Voleyball*/
    .home-page .tournament .icon.sp8 {
        background-position: -5em -1em;
    }
    /*Handboll*/
    .home-page .tournament .icon.sp9 {
        background-position: -.98em -1em;
    }
    /*Rugby Union*/
    .home-page .tournament .icon.sp10 {
        background-position: -3em 0;
    }
    /*Rugby League*/
    .home-page .tournament .icon.sp11 {
        background-position: -3em 0;
    }
    /*Boxing*/
    .home-page .tournament .icon.sp12 {
        background-position: -7em 1px;
    }
    /*Cricket*/
    .home-page .tournament .icon.sp13 {
        background-position: -7em -2em;
    }
    /*Chess*/
    .home-page .tournament .icon.sp14 {
        background-position: -8em -4em;
    }
    /*Darts*/
    .home-page .tournament .icon.sp15 {
        background-position: -9em -1em;
    }
    /*Golf*/
    .home-page .tournament .icon.sp16 {
        background-position: -11em 0;
    }
    /*Snooker*/
    .home-page .tournament .icon.sp17 {
        background-position: -3em -1em;
    }
    /*Futsal*/
    .home-page .tournament .icon.sp18 {
        background-position: 0 0;
    }
    /*Table Tennis*/
    .home-page .tournament .icon.sp19 {
        background-position: -8em -1em;
    }
    /*Badminton*/
    .home-page .tournament .icon.sp20 {
        background-position: -6em -2em;
    }
    /*E-Sports*/
    .home-page .tournament .icon.sp21 {
        background-position: -4em -5em;
    }
    /*Water Polo*/
    .home-page .tournament .icon.sp22 {
        background-position: 0 -2em;
    }
    /*Bandy*/
    .home-page .tournament .icon.sp23 {
        background-position: -7em -1em;
    }
    /*Field Hockey*/
    .home-page .tournament .icon.sp24 {
        background-position: -7em -1em;
    }
    /*Floorball*/
    .home-page .tournament .icon.sp25 {
        background-position: 0 -7em;
    }
    /*Ausie Rules*/
    .home-page .tournament .icon.sp26 {
        background-position: -3em 0;
    }
    /*Combat Sports*/
    .home-page .tournament .icon.sp27 {
        background-position: -7em -5em;
    }
    /*Bowls*/
    .home-page .tournament .icon.sp28 {
        background-position: 0 -3em;
    }
    /*Gaelic Football*/
    .home-page .tournament .icon.sp29 {
        background-position: -1em -7em;
    }
    /*Beach Football*/
    .home-page .tournament .icon.sp30 {
        background-position: -2em -2em;
    }
    /*Beach Volleyball*/
    .home-page .tournament .icon.sp31 {
        background-position: -10em -1em;
    }
    /*Netball*/
    .home-page .tournament .icon.sp32 {
        background-position: -5em -1em;
    }
    /*Lacrosse*/
    .home-page .tournament .icon.sp33 {
        background-position: -5em -4em;
    }
    /*Curling*/
    .home-page .tournament .icon.sp34 {
        background-position: -11em -1em;
    }
    /*Softball*/
    .home-page .tournament .icon.sp35 {
        background-position: -6em -3em;
    }
    /*Squash*/
    .home-page .tournament .icon.sp36 {
        background-position: -1em -3em;
    }
    /*Sumo*/
    .home-page .tournament .icon.sp37 {
        background-position: -4em -4em;
    }
    /*Horse Racing*/
    .home-page .tournament .icon.sp38 {
        background-position: -11em -3em;
    }
    /*Indoor Football*/
    .home-page .tournament .icon.sp39 {
        background-position: 0 0;
    }

.home-page .matchInfo_home .teams {
    display: block;
    width: 100%;
    font-size: 15px;
}

    .home-page .matchInfo_home .teams .name {
        max-width: 240px;
        height: 18px;
        line-height: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 12px;
        font-weight: bold;
    }

.home-page .matchInfo_home .matchDate {
    width: 30%;
    line-height: 16px;
    font-size: 11px;
}

    .home-page .matchInfo_home .matchDate span {
        display: inline-block;
        vertical-align: middle;
        padding-right: 5px;
    }

        .home-page .matchInfo_home .matchDate span:last-of-type {
            padding-right: 0;
        }

.home-page .matchInfo .teamGroup {
    display: inline-block;
    vertical-align: middle;
    width: 75%;
    white-space: normal;
}

.home-page .matchInfo .goals {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    font-size: 13px;
    font-weight: bold;
}

    .home-page .matchInfo .goals span {
        display: block;
        width: 100%;
        line-height: 15px;
        text-align: center;
    }

.home-page .g_home {
    background-color: unset !important;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

    .home-page .g_home::after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    .home-page .g_home .bet {
        float: left;
        height: 50px;
        line-height: 50px;
        margin: 8px 0;
    }

    .home-page .g_home.g_inner2 .bet {
        width: 50%;
    }

    .home-page .g_home.g_inner3 .bet {
        width: 33.33%;
    }

    .home-page .g_home .bet:last-child {
        margin-right: 10px;
    }

    .home-page .g_home .bet a {
        position: relative;
        display: block;
        margin-left: 10px;
        height: 100%;
        text-decoration: none;
        text-align: center;
        cursor: pointer;
        border-radius: 5px;
        box-sizing: border-box;
    }

.home-page .betDesc {
    display: block;
    width: 100%;
    line-height: 28px;
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-page .price_home {
    display: block;
    width: 100%;
    line-height: 10px;
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
}

/* header IN PLAY */
.home-page .inplay .inplayLauncher {
    display: block;
    padding: 7px 10px;
    height: 15px;
    line-height: 15px;
    font-size: 12px;
    font-weight: bold;
    color: #000000;
    background-color: #f4d416;
}

    .home-page .inplay .inplayLauncher::after {
        visibility: hidden;
        display: block;
        font-size: 0;
        content: " ";
        clear: both;
        height: 0;
    }

    .home-page .inplay .inplayLauncher .text {
        display: block;
        float: left;
    }

        .home-page .inplay .inplayLauncher .text .count {
            margin-left: 5px;
            padding: 2px 5px;
            font-size: 10px;
            color: #fff;
            background: #000;
        }

    .home-page .inplay .inplayLauncher .viewAll {
        display: block;
        float: right;
        cursor: pointer;
        color: #333;
    }

.home-page .InPlayLauncherFooter {
    display: block;
    margin: 10px auto;
    width: 80%;
    height: 45px;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
    color: #ececec;
    background-color: #333;
}

    .home-page .InPlayLauncherFooter:active {
        color: #f4d415;
    }

    .home-page .InPlayLauncherFooter span {
        vertical-align: middle;
    }

        .home-page .InPlayLauncherFooter span.bigger {
            margin-left: 10px;
            font-size: 16px;
            font-weight: bold;
        }

/*Header Style*/
.mainHeader {
    position: fixed;
    display: block;
    width: 100%;
    height: 90px;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 3;
    box-sizing: border-box;
}

    .mainHeader .topBar {
        height: 40px;
        margin: 0 auto;
    }

        .mainHeader .topBar .logo {
            position: relative;
            float: left;
            width: 40%;
            height: 100%;
        }

            .mainHeader .topBar .logo img {
                display: block;
                padding: 7px 10px;
                height: 25px;
                cursor: pointer;
            }

        .mainHeader .topBar .topBarLinks {
            display: -webkit-box !important;
            display: -ms-flexbox !important;
            display: flex !important;
            -webkit-box-pack: end !important;
            -ms-flex-pack: end !important;
            justify-content: flex-end !important;
            float: right;
            width: 60%;
            height: 100%;
            text-align: right;
        }

            .mainHeader .topBar .topBarLinks a {
                display: inline-block;
                padding: 7px 5px;
                height: 26px;
                line-height: 26px;
                cursor: pointer;
                font-size: 14px;
            }

                .mainHeader .topBar .topBarLinks a:last-of-type {
                    padding-right: 12px;
                }

            .mainHeader .topBar .topBarLinks .a1 {
                position: relative;
            }

            .mainHeader .topBar .topBarLinks .devider {
                position: relative;
                margin: 12px 0;
            }

                .mainHeader .topBar .topBarLinks .devider.logg {
                    margin: 12px 0;
                }

            .mainHeader .topBar .topBarLinks .a2 {
                position: relative;
                right: 0;
            }

            .mainHeader .topBar .topBarLinks .depositButton {
                position: relative;
                padding: 0 5px;
                height: 25px;
                font-size: 14px;
                color: #fff;
                background-color: #2ea949;
                border-radius: 2px;
                transition: .5s;
            }

            .mainHeader .topBar .topBarLinks .a2 .gift {
                display: inline-block;
                float: left;
                padding: 4px 10px 4px 0;
                width: 18px;
                height: 18px;
                background-origin: content-box;
                font-size: 18px;
                background-repeat: no-repeat;
                background-image: url(/Images/gift.svg);
                -webkit-animation: tilt-shaking 2s infinite;
                animation: tilt-shaking 2s infinite;
                cursor: pointer;
            }

            .mainHeader .topBar .topBarLinks .a2 span.relativeMsgBox {
                position: absolute;
                top: 2px;
                right: 2px;
                text-align: center;
                padding: 1px 2px;
                font-size: 10px;
                font-weight: normal;
                min-width: 11px;
                line-height: 15px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
                border-radius: 3px;
            }

            .mainHeader .topBar .topBarLinks a img {
                height: 26px;
                display: inline-block;
                vertical-align: middle;
                filter: invert(0.8);
            }

            .mainHeader .topBar .topBarLinks .loaderSmall {
                float: right;
                padding: 1px;
                width: 12px;
                height: 12px;
                margin: 7px 0 7px 7px;
                border: 2px solid #ffc607;
                border-top: 2px solid #0b1422;
                border-bottom: 2px solid #0b1422;
                border-radius: 50%;
                animation: loader-spin 1s linear infinite;
                box-sizing: border-box;
            }

    .mainHeader .menu {
        height: 50px;
        margin: 0 auto;
    }

        .mainHeader .menu a {
            position: relative;
            cursor: pointer;
            float: left;
            display: block;
            width: 25%;
            overflow: hidden;
            box-sizing: border-box;
        }

            .mainHeader .menu a.selected:after {
                position: absolute;
                display: block;
                content: ' ';
                height: 2px;
                bottom: 0;
                left: -1px;
                right: -1px;
                margin: 0 auto;
            }

            .mainHeader .menu a .mybetsCount {
                position: absolute;
                right: 0px;
                bottom: 0;
                z-index: 1;
                padding: 4px 4px;
                font-size: 10px;
                border-top-left-radius: 15px;
            }

            .mainHeader .menu a:first-of-type {
                border-left: none !important;
            }

            .mainHeader .menu a span {
                display: block;
                height: 50px;
                line-height: 50px;
                font-size: 12px;
                font-weight: bold;
                overflow: hidden;
                -ms-text-overflow: ellipsis;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .mainHeader .menu a .hImage span {
                display: inline-block !important;
            }

            .mainHeader .menu a div {
                max-height: 50px;
                padding: 0 3px;
            }

                .mainHeader .menu a div span.arrow,
                .mainHeader .menu a div span.empty {
                    float: right;
                    width: 20%;
                }

            .mainHeader .menu a span.msgBox {
                position: absolute;
                top: 5px;
                right: 28%;
                height: 12px;
                line-height: 12px !important;
                text-align: center;
                padding: 2px 5px;
                -moz-border-radius: 3px;
                -webkit-border-radius: 3px;
                border-radius: 3px;
                font-size: 12px;
            }

            .mainHeader .menu a:first-child span {
                border-left: 0;
            }

            .mainHeader .menu a:last-child span {
                border-right: 0;
            }

            .mainHeader .menu a#logo .hImage span img {
                width: 90%;
                max-width: 73px;
                max-height: 50px;
                vertical-align: middle;
                filter: invert(1);
            }

.mobile .mainHeader .menu a:after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 2px;
    top: 48px;
    bottom: 0;
    left: 50%;
    background: #fdd101;
    transition: width .48s,left .48s;
}

.mobile .mainHeader .menu a.selected:after {
    left: 0;
    width: 100%;
}

.mainHeader .submenus {
    display: block;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    box-sizing: border-box;
    z-index: 2;
    cursor: pointer;
}

    .mainHeader .submenus::after {
        display: block;
        position: absolute;
        content: "";
        right: 14px;
        top: -17px;
        border: 8px solid transparent;
    }

    .mainHeader .submenus.mains::after {
        right: auto;
        left: 14px;
    }

    .mainHeader .submenus div {
        cursor: pointer;
    }

        .mainHeader .submenus div a {
            display: block;
            position: relative;
            padding: 10px;
            font-size: 14px;
            text-decoration: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .mainHeader .submenus div a.selected:after {
                display: block;
                position: absolute;
                content: "";
                right: 0px;
                top: 50%;
                margin-top: -8px;
                border: 8px solid transparent;
            }

.mainHeader .links {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 105px;
    left: 30%;
    right: 30%;
    z-index: 2;
    border-radius: 5px;
}

    .mainHeader .links::after {
        display: block;
        position: absolute;
        content: "";
        right: calc(50% - 8px);
        top: -12px;
        margin-top: -7px;
        border: 8px solid transparent;
    }

    .mainHeader .links div {
        cursor: pointer;
    }

        .mainHeader .links div a {
            display: block;
            position: relative;
            padding: 10px;
            font-size: 14px;
            text-decoration: none;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

            .mainHeader .links div a.selected:after {
                display: block;
                position: absolute;
                content: "";
                right: 0px;
                top: 50%;
                margin-top: -8px;
                border: 8px solid transparent;
            }

/* Dropdowns */
.submenus.user::after {
    right: calc(50% - 8px) !important;
    top: -12px;
    margin-top: -5px;
}

#dropMenu1 {
    left: 0% !important;
    right: 60% !important;
}

    #dropMenu1::after {
        right: calc(30% + 310px) !important;
    }

#dropMenu2 {
    left: 10% !important;
    right: 50% !important;
}

#dropMenu3 {
    top: 98px;
    left: 65%;
    right: 1%;
}

#dropMenu4 {
    right: 0 !important;
    left: 60% !important;
}

    #dropMenu4::after {
        right: calc(30% - 8px) !important;
    }

#dropMenu6 {
    top: 98px;
    left: 45%;
    right: 20%;
}

/* Content */
#content {
    position: relative;
    min-height: 200px;
}

.loader {
    position: relative;
    margin: 0 auto;
    padding: 20px 0;
    width: 100%;
}

    .loader.MB {
        position: absolute;
        margin: 0 auto;
        padding: 1px 20px;
        width: 0;
    }

    .loader .loader-inner {
        margin: 0 auto;
        border-radius: 50%;
        animation: loader-spin 1s linear infinite;
    }

        .loader .loader-inner.w20 {
            width: 20px;
            height: 20px;
        }

        .loader .loader-inner.w15 {
            width: 15px;
            height: 15px;
        }

        .loader .loader-inner.w10 {
            width: 10px;
            height: 10px;
        }

@keyframes loader-spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* BETSLIP FOOTER*/
#betslipFooter .betslip-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80%;
    max-width: 330px;
    z-index: 9;
    height: 55px;
    text-align: center;
    -webkit-transition: -webkit-transform .2s;
    transition: -webkit-transform .2s;
    transition: transform .2s;
    transition: transform .2s,-webkit-transform .2s;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

#betslipFooter .bg a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 55px;
    margin: 0;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    #betslipFooter .bg a span.count {
        margin: 0 9px;
        text-align: center;
        border-radius: 26px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-weight: bold;
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        font-size: 14px;
    }

    #betslipFooter .bg a span.text {
        line-height: 35px;
        margin-left: 30px;
        margin-right: 5px;
        font-size: 16px;
        /*-webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;*/
        text-align: left;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    #betslipFooter .bg a span.totalOdds {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        margin-left: auto;
        margin-right: 11px;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        -webkit-box-pack: end;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-align-content: flex-end;
        -ms-flex-line-pack: end;
        align-content: flex-end;
        font-size: 12px;
    }

        #betslipFooter .bg a span.totalOdds i {
            font-size: 16px;
            margin-left: 5px;
        }

/*Footer*/
#footer {
    clear: both;
    text-align: center;
    padding: 20px 10px 10px 10px;
    box-sizing: border-box
}

    #footer ul.menu {
        margin: 0 auto;
        text-align: center;
    }

        #footer ul.menu.lang {
            margin-bottom: 10px;
            margin-top: 20px;
        }

        #footer ul.menu li {
            display: inline-block;
            padding: 5px 5px;
        }

        #footer ul.menu.lang li:hover {
            cursor: pointer;
        }

        #footer ul.menu li a {
            font-size: 14px;
            cursor: pointer;
        }

            #footer ul.menu li a i {
                width: 16px;
                height: 16px;
                display: inline-block;
                vertical-align: middle;
                background-image: url('../Images/footer.png');
            }

                #footer ul.menu li a i.icon1 {
                    background-position: 0 0;
                }

                #footer ul.menu li a i.icon2 {
                    background-position: 0 -17px;
                }

                #footer ul.menu li a i.icon3 {
                    background-position: 0 -33px;
                }

                #footer ul.menu li a i.icon4 {
                    background-position: 0 -50px;
                }

                #footer ul.menu li a i.icon5 {
                    background-position: 0 -82px;
                }

                #footer ul.menu li a i.icon6 {
                    background-position: 0 -65px;
                }

            #footer ul.menu li a:active i.icon1 {
                background-position: 16px 0;
            }

            #footer ul.menu li a:active i.icon2 {
                background-position: 16px -17px;
            }

            #footer ul.menu li a:active i.icon3 {
                background-position: 16px -33px;
            }

            #footer ul.menu li a:active i.icon4 {
                background-position: 16px -50px;
            }

/*Move To Top New  */
#moveToTop {
    position: fixed;
    width: 40px;
    height: 0;
    opacity: 0;
    bottom: 55px;
    right: 0;
    background-image: url('../../Images/arrow-up.svg');
    background-size: 1.5em 1.5em;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.5s linear;
    z-index: 10;
    cursor: pointer;
}

    #moveToTop.show {
        height: 40px;
        opacity: 1
    }

/*FOOTER MOBILE*/
.footerMobile {
    text-align: justify;
    font-size: 11px;
    overflow: hidden;
}

    .footerMobile p {
        cursor: pointer;
    }

    .footerMobile .icons {
        background-image: url('../../Images/footerIcons.png');
        background-repeat: no-repeat;
        display: inline-block;
    }

    .footerMobile .icons-logo5 {
        width: 36px;
        height: 44px;
        margin-right: 5px;
        background-position: -74px -201px;
    }

    .footerMobile .icons-logo6 {
        width: 25px;
        height: 44px;
        margin-right: 5px;
        background-position: -10px -5px;
    }

    .footerMobile .icons-logo7 {
        width: 26px;
        height: 44px;
        margin-right: 5px;
        background-position: -9px -93px;
    }

    .footerMobile .payments {
        text-align: center;
        margin-bottom: 5px;
        padding-top: 10px;
    }

        .footerMobile .payments .item {
            display: inline-block;
            height: 31px;
            margin: 0 6px;
            cursor: pointer;
            background-image: url(../../Images/footer_icons.png);
            background-repeat: no-repeat;
            -webkit-filter: invert(60%);
            -moz-filter: invert(60%);
            -ms-filter: invert(60%);
            filter: invert(60%);
            z-index: 0;
        }

        .footerMobile .payments a {
            display: inline-block;
            height: 31px;
        }

.icon-visa {
    width: 42px;
    background-position: 0 0;
}

.icon-visa-electron {
    width: 38px;
    background-position: -41px 0;
}

.icon-mastercard {
    width: 36px;
    background-position: -78px 0;
}

.icon-maestro {
    width: 34px;
    background-position: -114px 0;
}

.icon-skrill {
    width: 41px;
    background-position: -194px 0;
}

.icon-neteller {
    width: 50px;
    background-position: -235px 0;
}

.icon-paypal {
    width: 55px;
    background-position: -652px 0;
}

.icon-upay {
    width: 70px;
    background-position: -755px -37px;
}

.icon-bitcoin {
    width: 70px;
    background-position: -849px -34px;
}

.icon-bank {
    width: 72px;
    background-position: -471px 0;
}

.icon-mastercard-sc {
    width: 60px;
    background-position: -1021px -1px;
}

.icon-visa-verified {
    width: 48px;
    background-position: -1081px 0;
}

.icon-cash {
    width: 48px;
    background-position: -1030px -30px;
}

.icon-cash2 {
    width: 40px;
    background-position: -1092px -30px;
}

/* Sports  p = 2 */

/* GameType Selector */
.opSelector li {
    position: relative;
    z-index: 1;
}

    .opSelector li ul {
        display: block; /*none*/
        position: absolute;
        width: 100%;
    }

    .opSelector li a {
        display: block;
        text-align: center;
    }

    .opSelector li ul li a {
        padding: 0 15px;
        color: #333;
        border-bottom: 1px solid #d6cfcf;
        background-color: #f7f7f7;
        line-height: 34px;
        height: 34px;
        cursor: pointer;
        white-space: nowrap;
    }

        .opSelector li ul li a.selected {
            color: #fff;
            background-color: #6c6c6c;
        }

    .opSelector li ul a:hover,
    .opSelector li ul a.sel {
        color: #ffffff;
        background: #afaeae;
    }

    .opSelector li ul span {
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

.opSelector span {
    display: inline-block;
    text-align: left;
    padding: 0 5px;
    font-size: 12px;
}

/* DateTime Line */
.dateTimeline::-webkit-scrollbar {
    display: none;
}

.dateTimeline {
    text-align: center;
    /*padding: 3px 0;*/
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .dateTimeline .body {
        display: flex;
        flex-wrap: nowrap;
        margin: 0 auto;
    }

        .dateTimeline .body .dateBlock {
            flex: 0 0 auto;
            padding-right: 3px;
            width: 80px;
            cursor: pointer;
        }

            .dateTimeline .body .dateBlock .dateBlockInner {
                position: relative;
                padding: 5px;
                height: 35px;
                line-height: 16px;
                font-size: 12px;
                cursor: pointer;
                text-align: center;
                white-space: nowrap;
                color: #333333;
                border-right: 1px solid #ddd;
            }

            .dateTimeline .body .dateBlock:last-of-type .dateBlockInner {
                border-right: none;
            }

            .dateTimeline .body .dateBlock .dateBlockInner.active:after {
                position: absolute;
                display: block;
                content: ' ';
                height: 4px;
                bottom: 0;
                left: -4px;
                right: 0;
                margin: 0 auto;
                background-color: #fdd101;
            }

            .dateTimeline .body .dateBlock .dateBlockInner.disabled,
            .dateTimeline .body .dateBlock .dateBlockInner.disabled .eventsCounter {
                cursor: not-allowed;
                color: #a5a1a1;
            }

            .dateTimeline .body .dateBlock .dateBlockInner .eventsCounter {
                color: #666;
            }

.competitionList .matchs {
    font-size: 12px;
}

.competitionList .matchInfo {
    position: relative;
    display: block;
    float: left;
    margin: 8px 0;
    padding-left: 8px;
    width: 45%;
    cursor: pointer;
    box-sizing: border-box;
}

.competitionList .g {
    display: block;
    float: right;
    width: 55%;
    box-sizing: border-box;
}

.mobile .competitionList li::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.competitionList .moreBets {
    vertical-align: middle;
    cursor: pointer;
}

.matchs .homeTeam,
.matchs .awayTeam {
    display: block;
    width: 100%;
    height: 15px;
    line-height: 15px;
}

.competitionList .teams {
    display: block;
    overflow: hidden;
    max-width: 100%;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 13px;
}

.matchs .matchDate,
.matchs .matchDateBT {
    display: block;
    width: 100%;
    height: 20px;
    line-height: 20px;
    font-size: 11px;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

    .matchs .matchDate .dateTime,
    .matchs .matchDateBT .dateTime {
        display: inline-block;
        vertical-align: middle;
    }

        .matchs .matchDate .dateTime span,
        .matchs .matchDateBT .dateTime span {
            display: inline-block;
            vertical-align: middle;
            padding-right: 5px;
        }

    .matchs .matchDate .mb,
    .matchs .matchDateBT .mb,
    .matchs .matchDate .statistic,
    .matchs .matchDateBT .statistic {
        display: inline-block;
        vertical-align: middle;
        margin-left: 5px;
    }

    .matchs .matchDate .statistic,
    .matchs .matchDateBT .statistic {
        width: 17px;
        height: 13px;
        background-image: url('../../Images/stats.svg');
        background-size: 100%;
        background-repeat: no-repeat;
        opacity: 0.3;
        cursor: pointer;
    }

    .matchs .matchDate .mb .moreBets:hover,
    .matchs .matchDateBT .mb .moreBets:hover {
        color: #7f7f7f;
    }

    .matchs .matchDate .statistic:hover,
    .matchs .matchDateBT .statistic:hover {
        opacity: 0.5;
    }

.mobile .matchs .inner1,
.mobile .matchs .inner2,
.mobile .matchs .inner3 {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.mobile .matchs .bet {
    float: left;
    height: 50px;
    line-height: 50px;
    margin-top: 8px;
}

.mobile .liveEvent .matchs .inner2 .bet:nth-child(-n+2),
.mobile .prematchEvent .matchs .inner2 .bet:nth-child(-n+2) {
    /*margin-top: 0;*/
}

.mobile .liveEvent .matchs .inner3 .bet:nth-child(-n+3),
.mobile .prematchEvent .matchs .inner3 .bet:nth-child(-n+3) {
    /*margin-top: 0;*/
}

.mobile .matchs .inner2 .bet:nth-last-child(-n+2) {
    margin-bottom: 8px;
}

.mobile .matchs .inner3 .bet:nth-last-child(-n+3) {
    margin-bottom: 8px;
}

.mobile .matchs .inner2 .bet {
    width: 50%;
}

.mobile .matchs .inner3 .bet {
    width: 33.33%;
}

.mobile .matchs .bet.outright {
    width: 98%;
}

.mobile .matchs .bet a {
    position: relative;
    display: block;
    margin-left: 8px;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    box-sizing: border-box;
}

.mobile .matchs .inner2 .bet:nth-child(2n+2) a {
    margin-right: 8px;
}

.mobile .matchs .inner3 .bet:nth-child(3n+3) a {
    margin-right: 8px;
}

.mobile .matchs .bet a .betDesc {
    display: block;
    width: 100%;
    height: 28px;
    line-height: 28px;
    font-size: 12px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile .matchs .bet a .price {
    display: block;
    width: 100%;
    line-height: 10px;
    font-size: 14px;
    font-weight: bold;
    font-family: sans-serif;
}

.mobile .matchs .bet a.disabled .price {
    display: block;
    content: ' ';
    background-image: url('../../Images/lock.svg');
    background-size: 13px 13px;
    height: 13px;
    width: 13px;
    margin: 0 auto;
}

/* Prematch Event p = 3 */
.prematchEvent .matchInfo {
    height: unset;
    padding: 0;
}

.prematchEvent .tournamentPanel {
    font-weight: 700;
    text-align: center;
    position: relative;
}

.prematchEvent .btnBack {
    left: 5px;
}

.prematchEvent .competitionName {
    padding: 10px 45px;
    display: inline-block;
    max-width: 100%;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin-left: 20px;
    font-size: 16px;
}

.mch-groups {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    text-align: center;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .mch-groups::-webkit-scrollbar {
        display: none;
    }

    .mch-groups > div {
        flex: 0 0 auto;
    }

    .mch-groups .mch-group {
        position: relative;
        float: left;
        padding: 12px 10px;
        font-size: 12px;
        font-weight: bold;
        cursor: pointer;
    }

        .mch-groups .mch-group.selected:after {
            position: absolute;
            display: block;
            content: ' ';
            height: 4px;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 0 auto;
        }

    .mch-groups .mch-divider {
        float: left;
        padding: 10px 0;
    }

        .mch-groups .mch-divider.notVisible {
            display: none;
        }

.prematchEvent .matchs,
.liveEvent .matchs {
    font-size: 12px;
}

.prematchEvent .betTypePanel {
    position: relative;
    line-height: 25px;
    height: 30px;
    padding: 0 10px;
}

    .prematchEvent .betTypePanel span {
        display: block;
        line-height: 30px;
    }

    .prematchEvent .betTypePanel .icons.right .star,
    .liveEvent .betTypePanel .icons.right .star {
        opacity: 0.6;
    }

        .prematchEvent .betTypePanel .icons.right .star.fav,
        .liveEvent .betTypePanel .icons.right .star.fav {
            opacity: 1;
        }

    .prematchEvent .betTypePanel .betType {
        font-weight: 700;
        font-size: 12px;
    }

    .prematchEvent .betTypePanel .icons.right {
        position: absolute;
        top: 0;
        right: 0;
        padding: 7px;
        height: 16px;
    }

/* Live p = 4 */
.mobile .live .teamGroup {
    display: inline-block;
    vertical-align: middle;
    width: 75%;
    white-space: normal;
}

.mobile .live .goals {
    display: inline-block;
    vertical-align: middle;
    width: 25%;
    font-size: 13px;
    font-weight: bold;
}

    .mobile .live .goals span.hGoals,
    .mobile .live .goals span.aGoals {
        display: block;
        width: 100%;
        line-height: 15px;
        text-align: center;
    }

.mobile .ellipsis {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.mobile .game-info-label {
    display: flex;
    display: -ms-flexbox;
    padding: 0 0 2px;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
}

.mobile .team-left {
    display: block;
    overflow: hidden;
    max-width: 100%;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
    font-size: 13px;
    width: calc(100% - 30px);
    position: relative;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

    .mobile .team-left:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 20px;
        height: 100%;
    }

.mobile .team-right {
    position: relative;
    width: 30px;
    text-align: right;
    font-weight: 700;
    z-index: 1;
}

.mobile .transition-score {
    transition: all .25s;
}

/* Live Event p = 5 */
.liveEvent .tournamentPanel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    text-align: center;
    font-weight: bold;
}

.liveEvent .btnBack {
    left: 5px;
}

.liveEvent .name_part {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc(100% - 70px);
}

.liveEvent .competitionName {
    display: inline-block;
    margin-left: 20px;
    padding: 10px 20px;
    max-width: 100%;
    font-size: 16px;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.liveEvent .holder {
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}

    .liveEvent .holder img {
        width: 15px;
        height: 15px;
        filter: invert(1);
        transition: all .24s ease;
    }

        .liveEvent .holder img.opened {
            filter: invert(85%) sepia(63%) saturate(935%) hue-rotate(338deg) brightness(95%) contrast(102%);
            transform: rotate(180deg);
            transition: all .24s ease;
        }

.mobile .fixed .live-center-stats {
    position: fixed;
    right: 0;
    background-color: #000000;
    transform: scale(.8);
}

.mobile .live-center-stats {
    top: 40px;
    transform-origin: 100% 0;
    transition: all .3s;
    z-index: 11;
}

.mobile .icons-holder {
    display: flex;
    padding: 0 20px 0 0;
    align-items: center;
}

    .mobile .icons-holder i {
        display: block;
        height: 15px;
        width: 24px;
        background-position: 0;
        background-repeat: no-repeat;
        background-size: 24px;
        cursor: pointer;
    }

.matchID {
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
}

    .matchID .matchInner {
        font-size: 14px;
    }

        .matchID .matchInner .col40 {
            float: left;
            width: 40%;
            line-height: 36px;
            font-size: 14px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            -ms-text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
        }

        .matchID .matchInner .col20 {
            float: left;
            width: 20%;
            height: 36px;
            text-align: center;
        }

            .matchID .matchInner .col20 .time {
                display: block;
                height: 16px;
                line-height: 16px;
                font-size: 10px;
                font-weight: normal;
            }

                .matchID .matchInner .col20 .time span {
                    padding-right: 5px;
                }

                    .matchID .matchInner .col20 .time span:last-of-type {
                        padding-right: 0;
                    }

            .matchID .matchInner .col20 .score {
                display: block;
                height: 20px;
                line-height: 18px;
                font-size: 17px;
            }

.liveEvent .recap .team {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 18px;
}

.liveEvent .mTime {
    font-size: 12px;
}

.liveEvent .betTypePanel {
    position: relative;
    line-height: 25px;
    height: 30px;
    padding: 0 10px;
}

    .liveEvent .betTypePanel span {
        display: block;
        line-height: 30px;
    }

    .liveEvent .betTypePanel .icons.right {
        position: absolute;
        top: 0;
        right: 0;
        padding: 7px;
        height: 16px;
    }

.liveEvent .betType {
    font-weight: 700;
    font-size: 12px;
}

.liveEvent .messageSuspended {
    padding: 10px 15px;
    border: 1px solid transparent;
    font-weight: bold;
    font-size: 13px;
}

/* Dropdown Events Live */
.liveEvent .EventSwitcher {
    position: absolute;
    top: 37px;
    right: 20px;
    left: 20px;
    height: calc(100vh - 210px);
    z-index: 1;
}

    .liveEvent .EventSwitcher .EventSwitcher_Container {
        max-height: 100%;
        overflow-y: scroll;
        border-radius: 0 0 2px 2px;
        -webkit-overflow-scrolling: touch;
        -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
        box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
    }

        .liveEvent .EventSwitcher .EventSwitcher_Container::-webkit-scrollbar {
            display: none;
        }

    .liveEvent .EventSwitcher .EventSwitcherList {
        background-color: #fff;
    }

        .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch {
            padding-top: 6px;
        }

            .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch:first-child {
                padding-top: 0;
            }

            .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .CompetitionName {
                font-size: 12px;
                color: #757575;
                padding-left: 15px;
                line-height: 22px;
                border-bottom: 1px solid #ccc;
            }

            .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture {
                position: relative;
                height: 50px;
                box-sizing: border-box;
                border-bottom: 1px solid #e9e9e9;
                cursor: pointer;
            }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture:hover {
                    background-color: rgba(0,0,0,.04);
                }


                    .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture:hover:before {
                        content: " ";
                        position: absolute;
                        background-color: #dcc34878;
                        width: 4px;
                        left: 0;
                        top: -1px;
                        height: 100%;
                        padding-bottom: 2px;
                    }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture.active {
                    background-color: rgba(0,0,0,.04);
                }

                    .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture.active:before {
                        content: " ";
                        position: absolute;
                        background-color: #fdd101;
                        width: 4px;
                        left: 0;
                        top: -1px;
                        height: 100%;
                        padding-bottom: 2px;
                    }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture:last-child {
                    border-bottom: none;
                }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail {
                    display: table;
                    width: 100%;
                    position: relative;
                    min-height: 48px;
                    padding: 7px 15px;
                    box-sizing: border-box;
                }

                    .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .dateContainer {
                        display: flex;
                        flex-wrap: nowrap;
                        justify-content: space-between;
                        align-items: center;
                        width: 45px;
                        min-width: 30px;
                        line-height: 18px;
                        font-size: 12px;
                        color: #757575;
                    }


        .liveEvent .EventSwitcher .EventSwitcherList .live_stream {
            display: block;
            height: 15px;
            width: 18px;
            background-position: 0;
            background-repeat: no-repeat;
            background-size: 18px;
            cursor: pointer;
        }

        .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .dateContainer span {
            display: block;
        }

        .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .gameItems {
            display: table-cell;
            padding-left: 10px;
            width: 100%;
        }

            .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .gameItems .gameItem {
                display: -webkit-box;
                display: -webkit-flex;
                display: -ms-flexbox;
                display: flex;
                position: relative;
                -webkit-box-align: baseline;
                -webkit-align-items: baseline;
                -ms-flex-align: baseline;
                align-items: baseline;
                width: 100%;
            }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .gameItems .gameItem .home,
                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .gameItems .gameItem .away {
                    font-family: -apple-system,Helvetica Neue,Roboto,Droid Sans,Segoe UI,Verdana,Arial,Lucida Grande,sans-serif;
                    font-weight: 400;
                    font-size: 13px;
                    color: #333;
                    display: -webkit-box;
                    display: -webkit-flex;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-flex: 2;
                    -webkit-flex: 2 1 0;
                    -ms-flex: 2 1 0px;
                    flex: 2 1 0;
                    line-height: 18px;
                    position: relative;
                    overflow: hidden;
                }

                .liveEvent .EventSwitcher .EventSwitcherList .TourSwitch .EventFixture .GameDetail .gameItems .gameItem .res {
                    color: green;
                    font-size: 13px;
                    line-height: 13px;
                }

/*Live Center*/
.lc .header {
    font-weight: bold;
    line-height: 27px;
    padding-left: 10px;
    user-select: none;
}

    .lc .header .lcTxt {
        float: left;
        width: 215px;
    }

    .lc .header .lcControl {
        float: right;
        margin-right: 5px;
        width: 25px;
    }

        .lc .header .lcControl .lcIcon {
            display: block;
            height: 15px;
            width: 16px;
            margin: 5px auto;
            cursor: pointer;
        }

            .lc .header .lcControl .lcIcon span {
                display: block;
                height: 12px;
                width: 12px;
                margin: 2px auto;
                background-image: url(../Images/spritesheet.png);
            }

            .lc .header .lcControl .lcIcon .lcCollapsed {
                background-position: -10px -720px;
            }

            .lc .header .lcControl .lcIcon .lcExpanded {
                background-position: -10px -690px;
            }

.lcHeader .home {
    font-family: Tahoma,Sans-Serif !important;
    font: 700 11px Arial;
    float: left;
    width: 40%;
    display: block;
    text-align: left;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.lcHeader .res {
    float: left;
    width: 20%;
    display: block;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    font-size: 12px;
}

.lcHeader .away {
    font-family: Tahoma,Sans-Serif !important;
    font: 700 11px Arial;
    float: left;
    width: 40%;
    display: block;
    text-align: right;
    line-height: 20px;
    white-space: nowrap;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.timeline {
    height: 10px;
    margin: 5px 0;
}

    .timeline .bar {
        position: relative;
        height: 9px;
        margin-bottom: 2px;
    }

        .timeline .bar:after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            z-index: 1;
            background-size: 50px 50px;
            -moz-animation: move 2s linear infinite;
            -o-animation: move 2s linear infinite;
            -webkit-animation: move 2s linear infinite;
            animation: move 2s linear infinite;
            border-radius: 20px 8px 20px 8px;
            overflow: hidden;
        }

/* New livecenter  */
.liveCenter .pitch {
    position: relative;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    text-align: center;
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
}

    .liveCenter .pitch .hidden {
        display: block;
        width: 100%;
        height: 100%;
        visibility: hidden;
        opacity: 0;
    }

.pitch.sp-1 {
    background-image: url('../../Images/LiveCenter/pitch-1.svg');
}

.pitch.sp-2 {
    background-image: url('../../Images/livecenter/pitch-2.svg');
}

.pitch.sp-3 {
    background-image: url('../../Images/livecenter/pitch-3.svg');
}

.pitch.sp-4 {
    background-image: url('../../Images/livecenter/pitch-4.svg');
}

.pitch.sp-7 {
    background-image: url('../../Images/livecenter/pitch-7.svg');
}

.pitch.sp-8 {
    background-image: url('../../Images/livecenter/pitch-8.svg');
}

.pitch.sp-9 {
    background-image: url('../../Images/livecenter/pitch-9.svg');
}

.pitch.sp-19 {
    background-image: url('../../Images/livecenter/pitch-19.svg');
}

.pitch .inplay.notFootball {
    position: absolute;
    top: 0;
    width: 100%;
}

.pitch.sp-2 .inplay.notFootball,
.pitch.sp-3 .inplay.notFootball,
.pitch.sp-7 .inplay.notFootball,
.pitch.sp-8 .inplay.notFootball,
.pitch.sp-9 .inplay.notFootball,
.pitch.sp-19 .inplay.notFootball {
    color: #fff;
}

.pitch.sp-4 .inplay.notFootball {
    color: #000;
}

.pitch .inplay.notFootball .event {
    position: relative;
    margin-top: 30px;
    font-size: 14px;
}

.pitch .inplay.notFootball .result {
    position: relative;
    margin-top: 66px;
    font-size: 22px;
}

    .pitch .inplay.notFootball .event .homeTeam,
    .pitch .inplay.notFootball .result .hTeamResult {
        float: left;
        width: 45%;
        text-align: right;
    }

    .pitch .inplay.notFootball .event .awayTeam,
    .pitch .inplay.notFootball .result .aTeamResult {
        float: right;
        width: 45%;
        text-align: left;
    }

    .pitch .inplay.notFootball .result .vsResult {
        float: left;
        width: 10%;
        text-align: center;
    }

/* State */
.pitch .state {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pitch__overlay {
    position: relative;
}

.pitch svg {
    display: block;
    width: 100%;
    height: 100%;
}

    .pitch svg .fk1 {
        animation: stroke_fill1 0.5s linear forwards;
    }

    .pitch svg .fk2 {
        animation: stroke_fill2 1.5s linear forwards;
    }

    .pitch svg .fk3 {
        animation: stroke_fill3 2.5s linear forwards;
    }

/* Info */
.pitch .state .info {
    position: absolute;
    top: 50%;
    overflow-x: unset;
}

    .pitch .state .info.left {
        left: 20%;
        transform: translateY(-50%);
    }

    .pitch .state .info.center {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .pitch .state .info.right {
        right: 20%;
        transform: translateY(-50%);
    }

    .pitch .state .info .ikon {
        width: 75px;
        margin: 33px auto 5px;
    }

    .pitch .state .info .border {
        display: block;
        margin: 0 5px;
        width: 3px;
        height: 30px;
        position: relative;
        background-color: #ffffff;
        border: 1px solid #ffffff;
        border-radius: 5px;
        box-sizing: border-box;
        animation: rotateZ 1s;
        transform: rotateZ(360deg);
    }

    .pitch .state .info.center .border {
        display: none;
    }

    .pitch .state .info.dirLeft .border {
        float: left;
    }

    .pitch .state .info.dirRight .border {
        float: right;
    }

    .pitch .state .info.dirLeft .text {
        float: right;
        text-align: left;
    }

    .pitch .state .info.dirRight .text {
        float: left;
        text-align: right;
    }

    .pitch .state .info .text span {
        display: block;
        white-space: nowrap;
    }

        .pitch .state .info .text span.team {
            font-size: 14px;
        }

        .pitch .state .info .text span.action {
            color: #ffffff;
            font-size: 16px;
        }

/* Penalty */
.pitch .state .pulsim {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -24px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #0b1422;
    -webkit-animation-name: pulsim;
    animation-name: pulsim;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: scale(0);
    transform: scale(0);
}

    .pitch .state .pulsim.left {
        left: 4%;
    }

    .pitch .state .pulsim.right {
        right: 4%;
    }

/*Keyframes*/
@keyframes pulsim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes rotateZ {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes stroke_fill1 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.66;
    }
}

@keyframes stroke_fill2 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.44;
    }
}

@keyframes stroke_fill3 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.22;
    }
}

/* New Stats */
.liveCenter .stats {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

    .liveCenter .stats .inner {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .liveCenter .stats .row.h12 {
        height: 12%;
    }

    .liveCenter .stats .row.h38 {
        height: 38%;
    }

    .liveCenter .stats .row.h26 {
        height: 26%;
    }

    .liveCenter .stats .row .div30 {
        width: 30%;
        padding-left: 15px;
        text-align: left;
    }

    .liveCenter .stats .row .div50 {
        width: 50%;
    }

    .liveCenter .stats .row .div70 {
        width: 70%;
    }

    .liveCenter .stats .row .wTeams {
        vertical-align: middle;
        font-weight: bold;
    }

    .liveCenter .stats .row .number {
        display: inline-block;
        text-align: center;
        height: 40px;
        line-height: 40px;
    }

    .liveCenter .stats .number.cols3 {
        width: calc(33.3% - 2px);
    }

    .liveCenter .stats .number.cols4 {
        width: calc(25% - 2px);
    }

    .liveCenter .stats .number.cols6 {
        width: calc(16% - 3px);
    }

    .liveCenter .stats .number.cols8 {
        width: calc(12.5% - 2px);
    }

    .liveCenter .stats .number.cols11 {
        width: calc(9% - 2px);
    }

.stats .col {
    float: left;
    height: 30px;
    line-height: 30px;
}

.stats .col20 {
    width: 20%;
}

.stats .col60 {
    width: 60%;
}

.stats .col80 {
    width: 60%;
    font-size: 12px;
}

.stats .img img {
    margin: 5px 0;
    height: 20px;
}

.stats .img.flip img {
    -moz-transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    transform: scale(-1, 1);
    filter: FlipH;
}

.stats .row:last-of-type {
    border-bottom: 0;
}

.stats .charts .wrapper {
    width: 30%;
    margin: 0 auto;
    text-align: center;
}

.stats .charts.h38 h2,
.stats .charts.h26 h2 {
    font-size: 13px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.stats .charts.h26 h2 {
    margin: 0 0 5px 0;
}

.stats .charts .chart {
    display: -webkit-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats .charts .chart__legend {
    font-size: 14px;
    font-weight: 800;
}

    .stats .charts .chart__legend.right {
        order: 3;
    }

.stats .charts .chart__pie {
    position: relative;
    order: 2;
}

.stats .charts .chart__legend.left {
    order: 1;
}

.stats .charts .wrapper.two {
    width: 40%;
}

.stats .h110 {
    height: 110px !important;
}

.stats .h60 {
    height: 60px !important;
}

.stats .lh14 {
    line-height: 14px;
}

.stats .charts .chart__bar {
    position: relative;
    order: 2;
    margin: 0 10px;
}

/* Statistics */
/*.recap {
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    user-select: none;
}

.recap .row {
    display: block;
    width: 100%;
    height: 24px;
    box-sizing: border-box;
}

.recap .row.firstRow {
    font-weight: bold;
}

.recap .row .div50 {
    display: block;
    float: left;
    width: 50%;
    height: 24px;
    line-height: 24px;
    font-size: 0;
    box-sizing: border-box;
}

.recap .row .div50::after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.recap .row .wTeams {
    display: block;
    padding-left: 10px;
    width: 100%;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
}

.recap .row .number {
    height: 100%;
    float: left;
    font-size: 13px;
    text-align: center;
}

.recap .row .number.cols3 {
    width: 33.33%;
}

.recap .row .number.cols4 {
    width: 25%;
}

.recap .row .number.cols5 {
    width: 20%;
}

.recap .row .number.cols6 {
    width: 16.66%
}

.recap .row .number.cols8 {
    width: 12%;
}

.recap .row .number.total {
    font-weight: bold;
}

.recap .row .icons {
    background-image: url(/ltr/Images/spritesheet.png);
    background-repeat: no-repeat;
    display: inline-block;
    padding: 2px 0;
    width: 18px;
    height: 18px;
}

.recap .row .icons.statsCorners {
    background-position: -123px -1685px;
    filter: invert(70%);
}

.recap .row .icons.statsYellowCard {
    background-position: -72px -1685px;
}

.recap .row .icons.statsRedCard {
    background-position: -98px -1685px;
}

.recap .row .icons.statsBall {
    background-position: -47px -1685px;
}*/

/*ANIMATIONS*/
.pitch svg .fk1 {
    animation: stroke_fill1 0.5s linear forwards;
}

.pitch svg .fk2 {
    animation: stroke_fill2 1.5s linear forwards;
}

.pitch svg .fk3 {
    animation: stroke_fill3 2.5s linear forwards;
}

.pitch .state .pulsim {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #0a0a0a;
    -webkit-animation-name: pulsim;
    animation-name: pulsim;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: .15s;
    animation-delay: .15s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/*KEYFRAMES*/
@keyframes pulsim {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes rotateZ {
    0% {
        transform: rotateZ(0deg);
    }

    100% {
        transform: rotateZ(360deg);
    }
}

@keyframes stroke_fill1 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.66;
    }
}

@keyframes stroke_fill2 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.44;
    }
}

@keyframes stroke_fill3 {
    0% {
        fill: none;
    }

    100% {
        fill: #165031;
        opacity: 0.22;
    }
}
/*End Livecenter*/

/* Register p = 6 */
.register {
    display: block;
    margin: 10px 10px 0 10px;
}

    .register.main .info {
        padding: 10px;
        font-size: 15px;
    }

    .register .submit-errors {
        margin-top: 5px;
    }

    .register.main .input-area .line {
        margin-top: 5px;
    }

    .register.main .input-area h3 {
        padding: 5px;
        margin: 0;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .register.main .input-area .fields .row {
        width: 96%;
        position: relative;
        padding: 0 2%;
        color: #f7f7f7;
        background: #333333;
        border-bottom: 1px solid #575757;
        border-top: 1px solid #969696;
    }

        .register.main .input-area .fields .row .d,
        .register.main .input-area .fields .row .f {
            height: 40px;
        }

            .register.main .input-area .fields .row .d label {
                display: block;
                width: 100%;
                line-height: 30px;
                font-size: 15px;
                font-weight: bold;
                overflow: hidden;
                -ms-text-overflow: ellipsis;
                -o-text-overflow: ellipsis;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .register.main .input-area .fields .row .f input {
                border: none;
                text-align: left;
                margin: 0 auto;
                height: 30px;
                width: 100%;
                font-size: 16px;
                text-indent: 10px;
                box-sizing: border-box;
            }

            .register.main .input-area .fields .row .f select {
                border: none;
                float: left;
                text-align: left;
                margin-top: 5px;
                height: 32px;
                margin: 0 auto;
                width: 32%;
            }

                .register.main .input-area .fields .row .f select#ddlMonth {
                    margin: 0 2%;
                }

    .register .notify {
        position: absolute;
        top: 7px;
        left: 0;
        right: 0;
        font-size: 11px;
        padding: 6px;
        background-color: #000;
        color: white;
    }

    .register.main .input-area .fields .row .f select#ddlCountry {
        width: 100%;
    }

    .register.main .input-area .fields .row .f select#ddlPhone {
        -webkit-appearance: none;
        margin-right: 2%;
        width: 32%;
    }

    .register.main .input-area .fields .row .f input#MobileNr {
        width: 66%;
        height: 32px;
        padding: 0;
    }

    .register.main .input-area .fields .row .f select#ddlCurrency {
        width: 100%;
    }

    .register .submit-area {
        display: block;
        width: 100%;
    }

    .register .terms-condit {
        display: block;
        width: 100%;
    }

        .register .terms-condit .inf > div {
            display: block;
            width: 90%;
            text-align: center;
            margin: 10px auto;
            overflow: hidden;
            -ms-text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .register.main .submit-area .terms-condit .inf input#checkTC {
        width: 25px;
        height: 25px;
        vertical-align: middle;
    }

    .register.main .submit-area .terms-condit .inf span {
        vertical-align: middle;
    }

    .register .submit-area span a {
        color: #4c5b88;
        text-decoration: none;
        cursor: pointer;
    }

    .register .submit-area #btnRegister {
        display: block;
        margin: 5px auto;
        width: 25%;
        text-align: center;
        border: 0;
        outline: 0;
        padding: 10px;
        cursor: pointer;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        text-shadow: 1px 1px 0 rgb(255,238,140);
        border: 1px solid #464d57;
        color: #000000;
        background: #ffe659;
        background: -moz-linear-gradient(top, #ffe659 0, #ffd800 100%);
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffe659), color-stop(100%, #ffd800));
        background: -webkit-linear-gradient(top, #ffe659 0, #ffd800 100%);
        background: -o-linear-gradient(top, #ffe659 0, #ffd800 100%);
        background: linear-gradient(to bottom, #ffe659 0, #ffd800 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffe659', endColorstr='#ffd800', GradientType=0);
    }

    .register .message-box {
        line-height: 20px !important;
        padding: 0 5px;
        font-size: 12px;
    }

    .register .terms-condit .v {
        display: block;
        line-height: 30px;
        margin: 0 auto;
        width: 50%;
        text-align: center;
    }

    .register .reg-info {
        display: block;
        width: 100%;
        height: 80px;
    }

        .register .reg-info h3 {
            font-weight: bold;
            font-size: 14px;
        }

        .register .reg-info p, .reg-info h3 {
            line-height: 40px;
            width: 100%;
            text-align: center;
            margin: 0 auto;
            padding: 5px 0;
        }

            .register .reg-info p a.to-home {
                display: block;
                max-width: 200px;
                margin: 0 auto;
                border: 1px solid #acacac;
                background: -webkit-linear-gradient(#fafafa,#cdcdcd);
                background: -moz-linear-gradient(#fafafa,#cdcdcd);
                background: -o-linear-gradient(#fafafa,#cdcdcd);
                background: linear-gradient(#fafafa,#eaeaea);
                filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr='#f7f7f7',endColorStr='#cdcdcd',GradientType=0);
                -ms-filter: "progid:DXImageTransform.Microsoft.Gradient(startColorStr='#f7f7f7', endColorStr='#cdcdcd', GradientType=0)";
                color: #333;
                text-decoration: none;
                cursor: pointer;
            }

                .register .reg-info p a.to-home:hover {
                    text-decoration: underline;
                }

/* Login p = 7 */
.overlayLogin {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    background-color: rgba(0,0,0,.8);
}

.login.dialog {
    position: absolute;
    top: 0;
    left: 2%;
    width: 96%;
    z-index: 15;
}

    .login.dialog .header {
        position: relative;
        padding: 10px;
        line-height: 20px;
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
    }

        .login.dialog .header .icon {
            position: absolute;
            right: 0;
            top: 0;
            width: 40px;
            height: 40px;
            cursor: pointer;
        }

            .login.dialog .header .icon .close {
                margin: 13px;
                height: 14px;
            }

.login .login_form {
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

    .login .login_form .input-area {
        padding: 10px;
    }

.login .login_user,
.login .login_password {
    display: block;
    width: 90%;
    height: 32px;
    margin: 0 auto 20px auto;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 16px;
    text-align: center;
    border-radius: 8px;
    text-transform: uppercase;
}

.login .login_user {
    font-size: 16px;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAEQjgABEI4BZDGOjAAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAVaSURBVGhD1ZpdaBxVFMezq7FqbUVQSzUxoqFZN7tJNptkk/gRi6zEBwUrURFaIWIVi/qkFBVWilTQ+qJSRaQUUesHKFpf/CJ+USrWolXwodrUPtj6gZraGkjbxN/fPVO2w2w22Z2ZnR74M3dn7z3n/7/nzNw7s9sQlPX3958xMDCQ6unpuQWsBjfxOTE8PLzAukTWYvl8fmFfX9+VkH66u7t7Vzab/ZvjEY7TdvyT777u7e19knbf0NDQ6RpXHB4BKxQK8Uwm0wG5zZA8mMvlZjjOQHqGc8ehzzqv7xEsURsZdxku4kVPdTQINkLqWsjtEEE3+XJQP8ZJ2OfK4sjIyCnmMnxTcEpmOWS+ESkvwpVg2dlG+3Jc1kVMrLOzsx0Rb1crwoFl5qWOjo5l8lt0H5INDg4uojzWQOToXMupHGz8JNfLKMczLUQ4RkmlCfphrdlwID8Ieot2wkIEb9w2T2X2rkfMRK3ZcCA/+DtAO0+IcK6VdDp9DgEf9EuEAxOzpq2tbZGFCtba29ubCbrRr7JyYBf9E4lEYqmFCtYoq1YCvxGQkE3cDS+2UMEapdVG4K0BCdlCeV1qoYI1gi0D7wYhhJJ9FVxioYI1BQIvB5SR5/HdbKGCNVK/lGBP+S0EEcrIuq6urvMsVLCGgMUEvpegR91kagETNIXPUbYqCy1UsKbNIrN2HUF/B56k5gtlAyE/075ajwUWKnjT8wcixkTATaoa2PXxDu3wtigy0n8+QtaBY25S1QARKqsHtGuwEOGY9lsqL0jsqzUrVlY/0A63rBzTCkzwFyAyXUpsviATR8AGyvUCcx2uJZPJ0yBwA/ix2qxoHOO/pZ1Xls11+KY1BTLrwSEIeZItB/Vn3F+014a2dpQz1TRispB6D1LzKjHG6BXRFkQkcVX/10J6GQcpldiXoKIY+gjHgG7f16hEzVX9DYJnA632v4loKXE3IC8hv5DJOxFxlrmIjnHXuQqC20XUS4ADE/IZdz29AoqeQW5QBOcihJV8K30zNjQ6ppfTlMptEN0HQU8BDiQE7KD/chtef9NdS9sVSN0MPoCo7kSeAhxIKDiImGc59nIu3HdZpdba2rqA8khCZDVENkFKi9qkQ7YSTMyvjBtjAjZwboTPzaEtivopgOA9BH6EwO+DPWASeBKeDRpj4yaYlO9pv4nv+zimArslyzEzlyZIgWBfgAO0p41ITZAPwxR+dY19RKyHtFDyfaNRqNliuVxuCc7vJ8gnQOXgzKTvMEGaoP1Agu7h/LniUaRThSkLOLkCh6+Qes2UVmNPAn5DcRSPuHs5bkZQf1Xl1tTUpG3HSmZ/JzgclgA3FJf42pB+BW4VL6NY2dQZJ3czGz8x2JfroBaYmGn47KY92tLSot8eZzcGNtJ5hUpJ14LbaT0hPkClpifTWW8CMTpcRD3uipoIB0ywHou3pVKpJeJbpO0yOuqHzTuAr++r/ITKDH5TiLmx7OKpxY4Oz+gHSi8nUYH4UTEPl/3zgR6Q2Iq/eDIIITOPaeKN+olmGXnuJBFS0H7PqJ9odGoEd5EZTwdRgS54KmdF2WsEiyHiQupvZ1SzYtn4mLa2LbNanI4ZSmy7MhOV27CyID5wGyMbc/7/Slz3aRw8ysBxOdFMSBSfPQP5DcVRPMVVfNq7Ob/W1o95vVaN2dZdL+Bux/HrONoLtJH7P0BJkOMiHTiEvFDazxnr9kk/rWV7wGt8XqmnUNpazWt6/xXXhYXDxQTVQ9Uqjus56uXap6T6OwSPg/3gDzDBd/+AQ3x3GPyroz7rvL63fuo/rvHyI3+Ie5zjKs5n9TcRu6ArZKCh4T9JatiEo5i4pQAAAABJRU5ErkJggg==') no-repeat;
    background-size: 20px;
    background-position: 5px center;
}

.login .login_password {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAANdSURBVGhD1ZXJbtNQFIbDJBCbSqxAIkmdoWmSNknjJE3SZqyTOIOdyY4zCLpgywMgIdQ9D9BdHwAEGxZsKBIvQIVAAokFsKawAIEQYrjcmx5ES64ZKte9/tRPlXr/e87vuoPtoFBVdUrV+rf6gxHS+kOkkc/a4J4yGvkgwjaaNrw5HF3YKa8jOe/1h5u2tbWjcI0dZHkUICV72uD/7A0kGHH4KIpyXVU1RLOPH240uogG+EeLdk5UlN5tGHV4tBUFf/RIGYrqXYiN6XSUy4oyLj4h/p26BjHzwcvPdroqotlV1EcQ20O73V2n5YmSonAQM5dWu7uNiyG6vTjEJqDnx25DxFxarQ7Ss1brOCE2ASlNu0OEiHm0Wu3NZrON9JTl9g2I7qHZbF6i5Xf5AKLmIEnNd7LcwoX1lSTJA/Exq6urp8h3nZb9qSS13kPcHCRJxkv/ZhPV6/KLRkPawG7tFKXlfolz32GFOZCSjQZZbKxkLqwwh0ZdQvVaw3DJXFhhDrVq/QsWGW1VrH2GFeZQqVS3RbGGjBbPfQMrzEEsi1cqFREvNlY89yqsMA9RrKJyuWKYZB6MNhdBKG2UhDIySkGo3IHR5rNSFL4JKyVkgOb+//gdnudPlEsVhB9o35K3kcmU7TDy8MjlcueLhRW0X/H9PIxigiOFfOElFv2rxULxgyAIU3CfLZLJ5BlSMp/L/1H8FpJwhV1y2TzKZnK6knNRFE9CnF2ymSzKLGd0JecQZRtSdnlpWdel9NJTiLINlJ0wnUp/TKVSA4ixD5Sm+RYi1iCdTKPUYmrSRMpaD0JKJxNJqvjP7nGIsU8ysYgW4wmqiVj8OcTYBwpTTeG3AjH2SfBxFI/GqPJhPgEx9olFecQvRPcYw9pU9RhErAEpHo0sTLgQjnyFiDWA0no+gxj7kMKRUJgqOYMY+0Tmwyg8F9IVYuxDyoaC81Qt9SCh4ByaDwSpzgWCryDGPuPC/gDVAAZi7EMKB2f9VCFiDQK+WeSf8VGFiDUIkNLeGaoQsQY+j/cTFtHk+XOnIcY+Ppf7tc/tQTS9nHsdYuwzw7m2vJwLl550Fr8ViLGP1+n0e6ZdiKbXwQkQswacw/nY7ZxGu/U4px/CsbXg7Pb7LocTETm74wl8+QCw2X4A1wEk6q2P5r4AAAAASUVORK5CYII=') no-repeat;
    background-size: 20px;
    background-position: 5px center;
}

.login .login_btn {
    display: block;
    margin: 0 auto 20px auto;
    padding: 7px 0;
    width: 90%;
    font-family: Tahoma,Geneva,sans-serif;
    font-size: 17px;
    font-weight: bold;
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    cursor: pointer;
}

.login .links {
    padding: 0 20px;
}

    .login .links a {
        margin: 0 auto;
        padding: 5px;
        text-decoration: underline;
        cursor: pointer;
    }

.login .bg-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.login .bg-info {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.login .bg-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

/* Lost Login p = 8 */
.lostLogin {
    padding: 2%;
}

    .lostLogin .reg-info h2 {
        display: block;
        margin: 10px 0;
        line-height: 2;
        font-family: Tahoma, Geneva, sans-serif;
        font-weight: bold;
    }

    .lostLogin .reg-info p {
        text-align: center;
        margin: 5px auto;
        padding: 5px;
    }

        .lostLogin .reg-info p a.to-home {
            color: #999;
            text-decoration: underline;
            cursor: pointer;
        }

    .lostLogin .info {
        padding: 10px;
        font-size: 15px;
    }

    .lostLogin .message-box {
        display: block;
        position: relative;
        line-height: 20px;
        padding: 0 5px;
        font-size: 12px;
        font-weight: 700;
    }

    .lostLogin .input-area .line {
        margin-top: 5px;
    }

    .lostLogin .input-area h3 {
        padding: 10px;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
    }

    .lostLogin .input-area .fields {
        padding: 5px 10px;
    }

        .lostLogin .input-area .fields .row {
            width: 100%;
            overflow: hidden;
        }

            .lostLogin .input-area .fields .row .d,
            .lostLogin .input-area .fields .row .f {
                height: 40px;
            }

                .lostLogin .input-area .fields .row .d label {
                    display: block;
                    width: 100%;
                    line-height: 30px;
                    font-size: 15px;
                    font-weight: bold;
                    overflow: hidden;
                    -ms-text-overflow: ellipsis;
                    -o-text-overflow: ellipsis;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                }

                .lostLogin .input-area .fields .row .f input {
                    width: calc(100% - 2px);
                    height: 30px;
                    margin: 0 auto;
                    font-size: 16px;
                    text-align: left;
                    text-indent: 10px;
                }

                .lostLogin .input-area .fields .row .f img {
                    display: block;
                    float: left;
                    width: 155px;
                    height: 25px;
                    padding: 0 !important;
                    user-select: none;
                }

                .lostLogin .input-area .fields .row .f .reload {
                    display: block;
                    float: right;
                    width: 25px;
                    height: 25px;
                    line-height: 25px;
                    font-size: 22px;
                    text-align: center;
                    cursor: pointer;
                }

    .lostLogin .submit-area {
        display: block;
        width: 100%;
    }

        .lostLogin .submit-area .btnRegister {
            display: block;
            width: 15%;
            text-align: center;
            vertical-align: middle;
            margin: 5px auto;
            padding: 5px;
            -webkit-border-radius: 2px;
            -moz-border-radius: 2px;
            border-radius: 2px;
            outline: 0;
            cursor: pointer;
        }

    .lostLogin .log-area {
        text-align: center;
        margin: 5px auto;
        padding: 5px;
    }

        .lostLogin .log-area a {
            color: #636363;
            text-decoration: underline;
            cursor: pointer;
        }

            .lostLogin .log-area a:hover {
                color: #666;
            }

    .lostLogin .inputError {
        -moz-animation: input-error-animation .5s linear infinite alternate;
        -o-animation: input-error-animation .5s linear infinite alternate;
        -webkit-animation: input-error-animation .5s linear infinite alternate;
        animation: input-error-animation .5s linear infinite alternate;
    }

    .lostLogin .bg-danger {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }

    .lostLogin .bg-success {
        color: #155724;
        background-color: #d4edda;
        border-color: #c3e6cb;
    }

@-moz-keyframes input-error-animation {
    from {
        background-color: #FFD0D7;
    }

    to {
        background-color: #fff;
    }
}

@-webkit-keyframes input-error-animation {
    from {
        background-color: #FFD0D7;
    }

    to {
        background-color: #fff;
    }
}

@keyframes input-error-animation {
    from {
        background-color: #FFD0D7;
    }

    to {
        background-color: #fff;
    }
}

/* SetPassword p = 9 */
.setpassword {
    margin: 10px;
    padding: 10px;
    background-color: #ececec;
    border-bottom: 1px solid #e0e0e0;
}

    .setpassword .sp-header {
        padding: 5px;
        margin: 20px 0;
        border-bottom: 2px solid #fff;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .setpassword .sp-table {
        padding: 0 2%;
    }

        .setpassword .sp-table .row {
            width: 100%;
            overflow: hidden;
        }

            .setpassword .sp-table .row .d,
            .setpassword .sp-table .row .f {
                height: 40px;
            }

                .setpassword .sp-table .row .f input {
                    border: none;
                    text-align: left;
                    margin: 0 auto;
                    height: 30px;
                    width: 100%;
                    font-size: 16px;
                    text-indent: 10px;
                }

    .setpassword .submit-button-area {
        text-align: center;
    }

    .setpassword .login_btn {
        display: block;
        width: 30%;
        margin: 5px auto;
        height: 20px;
        line-height: 20px;
        padding: 5px;
        cursor: pointer;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        text-shadow: 1px 1px 0 rgb(255,238,140);
    }

    .setpassword .contUs {
        padding: 5px;
        color: #636363;
        text-decoration: underline;
        cursor: pointer;
    }

    .setpassword .message-box {
        padding: 0 15px !important;
    }

    .setpassword .sp-submition-done {
        display: block;
        width: 100%;
        height: 80px;
    }

        .setpassword .sp-submition-done > div {
            line-height: 40px;
            width: 100%;
            text-align: center;
            margin: 0 auto;
            font-weight: bold;
            font-size: 14px;
            padding: 5px 0;
        }

    .setpassword .message-succed-noborder {
        display: block;
        width: auto;
        position: relative;
        margin: 10px 0;
        font-size: 14px;
        font-weight: 700;
        line-height: 28px;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid transparent;
        border-radius: 4px;
        color: #3c763d;
        background-color: #dff0d8;
        border-color: #d6e9c6;
    }

    .setpassword .sp-submition-done a.to-home {
        color: #f0b900;
        text-decoration: none;
        padding: 5px;
        text-align: center;
        background-color: #696969;
        -moz-border-radius: 4px;
        -webkit-border-radius: 4px;
        border-radius: 5px;
        cursor: pointer;
    }

    .setpassword .loaderDiv {
        width: 30%;
        margin: 5px auto;
        height: 20px;
        line-height: 30px;
        padding: 5px;
        background-image: -webkit-linear-gradient(#fdf6d7,#f5cc0f);
        background-image: linear-gradient(#fdf6d7,#f5cc0f);
        border: 1px solid #e2be22;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        cursor: pointer;
    }

/* Settings  p = 10 */
.settings .lngContent,
.settings .lngddl,
.settings .matchsRange,
.settings .oddsModeContent,
.settings .timeZoneContent,
.settings .liveChatContent {
    text-align: center;
}

    .settings .lngContent .label,
    .settings .matchsRange .label,
    .settings .oddsModeContent .label,
    .settings .timeZoneContent .label,
    .settings .liveChatContent .label {
        margin: 20px 0;
    }

.settings .ddl,
.settings input[type="button"] {
    width: 50%;
    cursor: pointer;
    margin: 10px 0;
    padding: 10px;
    font-size: 18px;
}

    .settings .ddl > option {
        font-size: 22px;
    }

.settings .lngddl,
.settings .matchsRangeddl,
.settings .oddsModeddl,
.settings .zoneddl,
.settings .livechatddl {
    margin: 20px 0;
}

.settings .borderB {
    border-bottom: 1px solid #ccc;
}

.settings .borderT {
    border-top: 1px solid #fff;
}

/* BetSlip p = 12 */
.betSlip {
    font-size: 13px;
}

.containerBetslip .modal-body {
    position: relative;
}

.betSlip .matches {
    max-height: calc(var(--rvh) - 243px);
    overflow: auto;
}

    .betSlip .matches.sys {
        max-height: calc(var(--rvh) - 261px);
    }

    .betSlip .matches.small {
        max-height: calc(var(--rvh) - 365px);
    }

    .betSlip .matches.sys.small {
        max-height: calc(var(--rvh) - 405px);
    }

.betSlip.min102 {
    min-height: 102px;
}

.betSlip .betTabs li {
    text-align: center;
    float: left;
    width: 33.3333%;
    height: 30px;
    line-height: 30px;
}

    .betSlip .betTabs li a {
        display: block;
        font-size: 11px;
        font-weight: bold;
        line-height: 30px;
        text-decoration: none;
        overflow: hidden;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .betSlip .betTabs li.active:first-child a,
    .betSlip .betTabs li:first-child a {
        border-left: none;
    }

    .betSlip .betTabs li:after {
        content: '';
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        bottom: 0;
        left: 0;
    }

.betSlip .message {
    padding: 10px;
    vertical-align: middle;
    font-weight: bold;
}

    .betSlip .message.info {
        font-size: 12px;
    }

    .betSlip .message.accepted {
        -moz-animation: accepted .5s infinite alternate;
        -o-animation: accepted .5s infinite alternate;
        -webkit-animation: accepted .5s infinite alternate;
        animation: accepted .5s infinite alternate;
    }

    .betSlip .message.waiting {
        line-height: 124px;
        text-align: center;
        -moz-animation: waiting .5s infinite alternate;
        -o-animation: waiting .5s infinite alternate;
        -webkit-animation: waiting .5s infinite alternate;
        animation: waiting .5s infinite alternate;
    }

    .betSlip .message.rejected {
        -moz-animation: rejected .5s infinite alternate;
        -o-animation: rejected .5s infinite alternate;
        -webkit-animation: rejected .5s infinite alternate;
        animation: rejected .5s infinite alternate;
    }

.betSlip .messageIcon img {
    vertical-align: middle;
    display: unset !important;
    max-width: unset !important;
    margin: unset !important;
    padding: unset !important;
}

/* Share buttons */
.betSlip .buttonsRealTime {
    margin: 10px auto 0 auto;
    width: 100%;
    text-align: center;
}

    .betSlip .buttonsRealTime .shares {
        width: calc(100% - 20px);
        margin: 0 auto;
    }

        .betSlip .buttonsRealTime .shares::after {
            visibility: hidden;
            display: block;
            font-size: 0;
            content: " ";
            clear: both;
            height: 0;
        }

        .betSlip .buttonsRealTime .shares .done,
        .betSlip .buttonsRealTime .shares .reuse,
        .betSlip .buttonsRealTime .shares .share,
        .betSlip .buttonsRealTime .shares .shareWhatsapp {
            position: relative;
            margin: 5px 0;
            width: calc(50% - 5px);
            height: 40px;
            line-height: 40px;
            border-radius: 5px;
            font-size: 14px;
            -webkit-box-sizing: border-box;
            -moz-box-sizing: border-box;
            box-sizing: border-box;
            cursor: pointer;
        }

        .betSlip .buttonsRealTime .shares .reuse,
        .betSlip .buttonsRealTime .shares .share {
            float: left;
        }

        .betSlip .buttonsRealTime .shares .done,
        .betSlip .buttonsRealTime .shares .shareWhatsapp {
            float: right;
        }

.betSlip .container {
    padding: 0 5px;
}

.betSlip .hideNumpad {
    display: none;
}

.betSlip .showNumpad {
    display: block;
}

.betSlip .row dt {
    float: left;
    width: 78%;
}

    .betSlip .row dt > span {
        display: block;
        min-height: 22px;
        line-height: 22px;
        text-align: left;
        padding: 0 4px;
        max-width: 100%;
        overflow: hidden;
    }

.betSlip .row dd {
    float: left;
    width: 22%;
}

    .betSlip .row dd > span {
        display: block;
        min-height: 22px;
        line-height: 22px;
        text-align: right;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

.betSlip .vs {
    margin: 0 5px !important;
    line-height: unset;
    float: unset;
    text-align: unset;
    width: unset;
}

.betSlip .oddsRmv {
    position: relative;
    top: 3px;
    float: right;
    height: 20px;
    width: 20px;
    line-height: 18px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
    opacity: .7;
    display: block;
    text-align: center;
    box-sizing: border-box;
}

.betSlip .at {
    margin: 0 5px;
}

.betSlip .pick {
    font-weight: bold;
}

.betSlip .oddVal {
    padding: 3px 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: bold;
}

.betSlip .changed {
    -webkit-animation: oddChange .5s 10 alternate;
    -moz-animation: oddChange .5s 10 alternate;
    -o-animation: oddChange .5s 10 alternate;
    animation: oddChange .5s 10 alternate;
}

.betSlip .summary .inner {
    padding: 10px;
}

    .betSlip .summary .inner .wait {
        text-align: center;
    }

        .betSlip .summary .inner .wait .loader {
            display: inline-block;
            vertical-align: middle;
            padding: 0;
            width: initial;
        }

            .betSlip .summary .inner .wait .loader .loader-inner {
                margin: initial;
            }

        .betSlip .summary .inner .wait .msg {
            display: inline-block;
            vertical-align: middle;
            font-size: 14px;
            font-weight: bold;
        }

.betSlip .data .col1 {
    float: left;
    width: 50%;
}

.betSlip .data dt > span {
    display: block;
    text-align: left;
    min-height: 20px;
    line-height: 20px;
}

.betSlip .data .col2 {
    float: left;
    width: 50%;
    font-weight: bold;
}

.betSlip .data dd > span {
    display: block;
    text-align: right;
    min-height: 20px;
    line-height: 20px;
}

    .betSlip .data dd > span .plus-minus {
        display: inline-block;
        padding: 5px;
        width: 30px;
        font-size: 14px;
        vertical-align: middle;
        font-style: normal;
        text-align: center;
        box-sizing: border-box;
        cursor: pointer;
    }

    .betSlip .data dd > span i#plus {
        margin-right: 0;
    }

.betSlip .summary .txtStake {
    margin: 5px 0;
    width: 100%;
    height: 35px;
    line-height: 35px;
    text-align: right;
    box-sizing: border-box;
}

.betSlip .summary .data .buttons {
    width: 100%;
    padding-top: 1px;
    display: inline-flex;
}

    .betSlip .summary .data .buttons span {
        display: block;
        width: 100%;
        height: 35px;
        line-height: 35px;
    }

.betSlip .summary .data dd .button {
    display: inline-block;
    width: calc(33.333% - 1px);
    vertical-align: middle;
    margin-right: 1px;
    cursor: pointer;
    text-align: center;
    font-size: 20px;
    height: 35px;
    line-height: 35px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    .betSlip .summary .data dd .button:last-child {
        margin-right: 0;
    }

    .betSlip .summary .data dd .button.reset {
        width: calc(33.33333% - 1px);
    }

    .betSlip .summary .data dd .button.placeBet {
        width: calc(66.6666% - 1px);
    }

    .betSlip .summary .data dd .button img {
        height: 20px;
        margin-top: 10px;
    }

.betSlip .bankers,
.betSlip .sbankers {
    position: relative;
    top: 3px;
    cursor: pointer;
    padding: 1px 6px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

.mobile .betSlip .matches li {
    position: relative;
}

    .mobile .betSlip .matches li:last-child {
        border-bottom: 0;
    }

.betSlip .matches li.non_active {
    background: #cacacc !important;
}

    .betSlip .matches li.non_active:after {
        background-image: url(../../Images/lock.svg);
        background-size: 100%;
        bottom: 0;
        content: " ";
        display: block;
        height: 25px;
        left: 0;
        margin: 0 auto;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 25px;
    }

.mobile .betSlip .max-bet-odd {
    padding: 0 5px;
    opacity: .5;
}

/* Odd Changed */
@-webkit-keyframes oddChange {
    from {
        background-color: #FFC2B2;
    }

    to {
        background-color: #FFE0D1;
    }
}

@-ms-keyframes oddChange {
    from {
        background-color: #FFC2B2;
    }

    to {
        background-color: #FFE0D1;
    }
}

@keyframes oddChange {
    from {
        background-color: #FFC2B2;
    }

    to {
        background-color: #FFE0D1;
    }
}

/* Ticket Accepted */
@-ms-keyframes accepted {
    from {
        background-color: #279727;
    }

    to {
        background-color: #1F791F;
    }
}

@keyframes accepted {
    from {
        background-color: #279727;
    }

    to {
        background-color: #1F791F;
    }
}

@-moz-keyframes accepted {
    from {
        background-color: #279727;
    }

    to {
        background-color: #1F791F;
    }
}

@-webkit-keyframes accepted {
    from {
        background-color: #279727;
    }

    to {
        background-color: #1F791F;
    }
}

/* Ticket Waiting */
@-ms-keyframes waiting {
    from {
        background-color: gray;
    }

    to {
        background-color: darkgray;
    }
}

@keyframes waiting {
    from {
        background-color: gray;
    }

    to {
        background-color: darkgray;
    }
}

@-moz-keyframes waiting {
    from {
        background-color: gray;
    }

    to {
        background-color: darkgray;
    }
}

@-webkit-keyframes waiting {
    from {
        background-color: gray;
    }

    to {
        background-color: darkgray;
    }
}

/* Ticket Rejected */
@-ms-keyframes rejected {
    from {
        background-color: #DD1211;
    }

    to {
        background-color: #A50003;
    }
}

@keyframes rejected {
    from {
        background-color: #DD1211;
    }

    to {
        background-color: #A50003;
    }
}

@-moz-keyframes rejected {
    from {
        background-color: #DD1211;
    }

    to {
        background-color: #A50003;
    }
}

@-webkit-keyframes rejected {
    from {
        background-color: #DD1211;
    }

    to {
        background-color: #A50003;
    }
}

/* My Bets p = 24 */
.myBets ul.bet {
    margin-bottom: 2px;
}

.myBets .bet {
    display: block;
    float: unset !important;
    -moz-box-sizing: unset !important;
    -webkit-box-sizing: unset !important;
    box-sizing: unset !important;
}

    .myBets .bet li {
        overflow: hidden;
        cursor: pointer;
    }

        .myBets .bet li:hover {
            background-color: #ebebeb;
        }

        .myBets .bet li:last-child {
            height: 20px;
            min-height: 20px;
            line-height: 20px;
            text-align: center;
        }

        .myBets .bet li .bet-row {
            display: block;
            padding: 0 5px;
            margin: 3px 0;
            overflow: hidden;
            font-size: 12px;
        }

            .myBets .bet li .bet-row .bet-inner .time {
                display: inline-block;
            }

    .myBets .bet .bet-game {
        font-size: 12px;
        line-height: 18px;
    }

        .myBets .bet .bet-game .vs {
            margin: 0 5px;
        }

    .myBets .bet .bet-odds {
        display: block;
        float: right;
        width: 20%;
        line-height: 18px;
        text-align: right;
        font-size: 12px;
        font-weight: bold;
    }

        .myBets .bet .bet-odds span {
            padding: 2px 5px;
            font-size: 11px;
        }

    .myBets .bet .bet-event {
        width: 80%;
        display: block;
        float: left;
    }

        .myBets .bet .bet-event .name {
            line-height: 18px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            -ms-text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            font-size: 12px;
            font-weight: bold;
        }

            .myBets .bet .bet-event .name .vs {
                margin: 0 5px;
            }

        .myBets .bet .bet-event .striked {
            text-decoration: line-through;
        }

    .myBets .bet li.cashout span {
        display: block;
        margin: 2px 1%;
        padding: 3px;
        font-size: 13px;
        line-height: 13px;
        box-sizing: border-box;
        font-weight: bold;
        cursor: pointer;
        text-align: center;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .myBets .bet .back {
        min-height: 20px;
        height: 20px;
        line-height: 20px;
    }

    .myBets .bet .left {
        display: block;
        float: left;
        width: 50%;
        color: #000;
        text-align: left;
        text-indent: 5px;
        font-size: 11px;
    }

        .myBets .bet .left span.loader {
            margin-left: 10px;
        }

        .myBets .bet .left .tType {
            display: inline-block;
            width: 40px;
            height: 20px;
            margin-left: -5px;
            text-indent: 0;
            text-align: center;
            font-weight: bold;
            margin-right: 5px;
            padding: 0 2px;
            border-right: 1px dotted #989B9B;
            cursor: pointer;
        }

    .myBets .bet .right {
        display: block;
        float: right;
        width: 50%;
        padding-right: 5px;
        text-align: right;
        font-size: 11px;
        box-sizing: border-box;
    }

        .myBets .bet .right.toReturn,
        .cashoutDialog .bet .right.toReturn {
            text-align: right;
        }

            .myBets .bet .right.toReturn span.first,
            .cashoutDialog .bet .right.toReturn span.first {
                padding: 0 5px 0 0;
            }

    .myBets .bet .bet-random,
    .myBets .bet .bet-stake,
    .myBets .bet .bet-return {
        font-weight: bold;
    }

    .myBets .bet .share,
    .myBets .bet .shareWhatsapp,
    .myBets .bet .reuseBet,
    .myBets .bet .print {
        margin: 2px;
        position: relative;
        height: 16px;
        margin-left: 5px;
        line-height: 16px;
        font-size: 14px;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        cursor: pointer;
    }

    .myBets .bet .share {
        float: right;
        width: 18px;
        background-image: url(../../Images/url.svg);
        background-repeat: no-repeat;
        background-size: 15px 15px;
    }

    .myBets .bet .reuseBet {
        float: right;
        width: 18px;
        background-image: url(../../Images/reuse.svg);
        background-repeat: no-repeat;
        background-size: 15px 15px;
    }

    .myBets .bet .print {
        float: right;
        width: 18px;
        background-image: url(../../Images/print.svg);
        background-repeat: no-repeat;
        background-size: 15px 15px;
    }

    .myBets .bet .shareWhatsapp {
        float: right;
    }

        .myBets .bet .shareWhatsapp .icon {
            display: block;
            width: 15px;
            height: 18px;
            padding: 0 3px;
            background-image: url(../../Images/whatsapp.svg);
            background-repeat: no-repeat;
            background-size: 15px 15px;
        }

        .myBets .bet .shareWhatsapp a {
            border: none !important;
        }

        .myBets .bet .share:hover,
        .myBets .bet .shareWhatsapp .icon:hover {
            opacity: 0.6;
        }

.myBets .noBets {
    padding: 10px;
    font-size: 12px;
    font-weight: bold;
    vertical-align: middle;
    background: #e5e5e5;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}

.myBets .bet-return.MB {
    margin-right: 20px;
}

.myBets .waiting.MB {
    position: absolute;
    float: right;
    right: 5px;
    margin-top: 1px;
    width: 10px;
    height: 10px;
    border: 4px solid #ffc607;
    border-top: 4px solid #0b1422;
    border-bottom: 4px solid #0b1422;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}

/* Betslip footer */
.bet-dialog {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
    z-index: 12;
}

    .bet-dialog .containerBetslip {
        background-color: #efefef;
    }

        .bet-dialog .containerBetslip .modal-header {
            position: static;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
            -webkit-box-pack: justify;
            -ms-flex-pack: justify;
            justify-content: space-between;
            padding: 0.5rem;
            border-top: 1px solid #d5d5d5;
            border-bottom: 1px solid #d5d5d5;
            /*border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;*/
        }

        .bet-dialog .containerBetslip .modal-body {
            /*max-height: 100vh;*/
            /*overflow-y: scroll;*/
        }

        .bet-dialog .containerBetslip .close {
            position: absolute;
            top: 0;
            right: 0;
            color: #000000;
            height: 30px;
            width: 30px;
            font-size: 30px;
            line-height: 30px;
            text-align: center;
            cursor: pointer;
        }

/* Cashout Dialog in My Bets p = 24 */
.cashoutDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 12;
}

    .cashoutDialog .container {
        position: absolute;
        left: 5px;
        padding: unset !important;
        top: 5px;
        z-index: 20;
        right: 5px;
    }

        .cashoutDialog .container h2.cashoutHeader {
            height: 34px;
            padding: 10px;
            font-size: 13px;
            padding-left: 10px;
            box-sizing: border-box;
            border-top: 0;
            border-bottom: 0;
        }

    .cashoutDialog .cashout-close {
        position: absolute;
        top: 0;
        right: 0;
        width: 40px;
        height: 34px;
        z-index: 10;
    }

        .cashoutDialog .cashout-close .li-icon {
            display: block;
            width: 40px;
            height: 34px;
            line-height: 34px;
            color: #fff;
            font-size: 20px;
            text-align: center;
            cursor: pointer;
        }

    .cashoutDialog .bet {
        display: block;
        float: unset !important;
        -moz-box-sizing: unset !important;
        -webkit-box-sizing: unset !important;
        box-sizing: unset !important;
    }

    .cashoutDialog ul.bet {
        max-height: calc(100vh - 156px);
        overflow-x: auto;
    }

    .cashoutDialog .bet li .bet-row {
        display: block;
        padding: 0 1%;
        margin: 3px 0;
        overflow: hidden;
        font-size: 12px;
    }

    .cashoutDialog .bet .bet-game {
        font-size: 12px;
        line-height: 18px;
    }

    .cashoutDialog .bet .bet-odds {
        display: block;
        float: right;
        width: 20%;
        line-height: 18px;
        text-align: right;
        font-size: 12px;
        font-weight: bold;
    }

        .cashoutDialog .bet .bet-odds span {
            padding: 2px 5px;
            font-size: 11px;
        }

    .cashoutDialog .bet .bet-event {
        width: 80%;
        display: block;
        float: left;
    }

        .cashoutDialog .bet .bet-event .name {
            line-height: 18px;
            width: 100%;
            white-space: nowrap;
            overflow: hidden;
            -ms-text-overflow: ellipsis;
            -o-text-overflow: ellipsis;
            text-overflow: ellipsis;
            font-size: 12px;
            font-weight: bold;
        }

    .cashoutDialog .bet li:last-child {
        height: 20px;
        min-height: 20px;
        line-height: 20px;
        text-align: center;
    }

    .cashoutDialog .bet .left {
        display: inline-block;
        float: left;
        width: 50%;
        text-align: left;
        text-indent: 5px;
        font-size: 11px;
    }

    .cashoutDialog .bet .right {
        display: inline-block;
        float: right;
        width: 50%;
        font-size: 11px;
    }

    .cashoutDialog .bet .left .tType {
        display: inline-block;
        width: 40px;
        height: 20px;
        margin-left: -5px;
        text-indent: 0;
        text-align: center;
        font-weight: bold;
        margin-right: 5px;
        padding: 0 2px;
        border-right: 1px dotted #989B9B;
        cursor: pointer;
    }

    .cashoutDialog .bet .bet-stake,
    .cashoutDialog .bet .bet-return {
        font-weight: bold;
    }

    .cashoutDialog .container .cashoutWrapper .cashout {
        padding: 10px;
        font-size: 24px;
        font-weight: bold;
        text-align: center;
    }

        .cashoutDialog .container .cashoutWrapper .cashout .cashoutMessage {
            vertical-align: middle;
        }

    .cashoutDialog .container .cashoutWrapper .cashoutAmount {
        margin: 0 5px;
        font-size: 28px;
        vertical-align: middle;
    }

    .cashoutDialog .container .cashoutWrapper .cashout span.loading {
        color: green;
    }

        .cashoutDialog .container .cashoutWrapper .cashout span.loading:after {
            content: ' .';
            animation: dots 1s steps(5, end) infinite;
        }

    .cashoutDialog .container .cashoutWrapper .cashoutAmount span {
        color: #656565;
    }

    .cashoutDialog .container .cashoutWrapper .cashoutButtons {
        display: block;
        margin-top: 5px;
        overflow: hidden;
    }

        .cashoutDialog .container .cashoutWrapper .cashoutButtons .reject-button {
            float: left;
        }

        .cashoutDialog .container .cashoutWrapper .cashoutButtons .accept-button {
            float: right;
        }

            .cashoutDialog .container .cashoutWrapper .cashoutButtons .accept-button .loader {
                display: inline-block;
                margin-top: -6px;
                padding: 0;
            }

        .cashoutDialog .container .cashoutWrapper .cashoutButtons .reject-button,
        .cashoutDialog .container .cashoutWrapper .cashoutButtons .accept-button {
            display: block;
            width: 50%;
            height: 35px;
            padding: 10px;
            font-size: 14px;
            font-weight: bold;
            cursor: pointer;
            text-align: center;
            box-sizing: border-box;
        }

            .cashoutDialog .container .cashoutWrapper .cashoutButtons .accept-button.disabled,
            .cashoutDialog .container .cashoutWrapper .cashoutButtons .accept-button.disabled:hover {
                cursor: not-allowed;
            }

@keyframes dots {
    0%, 20% {
        color: rgba(0,0,0,0);
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }

    40% {
        color: white;
        text-shadow: .25em 0 0 rgba(0,0,0,0), .5em 0 0 rgba(0,0,0,0);
    }

    60% {
        text-shadow: .25em 0 0 green, .5em 0 0 rgba(0,0,0,0);
    }

    80%, 100% {
        text-shadow: .25em 0 0 green, .5em 0 0 green;
    }
}

/* Transactions p = 17 */
.transaction .header,
.finance .header,
.statement .header,
.bonus .header,
.announcements .header,
.password .header,
.documents .header,
.profile .header,
.message .header,
.tickets_com .header {
    text-indent: 15px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
}

.transaction .bInfo,
.transaction .tInfo,
.transaction .sInfo,
.transaction .tValues,
.transaction .sValues,
.transaction .tNoValues {
    margin: 0;
    text-align: right;
}

.data .bInfo input[type=button],
.profile input[type=button],
.password .bInfo dd .btnP,
.bonus .bonusRow input.bonusAdd {
    font-size: 16px;
    color: #666;
    background: #ececec;
    border: 1px solid #ddd;
    cursor: pointer;
}

.transaction .data dt,
.finance .data dt,
.statement .data dt,
.bonus .data dt,
.announcements .data dt,
.tickets_com .data dt {
    line-height: 26px;
    height: 36px;
    float: left;
    width: 25%;
}

    .tickets_com .data dt.ticket {
        width: 50% !important;
    }

    .transaction .data dt span,
    .finance .data dt span,
    .statement .data dt span,
    .bonus .data dt span,
    .announcements .data dt span,
    .tickets_com .data dt span {
        padding: 5px 4px;
        text-align: center;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.transaction .tValues dt,
.transaction .tInfo dt {
    line-height: 20px;
    float: left;
    width: 25%;
}

    .transaction .tInfo dt span {
        padding: 5px 4px;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
    }

.transaction .tNoValues {
    line-height: 20px;
    border: 1px solid #C2C2C2;
    border-top: none;
    text-align: center;
}

.transaction .transactions .tValues dt span,
.finance .transactions .tValues dt span,
.statement .transactions .tValues dt span {
    padding: 5px 4px;
    text-align: right;
    display: block;
    max-width: 100%;
    overflow: hidden;
}

.green {
    color: green;
}

.transaction .tSValues {
    padding: 5px 4px;
    border: 1px solid #C2C2C2;
    border-top: none;
    text-align: right;
    line-height: 20px;
    background-color: #FFFBB4;
}

.transaction .trSum {
    float: left;
    width: 66.6666%;
}

.transaction .trVal {
    float: left;
    width: 33.3333%;
}

/*#region Documents*/
.documents .documents-wrap {
    position: relative;
}

.documents .personal-info-header {
    height: 72px;
    border-bottom: 1px solid #4d4d4d;
}

    .documents .personal-info-header h2 {
        font-size: 24px;
        color: #fff;
        font-family: "MuseoSans700","NotoSansBold",serif;
        padding: 0 0 0 28px;
        height: 70px;
    }

        .documents .personal-info-header h2:after {
            content: "";
            height: 100%;
            vertical-align: middle;
            display: inline-block;
        }

.documents .documents-wrap .file-upload {
    padding: 10px 15px;
    margin: 0 auto;
}

    .documents .documents-wrap .file-upload div > p {
        font-size: 14px;
        line-height: 18px;
        text-align: justify;
    }

    .documents .documents-wrap .file-upload .upload-group {
        margin: 10px 0 0 0;
        border: 1px solid #4d4d4d;
    }

        .documents .documents-wrap .file-upload .upload-group .iconD {
            width: 25%;
            height: 116px;
            line-height: 50px;
            display: block;
            float: left;
            border-right: 1px dashed #4d4d4d;
            color: #aeaeae;
            text-align: center;
            font-size: 30px;
        }

.icon-id-card {
    background-image: url('../../Images/id-card.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}

.icon-id-card-back {
    background-image: url('../../Images/id-card-back.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}

.icon-address {
    background-image: url('../../Images/address.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px 40px;
}

.icon-upload {
    background-image: url('../../Images/upload.svg');
    background-repeat: no-repeat;
    background-position: center;
    width: 20px;
    height: 15px;
    background-size: 15px 15px;
}

.documents .documents-wrap .file-upload .upload-group .upload-wrap {
    width: calc(75% - 21px);
    padding: 10px;
    float: left;
}

    .documents .documents-wrap .file-upload .upload-group .upload-wrap h2 {
        margin: 0 0 5px 0;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-status {
        width: 40px;
        height: 75px;
        line-height: 133px;
        display: block;
        float: left;
        color: #AEAEAE;
        text-align: center;
        font-size: 50px;
        margin-left: 10px;
    }

        .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-status.tick-processing {
            background-image: url('../../Images/processing.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 50px 50px;
        }

        .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-status.tick-check {
            background-image: url('../../Images/check.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 50px 50px;
        }

        .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-status.tick-notUpload {
            background-image: url('../../Images/warning.svg');
            background-repeat: no-repeat;
            background-position: center;
            background-size: 50px 50px;
            filter: invert(0.7);
        }

.documents .documents-wrap .file-upload .upload-group:after {
    content: "";
    display: table;
    clear: both;
}

.documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input {
    height: 75px;
    float: left;
    color: #fff;
    font-family: "MuseoSans700","NotoSansBold",serif;
    font-size: 16px;
    width: 100%;
}

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .input-wrap {
        display: block;
        position: relative;
        overflow: hidden;
        height: 38px;
        cursor: pointer;
        margin-bottom: 5px;
        padding: 0 0 0 50px;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input input[type=button] {
        display: block;
        float: left;
        top: 0;
        right: 0;
        padding: 0 15px;
        height: 30px;
        line-height: 30px;
        color: #333;
        background: #fdd101;
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        z-index: 25;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input:after {
        content: "";
        height: 100%;
        vertical-align: middle;
        display: inline-block;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .input-wrap input[type=file] {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .input-wrap i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .too-large {
        float: left;
        height: 30px;
        line-height: 30px;
        margin-left: 10px;
        border-radius: 5px;
        padding: 0 10px;
        background: #be2727;
        box-shadow: 0 0 0 rgba(211,49,43, 0.4);
        animation: pulseDoc 1s infinite;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .input-wrap span {
        display: inline-block;
        vertical-align: middle;
    }

    .documents .documents-wrap .file-upload .upload-group .upload-wrap .upload-input .input-wrap:after {
        content: "";
        height: 100%;
        vertical-align: middle;
        display: inline-block;
    }

@-webkit-keyframes pulseDoc {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(211,49,43, 0.4);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(211,49,43, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(211,49,43, 0);
    }
}

@keyframes pulseDoc {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(211,49,43, 0.4);
        box-shadow: 0 0 0 0 rgba(211,49,43, 0.4);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(21,129,97, 0);
        box-shadow: 0 0 0 10px rgba(211,49,43, 0);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(211,49,43, 0);
        box-shadow: 0 0 0 0 rgba(211,49,43, 0);
    }
}

/*#endregion Documents*/

/* Bonus p = 16*/
.bonus .header,
.availableBonuses .header,
.messages .header {
    text-indent: 15px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
}

.bonus .tValues dt,
.bonus .tInfo dt,
.bonus .bonus .tValues dt,
.bonus .tInfo dt {
    width: 20%;
}

.bonus .tValues dt,
.bonus .tInfo dt,
.availableBonuses .tValues dt,
.availableBonuses .tInfo dt,
.bonus .tValues dt,
.bonus .tInfo dt,
.announcements .tValues dt,
.announcements .tInfo dt {
    line-height: 20px;
    float: left;
}

    .bonus .tInfo dt span,
    .availableBonuses .tInfo dt span,
    .bonus .tInfo dt span {
        text-align: right;
        font-size: 12px;
    }

    .bonus .tInfo dt span,
    .availableBonuses .tInfo dt span,
    .bonus .tInfo dt span,
    .announcements .tInfo dt span,
    .tickets_com .tInfo dt span {
        padding: 5px 4px;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
    }

.bonus .tNoValues,
.availableBonuses .tNoValues,
.bonus .tNoValues,
.announcements .tNoValues {
    border-top: none;
    line-height: 20px;
    text-align: center;
}

.bonus .bonusRow {
    width: 100%;
    text-align: center;
    padding: 3px 0;
    background: #fff;
}

.bonus .tValues dt span,
.availableBonuses .tValues dt span,
.bonus .tValues dt span {
    padding: 5px 4px;
    text-align: right;
    display: block;
    max-width: 100%;
    overflow: hidden;
}

.bonus .bonusRemove {
    width: 50%;
    height: 100%;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    box-sizing: border-box;
    color: #666;
    background: #ececec;
    border: 1px solid #ddd;
}

.H10 {
    height: 10px;
}

.availableBonuses .tValues dt,
.availableBonuses .tInfo dt {
    width: 33.3333%;
}

.bonus .tValues dt,
.bonus .tInfo dt {
    line-height: 20px;
    float: left;
    width: 20%;
}

.bonus .bonusAdd {
    font-size: 17px !important;
}

/* Finance p = 25 */
.finance .tValues dt,
.finance .tInfo dt,
.finance .sValues dt {
    line-height: 20px;
    float: left;
    width: 16.666666%;
}

    .finance .tInfo dt span {
        padding: 5px 4px;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
    }

    .finance .sValues dt span {
        padding: 5px 4px;
        text-align: right;
        display: block;
        max-width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
/* Statement p = 18 */
.statement .tValues dt,
.statement .tInfo dt {
    line-height: 20px;
    float: left;
    width: 33.333333%;
}

    .statement .tInfo dt span {
        padding: 5px 4px;
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-weight: bold;
    }

    .transactions .tInfo dt span,
    .finance .tInfo dt span,
    .statement .tInfo dt span {
        text-align: right;
        font-size: 12px;
    }

.finance .tNoValues,
.statement .tNoValues {
    line-height: 20px;
    border: 1px solid #C2C2C2;
    border-top: none;
    text-align: center;
}

/* Profile p = 19 */
.profile .fields {
    padding: 0 20px;
}

    .profile .fields .row {
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 1px dashed #c1c4cc;
    }

        .profile .fields .row:after {
            visibility: hidden;
            display: block;
            font-size: 0;
            content: " ";
            clear: both;
            height: 0;
        }

        .profile .fields .row .col.col30 {
            width: 30%;
        }

        .profile .fields .row .col.col33 {
            width: 33.33%;
        }

        .profile .fields .row .col.col35 {
            width: 35%;
        }

        .profile .fields .row .col.col65 {
            width: 65%;
        }

        .profile .fields .row .col.col70 {
            width: 70%;
        }

        .profile .fields .row .col {
            float: left;
            line-height: 25px;
            box-sizing: border-box;
        }

        .profile .fields .row label,
        .profile .fields .row span {
            display: block;
            margin: 0;
            line-height: 30px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .profile .fields .row.buttons .col.col50:first-child {
            width: 48%;
            margin-right: 2%;
        }

        .profile .fields .row.buttons .col.col50:last-child {
            width: 48%;
            margin-left: 2%;
        }

    .profile .fields input,
    .profile .fields select {
        margin: 0 auto;
        height: 35px;
        width: 100%;
        text-indent: 10px;
        outline: none;
        box-sizing: border-box;
        color: #0b1422;
        border: 1px solid #c1c4cc;
    }

    .profile .fields .buttons input {
        width: 48%;
        text-indent: 0;
        border-radius: 5px;
        cursor: pointer;
    }

    .profile .fields .buttons .login {
        background-image: -moz-linear-gradient(#fdf6d7,#f5cc0f);
        background-image: -webkit-linear-gradient(#fdf6d7,#f5cc0f);
        background-image: linear-gradient(#fdf6d7,#f5cc0f);
        border: 1px solid #e2be22;
    }

    .profile .fields .row:not(.buttons) input,
    .profile .fields .row:not(.buttons) select {
        height: 29px;
    }

    .profile .fields .row select.nBR {
        border-right: 0;
    }

    .profile .fields .row select.nBL {
        border-left: 0;
    }

    .profile .fields .buttons .col50 {
        text-align: center;
    }

.password .message-box {
    display: block;
    width: auto;
    position: relative;
    margin: 10px 0;
    padding: 0 10px 0 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 28px;
    color: #790502;
    background: #ebccd1;
    text-align: center;
}

/* Announcements p = 20 */
.announcements .aDate {
    width: 30%;
    text-align: left;
}

.announcements .aMsg {
    width: 70%;
    text-align: left;
}

.announcements .tInfo dt span {
    text-align: left;
}

.announcements .tValues dt span {
    padding: 5px 4px;
    display: block;
    max-width: 100%;
    overflow: hidden;
    font-size: 12px;
}

/* Password p = 23 */
.password .pass {
    padding: 10px;
}

.password .fields {
    padding: 0 10px;
}

.password .input_container {
    display: block;
    margin: 0 auto;
    height: auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.password .strength_container {
    display: block;
    margin: 0 auto;
    height: auto;
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.password input[type="password"] {
    width: 100%;
    height: auto;
    border: 1px solid transparent;
    background: #EEEEEE;
    color: #475762;
    font-size: 15px;
    border-radius: 4px;
    padding: 12px 5px;
    overflow: hidden;
    outline: none;
    transition: all .1s;
}

.password input[type="button"] {
    width: 100%;
    height: auto;
    color: #333;
    background-image: -moz-linear-gradient(#fdf6d7,#f5cc0f);
    background-image: -webkit-linear-gradient(#fdf6d7,#f5cc0f);
    background-image: linear-gradient(#fdf6d7,#f5cc0f);
    border: 1px solid #e2be22;
    font-size: 15px;
    border-radius: 4px;
    padding: 12px 5px;
    overflow: hidden;
    outline: none;
    transition: all .1s;
}

.password .password_length {
    display: block;
    padding: 2px 10px;
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #FBD490;
    color: rgba(71, 87, 98, 0.8);
    border-radius: 4px;
    font-size: 13px;
    transition: all .1s;
}

.password .is_success {
    color: #fff;
    background: #1bbf1b;
}

.password .password_strength-meter:after,
.password .password_strength-meter:before {
    content: "";
    height: inherit;
    background: transparent;
    display: block;
    border-style: solid;
    border-width: 0 5px;
    position: absolute;
    width: 70px;
    z-index: 1;
}

.password .password_strength-meter:before {
    left: 70px;
}

.password .password_strength-meter {
    position: relative;
    height: 3px;
    background: #ddd;
    border-radius: 3px;
}

    .password .password_strength-meter:after {
        right: 70px;
    }

    .password .password_strength-meter .fill {
        background: transparent;
        height: inherit;
        position: absolute;
        width: 0;
        border-radius: inherit;
        transition: width .5s ease-in-out,background .25s;
    }

        .password .password_strength-meter .fill[data-score="1"] {
            background: darkred;
            width: 20%;
        }

        .password .password_strength-meter .fill[data-score="2"] {
            background: #ff4500;
            width: 40%;
        }

        .password .password_strength-meter .fill[data-score="3"] {
            background: orange;
            width: 60%;
        }

        .password .password_strength-meter .fill[data-score="4"] {
            background: #9acd32;
            width: 80%;
        }

        .password .password_strength-meter .fill[data-score="5"] {
            background: green;
            width: 100%;
        }

.password .title {
    margin-bottom: 5px;
}

.password .bg-danger,
.profile .bg-danger {
    text-align: center;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.password .ltlMsg {
    padding: 5px 0px;
    text-align: center;
    font-size: 14px;
}

.password .pw-succed {
    margin: 5px;
    display: block;
    line-height: 40px;
    border: 3px solid #7D8B9A;
    color: #10C810;
    font-weight: bold;
    font-size: 14px;
}

/* Messages p = 21 */
.messages .ScoreTable {
    background: rgb(255, 255, 255);
}

.messages .TAC {
    text-align: center;
}

.messages .ScoreTable div {
    display: inline-block;
    vertical-align: middle;
    padding: 3px;
}

.messages input[type="button"],
.message input[type="button"] {
    min-width: 65px;
    height: 22px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    color: rgb(240, 185, 0);
    white-space: nowrap;
    text-overflow: ellipsis;
    text-shadow: rgba(0, 0, 0, 0.298039) 1px 1px 0px;
    padding: 0px 10px;
    margin: 0px;
    overflow: hidden;
    border-width: 0px;
    border-color: rgb(126, 126, 126) rgb(1, 1, 1) rgb(1, 1, 1) rgb(126, 126, 126);
    background: linear-gradient(rgb(73, 73, 73) 0%, rgb(28, 28, 28) 100%);
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

    .messages input[type="button"]:hover {
        filter: none;
        box-shadow: rgba(0, 0, 0, 0.298039) 1px 1px 3px;
        color: rgb(40, 40, 40);
        text-shadow: none;
        border-radius: 2px;
        border-width: 0px;
        background: rgb(240, 185, 0);
    }

.messages .W50 {
    width: 50px;
}

.messages .TAL {
    text-align: left;
}

.messages .TAK {
    display: inline-block;
    text-align: center;
}

.messages select {
    /*font-size: 12px;*/
    border-width: 0px;
}

.messages table tr td {
    padding: 0;
    font-size: 12px;
}

.H10 {
    height: 10px;
}

.messages table {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

.messages .ScoreTable thead td:first-child {
    border-left: 0;
}

.messages .ScoreTable thead td {
    color: #666;
    background-color: #dadada;
    border-left: 1px solid #666;
    text-align: center;
    font-weight: 700;
    height: 20px;
    line-height: 20px;
}

    .messages .ScoreTable thead td:last-child {
        border-right: 0;
    }

.messages .ScoreTable tbody td:last-child {
    border-right: 0;
}

.messages .ScoreTable tbody td:first-child {
    border-left: 0;
}

.messages .ScoreTable tbody td {
    border-left: 1px solid #49505a;
    padding: 3px;
}

.messages .W100 {
    width: 100px;
}

.messages .bold {
    font-weight: bold;
}

.messages a.reply {
    font-size: 14px;
    padding: 4px 8px;
    line-height: 35px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    color: #f0b900;
    overflow: hidden;
    white-space: nowrap;
    border-radius: 4px;
    border: 1px solid #000;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
    border-color: #7e7e7e #010101 #010101 #7e7e7e;
    background: #494949;
    background: -moz-linear-gradient(top,#494949 0%,#1c1c1c 100%);
    background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#494949),color-stop(100%,#1c1c1c));
    background: -webkit-linear-gradient(top,#494949 0%,#1c1c1c 100%);
    background: -o-linear-gradient(top,#494949 0%,#1c1c1c 100%);
    background: linear-gradient(to bottom,#494949 0%,#1c1c1c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#494949',endColorstr='#1c1c1c',GradientType=0 );
}

.font16 {
    font-size: 16px;
}

/* Message p = 22 */
.message .form-controls input,
.message .form-controls textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.message .form-controls {
    padding: 10px;
}

.message .form-group {
    margin-bottom: 15px;
}

    .message .form-group .form-control {
        display: block;
        width: 100%;
        height: 34px;
        padding: 6px 12px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
        -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    }

.message .H80 {
    height: 80px !important;
}

.message input[type="button"]:hover {
    filter: none;
    box-shadow: rgba(0, 0, 0, 0.298039) 1px 1px 3px;
    color: rgb(40, 40, 40);
    text-shadow: none;
    border-radius: 2px;
    border-width: 0px;
    background: rgb(240, 185, 0);
}

.message .ScoreTable {
    background: rgb(255, 255, 255);
}

    .message .ScoreTable .settings {
        width: calc(100% - 10px);
        height: 22px;
        line-height: 22px;
        padding: 5px;
        display: inline-block;
    }

        .message .ScoreTable .settings.pt-0 {
            padding-top: 0 !important;
        }

.message input[type="button"] {
    min-width: 80px;
}

.message .ScoreTable .settings .btnLeft,
.message .ScoreTable .settings .leftContent {
    float: left;
    width: 50%;
}

.message .ScoreTable .settings div.btnRight {
    float: right;
}

.message .ScoreTable .settings div.TAC {
    float: left;
}

.message .divDataList .subject {
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
    color: #fff;
    background-color: #000;
}

.message .divDataList .player {
    width: 80%;
    float: right;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 1%;
    border-radius: 5px;
    background-color: #dcf8c6;
}

    .message .divDataList .player .date:first-child {
        color: #74cff8;
        line-height: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .message .divDataList .player .date {
        text-align: right;
        color: #9c9c9c;
        padding: 5px;
    }

.message .comment:not(:first-child) {
    text-align: left;
    padding: 10px 5px 0 5px;
    overflow: hidden;
}

.mobile .message .player .comment pre {
    white-space: initial;
}

.message #divDataList pre {
    table-layout: fixed;
    width: 100%;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
}

.message .divDataList .company {
    width: 80%;
    text-align: left;
    float: left;
    padding: 10px;
    margin-bottom: 10px;
    margin-left: 1%;
    border-radius: 5px;
    background-color: #ececec;
}

    .message .divDataList .company .date:first-child {
        color: #000000;
        line-height: 20px;
        font-size: 12px;
        font-weight: 600;
    }

    .message .divDataList .company .date {
        text-align: right;
        color: #9c9c9c;
        padding: 5px;
    }

/* Tickets p = 15 */
.tickets_com .table-responsive {
    display: block;
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

    .tickets_com .table-responsive table {
        width: 100%;
    }

        .tickets_com .table-responsive table tr td,
        .tickets_com .table-responsive table tr th {
            line-height: 30px;
        }

    .tickets_com .table-responsive .table-bordered th,
    .tickets_com .table-responsive .table-bordered td {
        border-left: 0;
        border-top: 0;
        border-right: 1px solid;
    }

    .tickets_com .table-responsive .table-bordered td {
        border-bottom: 1px solid;
    }

        .tickets_com .table-responsive .table-bordered th:last-of-type,
        .tickets_com .table-responsive .table-bordered td:last-of-type {
            border-right: 0;
        }

    .tickets_com .table-responsive .table-bordered .central th span,
    .tickets_com .table-responsive .table-bordered .central td span {
        padding: 0 5px;
    }

    .tickets_com .table-responsive dl.recap {
        line-height: 14px;
    }

    .tickets_com .table-responsive .bDetails {
        display: flex;
        height: 20px;
        line-height: 20px;
    }

    .tickets_com .table-responsive .mDetails .row {
        line-height: 20px;
    }

    .tickets_com .table-responsive .row .res {
        line-height: 14px;
    }


.tickets_com .data,
.tickets_com .tickets,
.tickets_com .summary {
    margin-bottom: 10px;
}

    .tickets_com .tickets .tValues dt,
    .tickets_com .tInfo dt {
        line-height: 20px;
        float: left;
        width: 25%;
    }

    .tickets_com .tickets .tInfo .tNo span,
    .tickets_com .tickets .tValues .tNo span {
        text-align: left;
    }

.tickets_com .sInfo dt span,
.tickets_com .tInfo dt span {
    text-align: right;
}

.tickets_com .tValues {
    cursor: pointer;
}

    .tickets_com .tValues:nth-child(even) {
        background: #f0f0f0;
    }

.tickets_com .tickets .tValues dt span,
.tickets_com .summary .sValues dt span,
.tickets_com .sInfo dt span {
    padding: 5px 4px;
    text-align: right;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#casinoTickets.collapsed::after {
    content: '▼';
    color: #fff;
    margin-left: 5px;
    font-size: 12px;
    cursor: pointer;
}

#casinoTickets.expanded::after {
    content: '►';
    margin-left: 5px;
    cursor: pointer;
}

#drpStatus,
#sSubmit {
    width: 100%;
}

.tickets_com .tNoValues {
    line-height: 20px;
    background: #fff;
    border: 1px solid #C2C2C2;
    border-top: none;
    text-align: center;
}

.tickets_com .sInfo dt {
    line-height: 20px;
    float: left;
    width: 20%;
}

.tickets_com .summary .sValues dt {
    line-height: 20px;
    float: left;
    width: 20%;
}

.tickets_com .tDetails {
    padding: 0 3px;
    font-size: 14px;
}

    .tickets_com .tDetails .inner {
        padding: 5px 3px;
    }

.tickets_com .bDetails {
    border-bottom: 1px solid #000;
    height: 20px;
}

.tickets_com .IdNo {
    float: left;
    width: 40%;
    text-align: left;
}

.tickets_com .dateTime {
    float: left;
    width: 60%;
    text-align: right;
}

.tickets_com .mDetails {
    border-bottom: 1px solid #000;
}

    .tickets_com .mDetails .row {
        padding: 2px 0px;
    }

.tickets_com .row .event {
    float: left;
    width: 100%;
    text-align: left;
}

    .tickets_com .row .event > span {
        position: relative;
    }

    .tickets_com .row .event span {
        line-height: 20px;
    }

/*#region momentum */
.expand-momentum {
    float: right;
    padding: 3px;
    width: 14px;
    height: 14px;
    background-image: url(../../Images/left-arrow.svg);
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

    .expand-momentum.flig {
        transform: rotate(-90deg );
    }

.momentum {
    display: none;
    padding: 10px;
    width: 100%;
    /*max-height: 270px;*/
    box-sizing: border-box;
    background-color: #e1e0d7;
    -ms-overflow-style: none;
    overflow-x: hidden;
    overflow-y: auto;
}

.liveEvent .momentum {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--momentum-color);
}

.momentum::-webkit-scrollbar {
    display: none;
}

.momentum.show {
    display: block;
}

.momentum .row {
    display: flex !important;
    align-items: center;
    margin-bottom: 5px;
    height: 30px !important;
    line-height: 30px !important;
}

    .momentum .row.team2 {
        flex-direction: row-reverse;
    }

    .momentum .row > div {
        flex: 1;
        height: 100%;
    }

    .momentum .row .info {
        display: flex;
    }

    .momentum .row.team1 .info {
        justify-content: flex-end;
        border-right: 1px solid var(--stats-color-1);
    }

    .momentum .row.team2 .info {
        justify-content: flex-start;
        flex-direction: row-reverse;
        border-left: 1px solid var(--stats-color-2);
    }

    .momentum .row .info__summary {
        text-align: center;
        font-size: 12px;
        color: #544a4a;
    }

    .momentum .row .info .text {
        display: block;
        width: 100%;
        text-align: left;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.liveEvent .momentum .row .info .text {
    font-size: 13px;
}

.momentum .row.team1 .info .text {
    text-align: right;
}

.momentum .row .info .momentum__icon img {
    margin: 5px;
    height: 20px;
}

.momentum .row.team1 .info .momentum__icon img {
    transform: rotateY(180deg);
}

.momentum .row .time {
    width: 50px;
    flex: 0 0 50px;
    text-align: center;
    font-weight: 700;
    color: #544a4a;
}

.liveEvent .momentum .row .time {
    color: #b7b7b7;
    font-size: 13px;
}

.liveEvent .row .info__summary {
    color: #b7b7b7;
}

/*#endregion*/
/*Sports Icons Sprite*/
.tickets_com .icon {
    float: left;
    background-image: url(/Images/SportsSprite.svg);
    background-size: 12em 8em;
    width: 20px;
    height: 20px;
    font-size: 20px;
}
/*Football*/
.tickets_com .sp1 {
    background-position: 0 0;
}
/*Basketball*/
.tickets_com .sp2 {
    background-position: -5em 0;
}
/*Tennis*/
.tickets_com .sp3 {
    background-position: -1em 0;
}
/*Ice Hockey*/
.tickets_com .sp4 {
    background-position: -6em 0;
}
/*American Football*/
.tickets_com .sp5 {
    background-position: -3em 0;
}
/*Motor Sports*/
.tickets_com .sp6 {
    background-position: -5em -3em;
}
/*Baseball*/
.tickets_com .sp7 {
    background-position: -4em 0;
}
/*Voleyball*/
.tickets_com .sp8 {
    background-position: -5em -1em;
}
/*Handball*/
.tickets_com .sp9 {
    background-position: -.98em -1em;
}
/*Rugby Union*/
.tickets_com .sp10 {
    background-position: -3em 0;
}
/*Rugby League*/
.tickets_com .sp11 {
    background-position: -3em 0;
}
/*Boxing*/
.tickets_com .sp12 {
    background-position: -7em 1px;
}
/*Cricket*/
.tickets_com .sp13 {
    background-position: -7em -2em;
}
/*Chess*/
.tickets_com .sp14 {
    background-position: -8em -4em;
}
/*Darts*/
.tickets_com .sp15 {
    background-position: -9em -1em;
}
/*Golf*/
.tickets_com .sp16 {
    background-position: -11em 0;
}
/*Snooker*/
.tickets_com .sp17 {
    background-position: -3em -1em;
}
/*Futsal*/
.tickets_com .sp18 {
    background-position: 0 0;
}
/*Table Tennis*/
.tickets_com .sp19 {
    background-position: -8em -1em;
}
/*Badminton*/
.tickets_com .sp20 {
    background-position: -6em -2em;
}
/*E-Sports*/
.tickets_com .sp21 {
    background-position: -4em -5em;
}
/*Water Polo*/
.tickets_com .sp22 {
    background-position: 0 -2em;
}
/*Bandy*/
.tickets_com .sp23 {
    background-position: -7em -1em;
}
/*Field Hockey*/
.tickets_com .sp24 {
    background-position: -7em -1em;
}
/*Floorball*/
.tickets_com .sp25 {
    background-position: 0 -7em;
}
/*Aussie Rules*/
.tickets_com .sp26 {
    background-position: -3em 0;
}
/*Combat Sports*/
.tickets_com .sp27 {
    background-position: -7em -5em;
}
/*Bowls*/
.tickets_com .sp28 {
    background-position: 0 -3em;
}
/*Gaelic Football*/
.tickets_com .sp29 {
    background-position: -1em -7em;
}
/*Beach Football*/
.tickets_com .sp30 {
    background-position: -2em -2em;
}
/*Beach Volleyball*/
.tickets_com .sp31 {
    background-position: -10em -1em;
}
/*Netball*/
.tickets_com .sp32 {
    background-position: -5em -1em;
}
/*Lacrosse*/
.tickets_com .sp33 {
    background-position: -5em -4em;
}
/*Curling*/
.tickets_com .sp34 {
    background-position: -11em -1em;
}
/*Softball*/
.tickets_com .sp35 {
    background-position: -6em -3em;
}
/*Squash*/
.tickets_com .sp36 {
    background-position: -1em -3em;
}
/*Sumo*/
.tickets_com .sp37 {
    background-position: -4em -4em;
}
/*Horse Racing*/
.tickets_com .sp38 {
    background-position: -11em -3em;
}
/*Indoor Football*/
.tickets_com .sp39 {
    background-position: 0 0;
}

.tickets_com .vs {
    float: unset !important;
    text-align: unset !important;
    width: unset !important;
}

.tickets_com .row .game {
    float: left;
    width: 65%;
    text-align: left;
    line-height: 20px;
}

.tickets_com .row .date,
.tickets_com .row .odds {
    float: left;
    width: 35%;
    text-align: right;
    height: 20px;
    line-height: 20px;
}

.bold,
b {
    font-weight: bold;
}

.tickets_com .row .res {
    float: left;
}

.tickets_com dl.recap {
    margin: 0;
}

    .tickets_com dl.recap:first-of-type {
        border-top: 1px solid black;
    }

.tickets_com .recap dt,
.tickets_com .data dd {
    float: left;
    width: 50%;
}

    .tickets_com .recap dt > span {
        display: block;
        text-align: right;
        padding: 5px 8px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.tickets_com .recap dd > span {
    display: block;
    text-align: left;
    padding: 5px 8px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.liveEvent:not(.fixed) .VueCarousel-inner {
    flex-basis: var(--rvw) !important;
}

.striked {
    text-decoration: line-through;
}

.orange {
    color: orange !important;
}

.red {
    color: red !important;
}

.green {
    color: green !important;
}

.blue:not(.lucky6 .blue) {
    color: #0569D4 !important;
}

.text-nowrap {
    white-space: nowrap;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.searchBox .threeChars {
    color: #fdd101;
}

#luckySix .information {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .5rem .5rem;
    border: 1px solid transparent;
    font-size: 12px;
}

@-webkit-keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0eg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes tilt-shaking {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0eg);
    }

    50% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/*#region animation goal*/
.container-goal-score {
    position: absolute;
    right: -3px;
    line-height: 15px;
    color: #3a3a3a;
    font-size: 11px;
    overflow: hidden;
    text-transform: uppercase;
    vertical-align: middle;
    white-space: nowrap;
}

.inner-goal-score {
    animation: inner-goal-score-animation 5.35s ease-out;
    animation-delay: .2s;
    border-radius: 2px;
    display: inline-block;
    padding: 0 3px;
    display: flex;
    align-items: center;
    opacity: 0;
}

.container-goal-score i {
    display: inline-block;
    margin-right: 5px;
    width: 1em;
    height: 1em;
    transform: translateY(1px);
    background-image: url(/Images/SportsSprite.svg);
    background-repeat: no-repeat;
    background-size: 12em 8.1em;
    background-position: 0 0;
    animation: rotate-ball-animation 1.5s linear infinite;
}

.goal-text {
    display: inline-block;
    padding-right: 5px;
    font-size: 9px;
    font-weight: 700;
    transform: translateX(50%);
    animation-name: goal-animation;
    animation-duration: 5.05s;
    animation-iteration-count: 1;
    animation-delay: .3s;
    animation-timing-function: cubic-bezier(0, 1, 0.85, 1);
    opacity: 0;
}

.score-text {
    display: inline-block;
    font-size: 13px;
    transform: translateY(-100%);
    animation-name: score-text-animation;
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-delay: .75s;
    animation-timing-function: cubic-bezier(0, 1, 0.85, 1);
    opacity: 0;
}

.displacement {
    margin-top: -1px;
    line-height: 13px;
    z-index: 2;
}

@keyframes inner-goal-score-animation {
    0% {
        opacity: 0;
        transform: translate3d(100%,0,0);
    }

    5% {
        opacity: 1;
        transform: translateZ(0);
    }

    90% {
        opacity: 1;
        transform: translateZ(0);
    }

    100% {
        opacity: 0;
        transform: translateZ(0);
    }
}

@keyframes score-text-animation {
    0% {
        opacity: 0;
    }

    5% {
        opacity: 1;
        transform: translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
    }
}

@keyframes goal-animation {
    0% {
    }

    20% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rotate-ball-animation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/*#endregion*/

/*#region Print Dialog*/
#overlay {
    height: 100%;
    left: 0;
    opacity: 0.7;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

#printDialog {
    -moz-background-clip: padding-box;
    -moz-border-radius: 6px;
    -webkit-background-clip: padding-box;
    -webkit-border-radius: 6px;
    background-clip: padding-box;
    border-radius: 6px;
    left: calc(50% - 165px);
    outline: 0;
    position: absolute;
    top: 20px;
    width: 330px;
    z-index: 101;
}

    #printDialog .modal-header {
        min-height: 16px;
        padding: 10px;
    }

    #printDialog .modal-title {
        float: left;
        font-size: 16px;
        margin: 0;
    }

    #printDialog .modal-body {
        padding: 10px;
        position: relative;
    }

    #printDialog .close {
        padding: 0;
        color: #000;
        background: transparent;
        float: right;
        font-size: 22px;
        font-weight: bold;
        line-height: 1;
        text-shadow: 0 1px 0 #fff;
        border: 0;
        -webkit-appearance: none;
        filter: alpha(opacity=20);
        opacity: .2;
        cursor: pointer;
    }

    #printDialog .modal-header .close {
        margin-top: -2px;
    }

    #printDialog .modal-footer {
        border-top: 1px solid #e5e5e5;
        padding: 10px;
        text-align: right;
    }

    #printDialog .btn {
        -moz-border-radius: 4px;
        -moz-user-select: none;
        -ms-user-select: none;
        -webkit-border-radius: 4px;
        -webkit-user-select: none;
        border-radius: 4px;
        cursor: pointer;
        display: inline-block;
        font-size: 16px;
        font-weight: normal;
        line-height: 1.2;
        margin-bottom: 0;
        padding: 2% 5%;
        text-align: center;
        user-select: none;
        vertical-align: middle;
        white-space: nowrap;
    }

    #printDialog .btn-primary {
        background-color: #fdd101;
        color: #333;
        font-weight: bold;
    }
/*#endregion*/

/*Sport Menu*/
#sportMenuContainer {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

    #sportMenuContainer .sportMenu {
        text-align: center;
        display: flex;
        flex-wrap: nowrap;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

        #sportMenuContainer .sportMenu::-webkit-scrollbar,
        .highContainer .highMenu::-webkit-scrollbar {
            display: none;
        }

        #sportMenuContainer .sportMenu .flex {
            display: flex;
            flex-wrap: nowrap;
            margin: 0 auto;
        }

            #sportMenuContainer .sportMenu .flex a {
                flex: 0 0 auto;
                padding: 0 5px;
                min-width: 55px;
                cursor: pointer;
            }

        #sportMenuContainer .sportMenu ul {
            height: 100%;
        }

            #sportMenuContainer .sportMenu ul li {
                text-align: center;
                display: inline-block;
                cursor: pointer;
                width: 80px;
            }

        #sportMenuContainer .sportMenu a .icon {
            position: relative;
            display: block;
            width: 55px;
            height: 50px;
            margin: 0 auto;
        }

        #sportMenuContainer .sportMenu a.s_streaming .streaming {
            position: absolute;
            top: 0;
            left: 0;
            background-image: url('/Images/livestream/streaming.svg?v=1');
            background-repeat: no-repeat;
            background-size: 100%;
            width: 1em;
            height: 1em;
            font-size: 38px;
            margin: 8px;
        }

        #sportMenuContainer .sportMenu a.s_streaming .counter {
            display: inline-flex;
            position: relative;
            right: -20px;
            top: -28px;
            line-height: 10px;
            color: red;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: .32px;
            transition: color .24s;
        }

        #sportMenuContainer .sportMenu a .icon i {
            position: absolute;
            top: 0;
            left: 0;
            background-image: url('/Images/SportsSprite.svg');
            background-repeat: no-repeat;
            background-size: 12em 8em;
            width: 1em;
            height: 1em;
            font-size: 38px;
            margin: 8px;
        }

            /*Search*/
            #sportMenuContainer .sportMenu a .icon i.sp-1 {
                background-image: url('/Images/magnifier.svg');
                background-size: 100%;
            }
            /*Highlights*/
            #sportMenuContainer .sportMenu a .icon i.sp0 {
                background-position: -8em -5em;
            }
            /*Football*/
            #sportMenuContainer .sportMenu a .icon i.sp1 {
                background-position: 0 0;
            }
            /*Basketball*/
            #sportMenuContainer .sportMenu a .icon i.sp2 {
                background-position: -5em 0;
            }
            /*Tennis*/
            #sportMenuContainer .sportMenu a .icon i.sp3 {
                background-position: -1em 0;
            }
            /*Ice Hockey*/
            #sportMenuContainer .sportMenu a .icon i.sp4 {
                background-position: -6em 0;
            }
            /*American Football*/
            #sportMenuContainer .sportMenu a .icon i.sp5 {
                background-position: -3em 0;
            }
            /*Motor Sports*/
            #sportMenuContainer .sportMenu a .icon i.sp6 {
                /*background-position: -.98em -1em;*/
                background-position: -5em -3em;
            }
            /*Baseball*/
            #sportMenuContainer .sportMenu a .icon i.sp7 {
                background-position: -4em 0;
            }
            /*Voleyball*/
            #sportMenuContainer .sportMenu a .icon i.sp8 {
                background-position: -5em -1em;
            }
            /*Handboll*/
            #sportMenuContainer .sportMenu a .icon i.sp9 {
                background-position: -.98em -1em;
            }
            /*Rugby Union*/
            #sportMenuContainer .sportMenu a .icon i.sp10 {
                background-position: -3em 0;
            }
            /*Rugby League*/
            #sportMenuContainer .sportMenu a .icon i.sp11 {
                background-position: -3em 0;
            }
            /*Boxing*/
            #sportMenuContainer .sportMenu a .icon i.sp12 {
                background-position: -7em 1px;
            }
            /*Cricket*/
            #sportMenuContainer .sportMenu a .icon i.sp13 {
                background-position: -7em -2em;
            }
            /*Chess*/
            #sportMenuContainer .sportMenu a .icon i.sp14 {
                background-position: -8em -4em;
            }
            /*Darts*/
            #sportMenuContainer .sportMenu a .icon i.sp15 {
                background-position: -9em -1em;
            }
            /*Golf*/
            #sportMenuContainer .sportMenu a .icon i.sp16 {
                background-position: -11em 0;
            }
            /*Snooker*/
            #sportMenuContainer .sportMenu a .icon i.sp17 {
                background-position: -3em -1em;
            }
            /*Futsal*/
            #sportMenuContainer .sportMenu a .icon i.sp18 {
                background-position: 0 0;
            }
            /*Table Tennis*/
            #sportMenuContainer .sportMenu a .icon i.sp19 {
                background-position: -8em -1em;
            }
            /*Badminton*/
            #sportMenuContainer .sportMenu a .icon i.sp20 {
                background-position: -6em -2em;
            }
            /*E-Sports*/
            #sportMenuContainer .sportMenu a .icon i.sp21 {
                background-position: -4em -5em;
            }
            /*Water Polo*/
            #sportMenuContainer .sportMenu a .icon i.sp22 {
                background-position: 0 -2em;
            }
            /*Bandy*/
            #sportMenuContainer .sportMenu a .icon i.sp23 {
                background-position: -7em -1em;
            }
            /*Field Hockey*/
            #sportMenuContainer .sportMenu a .icon i.sp24 {
                background-position: -7em -1em;
            }
            /*Floorball*/
            #sportMenuContainer .sportMenu a .icon i.sp25 {
                background-position: 0 -7em;
            }
            /*Ausie Rules*/
            #sportMenuContainer .sportMenu a .icon i.sp26 {
                background-position: -3em 0;
            }
            /*Combat Sports*/
            #sportMenuContainer .sportMenu a .icon i.sp27 {
                background-position: -7em -5em;
            }
            /*Bowls*/
            #sportMenuContainer .sportMenu a .icon i.sp28 {
                background-position: 0 -3em;
            }
            /*Gaelic Football*/
            #sportMenuContainer .sportMenu a .icon i.sp29 {
                background-position: -1em -7em;
            }
            /*Beach Football*/
            #sportMenuContainer .sportMenu a .icon i.sp30 {
                background-position: -2em -2em;
            }
            /*Beach Volleyball*/
            #sportMenuContainer .sportMenu a .icon i.sp31 {
                background-position: -10em -1em;
            }
            /*Netball*/
            #sportMenuContainer .sportMenu a .icon i.sp32 {
                background-position: -5em -1em;
            }
            /*Lacrosse*/
            #sportMenuContainer .sportMenu a .icon i.sp33 {
                background-position: -5em -4em;
            }
            /*Curling*/
            #sportMenuContainer .sportMenu a .icon i.sp34 {
                background-position: -11em -1em;
            }
            /*Softball*/
            #sportMenuContainer .sportMenu a .icon i.sp35 {
                background-position: -6em -3em;
            }
            /*Squash*/
            #sportMenuContainer .sportMenu a .icon i.sp36 {
                background-position: -1em -3em;
            }
            /*Sumo*/
            #sportMenuContainer .sportMenu a .icon i.sp37 {
                background-position: -4em -4em;
            }
            /*Horse Racing*/
            #sportMenuContainer .sportMenu a .icon i.sp38 {
                background-position: -11em -3em;
            }
            /*Indoor Football*/
            #sportMenuContainer .sportMenu a .icon i.sp39 {
                background-position: 0 0;
            }
            /*Politics*/
            #sportMenuContainer .sportMenu a .icon i.sp41 {
                background-position: -4em -1em;
            }

        #sportMenuContainer .sportMenu a .name {
            display: block;
            width: 100%;
            margin: 5px 0;
            font-size: 10px;
            font-weight: bold;
        }

.selections {
    display: block;
    width: 100%;
}

    .selections .ddl {
        width: 98%;
        cursor: pointer;
        margin: 10px 1%;
        padding: 10px;
        font-size: 18px;
        border: none;
    }

/*#region sport content*/
.stInfo {
    position: relative;
}

    .stInfo:not(.highlights) {
        padding: 7px 10px;
    }

    .stInfo .sortGames {
        float: left;
        font-weight: bold;
        cursor: pointer;
    }

    .stInfo:not(.highlights) span.name {
        margin-left: 10px;
    }

    .stInfo.highlights {
        text-align: left;
        line-height: 36px;
        overflow: hidden;
    }

        .stInfo.highlights span.name {
            position: relative;
            margin-left: 0;
            padding: 10px 20px 10px 15px;
            font-family: Arial;
            font-size: 16px;
        }

            .stInfo.highlights span.name .abs {
                position: absolute;
                left: 100%;
                width: 2px;
                margin-right: -2px;
                border-right: 10px solid transparent;
                top: 0;
            }

    .stInfo .ltlGroupName {
        float: right;
        padding: 0 5px;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        color: #ffffff !important;
        cursor: pointer;
    }

        .stInfo .ltlGroupName span:after {
            width: 0;
            height: 0;
            border: 0.313em solid transparent;
            border-bottom: none;
            border-top-color: #fff;
            content: '';
            vertical-align: middle;
            display: inline-block;
            position: relative;
            right: -0.313em;
        }

.top-tours .toptours {
    display: inline-block;
}

.top-tours .stInfo {
    padding: 6px 9px;
}

.top-tours .toptours {
    position: absolute;
    width: 12px;
    height: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../../Images/toptours.svg);
    -webkit-filter: invert(1);
    filter: invert(1);
    cursor: pointer;
}

.top-tours .topLeagues {
    position: absolute;
    width: 16px;
    height: 16px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url(../../../Images/trophy.svg);
    -webkit-filter: invert(1);
    filter: invert(1);
    cursor: pointer;
}

.top-tours .stInfo span.name {
    margin-left: 20px;
}

.message-box {
    display: block;
    width: auto;
    position: relative;
    margin: 0;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
}

.mobile .competitionList li {
    overflow: hidden;
}

    .mobile .competitionList li a.league {
        position: relative;
    }

    .mobile .competitionList li:first-child {
        margin-top: 0 !important;
    }

.mobile .competitionList ul.matchs li:last-child {
    border-bottom: none;
}

.mobile .competitionList li .tName {
    padding-right: 20px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile .competitions {
    padding: 5px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.mobile .btnBack {
    position: absolute;
    top: 10px;
    right: 5px;
    width: 15px;
    height: 15px;
    cursor: pointer;
    background-image: url(/Images/left-arrow.svg);
    background-repeat: no-repeat;
}

.mobile .btnCollapse {
    position: absolute;
    top: 6px;
    right: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    background-image: url(/Images/down-arrow.svg);
    background-repeat: no-repeat;
}

.mobile .competitionList .loader {
    height: 100px;
    width: 100%;
}
/*#endregion*/

/*#region sort selector */
.sort-selector-list {
    position: absolute;
    top: 30px;
    left: 5px;
    display: block;
    font-size: 12px;
    padding: .25rem 0;
    border-radius: .25rem;
    color: #333;
    background-color: #fff;
    width: 175px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
    z-index: 1;
}

.sort-selector-option {
    padding: .65rem .75rem;
    line-height: 1em;
    cursor: pointer;
}

    .sort-selector-option:hover {
        background-color: rgba(0,0,0,.04);
    }

    .sort-selector-option.active {
        font-weight: 700;
        border-left: 4px solid #fdd101;
        padding-left: .4rem;
    }

/*#endregion*/

/*#region groups */
.hasDropdown {
    position: absolute;
    display: block;
    right: 5px;
    font-size: 12px;
    padding: .25rem 0;
    border-radius: .25rem;
    color: #333;
    background-color: #fff;
    width: 175px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.200008);
    z-index: 1;
}

    .hasDropdown li {
        padding: .65rem .75rem;
        line-height: 1em;
        border-left: 4px solid #fff;
        cursor: pointer;
    }

        .hasDropdown li.selected {
            font-weight: 700;
            border-left: 4px solid #fdd101;
            padding-left: .4rem;
        }

        .hasDropdown li:hover {
            background-color: rgba(0,0,0,.04);
            border-left: 4px solid #dcc34878;
        }

        .hasDropdown li a span {
            display: inline-block;
            text-align: left;
            padding: 0 5px;
            font-size: 12px;
        }
/*#endregion*/

.W100 {
    width: 100%;
}

#sportMenuContainer {
    height: 70px;
    width: 100%;
    overflow: hidden;
}

    #sportMenuContainer .animatedContainer {
        height: 140px;
        width: 100%;
        top: 0;
    }

    #sportMenuContainer .sportMenu {
        height: 70px;
    }

    #sportMenuContainer .sportSearch {
        height: 40px;
        padding: 15px;
        position: relative;
        display: -ms-flexbox;
        display: flex;
        z-index: 1;
    }

        #sportMenuContainer .sportSearch .icon-search {
            position: absolute;
            background-image: url(/Images/magnifier.svg);
            background-size: 25px 25px;
            background-repeat: no-repeat;
            top: 0;
            left: 0;
            width: 25px;
            height: 25px;
            font-size: 38px;
            margin: 8px;
        }

        #sportMenuContainer .sportSearch .icon-close {
            position: absolute;
            background-image: url(/Images/close.svg);
            background-size: 17px 17px;
            background-repeat: no-repeat;
            top: 0;
            right: 0;
            width: 17px;
            height: 17px;
            font-size: 38px;
            margin: 12px 4px 12px 16px;
            cursor: pointer;
        }

        #sportMenuContainer .sportSearch input {
            width: 90%;
            height: 40px;
            border: none;
            font-size: 15px;
            float: left;
            background: #ececec;
            border-radius: 3px;
            padding-left: 40px;
            padding-right: 10px;
        }

        #sportMenuContainer .sportSearch .container {
            vertical-align: middle;
            white-space: nowrap;
            position: relative;
            width: 100%;
        }

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
}

.search .results {
    -moz-border-radius: 0 0 8px 8px;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    padding: 5px;
}

    .search .results li.res {
        position: relative;
        -moz-border-radius: 8px;
        -webkit-border-radius: 8px;
        border-radius: 8px;
        margin: 4px 5px;
        cursor: pointer;
    }

.search li.res a {
    display: block;
    padding: 5px 50px;
}

.search span.iconImg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 5px;
    margin-top: 10px;
    margin-left: 10px;
    text-align: left;
    cursor: pointer;
}

    .search span.iconImg i {
        display: block;
        margin: 0 !important;
        background-image: url(/Images/SportsSprite.svg);
        background-size: 12em 8em;
        width: 35px;
        height: 35px;
        font-size: 35px;
        margin-right: 5px;
    }

.search .stInfo {
    padding: 0 !important;
    background: #fff !important;
}

    .search .stInfo .home,
    .search .stInfo .away {
        font-size: 14px;
        font-weight: bold;
    }

    .search .stInfo div {
        color: #333;
    }

.search .liveicon {
    vertical-align: middle;
    display: inline-block;
    width: 35px;
    height: 13px;
    font-size: 6px;
    background-image: url(../../Images/live.svg);
    background-repeat: no-repeat;
    background-position: 0px -8px;
    background-size: 5em 5em;
}

/*Football*/
.search .iconImg i.sp1 {
    background-position: 0 0;
}
/*Basketball*/
.search .iconImg i.sp2 {
    background-position: -5em 0;
}
/*Tennis*/
.iconImg i.sp3 {
    background-position: -1em 0;
}
/*Ice Hockey*/
.iconImg i.sp4 {
    background-position: -6em 0;
}
/*American Football*/
.iconImg i.sp5 {
    background-position: -3em 0;
}
/*Motor Sports*/
.iconImg i.sp6 {
    background-position: -5em -3em;
}
/*Baseball*/
.iconImg i.sp7 {
    background-position: -4em 0;
}
/*Voleyball*/
.iconImg i.sp8 {
    background-position: -5em -1em;
}
/*Handball*/
.iconImg i.sp9 {
    background-position: -.98em -1em;
}
/*Rugby Union*/
.iconImg i.sp10 {
    background-position: -3em 0;
}
/*Rugby League*/
.iconImg i.sp11 {
    background-position: -3em 0;
}
/*Boxing*/
.iconImg i.sp12 {
    background-position: -7em 1px;
}
/*Cricket*/
.iconImg i.sp13 {
    background-position: -7em -2em;
}
/*Chess*/
.iconImg i.sp14 {
    background-position: -8em -4em;
}
/*Darts*/
.iconImg i.sp15 {
    background-position: -9em -1em;
}
/*Golf*/
.iconImg i.sp16 {
    background-position: -11em 0;
}
/*Snooker*/
.iconImg i.sp17 {
    background-position: -3em -1em;
}
/*Futsal*/
.iconImg i.sp18 {
    background-position: 0 0;
}
/*Table Tennis*/
.iconImg i.sp19 {
    background-position: -8em -1em;
}
/*Badminton*/
.iconImg i.sp20 {
    background-position: -6em -2em;
}
/*E-Sports*/
.iconImg i.sp21 {
    background-position: -4em -5em;
}
/*Water Polo*/
.iconImg i.sp22 {
    background-position: 0 -2em;
}
/*Bandy*/
.iconImg i.sp23 {
    background-position: -7em -1em;
}
/*Field Hockey*/
.iconImg i.sp24 {
    background-position: -7em -1em;
}
/*Floorball*/
.iconImg i.sp25 {
    background-position: 0 -7em;
}
/*Ausie Rules*/
.iconImg i.sp26 {
    background-position: -3em 0;
}
/*Combat Sports*/
.iconImg i.sp27 {
    background-position: -7em -5em;
}
/*Bowls*/
.iconImg i.sp28 {
    background-position: 0 -3em;
}
/*Gaelic Football*/
.iconImg i.sp29 {
    background-position: -1em -7em;
}
/*Beach Football*/
.iconImg i.sp30 {
    background-position: -2em -2em;
}
/*Beach Volleyball*/
.iconImg i.sp31 {
    background-position: -10em -1em;
}
/*Netball*/
.iconImg i.sp32 {
    background-position: -5em -1em;
}
/*Lacrosse*/
.iconImg i.sp33 {
    background-position: -5em -4em;
}
/*Curling*/
.iconImg i.sp34 {
    background-position: -11em -1em;
}
/*Softball*/
.iconImg i.sp35 {
    background-position: -6em -3em;
}
/*Squash*/
.iconImg i.sp36 {
    background-position: -1em -3em;
}
/*Sumo*/
.iconImg i.sp37 {
    background-position: -4em -4em;
}
/*Horse Racing*/
.iconImg i.sp38 {
    background-position: -11em -3em;
}
/*Indoor Football*/
.iconImg i.sp39 {
    background-position: 0 0;
}

.mobile .search div.stInfo > div {
    overflow: hidden !important;
    -ms-text-overflow: ellipsis !important;
    -o-text-overflow: ellipsis !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

div.CaTo {
    font-size: 12px;
}

    div.CaTo .dateTime {
        display: inline-block;
        vertical-align: middle;
    }

        div.CaTo .dateTime span {
            display: inline-block;
            vertical-align: middle;
            padding-right: 5px;
        }

    div.CaTo .tourCat,
    div.CaTo .tourSearch {
        display: inline-block;
        vertical-align: middle;
    }

span.btnRight {
    position: absolute;
    right: 0;
    top: 5px;
    bottom: 5px;
    width: 40px;
    text-align: left;
    background-image: url(../../Images/moveNext.svg);
    background-size: 20px 20px;
    background-position: center center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.NoDataFound {
    display: block;
    width: auto;
    position: relative;
    margin: 0;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    line-height: 28px;
}

.information {
    position: relative;
    overflow-x: hidden;
}

.infoMenuBtn {
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    -webkit-transform-origin: center;
    transform-origin: center;
    padding: 7px;
    cursor: pointer;
    border-color: transparent;
    background: #000;
    border-radius: 7px;
}

.infoMenuBtn .bar {
    width: 18px;
    height: 2px;
    background: #fff;
}

.infoMenuBtn .bar:nth-child(2) {
    margin: 5px 0;
}

.infoMenu {
    position: absolute;
    top: 50px;
    right: -200%;
    width: 50%;
    z-index: 1;
    -webkit-transition: right 0.4s linear;
    transition: right 0.4s linear;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.infoMenu.show {
    right: 10px;
}

.infoMenu::-webkit-scrollbar {
    display: none;
}

.infoMenu ul {
    padding: 10px;
    border-radius: 7px;
    background-color: #1a1c1e;
}

.infoMenu ul li a {
    display: block;
    padding: 5px;
    font-size: 14px;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255,255,.9);
}

.infoMenu ul li:last-of-type a {
    border-bottom: 0;
}

.infoMenu ul li.active a {
    color: var(--yellow-color);
}

.information .content {
    margin-top: 0;
}

#mainContent {
    background: #fff;
}

#mainContent .inner {
    padding: 10px 0px;
}

#mainContent .content {
    min-height: 490px;
    padding: 10px 15px;
    text-align: justify;
}

#mainContent .content a {
    text-decoration: underline;
}

#mainContent h1 {
    font-size: 20px;
    text-align: left;
}

#mainContent h1 span {
    display: inline-block;
    max-width: 94%;
    line-height: 28px;
    padding: 1px 10px 0 10px;
    position: relative;
    font-family: Arial;
    font-size: 16px;
    font-weight: bold;
}

#mainContent h1 label.abs {
    position: absolute;
    left: 100%;
    width: 2px;
    margin-left: 0;
    border-right: 10px solid transparent;
    top: 0;
}

#mainContent h2 {
    font-size: 16px;
    line-height: 13px;
    padding: 8px 5px;
}

#mainContent h3 {
    padding: 0 5px;
    text-decoration: underline;
}

#mainContent .content hr {
    height: 1px;
}

#mainContent .content .div {
    padding: 15px 0;
}

#mainContent .content p {
    padding: 0 0 10px;
    margin: 2px 0;
    line-height: 16px;
}

#mainContent .content ol,
#mainContent .content ul {
    padding: 0 0 0 20px;
}

#mainContent .content ol li {
    list-style: decimal;
    margin: 2px;
    line-height: 16px;
    padding: 5px 10px 5px;
    background: none;
}

#mainContent .content ul li {
    margin: 2px;
    padding: 5px 10px 5px;
    background: none;
}

#mainContent .content ul li a:hover {
    font-weight: bold;
}

/*CONTACT US*/
.contact_form {
    padding: 20px;
}

@media (max-width: 400px) {
    .contact_form div:last-child {
        margin-left: unset !important;
    }
}

.contact_form .row {
    margin-bottom: 10px;
}

.contact_form .row label {
    display: inline-block;
    width: 100px;
    vertical-align: middle;
    font-weight: bold;
}

.contact_form .row input {
    display: inline-block;
    width: 200px;
    height: 20px;
    vertical-align: middle;
    text-indent: 10px;
}

.contact_form .row textarea {
    display: inline-block;
    width: 200px;
    max-width: 830px;
    vertical-align: middle;
    text-indent: 10px;
}

.contact_form input#submit_button {
    margin-left: 10px;
    padding: 0 10px;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    line-height: 25px;
    cursor: pointer;
    -moz-border-radius: 2px;
    border-radius: 2px;
    font-size: 11px;
    font-weight: bold;
}

/*PAYMENT OPTIONS*/
.dottet-line {
    height: 3px;
    background-image: url('../../Images/dottet-line.gif');
    background-repeat: repeat-x;
    background-position: 0 1px;
    overflow: hidden;
    clear: both;
}

#mainContent .content .block {
    padding: 12px;
    font-size: 11px;
    line-height: 14px;
}

#mainContent .content .block .title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 12px;
}

#mainContent .content .paymentOption {
    margin: 12px 0;
    overflow: hidden;
}

#mainContent .content .paymentOption .logo {
    float: left;
    width: 150px;
    margin-right: 20px;
}

#mainContent .content .paymentOption .logo img {
    width: 100%;
    padding: 0;
}

#mainContent .content .paymentOption .informations {
    float: left;
    max-width: 600px;
}

#mainContent .content .paymentOption .informations .name {
    font-size: 14px;
}

#mainContent .content .paymentOption .informations .name.bold {
    font-weight: bold;
}

#mainContent .content .paymentOption .informations ul li {
    list-style-type: square;
    padding: 3px;
}

#mainContent .content .paymentOption .depositButton {
    clear: both;
    text-align: right;
    margin-right: 100px;
    height: 32px;
    line-height: 32px;
}

#mainContent .content .paymentOption .depositButton a {
    text-decoration: none;
    font-weight: bold;
    line-height: 24px;
    font-size: 12px;
    padding: 8px 13px;
}

.justify {
    text-align: justify;
}

.accordion {
    display: block;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    cursor: pointer;
}

.information .panel {
    padding: 0 18px;
    display: none;
    overflow: hidden;
}

.content {
    display: block !important;
}

.casino .info {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: 0.5rem 0.5rem;
    border: 1px solid transparent;
    font-size: 12px;
}

.casinoBanner {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 33.33%;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    border-radius: 0.25rem;
}

    .casinoBanner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }

.casinoBanner_0 {
    background-image: url(../../../../images/evolutions/slide0.jpg);
}

.casinoBanner_1 {
    background-image: url(../../../../images/evolutions/slide1.jpg);
}

.casinoBanner_2 {
    background-image: url(../../../../images/evolutions/slide2.jpg);
}

.l .casinoBanner .object-banner,
.rtl .casinoBanner .object-banner {
    width: 100%;
    max-width: calc(100% - 510px);
    height: 200px;
    border-radius: 0.25rem;
    object-fit: cover;
    object-position: right;
    display: flex;
    justify-content: flex-end;
}

.casinoBanner .overlay {
    position: absolute !important;
    background: unset !important;
    border-radius: .25rem;
    z-index: 0 !important;
}

.casinoBanner .inner {
    position: absolute;
    top: 15px;
    left: 15px;
}

.rtl .casinoBanner .inner {
    right: 15px;
}

.casinoBanner .inner .text {
    font-size: 14px;
    line-height: 16px;
    color: #ffdf1b;
    font-weight: 500;
}

.casinoBanner .inner .title {
    line-height: 24px;
    font-size: 14px;
    color: #ffdf1b;
    text-shadow: 2px 2px #57552d;
}

.casinoBanner .inner .button {
    margin-top: 30px;
    display: table;
    height: 30px;
    font-size: 16px;
    border-radius: 2px;
    padding: 0 10px;
    line-height: 30px;
    color: #ffdb00;
    border: 1px solid #ffde14;
    cursor: pointer;
    box-shadow: 0px -2px 7px 0px #000;
}

    .l .casinoBanner .inner .button:hover,
    .casinoBanner .inner .button:active {
        color: #3d3d3d;
        background: #fdd101;
    }

.__live-casino-spacing {
    margin-top: 12px;
    height: 1px;
    background: #e4eaf06e;
}

.mobile .__live-casino-spacing {
    margin-right: 12px;
    margin-left: 12px;
}

/*#region bingo-games*/
.bingo-games {
    padding: 12px 0 0;
}

.mobile .bingo-games {
    padding: 12px 12px 0;
}

.bingo-games .bingo-banner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1px;
    border-radius: 0.25rem;
}

.rtl .bingo-games .bingo-banner {
    direction: ltr;
}

.ui-slider-slide__container {
    max-width: 35rem;
    position: absolute;
    z-index: 1;
}

.mobile .__ltr .ui-slider-slide__container {
    left: 0;
}

.pc .ui-slider-slide__container {
    padding: .625rem 5rem;
    left: 0;
}

.ui-slider-slide__title {
    color: #faaa02;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 2.625rem;
    text-transform: uppercase;
}

.ui-slider-slide__text {
    color: #fff;
    line-height: 1rem;
    margin-top: .625rem;
}

.pc .ui-slider-slide__text {
    font-size: 1rem;
}

.bingo-games .banner-inner {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 50%;
}

.bingo-games .bingo-banner .banner-img {
    height: 190px;
    position: relative;
    width: 489px;
}

    .bingo-games .bingo-banner .banner-img img {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }

    .bingo-games .bingo-banner .banner-img.banner-left img {
        right: 0;
    }

.slots .play-icon {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

    .slots .play-icon .play-icon-hover {
        background-color: hsla(0, 0%, 100%, .2);
        border-radius: 50%;
        font-size: 0;
        height: 50px;
        position: relative;
        width: 50px;
    }

/*#region mobile*/
.mobile .ui-slider-slide__container {
    padding: .625rem 3rem;
    top: 20px;
    left: 0;
}

.mobile .ui-slider-slide__text {
    font-size: .875rem;
}

.mobile .bingo-games .bingo-banner .banner-img img {
    width: 100% !important;
    height: 100% !important;
}

.mobile .bingo-games .bingo-banner .banner-img img {
    right: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
}

.mobile .slots .play-icon .play-icon-hover {
    width: 40px;
    height: 40px;
}

    .mobile .slots .play-icon .play-icon-hover img {
        width: 40px !important;
        height: 40px !important;
    }

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .mobile .bingo-games .bingo-banner .banner-img {
        width: 220px;
        height: 120px;
    }
}

@media only screen and (max-width: 700px) {
    .mobile .bingo-games .bingo-banner .banner-img {
        width: 220px;
        height: 120px;
    }
}

@media only screen and (max-width: 800px) {
    .mobile .bingo-games .bingo-banner .banner-img {
        width: 220px;
        height: 120px;
    }

        .mobile .bingo-games .bingo-banner .banner-img img {
            width: 150% !important;
        }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 800px) {
    .mobile .bingo-games .bingo-banner .banner-img {
        width: 220px;
        height: 120px;
    }
}
/*#endregion*/

/*#endregion*/

/*#region desktop*/
.site .slots {
    position: relative;
    min-height: 500px;
}

.site .casino .info {
    padding: .5rem .5rem;
}
/*#endregion*/

/*#region mobile*/
.mobile .casino .info {
    padding: 0.5rem 0.5rem;
}

.mobile.rtl .casino .info {
    text-align: right;
}


.slots {
    position: relative;
}

    .slots .category {
        margin: 5px auto 0;
    }

        .slots .category .main {
            background: #333;
        }

            .slots .category .main .btn {
                display: block;
                float: left;
                width: 25%;
                user-select: none;
                box-sizing: border-box;
            }

.rtl .slots .category .main .btn {
    float: left;
}

.slots .category .searchBox {
    padding: 0 !important;
    height: 40px !important;
}

.slots .searchBox img {
    float: left;
    height: 16px;
    width: 16px;
    padding: 7px 8px;
}

.rtl .slots .searchBox img {
    float: left;
}

.slots .category .searchBox img {
    padding: 12px;
}

.slots .searchBox input:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: ' ';
    clear: both;
    height: 0;
}

.slots .category .btn {
    display: block;
    border: 0;
    margin: 0 auto;
    padding: 0 10px;
    line-height: 40px;
    width: 100%;
    height: 100%;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}

.slots .category .searchBox .filterGame {
    vertical-align: top;
    border: 0;
    width: calc(100% - 40px);
    height: 40px;
    font-weight: 700;
    text-indent: 5px;
    border-radius: 0 !important;
    box-sizing: border-box;
}

.slots .category .main .btn:not(.searchBox) {
    padding: 0;
    box-sizing: border-box;
    border-right: 1px solid #000;
}

.rtl .slots .category .main .btn:not(.searchBox) {
    border-right: 0 !important;
}

.rtl .slots .category .main .btn:not(.searchBox) {
    border-left: 1px solid #000;
}

.slots .category .main .btn:last-child {
    border-left: none !important;
}

.slots .category .groups {
    background: #545252;
}

.slots .category .groups {
    width: 100%;
}

.slots .VueCarousel {
    background: rgba(0,0,0,.3);
    border-radius: .25rem;
    box-sizing: border-box;
}

.slots .VueCarousel-wrapper {
    border-radius: 0.25rem;
}

    .slots .VueCarousel-wrapper .slide {
        border-radius: .25rem;
    }

.slots .VueCarousel-slide {
    text-align: center;
    box-sizing: border-box;
    border-right: 1px solid #000;
    background-color: #545252;
    cursor: pointer;
}

    .slots .VueCarousel-slide:last-child {
        border-right: 0;
    }

.rtl .slots .VueCarousel-slide {
    border-right: 0 !important;
    border-left: 1px solid #000;
}

    .rtl .slots .VueCarousel-slide:first-child {
        border-left: 0;
    }

.slots .VueCarousel-navigation-button {
    width: 25px;
    padding: 13.5px 8px !important;
    font-size: 10px !important;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    opacity: 1 !important;
}

body.casino .slots .VueCarousel-navigation-button {
    height: 40px;
    background: #9e9e9e;
}

.slots .VueCarousel-navigation-button:focus {
    outline: none !important;
}

.slots .VueCarousel-navigation-button:hover {
    background: #fdd100 !important;
}

.slots .VueCarousel-navigation-prev,
.slots .VueCarousel-navigation-next {
    transform: translateY(-50%) translateX(0) !important;
}

.slots .disabled {
    opacity: .5;
    cursor: default !important;
}

.mobile .slots .category .searchBox {
    position: static;
}

.mobile .slots .category .main .btn.searchBox {
    width: auto;
    border-bottom: none;
    border-right: none;
}

.rtl.mobile .slots .category .main .btn.searchBox {
    border-bottom: none;
    border-right: 1px solid #333;
    border-left: none;
}

.mobile .slots .category .searchBox .filterGame {
    width: calc(100% - 40px);
}

.mobile .slots .category .searchBox.focus .filterGame {
    position: absolute;
    left: 40px;
    padding: 0 10px;
    transition: width .5s ease-in-out;
}

.mobile .slots .category .searchBox:not(.focus) .filterGame {
    width: 0;
}

.mobile .slots .category .main .btn {
    width: calc(33.333% - 13.66666px);
}

.v-hl-container[data-v-05174758]:not(.v-hl-scroll) {
    height: 42px;
    -webkit-clip-path: initial !important;
    clip-path: none !important;
}

.slots .group .group-content-inner {
    text-align: center;
}

.slots .group .games:not(.empty) {
    grid-template-columns: repeat(auto-fill,minmax(140px,1fr));
}

.slots .group .games:after {
    display: block;
    content: '';
    clear: both;
}

.mobile .slots .group .game {
    width: 100%;
}

.slots .group .game {
    float: left;
    margin: .33%;
    width: 16%;
    cursor: pointer;
    box-sizing: border-box;
}

    .slots .group .game .imgWrapper {
        position: relative;
        overflow: hidden;
    }

        .slots .group .game .imgWrapper img {
            display: block;
            width: 100%;
            height: 154px;
            -moz-transition: all 0.3s;
            -webkit-transition: all 0.3s;
            transition: all 0.3s;
        }

        .slots .group .game .imgWrapper:hover img {
            -moz-transform: scale(1.1);
            -webkit-transform: scale(1.1);
            transform: scale(1.1);
        }

    .slots .group .game .name {
        font-size: 14px;
        font-weight: bold;
        line-height: 25px;
        display: block;
        padding: 0 10px;
        text-align: center;
        height: 25px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slots .group .game .imgWrapper .game-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        text-align: center;
        transition: .3s ease-out;
        opacity: 0;
        visibility: hidden;
    }

    .slots .group .game .imgWrapper:hover .game-overlay {
        visibility: visible;
        opacity: 1;
    }

.slots .star {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 25px;
    height: 25px;
}

.star {
    width: 16px;
    height: 16px;
    cursor: pointer;
    -webkit-filter: invert(1);
    filter: invert(1);
    background-size: 100%;
    background-repeat: no-repeat;
    background-image: url('../../../Images/star_empty.svg');
}

    .star.fav {
        -webkit-filter: invert(0) !important;
        filter: invert(0) !important;
        background-image: url('../../../Images/star_orange.svg');
    }

.slots .group .game .imgWrapper .game-overlay .pl_link {
    position: absolute;
    width: 70%;
    margin: 0 auto;
    top: 60%;
    left: 0;
    right: 0;
    line-height: 40px;
    border-radius: 5px;
}

/*#region horizontal casinoline*/
.slots .vue-horizontal {
    margin-left: 25px;
    margin-right: 25px;
    width: calc(100% - 50px);
}

    .slots .vue-horizontal .VueCarousel-slide .btn {
        min-width: 120px;
    }

.slots .v-hl-btn-prev {
    transform: translateX(-100%) !important;
}

.slots .v-hl-btn-next {
    transform: translateX(100%) !important;
}
/*#endregion*/

/*#region loader*/
#loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: #293243;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 200px;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border-top-color: #3498db;
    border: 3px solid transparent;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border-top-color: #e74c3c;
        border: 3px solid transparent;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border-top-color: #f9c922;
        border: 3px solid transparent;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg); /* IE 9 */
        transform: rotate(0deg); /* Firefox 16+, IE 10+, Opera */
    }

    100% {
        -webkit-transform: rotate(360deg); /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg); /* IE 9 */
        transform: rotate(360deg); /* Firefox 16+, IE 10+, Opera */
    }
}
/*#endregion*/

/*#region popup login*/
.mobile .casino .overlay,
.mobile .keno .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    transition: background-color 0.2s;
    z-index: 3;
}

.casino .overlay,
.games .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: 0.8;
    z-index: 10;
}

.form1 {
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    margin-left: 35%;
    margin-top: 18%;
    position: absolute;
    z-index: 3;
    top: 0;
    left: 0px;
    opacity: 1.0;
}

.form2 {
    width: 500px;
    margin: auto;
    padding: 20px;
    background: #f7f7f7;
    font-family: Verdana;
    color: black;
    border-radius: 5px;
    box-sizing: border-box;
}

.login_text {
    float: left;
    width: 56%;
}

.close_button {
    float: right;
    width: 43%;
}

.login_head-inline {
    display: inline-block;
}

.btn_login {
    width: 100%;
    border-color: black;
    background-color: #ffe659;
    border: 1px solid #666;
    border-radius: 5px;
}

    .btn_login:hover {
        background-color: #e3c505;
    }

.lost {
    float: left;
    color: black;
}

.join {
    float: right;
    color: black;
}
/*#endregion*/

.slots {
    background: #1d1d27;
}

.SmartLobby * {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/*#region AbstractHeader*/
.AbstractCategoryHeader {
    grid-row-gap: 1rem;
    grid-column-gap: 0;
    column-gap: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-bottom: calc(1rem - 1rem);
    position: relative;
    row-gap: 1rem;
}

    .AbstractCategoryHeader .abstract--navigation {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 30px;
    }

.AbstractCategoryHeaderTitle {
    grid-column-gap: 1rem;
    align-items: center;
    column-gap: 1rem;
    display: grid;
    grid-auto-flow: column;
    margin-left: 8px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.l .AbstractCategoryHeaderTitl {
    margin-left: 8px;
}

.rtl .AbstractCategoryHeaderTitle {
    margin-right: 8px;
}

.AbstractCategoryHeaderTitle .typography--header-title {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*#endregion*/

.slots .games__container {
    transform: translate(0px, -47px);
}

/*#region navigation*/
.content-or-loader.svelte-1uofbko {
    display: inline-flex;
    position: relative;
    align-items: center;
    font-size: 12px;
}

.content-wrapper .content-or-loader {
    min-width: 60px;
}

.button.svelte-1epmied {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    background: 0 0;
    border: none;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    font-weight: 600;
    touch-action: manipulation;
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .2s,color .2s;
    flex-shrink: 0;
    border-radius: .25rem;
}

.button.variant-link.svelte-1epmied:not(.icon-only) .svg-icon-arrow {
    transition: color .2s;
    color: #b1bad3;
}
/*#endregion*/

/*#region category-swiper*/
._container_1hvun_1 {
    -webkit-user-select: none;
    user-select: none;
    cursor: grab;
    display: flex;
    justify-content: center;
    max-width: 100%;
}

._swiperContainer_1i6at_1 {
    position: relative;
    width: 100%;
}

@media screen and (max-width: 768px) {
    ._swiperContainer_1i6at_1 {
        position: relative;
        padding: 0;
        margin: 0;
    }
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

    .swiper-wrapper:first-child {
        scroll-snap-align: none !important;
    }

.swiper-css-mode > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.l .swiper-css-mode > .swiper-wrapper,
.rtl.r .swiper-css-mode > .swiper-wrapper {
    overflow: hidden;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
    scroll-snap-type: none !important;
}

.swiper-slide {
    margin-right: 8px;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.swiper-wrapper .swiper-slide {
    width: fit-content;
    padding: 8px 0;
}

.l .swiper-wrapper .swiper-slide:first-child {
    padding-left: 15px;
}

.l .swiper-wrapper .swiper-slide:last-child {
    padding-right: 7px;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: none;
}

.r-header__nav__more {
    display: flex;
    align-items: center;
    position: absolute;
    padding-right: 10px;
    z-index: 1;
}

    .r-header__nav__more.js-r-header-nav-prev {
        display: flex;
        justify-content: flex-start;
        padding-left: 10px;
        left: 0;
        top: 0;
        bottom: 4px;
        width: 25px;
        height: 44px;
        margin-top: 7px;
        transition: opacity .2s;
        cursor: pointer;
    }

    .r-header__nav__more.js-r-header-nav-next {
        justify-content: flex-end;
        padding-right: 10px;
        right: 0;
        top: 0;
        bottom: 4px;
        width: 25px;
        height: 44px;
        margin-top: 7px;
        transition: opacity .2s;
        cursor: pointer;
    }

.r-header__nav__more--hidden {
    /*    opacity: 0;
    pointer-events: none;*/
}

.r-header__nav__more .styles-arrow-left {
    transform: rotate(-180deg);
}

.r-header__nav__more img {
    width: 16px;
    font-size: 16px;
    filter: invert(40%) sepia(558%) saturate(500%) hue-rotate(20deg) brightness(200%) contrast(90%);
}

.r-header__nav__more:hover img,
.r-header__nav__more:active img {
    filter: invert(40%) sepia(558%) saturate(00%) hue-rotate(20deg) brightness(200%) contrast(90%);
}

._categoryTag_kshuj_1 {
    display: flex;
    box-sizing: border-box;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 20px;
    background-color: #ffffff14;
    font-family: Tahoma, Geneva, sans-serif;
    cursor: pointer;
    text-decoration: none;
    color: #ffffff !important;
    font-size: 13px;
    letter-spacing: .2px;
    line-height: 15px;
    transition: color .2s ease-in-out,background-color .2s ease-in-out;
}

    ._categoryTag_kshuj_1:hover,
    ._categoryTag_kshuj_1.active {
        background-color: #fff9;
        color: #000 !important;
    }
/*#endregion*/

/*#region category-tab-wrapper*/
.category-tab-wrapper.svelte-ox0s96 {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 12px;
    transform: translate(0px, -47px);
}

.scrollX {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    -moz-transform: none !important;
    scrollbar-width: thin;
}

.scrollY,
.scrollX {
    scrollbar-color: var(--grey-400) transparent;
}

.tabs-wrapper.svelte-ufxuoa.svelte-ufxuoa {
    position: relative;
    display: flex;
    border-radius: 0.25rem;
    z-index: 2;
}

.l .tabs-wrapper.svelte-ufxuoa.svelte-ufxuoa,
.r .tabs-wrapper.svelte-ufxuoa.svelte-ufxuoa {
    justify-content: center;
}

._searchBG_g9ck5_118 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: .6;
    border-radius: .25rem;
    transition: opacity .5s ease-in-out;
}

.tabs-wrapper.svelte-ufxuoa .slider.svelte-ufxuoa {
    display: flex;
    padding: 5px;
    flex-shrink: 0;
    border-radius: .25rem;
}

.tabs-wrapper.svelte-ufxuoa .content-wrapper.svelte-ufxuoa {
    display: flex;
}

.link.svelte-14e5301 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    padding: 0;
    background: 0 0;
    border: none;
    font-size: inherit;
    line-height: inherit;
    cursor: pointer;
    font-weight: 600;
    touch-action: manipulation;
    position: relative;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    transition: background-color .2s,color .2s;
    flex-shrink: 0;
    border-radius: .25rem;
}

.link.align-left.svelte-14e5301 {
    justify-content: flex-start;
}

.link.size-md.svelte-14e5301 {
    font-size: .875rem;
    padding: 5px 10px;
}

.tabs-wrapper.svelte-ufxuoa .content-wrapper.svelte-ufxuoa > *:first-child {
    margin-left: 0;
}

.content-or-loader.svelte-1uofbko {
    display: inline-flex;
    position: relative;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.svg-icon-category,
.svg-icon-providers {
    pointer-events: none;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    flex-shrink: 0;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.link.variant-tabmenu.svelte-14e5301 {
    background: 0 0;
    box-shadow: 0rem .0625rem .1875rem #00000033, 0rem .0625rem .125rem #0000001f;
    box-shadow: none;
}

    .link.variant-tabmenu.svelte-14e5301:not(.icon-only) .svg-icon-category {
        height: 20px;
        width: 20px;
        transition: .2s;
    }

.AbstractCategoryHeader .svg-icon-providers {
    transition: .2s;
    color: #f4d416;
}

.link.variant-tabmenu.icon-only.active.svelte-14e5301 .svg-icon-category {
    color: #ffffff;
}

.link.variant-tabmenu.icon-only.svelte-14e5301 .svg-icon-category {
    transition: color .2s;
    color: #ffffff;
}

.link.variant-tabmenu.size-md.align-left.rounded.svelte-14e5301:before {
    content: "";
    position: absolute;
    display: block;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 5px;
    border-top-right-radius: 0.25rem;
    border-top-left-radius: 0.25rem;
    transition: width .24s,left .24s;
}

.link.variant-tabmenu.size-md.align-left.rounded.svelte-14e5301.active:before {
    left: 25%;
    width: 50%;
}

.provider-container.form-control-label {
    align-items: center;
    caret-color: hsla(0,0%,100%,.9);
    display: flex;
    height: 100%;
    justify-content: flex-end;
    position: relative;
}

.slots .provider-container i.small-arrow-down {
    background-image: url(../../Images/down-arrow.svg);
    background-position: 60%;
    background-repeat: no-repeat;
    background-size: 60%;
    cursor: pointer;
    -moz-filter: invert(40%) sepia(258%) saturate(600%) hue-rotate(346deg) brightness(200%) contrast(60%);
    -ms-filter: invert(40%) sepia(258%) saturate(600%) hue-rotate(346deg) brightness(200%) contrast(60%);
    -o-filter: invert(40%) sepia(258%) saturate(600%) hue-rotate(346deg) brightness(200%) contrast(60%);
    filter: invert(40%) sepia(258%) saturate(600%) hue-rotate(346deg) brightness(200%) contrast(60%);
    height: 24px;
    opacity: .6;
    position: absolute;
    transform: rotate(0deg);
    transition: all .24s ease;
    width: 24px;
}

.l .slots .provider-container i.small-arrow-down {
    right: 6px;
}

.rtl .slots .provider-container i.small-arrow-down {
    left: 6px;
    filter: invert(40%) sepia(258%) saturate(80%) hue-rotate(140deg) brightness(11%) contrast(60%);
}

.slots .provider-container i.small-arrow-down.active {
    display: block;
    transform: rotate(180deg);
    transition: all .24s ease;
}

.provider-container .form-control-select {
    -webkit-padding-start: 10px;
    -webkit-padding-end: 30px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: none;
    border-radius: 4px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    color: rgb(240 194 10);
    cursor: pointer;
    font-family: Tahoma, Geneva, sans-serif;
    font-size: 13px;
    height: 100%;
    outline: none;
    overflow: hidden;
    padding: 2px 10px 0;
    text-align: center;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 200px;
}

    .provider-container .form-control-select > option {
        background: #222;
        color: hsla(0,0%,100%,.9);
    }

/*#region search-wrap*/
.search-wrap.svelte-o7w8d3 {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    touch-action: pan-x;
    margin-top: 12px;
    opacity: 0;
}

    .search-wrap.svelte-o7w8d3::placeholder {
        color: red;
    }

.input-wrap.svelte-novipq.svelte-novipq {
    display: flex;
    align-items: center;
    margin: 0;
    width: calc(100% - 4px);
    border-radius: 0.25rem;
    letter-spacing: 0;
    font-weight: 600;
    transition: all .25s;
    outline: 0;
    cursor: text;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: .875rem;
    z-index: 2;
    height: 35px;
}

.search-icon.svelte-novipq.svelte-novipq {
    display: flex;
    align-items: center;
    padding-left: 10px;
    font-size: 1.25rem;
    color: rgb(61, 61, 61);
}

.l .search-icon.svelte-novipq.svelte-novipq {
    padding-left: 10px;
}

.rtl .search-icon.svelte-novipq.svelte-novipq {
    padding-right: 10px;
}

input.svelte-novipq.svelte-novipq {
    width: 100%;
    outline: 0;
    font-weight: 700;
    background: hsl(0deg 0% 100% / 0%);
    color: rgb(0 0 0);
    padding: 0.5rem;
    border: 0;
    cursor: text;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    input.svelte-novipq.svelte-novipq::placeholder {
        color: rgb(61, 61, 61);
    }

    input.svelte-novipq.svelte-novipq::-ms-input-placeholder {
        color: rgb(61, 61, 61);
    }

.cross-icon.svelte-novipq.svelte-novipq {
    display: flex;
    align-items: center;
    padding-right: 10px;
    background: 0 0;
    font-size: 1.25rem;
}

.l .cross-icon.svelte-novipq.svelte-novipq {
    padding-right: 10px;
}

.rtl .cross-icon.svelte-novipq.svelte-novipq {
    padding-left: 10px;
}

.button.variant-subtle-link.svelte-1epmied:not(.icon-only) .svg-icon-category {
    height: 14px;
    transition: .2s;
    color: rgb(61, 61, 61);
}

.button.variant-subtle-link.svelte-1epmied:not(.icon-only):hover:not(.disabled):not(.active) .svg-icon-category {
    color: #292932;
}
/*#endregion*/

/*#endregion*/

/*#region providers in pc*/
.slots .provider-container .form-control-filter {
    display: inline-flex;
    float: right;
    height: 28px;
    position: relative;
}

.slots .provider-container .market-options {
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    box-shadow: 0 0 10px 3px rgba(0,0,0,.3), inset 0 0 0 300px hsla(0,0%,100%,.05);
    display: flex;
    flex-direction: column;
    margin-top: 5px;
    max-height: 30vh;
    min-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px;
    position: absolute;
    top: 100%;
    will-change: scroll-position;
    z-index: 1;
}

.l .slots .provider-container .market-options {
    right: 0;
}

.rtl .slots .provider-container .market-options {
    left: 0;
}

.slots .provider-container .form-control-label {
    -webkit-padding-start: 15px;
    align-items: center;
    background: 0 0;
    background: hsla(0,0%,100%,.1);
    border-radius: 4px;
    color: hsla(0,0%,100%,.9);
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 700;
    position: relative;
    transition: background .24s;
    width: 140px;
    height: 100%;
    justify-content: flex-end;
    caret-color: hsla(0,0%,100%,.9);
}

.l .slots .provider-container .form-control-label {
    padding: 2px 50px 0 15px;
}

.rtl .slots .provider-container .form-control-label {
    padding: 2px 15px 0 50px;
}

.slots .provider-container .market-options label {
    -webkit-padding-start: 10px;
    -webkit-padding-end: 10px;
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    height: 30px;
    margin-top: 2px;
    min-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    position: relative;
    transition: background .24s;
    white-space: nowrap;
}

    .slots .provider-container .market-options label:first-child {
        margin-top: 0;
    }

    .slots .provider-container .market-options label.active,
    .slots .provider-container .market-options label:hover {
        background: hsla(0,0%,100%,.2);
    }

.slots .provider-container .form-control-label span {
    color: rgb(240 194 10);
}

.slots .provider-container .market-options {
    background: #9e5220;
}

    .slots .provider-container .market-options label.active,
    .slots .provider-container .market-options label:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .slots .provider-container .market-options label:first-child {
        margin-top: 0;
    }

    .slots .provider-container .market-options label p {
        font-size: 12px;
        color: #fff;
        line-height: 16px;
        flex: auto;
        user-select: none;
    }

    .slots .provider-container .market-options::-webkit-scrollbar {
        width: 4px;
        height: 6px;
    }

    .slots .provider-container .market-options::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.5);
        border-radius: 4px;
    }

    .slots .provider-container .market-options::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .slots .provider-container .market-options::selection {
        color: #ffffff;
        background: #a71f67;
    }
/*#endregion*/

.animating .slots .animate_show_search {
    animation: 250ms linear 0ms 1 normal both running __movingDown;
}

.animating .slots .animate_visible_search {
    animation: 250ms linear 0ms 1 normal both running __showing;
}

.animating .slots .animate_hide_search {
    animation: 250ms linear 0ms 1 normal both running __movingUp;
}

.animating .slots .animate_opacity_search {
    animation: 250ms linear 0ms 1 normal both running __hiding;
}

/*#region loading*/
.slots .group .loading .game .imgWrapper {
    height: 154px;
}

.slots .group .loading .game .name {
    margin-top: 0.25rem;
    width: calc(66.6667%);
    height: 16px;
    border-radius: 0.375rem;
}

[class*="skeleton-loader"] {
    -webkit-animation: shimmerKeyframes 1s linear infinite alternate;
    animation: shimmerKeyframes 1s linear infinite alternate
}

@keyframes shimmerKeyframes {
    0% {
        opacity: .2
    }

    to {
        opacity: .6
    }
}

@-webkit-keyframes an-skeleton-loader {
    0% {
        background-position: 200%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0;
    }
}

@keyframes an-skeleton-loader {
    0% {
        background-position: 200%;
    }

    50% {
        background-position: 100%;
    }

    100% {
        background-position: 0;
    }
}
/*#endregion*/

@keyframes __movingDown {
    0% {
        transform: translate(0px, -47px);
    }

    100% {
        transform: translate(0px, 0px);
    }
}

@keyframes __movingUp {
    0% {
        transform: translate(0px, 0px);
    }

    100% {
        transform: translate(0px, -47px);
    }
}

@keyframes __showing {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes __hiding {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.deposit {
    padding: 5px 0;
    background: #383838;
}

.site .deposit {
    margin: 5px 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.deposit .banner {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
    justify-content: space-between;
    padding: 0 10px;
    transition: background .24s;
}

.site .deposit .banner-deposit {
    background-color: #383838;
    border-radius: 4px;
    height: 34px;
    padding: 0 15px;
}

.deposit .banner-deposit i.wallet {
    background-image: url(../../images/deposit/dollar.svg);
}

.deposit .banner-deposit i.wallet {
    background-repeat: no-repeat;
    background-size: 100%;
    height: 20px;
    width: 20px;
}

.deposit .banner .name {
    color: #fff;
    display: flex;
    flex: auto;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    letter-spacing: .5px;
    margin-right: 10px;
    overflow: hidden;
    text-indent: 8px;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-transform: capitalize;
    white-space: nowrap;
}

.rtl .deposit .banner .name {
    margin-right: 0;
    margin-left: 10px;
}

.rtl .deposit .banner .close {
    margin-right: 10px;
    margin-left: 0;
}

.deposit .banner .close {
    -webkit-margin-start: 10px;
    background-image: url(../../images/close.svg);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 40%;
    border-radius: 4px;
    -moz-filter: invert(1);
    -ms-filter: invert(1);
    -o-filter: invert(1);
    filter: invert(1);
    height: 24px;
    line-height: 23px;
    margin-left: 10px;
    opacity: .6;
    text-align: center;
    width: 24px;
}

    .deposit .banner .close:hover {
        opacity: 1;
    }

.deposit .main-row {
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
}

.deposit .column-1 {
    flex-basis: 20%;
    max-width: 20%;
}

.deposit .column-2 {
    flex-basis: 80%;
    max-width: 80%;
}

.deposit .column-3 {
    flex-basis: 66.6666667%;
    max-width: 66.6666667%;
}

.deposit .column-4 {
    flex-basis: 33.3333333%;
    max-width: 33.3333333%;
}

.deposit .column-5 {
    flex-basis: 100%;
    max-width: 100%;
}

.deposit .column-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    max-width: 100%;
}

.deposit .module-container {
    align-items: center;
    background: hsla(0,0%,100%,.1);
    border-radius: 8px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    margin: 0 5px 5px 10px;
}

.rtl .deposit .module-container {
    margin: 0 10px 5px 5px;
}

.deposit .module-container:first-of-type {
    margin-top: 5px;
}

.deposit .column-container h3.title {
    font-size: 16px;
    letter-spacing: .3px;
    padding-left: 20px;
    text-transform: capitalize;
    width: 100%;
}

.deposit .payment-icon-info img {
    width: 100%;
}

.rtl .deposit .column-container h3.title {
    padding-left: unset;
    padding-right: 20px;
}

.rtl .deposit .column-container img.play {
    transform: rotate(180deg);
}

.deposit .column-container .module-content-full {
    background: linear-gradient(180deg, #282828, #383838);
    border-radius: 8px;
    height: 440px;
    margin: 5px 10px 5px 0;
}

.rtl .deposit .column-container .module-content-full {
    margin: 5px 0 5px 10px;
}

.deposit .module-content-container {
    background: unset;
    border-radius: 8px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 100%;
    margin: 5px;
}

.deposit .bg-image {
    background-image: url(../../images/deposit/payment-methods.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.deposit .payment-info {
    padding: 20px 100px 20px 20px;
}

.rtl .deposit .payment-info {
    padding: 20px 20px 20px 100px;
}

.deposit .payment-info .t-info {
    background: linear-gradient(45deg,transparent,hsla(0,0%,100%,.2));
    color: hsla(0,0%,100%,.7);
    display: flex;
    justify-content: center;
}

.rtl .deposit .payment-info .t-info {
    background: linear-gradient(-45deg,transparent,hsla(0,0%,100%,.2));
}

.deposit .payment-info .t-info div {
    box-shadow: inset 0 -2px 0 0 hsla(0,0%,100%,.05);
    color: hsla(0,0%,100%,.8);
    font-size: 13px;
    line-height: 30px;
    min-width: 100px;
    padding: 0 10px;
    position: relative;
    text-align: center;
}

.deposit .payment-info .t-info:last-of-type div {
    box-shadow: none;
}

.deposit .number-options {
    grid-gap: 2px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

    .deposit .number-options .number-button {
        border: 1px solid transparent;
        border-radius: 4px;
        cursor: pointer;
        height: 36px;
        line-height: 35px;
        position: relative;
        text-align: center;
        transition-duration: .24s;
        transition-property: color,background-color;
    }

.deposit .input-container {
    align-items: center;
    background: linear-gradient(94deg,transparent,hsla(0,0%,100%,.13));
    border-radius: 4px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex: 0 1 auto;
    flex-direction: row;
    flex-wrap: wrap;
    height: 40px;
    margin: 5px 0;
}

.mobile .deposit .input-container {
    font-size: 12px;
}

.deposit .space-between {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.deposit span.label {
    padding-right: 20px;
}

.rtl .deposit span.label {
    padding-right: 0;
    padding-left: 20px;
}

.deposit .input {
    background: hsla(0,0%,100%,.1);
    border: 1px solid hsla(0,0%,100%,.2);
    border-radius: 4px;
    color: hsla(0,0%,100%,.8);
    height: 25px;
    margin: 0 2px;
    width: 100%;
}

.deposit .input {
    padding: 1px 5px 1px 0;
}

.rtl .deposit .input {
    padding: 1px 0 1px 5px;
}

.deposit .submit {
    border-radius: 4px;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 29px;
    line-height: 29px;
    margin: 0 4px;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    width: 100%;
}

.deposit input[type=checkbox] + label:before {
    content: unset;
}

/*#region mobile*/
.mobile .deposit {
    position: relative !important;
    padding: 10px 0;
    color: #5b5b5bb3;
    background: linear-gradient(146deg,#000000,#383838);
    background-color: #383838;
    background-position: top center,top center !important;
    background-repeat: no-repeat,no-repeat !important;
    overflow: hidden !important;
}

    .mobile .deposit .banner-deposit {
        background-color: #333;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        height: 40px;
        margin: 0 10px;
        padding: 0 15px;
    }

.mobile .banner .name {
    font-size: 14px;
}

.mobile .deposit .main-mobile-row {
    margin: 5px 10px;
}

.mobile .deposit .payment-info {
    padding: 10px 0 20px 20px;
}

.rtl.mobile .deposit .payment-info {
    padding: 10px 20px 20px 0;
}

.banking .questions {
    display: none;
}

.banking .plus {
    font-size: 20px;
    position: absolute;
    transition: .3s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    z-index: 1;
}

.banking .question .col {
    float: left;
    line-height: 30px;
}

    .banking .question .col.col20 {
        width: 20%;
    }

.mobile .deposit .plus {
    right: 20px;
    font-weight: 600;
    background: unset;
}

.rtl.mobile .deposit .plus {
    right: unset;
    left: 20px !important;
}

.banking .question {
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-size: 14px;
    padding: 10px 10px 10px 40px;
    position: relative;
    width: 100%;
}

.banking .questions:checked + .question .plus {
    transform: rotate(45deg);
}

.mobile .banking .question {
    margin: 0;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 42px;
    line-height: 42px;
    background: transparent;
    border: 1px solid hsla(0,0%,100%,.6);
}

    .mobile .banking .question .provider-name {
        color: #fff;
        text-transform: capitalize;
    }

.banking .answers {
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    height: 0;
    margin: 5px 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 15px;
    position: relative;
    transition: .3s ease;
    width: 100% !important;
    z-index: -1;
}

.banking .questions:checked ~ .answers {
    height: auto;
    opacity: 1;
    padding: 5px 10px;
    z-index: 0;
}

.mobile .deposit .payment-info .t-info div {
    box-shadow: none;
}

.mobile .deposit .betslip {
    position: static;
}

.mobile .deposit .number-buttons {
    grid-gap: 2px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

    .mobile .deposit .number-buttons .number-button {
        border: 1px solid transparent;
        border-radius: 4px;
        cursor: pointer;
        height: 36px;
        line-height: 35px;
        position: relative;
        text-align: center;
        transition-duration: .24s;
        transition-property: color,background-color;
        -webkit-user-select: none;
        -moz-user-select: none;
        -o-user-select: none;
        user-select: none;
    }
/*#endregion*/

.text-align {
    text-align: right;
}

.rtl .text-align {
    text-align: left;
}

.loader-half {
    border-top: 0.2em solid currentcolor;
    border-right: 0.2em solid transparent;
    -webkit-animation: loader-half 1s linear infinite;
    -moz-animation: loader-half 1s linear infinite;
    -ms-animation: loader-half 1s linear infinite;
    -o-animation: loader-half 1s linear infinite;
    animation: loader-half 1s linear infinite;
    border-radius: 100%;
    position: relative;
}

[class*="loader-half"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    color: inherit;
    vertical-align: middle;
    pointer-events: none;
}

@keyframes loader-half {
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.modal-bonus .modal-footer {
    padding: 0;
    border-top: none;
    text-align: center;
}

.modal-bonus .modal-header {
    padding: 0;
    border-bottom: none;
}

.modal-bonus .modal-body {
    position: static;
    display: flex;
    padding: 0;
    min-height: 350px;
    align-items: center;
    justify-content: center;
}

    .modal-bonus .modal-body .wrap {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.modal-bonus .info {
    height: 12px;
    line-height: 12px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    background: #00beff -webkit-radial-gradient( circle, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) ) no-repeat -9px -9px;
    -webkit-background-clip: text;
    -webkit-background-size: 30px;
    color: rgba(255, 255, 255, 0.1);
    user-select: none;
    -webkit-animation: mirror 3s linear infinite;
    -moz-animation: mirror 3s linear infinite;
    -o-animation: mirror 3s linear infinite;
    animation: mirror 3s linear infinite;
}

.modal-bonus .wheel {
    margin-bottom: 60px;
    user-select: none;
    z-index: 1;
}

.modal-bonus .modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
}

.modal-bonus .modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modal-bonus .modal-container {
    position: relative;
    width: 300px;
    margin: 0px auto;
    padding: 15px 20px 20px 20px;
    background-color: #000000;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
    box-shadow: 0 0 20px rgb(255 235 59);
    -webkit-animation: box-shadow 2s infinite;
    -moz-animation: box-shadow 2s infinite;
    -o-animation: box-shadow 2s infinite;
    animation: box-shadow 2s infinite;
}

.mobile .modal-bonus .modal-container {
    font-size: 12px;
}

.modal-bonus .modal-header h3 {
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 30px;
    font-weight: normal;
    color: #f6a201;
    user-select: none;
}

.modal-bonus .btn-close {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 700;
    padding: 0.25em;
    width: 60px;
    height: 18px;
    line-height: 18px;
    box-sizing: content-box;
    border: 0;
    border-radius: 0.25rem;
    color: #000000db;
    background: #FFDF00 -webkit-radial-gradient(circle, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) ) no-repeat -9px -9px;
    filter: drop-shadow(0 0 15px #FFDF00);
    user-select: none;
    z-index: 4;
    cursor: pointer;
}

.modal-bonus .bonus-text {
    font-size: 30px;
    text-shadow: 1px 0 #000, -1px 0 #000, 0 1px #000, 0 -1px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
}

.modal-bonus .light:nth-of-type(odd) {
    -webkit-animation: glowing 1s infinite !important;
    -moz-animation: glowing 1s infinite !important;
    -o-animation: glowing 1s infinite !important;
    animation: glowing 1s infinite !important;
}

.modal-bonus .light:nth-of-type(even) {
    -webkit-animation: glowing-even 1s infinite !important;
    -moz-animation: glowing-even 1s infinite !important;
    -o-animation: glowing-even 1s infinite !important;
    animation: glowing-even 1s infinite !important;
}

.modal-bonus .shadow {
    -webkit-filter: drop-shadow(0px 3px 4px rgb(230, 97, 9));
    filter: drop-shadow(0px 3px 4px rgb(230, 97, 9));
}

.modal-bonus .image-shine {
    -webkit-animation: shine 1s infinite !important;
    -moz-animation: shine 1s infinite !important;
    -o-animation: shine 1s infinite !important;
    animation: shine 1s infinite !important;
}

.modal-bonus .coins {
    position: relative;
    z-index: 2;
}

.modal-bonus .treasure {
    position: absolute;
    top: 31px;
    left: -310px;
    width: 324px;
    height: 177px;
    background-image: url(/Images/wheel/treasure.svg);
    background-repeat: no-repeat;
}

.modal-bonus .container-background {
    position: absolute;
    top: -46px;
    width: 340px;
    height: 476.43px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 5px;
}

.modal-bonus .won-background {
    position: absolute;
    left: -155px;
    top: -86.25px;
    right: 0;
    bottom: 0;
    width: 650px;
    height: 650px;
    background-image: url(/Images/wheel/sun.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 650px 650px;
}

.modal-bonus .rotating {
    -webkit-animation: rotating 4s linear infinite;
    -moz-animation: rotating 4s linear infinite;
    -o-animation: rotating 4s linear infinite;
    animation: rotating 4s linear infinite;
}

.modal-bonus .cont {
    position: absolute;
    top: -46px;
    width: 338px;
    height: 476px;
    box-sizing: border-box;
    overflow: hidden;
}

    .modal-bonus .cont .won-container,
    .modal-bonus .cont .game-over-container {
        position: absolute;
        width: 340px;
        height: 480px;
        background-color: #00000045;
        transition: opacity 0.3s ease;
        border-radius: 5px;
        z-index: 3;
    }

        .modal-bonus .cont .won-container .message,
        .modal-bonus .cont .game-over-container .message {
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
        }

        .modal-bonus .cont .won-container .banner,
        .modal-bonus .cont .game-over-container .banner {
            position: relative;
            top: 160px;
            margin: 0 60px;
            padding: 14px 12px;
            font-size: 24px;
            text-align: center;
            font-weight: 700;
            color: #FFD600;
            border-radius: 0.6em;
            outline: 0;
            background-color: #0000005e;
            transition: all 150ms ease-in-out;
            user-select: none;
        }

        .modal-bonus .cont .won-container .banner {
            box-shadow: 0px 0px 0px 2px rgb(247 206 57), 0px 0px 5px 10px rgb(0 0 0), inset 0px 0px 8px 4px rgb(0 0 0), 0px 0px 98px 8px rgb(0 0 0), inset 0px 0px 50px 15px rgb(0 0 0);
        }

        .modal-bonus .cont .game-over-container .banner {
            box-shadow: 0px 0px 0px 2px rgb(247 206 57), 0px 0px 5px 10px rgb(0 0 0), inset 0px 0px 8px 4px rgb(0 0 0), 0px 0px 98px 8px rgb(0 0 0), inset 0px 0px 50px 15px rgb(0 0 0);
        }

        .modal-bonus .cont .won-container .text {
            font-size: 30px;
            color: #FFD600;
            -webkit-animation: ani 1s;
            -moz-animation: ani 1s;
            -o-animation: ani 1s;
            animation: ani 1s;
        }

        .modal-bonus .cont .won-container .prize {
            margin-top: 5px;
            font-size: 24px;
            color: #fff;
            font-family: Iceland;
            -webkit-animation: neon 1.5s ease-in-out infinite alternate;
            -moz-animation: neon 1.5s ease-in-out infinite alternate;
            -o-animation: neon 1.5s ease-in-out infinite alternate;
            animation: neon 1.5s ease-in-out infinite alternate;
        }

        .modal-bonus .cont .game-over-container .text {
            -webkit-animation: game-over 1s infinite;
            -moz-animation: game-over infinite;
            -o-animation: game-over 1s infinite;
            animation: game-over 1s infinite;
        }

.modal-mask {
    opacity: 1;
    transition: all .5s linear;
}

.is-visible {
    display: block;
}

.is-open {
    opacity: 0;
}

/*#region box-shadow */
@-webkit-keyframes box-shadow {
    50% {
        box-shadow: 0px 0 40px rgb(255 235 59);
    }
}

@-moz-keyframes box-shadow {
    50% {
        box-shadow: 0px 0 40px rgb(255 235 59);
    }
}

@-o-keyframes box-shadow {
    50% {
        box-shadow: 0px 0 40px rgb(255 235 59);
    }
}

@keyframes box-shadow {
    50% {
        box-shadow: 0px 0 40px rgb(255 235 59);
    }
}
/*#endregion */

/*#region glowing */
@-webkit-keyframes glowing {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@-moz-keyframes glowing {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@-o-keyframes glowing {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@keyframes glowing {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: #31cafd;
        -webkit-box-shadow: 0 0 40px #31cafd !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}
/*#endregion */

/*#region glowing-even */
@-webkit-keyframes glowing-even {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@-moz-keyframes glowing-even {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@-o-keyframes glowing-even {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}

@keyframes glowing-even {
    0% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        background-color: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        background-color: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    0% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }

    50% {
        fill: yellow;
        -webkit-box-shadow: 0 0 40px yellow !important;
    }

    100% {
        fill: #ffffff;
        -webkit-box-shadow: 0 0 3px #ffffff !important;
    }
}
/*#endregion */

/*#region mirror */
@-webkit-keyframes mirror {
    from {
        background-position: -28px -9px;
    }

    to {
        background-position: 300px -9px;
    }
}

@-moz-keyframes mirror {
    from {
        background-position: -28px -9px;
    }

    to {
        background-position: 300px -9px;
    }
}

@-o-keyframes mirror {
    from {
        background-position: -28px -9px;
    }

    to {
        background-position: 300px -9px;
    }
}

@keyframes mirror {
    from {
        background-position: -28px -9px;
    }

    to {
        background-position: 300px -9px;
    }
}
/*#endregion*/

/*#region rotating */
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-moz-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@-o-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}
/*#endregion*/

/*#region shine */
@-webkit-keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shine {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}
/*#endregion*/

/*#region ani */
@-webkit-keyframes ani {
    from {
        letter-spacing: 5px;
        filter: blur(5px);
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        filter: blur(0);
        opacity: 1;
    }
}

@-moz-keyframes ani {
    from {
        letter-spacing: 5px;
        filter: blur(5px);
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        filter: blur(0);
        opacity: 1;
    }
}

@-o-keyframes ani {
    from {
        letter-spacing: 5px;
        filter: blur(5px);
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes ani {
    from {
        letter-spacing: 5px;
        filter: blur(5px);
        opacity: 0;
    }

    to {
        letter-spacing: 0;
        filter: blur(0);
        opacity: 1;
    }
}
/*#endregion*/

/*#region neon */
@-webkit-keyframes neon {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228dff, 0 0 70px #228dff, 0 0 80px #228dff, 0 0 100px #228dff, 0 0 150px #228dff;
    }

    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228dff, 0 0 35px #228dff, 0 0 40px #228dff, 0 0 50px #228dff, 0 0 75px #228dff;
    }
}

@-moz-keyframes neon {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228dff, 0 0 70px #228dff, 0 0 80px #228dff, 0 0 100px #228dff, 0 0 150px #228dff;
    }

    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228dff, 0 0 35px #228dff, 0 0 40px #228dff, 0 0 50px #228dff, 0 0 75px #228dff;
    }
}

@-o-keyframes neon {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228dff, 0 0 70px #228dff, 0 0 80px #228dff, 0 0 100px #228dff, 0 0 150px #228dff;
    }

    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228dff, 0 0 35px #228dff, 0 0 40px #228dff, 0 0 50px #228dff, 0 0 75px #228dff;
    }
}

@keyframes neon {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #228dff, 0 0 70px #228dff, 0 0 80px #228dff, 0 0 100px #228dff, 0 0 150px #228dff;
    }

    100% {
        text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #228dff, 0 0 35px #228dff, 0 0 40px #228dff, 0 0 50px #228dff, 0 0 75px #228dff;
    }
}
/*#endregion*/

/*#region game-over */
@-webkit-keyframes game-over {
    0% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b
    }

    25% {
        color: #217c9b;
        text-shadow: 2px 2px 2px #31cafd;
        transform: translate(-2px,1px)
    }

    40% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    50% {
        color: #217c9b;
        text-shadow: 5px 5px 2px blue, -5px -5px 2px red;
        transform: translate(0px,5px)
    }

    70% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    80% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b;
        transform: translate(-2px,1px)
    }

    100% {
        color: #31cafd;
        text-shadow: none;
    }
}

@-moz-keyframes game-over {
    0% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b
    }

    25% {
        color: #217c9b;
        text-shadow: 2px 2px 2px #31cafd;
        transform: translate(-2px,1px)
    }

    40% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    50% {
        color: #217c9b;
        text-shadow: 5px 5px 2px blue, -5px -5px 2px red;
        transform: translate(0px,5px)
    }

    70% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    80% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b;
        transform: translate(-2px,1px)
    }

    100% {
        color: #31cafd;
        text-shadow: none;
    }
}

@-o-keyframes game-over {
    0% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b
    }

    25% {
        color: #217c9b;
        text-shadow: 2px 2px 2px #31cafd;
        transform: translate(-2px,1px)
    }

    40% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    50% {
        color: #217c9b;
        text-shadow: 5px 5px 2px blue, -5px -5px 2px red;
        transform: translate(0px,5px)
    }

    70% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    80% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b;
        transform: translate(-2px,1px)
    }

    100% {
        color: #31cafd;
        text-shadow: none;
    }
}

@keyframes game-over {
    0% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b
    }

    25% {
        color: #217c9b;
        text-shadow: 2px 2px 2px #31cafd;
        transform: translate(-2px,1px)
    }

    40% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    50% {
        color: #217c9b;
        text-shadow: 5px 5px 2px blue, -5px -5px 2px red;
        transform: translate(0px,5px)
    }

    70% {
        color: #31cafd;
        text-shadow: none;
        transform: translate(0,0)
    }

    80% {
        color: #31cafd;
        text-shadow: 0 0 20px #217c9b;
        transform: translate(-2px,1px)
    }

    100% {
        color: #31cafd;
        text-shadow: none;
    }
}
/*#endregion*/

.lc .tab-bar-container {
    display: flex;
    white-space: nowrap;
}

    .lc .tab-bar-container .tab-bar-item span {
        display: flex;
        align-items: center;
        position: relative;
        padding: 5px 4px;
        font-size: 1.125em;
    }

        .lc .tab-bar-container .tab-bar-item span:after {
            content: "";
            display: block;
            width: 0;
            height: 2px;
            position: absolute;
            bottom: 0;
            left: 50%;
            transition: width .48s,left .48s;
        }

    .lc .tab-bar-container .tab-bar-item.active span:after {
        left: 0;
        width: 100%;
    }

    .lc .tab-bar-container .tab-bar-item i {
        display: block;
        height: 15px;
        width: 18px;
        background-position: 0;
        background-repeat: no-repeat;
        background-size: 18px;
        cursor: pointer;
    }

.live_scout {
    background-image: url(/Images/livestream/livescout.svg);
}

.live_stream {
    background-image: url(/Images/livestream/livestream.svg);
}

.lc .header {
    display: flex;
}

    .lc .header .lcControl {
        display: flex;
        flex-shrink: 0;
    }

.lc .expansion-panel-divider {
    margin-top: 6px;
    width: 1px;
    height: 15px;
}

.lc .header .lcControl .lcIcon {
    display: block;
    margin-top: 6.3px;
    cursor: pointer;
}

    .lc .header .lcControl .lcIcon span {
        background-image: url(/Images/livestream/arrow-down.svg);
        background-position: 0;
        background-repeat: no-repeat;
        background-size: 14px;
        cursor: pointer;
        display: block;
        height: 14px;
        width: 14px;
        filter: invert(.3);
        transition: all .24s ease;
    }

.lc img.hidden {
    display: block;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}

#stream {
    position: relative;
    background: #000000;
}

    #stream iframe {
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
    }

.mobile #stream {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/*#region messages*/
.video-stream-messages {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    width: 100%;
    height: 100%;
}

    .video-stream-messages .video-alert-message {
        margin: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        color: #fff;
    }

        .video-stream-messages .video-alert-message p {
            font-size: 11px;
            text-align: center;
        }
/*#endregion*/

/*#region video-loading-spinner*/
#stream .video-stream-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    width: 100%;
    height: 151.19px;
}

    #stream .video-stream-loading .video-loading-container {
        margin: 0px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: absolute;
    }

#stream .vjs-loading-spinner {
    transform: none;
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: 0.85;
    text-align: left;
    border: 6px solid rgba(43, 51, 63, 0.7);
    box-sizing: border-box;
    background-clip: padding-box;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    visibility: hidden;
}

#stream .vjs-loading-spinner {
    display: block;
    -webkit-animation: vjs-spinner-show 0s linear 0.3s forwards;
    animation: vjs-spinner-show 0s linear 0.3s forwards;
}

    #stream .vjs-loading-spinner:before {
        border-top-color: white;
    }

    #stream .vjs-loading-spinner:before,
    #stream .vjs-loading-spinner:after {
        -webkit-animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
        animation: vjs-spinner-spin 1.1s cubic-bezier(0.6, 0.2, 0, 0.8) infinite, vjs-spinner-fade 1.1s linear infinite;
    }

    #stream .vjs-loading-spinner:before,
    #stream .vjs-loading-spinner:after {
        content: "";
        position: absolute;
        margin: -6px;
        box-sizing: inherit;
        width: inherit;
        height: inherit;
        border-radius: inherit;
        opacity: 1;
        border: inherit;
        border-color: transparent;
        border-top-color: white;
    }

    #stream .vjs-loading-spinner:after {
        border-top-color: white;
        -webkit-animation-delay: 0.44s;
        animation-delay: 0.44s;
    }

.vjs-control-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

@keyframes vjs-spinner-show {
    100% {
        visibility: visible;
    }
}

@keyframes vjs-spinner-spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes vjs-spinner-fade {
    0% {
        border-top-color: #73859f;
    }

    20% {
        border-top-color: #73859f;
    }

    35% {
        border-top-color: white;
    }

    60% {
        border-top-color: #73859f;
    }

    100% {
        border-top-color: #73859f;
    }
}
/*#endregion*/

.grid-mobile-media {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    height: 13px;
}

.rtl .grid-mobile-media {
    margin-left: 0;
    margin-right: 5px;
}

.grid-mobile-media span i {
    display: block;
    width: 18px;
    height: 15px;
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 18px;
    cursor: pointer;
}

.rtl .live_stream {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

#video-container video {
    width: 100% !important;
    height: 100% !important
}

#video-container .video-js {
    width: 100% !important;
}

video::-webkit-media-controls-timeline {
    display: none !important;
}

video::-webkit-media-controls-current-time-display {
    display: none !important;
}

video::-webkit-media-controls-time-remaining-display {
    display: none !important;
}

.casino #content {
    margin-top: 0;
}

.casino .wrap {
    text-align: center;
    flex-wrap: nowrap;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .casino .wrap::-webkit-scrollbar {
        display: none;
    }

    .casino .wrap ul {
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
        flex-flow: row nowrap;
        text-align: center;
        box-sizing: border-box;
    }

        .casino .wrap ul li {
            float: none;
            flex: 0 1 auto;
            flex-grow: 1;
            flex-basis: 25%;
            list-style: none;
            padding: 5px 10px;
            color: #f7f7f7;
            background: #333333;
            border-left: 1px solid #000;
            border-bottom: 1px solid #000;
            box-sizing: border-box;
            cursor: pointer;
        }

            .casino .wrap ul li.active {
                color: #fdd100;
            }

            .casino .wrap ul li span {
                height: 100%;
                font-size: 12px;
                text-transform: uppercase;
                display: flex;
                align-items: center;
                justify-content: center;
                white-space: nowrap;
            }

            .casino .wrap ul li .search-content {
                position: relative;
                display: flex;
                padding: 2px;
                background-color: #ffffff;
            }

            .casino .wrap ul li img {
                height: 18px;
                width: 18px;
            }

            .casino .wrap ul li input {
                width: 120px;
                padding: 0 5px 0 5px;
                border: 0;
            }

                .casino .wrap ul li input:focus {
                    border: 0;
                    outline: 0;
                }

.casino .activeGame {
    position: fixed;
    inset: 0px;
}

    .casino .activeGame > iframe {
        position: fixed;
        inset: 0px;
        height: 100vh;
        width: 100%;
    }

    .casino .activeGame,
    .casino .activeGame > iframe {
        margin: 0 auto;
        z-index: 4;
    }

.casino .closeGame {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    color: #ffff01;
    z-index: 4;
    cursor: pointer;
}

.casino .fScreen {
    position: absolute;
    bottom: 10px;
    left: 15px;
    width: 30px;
    height: 30px;
    color: #ffff01;
    z-index: 4;
    cursor: pointer;
}

    .casino .fScreen:hover,
    .casino .closeGame:hover {
        font-weight: bold;
    }

.keno .activeGame,
.keno .activeGame > iframe {
    margin: 0 auto;
    z-index: 20;
}

.keno .closeGame {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 35px;
    color: #ffff01;
    z-index: 30;
    cursor: pointer;
}

    .keno .fScreen:hover,
    .keno .closeGame:hover {
        font-weight: bold;
    }

.keno .fScreen {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 35px;
    color: #ffff01;
    z-index: 30;
    cursor: pointer;
}

.login_link {
    display: inline-block;
    font-size: 13px;
    line-height: 16px;
    width: 139px;
    cursor: pointer;
}

    .login_link:nth-child(odd) {
        width: 50%;
        text-align: left;
    }

    .login_link:nth-child(even) {
        float: right;
        width: 50%;
        text-align: right;
    }

.slots .searchBox input {
    float: right;
    border: 0;
    padding: 0;
    width: calc(100% - 32px);
    line-height: 30px;
    text-indent: 10px;
    outline: none;
    font-weight: 700;
}

@media (min-width: 1025px) {
    .form2 {
        width: 20%;
    }

    .login_link a:hover {
        text-decoration: underline;
    }
}

@media (min-width: 950px) {
    .login_title {
        font-size: 14px;
    }

    .login_input .login_user,
    .login_input .login_password {
        font-size: 12px;
        height: 38px;
    }

    .loginGO {
        font-size: 13px;
    }

    .container_links {
        padding: 18px 0;
    }

    .login_link {
        font-size: 12px;
        line-height: 19px;
        width: 190px;
    }
}

/* ==========================================================================
   $BASE-PICKER
   ========================================================================== */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
.picker {
  font-size: 16px;
  text-align: left;
  line-height: 1.2;
  color: #000000;
  position: absolute;
  z-index: 10000;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/**
 * The picker input element.
 */
.picker__input {
    max-width: 100%;
    text-align: center;
    border: 1px solid black;
  cursor: default;
}
/**
 * When the picker is opened, the input element is “activated”.
 */
.picker__input.picker__input--active {
  border-color: #0089ec;
}
/**
 * The holder is the only “scrollable” top-level container element.
 */
.picker__holder {
  width: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/*!
 * Default mobile-first, responsive styling for pickadate.js
 * Demo: http://amsul.github.io/pickadate.js
 */
/**
 * Note: the root picker element should *NOT* be styled more than what’s here.
 */
/**
 * Make the holder and frame fullscreen.
 */
.picker__holder,
.picker__frame {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
/**
 * The holder should overlay the entire screen.
 */
.picker__holder {
  position: fixed;
  transition: background 0.15s ease-out, -webkit-transform 0s 0.15s;
  transition: background 0.15s ease-out, transform 0s 0.15s;
  -webkit-backface-visibility: hidden;
}
/**
 * The frame that bounds the box contents of the picker.
 */
.picker__frame {
  position: absolute;
  margin: 0 auto;
  min-width: 256px;
  max-width: 666px;
  width: 100%;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  opacity: 0;
  transition: all 0.15s ease-out;
}
@media (min-height: 33.875em) {
  .picker__frame {
    overflow: visible;
    top: auto;
    bottom: -100%;
    max-height: 80%;
  }
}
@media (min-height: 40.125em) {
  .picker__frame {
    margin-bottom: 7.5%;
  }
}
/**
 * The wrapper sets the stage to vertically align the box contents.
 */
.picker__wrap {
  display: table;
  width: 100%;
  height: 100%;
}
@media (min-height: 33.875em) {
  .picker__wrap {
    display: block;
  }
}
/**
 * The box contains all the picker contents.
 */
.picker__box {
  background: #ffffff;
  display: table-cell;
  vertical-align: middle;
}
@media (min-height: 26.5em) {
  .picker__box {
    font-size: 1.25em;
  }
}
@media (min-height: 33.875em) {
  .picker__box {
    display: block;
    font-size: 1.33em;
    border: 1px solid #777777;
    border-top-color: #898989;
    border-bottom-width: 0;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 12px 36px 16px rgba(0, 0, 0, 0.24);
  }
}
@media (min-height: 40.125em) {
  .picker__box {
    font-size: 1.5em;
    border-bottom-width: 1px;
    border-radius: 5px;
  }
}
/**
 * When the picker opens...
 */
.picker--opened .picker__holder {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  background: transparent;
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#1E000000,endColorstr=#1E000000)";
  zoom: 1;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.15s ease-out;
}
.picker--opened .picker__frame {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
@media (min-height: 33.875em) {
  .picker--opened .picker__frame {
    top: auto;
    bottom: 0;
  }
}

/* ==========================================================================
   $BASE-DATE-PICKER
   ========================================================================== */
/**
 * The picker box.
 */
.picker__box {
  padding: 0 1em;
}
/**
 * The header containing the month and year stuff.
 */
.picker__header {
  text-align: center;
  position: relative;
  margin-top: .75em;
}
/**
 * The month and year labels.
 */
.picker__month,
.picker__year {
  font-weight: 500;
  display: inline-block;
  margin-left: .25em;
  margin-right: .25em;
}
.picker__year {
  color: #999999;
  font-size: .8em;
  font-style: italic;
}
/**
 * The month and year selectors.
 */
.picker__select--month,
.picker__select--year {
  border: 1px solid #b7b7b7;
  height: 2em;
  padding: .5em;
  margin-left: .25em;
  margin-right: .25em;
}
@media (min-width: 24.5em) {
  .picker__select--month,
  .picker__select--year {
    margin-top: -0.5em;
  }
}
.picker__select--month {
  width: 35%;
}
.picker__select--year {
  width: 22.5%;
}
.picker__select--month:focus,
.picker__select--year:focus {
  border-color: #0089ec;
}
/**
 * The month navigation buttons.
 */
.picker__nav--prev,
.picker__nav--next {
  position: absolute;
  padding: .5em 1.25em;
  width: 1em;
  height: 1em;
  box-sizing: content-box;
  top: -0.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev,
  .picker__nav--next {
    top: -0.33em;
  }
}
.picker__nav--prev {
  left: -1em;
  padding-right: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--prev {
    padding-right: 1.5em;
  }
}
.picker__nav--next {
  right: -1em;
  padding-left: 1.25em;
}
@media (min-width: 24.5em) {
  .picker__nav--next {
    padding-left: 1.5em;
  }
}
.picker__nav--prev:before,
.picker__nav--next:before {
  content: " ";
  border-top: .5em solid transparent;
  border-bottom: .5em solid transparent;
  border-right: 0.75em solid #000000;
  width: 0;
  height: 0;
  display: block;
  margin: 0 auto;
}
.picker__nav--next:before {
  border-right: 0;
  border-left: 0.75em solid #000000;
}
.picker__nav--prev:hover,
.picker__nav--next:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__nav--disabled,
.picker__nav--disabled:hover,
.picker__nav--disabled:before,
.picker__nav--disabled:before:hover {
  cursor: default;
  background: none;
  border-right-color: #f5f5f5;
  border-left-color: #f5f5f5;
}
/**
 * The calendar table of dates
 */
.picker__table {
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  font-size: inherit;
  width: 100%;
  margin-top: .75em;
  margin-bottom: .5em;
}
@media (min-height: 33.875em) {
  .picker__table {
    margin-bottom: .75em;
  }
}
.picker__table td {
  margin: 0;
  padding: 0;
}
/**
 * The weekday labels
 */
.picker__weekday {
  width: 14.285714286%;
  font-size: .75em;
  padding-bottom: .25em;
  color: #999999;
  font-weight: 500;
  /* Increase the spacing a tad */
}
@media (min-height: 33.875em) {
  .picker__weekday {
    padding-bottom: .5em;
  }
}
/**
 * The days on the calendar
 */
.picker__day {
  padding: .3125em 0;
  font-weight: 200;
  border: 1px solid transparent;
}
.picker__day--today {
  position: relative;
}
.picker__day--today:before {
  content: " ";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 0;
  height: 0;
  border-top: 0.5em solid #0059bc;
  border-left: .5em solid transparent;
}
.picker__day--disabled:before {
  border-top-color: #aaaaaa;
}
.picker__day--outfocus {
  color: #dddddd;
}
.picker__day--infocus:hover,
.picker__day--outfocus:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--highlighted {
  border-color: #0089ec;
}
.picker__day--highlighted:hover,
.picker--focused .picker__day--highlighted {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
}
.picker__day--selected,
.picker__day--selected:hover,
.picker--focused .picker__day--selected {
  background: #0089ec;
  color: #ffffff;
}
.picker__day--disabled,
.picker__day--disabled:hover,
.picker--focused .picker__day--disabled {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__day--highlighted.picker__day--disabled,
.picker__day--highlighted.picker__day--disabled:hover {
  background: #bbbbbb;
}
/**
 * The footer containing the "today", "clear", and "close" buttons.
 */
.picker__footer {
  text-align: center;
}

.picker__button--clear {
display: none;    
}

.picker__button--today,
.picker__button--close {
  border: 1px solid #ffffff;
  background: #ffffff;
  font-size: .8em;
  padding: .66em 0;
  font-weight: bold;
  width: 33%;
  display: inline-block;
  vertical-align: bottom;
}
.picker__button--today:hover,
.picker__button--close:hover {
  cursor: pointer;
  color: #000000;
  background: #b1dcfb;
  border-bottom-color: #b1dcfb;
}
.picker__button--today:focus,
.picker__button--close:focus {
  background: #b1dcfb;
  border-color: #0089ec;
  outline: none;
}
.picker__button--today:before,
.picker__button--close:before {
  position: relative;
  display: inline-block;
  height: 0;
}
.picker__button--today:before {
  content: " ";
  margin-right: .45em;
}
.picker__button--today:before {
  top: -0.05em;
  width: 0;
  border-top: 0.66em solid #0059bc;
  border-left: .66em solid transparent;
}
.picker__button--close:before {
  content: "\D7";
  top: -0.1em;
  vertical-align: top;
  font-size: 1.1em;
  margin-right: .35em;
  color: #777777;
}
.picker__button--today[disabled],
.picker__button--today[disabled]:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #dddddd;
  cursor: default;
}
.picker__button--today[disabled]:before {
  border-top-color: #aaaaaa;
}

/* ==========================================================================
   $DEFAULT-DATE-PICKER
   ========================================================================== */

.alert-area {
    display: none;
    max-height: 100%;
    position: fixed;
    top: 10px;
    left: 20px;
    right: 20px;
    z-index: 10000;
}

    .alert-area.show {
        display: block;
    }

    .alert-area.show {
        visibility: visible;
        -webkit-animation: fadein 0.5s;
        -moz-animation: fadein 0.5s;
        -o-animation: fadein 0.5s;
        animation: fadein 0.5s;
    }

.alert-box {
    font-size: 16px;
    color: #2B3E44;
    background: #EFF3F5;
    line-height: 1.3em;
    padding: 10px 15px;
    margin: 5px 10px;
    position: relative;
    border-radius: 5px;
    transition: opacity 0.5s ease-in;
}

.alert-area .close-button {
    position: absolute;
    top: 0;
    right: 5px;
    padding: 2px;
    font-size: 24px;
    border-width: 0;
    background: transparent;
    cursor: pointer;
}

    .alert-area .close-button:before {
        content: '\D7';
    }

.alert-area h1 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2B3E44 !important;
}

.alert-area p {
    font-family: 'Open Sans', sans-serif;
    font-size: 17px;
    color: #2B3E44 !important;
    letter-spacing: .05em;
    line-height: 1.2em;
}

@media (max-width: 767px) and (min-width: 481px) {
    .alert-area {
        left: 100px;
        right: 100px;
    }
}

/*#region fadein*/
@-webkit-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 10px;
        opacity: 1;
    }
}

@-moz-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 10px;
        opacity: 1;
    }
}

@-o-keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 10px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        top: 0;
        opacity: 0;
    }

    to {
        top: 10px;
        opacity: 1;
    }
}
/*#endregion*/

/*#region globals*/
.keno .activeGame,
.keno .activeGame > iframe {
    z-index: 20;
    margin: 0 auto;
}

.keno .closeGame {
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 30;
    color: #636b6f;
    right: 0;
    font-size: 25px;
    cursor: pointer;
}

    .keno .closeGame:hover {
        font-weight: bold;
    }

.keno .fScreen {
    width: 25px;
    height: 25px;
    position: absolute;
    z-index: 30;
    color: #636b6f;
    left: 0;
    font-size: 25px;
    cursor: pointer;
}

.keno .overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background-color 0.2s;
    background: rgba(0, 0, 0, 0.65);
    z-index: 10;
}
/*#endregion*/

.keno_content {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-top: 5px !important;
    background: #181b20;
    overflow: hidden;
    flex-direction: column;
}

@keyframes hoory-switcher-bot-animation {
    0% {
        transform: scale(1.2);
    }

    95%, 100% {
        transform: scale(1);
    }
}

.keno_content .row {
    position: relative;
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
}

    .keno_content .row:after,
    .keno_content .row:before {
        content: " ";
        display: table;
    }

    .keno_content .row:after {
        clear: both;
    }

.keno_content .box {
    position: relative;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}


.l .keno_content .box {
    width: 58.33333%;
}

.mobile .keno_content .box {
    width: 100%;
}

.keno_content .small-6 {
    width: 50%;
}

.keno_content .column {
    float: left;
    padding-left: .9375rem;
    padding-right: .9375rem;
}

    .keno_content .column:last-child:not(:first-child) {
        float: right;
    }

.keno_content .box-wrapper:after {
    content: url(/images/keno/border-vertical.png);
    position: absolute;
    top: 0;
    left: 50%;
}

.keno_content .box-wrapper .button {
    position: relative;
    line-height: 30px;
    height: 30px;
    vertical-align: middle;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    transition: all .2s ease-in-out;
    border-radius: 50px;
    width: auto;
    text-shadow: none;
    max-width: 130px;
    min-width: 100px;
    background: #181b20;
    border: 2px solid #aa9a4c;
    color: #aa9a4c;
    margin: 25px auto;
    font-size: 11px;
    padding: 5px 0;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keno_content .button .loader {
    padding: 0;
}

@media only screen and (min-width: 576px) {
    .keno_content .box-wrapper .button {
        max-width: 180px;
    }
}

.mobile .keno_content .keno-logo {
    max-width: 130px;
}

@media only screen and (max-width: 300px) {
    .mobile .keno_content .keno-logo {
        max-width: 100px;
    }
}

.keno_content .box-wrapper .button:hover {
    background: #aa9a4c;
    color: #181b20;
}

.keno_content .keno-logo {
    height: auto;
    vertical-align: top;
    user-select: none;
}

    .keno_content .keno-logo:hover {
        animation-name: hoory-switcher-bot-animation;
        animation-duration: 3s;
        animation-direction: alternate-reverse;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
    }

.l .keno_content .keno-logo {
    max-width: 200px;
}

.mobile .widget-games {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 18px;
    padding: 10px 0;
    border-top: 1px solid #9a9a9a;
    border-bottom: 1px solid #9a9a9a;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

    .mobile .widget-games .tab {
        flex: 1 1 auto;
        text-align: center;
    }

        .mobile .widget-games .tab:first-of-type .inner {
            margin-left: 10px;
        }

        .mobile .widget-games .tab .inner {
            margin-right: 10px;
            border-radius: 7px;
        }

        .mobile .widget-games .tab .title {
            padding: 5px;
            font-size: 12px;
            border-top-left-radius: 7px;
            border-top-right-radius: 7px;
        }

    .mobile .widget-games .flex {
        display: flex;
        border-radius: 7px;
    }

    .mobile .widget-games .tab .main.anime {
        display: block;
        margin: 0 auto;
        padding: 10px 0;
        height: 65px;
        -webkit-animation-name: rotater;
        animation-name: rotater;
        -webkit-animation-duration: 3s;
        animation-duration: 3s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -o-transform: scale(1.1);
        -o-transition-duration: 3s;
        -o-transition-timing-function: ease-out;
        -ms-transform: scale(1.1);
        -ms-transform-duration: 3s;
        -ms-transform-timing-function: ease-out;
    }

@keyframes rotater {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.mobile .popular-games {
    margin-top: 10px;
}

    .mobile .popular-games .justice-games {
        padding-bottom: 10px;
        margin: 0 7px;
        min-height: 148px;
        border-radius: .25rem;
    }

.popular-games .justice-games .title {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .24);
}

    .popular-games .justice-games .title h1 {
        height: 25px;
        line-height: 25px;
        font-size: 12px;
        font-weight: 600;
        position: relative;
        text-align: center;
        color: #fff;
    }

.popular-games .carousel {
    position: relative;
}

.mobile .popular-games .carousel {
    padding: 0 7px;
}

.popular-games .carousel-viewport {
    overflow: hidden;
}

.popular-games .carousel-slide {
    flex-shrink: 0;
    position: relative;
}

.popular-games .justice-games .carousel-slide {
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
}

.popular-games .casino-game-item {
    position: relative;
    width: 100%;
    height: 120px;
    background: rgba(255, 255, 255, 0.1) no-repeat 50% / contain;
    border-radius: 4px;
    overflow: hidden;
}

.popular-games .casino-game-item-image-bc {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    transition: -webkit-filter 0.24s;
    transition: filter 0.24s;
    transition: filter 0.24s, -webkit-filter 0.24s;
    cursor: pointer;
}

.popular-games .VueCarousel {
    -webkit-margin-start: -10px;
    margin-inline-start: -10px;
    background: unset;
}

.popular-games .VueCarousel-slide {
    border-radius: 0.375rem;
    border-left: 0 !important;
    border-right: 0 !important;
}

.popular-games .VueCarousel .VueCarousel-pagination {
    display: none;
}

.popular-games .VueCarousel-inner > * {
    flex-shrink: 0;
    box-sizing: border-box;
    min-height: 1px;
}

.popular-games .name {
    position: absolute;
    top: 90px;
    padding: 0 2px;
    width: calc(100% - 4px);
    line-height: 30px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    font-size: 13px;
    -webkit-text-overflow: ellipsis;
    -moz-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    background: rgba(11, 20, 34, 0.4);
    overflow: hidden;
    font-weight: 400;
    text-align: center;
    color: #fff;
    -webkit-animation: casino-game-layer-label 0.4s forwards;
    -moz-animation: casino-game-layer-label 0.4s forwards;
    -ms-animation: casino-game-layer-label 0.4s forwards;
    -o-animation: casino-game-layer-label 0.4s forwards;
    animation: casino-game-layer-label 0.4s forwards;
    opacity: 0.8;
}

.popular-games .casino-game-item-label-bc {
    width: calc(100% - 10px);
    line-height: 15px;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    -webkit-animation: casino-game-layer-label 0.4s forwards;
    -moz-animation: casino-game-layer-label 0.4s forwards;
    -ms-animation: casino-game-layer-label 0.4s forwards;
    -o-animation: casino-game-layer-label 0.4s forwards;
    animation: casino-game-layer-label 0.4s forwards;
    opacity: 0.8;
}

.popular-games .game-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    transition: .3s ease-out;
    opacity: 0;
    visibility: hidden;
}

.popular-games .imgWrapper {
    border-radius: 0.375rem;
}

    .popular-games .imgWrapper:hover .game-overlay {
        visibility: visible;
        opacity: 1;
    }

@keyframes casino-game-layer {
    0% {
        opacity: 0;
        pointer-events: none;
    }

    100% {
        opacity: 1;
        pointer-events: auto;
        -webkit-backdrop-filter: blur(2px);
        -moz-backdrop-filter: blur(2px);
        -ms-backdrop-filter: blur(2px);
        -o-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        background: rgba(0, 0, 0, 0.5);
    }
}

@keyframes casino-game-layer-label {
    0% {
        -webkit-filter: blur(10px);
        -moz-filter: blur(10px);
        -ms-filter: blur(10px);
        -o-filter: blur(10px);
        filter: blur(10px);
    }

    100% {
        -webkit-filter: blur(0);
        -moz-filter: blur(0);
        -ms-filter: blur(0);
        -o-filter: blur(0);
        filter: blur(0);
    }
}

@keyframes casino-game-layer-second-btn {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50%);
        -moz-transform: translateY(50%);
        -ms-transform: translateY(50%);
        -o-transform: translateY(50%);
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

.notice {
    position: fixed;
    top: 0;
    left: 50%;
    margin: 0;
    padding: 8px;
    width: 50px;
    transform: translateX(-50%);
    z-index: 10;
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
    color: #fff;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    background: rgba(199,0,57,.8);
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}

    .notice:hover {
        top: 0 !important;
    }

    .notice > img {
        filter: invert(1);
        width: 18px;
    }

    .notice > span {
        display: block;
        padding-top: 5px;
    }

.notice__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    color: #000000;
    background: rgba(0,0,0,.8);
    z-index: 10;
}

    .notice__overlay .middle {
        position: fixed;
        top: 50%;
        left: 50%;
        margin: 0 auto;
        width: 90%;
        max-width: 400px;
        padding: 20px;
        line-height: 1.3em;
        font-size: 14px;
        border-radius: 3px;
        box-sizing: border-box;
        transform: translate(-50%,-50%);
        background: #f7f7f7;
    }

    .notice__overlay .clearfix {
        padding-bottom: 10px;
        border-bottom: 1px solid #e7e7e7;
    }

        .notice__overlay .clearfix h1 {
            float: left;
            line-height: 24px;
        }

        .notice__overlay .clearfix .close-button {
            float: right;
            width: 24px;
            height: 24px;
            font-size: 20px;
            font-weight: 700;
            background: #e7e7e7;
            text-align: center;
            border: 0;
            outline: none;
            border-radius: 5px;
            cursor: pointer;
        }

            .notice__overlay .clearfix .close-button:hover {
                color: #e7e7e7;
                background: rgba(199,0,57,1)
            }

    .notice__overlay .content {
        padding: 20px 10px 10px 10px;
        text-align: center;
    }

.payment-inner.alert-area {
    display: block;
}

/*rtl*/
.r .notice__overlay .clearfix h1 {
    float: right;
}

.r .notice__overlay .clearfix .close-button {
    float: left;
}

@keyframes pulse {
    0% {
        background: rgba(199,0,57,.7)
    }

    50% {
        background: rgba(199,0,57,1)
    }


    100% {
        background: rgba(199,0,57,.7)
    }
}

/*#region vue-carousel*/
.VueCarousel .VueCarousel-pagination {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

    .VueCarousel .VueCarousel-pagination .VueCarousel-dot-container {
        display: flex;
        align-items: center;
        margin: 0 !important;
        padding: 0 6px;
        background-color: color(srgb 0.46 0.5 0.54 / 0.3);
        border-radius: 8px;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
    }

        .VueCarousel .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot {
            display: flex;
            margin-top: 0 !important;
            margin-bottom: 0 !important;
            padding: 5px !important;
            outline: 0;
            opacity: 1;
        }

            .VueCarousel .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot .VueCarousel-dot-button {
                width: 6px !important;
                height: 6px !important;
            }

            .VueCarousel .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot:hover .VueCarousel-dot-button,
            .VueCarousel .VueCarousel-pagination .VueCarousel-dot-container .VueCarousel-dot.VueCarousel-dot--active .VueCarousel-dot-button {
                background-color: #F4D416 !important;
            }
/*#endregion*/

/*#region footer icons*/
._footer .footer_icons {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-bottom: 8px;
}

    ._footer .footer_icons .__icons {
        user-select: none;
    }

    ._footer .footer_icons .license.__icons img {
        width: 32px !important;
        height: 30px !important;
    }

    ._footer .footer_icons .__icons:not(.license) img {
        opacity: 0.5;
        -webkit-filter: grayscale(1);
        filter: grayscale(1);
    }

._footer .footerDevider {
    height: 0;
}

._footer .footer_links {
    margin: 10px 0 0;
    padding-bottom: 10px;
    font-size: 14px;
    text-align: center;
}

    ._footer .footer_links li {
        display: inline-block;
        padding: 5px 10px;
    }

._footer .footer_text {
    margin: 10px 0;
    padding: 0 10px;
    font-size: 13px;
    text-align: center;
}
/*#endregion*/
