/* Minification failed. Returning unminified contents.
(181,68): run-time error CSS1039: Token not allowed after unary operator: '-test'
(1192,23): run-time error CSS1039: Token not allowed after unary operator: '-app-height'
(2529,55): run-time error CSS1039: Token not allowed after unary operator: '-app-height'
(2529,159): run-time error CSS1039: Token not allowed after unary operator: '-app-height'
(2529,323): run-time error CSS1039: Token not allowed after unary operator: '-app-height'
(2529,427): run-time error CSS1039: Token not allowed after unary operator: '-app-height'
 */
html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    background: #100e28;
}

body {
    padding-right: 0px !important;
}

@font-face {
    font-family: 'BPG_Arial';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/BPG_Arial.eot') format('embedded-opentype'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/BPG_Arial.svg') format('svg'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/BPG_Arial.ttf') format('truetype'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/BPG_Arial.woff') format('woff');
}

@font-face {
    font-family: 'Play-Bold';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/Play-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Play-Regular-CAPS';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/Play-Regular-CAPS.ttf') format('truetype');
}

@font-face {
    font-family: 'currency-support';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/EversonMono-Bold.eot?#iefix') format('embedded-opentype'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/EversonMono-Bold.woff') format('woff'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/EversonMono-Bold.ttf') format('truetype'), 
         url('https://cdn.crocobet.com/Lambda/Shared/fonts/EversonMono-Bold.svg#EversonMono-Bold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MavenPro-Medium';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/MavenPro-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'BPG_Arial_Caps';
    src: url('https://cdn.crocobet.com/Lambda/Shared/fonts/BPG_Arial_Caps.ttf') format('truetype');
}


div, span, h1, h2, h3, h4, h5, h6, a, ul, li {
    /*font-family: 'Play-Regular-CAPS';*/
}

/*button, .btn, .nav-tabs > li > a, .modal-title {
    font-family: 'BPG_Arial_Caps','LariSign';
}*/

input {
    -webkit-user-select: text !important;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.tab-animation {
    animation: tabanimation 1s infinite;
}

@keyframes tabanimation {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

.btn, .btn:active, .btn:focus {
    outline: none;
}

.btn {
    outline: none !important;
}

.modal {
    overflow-y: auto;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak, ng-cloak {
    display: none !important;
}

.pagination > li > a, .pagination > li > span {
    background-color: #232238;
    border: 1px solid #12121d;
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    background-color: #232238;
    border: 1px solid #12121d;
    pointer-events: none;
}

.pagination > li > a:hover, .pagination > li > span:hover {
    background-color: #27263e;
    border: 1px solid #12121d;
}


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #2e2d43;
}



::-webkit-scrollbar-thumb {
    background-color: #8693A5;
    /*border-radius: 4px;*/
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

input {
    -webkit-user-select: text !important;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}


button {
    outline: none !important;
}

.loading {
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #151C23;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1051;
    text-align: center;
}

.balls-container {
    text-align: center;
    width: 520px;
    height: 40%;
    margin: auto;
    margin-top: 7%;
}

.ball {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #15AF44;
    border-radius: 50%;
    /*offset-path: path('M 150 150 L 450 450 L 600 300 L 450 150 L 150 450 L 0 300 L 150 150');*/
    offset-path: path('M 150 100 L 350 300 L 450 200 L 350 100 L 150 300 L 50 200 L 150 100 ');
    offset-distance: 0%;
    animation: red-ball 1s cubic-bezier(.75,.01,.44,.8) infinite, --test 1s linear infinite;
}

@keyframes red-ball {
    0% {
        offset-distance: 0%;
    }

    100% {
        offset-distance: 100%;
    }
}

@keyframes test {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.2;
    }

    75% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

#ball1 {
    animation-delay: .03s
}

#ball2 {
    animation-delay: .06s;
    opacity: 0.8;
}

#ball3 {
    animation-delay: .10s;
    opacity: 0.6;
    background: white;
}

#ball4 {
    animation-delay: .15s;
    opacity: 0.5;
    background: white;
}

#ball5 {
    animation-delay: .21s;
    opacity: 0.3;
    background: white;
}


[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak, ng-cloak {
    display: none !important;
}

.lobby-tabs {
    position: absolute;
    width: 6%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #2e2d43;
    min-height: 770px;
}

    .lobby-tabs div:nth-of-type(1) {
        width: 100%;
        height: 120px;
        height: 12%;
        text-align: center;
        padding-top: 20%
    }

    .lobby-tabs a {
        text-decoration: none;
        cursor: pointer;
    }

        .lobby-tabs a:nth-of-type(1) div, .lobby-tabs a:nth-of-type(2) div, .lobby-tabs a:nth-of-type(3) div {
            width: 100%;
            height: 100px;
            text-align: center;
            padding-top: 15%;
            margin: 15% 0;
            position: relative;
        }

    .lobby-tabs div span {
        color: white;
        display: block;
        font-size: 14px;
        margin-top: 10%;
        font-family: 'Play-Regular-CAPS';
    }

    .lobby-tabs div.active {
        background: linear-gradient(#3b2344, #222137);
    }

    .lobby-tabs a:nth-of-type(2) div::after {
        content: "";
        background: #ffb400;
        width: 5px;
        height: 94%;
        content: "";
        position: absolute;
        top: 3%;
        right: 0px;
        z-index: 1;
        display: block;
        float: right;
    }

    .lobby-tabs div:last-of-type {
        width: 100%;
        height: 100px;
        text-align: center;
        padding-top: 15%;
        margin: 15% 0;
        position: absolute;
        bottom: 0;
    }

    .lobby-tabs div span:nth-of-type(2) {
        margin-top: 3%;
        color: #ffb400;
    }

header {
    display: none;
}

.main-container {
    position: absolute;
    width: 76%;
    height: 100vh;
    top: 0;
    left: 6%;
    min-height: 770px;
}

.right-panel-container {
    position: absolute;
    width: 18%;
    height: 100vh;
    top: 0;
    left: 82%;
    min-height: 770px;
}

.user-info {
    width: 96%;
    margin-left: 1%;
    margin-top: 10px;
    height: 18%;
    background-color: #2e2d43;
    border-radius: 10px;
    min-height: 110px;
    float: left;
}

    .user-info.sm {
        height: 16%;
    }

.tournaments-container .user-info {
    display: none;
}

.user-info .user-details {
    width: 100%;
    height: 30%;
    padding: 5%;
}

.user-info.sm .user-details {
    height: 48%;
    margin-left: 5px;
}

.user-info .user-details img:nth-of-type(1) {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    display: block;
    float: left;
}

.user-info .user-details span {
    color: white;
    display: block;
    float: left;
    padding: 5% 4%;
}

.user-info .user-details button {
    background: none;
    border: none;
    padding: 4%;
    float: right;
}

.user-info #settings-btn img {
    width: 27px;
    height: 27px;
}

.user-info .user-balance {
    width: 100%;
    height: 35%;
    padding: 12px;
    margin-left: 15px;
    margin-top: 10px;
}

.user-balance button {
    width: 38px;
    height: 38px;
    display: block;
    float: left;
    background-color: #14b239;
    border: none;
    border-radius: 3px;
    position: relative;
}

    .user-balance button:after,
    .user-balance button:before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #ffffff;
        border-radius: 25px;
    }

    .user-balance button:before {
        height: 15px;
        width: 3px;
    }

    .user-balance button:after {
        height: 3px;
        width: 15px;
    }

.user-balance span:nth-of-type(1) {
    display: block;
    float: left;
    color: white;
    width: 70%;
    padding-left: 5%;
    color: #c1bfdb;
}

.user-balance span:nth-of-type(2) {
    display: block;
    float: left;
    color: white;
    width: 70%;
    padding-left: 5%;
    color: white;
}

.my-games-btn {
    background-color: #27263c;
    border: none;
    color: white;
    padding: 12px 15px;
    border-radius: 10px;
    margin-left: 5%;
}

.table-create-btn-container {
    width: 100%;
    height: 13%;
    width: 96%;
    text-align: center;
    float: left;
    margin-left: 1%;
    margin-top: 10px;
}

    .table-create-btn-container div {
        height: 100%;
        width: 100%;
        background-color: #0d9d33;
        border: 0;
        border-radius: 10px;
        display: flex;
        text-align: center;
        margin: auto;
        cursor: pointer;
    }

        .table-create-btn-container div span {
            font-size: 22px;
            line-height: 40px;
            display: block;
            float: left;
            margin-right: 35px;
            color: #ffffff;
            margin: auto;
        }

        .table-create-btn-container div img {
            width: 35px;
            height: 35px;
            display: block;
            margin-top: 3px;
            margin: auto;
            margin-left: -20px;
        }

.mini-games {
    width: 100%;
    margin-left: 0;
    margin-top: 10px;
    height: calc(69% - 40px);
    background-color: #2e2d43;
    border-radius: 10px;
    min-height: 200px;
    float: left;
}
    .mini-games > iframe {
        border-radius: 10px;
        width: 100%;
        height: 100%;
        border: none;
    }

    .mini-games.sm {
        height: calc(71% - 40px);
    }

.mini-games-header {
    background-color: #44425e;
    color: white;
    padding: 3%;
    padding-left: 5%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 15px;
    height: 40px;
}

/*.chat {
    width: 96%;
    margin-left: 1%;
    margin-top: 5px;
    height: calc(35% - 20px);
    height: -moz-calc(35% - 20px);
    height: -webkit-calc(35% - 20px);
    height: -o-calc(35% - 20px);
    background-color: #2e2d43;
    border-radius: 5px;
    min-height: 180px;
    float: left;
    display: flex;
    flex-direction: column;
}

    .chat.medium {
        height: calc(32% - 20px);
        height: -moz-calc(32% - 20px);
        height: -webkit-calc(32% - 20px);
        height: -o-calc(32% - 20px);
    }

    .chat.small {
        min-height: 20px;
        height: calc(7% - 20px);
    }


.chat.small .chat-header {
    height: 100%;
}*/

.game-background {
    width: 100%;
    height: 100%;
    color: white;
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1052;
    text-align: center;
    background-color: #361414;
}

    .game-background img {
        width: 22%;
        height: 22%;
        text-align: center;
        margin-top: 20%;
    }

    .game-background.active {
        width: 100%;
        height: 100%;
    }

@keyframes zoom {
    100% {
        width: 100%;
        height: 100%;
    }
}

@media screen and (max-width: 1700px) {
    .main-container {
        width: 72%;
    }

    .right-panel-container {
        left: 78%;
        width: 22%;
    }
}

@media screen and (max-width: 1400px) {
    .lobby-tabs {
        display: none;
    }

    .main-container {
        width: 75%;
        left: 0%;
    }

    .right-panel-container {
        left: 75%;
        width: 25%;
    }

    .tournaments-container .user-info {
        display: block;
        margin: 0;
        height: 100%;
        width: auto;
        float: right;
        min-height: auto;
    }

    .user-info .user-details img:nth-of-type(1) {
        width: 30px;
        height: 30px;
        display: block;
        float: left;
        padding-top: 0;
        margin-top: 7.5px;
    }
}


@media(max-width: 1200px) {
    .main-container {
        width: 73%;
        left: 0%;
    }

    .right-panel-container {
        left: 73%;
        width: 27%;
    }
}

@media screen and (max-height: 900px) {
    .my-games-btn {
        left: -9px;
    }

    .user-balance {
        font-size: 13px;
    }
}

@media(max-width: 1100px) {
    .right-panel-container {
        height: 30px;
        min-height: 30px;
    }

    .mini-games, .table-create-btn-container {
        display: none;
    }

    .main-container {
        width: 100%;
    }

    .user-info {
        height: 68px !important;
        position: absolute;
        width: 260px;
        right: 5px;
        min-height: 68px;
        border-bottom-right-radius: 0px;
    }

        .user-info .user-details {
            height: 100%;
            width: 54%;
            float: right;
            padding: 3px;
            padding-top: 10px;
        }

            .user-info .user-details img:first-of-type {
                display: none;
            }

            .user-info .user-details button img {
                display: block !important;
            }

            .user-info .user-details span {
                margin-top: 10px;
                padding: 2px;
                float: right;
            }

            .user-info .user-details button {
                padding: 1%;
                padding-right: 12px;
            }

        .user-info .user-balance {
            width: 39%;
            height: 100%;
            padding: 0px;
            margin-left: 6px;
            margin-top: 16px;
            float: left;
        }

    .user-balance button {
        width: 30px;
        height: 30px;
        margin-top: 5px;
    }

    .my-games-btn {
        left: -46px;
        position: absolute;
        top: 90px;
        background-color: #3c3b56;
    }
}

@media screen and (max-width: 1000px) {
    .table-create-btn-container div span {
        font-size: 17px;
    }

    .table-create-btn-container div img {
        margin-left: -3px;
    }

    .game-background img {
        display: none;
    }

    .balls-container {
        width: auto;
        transform: scale(0.5);
        margin: auto;
        margin-left: -22px;
    }
}


@media(max-height: 850px) {
    .my-games-btn {
        padding: 9px 15px;
    }

    .user-info .user-details img:nth-of-type(1) {
        width: 40px;
        height: 40px;
    }

    .user-info .user-details {
        padding-top: 10px;
    }
}

@media(max-width: 1000px), (max-height: 700px) {
    .user-info {
        margin-top: 5px;
    }

    .table-create-btn-container {
        margin-top: 5px;
    }

    .mini-games {
        margin-top: 5px;
        height: calc(66% - 20px);
    }

        .mini-games.sm {
            height: calc(71% - 20px);
        }
}

@media (max-height: 700px) {
    .user-info .user-balance {
        margin-top: 15px;
    }

    .user-info {
        height: 21%;
    }

        .user-info .user-details {
            padding-top: 10px;
        }

    .my-games-btn {
        padding: 8px 12px;
    }
}

@media screen and (max-width: 600px) {
    .right-panel-container {
        display: none;
    }

    ::-webkit-scrollbar {
        height: 4px;
        width: 4px;
        background-color: #ffffff00;
    }

    ::-webkit-scrollbar-thumb {
        background-color: #8693A5;
    }

    ::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
        background-color: #ffffff00;
    }

    html, body, .main-container {
        overflow: hidden;
    }

    header {
        height: 60px;
        width: 100%;
        padding: 5px 12px;
        padding-left: 6px;
        margin: auto;
        position: relative;
        display: flex;
    }

        header .logo {
            height: 18px;
            width: 36px;
            margin-top: 15px;
            margin: auto;
        }

            header .logo img {
                width: 100%;
                height: auto;
                margin: auto;
                margin-top: -8px;
            }

    .header-info {
        width: 28%;
    }

        .header-info .balance {
            text-align: right;
            margin-right: 35px;
            margin-top: 10px;
            font-size: 11px;
            color: #FFFFFF;
        }

            .header-info .balance span:nth-child(2) {
                color: #15AF44;
                display: flow-root;
                margin-top: -3px;
                font-size: 13px;
            }

    .user-details {
        height: 35px;
        position: absolute;
        right: 10px;
        top: 15px;
    }

        .user-details img {
            width: 26px;
            height: 26px;
            border-radius: 25px;
        }

    .main-container {
        top: 42px;
        width: 100%;
        height: calc(100% - 45px);
        min-height: 100px;
    }

    .user-info, .mini-games {
        display: none;
    }
}

.dice {
    width: 500px;
    height: 280px;
    position: absolute;
    background-color: transparent;
    overflow: hidden;
}

.container3 {
    animation: moveY 0.5s steps(7);
    margin-top: -1800px;
}

#die-container-white {
    margin-left: -19px;
}

#die-container-black {
    margin-top: -128px;
    margin-left: -128px;
}

#dice-container-white, #dice-container-black {
    margin-top: -1800px;
}

.animate {
    animation: moveDice 0.3s steps(7);
    -webkit-animation: moveDice 0.3s steps(7);
    /*margin-top: -1800px;*/
}

@keyframes moveY {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: -2100px;
    }
}


@keyframes moveDice {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: -2100px;
    }
}

@-webkit-keyframes moveDice {
    0% {
        margin-top: 0px;
    }

    100% {
        margin-top: -2100px;
    }
}

.sprite {
    width: 1024px;
    height: 300px;
    background-repeat: no-repeat;
    display: block;
}

.sprite-1 {
    opacity: .7;
    margin-left: -50px;
    -webkit-filter: blur(15px);
    background-position: 0 0;
}

.sprite-2 {
    opacity: .8;
    margin-left: -20px;
    -webkit-filter: blur(12px);
    background-position: 0 -1500px;
}

.sprite-3 {
    opacity: .8;
    -webkit-filter: blur(9px);
    background-position: 0 -1800px;
}

.sprite-4 {
    opacity: .9;
    -webkit-filter: blur(2px);
    background-position: 0 -2100px;
}

.sprite-5 {
    -webkit-filter: blur(2px);
    background-position: 0 -2400px;
}

.sprite-6 {
    -webkit-filter: blur(2px);
    background-position: 0 -2700px;
}

.sprite-13 {
    margin-left: -20px;
    background-position: 0 -1200px;
}

.tables-container {
    width: 99%;
    margin-left: 0.5%;
    margin-top: 10px;
    height: calc(100% - 20px);
    background-color: #2e2d43;
    border-radius: 10px;
}

.tables-tabs {
    height: 70px;
    background-color: #3C3B56;
    border-radius: 10px 10px 0px 0px;
    display: flex;
    flex-direction: row;
    color: white;
    font-size: 19px;
    border-bottom: 3px #232236 solid;
}

.table-types-tab {
    height: 55px;
    align-self: flex-end;
    border-radius: 12px 12px 0px 0px;
    text-align: center;
    padding-top: 13px;
    cursor: pointer
}

    .table-types-tab.active {
        background-color: #232236;
    }

.cash-tables {
    margin-left: 36px;
    width: 120px;
}

    .cash-tables img {
        margin-top: -2px;
        margin-right: 6px;
    }

.tournament-tables {
    width: 190px;
}

    .tournament-tables img {
        margin-right: 5px;
    }

@media(max-width: 1000px), (max-height: 700px) {
    .tables-container {
        margin-top: 5px;
        height: calc(100% - 10px);
    }
}

/*----------mobile-------------*/

.tables-tab-chooser {
    width: 32%;
}

    .tables-tab-chooser .title {
        background-color: #43425E;
        border-radius: 8px;
        color: white;
        padding: 8px;
        margin-top: 5px;
    }


        .tables-tab-chooser .title .bet-sm-filter-arrow {
            margin-right: 3px;
            margin-top: 6px;
            margin-left: 7px;
        }

    .tables-tab-chooser .chooser {
        position: fixed;
        z-index: 7;
        background-color: #292741;
        padding: 5px;
        width: 31%;
        color: white;
        border-radius: 8px;
        margin-top: 3px;
    }

        .tables-tab-chooser .chooser div {
            padding: 5px;
            border-radius: 8px;
        }

            .tables-tab-chooser .chooser div.active {
                background-color: #43425E;
            }

@media(max-width: 900px ) {
    .tables-tabs {
        font-size: 14px;
    }

    .cash-tables {
        margin-left: 3px;
        width: 90px;
    }

    .tournament-tables {
        width: 143px;
    }
}

@media(max-width: 600px) {
    .tables-container {
        height:100%;
    }

    .tables-tabs {
        display: none;
    }

    .tables-container {
        background-color: #100e28;
    }
}

@media(max-width: 500px) {
    .tables-tab-chooser .title .bet-sm-filter-arrow {
        margin-right: 2px;
    }

    .tables-tab-chooser .title {
        padding: 8px 4px;
    }
}

@media(max-width: 400px) {
    .tables-tab-chooser .chooser {
        width: 37%;
    }

    .tables-tab-chooser {
        width: 36%;
    }

    .tables-tab-chooser .title .bet-sm-filter-arrow {
        margin-top: 3px;
    }

        .tables-tab-chooser .title {
            font-size: 11px;
            padding: 10px 4px;
            padding-left: 6px;
        }
}
.no-tournament-container {
    color: #FFFFFF !important;
    font-size: 22px;
    margin: 20px;
    text-align: center;
}

.tournaments-container {
    width: calc(100% - 16px);
    height: calc(var(--app-height) - 80px);
    margin: 8px;
    border-radius: 8px;
    position: relative;
    min-height: 215px;
}

.tournaments-header {
    height: 50px;
    padding-left: 1%;
    position: relative;
}

.tournaments-content {
    height: calc(100% - 50px);
    position: relative;
    border-radius: inherit;
    overflow: hidden; /* TODO */
}

.tournaments-header img {
    display: block;
    padding-top: 12.5px;
    float: left;
}

.tournaments-header span {
    color: white;
    font-size: 15px;
    padding-left: 10px;
    display: block;
    float: left;
    padding-top: 12.5px;
    line-height: 30px;
    font-family: 'Play-Regular-CAPS';
}

.tournaments-list {
    position: absolute;
    right: 1%;
    top: 5px;
    padding: 10px 15px;
    background-color: #4e4c69;
    border-radius: 5px;
    background: linear-gradient(#4e4c69, #44435f);
    color: white;
    cursor: pointer;
}

    .tournaments-list.out {
        margin-top: 10px;
    }

    .tournaments-list span {
        display: block;
        float: left;
        padding: 0 15px;
        line-height: 19px;
        padding-left: 5px;
        font-size: 16px;
    }

    .tournaments-list img {
        display: block;
        float: left;
        padding: 0;
    }

    .tournaments-list button {
        display: block;
        float: right;
        line-height: 10px;
        font-size: 35px;
        text-shadow: none;
        font-weight: lighter;
        color: white;
        margin-top: 5px;
    }

.next-tournament {
    height: 100%;
    width: 280px;
    float: left;
    background-image: url('Images/tournament-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: inherit;
    position: relative;
}

    .next-tournament h3 {
        font-size: 17px;
        color: white;
        text-align: center;
        margin: 8px 0;
    }

    .next-tournament section img {
        width: 17px;
    }

    .next-tournament span:nth-of-type(1) {
        font-size: 17px;
        color: #ffba00;
        text-align: center;
        display: block;
    }

    .next-tournament div:nth-of-type(1), .next-tournament div:nth-of-type(2) {
        width: 45%;
        float: left;
        margin-top: 5px;
    }

        .next-tournament div:nth-of-type(1) span, .next-tournament div:nth-of-type(2) span, .next-tournament div:last-of-type span {
            font-size: 15px;
            color: white;
            text-align: center;
            display: block;
        }

    .next-tournament div:last-of-type {
        width: 100%;
        float: left;
    }

    .next-tournament section {
        position: absolute;
        text-align: center;
        width: 100%;
        bottom: 10px;
    }

        .next-tournament section button {
            outline: none;
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 25px;
            margin: auto;
        }

            .next-tournament section button:nth-of-type(1) {
                background-color: #0da036;
            }

            .next-tournament section button:nth-of-type(2) {
                background: linear-gradient(#f21d23, #ff2740);
            }

    .next-tournament div:last-of-type span:nth-of-type(2),
    .next-tournament h3:nth-of-type(2) {
        color: #ffba00;
    }

.tournaments-content .left-arrow {
    background: inherit;
    border: 0;
    position: absolute;
    top: 0;
    height: 100%;
}

.tournaments-content .right-arrow {
    background: inherit;
    border: 0;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.tournaments-content ::-webkit-scrollbar {
    height: 0;
    width: 0;
}


.all-tournaments-content {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #2e2d43;
    z-index: 3;
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
}

    .all-tournaments-content.large {
        height: calc(100% - 50px);
    }

.all-tournaments-table {
    display: block;
    width: 69%;
    float: left;
    height: 98%;
    border-bottom-left-radius: inherit;
    transition: all 0.2s;
}

    .all-tournaments-table.large {
        width: 98%;
        height: 100%;
    }


.next-date-tournament {
    
}

.data-label {
    width: 50px;
    float: left;
}

    .data-label tr {
        background-color: transparent !important;
    }

        .data-label tr th {
            border-left: 2px solid #7b3c9c;
            padding-left: 8px;
            font-size: 17px;
        }

.all-tournaments-table .table-head, .all-tournaments-table .table-body {
    width: 96%;
}

    .all-tournaments-table .table-head table, .all-tournaments-table .table-body table {
        width: 100%;
        background: none;
        color: #a4a4ad;
        font-weight: 300;
    }

    .all-tournaments-table .table-head table {
        margin-left: 60px;
        width: calc(100% - 60px);
    }

.all-tournaments-table .table-body {
    height: calc(100% - 46px);
    overflow: auto;
}

    .all-tournaments-table .table-body tbody {
        width: calc(100% - 60px);
        display: inline-table;
        margin-left: 10px;
    }

    .all-tournaments-table .table-body table {
        border-collapse: separate;
        border-spacing: 0 3px;
    }

    .all-tournaments-table .table-body tr td:first-child {
        border-top-left-radius: 10px;
    }

    .all-tournaments-table .table-body tr td:last-child {
        border-top-right-radius: 10px;
    }

    .all-tournaments-table .table-body tr td:first-child {
        border-bottom-left-radius: 10px;
    }

    .all-tournaments-table .table-body tr td:last-child {
        border-bottom-right-radius: 10px;
        text-align: center;
        min-width: 10px;
    }

.all-tournaments-table .table-head table th {
    background-color: none;
    color: #ababb4;
    height: 40px;
    text-align: center;
}

.all-tournaments-table .table-head th:nth-of-type(1) {
    width: 10%;
    text-align: center;
}

.all-tournaments-table .table-head th:nth-of-type(2) {
    width: 24%;
    padding-left: 30px;
    text-align: left;
}

.all-tournaments-table .table-head th:nth-of-type(3), .all-tournaments-table .table-body td:nth-of-type(3) {
    width: 14%;
    text-align: center;
}

.all-tournaments-table .table-head th:nth-of-type(4), .all-tournaments-table .table-body td:nth-of-type(4) {
    width: 15%;
    text-align: center;
}

.all-tournaments-table .table-head th:nth-of-type(5), .all-tournaments-table .table-body td:nth-of-type(5) {
    width: 17%;
    text-align: center;
}

.all-tournaments-table .table-body td:nth-of-type(1) {
    width: 10%;
    text-align: center;
}

.all-tournaments-table .table-body td:nth-of-type(2) {
    width: 24%;
    padding-left: 10px;
    font-size: 16px;
}

.all-tournaments-table .table-body table tr {
    background-color: #44425e;
    color: white;
    height: 50px;
    cursor: pointer;
}

    .all-tournaments-table .table-body table tr.selected {
        background-color: #615E80;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(3) span {
        background-color: #33324a;
        padding: 6px 7px;
        border-radius: 25px;
        font-size: 14px;
        border: 1px solid #fc7728;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(4) span {
        background-color: #33324a;
        padding: 6px 12px;
        border-radius: 25px;
        font-size: 14px;
        border: 1px solid #3699f0;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(5) span {
        background-color: #33324a;
        padding: 5px 20px;
        border-radius: 25px;
        font-size: 15px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(6) button {
        border: 0;
        border-radius: 25px;
        padding: 7px 12px;
        width: 150px;
    }

        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(1) {
            background: linear-gradient(#d9a90a, #d9940a);
            margin: auto;
        }

        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(2) {
            background: linear-gradient(#f21d23, #ff2740);
            margin: auto;
        }

        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(3) {
            background-color: #4f4d69;
        }

        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(4) {
            background: none;
            margin: auto;
            display: flex;
            padding: 7px 2px;
        }

        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(5),
        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(6),
        .all-tournaments-table .table-body table tr td:nth-of-type(6) button:nth-of-type(7) {
            background-color: #4f4d69;
            margin: auto;
        }

.spinner {
    float: initial;
    margin-left: 10px;
    margin-top: -3px;
}

    .spinner > div {
        width: 8px;
        height: 8px;
        background-color: #14b239;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 0.8s infinite ease-in-out both;
        animation: sk-bouncedelay 0.8s infinite ease-in-out both;
    }

    .spinner > .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner > .bounce2 {
        -webkit-animation-delay: -0.12s;
        animation-delay: -0.12s;
    }

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.tournament-details {
    display: block;
    width: 28%;
    float: right;
    height: calc(100% - 70px);
    background: inherit;
    margin-top: 48px;
    margin-right: 8px;
    background-color: #3c3b56;
    border-radius: 10px;
}

    .tournament-details .close {
        color: #abaab7;
        font-size: 33px;
        padding: 4px !important;
        margin-right: 10%;
        padding: 10px;
        margin-top: 13px;
    }

.tournament-details-header {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 70px;
    color: white;
    list-style-type: none;
    white-space: nowrap;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-size: 0;
    background-color: #44425e;
}

    .tournament-details-header li {
        display: inline-block;
        width: 10%;
        line-height: 70px;
        text-align: center;
        font-size: 16px;
        cursor: pointer;
        background-color: #44425e;
    }

        .tournament-details-header li:nth-of-type(1), .tournament-details-header li:nth-of-type(2), .tournament-details-header li:nth-of-type(3) {
            width: 30%;
            background-color: #3c3b56;
        }

        .tournament-details-header li:nth-of-type(1) {
            border-top-left-radius: 10px;
        }

        /*.tournament-details-header li:nth-of-type(3) {
            border-top-right-radius: 10px;
        }*/

        .tournament-details-header li:nth-of-type(4) {
            height: 52%;
            border-radius: 10px;
        }

        .tournament-details-header li.active {
            background-color: #4e4c69;
        }

.tournament-details-info, .tournament-details-levels, .tournament-details-structure {
    width: 100%;
    height: calc(100% - 70px);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url('Images/tournament-info-background.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: auto;
}

    .tournament-details-info div {
        width: calc(100% - 50px);
        float: left;
        margin-left: 25px;
        height: 50px;
        padding: 10px 0;
        color: white;
        border-bottom: 1px dashed #3d3553;
    }

        .tournament-details-info div:last-of-type {
            width: auto;
            border: 0;
            opacity: 0.6;
            float: right;
            margin-right: 25px;
        }

        .tournament-details-info div span:nth-of-type(1) {
            display: block;
            float: left;
            font-size: 15px;
            line-height: 30px;
        }

        .tournament-details-info div span:nth-of-type(2), .tournament-details-info div span:nth-of-type(3) {
            display: block;
            float: right;
            font-size: 15px;
            line-height: 30px;
            margin-left: 5px;
        }

.prize-info {
    height: fit-content !important;
}

.total-prizes-info {
    display: contents !important;
    float: right;
    width: auto !important;
    opacity: 1 !important;
}

    .total-prizes-info span {
        font-size: 15px !important;
        text-align: right !important;
        margin-top: -4px;
        color: #09d85c !important;
    }

.tournament-details-info div:nth-of-type(1) {
    width: 100%;
    height: 25%;
    margin: 0;
    padding: 0;
    border: 0;
}

    .tournament-details-info div:nth-of-type(1) h3 {
        margin: 0;
        color: white;
        text-align: center;
        font-size: 18px;
        padding-top: 16%;
        line-height: 20px;
    }

    .tournament-details-info div:nth-of-type(1) span {
        display: block;
        text-align: center;
        color: #ffba00;
        font-size: 20px;
        padding-top: 3%;
        line-height: 20px;
        float: none;
    }

.tournament-details-info div:last-of-type span:nth-of-type(1) {
    font-size: 13px;
}

.tournament-details-info div:last-of-type span:nth-of-type(1) {
    font-size: 13px;
    color: #d99e0a;
}

.tournament-details-levels table, .tournament-details-structure table {
    width: 90%;
    margin-left: 5%;
    background: none;
    color: white;
}

    .tournament-details-levels table tr, .tournament-details-structure table tr {
        height: 50px;
        border-bottom: 1px dashed #3d3553;
    }

        .tournament-details-levels table tr:nth-of-type(1), .tournament-details-structure table tr:nth-of-type(1) {
            height: 50px;
            color: #8a7896;
            font-size: 12px;
            border: 0;
        }

        .tournament-details-levels table tr th:nth-of-type(1), .tournament-details-levels table tr td:nth-of-type(1) {
            text-align: left;
        }

        .tournament-details-structure table tr th:nth-of-type(1), .tournament-details-structure table tr td:nth-of-type(1) {
            width: 32%;
            text-align: left;
        }

        .tournament-details-levels table tr th:nth-of-type(2), .tournament-details-levels table tr td:nth-of-type(2) {
            text-align: right;
        }

        .tournament-details-structure table tr th:nth-of-type(2), .tournament-details-structure table tr td:nth-of-type(2) {
            width: 50%;
            text-align: center;
        }

        .tournament-details-structure table tr th:nth-of-type(3), .tournament-details-structure table tr td:nth-of-type(3) {
            text-align: right;
        }

        .tournament-details-levels table tr td:nth-of-type(2) {
            color: #fcab08;
        }

        .tournament-details-structure table tr td:nth-of-type(2) {
            color: #09d85c !important;
        }

.tournament-tabs {
    max-width: calc(100% - 300px);
    height: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

    .tournament-tabs ul {
        padding: 0;
        margin: 0;
        height: 100%;
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
    }

.tournament-tab {
    width: 300px;
    height: 98%;
    display: inline-block;
}

    .tournament-tab section {
        height: 100%;
        border-radius: 10px;
        margin: 0 5px;
        background-color: #232236;
    }

    .tournament-tab div:nth-of-type(1) {
        width: 100%;
        height: 12%;
        color: white;
        padding: 2% 5%;
    }

        .tournament-tab div:nth-of-type(1) span:nth-of-type(1) {
            display: block;
            float: left;
        }

        .tournament-tab div:nth-of-type(1) span:nth-of-type(2) {
            display: block;
            float: right;
        }

    .tournament-tab div:nth-of-type(2) {
        height: 60%;
        float: left;
        width: 61%;
        text-align: center;
        margin-top: 5%;
    }

    .tournament-tab div:nth-of-type(3) {
        width: 39%;
        float: right;
        height: 70%;
        padding: 10px;
    }

        .tournament-tab div:nth-of-type(3) span {
            display: block;
            text-align: center;
            color: white;
        }


            .tournament-tab div:nth-of-type(3) span:nth-of-type(2n + 1) {
                margin-top: 10%;
            }

            .tournament-tab div:nth-of-type(3) span:nth-of-type(2n) {
                color: #ffb400;
                font-size: 18px;
            }

    .tournament-tab div:nth-of-type(4) {
        width: 100%;
        height: 18%;
        float: left;
        padding: 0 5%;
        margin-top: -3px;
    }

        .tournament-tab div:nth-of-type(4) img {
            width: 21px;
            height: 18px;
            display: block;
            float: left;
            margin-top: 2%;
        }

        .tournament-tab div:nth-of-type(4) span {
            display: block;
            float: left;
            color: white;
            padding-left: 2%;
            margin-top: 2%;
            font-size: 13px;
        }

        .tournament-tab div:nth-of-type(4) button {
            float: right;
            outline: none;
            border: none;
            color: white;
            padding: 6px 12px;
            border-radius: 25px;
        }

            .tournament-tab div:nth-of-type(4) button:nth-of-type(1) {
                background-color: #0da036;
            }

            .tournament-tab div:nth-of-type(4) button:nth-of-type(2) {
                background: linear-gradient(#f21d23, #ff2740);
            }


@media(max-width: 1650px) {
    .all-tournaments-table .table-body table tr td:nth-of-type(3) span, .all-tournaments-table .table-body table tr td:nth-of-type(4) span {
        font-size: 14px;
    }
}

@media(max-width: 1600px) {
    .all-tournaments-table .table-body table tr td:nth-of-type(5) span {
        padding: 5px 14px;
    }

    .all-tournaments-table .table-head th:nth-of-type(2), .all-tournaments-table .table-body td:nth-of-type(2) {
        width: 22%;
    }

    .all-tournaments-table .table-head th:nth-of-type(4), .all-tournaments-table .table-body td:nth-of-type(4) {
        width: 17%;
        text-align: center;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(4) span {
        padding: 5px 10px;
    }

    .all-tournaments-table .table-head th:nth-of-type(3), .all-tournaments-table .table-body td:nth-of-type(3) {
        width: 17%;
    }

    .all-tournaments-table .table-head th:nth-of-type(4), .all-tournaments-table .table-body td:nth-of-type(4) {
        width: 14%;
    }

    .all-tournaments-table .table-head th:nth-of-type(5), .all-tournaments-table .table-body td:nth-of-type(5) {
        width: 15%;
    }
}


@media(max-width: 1500px) {
    .all-tournaments-table .table-body table tr td:nth-of-type(3) span, .all-tournaments-table .table-body table tr td:nth-of-type(4) span {
        font-size: 13px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(5) span {
        padding: 5px 12px;
        font-size: 13px;
    }
}

@media(max-width: 1400px) {
    .all-tournaments-table .table-body table tr td:nth-of-type(3) span {
        padding: 5px 3px;
    }

    .tournament-details {
        width: 29%;
    }

    .all-tournaments-table .table-head th:nth-of-type(1), .all-tournaments-table .table-body td:nth-of-type(1) {
        width: 8%;
    }

    .all-tournaments-table .table-body tr:nth-of-type(2), .all-tournaments-table .table-body td:nth-of-type(2), .all-tournaments-table .table-head th:nth-of-type(2) {
        width: 20%;
        font-size: 14px;
    }

    .all-tournaments-table .table-head th:nth-of-type(4), .all-tournaments-table .table-body td:nth-of-type(4) {
        width: 19%;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(5) span {
        padding: 5px 12px;
        font-size: 13px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(6) button {
        width: 120px;
        font-size: 12px;
    }

    .tournament-details-header li {
        font-size: 14px;
    }

    .tournament-details-info div span:nth-of-type(1) {
        font-size: 13px;
    }

    .all-tournaments-table .table-head, .all-tournaments-table .table-body {
        width: calc(100% - 10px);
    }

    .data-label {
        width: 34px;
    }

        .data-label tr th {
            padding-left: 2px;
            font-size: 14px;
        }
}

@media(max-width: 1300px) {
    .tournament-details-header li {
        font-size: 14px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(5) span {
        padding: 5px 7px;
    }
}

@media(max-width: 1150px) {
    .tournament-details .close {
        font-size: 25px;
        margin-right: 2px;
        padding: 15px;
        margin-top: 17px;
    }

    .tournament-details-info div span:nth-of-type(1) {
        font-size: 13px;
    }

    .tournament-details-info div span:nth-of-type(2), .tournament-details-info div span:nth-of-type(3) {
        font-size: 13px;
    }

    .tournament-details-header li {
        font-size: 11px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(3) span, .all-tournaments-table .table-body table tr td:nth-of-type(4) span {
        font-size: 13px;
    }

    .all-tournaments-table .table-body table tr td:nth-of-type(6) button {
        padding: 6px 9px;
        width: 110px;
        font-size: 11px;
    }
}

@media (max-width: 800px) {
    .all-tournaments-table {
        width: 98%;
        float: left;
        height: 64%;
        position: absolute;
        bottom: 1px;
    }

    .tournament-details {
        width: 94%;
        position: absolute;
        height: 33%;
        margin-top: 9px;
        margin-left: 2%;
    }

    .tournament-details-info div {
        height: 38px;
    }

    .tournament-details-levels table tr, .tournament-details-structure table tr {
        height: 38px;
    }

    .tournament-details-info div:nth-of-type(1) h3 {
        padding-top: 13px;
    }

    .tournament-details-info div:nth-of-type(1) span {
        padding-top: 6px;
    }
}

@media(max-width: 800px) {
    .all-tournaments-table {
        width: 98%;
    }

    .tournament-details {
        width: 98%;
    }
}

@media(max-width: 600px) {
    .tournaments-container {
        overflow-y: auto;
    }

    .tournament-details {
        width: 85%;
        right: -10px;
        height: 80%;
        min-height: 500px;
        position: fixed;
        top: 45px;
    }

    .tournament-details-header li:nth-of-type(1), .tournament-details-header li:nth-of-type(2) {
        width: 30%;
        background-color: transparent;
    }

    .tournament-details-info, .tournament-details-levels, .tournament-details-structure {
        background-color: #252435;
        background-image: none;
    }

    .tournament-details-header {
        height: 40px;
        color: white;
        font-size: 0;
        background-color: #3c3b56;
    }

        .tournament-details-header li:nth-of-type(3) {
            width: 40%;
            border-top-right-radius: 10px;
        }

        .tournament-details-header li.active {
            background-color: #615E80;
        }

    .tournament-id-container {
        background-color: #252435;
        padding: 7px 6px;
    }

        .tournament-id-container span {
            float: right;
            color: aliceblue;
            font-size: 13px;
            color: #d3980f;
        }

        .tournament-id-container img {
            width: 20px;
        }

            .tournament-id-container span:last-of-type {
                color: white;
            }

    .tournament-details-info div:nth-of-type(1) {
        height: 16%;
    }

        .tournament-details-info div:nth-of-type(1) h3 {
            padding-top: 13px;
        }

        .tournament-details-info div:nth-of-type(1) span {
            font-size: 20px;
        }

    .tournament-details-header li {
        line-height: 40px;
        font-size: 13px;
    }

        .tournament-details-header li:nth-of-type(4) {
            display: none;
        }

    .tournament-details-info div {
        width: calc(100% - 30px);
        margin-left: 15px;
    }

    .all-tournaments-table.large {
        width: 100%;
        pointer-events: auto;
    }

    .all-tournaments-table {
        height: 100%;
        width: 100%;
        pointer-events: none;
    }

        .all-tournaments-table .table-head, .all-tournaments-table .table-body {
            width: calc(100% - 10px);
            margin-left: 5px;
        }

    .data-label {
        width: 100%;
        text-align: left;
        padding: 3px 5px;
        color: white;
        font-size: 15px;
        position: unset;
    }

    .tournament-details-info div:last-of-type {
        width: 100%;
        margin: auto;
        opacity: 1;
        margin-top: 15px;
        display: flex;
    }

    .tournament-info-body {
        width: 99%;
        border-radius: 8px;
        background-color: #44425e;
        color: white;
        display: flex;
        flex-wrap: wrap;
        margin-left: 2px;
        padding: 8px;
    }


        .tournament-info-body div:nth-of-type(1) {
            width: 20%;
        }

        .tournament-info-body div:nth-of-type(2) {
            width: 80%;
        }

            .tournament-info-body div:nth-of-type(2) img {
                width: 23px;
            }

    .tournament-info-footer {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        /*    width: auto;
            margin: auto 0;
            padding-top: 10px;*/
    }


    .tournament-prize-label {
        width: auto !important;
        margin: auto 0;
        padding-top: 10px;
    }

        .tournament-prize-label span {
            border: 1px solid #2D2B46;
            border-radius: 8px;
            padding: 5px 10px;
            background-color: #333149;
            font-size: 11px;
        }

    .tournament-buyIn-label {
        width: auto !important;
        padding-top: 17px;
        font-size: 11px;
    }

        .tournament-buyIn-label span {
            border: 1px solid #1A4989;
            border-radius: 8px;
            padding: 5px 10px;
            background-color: #232236;
        }

    .tournament-register-container {
        width: auto !important;
        padding-top: 10px;
        font-size: 11px;
        padding-right: 5px;
    }

        .tournament-register-container button, .tournament-details-info div:last-of-type button {
            border: 0;
            border-radius: 25px;
            padding: 5px 15px;
            width: 150px;
        }

            .tournament-register-container button:nth-of-type(1), .tournament-details-info div:last-of-type button:nth-of-type(1) {
                background: linear-gradient(#d9a90a, #d9940a);
                margin: auto;
            }

            .tournament-register-container button:nth-of-type(2), .tournament-details-info div:last-of-type button:nth-of-type(2) {
                background: linear-gradient(#f21d23, #ff2740);
                margin: auto;
            }

            .tournament-register-container button:nth-of-type(3), .tournament-details-info div:last-of-type button:nth-of-type(3) {
                background-color: #4f4d69;
                margin: auto;
            }

            .tournament-register-container button:nth-of-type(4), .tournament-details-info div:last-of-type button:nth-of-type(4) {
                background: none;
                margin: auto;
                display: flex;
                padding: 7px 2px;
            }

            .tournament-register-container button:nth-of-type(5), .tournament-details-info div:last-of-type button:nth-of-type(5),
            .tournament-register-container button:nth-of-type(6), .tournament-details-info div:last-of-type button:nth-of-type(6),
            .tournament-register-container button:nth-of-type(7), .tournament-details-info div:last-of-type button:nth-of-type(7) {
                background-color: #4f4d69;
                margin: auto;
            }

    .spinner {
        width: 40% !important;
        display: flex;
        margin-top: 3px;
    }

        .spinner div {
            width: 20% !important;
            padding-top: 0px !important;
        }


        .spinner .bounce1, .spinner .bounce2, .spinner .bounce3 {
            width: 8px !important;
            height: 8px !important;
            padding: 0px !important;
            margin: 0px !important;
            border-bottom: none !important;
        }

    .tournament-details-info div:last-of-type .spinner {
        margin-top: 6px;
        margin-left: 18px;
        transform: scale(1.3);
    }

    .tournaments-container {
        margin-top: 15px;
        height: calc(100% - 65px);
        min-height: 190px;
        background-color: transparent;
    }

    .all-tournaments-content {
        background-color: transparent;
    }

    .tournaments-header {
        display: none;
    }

    .tournaments-content {
        height: 100%;
    }

    .next-tournament {
        display: none;
    }

    .tournament-tabs {
        max-width: 100%;
    }

    .tournament-tab {
        width: 260px;
        height: 100%;
    }

        .tournament-tab section {
            border-radius: 8px;
        }

        .tournament-tab div:nth-of-type(2) {
            width: 50%;
        }

        .tournament-tab div:nth-of-type(3) {
            width: 50%;
        }

            .tournament-tab div:nth-of-type(3) span:nth-of-type(2n) {
                font-size: 22px;
                margin-top: -4px;
            }

        .tournament-tab div:nth-of-type(2) img {
            width: 90px;
            float: right;
        }

        .tournament-tab div:nth-of-type(4) img {
            margin-top: 7%;
        }

        .tournament-tab div:nth-of-type(4) span {
            margin-top: 6%;
            font-size: 14px;
        }

        .tournament-tab div:nth-of-type(4) {
            height: 25%;
            padding: 0 3%;
            margin-top: -10px;
        }

            .tournament-tab div:nth-of-type(4) button {
                padding: 9px 14px;
                border-radius: 6px;
            }
}


@media(max-width: 420px) {
    .tournament-info-body div:nth-of-type(4) span {
        padding: 5px 8px;
        margin: auto;
    }

    .tournament-info-body {
        padding: 8px 5px;
        font-size: 13px;
    }

        .tournament-info-body div:nth-of-type(4) {
            margin: auto 0;
            margin-left: 3px;
            width: 97px;
            display: flex;
        }

    .tournament-register-container button {
        width: 122px;
        padding: 6px 5px;
        margin: auto;
        font-size: 11px;
    }
}


@media(max-width: 370px) {
    .tournament-prize-label span {
        font-size: 10px;
    }

    .tournament-info-body div:nth-of-type(3) span, .tournament-info-body div:nth-of-type(4) span {
        padding: 5px 4px;
    }

    .tournament-register-container button {
        width: 112px;
        padding: 6px 0px;
        font-size: 10px;
    }
}

@media(max-height: 700px) {
    .tournaments-container {
        min-height: 245px;
    }
}

.light-blue{width:100%;margin-left:0;height:calc(var(--app-height) - 55px);overflow-y:hidden;margin-top:6px;}.roll-game-container{width:100%;height:calc(var(--app-height) - 80px);display:grid;grid-template-columns:1fr 38.55% 19.54vw;column-gap:8px;}.right-panel{display:flex;grid-gap:20px;overflow-y:auto;height:calc(var(--app-height) - 80px);display:grid;grid-template-rows:56% fit-content(41%);}.left-panel{height:calc(var(--app-height) - 80px);display:flex;flex-direction:column;}.game-container{display:flex;flex-direction:column;justify-content:space-between;width:100%;height:auto;}.game-container .game-body{display:flex;flex-direction:column;position:relative;height:max-content;}.game-container .game-body .dice-container{display:flex;justify-content:space-around;align-items:center;width:100%;height:70px;}.game-container .game-body .dice-container .roll-game-button-container{margin:0;}.game-container .game-body .dice-container .tile-amount-choose-label{margin-top:30px;}.rules-container{width:100%;margin-top:2%;border-radius:10px;border:2px solid #ffffff4d;display:flex;flex-direction:column;justify-content:start;padding:20px;padding-right:12px;overflow:hidden;background:rgba(38,10,19,.8);}.rules-container-scrollDiv{overflow:auto;padding-right:8px;}.rules-container-scrollDiv::-webkit-scrollbar{width:4px !important;border-radius:8px;}.rules-container-scrollDiv::-webkit-scrollbar-track{background-color:#44101d;box-shadow:none !important;}.rules-container-scrollDiv::-webkit-scrollbar-thumb{background:#fff;}.position-container{width:100%;float:right;display:flex;}.leader-board-container{width:100%;float:right;background-color:rgba(38,10,19,.8);margin-top:8px;border-radius:10px;display:flex;flex-direction:column;padding-bottom:10px;max-height:calc(82vh - 80px);}.player-point-container{border-radius:10px;background-color:rgba(38,10,19,.8);width:100%;display:grid;padding:17px;}@media only screen and (max-width:1100px){.roll-game-container{padding:15px;display:flex;flex-wrap:wrap;column-gap:0;grid-template-columns:auto;}.right-panel{width:49%;}.left-panel{width:49%;margin-left:2%;}.player-point-container{margin:auto;}}.player-point-container span,.player-position-container span{color:#fff;font-size:1.2vw;text-align:center;margin:auto;font-family:'NeueCrocosansMediumMed';font-weight:500;}.player-point-container span.point,.player-position-container span.point{color:#0d9d33;font-weight:bold;font-size:5.5vh;}.player-position-container{border-radius:0 10px 10px 0;background-color:#3c3b56;width:49.3%;margin-left:1.4%;padding:25px;display:grid;}.leader-board-container .header{color:#fff;text-align:center;padding:18px;font-size:19px;letter-spacing:.7px;line-height:24px;font-family:'NeueCrocosansMediumMed';}.leader-board-container .header p{position:relative;margin:0 auto;width:max-content;font-size:1vw;}.leader-board-container .header p:before{content:'';width:100%;height:3px;position:absolute;bottom:-21px;left:0;background:#fff;}@media only screen and (max-width:1370px){.leader-board-container .header p{font-size:1vw;}}@media only screen and (max-width:1100px){.leader-board-container .header p{font-size:1.3vw;}}@media only screen and (max-width:900px){.leader-board-container .header p{font-size:unset;}.leader-board-container .header p:before{height:2px;bottom:-14px;}}@media only screen and (max-width:500px){.leader-board-container .header p{width:80%;}}.divider{width:100%;background-color:#44101d;height:3px;}.accordion-item{margin-bottom:1rem;color:#fff;}.accordion-item:last-child{margin-bottom:0 !important;}.accordion-link{font-size:1.4rem;text-decoration:none;color:#fff;width:100%;background-color:#430f1c;padding:9px;display:flex;justify-content:space-between;border-radius:6px;padding-left:20px;cursor:pointer;font-family:'NeueCrocosansMediumMed';line-height:21px;}.accordion-link img{transform:rotate(0deg);transition:all .4s;width:16px;height:16px;}.accordion-link img.up{width:16px;height:16px;transform:rotate(180deg);}.accordion-link a{text-decoration:none;text-transform:uppercase;}a:link{text-decoration:none;}a:visited{text-decoration:none;}a:hover{text-decoration:none;color:#fff;}a:active{text-decoration:none;}.answer{max-height:0;overflow:hidden;position:relative;transition:max-height 650ms;transition-timing-function:ease-in;color:#d2d0e6;font-size:1.4rem;line-height:21px;color:#fff;}.answer p{padding:8px 15px;font-size:1.4rem;margin:0;}.answer.active{max-height:80rem;}.rules-table{margin:10px;width:48%;text-align:center;}.rules-table th{text-align:center;}.game-container .header{text-align:center;height:9%;}.game-container .header p{font-size:24px;color:#fff;}.leaderboard-table-container{padding:20px;overflow:auto;}.leaderboard-table-container table{width:100%;text-align:center;color:#fff;border-collapse:separate;border-spacing:0 8px;font-family:'NeueCrocosansMediumMed';}@media only screen and (max-width:900px){.leaderboard-table-container table{border-spacing:0 2px;}}.leaderboard-table-container table td{opacity:.8;}.leaderboard-table-container table th{text-align:center;font-size:1em;}.leaderboard-table-container table thead{background-color:rebeccapurple;border-radius:5px;height:50px;}.leaderboard-table-container table th{height:55px;font-size:15px;font-weight:500;font-family:'NeueCrocosansMediumMed';}@media(min-width:1100px) and (max-width:1300px){.leaderboard-table-container table th{font-size:13px;}}.leaderboard-table-container table th:nth-child(3){width:24%;}.leaderboard-table-container table tr{height:45px;background-color:#44101d;}.leaderboard-table-container table tr.player-score{color:#fff;background-color:#0d9d33;}.leaderboard-table-container table th:first-child{border-top-left-radius:6px;border-bottom-left-radius:6px;}.leaderboard-table-container table th:last-child{border-top-right-radius:6px;border-bottom-right-radius:6px;}.leaderboard-table-container table tr td:last-child{border-top-right-radius:6px;border-bottom-right-radius:6px;}.leaderboard-table-container table tr td:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px;}.roll-game-count-label{color:#fff;font-size:20px;margin:20px;font-family:'NeueCrocosansMediumMed';font-size:16px;line-height:21px;margin:0 !important;margin-top:30px !important;}.roll-game-count-label span{font-size:16px;font-weight:600;line-height:21px;}.roll-game-count-label span.green{color:#0d9d33;}.game-body{height:46%;}.leader-board-info{color:#fff;font-size:18px;text-align:center;width:100%;padding:4px 13px;}.leader-board-info span{font-size:14px;}.leader-board-info p{margin:3px;font-family:'NeueCrocosansMediumMed';font-size:16px;line-height:26px;}.history-button-container{width:100%;text-align:center;}.roll-game-button-container{width:100%;text-align:center;margin-top:10px;position:absolute;z-index:99;}.roll-history-button{background-color:#2c0b15;border:none;display:inline-block;margin:4px 2px;cursor:pointer;border:1px solid #c2d6e733;border-radius:30px;cursor:pointer;padding:7px 32px;font-size:1.6rem;font-weight:500;line-height:26px;color:#fff;font-family:'NeueCrocosansMediumMed';}.roll-game-button{background:#0d9c32;border-radius:8px;color:#fff;border:none;padding:13px 34px;font-size:18px;box-shadow:1px 0 3px 0 rgba(62,61,61,.639);}.dice-container{width:100%;display:flex;justify-content:space-around;align-items:center;}.die[disabled],.roll-game-button[disabled]{opacity:.6;pointer-events:none;}.die{cursor:pointer;-webkit-backface-visibility:hidden;backface-visibility:hidden;display:flex;justify-content:center;align-items:center;}.die__back img,.die__front img{width:7em;}.die__back,.die__front{transition:all .2s;transform-style:preserve-3d;position:absolute;z-index:10;display:flex;justify-content:center;align-items:center;}.die__front{z-index:1;}.die__back.rotated{transform:rotateY(180deg);opacity:0;}.die__front.rotated{transform:rotateY(180deg);}.die__back::after{position:absolute;content:'?';font-size:35px;color:#4f4e6d;top:23%;text-align:center;left:38%;}.tile-amount-choose-label{font-size:18px;color:#fff;text-align:center;margin-top:23px;}.tile-amount-choose-label.hidden{opacity:0;}@media(max-width:1000px){.leader-board-container .header{font-size:12px;}}@media(max-width:1600px){.leader-board-info{font-size:16px;}.leader-board-info span{font-size:12px;}.accordion-link{font-size:1.4rem;padding:4px;}.die__back img,.die__front img{width:5em;}.die__back::after{top:16%;font-size:31px;}}@media(max-width:900px){.roll-game-button-container{left:-24%;}.player-point-container{padding:8px;}.player-point-container span,.player-position-container span{font-size:15px;}.leaderboard-table-container{padding:6px;}.leaderboard-table-container table tr{height:39px;}.leaderboard-table-container table th{height:47px;}.dice-container{height:80%;display:grid;grid-template-columns:repeat(3,auto);justify-content:space-evenly;grid-gap:6px;}.die{width:70px;height:70px;}.die__back,.die__front{margin-left:0;}.die__front{margin-top:0;}}@media(max-width:900px){.roll-game-container{overflow:auto;max-height:100%;}.right-panel{display:flex;flex-wrap:wrap;grid-template-rows:auto;}.roll-game-button-container{margin-top:0;left:0%;}.game-body{width:100%;height:70%;display:flex;flex-direction:column;}.roll-game-container{height:auto;padding:10px;}.game-container{display:flex;flex-direction:column;min-height:310px;justify-content:space-between;padding-bottom:10px;}.roll-game-container{padding:10px;}.roll-game-count-label{font-size:16px;margin:7px;}.tile-amount-choose-label{font-size:13px;margin-top:10px;}.right-panel,.left-panel{width:100%;margin-left:0;}.leaderboard-table-container table th{font-size:12px;}}@media only screen and (max-width:1550px){.roll-game-count-label{margin:10px 0 10px 0 !important;}.tile-amount-choose-label{margin-top:15px !important;font-size:16px !important;}}@media only screen and (max-width:1550px) and (max-height:650px){.roll-history-button{padding:5px 25px;font-size:1.4rem;line-height:23px;}}@media only screen and (max-width:1550px){.leader-board-info{font-size:14px;}}
.cash-tables-container {
    width: 100%;
    height: 85%;
    border-radius: 8px;
    min-height: 475px
}

.table-container.large {
    height: 99%;
}

.table-container.out {
    position: absolute;
    height: 85px;
    min-height: 0;
}

.cash-table-header {
    width: 100%;
    height: 85px;
    background-color: #232236;
    position: relative;
    /*border-radius: 10px 10px 0px 0px;*/
}

.cash-tab {
    float: left;
    background-color: #3c3b56;
    padding: 10px 30px;
    padding-right: 0;
    height: 100%;
    width: 100px;
    border-top-left-radius: inherit;
    color: white;
    font-size: 16px;
    line-height: 60px;
    font-family: 'Play-Regular-CAPS';
}

    .cash-tab.out {
        border-bottom-left-radius: 8px;
    }

.bet-sm-filter-arrow {
    display: none;
}

.filters-container {
    float: left;
    background-color: #232236;
    padding: 10px;
    padding-right: 0;
    height: 100%;
    width: 99%;
    border-radius: 8px;
}

    .filters-container.out {
        display: none;
    }

.bet-filters, .score-filters, .bet-type-filters {
    float: left;
    margin: 0 10px;
    height: 100%;
    margin-right: 22px;
}

    .bet-filters span, .score-filters span, .bet-type-filters span {
        display: block;
        padding-bottom: 8px;
        color: #918fa3;
    }

    .bet-filters .btn-sm,
    .score-filters .btn-sm,
    .bet-type-filters .btn-sm {
        margin: 20px 8px 0px 8px;
        font-size: 13px;
        padding: 6px 12px;
    }

        .bet-filters .btn-sm.active {
            background-image: linear-gradient(to right, #1C4C8A, #34608A);
            border-color: transparent;
        }

        .score-filters .btn-sm.active {
            background-image: linear-gradient(to right, #782039, #7B3843);
            border-color: transparent;
        }

        .bet-type-filters .btn-sm.active {
            background-image: linear-gradient(to right, #8A3F2A, #895F2D) !important;
            border: 1px solid transparent !important;
        }

.bet-btn-container {
    position: absolute;
    padding: 10px;
    left: 0;
    top: 90px;
    z-index: 1;
    background-color: #232236;
    border-radius: 8px;
    width: 100%;
    border: 1px solid #3c3b56;
}

.score-btn-container {
    position: absolute;
    padding: 10px;
    left: 0;
    top: 90px;
    z-index: 1;
    background-color: #232236;
    border-radius: 8px;
    width: 100%;
    border: 1px solid #3c3b56;
}

.type-btn-container {
    position: absolute;
    padding: 10px;
    left: 0;
    top: 90px;
    z-index: 1;
    background-color: #232236;
    border-radius: 8px;
    width: 100%;
    border: 1px solid #3c3b56;
}

.bet-filters button {
    background: inherit;
    border: 1px solid #1b90eb;
    padding: 6px 18px;
    border-radius: 25px;
    color: white;
    margin: 0 5px;
    font-family: 'Play-Regular-CAPS';
}

    .bet-filters button:nth-of-type(1) {
        margin-left: 0px;
    }


.bet-filters .reload {
    border: 0;
    display: none;
    padding: 6px;
}

.bet-filters button.active {
    background: linear-gradient(to right, #54bbfb, #1877e5);
    border-color: #1877e5;
}

.score-filters button {
    background: inherit;
    border: 1px solid #ed224a;
    padding: 5px 12px;
    border-radius: 25px;
    color: white;
    margin: 0 5px;
    font-family: 'Play-Regular-CAPS';
}

    .score-filters button:nth-of-type(1) {
        margin-left: 0;
    }

.score-filters .reload {
    border: 0;
    display: none;
    padding: 6px;
}

.score-filters button.active {
    background: linear-gradient(#dd5356, #de3b4d);
    border-color: #de3b4d;
}

.bet-type-filters button {
    background: inherit;
    padding: 6px 10px;
    border-radius: 25px;
    color: white;
    margin: 0 5px;
    border: none;
    width: 90px;
    font-family: 'Play-Regular-CAPS';
}

    .bet-type-filters button:nth-of-type(1) {
        margin-left: 0;
        border: 1px solid #ffb633;
        /*border: 1px solid #896F1A;
        background-image: linear-gradient(to right, #8A3F2A, #895F2D);*/
    }

        .bet-type-filters button:nth-of-type(1).active {
            background: linear-gradient(#ffb633, #fb6325);
            border: none;
        }

    .bet-type-filters button:nth-of-type(2) {
        border: 1px solid #07ab5d;
    }

        .bet-type-filters button:nth-of-type(2).active {
            background: linear-gradient(#07ab5d, #185545);
            border: none;
        }

    .bet-type-filters button:nth-of-type(3) {
        border: 1px solid #49769a;
    }

        .bet-type-filters button:nth-of-type(3).active {
            background: linear-gradient(#49769a, #2f3c54);
            border: none;
        }

    .bet-type-filters button:nth-of-type(4) {
        border: 1px solid #b22355;
    }

        .bet-type-filters button:nth-of-type(4).active {
            background: linear-gradient(#b22355, #4f2240);
            border: none;
        }

.bet-type-filters .reload {
    border: 0;
    display: none;
    padding: 6px;
    width: auto;
}


.filters-clear-btn {
    background: inherit;
    border: 0;
    outline: 0;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-top: 30px;
    margin-left: 5px;
}

    .filters-clear-btn img {
        width: 100%;
        height: 100%;
    }

.filter-submit {
    float: right;
    height: 100%;
    margin-right: -11px;
}

    .filter-submit button span {
        display: none;
    }

    .filter-submit span {
        color: white;
        line-height: 20px;
        margin: 20px 0;
        display: block;
        float: left;
        font-size: 16px;
        font-family: 'Play-Regular-CAPS';
    }

    .filter-submit button {
        background-color: #655dd1;
        border: 0;
        padding: 5px 8px;
        border-radius: 25px;
        margin: 15px;
    }

    .filter-submit button img {
        width: 16px;
        height: 15px;
    }

.jackpot-container {
    height: 100%;
    float: left;
    width: 20%;
    background-color: #1d1c2d;
    border-top-right-radius: inherit;
    /*display: none;*/
}

    .jackpot-container.out {
        display: none;
    }

    .jackpot-container img:nth-of-type(1) {
        display: block;
        float: left;
        margin-top: 10%;
        margin-left: 5%;
        margin-bottom: 10%;
    }

    .jackpot-container span {
        display: block;
        float: left;
        width: calc(100% - 70px);
        height: 45%;
        padding-left: 5%;
        padding-top: 3%;
        color: white;
    }

    .jackpot-container .jackpot {
        display: block;
        float: left;
        width: calc(100% - 70px);
        height: 55%;
        padding-left: 5%;
        color: white;
    }

        .jackpot-container .jackpot div {
            float: left;
            padding: 4px 6px;
            background-color: #3b3952;
            border-radius: 4px;
            font-size: 17px;
            line-height: 18px;
            margin: 0 2.5px;
        }

        .jackpot-container .jackpot img {
            margin: 2px 0 0 5px;
        }


.sort-arrow {
    transform: rotate(90deg);
    margin-left: 7px;
    filter: contrast(0.5);
    cursor: pointer;
    transition: all 0.5s;
}

    .sort-arrow.up {
        transform: rotate(-90deg);
    }

.table-content {
    position: relative;
    width: 100%;
    height: calc(100% - 60px);
}

    .table-content.out {
        display: none;
    }

.table-search {
    position: absolute;
    top: 0;
    left: 0;
    background: #27263b;
    height: 50px;
    width: 18%;
    border-radius: 10px;
    top: 10px;
    left: 20px;
}

    .table-search input {
        width: 80%;
        height: 100%;
        float: left;
        background: inherit;
        border: 0;
        border-radius: 10px 0 0 10px;
        padding-left: 10px;
        outline: none;
        color: #93939d;
    }

        .table-search input::placeholder {
            color: #93939d;
        }

    .table-search button {
        width: 20%;
        height: 100%;
        border: none;
        background: inherit;
        border-radius: 0px 10px 10px 0;
    }

.table-content .table-create-btn-container {
    display: none;
}

.table-content .table-head {
    height: 60px;
    width: 95%;
    margin-left: 20px;
}

    .table-content .table-head table {
        background: inherit;
        color: #8a8996;
        font-weight: 300;
        font-size: 16px;
        width: 100%;
    }

.table-content .table-body section {
    display: none;
}

.search-input {
    color: white;
    width: 60%;
    border-radius: 10px;
    border: none;
    background-color: #232236;
    height: 47px;
    background-image: url('Images/search.png');
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: center;
    outline: none;
    padding-left: 10px;
    padding-right: 45px;
    font-weight: lighter;
    font-size: 14px;
    min-width: 140px;
}

.switch-wrap {
    cursor: pointer;
    /*background: #15273b;*/
    background: #232236;
    padding: 3px;
    width: 45px;
    height: 25px;
    border-radius: 33.5px;
    margin-left: 6px;
    margin-top: 10px;
}

    .switch-wrap input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
    }

.switch {
    height: 100%;
    display: grid;
    grid-template-columns: 0fr 1fr 1fr;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

    .switch::after {
        content: "";
        border-radius: 50%;
        background: #ccc;
        grid-column: 2;
        -webkit-transition: background 0.2s;
        transition: background 0.2s;
    }

input:checked + .switch {
    grid-template-columns: 1fr 1fr 0fr;
}

    input:checked + .switch::after {
        background-color: #52cf71;
    }

.table-content .table-head table tr {
    height: 60px;
    /* width: 30%; */
}

    .table-content .table-head table tr th:nth-of-type(1) {
        width: 28%;
        text-align: left;
        padding-top: 5px;
    }

        .table-content .table-head table tr th:nth-of-type(1) .filters-clear-btn {
            margin-top: 0px;
        }

    .table-content .table-head table tr th:nth-of-type(2), .table-content .table-head table tr th:nth-of-type(3), .table-content .table-head table tr th:nth-of-type(4) {
        width: 11%;
        text-align: center;
    }

    .table-content .table-head table tr th:nth-of-type(5) {
        width: 23%;
        text-align: right;
        vertical-align: middle;
        color: #c1bfdb;
        font-size: 14px;
    }

        .table-content .table-head table tr th:nth-of-type(5) span {
            vertical-align: super;
        }

            .table-content .table-head table tr th:nth-of-type(5) span:first-child {
                display: none;
            }

.table-content .table-body {
    height: calc(100% - 60px);
    width: calc(100% - 20px);
    margin: 10px 20px 0 20px;
    overflow: auto;
    background: inherit;
    overflow-x: hidden;
}

    .table-content .table-body table {
        width: 99%;
        background: inherit;
        color: white;
    }

        .table-content .table-body table tr {
            background-color: #44425e;
            height: 50px;
        }

    .table-content .table-body table {
        border-collapse: separate;
        border-spacing: 0 10px;
    }

    .table-content .table-body tr td:first-child {
        border-top-left-radius: 10px;
    }

    .table-content .table-body tr td:last-child {
        border-top-right-radius: 10px;
    }

    .table-content .table-body tr td:first-child {
        border-bottom-left-radius: 10px;
    }

    .table-content .table-body tr td:last-child {
        border-bottom-right-radius: 10px;
    }

    .table-content .table-body tr td:nth-of-type(1) {
        text-align: center;
        padding-left: 10px;
        width: 32%;
    }

        .table-content .table-body tr td:nth-of-type(1) img {
            width: 30px;
            height: 30px;
            display: block;
            float: left;
            margin-right: 10px;
            border-radius: 25px;
        }

        .table-content .table-body tr td:nth-of-type(1) span {
            display: block;
            float: left;
            line-height: 30px;
        }

    .table-content .table-body tr td {
        padding-top: 0px;
        width: 13%;
        text-align: center;
    }

        .table-content .table-body tr td:nth-of-type(2) .offer-bet-container {
            background-color: #33324a;
            padding: 5px 16px;
            border-radius: 25px;
            font-size: 15px;
            border: 1px solid #3699f0;
        }

            .table-content .table-body tr td:nth-of-type(2) .offer-bet-container span:nth-of-type(2) {
                color: #a3b1c3;
                font-size: 13px;
                padding-left: 7px;
            }

        .table-content .table-body tr td:nth-of-type(3) span {
            background-color: #33324a;
            padding: 5px 11px;
            border-radius: 25px;
            font-size: 15px;
            border: 1px solid #3699f0;
            border: 1px solid #da4350;
            padding: 5px 10px;
            border-radius: 25px;
            color: white;
        }


        .table-content .table-body tr td:nth-of-type(4) span {
            background-color: #33324a;
            padding: 5px 16px;
            border-radius: 25px;
            font-size: 15px;
            border: 1px solid #fc7728;
        }

        .table-content .table-body tr td:nth-of-type(5) {
            text-align: right;
            width: 29%;
            padding-right: 14px;
        }

            .table-content .table-body tr td:nth-of-type(5) button {
                border: 0;
                border-radius: 25px;
                padding: 6px 20px;
            }

                .table-content .table-body tr td:nth-of-type(5) button img {
                    display: block;
                    float: right;
                    margin-left: 10px;
                    line-height: 25px;
                    height: 10px;
                    margin-top: 5px;
                }

    .table-content .table-body button:nth-of-type(1) {
        background: linear-gradient(#12bb52, #0b972c);
    }

    .table-content .table-body button:nth-of-type(2) {
        background: linear-gradient(#f21d23, #ff2740);
    }

    .table-content .table-body button:nth-of-type(3) {
        background: linear-gradient(#7a7a7a, #626262);
    }

.table-content ::-webkit-scrollbar {
    width: 10px;
}

.table-content ::-webkit-scrollbar-thumb {
    background-color: #4e4c69;
    border-radius: 4px;
}

.table-content ::-webkit-scrollbar-track {
    background-color: #3b3952;
}

@media screen and (max-width: 1800px) {
    .bet-filters, .score-filters, .bet-type-filters {
        margin-left: 0;
    }

        .bet-filters button {
            padding: 6px 6px;
            margin: 0 3px;
        }

        .score-filters button {
            padding: 5px 12px;
            margin: 0 2px;
        }

        .bet-type-filters button {
            padding: 6px 6px;
            margin: 0 2px;
            font-size: 12px;
        }

    .filter-submit span {
        font-size: 13px;
    }

    .filter-submit button {
        margin: 15px 5px;
    }
}

@media screen and (max-width: 1400px) {
    .online-users {
        display: flex;
        color: #ffb400;
        font-size: 18px;
        float: right;
        height: 40px;
        align-items: flex-end;
    }

        .online-users img {
            width: 30px;
            height: 27px;
        }

        .online-users span {
            padding: 0 20px 0 10px;
        }

    .table-content .table-body {
        height: calc(100% - 100px);
    }

    .bet-filters .reload {
        display: block;
    }

    .score-filters .reload {
        display: block;
    }

    .bet-type-filters .reload {
        display: block;
    }

    .filter-submit span {
        font-size: 16px;
    }

    .filter-submit button {
        margin: 15px;
    }

    .filters-clear-btn {
        margin-top: 25px;
        width: 25px;
        height: 25px;
    }

    .type-btn-container button:last-of-type {
        font-size: 21px;
    }

    .filters-container {
        width: calc(100% - 15px);
    }

    .jackpot-container {
        display: none;
    }

    .table-content .table-body tr td:last-child button img {
        display: none;
    }

    .table-content .table-body tr td:nth-of-type(2) .offer-bet-container span:nth-of-type(2) {
        padding-left: 3px;
    }

    .table-content .table-body tr td:nth-of-type(2) .offer-bet-container {
        padding: 5px 10px;
    }
}

@media(max-width: 1200px) {
    .table-content .table-head table tr th:nth-of-type(5) {
        font-size: 12px;
    }

    .switch-wrap {
        margin-top: 5px;
    }
}


@media(max-width: 1100px) {
    .table-content .table-head table tr th:nth-of-type(5) span:first-child {
        display: inline;
    }

    .table-content .table-head table tr th:nth-of-type(5) span:nth-child(2) {
        display: none;
    }

    .table-content .table-body {
        height: calc(100% - 161px);
    }

    .table-content .table-create-btn-container {
        display: block;
        position: absolute;
        bottom: -3px;
        height: 72px;
    }

    .table-create-btn-container div {
        width: 240px;
    }

    .table-content .table-head table tr th:nth-of-type(1) {
        width: 27%;
    }

    .table-content .table-head table tr th:nth-of-type(2), .table-content .table-head table tr th:nth-of-type(3), .table-content .table-head table tr th:nth-of-type(4) {
        width: 18%;
    }

    .table-content .table-body tr td:nth-of-type(1) {
        width: 27%;
    }

    .table-content .table-body tr td {
        width: 18%;
    }
}

@media screen and (max-width: 1000px) {

    .table-content .table-head table {
        font-size: 14px;
    }

    .table-content .table-body tr td:nth-of-type(2) span,
    .table-content .table-body tr td:nth-of-type(3) span,
    .table-content .table-body tr td:nth-of-type(4) span {
        font-size: 13px;
    }
}

@media screen and (max-width: 900px) {
    .switch-wrap {
        transform: scale(0.9);
        margin-left: -2px;
    }

    .table-content .table-body tr td:nth-of-type(2) .offer-bet-container span:nth-of-type(2) {
        padding-left: 1px;
    }

    .table-content .table-body tr td:nth-of-type(2) span, .table-content .table-body tr td:nth-of-type(3) span, .table-content .table-body tr td:nth-of-type(4) span {
        font-size: 12px;
    }

    .filter-submit span {
        font-size: 13px;
    }

    .filter-submit button {
        margin: 15px 5px;
    }

    .table-search input {
        width: 65%;
    }

    .table-search button {
        width: 25%;
    }

    .table-content .table-body tr td:nth-of-type(3) .offer-bet-container {
        padding: 5px 2px;
    }

    /*.user-balance button {
        width: 30px;
        height: 30px;
        margin-top: 5px;
    }*/
}

@media screen and (max-width: 720px) {
    .table-content .table-body {
        margin-left: 4px;
    }

    .table-content .table-body, .table-content .table-head {
        width: calc(100% - 4px);
        margin: 8px 3px 0 6px;
    }

        .table-content .table-body tr td:nth-of-type(5) {
            padding-right: 6px;
        }

    .table-create-btn-container {
        height: 100px;
    }

    .table-content .table-head table tr th {
        font-size: 13px;
    }

        .table-content .table-head table tr th:nth-of-type(1) {
            width: 22%;
        }

    .table-content .table-body tr td:nth-of-type(1) {
        width: 28%;
        font-size: 12px;
        padding-left: 5px;
    }

        .table-content .table-body tr td:nth-of-type(1) img {
            margin-right: 5px;
        }

    .table-content .table-body tr td:nth-of-type(2) {
        width: 29%;
    }

    .table-content .table-body tr td:nth-of-type(3) {
        width: 10%;
        font-size: 11px;
    }

    .table-content .table-body tr td:nth-of-type(4) {
        width: 25%;
        font-size: 11px;
    }

        .table-content .table-body tr td:nth-of-type(2) span,
        .table-content .table-body tr td:nth-of-type(3) span,
        .table-content .table-body tr td:nth-of-type(4) span {
            font-size: 11px;
        }

    .table-content .table-body tr td:nth-of-type(5) button {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 12px;
    }

        .table-content .table-body tr td:nth-of-type(5) button img {
            display: none;
        }

    .jackpot-container {
        display: none;
    }
}


/*   mobile   */
@media (max-width: 600px) {
    .cash-table-header {
        height: 70px;
    }

    .cash-tables-container {
        width: 100%;
        height: 100%;
    }

    .bet-filters, .score-filters, .bet-type-filters {
        margin-right: 6px;
        flex: none;
    }

    .cash-table-header {
        background-color: #100f28;
    }

    .filter-submit span {
        display: none;
    }

    .filter-submit button {
        display: flex;
    }

        .filter-submit button img {
            margin-top: 2px;
        }

        .filter-submit button span {
            display: block;
            color: white;
            line-height: 20px;
            margin-left: 9px;
            display: block;
            float: left;
            font-size: 16px;
            margin: 0px;
            margin-left: 5px;
        }

    .filter-submit {
        float: left;
        margin: 0 30px;
        margin-left: -1px;
    }

    .bet-filters button.active, .score-filters button.active, .bet-type-filters button:nth-of-type(1).active,
    .bet-type-filters button:nth-of-type(2).active, .bet-type-filters button:nth-of-type(3).active, .bet-type-filters button:nth-of-type(4).active {
        background: none;
        background-color: #535277;
    }

    .bet-type-filters button:nth-of-type(1).active,
    .bet-type-filters button:nth-of-type(2).active, .bet-type-filters button:nth-of-type(3).active, .bet-type-filters button:nth-of-type(4).active {
        border: 1px solid #896F1A;
    }

    .bet-type-filters button:nth-of-type(1), .bet-type-filters button:nth-of-type(2), .bet-type-filters button:nth-of-type(3), .bet-type-filters button:nth-of-type(4) {
        border: 1px solid #896F1A;
    }

    .bet-filters button {
        border: 1px solid #1A4989;
        background-color: #232236;
    }

    .score-filters button {
        border: 1px solid #8E3C52;
        background-color: #232236;
        border-radius: 4px;
        padding: 6px 15px;
    }

    .bet-type-filters button {
        background-color: #232236;
        border-radius: 4px;
        padding: 7px 15px;
    }

    .bet-btn-container, .score-btn-container, .type-btn-container {
        left: 4px;
        top: 73px;
        width: 100%;
        padding: 0px;
        background-color: transparent;
        border: none;
    }

        .type-btn-container button {
            width: 70px !important;
            padding: 7px 6px;
        }

            .type-btn-container button:last-of-type {
                font-size: 23px;
            }

    .score-filters button:last-child {
        padding: 6px 15px;
    }

    .bet-btn-container button {
        padding: 6px 15px;
        border-radius: 4px;
        min-width: 80px;
    }

        .bet-btn-container button:nth-child(3) {
            margin-left: 0px;
        }

        .bet-btn-container button:last-of-type, .type-btn-container button:last-of-type, .score-btn-container button:last-of-type {
            width: 40px !important;
            min-width: 40px;
            background-color: #38374E;
            margin-right: 9px;
            padding: 6px;
        }

    .bet-filters .btn-sm, .score-filters .btn-sm, .bet-type-filters .btn-sm {
        font-size: 11px;
        margin: 10px 4px 0 4px;
        padding: 18px;
        border-radius: 8px;
    }

    .filter-submit button {
        margin: 10px 4px 0 4px;
        padding: 16px 14px;
        border-radius: 8px;
        background-color: #232236;
        border: 1px solid #2e2d43;
    }

    .cash-tab {
        display: none;
    }

    .filters-container {
        width: 100%;
        padding-left: 4px;
    }

    .jackpot-container {
        display: none;
    }

    .bet-sm-filter-arrow {
        display: block;
        float: right;
        transform: rotate(90deg);
        width: 6px;
        margin-left: 20px;
        margin-top: 3px;
    }

    .table-create-btn-container button {
        height: 60%;
        padding: 5px 30px;
    }

        .table-create-btn-container button span {
            margin-right: 0;
        }

        .table-create-btn-container button img {
            display: none;
        }

    .table-search, .table-content .table-head {
        display: none;
    }

    .table-container, .table-content, .filters-container {
        background-color: #100e28;
        min-height: auto;
        padding-top: 2px;
        overflow-x: scroll;
        flex-wrap: nowrap;
        display: flex;
    }

        .table-content .table-body {
            height: 100%;
            margin: 8px 3px 0 1px;
            padding-bottom: 70px;
        }

            .table-content .table-body table tr {
                height: 80px;
                position: relative;
            }

    .table-body section {
        height: 75px;
        width: 100%;
        margin-bottom: 10px;
        border-radius: 6px;
        position: relative;
        background-color: #44425e;
        position: relative;
    }

        .table-body section > div:nth-of-type(1) {
            width: 70%;
            height: 48%;
            padding-left: 3%;
            padding-top: 5px;
        }

            .table-body section > div:nth-of-type(1) span {
                display: block;
                float: left;
                line-height: 30px;
                color: white;
            }

            .table-body section > div:nth-of-type(1) img {
                width: 30px;
                height: 30px;
                display: block;
                float: left;
                margin-right: 10px;
                border-radius: 25px;
            }

        .table-body section > div:nth-of-type(2),
        .table-body section > div:nth-of-type(3),
        .table-body section > div:nth-of-type(4) {
            width: fit-content;
            height: 50%;
            text-align: center;
            padding-top: 10px;
            float: left;
        }

        .table-body section > div:nth-of-type(2) {
            padding-left: 10px;
        }

            .table-body section > div:nth-of-type(2) span {
                background-color: #33324a;
                border-radius: 8px;
                border: 1px solid #fc7728;
                padding: 3px 16px;
            }

            .table-body section > div:nth-of-type(2) span {
                font-size: 14px;
                color: white;
            }

        .table-body section > div:nth-of-type(3) .offer-bet-container {
            background-color: #33324a;
            border-radius: 8px;
            font-size: 15px;
            border: 1px solid #3699f0;
            color: white;
            padding: 3px 15px;
        }

        .table-body section > div:nth-of-type(4) span {
            background-color: #33324a;
            border-radius: 8px;
            font-size: 15px;
            border: 1px solid #A93B51;
            color: white;
            padding: 3px 20px;
        }

        .table-body section > div:nth-of-type(5) {
            position: absolute;
            right: 0;
            width: 30%;
            height: 100%;
            top: 0;
        }

            .table-body section > div:nth-of-type(5) button {
                overflow: hidden;
                white-space: nowrap;
                text-overflow: ellipsis;
                font-size: 12px;
                border: 0;
                border-radius: 25px;
                padding: 6px 20px;
                color: white;
                margin-top: 15px;
            }

                .table-body section > div:nth-of-type(5) button img {
                    display: none;
                }

    .table-content .table-body section {
        display: block;
    }

    .table-content .table-body tr {
        display: none;
    }

    .table-content {
        height: calc(100% - 74px);
    }

        .table-content.down {
            margin-top: 34px;
        }

        .table-content .table-body button:nth-of-type(1) {
            padding: 17px 19px;
        }

    .table-body section > div:nth-of-type(5) {
        width: 15%;
    }

        .table-body section > div:nth-of-type(5) button span {
            display: none;
        }

        .table-body section > div:nth-of-type(5) button img {
            display: block;
        }

        .table-body section > div:nth-of-type(5) button {
            padding: 17px;
        }

    .table-body section > div:nth-of-type(3) {
        width: 35%;
        padding-left: 10px;
    }

    .table-content .table-create-btn-container {
        height: 80px;
        position: fixed;
        bottom: 0px;
        width: 100%;
        margin: 0px;
        padding: 0px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.54) 70%, rgba(0,0,0,0) 100%);
    }

    .table-create-btn-container div {
        width: 220px;
        height: 60px;
        margin-top: 10px;
    }

    .table-content ::-webkit-scrollbar {
        width: 6px;
        padding: 14px;
        /*background-image: linear-gradient(#0000002e, #000000ad);*/
    }
}

@media screen and (max-width:400px) {
    .bet-filters .btn-sm, .score-filters .btn-sm, .bet-type-filters .btn-sm {
        font-size: 11px;
        margin: 10px 1px 0 2px;
        padding: 18px 15px;
        border-radius: 8px;
    }

    .bet-type-filters button {
        padding: 7px 2px;
    }

    .bet-btn-container button {
        padding: 6px 8px;
    }

    .type-btn-container button {
        width: 65px !important;
    }

    .bet-sm-filter-arrow {
        margin-left: 7px;
    }

    .filter-submit button {
        padding: 16px 12px;
    }

    .filters-clear-btn {
        margin-left: 0px;
    }

    .table-body section > div:nth-of-type(4) span {
        padding: 3px 6px;
    }
}


@media (max-width: 350px) {
    .score-filters button {
        padding: 6px 12px;
    }

    .bet-type-filters button {
        margin: 0 1px;
    }

    .type-btn-container button {
        width: 62px !important;
    }

    .table-body section > div:nth-of-type(4) span, .table-body section > div:nth-of-type(3) .offer-bet-container, .table-body section > div:nth-of-type(2) span {
        font-size: 14px;
    }

    .bet-filters .btn-sm, .score-filters .btn-sm, .bet-type-filters .btn-sm {
        padding: 18px 12px;
    }

    .bet-filters, .score-filters, .bet-type-filters {
        margin-right: 3px;
    }

        .bet-type-filters button {
            width: 75px;
        }
}

