* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-transition: none;
    transition: none;
    font-family: 'Gilroy', sans-serif;
}

html {
    font-size: 14px
}

use{
fill:inherit;
stroke:inherit;
}

:root{
    --background: #0F172F;
    --background-navbar: #0D142A;
    --background-green: rgba(135, 229, 120, 0.1);
    --green: #87E578;
    --text: #6E727F;
    --main-color: #2193E4;
    --main-color-10: rgba(33, 147, 228, .1);
    --main-color-15: rgba(33, 147, 228, .15); 
    --main-color-25: rgba(33, 147, 228, .25); 
    --main-color-20: rgba(33, 147, 228, .20); 
    --main-color-30: rgba(33, 147, 228, .3); 
    --background-message: rgba(140, 171, 240, 0.05);
    --light-bg: #1C2039;
    --background-action: #131C34;
    --background-black-wheel: #102F50;
    --background-red-wheel: #CE013B;
    --background-green-wheel: #36CE01;
}

html::-webkit-scrollbar{
    display: none;  
}

@keyframes loader{
  from {
    transform: rotate(360deg);
  }
}

@keyframes fading{
    0%{
      opacity: 0;
    }100%{
      opacity: 1;
    }
}

body {
    background: var(--background) ;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100vh
}



@keyframes width-to-0 {
    0%{
        width: 100%;
    }100%{
        width: 0%;
    }
}


body.hidden {
    overflow: hidden;
    height: 100vh;
    position: relative
}

::-moz-selection {
    background: #000;
    color: #fff
}

.bg-navbar{
    background: var(--background-navbar);
}

.flex-column{
    display: flex;
    flex-direction: column;
}

.al-center{
    display: flex;
    align-items: center;
}

.mt-5{
    margin-top: 5px;
}

.mt-14{
    margin-top: 14px;
}

.jc-between{
    justify-content: space-between;
}

.flex-row{
    display: flex;
    flex-direction: row;
}

.mr-8{
    margin-right: 8px;
}

.m-14-20{
    margin: 14px 20px;
}

.mt-40{
    margin-top: 40px;
}

::selection {
    background: #4D51F9;
    color: #fff
}

a,button {
    font: inherit;
    text-decoration: none; 
    cursor: pointer; 
}

a {
    color: #4986f5
}

a:active,a:focus {
    outline: none
}

img{
    pointer-events: none;
}

.wrapper {
    min-height: 100vh;
    min-width: 320px;
    position: relative;
    width: 100%
}

.wrapper .page {
    position: relative;
    padding-right: 360px;
    padding-left: 115px;
    -webkit-flex: auto;
    flex: auto;
    transition: .2s ease-in-out;

}

.wrapper .main-content {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper .main-content .main-content-top {
    -webkit-flex: auto;
    flex: auto;
    position: relative;
    margin-top: 100px;
    min-height: 280px;
}

.wrapper .main-content .main-content-footer {
    -webkit-flex: none;
    flex: none;
    padding-right: 40px;
    padding-left: 50px;
}

.wrapper .main-content .section {
    padding-bottom: 40px;
    width: 100%;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
    animation: fading 0.3s ease-in-out;
}

.game-rejimes-wrapp{
    padding-left: 0 !important;
    margin-bottom: 24px;
}


.game-rejimes-wrapp .game-rejimes{
    display: flex;
    align-items: center;
    gap: 24px;
}

.game-rejimes-wrapp .game-rejimes .game-rejime{
    width: 165px;
    height: 60px;
    background: var(--background-navbar);
    padding-left: 14px;
    gap: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 15px;
    position: relative;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive{
    cursor: default;
    user-select: none;
}

.game-rejimes-wrapp .game-rejimes .game-rejime::before{
    content: "";
    position: absolute;
    left: -15px;
    height: 100%;
    width: 30px;
    background: #A1A3AD;
    filter: blur(20px);
    opacity: 0.1;
    transition: .2s ease-in-out;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive::before{
    background: var(--main-color);
}

.game-rejimes-wrapp .game-rejimes .game-rejime .icon-rejime{
    width: 14px;
    height: 14px;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .icon-rejime svg path{
    fill: #A1A3AD;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .icon-rejime svg{
    width: 100%;
    height: 100%;
    transition: .2s ease-in-out;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .icon-rejime svg{
    fill: #A1A3AD;
    transition: .2s ease-in-out;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .icon-rejime svg{
    fill: var(--main-color);
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .icon-rejime svg path{
    fill: var(--main-color);
}

.game-rejimes-wrapp .game-rejimes .game-rejime .data-rejime{
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    font-weight: 400;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .data-rejime .total-bet{
    font-size: 11px;
    opacity: 0.3;
    display: flex;
    gap: 4px;
    align-items: center;
    transition: .2s ease-in-out;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .data-rejime .total-bet .icon{
    display: flex;
    height: 11px;
    width: 11px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .data-rejime .total-bet .icon svg{
    width: 100%;
    height: 100%;
    fill: #fff;
}

.game-rejimes-wrapp .game-rejimes .game-rejime .data-rejime .name{
    font-size: 14px;
    font-weight: 500;
    opacity: 0.3;
    transition: .2s ease-in-out;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .data-rejime .name{
    opacity: 1;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .data-rejime .total-bet{
    opacity: 1;
}

.game-rejimes-wrapp .game-rejimes .duels-game.isActive .data-rejime .total-bet {
    opacity: .5;
}


.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .data-rejime .total-bet .bank{
    opacity: .5;
}

.game-rejimes-wrapp .game-rejimes .game-rejime.isActive .data-rejime .total-bet .icon svg{
    fill: var(--main-color);
}

.wrapper .main-content .section.promo {
    padding-bottom: 0;
    margin-bottom: 40px
}

.blue-bg {
    background: #4986f5!important
}

.color-blue {
    color: #4986f5!important
}

.primary-bg {
    background: #4986f5!important
}

.color-primary {
    color: #4986f5!important
}

.green-bg {
    background: #62ca5b!important
}

.color-green {
    color: #62ca5b!important
}

.pink-bg {
    background: #e86376!important
}

.color-pink {
    color: #e86376!important
}

.light-bg {
    background: #828f9a!important
}

.color-light {
    color: #828f9a!important
}

.medium-bg {
    background: #20242d!important
}

.color-medium {
    color: #20242d!important
}

.middark-bg {
    background: #2c323f!important
}

.color-middark {
    color: #2c323f!important
}

.dark-bg {
    background: #1c2028!important
}

.color-dark {
    color: #1c2028!important
}

.white-bg {
    background: #fff!important
}

.color-white {
    color: #fff!important;
}

.ethereum-bg {
    background: #616991!important
}

.color-ethereum {
    color: #616991!important
}

.warning-bg {
    background: #ffc645!important
}

.color-warning {
    color: #ffc645!important
}

.orange-bg {
    background: #fd9e35!important
}

.color-orange {
    color: #fd9e35!important
}

.no-top-radius {
    border-top-left-radius: 0!important;
    border-top-right-radius: 0!important
}

.no-bottom-radius {
    border-bottom-left-radius: 0!important;
    border-bottom-right-radius: 0!important
}

.relative {
    position: relative
}

.text-center {
    text-align: center!important
}

.text-right {
    text-align: right!important
}

.negative {
    color: #e86376!important
}

.positive {
    color: #62ca5b!important
}

.heading {
    color: #fff;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: .3px
}

.typography p {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
    color: #c6d0e8;
    font-weight: 300;
    letter-spacing: .15px
}

.typography p:last-child {
    margin-bottom: 0
}

.typography h1:last-child,.typography h2:last-child {
    margin-bottom: 20px
}

.typography a {
    color: #6bceff
}

.tick-list {
    list-style: none;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

.tick-list,.tick-list .tick-badge {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center
}

.tick-list .tick-badge {
    -webkit-align-items: center;
    background: #3584fd;
    height: 30px;
    width: 72px;
    margin: 0 auto 12px;
    align-items: center;
    border-radius: 100px
}

.tick-list li {
    padding: 0;
    position: relative;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: .15px;
    text-align: center;
    width: 100%
}

.tick-list li:last-child {
    margin-bottom: 0
}

.tick-list li i {
    display: block;
    font-size: 28px;
    margin-bottom: 12px;
    color: #4986f5
}

.form-label {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 14px;
    color: #7f8596;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-label.big {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.form-field {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field:hover .right-icon {
    color: #4986f5;
}

.form-field:hover .right-icon svg {
    fill: #4986f5;
}


.form-field .right-icon {
    position: absolute;
    right: 1px;
    top: 1px;
    width: 45px;
    height: calc(100% - 2px);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #fff;
    pointer-events: none;
    border-radius: 6px;
    background: #333a4a
}

.form-field .right-icon svg {
    -webkit-transition: all .2s ease-out 0s;
    transition: all .2s ease-out 0s;
    display: block
}

.form-field .right-icon.reversed svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.form-field.hasArrow:after {
    width: 0;
    height: 0;
    content: "";
    position: absolute;
    right: .75em;
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    pointer-events: none;
    border-color: #717787 transparent transparent;
    border-style: solid;
    border-width: 4px 4px 0
}

.form-field select {
    height: 44px;
    font-size: 14px;
    padding: 0 12px;
    width: 100%;
    outline: none!important;
    border-radius: 6px;
    color: #fff;
    background: #2f3542;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
    -webkit-border-image: none;
    border-image: none;
    -webkit-border-image: initial;
    border-image: initial;
    overflow: hidden;
    -webkit-appearance: none;
}

.form-field select:focus {
    border-color: #4986f5
}

.form-row.inline {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.form-row.inline .form-field,.form-row.inline .form-label {
    -webkit-flex-basis: 50%;
    flex-basis: 50%
}

.form-row.inline .form-label {
    padding-right: 20px
}

.hasError .input-field {
    border-color: #e86376!important
}

.input-field {
    height: 50px;
    font-size: 15px;
    padding-left: 40px;
    padding-right: 86px;
    width: 100%;
    outline: none!important;
    border-radius: 10px;
    color: #fff;
    border: none;
    outline: none;
    background: var(--background-message)!important;
}

.form-field::before{
    content: "";
    position: absolute;
    left: 15px;
    top: 17px;
    background: url('/img/coins-win.svg');
    background-size: 17px;
    background-position: left center;
    background-repeat: no-repeat;
    width: 17px;
    height: 17px;
}

.input-field:not([readonly]):focus {
    border-color: #4986f5
}

.input-field.input-green:not([readonly]):focus {
    border-color: #62ca5b
}

.input-field::-webkit-input-placeholder {
    color: var(--text);
}

.input-field::-ms-input-placeholder {
    color: #4e5a61
}

.input-field::placeholder {
    color: #4e5a61
}

.input-field[type=button] {
    cursor: pointer;
    text-align: left;
    -webkit-appearance: button;
    -webkit-border-image: none;
    border-image: none;
    -webkit-border-image: initial;
    border-image: initial;
    overflow: hidden;
    outline: none
}

.input-field:disabled {
    background: #212833
}

.input-field.text-gray {
    color: #99a3b8
}

.input-field.small-text {
    font-size: 11px
}

.buttons-group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 12px;
    grid-row-gap: 0px;
    width: 100%;
}

.buttons-group.isMobile {
    position: absolute;
    z-index: 3;
    border: 1px solid #4986f5;
    top: -21px;
    -webkit-transition: opacity .2s ease-in;
    transition: opacity .2s ease-in;
    opacity: 0;
    visibility: hidden;
    will-change: opacity,visibility
}

.btn-secondary-bet{
    width: 23px;
    height: 23px;
    font-size: 11px;
    font-weight: 400;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    outline: none;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .5);
    border-radius: 5px;
}

.buttons-group .btn-action {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 5px 10px;
    transition: all .3s;
    border: none;
    background: var(--background-action);
    outline: none!important;
    font-weight: 500;
    border-radius: 5px;
}

.buttons-group .btn-action:hover {
    background: var(--main-color-15);
    color: var(--main-color);
}

.buttons-group .btn-action.isActive {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.10);
    cursor: default;
    border-radius: 3px
}

.buttons-group.buttons-group--tall .btn-action {
    min-height: 36px;
    font-size: 12px;
    color: #fff
}

.btn-edit {
    padding: 0!important
}

.btn-edit.isActive .form-row {
    opacity: 1;
    visibility: visible
}

.btn-edit.isActive .input-field {
    cursor: text
}

.btn-edit .form-row {
    max-width: 100%;
    height: 100%;
    margin: 0;
    position: absolute;
    opacity: 0
}   

.btn-edit .form-field,.btn-edit .input-valid {
    height: 100%
}

.btn-edit .input-field {
    height: 100%;
    cursor: pointer;
    border-radius: 0 6px 6px 0
}

.input-with-icon {
    position: relative;
    width: 100%
}

.input-with-icon.input-with-left-icon input {
    padding-left: 65px
}

.input-with-icon.input-with-left-icon .input-left-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 6px
}

.input-with-icon.input-with-left-icon .input-left-icon i {
    font-size: 16px;
    display: block
}

.input-with-icon.input-with-left-icon .input-left-icon img {
    width: 16px;
    display: block
}

.grouped-fields {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    width: 100%;
    margin-bottom: 15px
}

.grouped-fields .form-row {
    width: 100%;
    margin: 0 -6px 0 0
}

.grouped-fields .input-field {
    border-radius: 0;
    -webkit-flex: auto;
    flex: auto;
    margin-right: -6px
}

.grouped-fields .input-field:first-child {
    border-radius: 6px 0 0 6px
}

.grouped-fields .input-field:last-child {
    border-radius: 0 6px 6px 0;
    margin-right: 0
}

.grouped-fields .input-with-icon {
    margin-right: -6px
}

.grouped-fields .btn {
    -webkit-flex: none;
    flex: none;
    position: relative;
    z-index: 2;
    font-weight: 600
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite
}

#chat-crollbar {
    overflow-y:scroll;
    scroll-behavior: smooth;
}

#chat-crollbar::-webkit-scrollbar {
  width: 2px;               /* ширина scrollbar */
}
#chat-crollbar::-webkit-scrollbar-track {
  background: none;        /* цвет дорожки */
}
#chat-crollbar::-webkit-scrollbar-thumb {
  background-color: rgb(23,24,31);    /* цвет плашки */
  border-radius: 20px;       /* закругления плашки */
}

.ps__rail-x {
    height: 15px;
    bottom: 0
}

.ps__rail-x,.ps__rail-y {
    display: none;
    opacity: 0;
    -webkit-transition: background-color .2s linear,opacity .2s linear;
    transition: background-color .2s linear,opacity .2s linear;
    position: absolute
}

.ps__rail-y {
    width: 15px;
    right: 0;
    left: auto!important
}

.ps--active-x>.ps__rail-x,.ps--active-y>.ps__rail-y {
    display: block;
    background-color: initial
}

.ps--focus>.ps__rail-x,.ps--focus>.ps__rail-y,.ps--scrolling-x>.ps__rail-x,.ps--scrolling-y>.ps__rail-y,.ps:hover>.ps__rail-x,.ps:hover>.ps__rail-y {
    opacity: .6
}

.ps .ps__rail-x.ps--clicking,.ps .ps__rail-x:focus,.ps .ps__rail-x:hover,.ps .ps__rail-y.ps--clicking,.ps .ps__rail-y:focus,.ps .ps__rail-y:hover {
    opacity: .9
}

.ps__thumb-x {
    transition: background-color .2s linear,height .2s ease-in-out;
    -webkit-transition: background-color .2s linear,height .2s ease-in-out;
    height: 6px;
    bottom: 2px
}

.ps__thumb-x,.ps__thumb-y {
    background-color: #434b53;
    border-radius: 6px;
    position: absolute
}

.ps__thumb-y {
    transition: background-color .2s linear,width .2s ease-in-out;
    -webkit-transition: background-color .2s linear,width .2s ease-in-out;
    width: 6px;
    right: 2px
}

.ps__rail-x.ps--clicking .ps__thumb-x,.ps__rail-x:focus>.ps__thumb-x,.ps__rail-x:hover>.ps__thumb-x {
    background-color: #434b53;
    height: 8px
}

.ps__rail-y.ps--clicking .ps__thumb-y,.ps__rail-y:focus>.ps__thumb-y,.ps__rail-y:hover>.ps__thumb-y {
    background-color: #434b53;
    width: 8px
}

.scrollbar-container {
    position: relative;
    height: 100%
}

.scrollbar-container div:first-child{
    margin-top: 0;
}

.popover {
    top: 0;
    left: 0;
    z-index: 1060;
    max-width: 276px;
    font-size: .875rem;
    word-wrap: break-word;
    background-color: rgba(26, 42, 101, .95);
    background-clip: padding-box;
    border: 1px solid #242932;
    border-radius: .3rem;
}

.popover,.popover .arrow {
    position: absolute;
    display: block
}

.popover .arrow {
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem
}

.popover .arrow:after,.popover .arrow:before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-auto[x-placement^=top],.bs-popover-top {
    margin-bottom: .5rem
}

.bs-popover-auto[x-placement^=top] .arrow,.bs-popover-top .arrow {
    bottom: calc(-.5rem + -1px)
}

.bs-popover-auto[x-placement^=top] .arrow:after,.bs-popover-auto[x-placement^=top] .arrow:before,.bs-popover-top .arrow:after,.bs-popover-top .arrow:before {
    border-width: .5rem .5rem 0
}

.bs-popover-auto[x-placement^=top] .arrow:before,.bs-popover-top .arrow:before {
    bottom: 0;
    border-top-color: rgba(26, 42, 101, .95);
}

.bs-popover-auto[x-placement^=top] .arrow:after,.bs-popover-top .arrow:after {
    bottom: 1px;
    border-top-color: rgba(26, 42, 101, .95);
}

.bs-popover-auto[x-placement^=right],.bs-popover-right {
    margin-left: .5rem
}

.bs-popover-auto[x-placement^=right] .arrow,.bs-popover-right .arrow {
    left: calc(-.5rem + -1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=right] .arrow:after,.bs-popover-auto[x-placement^=right] .arrow:before,.bs-popover-right .arrow:after,.bs-popover-right .arrow:before {
    border-width: .5rem .5rem .5rem 0
}

.bs-popover-auto[x-placement^=right] .arrow:before,.bs-popover-right .arrow:before {
    left: 0;
    border-right-color: #242932
}

.bs-popover-auto[x-placement^=right] .arrow:after,.bs-popover-right .arrow:after {
    left: 1px;
    border-right-color: rgba(47,57,70,.95)
}

.bs-popover-auto[x-placement^=bottom],.bs-popover-bottom {
    margin-top: .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow,.bs-popover-bottom .arrow {
    top: calc(-.5rem + -1px)
}

.bs-popover-auto[x-placement^=bottom] .arrow:after,.bs-popover-auto[x-placement^=bottom] .arrow:before,.bs-popover-bottom .arrow:after,.bs-popover-bottom .arrow:before {
    border-width: 0 .5rem .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow:before,.bs-popover-bottom .arrow:before {
    top: 0;
    border-bottom-color: #242932
}

.bs-popover-auto[x-placement^=bottom] .arrow:after,.bs-popover-bottom .arrow:after {
    top: 1px;
    border-bottom-color: rgba(47,57,70,.95)
}

.bs-popover-auto[x-placement^=bottom] .popover-header:before,.bs-popover-bottom .popover-header:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid rgba(41,50,61,.95)
}

.bs-popover-auto[x-placement^=left],.bs-popover-left {
    margin-right: .5rem
}

.bs-popover-auto[x-placement^=left] .arrow,.bs-popover-left .arrow {
    right: calc(-.5rem + -1px);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=left] .arrow:after,.bs-popover-auto[x-placement^=left] .arrow:before,.bs-popover-left .arrow:after,.bs-popover-left .arrow:before {
    border-width: .5rem 0 .5rem .5rem
}

.bs-popover-auto[x-placement^=left] .arrow:before,.bs-popover-left .arrow:before {
    right: 0;
    border-left-color: #242932
}

.bs-popover-auto[x-placement^=left] .arrow:after,.bs-popover-left .arrow:after {
    right: 1px;
    border-left-color: rgba(47,57,70,.95)
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: rgba(41,50,61,.95);
    border-bottom: 1px solid rgba(31,37,46,.95);
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.btn {
    font-size: 13px;
    font-weight: 500;
    line-height: 18px;
    display: -webkit-inline-flex;
    display: inline-flex;
    padding: 9px 20px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 6px;
    outline: none;
    background: #4986f5;
    -webkit-align-items: center;
    align-items: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.auth-buttons .btn .icon {
    margin-left: 5px;
}

.btn[disabled] {
    opacity: .8;
    pointer-events: none;
    cursor: not-allowed
}

.btn.hasP span:first-letter {
    color: #6bceff
}

.btn.lg {
    padding: 13px 30px
}

.btn.sm {
    font-size: 11px;
    padding: 5px 13px;
    letter-spacing: .28px
}

.btn-block {
    display: block;
    width: 100%
}

.btn.withBadge {
    position: relative
}

.btn-with-input {
    background-color: #1c2028;
    padding: 6px
}

.btn-with-input.isActive {
    background-color: #4986f5
}

.btn-with-input .input-field {
    height: 28px;
    line-height: 28px
}

.btn-reset {
    background-color: #1c2028;
    -webkit-justify-content: center;
    justify-content: center
}

.btn-reset.isActive {
    background-color: #4986f5
}

.btn-clear {
    width: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 11px 20px;
    background: #333a48;
    color: #959fb1;
    font-weight: 400
}

.btn-clear.isMobile {
    margin-top: auto;
    margin-bottom: 20px;
    height: 44px;
    width: calc(50% - 5px)
}

.btn-clear:hover {
    background: #373e4c;
    color: #4986f5
}

.open-chat-btn{
    position: fixed;
    right: 50px;
    bottom: 25px;
    background: #0F233C;
    border-radius: 15px;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s ease-in-out;
}

.open-chat-btn.hidden{
    right: -46px;
    opacity: 0;
    user-select: none;
}

.left-sidebar {
    position: fixed;
    border-radius: 15px;
    left: 20px;
    top: 20px;
    height: calc(100% - 40px);
    width: auto;
    background: var(--background-navbar);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.left-sidebar ul {
    list-style: none;
}

.left-sidebar li .game-rejime, .left-sidebar .side-nav.contact li {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    width: 55px;
    cursor: pointer;
    overflow: hidden;
    height: 55px;
    position: relative;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: .2s ease-in-out;
}

.left-sidebar li .game-rejime::before {
    content: "";
    position: absolute;
    width: 100%;
    filter: blur(30px);
    height: 100%;
    background: var(--main-color);
    bottom: -50%;
    transition: .2s ease-in-out;
    left: 0;
    opacity: 0;
}

.left-sidebar li .game-rejime.isActive, .left-sidebar li .game-rejime:hover, .left-sidebar .side-nav.contact li:hover {
    border: 1px solid var(--main-color-15);
    
}

.left-sidebar li .game-rejime.isActive svg path, .left-sidebar li .game-rejime:hover svg path, .left-sidebar .side-nav.contact li:hover svg path {
    fill: var(--main-color);
}

.left-sidebar li .game-rejime.isActive::before, .left-sidebar li .game-rejime:hover::before {
    opacity: .3;
}



.left-sidebar .side-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.left-sidebar li svg {
    width: 24px;
    height: 24px;
}

.left-sidebar li svg path{
    fill: #8CABF0;
    opacity: 1;
}


.open-chat-btn img{
    width: 24px;
    height: 24px;
}

.right-sidebar.hidden{
    right: -400px;
    opacity: 0;
    user-select: none;
}

.right-sidebar .item div {
    display: flex;
    align-items: center;
    justify-content: center;    
}

.right-sidebar .item{
    gap: 10px;
}

.right-sidebar .item .btn-close{
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border-radius: 15px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.right-sidebar .item .btn-close img{
    transform: rotate(-90deg);
    width: 12px;
    height: 12px;
}

.right-sidebar .item .chat-online img{
    width: 19px;
    height: 19px;
}

.chat-online .btn-blue {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    user-select: none;
}

.btn-gray{
    width: 35px;
    height: 35px;
    background-color: var(--background);
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-gray img{
    width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
}

.setting-chat-btn img{
    margin-right: -2px;
}

.chat .item .btn-gray{
    margin-left: 15px;
}

.chat-online .btn-blue img {
    width: 18px;
    height: 18px;
}

.btn.isActive {
    cursor: default
}

.btn:not(.btn-light).btn-blue {
    background: #4986f5
}

.btn:not(.btn-light).btn-blue:not(.disabled):hover {
    background: #1966f2
}

.btn:not(.btn-light).btn-primary {
    background: #4986f5
}

.btn:not(.btn-light).btn-primary:not(.disabled):hover {
    background: #1966f2
}

.btn:not(.btn-light).btn-warning {
    background: #ffc645
}

.btn:not(.btn-light).btn-warning:not(.disabled):hover {
    background: #ffb612
}

.btn:not(.btn-light).btn-green {
    background: rgba(63,215,96, .25);
}

.btn:not(.btn-light).btn-green:not(.disabled):hover {
    background: #43b73b
}

.btn:not(.btn-light).btn-gray {
    background: #272d39
}

.btn:not(.btn-light).btn-gray:not(.disabled):hover {
    background: #12151b
}

.btn:not(.btn-light).btn-black {
    background: #1c2028
}

.btn:not(.btn-light).btn-black:not(.disabled):hover {
    background: #07080a
}

.btn:not(.btn-light).btn-yellow {
    background: #ffd000
}

.btn:not(.btn-light).btn-yellow:not(.disabled):hover {
    background: #cca600
}

.btn:not(.btn-light).btn-red {
    background: #e86376
}

.btn:not(.btn-light).btn-red:not(.disabled):hover {
    background: #e1374f
}

.btn:not(.btn-light).btn-light-gray {
    background: #3a4151
}

.btn:not(.btn-light).btn-light-gray:not(.disabled):hover {
    background: #252933
}

.btn:not(.btn-light).btn-transparent,.btn:not(.btn-light).btn-transparent:not(.disabled):hover {
    background: transparent
}

.btn:not(.btn-light).btn-yellow {
    color: #65550e
}

.btn:not(.btn-light).btn-yellow:not(.disabled):hover {
    background: #ffd933
}

.btn:not(.btn-light).btn-warning {
    color: rgba(0,0,0,.6)
}

.btn:not(.btn-light).btn-transparent {
    color: #7d8a98
}

.btn:not(.btn-light).btn-transparent:hover {
    color: #fff
}

.btn-link {
    padding: 0;
    background-color: initial;
    font-weight: inherit;
    font-size: inherit;
    border: none;
    border-radius: 0;
    color: #4986f5;
    height: inherit!important;
    width: inherit!important;
}

.btn.btn-light {
    border: none !important;
    outline: none !important;
    transition: .2s ease !important;
}

.btn.btn-light.btn-blue {
    color: #fff;
    border-color: #4986f5
}

.btn.btn-light.btn-blue:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: #4986f5;
    color: #4986f5
}

.btn.btn-light.btn-blue.isActive {
    background: #4986f5;
    border-color: #4986f5;
    color: #fff
}

.btn.btn-light.btn-primary {
    color: #fff;
    border-color: #4986f5
}

.btn.btn-light.btn-primary:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: #4986f5;
    color: #4986f5
}

.btn.btn-light.btn-primary.isActive {
    background: #4986f5;
    border-color: #4986f5;
    color: #fff
}

.btn.btn-light.btn-warning {
    color: #fff;
    border-color: #ffc645
}

.btn.btn-light.btn-warning:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: #ffc645;
    color: #ffc645
}

.btn.btn-light.btn-warning.isActive {
    background: #ffc645;
    border-color: #ffc645;
    color: #fff
}

.btn.btn-light.btn-green {
    background: var(--background-green-wheel);
    opacity: 0.5;
}

.btn.btn-light.btn-green:not(.disabled):not(.isActive):hover {
    opacity: 0.7;
}

.btn.btn-light.btn-green.isActive {
    opacity: 1;
}

.btn.btn-light.btn-gray {
    color: #fff;
    border-color: #272d39
}

.btn.btn-light.btn-gray:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: #272d39;
    color: #272d39
}

.btn.btn-light.btn-gray.isActive {
    background: #272d39;
    border-color: #272d39;
    color: #fff
}

.btn.btn-light.btn-black {
    background: var(--background-black-wheel);
    opacity: 0.5;
}

.btn.btn-light.btn-black:not(.disabled):not(.isActive):hover {
    opacity: 0.7;
    background: var(--background-black-wheel);
}


.btn.btn-light.btn-black.isActive {
    opacity: 1;
}

.btn.btn-light.btn-red {
    background: var(--background-red-wheel);
    opacity: 0.5;
}


.btn.btn-light.btn-red.isActive {
    opacity: 1;
}

.btn.btn-light.btn-light-gray {
    color: #fff;
    border-color: #3a4151
}

.btn.btn-light.btn-light-gray:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: #3a4151;
    color: #3a4151
}

.btn.btn-light.btn-light-gray.isActive {
    background: #3a4151;
    border-color: #3a4151;
    color: #fff
}

.btn.btn-light.btn-transparent {
    color: #fff;
    border-color: transparent
}

.btn.btn-light.btn-transparent:not(.disabled):not(.isActive):hover {
    background: transparent;
    border-color: transparent;
    color: transparent
}

.btn.btn-light.btn-transparent.isActive {
    background: transparent;
    border-color: transparent;
    color: #fff
}

.btn.btn-light.btn-black {
    color: #fff
}

.btn .btn-badge {
    position: absolute;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: #4986f5;
    top: -13px;
    right: -8px;
    width: 23px;
    height: 23px;
    font-size: 12px;
    line-height: 23px;
    border-radius: 50%;
    color: #fff
}

.btn.btn-bet-clear {
    position: absolute;
    background: transparent;
    right: 6px;
    top: 15px;
    font-size: 10px;
    padding: 5px;
    color: #7f8596;
    -webkit-transition: .3s ease-in;
    transition: .3s ease-in;
    opacity: 0.5;
}

.btn.btn-bet-clear.isActive {
    opacity: 1
}

.btn.btn-bet-clear:hover {
    color: #9ba0ad;
    opacity: 1;
}

.dropdown {
    position: relative;
    display: inline-block
}

.dropdown .dropdown-toggle {
    padding: 10px 30px 10px 15px;
    -webkit-transition: none;
    transition: none
}

.dropdown .dropdown-toggle,.dropdown .dropdown-toggle .image {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.dropdown .dropdown-toggle .image {
    position: relative;
    margin-right: 9px
}

.dropdown .dropdown-toggle .image img {
    width: 16px
}

.dropdown .opener {
    border: none;
    width: 14px;
    height: 14px;
    -webkit-transition: -webkit-transform .2s ease-out;
    transition: -webkit-transform .2s ease-out;
    transition: transform .2s ease-out;
    transition: transform .2s ease-out,-webkit-transform .2s ease-out;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.dropdown.show .dropdown-menu {
    display: block;
    max-height: 150px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.dropdown.show .dropdown-menu::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .05);
}

.dropdown.show .dropdown-menu::-webkit-scrollbar {
    width: 2px;
    background-color: rgba(255, 255, 255, .05);
}

.dropdown.show .dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #4986f5;
}

.dropdown.show .opener {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg)
}

.dropdown .dropdown-error {
    padding: .5em;
    text-align: center;
    font-weight: 700;
    color: #e86376
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    width: 100%;
    min-width: 10rem;
    margin: 0;
    color: #fff;
    text-align: left;
    list-style: none;
    background-color: #1a2a65;
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    background-clip: padding-box;
    will-change: max-height;
    border-radius: 6px;
}

.dropdown-menu:focus {
    outline: none
}

.dropdown-menu[x-placement^=bottom],.dropdown-menu[x-placement^=left],.dropdown-menu[x-placement^=right],.dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto
}

.dropdown-item {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    padding: .75rem;
    cursor: pointer;
    outline: none;
    clear: both;
    font-weight: 400;
    color: #7f8596;
    text-align: inherit;
    white-space: nowrap;
    background-color: initial;
    border: 0
}

.dropdown-item:focus,.dropdown-item:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
}

.dropdown-item.active,.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
}

.dropdown-item.disabled,.dropdown-item:disabled {
    color: #6c757d;
    background-color: initial
}

.dropdown-item .image {
    height: 19px;
    position: relative;
    width: 27px;
    margin-right: 15px
}

.dropdown-item .image img {
    bottom: 0;
    height: auto;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: auto
}

.bottom-start.dropdown.show .btn {
    border-radius: 6px 6px 0 0;
    border-bottom: 1px solid #3a4152
}

.bottom-start.dropdown.show .dropdown-item:last-child,.bottom-start.dropdown.show .dropdown-menu {
    border-radius: 0 0 6px 6px
}

.top-start.dropdown.show .btn {
    border-top: 1px solid #3a4152;
    border-radius: 0 0 6px 6px
}

.top-start.dropdown.show .dropdown-item:first-child,.top-start.dropdown.show .dropdown-menu {
    border-radius: 6px 6px 0 0
}

.rounded.dropdown.show .dropdown-menu {
    margin-top: 3px;
    border-radius: 6px
}

.rounded.dropdown.show .dropdown-item:first-child,.rounded.dropdown.show .dropdown-item:last-child {
    border-radius: 6px
}

.animated-number {
    position: relative
}

.animated-number .animated-block {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    font-size: inherit;
    font-weight: inherit;
    white-space: nowrap;
    color: #e86376;
    -webkit-animation-duration: .7s;
    animation-duration: .7s;
    -webkit-animation-name: balance;
    animation-name: balance;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    width: 100%
}

.animated-number.isPositive .animated-block {
    color: #62ca5b;
    animation-direction: reverse
}

.animated-number.isAnimate .animated-block {
    -webkit-animation-name: isSlidingFrame;
    animation-name: isSlidingFrame
}

.deposit-wrap{
    display: flex;
    align-items: center;
}

.deposit-block .balance{
    display: flex;
    gap: 6px;
    font-size: 16px;
    color: var(--main-color);
}

.deposit-block .title{
    display: flex;
    justify-content: end;
    color: #dadada;
    font-size: 13px;
}

.menu-profile{
    position: relative;
}

.menu-profile-wrapper{
    position: absolute;
    right: 0;
    top: 43px;
    background: var(--background-navbar);
    padding: 8px;
    overflow: hidden;
    border-radius: 15px;
    pointer-events: none;
    opacity: 0;
    transition: .2s ease-in-out;
}

.menu-profile.active .menu-profile-wrapper{
    opacity: 1;
    top: 53px;
    pointer-events: all;
}

.menu-profile.active svg{
    fill: #fff;
    opacity: 1;
}

.menu-profile-item{
    padding: 10px 15px;
    display: flex;
    min-width: 146px;  
    align-items: center;
    transition: .2s ease-in-out;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    border-radius: 15px;
}

.menu-profile-item:last-child{
    margin-bottom: 0;
}

.menu-profile-item.exit{
    color: var(--main-color);
}

.menu-profile-item:hover{
    background: var(--light-bg);
}

.menu-profile-item.exit:hover{
    background: var(--main-color-10);
}

.menu-profile-item img{
    width: 24px;
    height: 24px;
    margin-right: 10px;
    opacity: .2;
}

.menu-profile-item span{
    opacity: .8;
}

.menu-profile-item.exit img{
    opacity: 1;
}

.menu-profile-item.exit span{
    opacity: 1;
}

.avatar-header{
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
    margin-left: 16px;  
    cursor: pointer;
}

.avatar-header img{
    width: 100%;
    height: 100%;
}

.deposit-block {
    display: -webkit-flex;
    display: flex;
    -webkit-transition: all .3s;
    transition: all .3s;
    gap: 10px;
    align-items: center;
    background: var(--main-color-10);
    border-radius: 13px;
    padding-left: 14px;
}

.deposit-block .currency{
    display: inherit;
}

.deposit-block .link-payment{
    display: flex;
    align-items: center;
    font-size: 15px;
}

.deposit-block .link-payment div{
    cursor: pointer;
}

.deposit-wrap .deposit-link{
    padding: 8px 10px;
    gap: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
    border-radius: 13px;
    cursor: pointer;
    height: 45px;
}

.deposit-wrap .deposit-link img{
    display: none;
    height: 20px;
    width: 20px;
}

.top-nav {
    display: -webkit-flex;
    display: flex;
    list-style: none;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px;
    gap: 10px;
    position: relative;
}

.top-nav a::before{
    content: "";
    position: absolute;
    bottom: -15%;
    left: -22%;
    width: 50%;
    height: 50%;
    background: var(--main-color);
    filter: blur(30px);
    border-radius: 10px;
    z-index: 1;
    opacity: 0;
    transition: .2s ease-in-out;
}

.top-nav a:hover::before, .top-nav a.isActive::before{
    opacity: 0.5;
}

.top-nav a span{
    color: var(--text);
    font-weight: 400 !important;
    transition: .2s ease-in-out;
    font-size: 15px;
    z-index: 2;
}

.top-nav svg {
    width: 18px;
    height: 18px;
    transition: .2s ease-in-out;
    fill: #4A5467;
    z-index: 2;
}

.top-nav li {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.top-nav li a{
    display: flex;
    align-items: center ;
    overflow: hidden;
    gap: 10px;
}

.top-nav li:last-child {
    margin-right: 0
}

.top-nav a {
    padding: 16px;
    border: 1px solid transparent;
    border-radius: 10px;
}

.top-nav a.isActive{
    border-color: var(--main-color-15);
}

.top-nav a.isActive span{
    opacity: 1;
    color: #fff;
}

.top-nav .isActive svg{
    opacity: 1;
}

.top-nav .isActive .icon-header{
    fill: var(--main-color);
}

.top-nav a:hover {
    border-color: var(--main-color-15);
}

.top-nav a:hover span {
    color: #fff;
	opacity: .8;
}

.top-nav a:hover svg {
    fill: #fff;
	opacity: 1;
}

.give-block .btn-give {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 11px 0;
    margin-bottom: 20px;
    width: 100%;
    background: linear-gradient(to right bottom, #b3820e, #b3400e);
    border: 0;
    color: #fff;
    border-radius: 3px;
    transition: .3s linear;
}

.top-nav li .toggle>ul.isOpen {
    max-height: 250px
}

.top-nav li .toggle>ul li {
    margin-right: 0
}

.top-nav li .toggle>ul li a {
    white-space: nowrap;
    padding: 15px 13px
}

.top-nav li .toggle>ul li a:hover {background: rgba(255, 255, 255, 0.05);
        box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    color: #fff
}

.top-nav-wrapper {
    position: relative
}

.top-nav-wrapper .opener {
    display: none;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    width: 20px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    border: 0;
    outline: none;
    background-color: initial
}

.top-nav-wrapper .opener .bar {
    height: 2px;
    width: 100%;
    background: #fff;
    margin-bottom: 5px;
    border-radius: 1px;
    -webkit-transition: all .3s;
    transition: all .3s
}

.top-nav-wrapper .opener .bar:last-child {
    margin-bottom: 0
}

.top-nav-wrapper .opener.opened .bar:first-child {
    -webkit-transform-origin: 0 1px;
    transform-origin: 0 1px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.top-nav-wrapper .opener.opened .bar:nth-child(2) {
    width: 0
}

.top-nav-wrapper .opener.opened .bar:nth-child(3) {
    -webkit-transform-origin: 0 1px;
    transform-origin: 0 1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.header {
    display: flex;
    align-items: center;
    padding: 0 40px;
    -webkit-transition: padding .3s;
    transition: padding .3s;
    width: calc(100% - 460px);
    min-width: 320px;
    position: absolute;
    top: 0;
    z-index: 100;
    height: 90px;
    backdrop-filter: blur(8px);
    transition: .2s ease-in-out;
}

.header,.header .header-inner {
    align-items: center;
}

.btn-wallet{
    width: 42px;
    height: 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border:none;
    border-radius: 15px;
    cursor: pointer;
    background: var(--main-color-15);
}

.logo {
    position: relative;
}

.logo::before {
    content: "";
    position: absolute;
    top: -110%;
    left: 90%;
    transform: translateX(-75%);
    width: 150%;
    height: 150%;
    background: var(--main-color);
    filter: blur(35px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.logo::after {
    content: "";
    position: absolute;
    top: -110%;
    pointer-events: none;
    left: 90%;
    transform: translateX(-75%);
    width: 150%;
    height: 4px;
    background: radial-gradient(circle, rgba(134,204,255,1) 0%, rgba(33,147,228,0) 100%);
    filter: blur(1px);
    z-index: 3;
}


.btn-wallet img{
    height: 20px;
}

.header .logo a{
    display: inline-block;
    width: auto;
    height: 28px;
}

.header .header-block{
    display: flex;
    align-items: center;
    gap: 40px;
}

.header .header-inner {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    display: flex;
    width: 100%
}

.header.sticky {
    padding: 22px 40px;
    background: #1a2a65;
}

.header .auth-buttons .btn:first-child {
    /* margin-right: 10px */
}

.modal-open {
    overflow: hidden
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

body.modal-open .wrapper{
    filter: blur(5px);
}

.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out,-webkit-transform .3s ease-out;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px)
}

.modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none
}

.modal-dialog-centered {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 1rem)
}

.modal-dialog-centered:before {
    display: block;
    height: calc(100vh - 1rem);
    content: ""
}

.modal-content {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: rgb(0, 0, 0);
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-backdrop.show {
    opacity: .45
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
}

.modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto
}

.modal-title {
    font-weight: 600;
    font-size: 20px;
    text-align: start;
    transition: .3s ease-in-out;
}

.modal-title p {
    font-size: 14px;
    font-weight: 400;
    color: #dadada;
    opacity: .3;
    margin-top: 14px;
    display: flex;
    align-items: center;
}

.modal-title p img{
    margin-left: 6px;
}

button.btn-modal {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 18px;
    background: rgb(25,143,241);
    background: linear-gradient(180deg, rgba(25,143,241,1) 0%, rgba(57, 161, 248,1) 100%);
    border: none;
    outline: none;
    font-weight: 600;
    color: #fff;
    letter-spacing: .02rem;
}

#quizCreate .btn-modal{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    min-width: 280px;
}

.modal-body {
    position: relative;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem
}

.modal-footer {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    border-bottom-right-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.modal-footer>:not(:first-child) {
    margin-left: .25rem
}

.modal-footer>:not(:last-child) {
    margin-right: .25rem
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

.fade {
    -webkit-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade:not(.show) {
    opacity: 0
}

.modal-content {
    background: var(--background-navbar);
    border-radius: 25px;
    border: none;
    overflow: hidden;
}

.modal-body {
    padding: 0
}

.modal-close {
    width: 35px;
    height: 35px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    background: transparent;
    border: none;
    background: var(--background);
    border-radius: 15px;
    transition: .2s ease-in-out;
}

.modal-close svg {
    width: 11px;
    height: 11px;
    display: block;
    fill: var(--text);
    -webkit-transition: all .3s;
    transition: all .3s
}

.modal-close:hover{
    background: var(--main-color-15);
}

.modal-close:hover svg {
    fill: var(--main-color);
}

.container {
    width: 100%;
    margin: 0 auto
}

.bets-section {
    /* background: #262b37; */
    padding: 30px 0;
}

.row {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px
}

.row .col-1 {
    width: 8.33333%
}

.row .col-1,.row .col-2 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-2 {
    width: 16.66667%
}

.row .col-3 {
    width: 25%
}

.row .col-3,.row .col-4 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-4 {
    width: 33.33333%
}

.row .col-5 {
    width: 41.66667%
}

.row .col-5,.row .col-6 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-6 {
    width: 50%
}

.row .col-7 {
    width: 58.33333%
}

.row .col-7,.row .col-8 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-8 {
    width: 66.66667%
}

.row .col-9 {
    width: 75%
}

.row .col-9,.row .col-10 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-10 {
    width: 83.33333%
}

.row .col-11 {
    width: 91.66667%
}

.row .col-11,.row .col-12 {
    -webkit-flex-grow: 0;
    flex-grow: 0
}

.row .col-12 {
    width: 100%
}

.row .col {
    padding: 0 15px
}

.main-content-top .error-fallback {
    margin: auto
}

.error-fallback {
    background: #3a4152;
    padding: 20px;
    text-align: center;
    font-size: 13px;
    max-width: 450px;
    min-width: 320px;
    border-radius: 10px
}

.error-fallback h2 {
    font-size: 20px;
    margin-bottom: 15px
}

.error-fallback svg {
    width: 55px;
    height: 55px;
    display: block;
    margin: auto auto 20px
}

.left-slidebar{
    width: 96px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--background-navbar);
    z-index: 999;
    display: flex;
    padding: 10px 15px;
    flex-direction: column;
    justify-content: space-between;
}

.left-slidebar .logo{
    height: 85px;
    width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(71, 67, 100, 0.1);
    margin: 0 auto;
}

.left-slidebar .logo a img{
    width: 46px;
    height: 46px;
    user-select: none;
}

.left-slidebar-game{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.left-slidebar-game .btn-game.isActive img {
    opacity: 1;
}

.left-slidebar-game .btn-game.isActive:hover img {
    opacity: 1;
}

.left-slidebar-game .btn-game {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s ease-in-out;
}

.left-slidebar-game .btn-game img {
    opacity: .2;
    transition: .2s ease-in-out;
    width: 32px;
    height: 32px;
}

.left-slidebar .wheel-game:hover .game-icon {
    transform: rotate(45deg);
}

.left-slidebar .duels-game .game-icon {
	height: 26px!important;
	width: 26px!important;
	transition: .2s ease-in-out!important;
}

.left-slidebar .duels-game:hover .game-icon {
	height: 22px!important;
	width: 22px!important;
}

.left-slidebar .social-btn {
    width: 40px;
    height: 40px;
    transition: .2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-bottom: 6px;
}

.left-slidebar .social-btn:last-child {
    margin-bottom: 0;
}

.left-slidebar .sosiality-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
	height: 100px;
}

/*
.left-slidebar .social-btn:hover {
    background: var(--main-color-25);
}
*/

.left-slidebar .social-btn:hover svg {
    fill: var(--main-color);
    opacity: 1;
}

.left-slidebar .social-btn svg {
    width: 25px;
    height: 25px;
    transition: .2s ease-in-out;
    fill: #474364;
    opacity: .5;
}

.left-slidebar-game .btn-game:hover {
    background: var(--main-color-10);
}

.left-slidebar-game .btn-game .game-icon {
    opacity: .5;
	fill: var(--text);
	height: 32px;
	width: 32px;
	transition: .2s ease-in-out;
}

.left-slidebar-game .btn-game.isActive{
    background: var(--main-color-10);
}

.left-slidebar-game .btn-game.isActive .game-icon {
    fill: var(--main-color);
    opacity: 1;
}

.left-slidebar-game .btn-game:hover .game-icon {
    width: 28px;
    height: 28px;
	fill: var(--main-color);
    opacity: 1;
}

.logo a{
    transition: .2s ease-in-out;
}

.logo a:hover{
    transform: scale(0.95);
}

.button-like {
    width: 100%;
    text-align: center;
    line-height: 12px;
    font-size: 10px;
    font-weight: 600;
    cursor: pointer;
    background-color: initial;
    border: 0;
    color: #828f9a
}

.button-like[disabled] {
    pointer-events: none;
    opacity: .8
}

.button-like:focus,.button-like:hover {
    outline: none
}

.button-like:hover svg {
    fill: #62ca5b;
    opacity: 1
}

.button-like.dislike {
    margin-top: 8px
}

.button-like.dislike:hover svg {
    fill: #e86376
}

.button-like svg {
    fill: #fff;
    width: 16px;
    height: 16px;
    opacity: .15
}

.message-game {
    width: 100%;
    border: 1px solid rgba(58,63,68,.35);
    margin-top: 8px;
    border-radius: 6px;
    position: relative;
    cursor: pointer
}

.message-game .message-info {
    padding: 6px 10px;
    color: #fff
}

.message-game .message-info>span {
    color: #7f8596
}

.message-game .message-info .payout {
    color: #fff
}

.message-game .message-info .payout.win {
    color: #62ca5b
}

.message-game .message-info .payout.lose {
    color: #e86376
}

.message-game .message-info:hover {
    opacity: .8
}

.message-game .likes-block {
    width: 28px;
    position: absolute;
    left: -34px;
    top: 3px
}

.sanitize-user {
    white-space: nowrap;
    display: inline;
    line-height: 22px;
    display: flex;
    align-items: center;
}

.sanitize-name .sanitize-text{
    font-size: 14px;
    font-weight: 500;
}

.sanitize-avatar {
    width: 46px;
    height: 46px;
    display: inline-block;
    cursor: pointer;
    float: left;
    margin-right: 18px;
    border-radius: 15px;
    overflow: hidden;
}

.sanitize-avatar img {
    width: 100%;
}

.sanitize-name,.sanitize-user {
    position: relative;
    white-space: nowrap;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.sanitize-name.hasVip .sanitize-text,.sanitize-user.hasVip .sanitize-text {
    padding-left: 19px
}

.sanitize-name.hasP:first-letter,.sanitize-user.hasP:first-letter {
    color: #6bceff
}

.sanitize-name .icon-crown,.sanitize-user .icon-crown {
    color: #ffc645;
    position: absolute;
    top: 50%;
    margin-left: -2px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    font-size: .875rem;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .arrow:before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem;
    display: none;
}

.tooltip.premium-tip {
    margin-left: 9px!important
}

.tooltip.ghost-mode {
    pointer-events: none
}

.ghost-mode .tooltip-inner {
    max-width: 150px;
    background-color: #303642;
    box-shadow: 0 0 20px 0 rgba(0,0,0,.4)
}

.bs-tooltip-auto[x-placement^=top].ghost-mode .arrow:before,.bs-tooltip-top.ghost-mode .arrow:before,.ghost-mode.bs-tooltip-auto[x-placement^=top] .arrow:before {
    border-top-color: #303642
}

.admin-badge {
    margin-right: 6px;
    color: #f44336;
    cursor: help;
    font-size: 11px
}

.admin-badge.isModerator {
    color: #4986f5
}

.admin-badge .icon-a {
    width: 10px;
    height: 10px
}

.message-block:hover .admin-actions {
    opacity: 1
}

.admin-actions {
    opacity: 0
}

.admin-actions>.btn {
    position: absolute;
    right: 10px;
    color: #434b53;
    z-index: 9999
}

.popover-body {
    padding: 0
}

.popover-body .muted-form {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 5px;
    color: #fff
}

.popover-body .muted-form input {
    width: 50%;
    border: 0;
    height: 20px;
    padding: 0 5px;
    font-size: 10px;
    border-radius: 3px 0 0 3px;
    background: #191d24;
    color: #fff
}

.popover-body .muted-form input:focus {
    outline: none
}

.popover-body .muted-form button {
    height: 20px;
    width: 50%;
    padding: 0 5px;
    font-size: 9px!important;
    border: 0;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 0 3px 3px 0
}

.popover-body ul {
    list-style: none;
    padding: 6px 0
}

.popover-body ul li {
    padding: 0 8px 6px;
    border-bottom: 1px solid #2b303e;
    margin-bottom: 6px;
    max-width: 160px
}

.popover-body ul li:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

.popover-body ul li>.btn {
    width: 100%!important;
    font-weight: 700;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.chat {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    -webkit-flex: 1 1;
    flex: 1 1;
    padding: 0 20px
}

.chat .chat-empty-block {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 65px;
    padding: 10px;
    font-size: 14px
}



.chat .chat-ban-block {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    position: relative;
    min-height: 65px;
    padding: 10px;
    font-size: 14px;
    height: 80px;
}

.message-top-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 35px;
    width: 100%;
}

.message-btns-admin{
    display: flex;
}

.light-btn{
    opacity: .2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.light-btn svg{
    width: 100%;
    height: 100%;
}

.light-btn img{
    width: 100%;
    height: 100%;
}

.message-btns-admin .light-btn:first-child{
     margin: 0 !important;
}

.message-btns-admin .light-btn{
    margin-left: 10px !important;
    width: 16px;
    height: 16px;
    background: none;
    border: none;
}

.chat .chat-empty-block,.chat .chat-params {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat .chat-empty-block,.chat .chat-params::before{
    content: "";
    width: 50%;
    position: absolute;
    height: 14px;
    top: -7px;
    left: calc(50% / 2);
    background: var(--main-color);
    opacity: .6;
    filter: blur(70px);
}

.chat .chat-params .item .chat-title {
	color: white;
	font-weight: 500;
}

.chat .chat-ban-block {
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    flex-direction: column;
    margin-top: 10px;
}

.chat .chat-ban-block button {
    margin: 5px 0;
    border-radius: 15px;
    background: transparent;
    color: #959fb1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .28px;
    padding: 5px 13px;
    white-space: nowrap;
    height: 30px;
    -webkit-justify-content: center;
    justify-content: center;
}

.chat .chat-params {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 20px 5px;
    -webkit-flex: none;
    flex: none;
	height: 90px;
}

.chat .chat-params>.item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.chat .item .rules-chat{
    border-radius: 15px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 400px !important;
    cursor: pointer;
    color: var(--text);
    background-color: var(--background);
    letter-spacing: 0.03rem;
    margin-left: 15px;  
}

 .rules-chat span{
    font-weight: 400 !important;
 }

.chat .chat-online {
    font-size: 16px;
    color: #5b6271;
    user-select: none;
    gap: 2px;
    padding: 8px 10px;
    background: var(--main-color-10);
    border: 1px solid var(--main-color-10);
    border-radius: 13px;
}

.chat .chat-online span {
    color: var(--main-color);
    font-weight: 600;
}

.chat .chat-conversation {
    flex: auto;
    -webkit-transition: all .3s;
    transition: all .3s;
    min-height: 100px;
    display: flex;
    height: 120px;
    flex-direction: column-reverse;
    position: relative;
    scroll-behavior: smooth;
    overflow: hidden;
    margin-top: 20px;
}

/*
.chat-conversation::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #17181f;
    filter: blur(25px);
    z-index: 9999;
}
*/

.chat .chat-conversation .chat-conversation-inner {
    position: relative;
    margin-right: -15px;
    padding-right: 15px;
    padding-top: 20px;
}

.chat .chat-editable {
    width: 100%;
    resize: none;
    max-width: 214px;
    max-height: 50px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-bottom: 0;
    word-wrap: inherit;
    box-sizing: border-box;
    border: none;
    margin-left: 15px;
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 13px;
}

.scroll-to-new {
    position: absolute;
    left: 25%;
    bottom: 10px;
    padding: 10px 20px;
    border: 1px solid rgba(87, 116, 139, .2);
    border-radius: 15px;
    background: rgba(12, 16, 25, .85);
    backdrop-filter: blur(2px);
    cursor: pointer;
    user-select: none;
    display: none;
    transition: .1s ease-in-out;
    z-index: 11;
}

.scroll-to-new:hover {
    transform: scale(.95);
}

.scroll-to-new span {
    font-size: 14px;
    color: var(--text);
}

.scroll-up {
    display: block !important;
}

.chat .chat-editable::-webkit-scrollbar{
    width: 0;
}

.chat .chat-editable img {
    vertical-align: -3px;
    margin: 0 1px;
    display: inline-block;
    overflow: hidden
}

.chat .chat-editable:focus {
    border-color: #c9d0d6;
    outline: none
}

.chat .chat-message-input {
    justify-content: space-between;
    margin-top: 20px;
    -webkit-flex: none;
    flex: none;
    display: flex;
    align-items: center;
    background-color: var(--light-bg);
    border-radius: 15px;
    display: -webkit-flex;
    display: flex;
    position: relative;
    height: 50px;
    cursor: text;
}

.chat .chat-message-input.p {
    box-shadow: 0 0 0 2px red
}

.chat .chat-textarea {
    -webkit-flex: auto;
    flex: auto;
    max-width: calc(100% - 80px)
}

.chat .chat-params>.item button {
    margin-left: 5px;
}

.toggle a.active, .chat .chat-params>.item button:hover, .chat .chat-params>.item a:hover {
    background: #4986f5;
    border-color: #4986f5;
    color: #fff
}

.chat-transaction__icon {
  font-size: 37px;
  margin: 0 14px 0 0;
}

.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.flex-column_align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.share button {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    border-radius: 6px;
    letter-spacing: .3px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
    outline: none!important;
    cursor: pointer;
}

.share button i {
    color: #4b5562;
    font-size: 7px
}

.share button:after {
    display: none
}

.share img {
    width: 20px
}

.toggle a {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    border-radius: 6px;
    letter-spacing: .3px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
    outline: none!important;
    cursor: pointer;
}

.toggle a i {
    color: #4b5562;
    font-size: 7px
}

.toggle a:after {
    display: none
}

.toggle img {
    width: 20px
}

.list button {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    border-radius: 6px;
    letter-spacing: .3px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
    outline: none!important;
    cursor: pointer;
}

.list button i {
    color: #4b5562;
    font-size: 7px
}

.list button:after {
    display: none
}

.list img {
    width: 20px
}

.clear button {
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    border: none;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 14px;
    line-height: 16px;
    border-radius: 6px;
    letter-spacing: .3px;
    font-weight: 400;
    color: #fff;
    padding: 8px;
    outline: none!important;
    cursor: pointer;
}

.clear button i {
    color: #4b5562;
    font-size: 7px
}

.clear button:after {
    display: none
}

.clear img {
    width: 20px
}

.chat .chat-controls {
    margin: 0 20px;
}

.chat .chat-controls,.chat .chat-controls .item {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex
}

.chat .chat-controls .item {
    -webkit-flex: auto;
    flex: auto;
    -webkit-justify-content: center;
    justify-content: center;
    background: none;
    border: none;
    outline: none!important;
    width: 100%
}

.chat .chat-controls .item[disabled] {
    opacity: .5;
    cursor: not-allowed
}

.chat .chat-controls .item .icon-smile {
    color: #8395b6;
}

.chat .chat-controls .item .icon-send {
    color: #4986f5;
    width: 18px;
    height: auto;
    transition: .5s;
    opacity: .2;
    filter: grayscale(100%);
    cursor: not-allowed;
}

.sendMessage{
    cursor: not-allowed;
}

.sendMessage.i-active{
    cursor: pointer;
}

.i-active {
    opacity: 1!important;
    filter: grayscale(0%)!important;
    cursor: pointer;
}

.chat .chat-controls .item .i-active:hover {
    transform: scale(1.1);
}


.chat-editable:empty:before {
    content: attr(data-placeholder);
    font-size: 13px;
    color: var(--text);
    opacity: .85;
    top: 6.5px;
    bottom: 0;
    cursor: text;
    margin: auto;
    height: 20px;
}

.smile-popover {
    max-width: 214px
}

.smile-popover .wrong-access {
    color: #fff;
    padding: 15px;
    font-size: 14px
}

.smiles-list {
    padding: 10px
}

.smiles-list>span {
    margin: 4px;
    cursor: pointer;
    position: relative
}

.smiles-list>span:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #394453;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: -5px;
    padding: 5px;
    border-radius: 6px;
    opacity: 0;
    z-index: -1
}

.smiles-list>span:hover:before {
    opacity: 1
}

.s {
    background-image: url(../img/smiles.png);
    background-size: 16px 1120px;
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 0!important
}

.s-1f60a {
    background-position: 0 -16px
}

.s-1f60b {
    background-position: 0 -32px
}

.s-1f60c {
    background-position: 0 -48px
}

.s-1f60d {
    background-position: 0 -64px
}

.s-1f60e {
    background-position: 0 -80px
}

.s-1f60f {
    background-position: 0 -96px
}

.s-1f61a {
    background-position: 0 -112px
}

.s-1f61b {
    background-position: 0 -128px
}

.s-1f61c {
    background-position: 0 -144px
}

.s-1f61d {
    background-position: 0 -160px
}

.s-1f61f {
    background-position: 0 -176px
}

.s-1f61e {
    background-position: 0 -192px
}

.s-1f62a {
    background-position: 0 -208px
}

.s-1f62b {
    background-position: 0 -224px
}

.s-1f62c {
    background-position: 0 -240px
}

.s-1f62d {
    background-position: 0 -256px
}

.s-1f62e {
    background-position: 0 -272px
}

.s-1f62f {
    background-position: 0 -288px
}

.s-1f92a {
    background-position: 0 -304px
}

.s-1f92b {
    background-position: 0 -320px
}

.s-1f92c {
    background-position: 0 -336px
}

.s-1f92e {
    background-position: 0 -352px
}

.s-1f92d {
    background-position: 0 -368px
}

.s-1f600 {
    background-position: 0 -384px
}

.s-1f601 {
    background-position: 0 -400px
}

.s-1f92f {
    background-position: 0 -416px
}

.s-1f603 {
    background-position: 0 -432px
}

.s-1f602 {
    background-position: 0 -448px
}

.s-1f604 {
    background-position: 0 -464px
}

.s-1f605 {
    background-position: 0 -480px
}

.s-1f606 {
    background-position: 0 -496px
}

.s-1f607 {
    background-position: 0 -512px
}

.s-1f608 {
    background-position: 0 -528px
}

.s-1f609 {
    background-position: 0 -544px
}

.s-1f610 {
    background-position: 0 -560px
}

.s-1f611 {
    background-position: 0 -576px
}

.s-1f612 {
    background-position: 0 -592px
}

.s-1f613 {
    background-position: 0 -608px
}

.s-1f614 {
    background-position: 0 -624px
}

.s-1f615 {
    background-position: 0 -640px
}

.s-1f618 {
    background-position: 0 -656px
}

.s-1f620 {
    background-position: 0 -672px
}

.s-1f622 {
    background-position: 0 -688px
}

.s-1f621 {
    background-position: 0 -704px
}

.s-1f623 {
    background-position: 0 -720px
}

.s-1f624 {
    background-position: 0 -736px
}

.s-1f625 {
    background-position: 0 -752px
}

.s-1f626 {
    background-position: 0 -768px
}

.s-1f628 {
    background-position: 0 -784px
}

.s-1f629 {
    background-position: 0 -800px
}

.s-1f630 {
    background-position: 0 -816px
}

.s-1f631 {
    background-position: 0 -832px
}

.s-1f627 {
    background-position: 0 -848px
}

.s-1f632 {
    background-position: 0 -864px
}

.s-1f633 {
    background-position: 0 -880px
}

.s-1f636 {
    background-position: 0 -896px
}

.s-1f643 {
    background-position: 0 -912px
}

.s-1f642 {
    background-position: 0 -928px
}

.s-1f641 {
    background-position: 0 -944px
}

.s-1f644 {
    background-position: 0 -960px
}

.s-1f910 {
    background-position: 0 -976px
}

.s-1f911 {
    background-position: 0 -992px
}

.s-1f914 {
    background-position: 0 -1008px
}

.s-1f913 {
    background-position: 0 -1024px
}

.s-1f915 {
    background-position: 0 -1040px
}

.s-1f923 {
    background-position: 0 -1056px
}

.s-1f925 {
    background-position: 0 -1072px
}

.s-1f929 {
    background-position: 0 -1088px
}

.s-1f928 {
    background-position: 0 -1104px
}

.s-2764 {
    background-position: 0 -1120px
}

.message-block {
    position: relative;
    margin-bottom: 15px;
    border-radius: 15px;
    width: 100%;
    padding: 10px 15px;
    background-color: var(--background-message);
    min-height: 46px
}

.message-block .message-avatar {
    width: 46px;
    height: 46px;
    display: inline-block;
    cursor: pointer;
    position: absolute;
}

.message-block .message-avatar.isAdmin img {
    border-color: #f44336
}

.message-block .message-avatar.isModerator img {
    border-color: #4986f5
}

.message-block .message-avatar img {
    border-radius: 15px;
    display: block;
    width: 100%;
    height: 100%;
}

.message-block .delete {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 10px;
}

.message-block .delete button {
    margin: auto;
    border-radius: 15px;
    background: transparent;
    color: #959fb1;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    font-size: 11px;
    padding: 1px;
    width: calc(50% - 5px);
    white-space: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.message-block .delete button svg {
    width: 11px;
    height: 11px;
    margin-right: 4px;
}

.message-block .message-content {
    font-size: 13px;
    line-height: 20px;
    margin: 0 10px 0 64px;
    position: relative;
    word-break: break-word;
    display:block;
}

.message-block .message-content>div {
    width: 100%
}

.message-block .message-content .user-link {
    border: 0;
    padding: 0;
    background: transparent;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: white;
    outline: none;
    cursor: pointer;
    display: block;
    max-width: 80%;
    text-align: left;
    font-size: 13px;
}

.message-block .message-content .user-link:focus,.message-block .message-content .user-link:hover {
    outline: none;
    color: #fff
}

.message-block .message-content>span {
    color: #828f9a
}

.message-block .message-time {
    position: absolute;
    top: 10px;
    right: 0;
    margin-right: 15px;
    cursor: default;
    user-select: none;
}

.message-block .message-time span {
    font-size: 12px;
    color: #fff;
    opacity: .4;
    font-weight: 400;
}

.message-block .message-text {
    display: block;
    word-wrap: break-word;
    color: #fff;
    opacity: .6;
    font-weight: 400;
    margin-top: 5px;
	font-size: 13px;
}

.message-block .message-text span {
    border: none;
    vertical-align: -4px;
    margin: 0 1px;
    display: inline-block;
    overflow: hidden;
}

.user-profile {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    -webkit-flex: 1 1;
    flex: 1 1;
    padding: 0 20px
}

.user-profile .user-avatar {
    margin-bottom: 20px
}

.user-profile .user-avatar .close-btn {
    position: absolute;
    right: 15px;
    top: 25px
}

.user-profile .user-name {
    margin-bottom: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.user-profile .user-name .nickname {
    font-size: 18px;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
    max-width: 200px
}

.user-profile .profile-nav {
    list-style: none;
    width: 100%
}

.user-profile .profile-nav li {
    margin-bottom: 20px
}

.user-profile .profile-nav li a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #626d7e;
    line-height: 20px;
    font-size: 14px
}

.user-profile .profile-nav li a .number-badge {
    position: static;
    top: 0;
    right: 0;
    margin-left: 5px
}

.user-profile .profile-nav li a svg {
    width: 18px;
    height: 18px;
    display: block
}

.user-profile .profile-nav li a .icon-affiliate {
    width: 14px;
    height: 14px
}

.user-profile .profile-nav li a .item-icon {
    width: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 15px
}

.item-admin{
    display: flex;
}

.user-profile .profile-nav li.current a,.user-profile .profile-nav li a:hover {
    color: #fff
}

.user-profile .profile-nav li:last-child {
    margin-bottom: 25px
}

.logout{
    width: 20px;
    height: 20px;
    opacity: .1;
    margin-left: 20px;
}

.logout img{
    width: 100%;
    height: 100%;
}

.user-profile .btn-logout {
    color: #626d7e;
    width: 100%;
    padding: 0;
    background: transparent;
    font-weight: 400;
    font-size: 14px
}

.user-profile .btn-logout .item-icon {
    width: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px
}

.user-profile .btn-logout:hover {
    background: transparent;
    color: #fff
}

.user-profile .user-block {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.user-profile .avatar {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    padding: 5px;
    background: hsla(0,0%,84.7%,.06);
    display: -webkit-flex;
    display: flex
}

.user-profile .avatar img {
    max-width: 100%;
    border-radius: 50%;
    display: block;
    height: 100%;
    width: 100%
}

.tab {
    display: none;
}

.tab.current {
    display: flex;
}

.tab.active {
    display: block;
}

.tabs-nav {
    width: 100%
}

.tabs-nav,.tabs-nav>.item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.tabs-nav>.item {
    margin-right: 10px;
    cursor: pointer;
    -webkit-flex: auto;
    flex: auto;
    -webkit-justify-content: center;
    justify-content: center;
    color: #828f9a;
    font-size: 13px;
    line-height: 18px;
    padding: 10px 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 3px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.tabs-nav>.item:last-child {
    margin-right: 0
}

.tabs-nav>.item svg {
    margin-right: 8px
}

.tabs-nav>.item.current,.tabs-nav>.item:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
}

.tabs-nav.big-tabs {
    width: 100%;
    background: #1c212a;
    border-radius: 6px 6px 0 0;
    margin-bottom: 20px
}

.tabs-nav.big-tabs>.item {
    -webkit-flex: auto;
    flex: auto;
    padding: 20px;
    font-size: 12px;
    line-height: 14px;
    font-weight: 600;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    border-radius: 6px 6px 0 0;
    background: transparent;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #5b656f;
    margin: 0
}

.tabs-nav.big-tabs>.item:hover {
    color: #f1f1f2
}

.tabs-nav.big-tabs>.item.current {
    background: #272d39
}

.right-sidebar {
    z-index: 1002;
    background: var(--background-navbar);
    transition: .2s ease-in-out;
}

.right-sidebar,.right-sidebar .sidebar-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    display: -webkit-flex;
    display: flex;
    width: 360px;
    height: 100%;
    will-change: transform;
}

.right-sidebar .sidebar-container {
    padding: 0 0 25px;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-transition: padding .3s;
    transition: padding .3s
}

.right-sidebar.sticky .sidebar-container {
    padding-top: 22px
}

.right-sidebar .tabs-nav {
    padding: 0 20px;
    margin-bottom: 40px;
    -webkit-flex: none;
    flex: none
}

.right-sidebar .tabs-nav>.item {
    width: 50%;
    position: relative
}

.right-sidebar .tabs-nav>.item svg {
    width: 14px;
    height: 14px
}

.right-sidebar .number-badge {
    position: absolute;
    -webkit-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    background-color: #4986f5;
    top: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    font-size: 11px;
    line-height: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center
}

.close-btn {
    color: #979797;
    width: 34px;
    height: 34px;
    display: none;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    outline: none;
    background: transparent
}

.close-btn svg {
    width: 13px;
    height: 13px
}

.bets-tabs-row {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 40px;
    width: 100%;
    position: relative
}

.bets-tabs-row .btn {
    line-height: 18px;
    font-size: 13px;
    font-weight: 400;
    padding: 9px 17px;
    color: #505961;
    border: 1px solid #353d48;
    background-color: initial
}

.bets-tabs-row .btn[disabled] {
    opacity: 1
}

.bets-tabs-row .btn.isActive {
    color: #fff;
    background-color: #4986f5;
    border: 1px solid #4986f5
}

.bets-tabs-row .btn:not(.isActive):hover {
    color: #fff;
    background-color: initial
}

.bets-tabs-row .btn:first-child {
    margin-right: 10px
}

.bets-tabs-row .close-btn {
    position: absolute;
    right: -5px
}

.table-heading {
    display: table;
    width: 100%;
    border-collapse: initial;
    border-spacing: 0;
    table-layout: fixed;
    position: relative;
    z-index: 2
}

.table-heading .thead {
    display: table-header-group;
    vertical-align: middle
}

.table-heading .tr {
    display: table-row;
    vertical-align: inherit
}

.table-heading .th {
    display: table-cell;
    vertical-align: inherit;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    color: #959fb1;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px 20px
}

.table-heading .th:first-child {
    border-radius: 6px 0 0 0
}

.table-heading .th:last-child {
    border-radius: 0 6px 0 0;
    text-align: right
}

.table-heading.tournaments-history .th:nth-last-child(2) {
    text-align: center
}

.table-wrap {
    position: relative
}

.table,.table-wrap {
    overflow: hidden;
    border-radius: 0 0 6px 6px
}

.table {
    color: #fff;
    width: 100%;
    border-spacing: 0;
    border-collapse: initial;
    table-layout: fixed;
}

.table tr {
    padding: 0 12px
}

.table tr td,.table tr th {
    padding: 10px 20px
}

.table tr th {
    text-align: left;
    font-size: 11px;
    line-height: 14px;
    font-weight: 700;
    color: #959fb1;
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    text-transform: uppercase
}

.table tr th:first-child {
    border-radius: 6px 0 0 0
}

.table tr th:last-child {
    border-radius: 0 6px 0 0
}

.table tr td {
    font-size: 14px;
    line-height: 16px;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: .2px;
}

.table td .btnUnBan {
    float: right;
    border-radius: 15px;
    background: transparent;
    color: #959fb1;
    border: none;
    box-shadow: none;
    text-transform: uppercase;
    font-size: 11px;
    padding: 1px 7px;
    width: auto;
    white-space: nowrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.table td .btnUnBan svg {
    width: 11px;
    height: 11px;
    margin-right: 4px;
}

.table tr:last-child td:first-child {
    border-radius: 0 0 0 6px;
}

.table tr:last-child td:last-child {
    border-radius: 0 0 6px 0
}

.table.hoverable tr:hover {
    background: #303643
}

.table .btn-link {
    color: #7d8a98;
    font-weight: 600;
    font-size: 13px;
    padding: 0
}

.empty-table-list {
    padding: 30px 0;
    background: #2c323f;
    border-radius: 6px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: 18px;
    margin: 30px 0 0
}

.bet-number.rtl svg {
    left: auto;
    right: -21px
}

.bet-number .bet-wrap {
    display: inline-block;
    position: relative
}

.bet-number .bet-wrap .pre {
    position: absolute;
    left: -4px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
}

.bet-number .bet-wrap>span {
    display: -webkit-flex;
    display: flex
}

.bet-number .bet-wrap .tied,.bet-number .bet-wrap .won {
    color: #62ca5b
}

.bet-number .bet-wrap .lost {
    color: #828f9a
}

.bet-number svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -21px;
    font-size: 15px;
    color: #959fb1
}

.bet-number.golden svg {
    fill: #ffc645
}

.game-stats {
    width: 100%;
    position: relative;
    border-radius: 6px
}

.game-stats,.game-stats .table-stats-wrap {
    overflow: hidden
}

.game-stats .table-wrap {
    will-change: transform
}

.game-stats .th:nth-last-child(2) {
    text-align: center
}

.stats-bet{
    background: var(--background-navbar);
    border-radius: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;;
    align-items: center;
    padding: 12px 16px;
    color: #DADADA;
    transition: .3s ease-in-out;
    opacity: 1;
    overflow: hidden;
}

.stats-bet .sanitize-user .sanitize-avatar{
    width: 40px;
    height: 40px;
}

.stats-bet:first-child{
    opacity: 0;
}

.stats-bet .bet{
    display: flex;
}

.stats-bet .bet span{
    display: flex;
}

.stats-bet:last-child{
    margin-bottom: 0;
}

.stats-bet-chance{
    display: flex;
    align-items: center;
    justify-content: end;
    font-weight: 500;
}

.stats-who-bet{
    color: #fff;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stats-who-bet .bet{
    color: var(--green);
    font-size: 14px;
    font-weight: 400;
}

.stats-who-bet .sanitize-name{
    font-size: 14px;
}

.game-stats table tbody tr {
    height: 53px
}

.game-stats table tbody tr td {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    letter-spacing: .2px;
    padding: 8px 20px;
}

.game-stats table tbody tr td:nth-last-child(2) {
    text-align: center
}

.game-stats table tbody tr td:last-child {
    text-align: right
}

.game-stats table tbody tr:last-child td {
    border-bottom: 0
}

.game-stats .game-data {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.game-stats .game-data .btn-icon {
    padding: 0;
    background: transparent
}

.game-stats .game-data .game-icon {
    color: #959fb1;
    margin-right: 12px;
    width: 24px;
    text-align: center
}

.game-stats .game-data .game-icon svg {
    width: 22px;
    height: 22px
}

.game-stats .game-data .game-info .btn-name {
    background: transparent;
    padding: 0;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    text-transform: capitalize;
    display: block
}

.game-stats .game-data .game-info button {
    color: #545b70;
    font-size: 12px;
    font-weight: 400
}

.game-stats .username .btn-link.hasP>span:first-letter {
    color: #6bceff
}

.game-stats .username.anonymous span {
    font-style: italic;
    border-bottom: 1px dotted;
    line-height: 1.2;
    cursor: help;
    font-size: 13px;
    color: #7d8a98
}

.promo-counters .counter-block {
    padding: 25px 0;
    width: 100%;
    position: relative;
    text-align: center;
    background: #262b37;
    border-radius: 15px;
    border: 2px solid #262b37;
    box-shadow: inset 0 0 0 3px #1f242e
}

.promo-counters .counter-num {
    color: #fff;
    font-size: 21px;
    line-height: 21px;
    font-weight: 600;
    margin-bottom: 5px
}

.promo-counters .counter-text {
    color: #828f9a;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600
}

.footer-counters {
    padding-top: 40px
}

.footer-counters .counter-block {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 15px 0;
    width: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.footer-counters .counter-block .counter-text {
    color: #828f9a;
    margin-bottom: 2px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600
}

.footer-counters .counter-block .counter-num {
    font-size: 16px;
    font-weight: 600;
    color: #ff4ba1;
}

.footer {
    /* background: #20242d; */
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 11px;
    line-height: 14px;
    color: #525c71;
    padding-left: 20px;
    padding-right: 20px;
}

.footer .col {
    position: relative
}

.footer .row {
    -webkit-align-items: flex-end;
    align-items: flex-end;
    
}

.footer .license {
    text-align: right
}

.footer-nav {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    list-style: none
}

.footer-nav li {
    margin-right: 25px
}

.footer-nav li:last-child {
    margin-right: 0
}

.footer-nav li a {
    font-size: 11px;
    line-height: 14px;
    color: #525c71;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.footer-nav li a svg {
    margin-right: 5px
}

.footer-nav li a:hover {
    color: #fff
}

.footer .left-content .title{
    height: 20px;
    margin-top: 10px;
    margin-bottom: 34px;
}

.footer .left-content .title img{
    height: 100%;
}

.footer .left-content .title:first-letter{
    color: var(--main-color);
}

.footer .left-content .sub-title{
    display: flex;
    align-items: center;
    background: var(--background-navbar);
    border-radius: 15px;
    color: #DADADA;
    gap: 10px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
}

.footer .right-content .sub-title{
    margin-top: 17px;
}

.footer .right-content .sub-title .links{
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: end;
}

.footer .right-content .sub-title .links .link{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    background: var(--background-navbar);
    border-radius: 11px;
    color: var(--text);
    font-family: "Gilroy";
    font-weight: 600;
    font-size: 12px;
}

.footer .row{
    justify-content: space-between;
    align-items: start;
}

.copyright {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column
}

.copyright .footer-logo {
    padding-bottom: 20px
}

.copyright .footer-logo img {
    display: block;
    max-width: 80px;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: .3
}

.copyright .text {
    display: block;
    font-size: 11px;
    line-height: 16px;
    color: #525c71;
    text-align: right
}

.copyright .icon {
    margin-left: 25px
}

.copyright .icon img {
    display: block
}

.socials-list {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 30px
}

.socials-list li {
    margin-right: 8px;
    margin-bottom: 8px
}

.socials-list li:last-child {
    margin-right: 0
}

.socials-list li a {
    border-radius: 3px;
    background: #272d39;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #878f9e;
    font-size: 11px;
    line-height: 14px;
    padding: 6px 12px
}

.socials-list li a:hover {
    background: #444d5f;
    color: #fff
}

.socials-list li a i {
    margin-right: 8px;
    font-size: 12px;
    display: block
}

.socials-list li a span {
    display: block;
    margin-bottom: 2px
}

.mobile-nav-component {
    position: fixed;
    display: none;
    left: 0;
    bottom: -1px;
    width: 100%;
    background: #20242d;
    z-index: 100;
}

.mobile-nav-component .pull-out {
    position: absolute;
    bottom: 100%;
    left: 0;
    z-index: -1;
    background: #1a2a65;
    width: 100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .3s;
    transition: all .3s;
}

.mobile-nav-component .pull-out .close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 3
}

.mobile-nav-component .pull-out.opened {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.mobile-nav-component .pull-out-nav {
    display: -webkit-flex;
    display: flex;
    list-style: none;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: center;
    align-items: center;
    width: calc(100% + 10px);
    margin-left: -5px;
    margin-right: -5px
}

.mobile-nav-component .pull-out.other .pull-out-nav>li {
    width: 50%;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-component .pull-out.game .pull-out-nav>li {
    width: 100%;
    padding: 0 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-component .pull-out-nav>li>a,.mobile-nav-component .pull-out-nav>li>button {
    font-size: 13px;
    letter-spacing: -.1px;
    color: #828f9a;
    text-decoration: none;
    line-height: 14px;
    padding: 20px 15px 20px 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    position: relative
}

.mobile-nav-component .pull-out-nav>li>a svg,.mobile-nav-component .pull-out-nav>li>button svg {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 14px;
    height: 14px
}

.mobile-nav-component .pull-out-nav>li>a svg.icon-faq,.mobile-nav-component .pull-out-nav>li>button svg.icon-faq {
    font-size: 15px
}

.mobile-nav-component .pull-out-nav>li>a svg.icon-achievements,.mobile-nav-component .pull-out-nav>li>button svg.icon-achievements {
    font-size: 16px
}

.mobile-nav-component .pull-out-nav>li.current>a,.mobile-nav-component .pull-out-nav>li.current>button,.mobile-nav-component .pull-out-nav>li>a:hover,.mobile-nav-component .pull-out-nav>li>button:hover {
    color: #fff
}

.mobile-nav-component .mobile-nav-menu-wrapper {
    width: 100%;
    background: #1a2a65;
}

.mobile-nav-component .mobile-nav-menu {
    list-style: none;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
    padding: 15px;
    width: 100%;
    max-width: 420px;
    margin: 0 auto
}

.mobile-nav-component .mobile-nav-menu li {
    margin-right: 5px
}

.mobile-nav-component .mobile-nav-menu li:last-child {
    margin-right: 0
}

.mobile-nav-component .mobile-nav-menu li a,.mobile-nav-component .mobile-nav-menu li button {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    color: #828f9a;
    font-size: 12px;
    line-height: 12px;
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer
}

.mobile-nav-component .mobile-nav-menu li a svg,.mobile-nav-component .mobile-nav-menu li button svg {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 8px;
    width: 14px;
    height: 14px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.mobile-nav-component .mobile-nav-menu li a:hover,.mobile-nav-component .mobile-nav-menu li button:hover {
    color: #fff
}

.mobile-nav-component .icon-more {
    width: 16px;
    height: 16px
}

.social-auth-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.58);
    z-index: 9999
}

.social-auth-section .block {
    width: 100%;
    white-space: nowrap;
    position: absolute;
    max-width: 340px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    height: 33vh
}

.social-auth-section .loader {
    height: 100px
}

.social-auth-section .loader img {
    height: 80px;
    width: 80px
}

.social-auth-section .text {
    font-size: 28px
}

.error-boundary {
    background: #1d2129;
    padding: 20px;
    text-align: center;
    font-size: 23px
}

.error-boundary svg {
    width: 85px;
    height: 85px;
    display: block;
    margin: auto
}

.input-valid {
    display: inherit;
    width: inherit
}

.input-valid .valid {
    text-align: center;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #e86376;
    visibility: hidden;
    opacity: 0;
    bottom: 100%;
    left: 0;
    background: #1c2028;
    border-radius: 6px;
    padding: 1em;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out
}

.input-valid .valid.inline {
    bottom: auto;
    top: 100%;
    background: rgba(220,53,69,.9);
    border-radius: 2px;
    font-size: 10px;
    margin: 2px 0 0;
    color: #fff;
    padding: 4px 6px;
    z-index: 3
}

.input-valid .valid.inline.top {
    top: auto;
    bottom: calc(100% + 2px);
    left: 0;
    right: auto
}

.input-valid .valid.inline.top-right {
    top: auto;
    bottom: 100%;
    left: auto;
    right: 0
}

.input-valid .valid.inline:after {
    display: none
}

.input-valid .valid.visible {
    opacity: 1;
    visibility: visible
}

.input-valid .valid:after {
    content: "";
    position: absolute;
    left: .5em;
    top: 100%;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #1c2028!important
}

.input-group {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-items: stretch;
    align-items: stretch;
    width: 100%
}

.input-group .input-field {
    position: relative;
    -webkit-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.input-group .input-field:not([readonly]):active+.input-group-append.text,.input-group .input-field:not([readonly]):focus+.input-group-append.text {
    border: 1px solid #4986f5;
    border-left: 0
}

.input-group .input-field:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group .input-field:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0
}

.input-group-prepend {
    display: -webkit-flex;
    display: flex;
    border-radius: 0 6px 6px 0;
    position: relative
}

.input-group-prepend.text {
    background-color: #2f3542
}

.input-group-prepend .btn:first-child {
    border-radius: 6px 0 0 6px
}

.input-group-append {
    display: -webkit-flex;
    display: flex;
    border-radius: 0 6px 6px 0;
    position: relative
}

.input-group-append.text {
    background-color: #2f3542;
    color: #4986f5;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 .75rem;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid transparent
}

.input-group-append .btn {
    margin-left: -5px
}

.input-suffix {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    pointer-events: none;
    white-space: nowrap;
    color: #fafafa;
    overflow: hidden;
    padding: 0 13px;
    line-height: normal
}

.input-suffix>span {
    color: transparent;
    letter-spacing: normal
}

.input-with-icon {
    padding-left: 65px
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-weight: 600;
}

.input-icon.blue{
    background: var(--main-color-15);
    color: var(--main-color);
}

.input-icon.green{
    background: rgba(44, 255, 78, .15);
    color: #2CFF4E;
}

.input-icon.purple{
    background: rgba(187, 44, 255, .15);
    color: #BB2CFF;
}

.input-icon .icon-coin {
    margin-top: 2px;
}

.deposit-section .select-payment .dropdown {
    width: 100%
}

.deposit-section .select-payment .dropdown .btn {
    height: 46px;
    font-size: 14px;
    margin: 0;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    color: #7f8596;
    -webkit-justify-content: flex-start;
    justify-content: flex-start
}

.deposit-section .select-payment .dropdown .btn:active,.deposit-section .select-payment .dropdown .btn:focus,.deposit-section .select-payment .dropdown .btn:hover {
    background: rgba(255, 255, 255, 0.10);
}

.deposit-section .select-payment .dropdown .btn .image.yandex {
    margin-top: -5px
}

.deposit-section .select-payment .dropdown .btn .image.yandex img {
    width: 14px
}

.select-payment {
    width: 100%;
    position: relative;
    margin: 0
}

.select-payment.hasError .dropdown .btn {
    border-color: #e86376!important
}

.select-payment .error-text {
    position: absolute;
    left: 0;
    top: 100%;
    background: rgba(220,53,69,.9);
    border-radius: 2px;
    font-size: 10px;
    margin: 2px 0 0;
    color: #fff;
    padding: 4px 6px;
    font-weight: 600
}

.modal-dialog.deposit-modal {
    width: 400px;
    margin-left: auto;
    margin-right: auto
}

.deposit-modal-component {
    padding: 15px 25px 25px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center
}

.deposit-modal-component .wrap {
    width: 100%
}

.deposit-modal-component .input-field {
    height: 46px
}

.deposit-modal-component .form-label {
    color: #a5adc1;
    font-size: 14px
}

.deposit-modal-component .input-with-icon {
    padding-left: 30px
}

.deposit-modal-component .tabs {
    display: -webkit-flex;
    display: flex;
    margin-bottom: 20px
}

.deposit-modal-component .btn-tab {
    background-color: initial;
    border-radius: 0;
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding-bottom: 15px;
    color: #959fb1;
    cursor: pointer;
    font-size: 15px;
    border: 0;
    border-bottom: 2px solid transparent
}

.deposit-modal-component .btn-tab:hover {
    color: #fff
}

.deposit-modal-component .btn-tab.isActive {
    border-bottom: 2px solid #4986f5;
    color: #fff
}

.deposit-modal-component .deposit-input-box {
    margin-bottom: 10px;
    color: #959fb1
}

.deposit-modal-component .deposit-input {
    height: 46px;
    border: 1px solid #464e5f;
    margin-top: 8px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 0 15px;
    border-radius: 6px;
    color: #fff;
    font-size: 15px
}

.deposit-modal-component .deposit-input svg {
    margin-right: 5px
}

.deposit-modal-component .deposit-section .btn {
    width: 100%;
    height: 56px;
    font-size: 16px;
    font-weight: 400;
    margin-top: 8px;
    -webkit-justify-content: center;
    justify-content: center
}

.deposit-modal-component .deposit-section .btn-toggle {
    font-size: 14px;
    height: 46px;
    margin: 0;
    -webkit-justify-content: flex-start;
    justify-content: flex-start
}

.deposit-modal-component .checkbox-block {
    margin: 20px 0 0;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center
}

.deposit-modal-component .checkbox-block label {
    cursor: pointer;
    color: #7f8596;
    font-size: 13px;
    display: block;
    position: relative;
    line-height: 1.3;
    padding-left: 25px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.deposit-modal-component .checkbox-block label input:checked~.checkmark {
    background-color: #4986f5
}

.deposit-modal-component .checkbox-block label input:checked~.checkmark:after {
    display: block
}

.deposit-modal-component .checkbox-block label:hover {
    color: #8d92a1
}

.deposit-modal-component .checkbox-block input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.deposit-modal-component .checkbox-block .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    border: 2px solid #4986f5;
    background: transparent;
    border-radius: .25rem
}

.deposit-modal-component .checkbox-block .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 3px;
    top: 0;
    width: 4px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.deposit-modal-component .checkbox-block.hasErrors label {
    color: #e86376
}

.deposit-modal-component .checkbox-block.hasErrors label .checkmark {
    border-color: #e86376!important
}

.deposit-modal-component .problem-block {
    border-radius: 6px;
    padding: 15px;
    margin: 18px 0 0;
    border: 1px solid #62ca5b;
    text-align: center
}

.deposit-modal-component .problem-block button {
    outline: none;
    cursor: pointer;
    background: transparent;
    color: #62ca5b;
    border: 0;
    border-bottom: 1px solid transparent
}

.deposit-modal-component .problem-block button:hover {
    border-bottom: 1px solid #62ca5b
}

.caption-line {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 15px;
    color: #959fb1;
    position: relative;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    overflow: hidden
}

.caption-line span {
    display: inline-block;
    vertical-align: initial;
    position: relative;
    padding: 0 10px
}

.caption-line span:after,.caption-line span:before {
    content: "";
    display: block;
    width: calc(100% + 10px);
    position: absolute;
    top: 50%;
    border-top: 1px solid rgba(91,98,113,.5)
}

.caption-line span:before {
    right: 100%
}

.caption-line span:after {
    left: 100%
}

.modal-dialog.faucet-demo-modal {
    margin: auto
}

.faucet-container {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

.faucet-container .grouped-fields {
    margin-bottom: 0
}

.faucet-container .faucet-caption {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px
}

.faucet-container .caption-line span {
    padding: 0 20px
}

.faucet-container .caption-line span:after,.faucet-container .caption-line span:before {
    width: calc(300% + 10px)
}

.faucet-container .caption-line svg {
    width: 17px;
    height: 17px;
    color: #959fb1
}

.faucet-container .faucet-text {
    font-size: 14px;
    line-height: 19px
}

.faucet-container .faucet-text .error-image {
    display: block;
    margin: 0 auto 15px;
    font-size: 40px
}

.faucet-container .faucet-modal-form {
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px
}

.faucet-container .faucet-modal-form:last-child {
    margin-bottom: 0
}

.faucet-container .faucet-modal-form .faucet-amount {
    font-size: 20px;
    line-height: 23px;
    margin-bottom: 15px;
}

.faucet-container .faucet-modal-form .faucet-reload {
    font-size: 15px
}

.faucet-container .faucet-modal-form .faucet-reload span:first-child {
    color: rgba(201,205,219,.54)
}

.faucet-container .faucet-modal-form .faucet-cd {
    font-size: 16px;
    color: #565e6d
}

.faucet-container .faucet-modal-form .faucet-sm-text {
    font-size: 12px;
    line-height: 16px;
    margin-top: 7px;
    font-weight: 600;
    color: #9ca4b3
}

.faucet-container .faucet-modal-form .btn {
    width: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    height: 48px
}

.faucet-container .captcha-block {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 20px
}

.faucet-container .recharge-block {
    margin-bottom: 4px;
    text-align: center
}

.faucet-container .recharge-block>span {
    font-size: 12px;
    color: rgba(201,205,219,.54);
    margin-bottom: 5px
}

.faucet-container .recharge-block .time-left {
    font-weight: 600;
    font-size: 32px;
    line-height: 33px;
    color: #c9cddb;
    margin-top: 5px
}

.error-data-fetch {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    min-height: 200px;
    -webkit-align-items: center;
    align-items: center;
    font-size: 18px
}

.modal-dialog.user-modal {
    width: 510px
}

.user-modal__container {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center
}

.user-modal__container .properties .rating {
    margin-left: 15px;
    color: #828f9a;
    font-size: 12px;
    font-style: italic;
    margin-top: 2px
}

.user-modal__container .properties .rating span {
    color: #fff
}

.user-modal__head {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 20px
}

.user-modal .sanitize-name.hasVip .sanitize-text,.user-modal .sanitize-user.hasVip .sanitize-text {
    padding-left: 30px
}

.user-modal .date {
    color: #828f9a;
    font-size: 12px;
    font-style: italic;
    margin-top: 2px
}

.user-modal .avatar {
    display: -webkit-flex;
    display: flex;
    padding: 0;
    margin-bottom: 20px
}

.user-modal .avatar,.user-modal .avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: relative
}

.user-modal .avatar img {
    max-width: 100%;
    display: block
}

.user-modal .avatar:after {
    content: "";
    position: absolute;
    display: block;
    width: 90px;
    height: 90px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    border: 1px solid hsla(0,0%,59.2%,.087);
    border-radius: 50%
}

.user-modal .user-block {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column
}

.user-modal .user-name {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #fff
}

.user-modal .user-name:hover {
    /* color: #4986f5 */
}

.user-modal .tabs {
    margin-bottom: 25px
}

.user-modal .tabs .btn {
    background-color: #1c2028;
    text-transform: uppercase;
    -webkit-transition: 0s;
    transition: 0s
}

.user-modal .tabs .btn.isActive {
    background-color: #121419
}

.user-modal .tabs .btn>img {
    margin-right: 5px;
    width: 16px;
    height: 16px
}

.user-modal .tabs .btn:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 1px solid #272d39
}

.user-modal .tabs .btn:nth-child(2) {
    border-radius: 0
}

.user-modal .tabs .btn:last-child {
    border-radius: 0 6px 6px 0
}

.user-modal .tabs .btn:not([disabled]):not(.isActive):hover {
    background-color: #16191f
}

.user-modal .no-stats {
    min-height: 118px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 20px
}

.user-modal .card-stats {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 15px
}

.user-modal .card-stats:last-child {
    margin-bottom: 0
}

.user-modal .card-stats .stats-item {
    width: 50%;
    margin-right: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 10px;
}

.user-modal .card-stats .stats-item:nth-child(4),.user-modal .card-stats .stats-item:nth-child(5),.user-modal .card-stats .stats-item:nth-child(6) {
    margin: 0
}

.user-modal .card-stats .stats-item:last-child {
    margin-right: 0
}

.user-modal .card-stats .stats-item>.item-label {
    font-size: 14px;
    color: #959fb1;
    margin-bottom: 3px;
}

.user-modal .card-stats .stats-item>.item-value {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    color: #ff4ba1;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.user-modal .card-stats .stats-item>.item-value .icon-wrapper {
    display: inline-block;
    height: 14px;
    width: 14px;
    margin-right: 5px
}

.user-modal .card-stats .stats-item>.item-value svg {
    width: 100%;
    height: 100%
}

.sr--only {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.game {
    display: -webkit-flex;
    display: flex;
    width: 100%;
    -webkit-align-items: stretch;
    align-items: stretch;
    position: relative
}

.game-component {
    -webkit-align-items: stretch;
    align-items: stretch;
    width: calc(100% - 400px);
    position: relative
}

.game-block,.game-component {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column
}

.game-block {
    width: 100%;
    position: relative;
}

.game-block,.game .game-area-subsection {
    border-radius: 15px;
}

.game-name {
	font-size: 20px;
    color: #B3ADD9;
}

.info-content {
	display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    width: 100%;
}

.game-bank {
	display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 10px 20px;
    background-color: rgba(98, 213, 178, .3);
    border-radius: 0.8rem;
    color: #80f0d3;
}

.round-id {
	color: #794DFD;
}

.game-bank-title {
	text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-block .bottom-content {
	border-radius: 0 0 10px 10px;
	padding-top: 10px;
	padding-bottom: 20px;
}

.game .game-area-subsection {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: auto;
    flex: auto
}

.game-sign {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    padding: 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.game-sign .game-sign-wrap {
    width: 100%;
    max-width: 330px;
    overflow: hidden;
    position: relative;
    z-index: 21;
    box-shadow: 0 0 10px rgba(28,32,40,.5);
    -webkit-flex: 0 1 auto;
    flex: 0 1 auto;
    border-radius: 6px
}

.game-sign .game-sign-block {    background: linear-gradient(to right top, #1d1034, #19275b);
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    border-radius: 6px
}

.game-sign .game-sign-block .btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 15px
}

.game-sign .game-sign-block .btn svg {
    margin-right: 8px
}

.game-sign form {
    width: 100%
}

.game-sign .form-row {
    margin-bottom: 10px
}

.modal-content .form-row:last-child{
    margin-bottom: 0;
}

.game-sign .input-field {
    height: 36px;
    border-radius: 3px;
    background: #272d39
}

.game-area {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.game-area__wrap {
    display: -webkit-flex;
    display: flex;
    -webkit-flex: auto;
    flex: auto;
    -webkit-justify-content: stretch;
    justify-content: stretch
}

.game-area .game-area-content {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex: auto;
    flex: auto
}

.game-area .bottom-corners,.game-area .top-corners {
    position: absolute;
    width: 100%
}

.game-area .bottom-corners:after,.game-area .bottom-corners:before,.game-area .top-corners:after,.game-area .top-corners:before {
    content: "";
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(105,116,132,.08);
    position: absolute
}

.game-area .top-corners {
    left: 0;
    top: 0
}

.game-area .top-corners:before {
    left: -27px;
    top: -27px
}

.game-area .top-corners:after {
    right: -27px;
    top: -27px
}

.game-area .bottom-corners {
    left: 0;
    bottom: 0
}

.game-area .bottom-corners:before {
    left: -27px;
    bottom: -27px
}

.game-area .bottom-corners:after {
    right: -27px;
    bottom: -27px
}

.hash {
    color: #CED5E3;
    max-width: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: end;
}

.copy-btn{
    margin-left: 12px;
    opacity: .6;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.copy-btn:hover{
    opacity: 1;
}

.hash .title{
    width: calc(100% - 30px);
    display: flex;
    align-items: center;
    opacity: .6;
}

.hash .text {
    color: var(--text);
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 12px;
    width: 100%;
    opacity: 1;
}

.collapse:not(.show) {
    display: none
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition: height .35s ease;
    transition: height .35s ease
}

.collapse-component {
    border-radius: 3px;
    border: 1px solid hsla(0,0%,59.2%,.087);
    width: 100%;
    margin: 15px 0
}

.collapse-component .collapse-top {
    padding: 10px 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    position: relative
}

.collapse-component .collapse-top .collapse-title {
    font-size: 15px;
    line-height: 20px;
    color: #a9acb7;
    -webkit-flex: auto;
    flex: auto;
    margin-right: 20px;
    font-weight: 400;
    -webkit-transition: all .3s;
    transition: all .3s;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.collapse-component .collapse-top .collapse-title .title-icon {
    width: 24px;
    height: 24px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-right: 8px
}

.collapse-component .collapse-top .collapse-title .title-icon svg {
    width: 24px;
    height: 24px;
    display: block
}

.collapse-component .collapse-top .btn {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0 0 0 35px;
    font-size: 15px;
    font-weight: 400
}

.collapse-component .collapse-top .collapse-after {
    fill: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all .3s;
    transition: all .3s;
    pointer-events: none
}

.collapse-component .collapse-top .collapse-after svg {
    width: 100%;
    height: 100%
}

.collapse-component .collapse-top:hover .collapse-title {
    color: #fff
}

.collapse-component .collapse-content {
    padding: 0 15px
}

.collapse-component .collapse-content p {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 17px;
    color: #c9cddb
}

.collapse-component .collapse-content p:last-child {
    margin-bottom: 0
}

.collapse-component.opened .collapse-top .collapse-title {
    color: #fff
}

.collapse-component.opened .collapse-top .collapse-after {
    -webkit-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg)
}

.modal-dialog.fair-modal {
    width: 500px
}

.fair-modal__container {
    padding: 20px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    align-items: center
}

.fair-modal__container h1 {
    margin-bottom: 15px
}

.fair-modal__container .btn-rotate {
    display: block;
    margin: 0 auto 15px
}

.fair-modal__container .fair-table {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    word-break: break-all;
    width: 100%
}

.fair-modal__container .fair-table h2 {
    text-align: center;
    margin-bottom: 15px
}

.fair-modal__container .fair-table .table {
    border-radius: 6px
}

.fair-modal__container .fair-table .table th {
    text-align: center
}

.fair-modal__container .fair-table .table td {
    text-align: center;
    width: 33.33%
}

.fair-modal__container .fair-alert {
    background: #303642;
    border-radius: 6px;
    padding: 10px;
    margin: 15px 0;
    text-align: center;
    border: 1px solid red;
    font-size: 16px
}

.fair-modal__container .form-row {
    width: 100%
}

.game-sidebar {
    width: 386px;
    margin-right: 30px;
    -webkit-flex: none;
    flex: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.game-sidebar,.game-sidebar .sidebar-block {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch
}

.progress-item-btn{
    color: var(--text);
    cursor: pointer;
    padding-bottom: 3px;
    border-bottom: 1px solid var(--text);
}

.game-sidebar .sidebar-block {
    width: 100%;
    -webkit-flex: auto;
    flex: auto
}

.bet-component {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    overflow: hidden;
    width: 100%
}

.button-group__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bet-component .bet-form{
    padding: 24px 28px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
    background: var(--background-navbar);
}

.bet-form .btn, .bet-form input {
    z-index: 2;
    position: relative;
}

.bet-form .btn.btn-bet-clear{
    position: absolute;
}

.btns-wrapper {
    z-index: 3;
}

.bet-component .bet-form:before{
    content: "";
    position: absolute;
    left: -50px;
    top: -130px;
    background: #8CABF0;
    opacity: 0.25;
    filter: blur(104px);
    width: 195px;
    height: 195px;
    z-index: 1;
}

.bet-component .bet-form::after{
    content: "";
    position: absolute;
    left: calc(50% - 97.5px);
    bottom: -130px;
    background: #8CABF0;
    opacity: 0.25;
    filter: blur(65px);
    width: 195px;
    height: 195px;
    z-index: 1;
}

.bet-component .bet-tabs {
    margin-top: -25px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px
}

.bet-component .btn.btn-play, .bet-component .btn.btn-withdraw {
    height: 60px;
    font-size: 15px;
    display: block;
    -webkit-align-items: baseline;
    align-items: baseline;
    width: 100%;
    color: var(--background);
    font-weight: 600;
}



.bet-component .bet-footer {
    margin-top: 30px;
    -webkit-flex: none;
    flex: none;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.bet-component .bet-footer,.bet-component .bet-footer .btn {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center
}

.bet-component .bet-footer .btn {
    margin: 0 auto;
    border-radius: 15px;
    background: transparent;
    color: #959fb1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .28px;
    padding: 5px 13px;
    width: calc(50% - 4px);
    white-space: nowrap;
    height: 30px;
    -webkit-justify-content: center;
    justify-content: center;
}

.bet-component .bet-footer .btn svg {
    width: 14px;
    height: 14px;
    margin-right: 5px
}

.bet-component .two-cols {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.bet-component .two-cols>.form-row {
    width: calc(50% - 5px)
}

.pick-wrapper {
    margin-bottom: 20px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pick-wrapper .pick {
    padding: 6px;
    position: relative;
    background: #272d39;
    margin-bottom: 15px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: 13px
}

.pick-wrapper .pick,.pick-wrapper .pick.rounded {
    border-radius: 6px;
    border: 1px solid hsla(0,0%,59.2%,.12);
    width: 100%
}

.pick-wrapper .pick.rounded .btn {
    width: 50%;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center
}

.pick-wrapper .pick.rounded .btn:first-child {
    margin-right: 6px
}

.pick-wrapper .pick-or {
    padding: 0 15px;
    font-size: 8px;
    text-transform: uppercase;
    color: #5f6977;
    letter-spacing: .22px;
    display: block
}

.pick-wrapper .btn-auto-pick {
    -webkit-flex: auto;
    flex: auto;
    background-color: #ffd000;
    color: #665300;
    -webkit-justify-content: center;
    justify-content: center;
    font-size: inherit
}

.pick-wrapper .btn-auto-pick:hover {
    background-color: #cca600
}

.pick-wrapper .btn-auto-pick svg {
    margin-right: 5px;
    margin-top: -4px;
    margin-left: -6px;
    width: 18px;
    height: 18px;
    display: block
}

.pick-wrapper .pick-numbers {
    -webkit-flex: auto;
    flex: auto;
    color: #7d8a98;
    font-size: 11px;
    font-weight: 600;
    text-align: center
}

.input-validation {
    text-align: center;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #e86376;
    visibility: hidden;
    opacity: 0;
    bottom: 100%;
    left: 0;
    background: #1c2028;
    border-radius: 3px;
    padding: 7px 10px;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out;
    z-index: 3
}

.input-validation.top:after {
    content: "";
    position: absolute;
    left: .5em;
    top: 100%;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #1c2028!important
}

.input-validation.bottom {
    top: 100%;
    bottom: auto;
    margin-top: 3px
}

.input-validation.bottom:after {
    content: "";
    position: absolute;
    left: .5em;
    bottom: 100%;
    width: 0;
    height: 0;
    border-color: transparent transparent #1c2028;
    border-style: solid;
    border-width: 0 4px 6px
}

.input-validation.visible {
    opacity: 1;
    visibility: visible
}

.carousel {
    position: relative;
    width: 100%;
    cursor: default !important;
    margin: 24px 0;
}

.carousel.pointer-event {
    touch-action: pan-y
}

.carousel .btn-next,.carousel .btn-prev {
    position: absolute;
    background-color: initial;
    padding: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--text);
}

.carousel .btn-next:focus,.carousel .btn-next:hover,.carousel .btn-prev:focus,.carousel .btn-prev:hover {
    background-color: initial
}

.carousel .btn-next:focus svg,.carousel .btn-next:hover svg,.carousel .btn-prev:focus svg,.carousel .btn-prev:hover svg {
    fill: #939caf
}

.carousel .btn-next {
    right: -33px
}

.carousel .btn-next svg {
    -webkit-transform: scale(-1);
    transform: scale(-1)
}

.carousel .btn-prev {
    left: -33px
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 62px;
    cursor: default !important;
}

.carousel-inner:after {
    display: block;
    clear: both;
    content: ""
}

.carousel-item {
    width: 100%;
    min-height: 62px;
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: start;
    justify-content: start;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: -webkit-transform .6s ease-in-out;
    transition: -webkit-transform .6s ease-in-out;
    transition: transform .6s ease-in-out;
    transition: transform .6s ease-in-out,-webkit-transform .6s ease-in-out;
}

.carousel-item-next,.carousel-item-prev {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between
}

.active.carousel-item-right,.carousel-item-next:not(.carousel-item-left) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.active.carousel-item-left,.carousel-item-prev:not(.carousel-item-right) {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.carousel-fade .carousel-item {
    opacity: 0;
    -webkit-transition-property: opacity;
    transition-property: opacity;
    -webkit-transform: none;
    transform: none
}

.carousel-fade .carousel-item-next.carousel-item-left,.carousel-fade .carousel-item-prev.carousel-item-right,.carousel-fade .carousel-item.active {
    z-index: 1;
    opacity: 1
}

.carousel-fade .active.carousel-item-left,.carousel-fade .active.carousel-item-right {
    z-index: 0;
    opacity: 0;
    -webkit-transition: opacity 0s .6s;
    transition: opacity 0s .6s
}

.carousel-control-next,.carousel-control-prev {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 15%;
    color: #fff;
    text-align: center;
    opacity: .5;
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease
}

.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: .9
}

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

.carousel-control-next-icon,.carousel-control-prev-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: no-repeat 50%/100% 100%
}

.game-tooltip {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 15px;
    z-index: 10;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    font-size: 1em;
    -webkit-flex-grow: 0;
    flex-grow: 0;
    width: auto;
    max-width: 90%;
    visibility: hidden;
    opacity: 0;
    border: 2px solid;
    padding: 1.7em 3.4em;
    box-shadow: 0px 0px 20px 10px rgba(25, 29, 36, 0.20);
}

.game-tooltip .wrap {
    text-align: center
}

.game-tooltip .badge {
    position: absolute;
    top: -1px;
    width: 100%;
    left: 0;
    text-align: center
}

.game-tooltip.won .badge .text {
    color: #2b313f;
    background: #62ca5b
}

.game-tooltip .badge .text {
    background: #ffc645;
    display: inline-block;
    color: #2b313f;
    padding: 4px 12px;
    text-transform: uppercase;
    font-size: .8em;
    font-weight: 600;
    border-radius: 0 0 6px 6px
}

.game-tooltip.won {
    color: #828f9a;
    border-color: #62ca5b;
}

.game-tooltip.won .profit {
    color: #62ca5b
}

.game-tooltip.lost {
    color: #e86376;
    border-color: #e86376
}

.game-tooltip.lost .profit {
    color: #e86376
}

.game-tooltip.tied {
    color: #ffd000;
    border-color: #ffd000
}

.game-tooltip.tied .profit {
    color: #ffd000
}

.game-tooltip.demo {
    color: #ffc645;
    border-color: #ffc645;
    padding-top: 1.85em;
    padding-bottom: 1em
}

.game-tooltip.demo .profit {
    color: #ffc645
}

.game-tooltip.demo .status {
    margin: 4px 0
}

.game-tooltip.transition {
    -webkit-transition: all .5s .3s;
    transition: all .5s .3s
}

.game-tooltip.isTransparent {
    background: linear-gradient(to right top, #1d1034, #19275b);
}

.game-tooltip.isActive {
    visibility: visible;
    opacity: 1
}

.game-tooltip .user {
    margin-top: 5px;
    font-weight: 700;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.game-tooltip .user button {
    color: #7d8a98;
}

.game-tooltip .user .sanitize-user {
    margin: auto;
}

.game-tooltip .payout {
    font-size: 24px;
    margin-top: 5px;
    font-weight: 700;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.game-tooltip .payout .icon {
    width: 15px;
    vertical-align: bottom;
}

.game-tooltip .status {
    font-size: 14px;
    white-space: nowrap;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    font-weight: 600;
    color: #828f9a;
    margin: 4px 0 0;
}

.game-tooltip .btn-change {
    color: #62ca5b;
    white-space: nowrap;
    border-bottom: 1px dashed;
    padding: 0;
    background: transparent;
    border-radius: 0;
    display: inline;
    line-height: normal;
    font-size: inherit
}

.game-tooltip .btn-change:hover {
    color: #43b73b!important;
    border-bottom: 1px dashed transparent
}

.button-group__content {
    display: flex;
    align-items: center;
}

.button-group__content .btn {
    display: flex;
    align-items: center;
    padding: 0 14px;
    height: 50px;
    background: var(--background-navbar);
    border-radius: 15px;
    margin-left: 24px;
    position: relative;
}

.button-group__content .btn .min-max-room{
    color: #dadada;
    opacity: 0.33;
    margin-left: 24px;
    display: flex;
    align-items: center;
}

.button-group__content .btn .min-max-room span{
    display: inherit;
    margin-left: 8px;
}

.button-group__content .btn:first-child {
    margin-left: 0;
}

.button-group__content .btn.isActive .min-max-room{
    color: var(--background);
    opacity: .65;
}

.button-group__content .btn.isActive .name-game{
    color: var(--background);
    font-weight: 600;
}

.progress-wrap {
    flex: none;
    display: flex;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
	padding: 0 20px;
    margin: 40px 0;
	align-items: center;
}

.progress-item.left {
    border-radius: 0 0 15px 0;
    border-left: 0;
    border-top: 0;
}

.progress-item.right {
    border-radius: 0 0 0 15px;
    border-right: 0;
    border-top: 0;
}

.modal-dialog.confirm-age-modal {
    width: 500px;
    margin-left: auto;
    margin-right: auto
}

.confirm-age-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.confirm-age-modal-container:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../img/bg.jpg);
    background-size: cover;
    background-position: 50% 50%;
    opacity: .1;
    border-radius: 6px
}

.confirm-age-modal-container .head,.confirm-age-modal-container .wrap {
    position: relative;
    z-index: 2;
    width: 100%
}

.confirm-age-modal-container .head {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 6px 6px 0 0
}

.confirm-age-modal-container .head img {
    width: 120px;
    margin: auto;
    display: block
}

.confirm-age-modal-container .body {
    padding: 25px;
    border-radius: 0 0 6px 6px;
    width: 100%
}

.confirm-age-modal-container .body .wrap {
    position: relative;
    z-index: 2
}

.confirm-age-modal-container .body .buttons {
    width: 100%;
    display: flex;
    justify-content: center
}

.confirm-age-modal-container .body .buttons .btn {
    width: 100%;
    justify-content: center;
    max-width: 240px;
    padding: 13px 0;
    font-size: 15px
}

.confirm-age-modal-container .body .disclaimer {
    color: #fff;
    margin: 20px 0 0;
    text-align: center;
    font-size: 13px
}

.confirm-age-modal-container .body .disclaimer .button-link {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #4986f5;
    cursor: pointer;
    outline: none;
    color: #4986f5
}

.confirm-age-modal-container .body .disclaimer .button-link:active,.confirm-age-modal-container .body .disclaimer .button-link:focus,.confirm-age-modal-container .body .disclaimer .button-link:hover {
    outline: none;
    border-bottom: 1px solid transparent
}

.confirm-age-modal-container .body .leave-link {
    color: #fff;
    display: flex;
    justify-content: center;
    margin: 10px 0 15px
}

.confirm-age-modal-container .body .leave-link a {
    color: #fff;
    border-bottom: 1px solid #fff
}

.confirm-age-modal-container .body .leave-link a:hover {
    border-bottom: 1px solid transparent
}

.confirm-age-modal-container .body .info {
    text-transform: uppercase;
    color: #a1afbb;
    font-size: 11px
}

.modal-dialog.tos-modal {
    width: 550px;
    margin-left: auto;
    margin-right: auto
}

.tos-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 25px;
    font-size: 12px
}

.tos-modal-container h2 {
    font-weight: 500;
    margin: 10px 0
}

.tos-modal-container h2:first-child {
    margin-top: 0
}

.tos-modal-container p {
    margin: 10px 0
}

.tos-modal-container .tos-modal-block {
    max-height: 450px
}
.modal-dialog.captcha-need-modal {
    width: 355px;
    margin-left: auto;
    margin-right: auto
}

@media screen and (max-width: 499px) {
    .modal-dialog.captcha-need-modal {
        width:calc(100% - 20px)
    }
}

.modal-dialog.captcha-need-modal .modal-content {
    background: linear-gradient(to right top, #1d1034, #19275b);
}

.captcha-need-modal-container {
    padding: 0
}

.captcha-need-modal-container .caption {
    font-size: 16px;
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px;
    color: #fff;
    border-radius: 6px 6px 0 0;
    justify-content: center;
}

.captcha-need-modal-container .caption:after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear,left top,right top,color-stop(0,hsla(0,0%,100%,0)),color-stop(50%,#4986f5),to(hsla(0,0%,100%,0)));
    background: -webkit-linear-gradient(left,hsla(0,0%,100%,0),#4986f5 50%,hsla(0,0%,100%,0));
    background: linear-gradient(90deg,hsla(0,0%,100%,0),#4986f5 50%,hsla(0,0%,100%,0))
}

.captcha-need-modal-container .form {
    padding: 15px 25px
}

.captcha-need-modal-container .form .label {
    margin-bottom: 10px;
    text-align: center
}

.captcha-need-modal-container .form .captcha {
    display: flex;
    justify-content: center
}

.captcha-need-modal-container .form .btn {
    margin-top: 15px;
    width: 100%;
    display: flex;
    text-align: center;
    padding: 13px 15px;
    font-size: 15px;
    justify-content: center
}
.message-block.quiz {
    position: relative;
    margin-bottom: 10px;
    border-radius: 6px;
    width: 100%;
    min-height: 44px;
    padding: 12px;
    border-top: 1px solid #4986f5;
    border-bottom: 1px solid #4986f5;
    background: rgba(72,133,243,.1)
}
.message-block.quiz .message-content {
    width: 100%;
    margin-left: 0;
}
.message-block.quiz .quizLabel {
    color: #4986f5;
    display: inline-block;
    position: relative;
    padding-left: 17px;
    font-weight: 700;
    margin: 0
}
.message-block.quiz .quizLabel svg {
    font-size: 13px;
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0
}
.message-block.quiz .quizLabel>span {
    margin-left: 5px;
    font-weight: 400;
    word-break: break-word
}

.message-block.quiz .bet-number {
    margin-left: 3px;
    padding-left: 16px
}

.stats-bet .bet-number .bet-wrap{
    display: flex; 
    justify-content: end;
}

.message-block.quiz .bet-number span {
    margin-left: 5px;
    font-weight: 400;
    word-break: break-word
}

.quizMessage .bet-number svg {
    left: -16px;
    font-size: 13px;
    fill: #62ca5b
}

.quizMessage {
    font-size: 13px;
    color: #62ca5b;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.input-valid {
    display: inherit;
    width: inherit
}

.input-valid .valid {
    text-align: center;
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #e86376;
    visibility: hidden;
    opacity: 0;
    bottom: 100%;
    left: 0;
    background: #1c2028;
    border-radius: 6px;
    padding: 1em;
    -webkit-transition: .3s ease-out;
    transition: .3s ease-out
}

.input-valid .valid.inline {
    bottom: auto;
    top: 100%;
    background: rgba(220, 53, 69, .9);
    border-radius: 2px;
    font-size: 10px;
    margin: 2px 0 0;
    color: #fff;
    padding: 4px 6px;
    z-index: 3
}

.input-valid .valid.inline.top {
    top: auto;
    bottom: calc(100% + 2px);
    left: 0;
    right: auto;
    width: 100%;
    position: inherit;
}

.input-valid .valid.inline.top-right {
    top: auto;
    bottom: 100%;
    left: auto;
    right: 0
}

.input-valid .valid.inline:after {
    display: none
}

.input-valid .valid.visible {
    opacity: 1;
    visibility: visible
}

.input-valid .valid:after {
    content: "";
    position: absolute;
    left: .5em;
    top: 100%;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 6px 4px 0;
    border-top-color: #1c2028!important
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%
}

.input-group .input-field {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.input-group .input-field:not([readonly]):active+.input-group-append.text,
.input-group .input-field:not([readonly]):focus+.input-group-append.text {
    border: 1px solid #4986f5;
    border-left: 0
}

.input-group .input-field:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group .input-field:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: 0
}

.input-group-prepend {
    display: flex;
    border-radius: 0 6px 6px 0;
    position: relative
}

.input-group-prepend.text {
    background-color: #2f3542
}

.input-group-prepend .btn:first-child {
    border-radius: 6px 0 0 6px
}

.input-group-append {
    display: flex;
    border-radius: 0 6px 6px 0;
    position: relative
}

.input-group-append.text {
    background-color: #2f3542;
    color: #4986f5;
    align-items: center;
    padding: 0 .75rem;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid transparent
}

.input-group-append .btn {
    margin-left: -5px
}

@media (max-width:1099px) {
    .input-group-append.text {
        font-size: 10px
    }
}

.input-suffix {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    white-space: nowrap;
    color: #fafafa;
    overflow: hidden;
    padding: 0 13px;
    line-height: normal
}

.input-suffix>span {
    color: transparent;
    letter-spacing: normal
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-right: 6px
}

.input-icon .icon-coin {
    /* margin-top: 5px */
}

.caption-line {
    font-weight: 400;
    font-size: 13px;
    margin-bottom: 15px;
    color: #959fb1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden
}

.caption-line span {
    display: inline-block;
    vertical-align: initial;
    position: relative;
    padding: 0 10px
}

.caption-line span:after,
.caption-line span:before {
    content: "";
    display: block;
    width: calc(100% + 10px);
    position: absolute;
    top: 50%;
    border-top: 1px solid rgba(91, 98, 113, .5)
}

.caption-line span:before {
    right: 100%
}

.caption-line span:after {
    left: 100%
}

.change-form {
    display: flex;
    margin-bottom: -20px;
    padding: 10px 0;
    width: 100%;
    justify-content: center
}

.change-form .or {
    margin: 7px 10px 0;
    background: #464f57;
    width: 1px;
    height: 9px
}

.change-form .btn {
    background: transparent;
    padding: 0;
    color: #828f9a;
    font-weight: 500
}

.change-form .btn:hover {
    background: transparent;
    color: #bac2c8
}

.social-auth {
    flex-wrap: wrap
}

.social-auth,
.social-auth .line {
    display: flex;
    width: 100%
}

.social-auth .btn {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    margin: 0 10px 10px 0;
    padding: 8px 20px;
    justify-content: center;
    border-radius: 3px;
}

.social-auth .btn:last-child {
    margin-right: 0
}

.social-auth .btn-vk {
    background: #507299
}

.social-auth .btn-vk:hover {
    background: #476688
}

.social-auth .btn-fb {
    background: #3b5998
}

.social-auth .btn-fb:hover {
    background: #344e86
}

.social-auth .btn-ok {
    background: #db8a37
}

.social-auth .btn-ok:hover {
    background: #d37d26
}

.social-auth .btn-gl {
    background: #db4437
}

.social-auth .btn-gl:hover {
    background: #c63024
}

.auth-form,
.auth-form form {
    width: 100%
}

.auth-form .form-row {
    margin-bottom: 10px
}

.auth-form .social-auth {
    margin-bottom: 5px
}

.auth-form .input-field {
    height: 36px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0px 15px 15px -1px rgba(0, 0, 0, 0.1);
}

.auth-form .btn-auth {
    font-size: 14px;
    font-weight: 400;
    justify-content: center;
    width: 100%;
    margin-top: 3px;
    padding: 13px 20px;
    border-radius: 3px
}

.modal-dialog.auth-modal {
    margin-left: auto;
    margin-right: auto;
    width: 350px
}

.modal-dialog.auth-modal .modal-content {
    background: -webkit-gradient(linear, left top, left bottom, from(#1d1034), to(#19275b));
    background: -webkit-linear-gradient(to right top, #1d1034, #19275b);
    background: linear-gradient(to right top, #1d1034, #19275b)
}

@media screen and (max-width:499px) {
    .modal-dialog.auth-modal {
        max-width: 320px;
        margin: auto;
        width: calc(100% - 14px)
    }
}

.auth-modal__container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 20px
}

.auth-modal__container .caption {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px
}

.statusPending {
    color: #ffc645
}
.statusPaid {
    color: #62ca5b
}
.statusCancel {
    color: #e86376
}

.auth-btn {
    margin-top:5px;
    height: 50px;
}

.faucet-container .faucet-modal-give {
    position: relative;
    padding: 10px;
    background: rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    border-radius: 6px;
    width: 100%;
}

.faucet-container .faucet-modal-give .bank-text,
.faucet-container .faucet-modal-give .date-text {
    color: #898886;
}

.faucet-container .faucet-modal-give .bank-amount,
.faucet-container .faucet-modal-give .date-of {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faucet-container .faucet-modal-give .bank-amount svg {
    margin-left: 8px;
}

.faucet-container .faucet-modal-give .give-btn-block {
    padding: 10px;
}

.faucet-container .faucet-modal-give .give-btn-block .popover-tip-block {
    display: inline-block;
    text-align: center;
    margin-left: 5px
}

.faucet-container .faucet-modal-give .give-btn-block .popover-tip-icon {
    height: 16px;
    width: 16px;
    position: relative
}

.faucet-container .faucet-modal-give .give-btn-block .popover-tip-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px
}

.faucet-container .give-btn-block .faucet-cd {
    font-size: 16px;
    color: #898886;
    margin-bottom: 5px;
}

.close-chat{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--background);
    border-radius: 15px;
    cursor: pointer;
}

.close-chat img{
    transform: rotate(180deg);
    width: 13px;    
    height: 13px;
}

.quiz-block {
    margin-bottom: 25px;
    width: 100%;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    margin-top: 36px;
}

.quiz-block .quiz-content {
    padding: 20px ;
    padding-top: 29px;
    font-size: 14px;
    position: relative; 
    overflow: hidden;
    border: 2px dashed var(--main-color);
    background: var(--main-color-10);
    border-radius: 15px;
}

.quiz-block .quiz-content::after{
    content: url(/img/quest-right.png);
    right: 0;
    top: -3px;
    z-index: 1;
    position: absolute;
}

.quiz-block .quiz-content .quiz-content-element {
    display: block; 
    position: relative;
    z-index: 11;
}

.quiz-prize{
    font-size: 15px;
    top: -9.5px;
    position: absolute;
    z-index: 10;
    left: 14px;
}

.quiz-prize-title{
    padding: 6px 15px;
    background: var(--main-color);
    color: var(--background-navbar);
    border-radius: 8px;
    margin-right: 10px;
    font-weight: 500;
}

.quiz-prize-value{
    background: #132525;
    color: #4CE27B;
    border-radius: 8px;
    padding: 6px 15px;
    font-weight: 400;
}

.admin-chat-control-wrapper{
    position: relative;
}

.admin-chat-control-window{
    position: absolute;
    left: 0;
    bottom: 45px;
    opacity: 0;
    background: #0E2438;
    border-radius: 15px;
    overflow: hidden;
    width: max-content;
    pointer-events: none;
    z-index: 12;
    transition: .2s ease-in-out;
}

.admin-chat-control-wrapper.active .admin-chat-control-window{
    bottom: 55px;
    opacity: 1;
    pointer-events: all;
}

.admin-chat-control-window-item{
    padding: 10px 20px;
    display: flex;  
    transition: .2s ease-in-out;
    color: var(--main-color);
    cursor: pointer;
}

.admin-regime-chat{
    margin-left: 20px;
    color: var(--text);
}

.admin-chat-control-window-item:hover{
    background-color: var(--background);
}

.admin-chat-control-block{
    width: 32px;
    height: 32px;
    display: flex;
    margin-left: 20px;
    justify-content: center;
    align-items: center;
    background: #0E2438;
    border-radius: 15px;
    cursor: pointer;    
}

.admin-chat-control-block img{
    width: 18px;
    height: 18px;
}

.left-modal-content{
    background: var(--background);
    padding-bottom: 24px;
}

.modal-content .link-support{
    background: rgba(161, 251, 135, .2);
    margin: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    border-radius: 15px;
    color: #A1FB87;
}

.modal-content .link-support img{
    margin-right: 6px;
}

.wallet-content{
    display: flex;
}

.type-transaction{
    display: flex; 
    justify-content: center;
    margin-top: 24px;   

}

.type-transaction div span{
    transition: .3s ease-in-out;
}

.type-transaction div:hover span{
    color: #fff;
    opacity: 0.8;
}

.type-transaction div.isActive{
    background: var(--main-color)!important;
    color:  var(--background)!important;
}

.type-transaction div.isActive:hover span{
    color: var(--background) !important;
}

.type-transaction div {
    background: var(--background-navbar);
    padding: 10px 0;
    border-radius: 15px;
    margin-left: 20px;
    width: calc(50% - 35px);
    cursor: pointer;
    color: var(--text);
    font-weight: 500;
    transition: .3s ease-in-out;
}

.type-transaction div:first-child{
    margin-left: 0; 
}

.methods-type-transaction{
    height: 260px;
    padding: 0 24px;
    margin: 24px 0;
    overflow: hidden;
}

.transaction-method-wrapper{
    overflow-y: scroll;
    height: 100%;
}

#depositModal .faucet-container{
    padding: 0;
    overflow: hidden;
    border-radius: 25px;
}

.transaction-method-item:first-child{
    margin-top: 0!important;
}

.transaction-method-item{
    background: var(--background-navbar);
   padding: 14px 20px;
   border-radius: 15px; 
   display: flex;
   align-items: center;
   justify-content: space-between;
   min-width: 240px;
   cursor: pointer;
   margin-top: 12px;
   border: 1px solid var(--background);
   transition: .3s ease-in-out;
}

.transaction-method-item span{
   color: var(--text);
   letter-spacing: 0.03em;
   font-size: 16px;
   font-weight: 400;
   transition: .3s ease-in-out;
}

.transaction-method-item:hover span, .transaction-method-item:hover svg{
    color: #fff;
    fill: #fff;
    opacity: 0.8;
}

.transaction-method-item svg{
    fill: var(--text);
    width: 20px;
    height: 20px;
   transition: .3s ease-in-out;
}

.transaction-method-item.isActive{
    background: var(--main-color-20);
    border: 1px solid var(--main-color);
}

.transaction-method-item.isActive span{
    color: var(--main-color);
}

.transaction-method-item.isActive svg{
    fill: var(--main-color);
}

.transaction-method-item.active span{
    opacity: 1;
    color: #fff;
}

.transaction-method-item.active svg{
    fill: #fff;
    opacity: 1;
}

.main-content-deposit{
    width: 100%;
    margin-bottom: 24px;
}

.deposit-form{
    min-width: 440px;
    padding: 24px;
}

.modal-dialog .succsess-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    font-size: 14px;
    font-weight: 500;
    color: var(--background);
    background: var(--main-color);
    border-radius: 15px;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.transaction-input{
    background: var(--background);
    padding: 14px 20px;
    outline: none;
    border-radius: 15px;
    font-size: 14px;
    color: var(--text);
    border: none;
    width: 100%;
    max-width: 400px;
    font-weight: 500;
    margin-top: 12px;
}

.inputs-transaction{
    max-width: 420px;
    display: flex;
    flex-direction: column;
}

#requisiteMethod{
    display: none;
}

.transaction-input:first-child{
    margin-top: 0;
}

.deposit-form .commision-wrapp{
    margin-top: 12px;
    color: #dadada;
    opacity: 0.3;
    font-size: 12px;
}

.transaction-method-wrapper::-webkit-scrollbar{
    width: 2px;
}

.transaction-method-wrapper::-webkit-scrollbar-track{
    background: none;
    color: var(--background-navbar);
    border-radius: 15px;
}

.transaction-method-wrapper.withdraw{
    display: none;
}

.main-content-deposit .btns-sum{
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.main-content-deposit .btns-sum .btn-sum{
    width: 100px;
    height: 46px;
    background: var(--background);
    color: var(--text);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    margin-left: 12px;
    cursor: pointer;
}

.main-content-deposit .btns-sum .btn-sum:first-child{
    margin-left: 0;
}

.main-content-deposit .btns-sum .btn-sum img{
    opacity: 0.3;
    margin-left: 6px;
}

.input-bet-wrapper{
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.btns-wrapper{
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
    top: calc(50% - 11px);
}

.btns-wrapper .btn-secondary-bet{
    margin-right: 10px;
}

.btns-wrapper .btn-secondary-bet:last-child{
    margin-right: 0;
}

.btn-play{
    height: 50px !important;
    border-radius: 15px !important;
    background: var(--main-color);
    color: #fff !important;
}

.btn-play:hover{
    box-shadow: 0px 0px 12px 4px var(--main-color-10);
}

input::placeholder  { /* WebKit browsers */
   color: var(--text)!important;
}

.top-stats-round-wrapper{
    padding: 40px 56px; 
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    position: relative;
}

.top-stats-round-wrapper::before{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -10px;
    top: calc(50% - 140px);
    background: rgba(135, 229, 120, 0.05);
    border: 2px solid var(--green);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 1;
}

.top-stats-round-wrapper::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    left: -10px;
    top: calc(50% - 140px);
    background: rgba(5, 178, 246, 0.05);
    border: 2px solid var(--main-color);
    border-radius: 15px;
    transform: rotate(45deg);
    z-index: 1;
}

.jack-bets-wrapp .top-container-wrapp .flex-row div{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
}

.jack-bets-wrapp .top-container-wrapp .flex-row div img{
    width: 18px;
    height: 18px;
    opacity: 0.5;
}

.top-stats-round-wrapper .stats-round{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-stats-round-wrapper .stats-round .stats-round-block{
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    width: 33%;
    position: relative;
    z-index: 2;
}

.top-stats-round-wrapper .stats-round .stats-round-block .flex-row{
    align-items: center;
    gap: 10px;
}

.top-stats-round-wrapper .stats-round .flex-row .img{
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-stats-round-wrapper .stats-round .players-round .img{
    background: var(--main-color-10);
    border: 1px solid var(--main-color-10);
}

.top-stats-round-wrapper .stats-round .bank-round .img{
    background: var(--background-green);
    border: 1px solid var(--background-green);
}

.top-stats-round-wrapper .stats-round .players-round img{
    width: 32px;
    height: 32px;
}

.top-stats-round-wrapper .stats-round .bank-round .img img{
    width: 28px;
    height: 28px;
}

.top-container-wrapp .stats-round .stats-round-block:first-child{
    margin-left: 0;
}

.stats-round-block .flex-row div{
    font-weight: 500;
}

.stats-round-wrapper{
    background: var(--background-navbar);
    border-radius: 15px 15px 0 0;
}

.top-stats-round-wrapper .title{
    color: #CED5E3  ;
    display: flex;
    align-items: center;
}

.top-stats-round-wrapper .title img{
    margin-right: 6px;
}

.top-stats-round-wrapper .title span{
    color: #fff;
}

.top-stats-round-wrapper .stats-round .stats-round-block:last-child{
    margin-right: 0;
}

.timer-wrapper span{
    color: #A1A3AD;
    width: max-content;
    display: flex;
}

.timer-wrapper span img{
    margin-right: 6px;
    width: 18px;
}

.section .loader-wrapper{
    width: 100%;
    height: calc(100vh - 114px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.section .loader img{
    animation: loader 3s linear infinite;
    width: 36px;
}

.banners-wrapp{
    display: flex;
    gap: 24px;
}

.banners-block #autoWidth .banner {
    width: 100%;
    height: 100%;
}

.banners-block .usingCss{
    border-radius: 15px;
}

.banners-block {
    width: max-content;
    height: max-content;
    overflow: hidden;
}

.banners-block .inner-banners-block {
    width: calc(1348px - 24px - 360px);
    position: relative;
    height: max-content;
}

.banners-block #autoWidth .banner{
    display: block;
    width: calc(1348px - 24px - 360px);
    height: 320px;
    position: relative;
}

.banners-block #autoWidth .banner img{
    width: 100%;
    height: 100%;
}

.banners-wrapp .banner-wrapp{
    max-width: 360px;
    height: 320px;
    width: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.banners-wrapp .banner-wrapp img{
    width: 100%;
    height: 100%;
}

@font-face { 
    font-family: "Gilroy"; 
    src: url("../fonts/Gilroy-Regular.ttf") format("truetype"); 
    font-weight: 500;
}

@font-face { 
    font-family: "Gilroy"; 
    src: url("../fonts/Gilroy-Medium.ttf") format("truetype"); 
    font-weight: 500;
    } 
    
@font-face { 
    font-family: "Gilroy"; 
    src: url("../fonts/Gilroy-SemiBold.ttf") format("truetype"); 
    font-weight: 600;
} 

@font-face { 
    font-family: "Gilroy"; 
    src: url("../fonts/Gilroy-Bold.ttf") format("truetype"); 
    font-weight: 700;
} 

@font-face { 
    font-family: "Gilroy"; 
    src: url("../fonts/Gilroy-ExtraBold.ttf") format("truetype"); 
    font-weight: 800;
} 