
.bottom-form{
    min-height: calc(100vh - 60px);
    background: linear-gradient(to top, rgba(0,0,0,0), #190a31 99%),url(../img/bottom-form.png) center no-repeat;
    background-size: cover;
}

.form-block{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - 60px);
    justify-content: center;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.form-block .title{
    text-align: center;
}

.form-block .title .text.lg{
    font-size: 38px;
    font-weight: 800;
    color: #f8e71c;
    line-height: 1.2;
    margin-bottom: 10px;
}

.form-block .title .text{
    font-size: 28px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.form-block .title .text span{
    color: #f8e71c;
    font-weight: 700;
}

.form-block .title .text.sm{
    color: #f8e71c;
    font-weight: 700;
}

.form-block .title .sub-text{
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    margin-bottom: 15px;
}

.form-block .title .sub-text span{
    color: #f8e71c;
    text-decoration: underline;
    cursor: pointer;
}

.form-block .title .sub-text span:hover{
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.form-block .field-block{
    width: calc(50% - 8px);
    margin-bottom: 10px;
}

.form-block .field-block + .btn{
    width: calc(50% - 8px);
}
.form-block .field-block.error{
    width: 100%;
    color: #276aa5;
}
.form-block .field-block.error .field{    
    border-color: #276aa5;
    color: #276aa5;
}
.form-block .field-block .field{
    width: 100%;
    padding: 6px 18px;
    height: 50px;
    border-radius: 0;
    font-size: 14px;
    font-weight: 400;
    box-shadow: none;
    outline: none;
    text-align: left;
    border: 1px solid transparent;
    background: #fff;
	border-color: #276aa5;
    color: #276aa5;
    transition: border .2s ease;
}
.form-block .field-block .field:focus{
    border: 1px solid #f8e71c;
}
.form-block .field-block .error-text{
    margin-top: 5px;
    color: #276aa5;
    font-size: 14px;
    text-align: left;
    margin-left: 20px;
    display: none;
}
.form-block .field-block.error .error-text{
    display: block;
}

.form-block .check-block{
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

.form-block .checkbox-style{
    width: 19px;
    height: 19px;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    border: 1px solid #382853;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}

.form-block .check-input input[type="checkbox"]:checked+.checkbox-style{
    background-image: url(../img/checkmark.svg);
    background-size: 18px;
    background-position: center;
}

.form-block .check-input input[type="checkbox"]{
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
}

.form-block .check-block a{
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-decoration: underline;
}

.form-block .check-block a:hover{
    text-decoration: none;
}


.form-block .btn{
    width: 100%;
}

.form-block .reg-soc{
    line-height: 1;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .3px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    padding: 10px;
    margin-top: 5px;
}

.form-block a.reg-soc{
    text-decoration: underline;
}

.form-block a.reg-soc:hover{
    text-decoration: none;
}

.form-block a.reg-soc::after,
.form-block a.reg-soc::before{
    content: none;    
}

.form-block .reg-soc::after,
.form-block .reg-soc::before{
    content: '';
    display: inline-block;
    margin: 0 10px;
    width: 48px;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    vertical-align: middle;
}

.popup{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9997;
    display: none;
}

.popup.active{
    display: flex;
}

.popup::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    /* background-image: linear-gradient(180deg, #210459 0%, rgba(59,0,90,0.85) 100%); */
    background: rgba(42,43,50,0.85);
    opacity: .7;
}

.popup-block{
    border: 1px solid #ссс;
    background-color: #d3dee8;
    margin: 0 auto;
    position: relative;
    max-width: 420px;
    padding: 0;
}

.popup.search{
    align-items: flex-start;
    overflow: auto;
}

.popup.search::after{
    background-image: none;
}

.popup.search .popup-block{
    margin-top: 10vh;
    border: none;
    background-color: rgba(0, 0, 0, .0);
    max-width: 820px;
}

.popup.search .search-field{
    width: 100%;
    border: 1px solid #f8e71c;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.4;
    outline: none;
    overflow: hidden;
    position: relative;
    background: #2a2b32;
}

.popup.search .search-field input{
    height: 50px;
    width: 100%;
    background-color: rgba(0, 0, 0, .0);
    background-image: url(../img/search-yellow.svg);
    background-repeat: no-repeat;
    background-position: center left 20px;
    background-size: 20px;
    padding: 0 60px;
    color: rgba(255,255,255,0.45);
    outline: none;
}

.popup.search .search-field input:hover{
    color: #fff;
}

.popup.search .search-field .close{
    position: absolute;
    height: 20px;
    top: calc(50% - 10px);
    right: 20px;
    cursor: pointer;
    opacity: 1;
}

.popup.search .search-field .close:hover{
    opacity: .7;
}

.popup.search .error-text{
    margin-top: 25px;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.popup.search .error-text.hidden{
    display: none;
}

.popup.search ul{
    background-color: #2a2b32;
    margin-top: 15px;
    padding: 22px 0;
    max-height: 70vh;
    overflow: auto;
}

.popup.search ul.empty{
    padding: 0;
}

.popup.search li{
    display: flex;
    align-items: center;
    padding: 8px 20px;
    cursor: pointer;
}

.popup.search li .locked-game-slide {
    position: static;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    margin-left: auto;
    background: none;
    padding: 10px;
}

.popup.search li .locked-game-slide svg {
    margin-bottom: 0;
    margin-left: 10px;
}

.popup.search li:hover{
    background-color: #0f1010;
}

.popup.search li img{
    margin-right: 15px;
    max-width: 90px;
    max-height: 90px;
}

.popup.search li .search-result-name .name{
    color: #f8e71c;
    font-size: 16px;
    font-weight: 700;
}

.popup.search li .search-result-name .provider{
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
}

.popup.search li .search-result-btns{
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.popup.search li .search-result-btns .play{
    border: solid 1px #43b0ff;
    color: #43b0ff;
    line-height: 33px;
    text-transform: uppercase;
    text-align: center;
    font-size: 13px;
    line-height: 35px;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    padding: 0 20px;
    transition: .5s;
}

.popup.search li .search-result-btns .play:hover{
    border: solid 1px #43b0ff;
    color: #382853;
    background-color: #43b0ff;
}

.popup.search li .search-result-btns .demo{    
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 5px;
}

.popup.search li .search-result-btns .demo:hover{
    text-decoration: underline;
}

.reg .popup-block{
    max-width: 880px;
    padding: 0;
}

.choose_currency_modal .form-block,
.auth .form-block{
    padding: 15px;
	min-width: 270px;
}

.popup .close {
    position: absolute;
    top: 0;
    right: -30px;
    opacity: .5;
    cursor: pointer;
}

.reg .popup-block .bonuses-groop{
    display: flex;
    align-items: flex-start;
}

.reg .popup-block .bonuses-groop.mobile{
    display: none;
}

.reg .popup-block .bonus{
    width: 33.33%;
    position: relative;
}

.reg .popup-block .bonus img{
    width: 100%;
}

.reg .popup-block .bonus span{
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 13px;
    line-height: 15px;
    font-weight: 700;
    color: #9287a5;
    white-space: nowrap;
}

.reg .popup-block .l-col {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.reg .popup-block .l-col.mobile {
    display: none;
}

.reg .popup-block .r-col, 
.reg .popup-block .l-col {
    padding: 20px 0;
}

.reg .popup-block .l-col .title {
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
    color: #f8e71c;
    text-align: center;
    letter-spacing: 0.6px;
    width: 100%;
}

.reg .popup-block .l-col .text {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-right: 3px;
}

.reg .popup-block .l-col .text span {
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    color: #f8e71c;
}

.popup-block .form-block{
    min-height: auto;
}

.reg .popup-block .form-block .check-block a,
.reg .popup-block .form-block .check-block{
    color: #fff;
}

.reg .popup-block .form-block .checkbox-style{
    border: 1px solid #fff;
}
.providers-dropdown{
    position: relative;
}
.providers-title{
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    height: 40px;
    padding: 0 10px;
}
.providers-title.active{
    background-color: #fff;
    border-radius: 4px 4px 0 0;
    color: #382853;
}
.providers-title img{
    margin-left: 20px;
}
.providers-dropdown .icon{
    width: 13px;
    height: 2px;
    background-color: #f8e71c;
    position: relative;
    border-radius: 3px;
    margin-right: 10px;
    margin-left: 5px;
}
.providers-dropdown .icon::after{
    content: '';
    position: absolute;
    top: -5px;
    right: 0;
    width: 18px;
    height: 2px;
    background-color: #f8e71c;
    border-radius: 3px;
}
.providers-dropdown .icon::before{
    content: '';
    position: absolute;
    top: 5px;
    right: 0;
    width: 8px;
    height: 2px;
    background-color: #f8e71c;
    border-radius: 3px;
}
.providers-dropdown .providers-title.active .icon{
    background-color: #382853;
}
.providers-dropdown .providers-title.active .icon::after{
    background-color: #382853;
}
.providers-dropdown .providers-title.active .icon::before{
    background-color: #382853;
}
.providers-dropdown .arrow{
    position: relative;
    height: 7px;
    width: 13px;
    margin-left: 10px;
}
.providers-dropdown .arrow::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    transform: rotate(40deg);
    background-color: #fff;
    width: 8px;
    height: 2px;
}
.providers-dropdown .arrow::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    transform: rotate(-40deg);
    background-color: #fff;
    width: 8px;
    height: 2px;
}
.providers-dropdown .providers-title.active .arrow::before{
    background-color: #382853;
}
.providers-dropdown .providers-title.active .arrow::after{
    background-color: #382853;
}
.providers-dropdown-block{
    display: none;
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
}
.providers-dropdown-block.active{
    display: block;
}
.providers-dropdown-block{
    background-color: #fff;
    padding: 10px 0;
    min-width: 230px;
    border-radius: 0 4px 4px 4px;
}
.providers-dropdown-block ul{
    margin-bottom: 0;
}
.providers-dropdown-block li{
    position: relative;
    font-size: 13px;
    font-weight: 700;
    color: #1d0f34;
}
.providers-dropdown-block li label{
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 13px;
    line-height: 30px;
    color: #1d0f34;
    font-weight: 700;
    cursor: pointer;
}
.providers-dropdown-block .checkbox-style{
    width: 19px;
    height: 19px;
    font-size: 9px;
    line-height: 16px;
    text-align: center;
    border: 1px solid #c8cfdb;
    border-radius: 2px;
    position: relative;
    margin-right: 15px;
    cursor: pointer;
}
.providers-dropdown-block .check-input input[type="checkbox"]:checked+.checkbox-style{
    background-image: url(../img/checkmark-pink.svg);
    background-size: 18px;
    background-position: center;
}
.providers-dropdown-block .check-input input[type="checkbox"]{
    height: 0;
    width: 0;
    overflow: hidden;
    position: absolute;
}
.providers-add{
    margin-left: 20px;
    margin-right: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.provider-item .remove-provider{
    height: 20px;
    width: 20px;
    background-color: #f8e71c;
    border-radius: 50px;
    margin-left: 10px;
    background-image: url(../img/close-dark.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 8px;
    cursor: pointer;
}

.top-pannel{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
}
.top-pannel > span{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    background: #2a2b32;
    padding: 10px 20px;
    border-radius: 50px;
    margin: 20px 0;
}

.top-pannel a{
    display: flex;
    align-items: center;
}

.top-pannel .arrow{
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);    
    margin-right: 10px;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
}

.top-pannel .name{    
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.top-pannel.hide > *{
    display: none;
}

.game-modal{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    border: none;
    background-color: #190a31;
    transition: padding .3s ease;
    padding-top: 56%;
    z-index: 2;
}

/*
.game-modal::after{
    content: '';
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: -1;
}
*/
.game-modal .game{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #205685;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 4px;
    transition: 0s !important;
}
.game-modal iframe{
    width: 100%;
    height: 100%;
}
.game-modal .game:not(:first-child){
    display: none;
}
.game-modal.multi .game{
    display: flex;
}
.game-modal.multi .game:first-child{
    top: 0;
    left: 0;
    right: 50%;
    bottom: 50%;
    border-right: 1px solid rgba(255, 255, 255, .5);
}
.game-modal.multi iframe{
    height: calc(100% - 46px);
}

.game-modal.multi .game:nth-child(2){
    top: 0;
    left: 50%;
    right: 0;
    bottom: 50%;
    
}
.game-modal.multi .game:nth-child(3){
    top: 50%;
    left: 0;
    right: 50%;
    bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, .5);
    border-top: 1px solid rgba(255, 255, 255, .5);
    
}
.game-modal.multi .game:nth-child(4){
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;    
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.game-modal .game .search{
    display: flex;
    align-items: center;    
    height: 35px;
    width: calc(100% - 100px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    border-radius: 19px;
    border: 1px solid #fff;
    background-color: #190a31;
    overflow: hidden;
    margin: 10px 0;
}

.game-modal .game .search input{
    display: flex;
    align-items: center;    
    height: 100%;
    width: calc(100% - 100px);
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    outline: none;
    border: none;
    background-color: #190a31;
    background-image: url(../img/search.svg);
    background-repeat: no-repeat;
    background-size: 14px;
    background-position: left 10px center;
    width: calc(100% - 37px);
    padding-left: 40px;
}

.game-modal .game .search input::placeholder{
    color: #fff;
}

.game-modal .game .search .close{
    margin-left: auto;
    margin-right: 10px;
    width: 14px;
    opacity: .7;
    cursor: pointer;
    transition: .5s;
}

.game-modal .game .search .close:hover{
    opacity: 1;
}

.game-modal .modal-game-name{
    display: none;
}

.game-modal.multi .modal-game-name{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0;
    height: 26px;
    overflow: hidden;
    background-color: #205685;
    border-bottom: 1px solid rgba(255,255,255,0.11);
    border-radius: 4px 4px 0 0;
    padding: 0 10px;
}

.modal-game-name .close{
    margin-left: auto;
    cursor: pointer;
}

.side-pannel{
    position: absolute;
    top: 0;
    right: -37px;
}

.side-pannel .block{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    margin-bottom: 2px;
    border-radius: 0 4px 4px 0;
    background-color: #205685;
    transition: background-color .3s ease, color .3s ease;
    font-weight: 400;
    cursor: pointer;
}

.side-pannel .block img{
    opacity: .7;
    width: 17px;
    height: 17px;
}

.side-pannel .screen{
    margin-top: 10px;
}

.side-pannel .block.active{
    background-color: #ef22af;
}

.side-pannel .block:hover{
    background-color: #ef22af;
}

.side-pannel .block.active img{
    opacity: 1;
}

.side-pannel .block:hover img{
    opacity: 1;
}

.side-pannel .browser-size img:not(.active){
    display: none;
}

.button-scroll-top{
    position: fixed;
    bottom: 60px;
    right: 60px;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8e71c;
    background-color: #f6de33;
    border-radius: 50%;
    cursor: pointer;
}
.game-page-width{
    max-width: 78%;
}



.cookies-policy{
    position: fixed;
    max-width: 330px;
    top: inherit !important;
    bottom: 25px;
    left: 18px;
    margin-top: 0 !important;
    background: #fff;
    z-index: 1000;
    padding: 17px;
    border-radius: 5px;
	display: none;
}

.cookies-policy.active-cook{
	display: block;
}

.cookies-policy__wrap{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
}

.cookies-policy__title{
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 16px;
}

.cookies-policy__txt {
    display: inline-block;
    margin: 0 12px;
    color: #000;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
}

.cookies-policy__btn{
    width: 115px;
    display: inline-block;
    margin-left: 60px;
    padding: 0 12px;
    height: 35px;
    line-height: 35px;
    background-color: #f8e71c;
    border-radius: 5px;
    color: #382853;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    border: 0;
    transition: background .2s ease;
}

.check-text a{
	color: #1d0f34;
}

.ulogin-buttons-container{
    width: auto !important;
}

.ulogin-button-steam{
    margin-right: 0 !important;
}

.ulogin-dropdown-button{
    display: none !important;
}

.modal-game-name span{
	display: flex;
	width: calc(100% - 54px);
}
.game-modal.multi .modal-game-name img {
    width: 17px;
    cursor: pointer;
}
.game-modal .game.open-one{
    display: none;
}
.game-modal .game.open-this,
.game-modal.multi .game.open-this{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    border: none;
}
.game-modal.full-sc .modal-game-name .open-fullsc {
    display: block;
}








@media only screen and (min-width: 1921px) {
/*
    .game-modal{
        height: 90vh;
    }
    body.game-page{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
*/
    .game-page-width{
        max-width: 80%;
    }
}

@media only screen and (min-width: 3400px) {
    .game-page-width{
        max-width: 60%;
    }
}

@media only screen and (min-width: 1199px) {
    header .mobile{
        display: none;
    }
}
@media only screen and (max-width: 1199px) {
    header .desctop{
        display: none;
    }
    header .mobile{
        display: flex;
        align-items: center;
    }
    
    header .mobile .dep{
        line-height: 37px;
        padding: 0 20px;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 13px;
        border: 1px solid #45cb00;
        background-color: #45cb00;
        border-radius: 100px;
        cursor: pointer;
        margin-left: auto;
    }
    .mobile-block-menu{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 25;
        background-color: rgba(0,0,0,0.7);
    }
    .mobile-block-menu.active{
        display: block;
    }
    .mobile-menu{
        background-color: #190a31;
        width: 280px;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
    
    .mobile-menu .buttons{
        width: 100%;
        padding: 20px 10px;
        margin-bottom: 10px;
        background-color: #2e1a55;
        text-align: center;
    }
    .mobile-menu .buttons .logo{
        width: 70px;
        margin: 0 auto 20px;
    }
    .mobile-menu .buttons .btn{
        line-height: 40px;
        color: #fff;
        border: 1px solid #fff;
    }
    .mobile-menu .buttons .btn.green {
        border: solid 1px #45cb00;
    }
    .mobile-menu .buttons .btn + .btn{
        margin-top: 10px;
    }
    .mobile-menu .link{
        display: flex;
        align-items: center;
        padding: 0 15px;
        line-height: 40px;
        width: 100%;
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
    }
    .mobile-menu .link:hover{
        background-color: #2e1a55;
    }
    .mobile-menu .link img{
        width: 20px;
        margin-right: 15px;
    }
    .mobile-menu .link.list{
        flex-direction: column;
        padding: 0;
    }
    .mobile-menu .link.list .title{
        width: 100%;
        display: flex;
        align-items: center;
        padding: 0 15px;
    }
    .mobile-menu .link.list .title img{
        height: 20px;
    }
    .mobile-menu .link.list .title .arrow{
        margin-left: auto;
        margin-right: 0;
        height: 7px;
    }
    .mobile-menu .link.list ul{
        width: 100%;
        height: 0;
        overflow: hidden;
        margin: 0;
        background-color: rgba(25,9,49,0.4);
    }
    .mobile-menu .link.list ul a{
        padding-left: 50px;
    }
    .mobile-menu .link.list ul.active{
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    .mobile-menu .download {
        line-height: 40px;
        display: flex;
        align-items: center;
        padding: 0 15px;
        font-size: 13px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        width: 100%;
    }
    .mobile-menu .download:hover{
        background-color: #2e1a55;
    }
    .mobile-menu .download img{
        width: 20px;
        margin-right: 15px;
    }
    .mobile-menu .chat{
        line-height: 40px;
        display: flex;
        align-items: center;
        padding: 0 15px;
        font-size: 13px;
        color: #00fdfc;
        text-transform: uppercase;
        font-weight: 700;
        width: 100%;
    }
    .mobile-menu .chat:hover{
        background-color: #2e1a55;
    }
    .mobile-menu .chat img{
        width: 20px;
        margin-right: 15px;
    }
    .mobile-menu .language {
        display: flex;
        align-items: center;
        padding: 0 10px;
        cursor: pointer;
        position: relative;
        height: 40px;
        border: 1px solid rgba(255,255,255,0.2);
        border-radius: 2px;
        min-width: 185px;
        width: calc(100% - 30px);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        margin: auto auto 20px;
    }
    .mobile-menu .language .lang-img {
        width: 25px;
        height: 25px;
        margin-right: 10px;
    }
    .mobile-menu .language .arrow {
        height: 7px;
        margin-left: auto;
        transform: rotate(-90deg);
    }
    .mobile-menu .language-popup{
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #190a31;
    }
    .mobile-menu .language-popup.active{
        display: flex;
    }
    .mobile-menu .language-popup ul{
        width: 100%;
    }
    .mobile-menu .language-popup li{
        display: flex;
        align-items: center;
        padding: 0 20px;
        line-height: 40px;
        cursor: pointer;
    }
    .mobile-menu .language-popup li.back{
        font-size: 14px;
        font-weight: 700;
        line-height: 40px;
        padding: 0 20px;
        color: #fff;
        cursor: pointer;
        line-height: 50px;
        background-color: #8421b9;
    }
    .mobile-menu .language-popup li:not(.back):hover{
        background-color: #3d1d4d;
    }
    .mobile-menu .language-popup li img{
        margin-right: 15px;
        width: 23px;
    }
	
	.btn.green{
		overflow: visible;
	}
}

@media only screen and (max-width: 991px) {
    .nominations-wrap{
        flex-direction: column;
        text-align: center;
    }
    .nominations .coin{
        margin: 20px 0;
    }
    .nominations .medals{
        width: 100%;
        flex-wrap: wrap;
    }
    
    .footer-list{
        width: 40%;
    }
    .popup-block{
        width: calc(100% - 30px);
    }
    .popup-block .form-block{
        padding: 15px 0;
    }
    .popup-block .form-block .check-block{
        font-size: 12px;
    }
    .reg .popup-block .r-col{
        padding: 20px 15px;
        overflow-y: auto;
        max-height: calc(100vh - 30px);
        justify-content: flex-start;
    }
    .reg .popup-block .l-col{
        display: none;
    }
    .reg .popup-block .l-col.mobile{
        display: flex;
        width: 100%;
        padding: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .reg .popup-block .l-col.mobile .text-block{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .reg .popup-block .l-col.mobile .text-block .block{
        text-align: left;
    }
    .reg .popup-block .l-col.mobile img{
        width: 40%;
    }
    .reg .popup-block .l-col.mobile .text{
        font-size: 18px;
    }
    .reg .popup-block .l-col.mobile .text span{
        font-size: 26px;
    }
    .reg .popup-block .l-col.mobile .title{
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    .reg .popup-block .bonuses-groop.mobile{
        display: flex;
    }
    .reg .popup-block .bonuses-groop.mobile span{
        font-size: 8px;
        bottom: 0;
    }
    
	.game-page header .mobile{
		display: none;
	}
	
}

@media only screen and (max-width: 767px) {
	
	
	
	
	.button-scroll-top{
		bottom: 67px;
		right: 20px;
		width: 40px;
		height: 40px;
	}
	
	
	.top-pannel{
		margin-top: 60px;
	}
	.game-page-width {
    max-width: 100%;
	}
    .popup.search .container{
        max-width: 100%;
    }
    .popup.search .popup-block{
        margin-top: 0;
        padding: 0;
    }
    .popup.search .popup-block{
        width: 100%;
    }
    .popup.search .search-field{
        background-image: linear-gradient(270deg, #421f87 0%, #7810af 100%);
        border: 0;
        border-radius: 0;
        padding: 0 65px 0 20px;
    }
    .popup.search .search-field input{
        border: none;
        padding: 0;
        background-image: none;
        height: 60px;
    }
    .popup.search ul{
        background-color: inherit;
        margin-top: 0;
    }
    
    .popup.search li img{
        max-width: 60px;
        max-height: 60px;
    }
    .popup.search li .search-result-btns{
        /*display: none;*/
    }
}

@media only screen and (max-width: 575px) {
    .jackpot-block .summ{
        font-size: 40px;
    }
    .footer-list{
        width: 100%;
    }
    .footer-list li{
        justify-content: flex-start;
    }
    .footer-list > li:nth-child(1){
        line-height: 48px;
        position: relative;
    }
    .footer-list:not(:first-child):not(:last-child) > li:nth-child(1)::after{
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 26px;
        font-weight: 300;
    }
    .footer-list:not(:first-child):not(:last-child).active > li:nth-child(1)::after{
        content: '-';
        font-size: 48px;
    }
    .footer-list:not(:first-child):not(:last-child) {
        border-top: 1px solid rgba(255,255,255,0.2);
        max-height: 48px;
        overflow: hidden;
        padding: 0 10px;
        margin-bottom: 0;
        transition: .5s;
    }
    .footer-list:not(:first-child):not(:last-child).active{
        max-height: 350px;
    }
    .footer-list > li a img{
        margin-right: 30px;
    }
    .providers-block{
        flex-direction: column;
        -ms-align-items: flex-start;
        align-items: flex-start;
    }
    .providers-add{
        padding-top: 20px;
    }
    .side-pannel{
        display: none;
    }
    .game-modal{
        padding-top: 56%;
        height: auto;
    }
}





























































































