/* ==================== HEADER ==================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    margin:0 -15px 15px;
    background:#2f323a;
    border-bottom:1px solid rgba(255,255,255,.07);
    box-shadow:0 4px 18px rgba(0,0,0,.14)
}
.site-header-inner{
    position:relative;
    min-height:68px;
    display:flex;
    align-items:center;
    padding:0 15px
}
.site-header .header__logo{
    flex:0 0 252px;
    width:252px;
    height:60px;
    margin-right:12px;
    background-repeat:no-repeat;
    background-position:center;
    background-size:196px auto
}
.site-nav{
    display:flex;
    align-items:center;
    gap:2px;
    min-width:0
}
.site-nav a{
    display:flex;
    align-items:center;
    height:42px;
    padding:0 10px;
    color:#b9bec7;
    text-decoration:none;
    font-size:14px;
    border-radius:5px;
    white-space:nowrap;
    transition:color .15s,background .15s
}
.site-nav a:hover{
    color:#fff;
    background:rgba(255,255,255,.045)
}
.site-user{
    margin-left:10px
}
.site-user a{
    display:flex;
    align-items:center;
    gap:7px;
    color:#bfc4cc;
    text-decoration:none;
    white-space:nowrap
}
.site-user img{
    width:32px;
    height:32px;
    border-radius:50%;
    object-fit:cover
}

/* ==================== THEME ==================== */

.theme-toggle{
    position:relative!important;
    display:block!important;
    width:57px!important;
    height:30px!important;
    min-width:57px!important;
    max-width:57px!important;
    margin-left:auto!important;
    margin-right:10px!important;
    padding:0!important;
    flex:0 0 54px!important;
    border:1px solid rgba(255,255,255,.1)!important;
    border-radius:16px!important;
    background:#252930!important;
    cursor:pointer!important;
    overflow:hidden!important;
    box-sizing:border-box!important;
    box-shadow:none!important;
    outline:0!important;
}

.theme-toggle .theme-icon{
    position:absolute!important;
    top:0!important;
    bottom:0!important;
    width:26px!important;
    height:30px!important;
    margin:0!important;
    padding:0!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    line-height:28px!important;
    transform:none!important;
    z-index:1!important;
    pointer-events:none!important;
}

.theme-toggle .theme-icon i{
    display:block!important;
    width:auto!important;
    height:auto!important;
    margin:0!important;
    padding:0!important;
    font-size:18px!important;
    line-height:1!important;
}

.theme-toggle .theme-sun{
    left:0!important;
    right:auto!important;
}

.theme-toggle .theme-moon{
    right:0!important;
    left:auto!important;
}

.theme-toggle .theme-knob{
    position:absolute!important;
    top:3px!important;
    bottom:auto!important;
    left:3px!important;
    right:auto!important;
    width:22px!important;
    height:22px!important;
    min-width:22px!important;
    max-width:22px!important;
    margin:0!important;
    padding:0!important;
    display:block!important;
    border-radius:50%!important;
    background:#bfa45c!important;
    z-index:5!important;
    box-sizing:border-box!important;
    transition:left .25s ease,background .25s ease!important;
}

.theme-toggle.is-dark .theme-knob{
    left:29px!important;
    background:#69b9b0!important;
}

.theme-toggle .theme-sun{
    opacity:1!important;
}

.theme-toggle .theme-moon{
    opacity:.35!important;
}

.theme-toggle.is-dark .theme-sun{
    opacity:.35!important;
}

.theme-toggle.is-dark .theme-moon{
    opacity:1!important;
}

.theme-toggle .theme-knob{
    transition:left .25s ease,background .25s ease!important;
}

html:not(.theme-ready) .theme-toggle .theme-knob{
    transition:none!important;
}

html.dark-theme .theme-toggle .theme-knob{
    left:29px!important;
}

html.light-theme .theme-toggle .theme-knob{
    left:3px!important;
}

/* ==================== HEADER SEARCH ==================== */

.header-search-btn{
    display:none;
    width:40px;
    height:40px;
    margin-left:auto;
    margin-right:7px;
    padding:0;
    align-items:center;
    justify-content:center;
    color:#aeb5bf;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    border-radius:6px;
    cursor:pointer;
    outline:0
}
.header-search-btn:focus{
    outline:0;
    box-shadow:none
}
.header-search-btn:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.header-search-btn:hover{
    color:#72d8ca;
    background:rgba(114,216,202,.07);
    border-color:rgba(114,216,202,.22)
}
.site-header.search-visible .header-search-btn{
    display:flex
}
.header-search-panel{
    position:absolute;
    top:100%;
    right:15px;
    width:360px;
    padding:8px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:7px;
    background:#30343d;
    box-shadow:0 12px 30px rgba(0,0,0,.35);
    opacity:0;
    visibility:hidden;
    transform:translateY(-6px);
    transition:opacity .18s,transform .18s,visibility .18s
}
.header-search-panel.open{
    opacity:1;
    visibility:visible;
    transform:none
}
.header-search-panel form{
    display:flex;
    gap:6px
}
.header-search-panel input{
    flex:1;
    height:38px;
    padding:0 11px;
    color:#fff;
    background:#252930;
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    outline:0
}
.header-search-panel input:focus{
    border-color:rgba(114,216,202,.3);
    box-shadow:none
}
.header-search-panel button{
    width:38px;
    height:38px;
    padding:0;
    color:#fff;
    background:#209182;
    border:0;
    border-radius:5px;
    cursor:pointer;
    outline:0
}

/* ==================== MOBILE MENU ==================== */

.menu-toggle{
    display:none;
    width:42px;
    height:42px;
    margin-right:8px;
    padding:0;
    align-items:center;
    justify-content:center;
    color:#c4c8cf;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    border-radius:6px;
    cursor:pointer;
    outline:0
}
.menu-toggle:focus{
    outline:0;
    box-shadow:none
}
.menu-toggle:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    width:330px;
    max-width:88%;
    height:100vh;
    padding:18px;
    box-sizing:border-box;
    background:#30343d;
    box-shadow:12px 0 35px rgba(0,0,0,.4);
    z-index:1002;
    transform:translate3d(-105%,0,0);
    visibility:hidden;
    transition:transform .25s ease,visibility 0s linear .25s;
    overflow-y:auto
}
.mobile-menu.open{
    transform:translate3d(0,0,0);
    visibility:visible;
    transition:transform .25s ease
}
.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    z-index:1001;
    opacity:0;
    visibility:hidden;
    transition:opacity .2s,visibility 0s linear .2s
}
.mobile-overlay.open{
    opacity:1;
    visibility:visible;
    transition:opacity .2s
}
.mobile-menu-profile{
    margin-bottom:15px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,.07)
}
.mobile-menu-profile a{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    text-decoration:none
}
.mobile-menu-profile img{
    width:40px;
    height:40px;
    border-radius:50%;
    object-fit:cover
}
.mobile-menu-profile span{
    display:flex;
    flex-direction:column;
    gap:2px
}
.mobile-menu-profile strong{
    font-size:14px
}
.mobile-menu-profile small{
    color:#8e96a2;
    font-size:11px
}
.mobile-menu-head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding-bottom:13px;
    margin-bottom:15px;
    border-bottom:1px solid rgba(255,255,255,.07)
}
.mobile-menu-head strong{
    color:#fff;
    font-size:18px
}
.mobile-menu-head button{
    width:34px;
    height:34px;
    padding:0;
    color:#adb3bd;
    background:transparent;
    border:0;
    cursor:pointer;
    outline:0
}
.mobile-menu-section{
    margin-bottom:20px
}
.mobile-menu-title{
    margin-bottom:5px;
    color:#72c8bf;
    font-size:10px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase
}
.mobile-menu-section a{
    display:flex;
    align-items:center;
    padding:10px 4px;
    color:#c2c6ce;
    text-decoration:none;
    border-bottom:1px solid rgba(255,255,255,.045);
    transition:color .15s,padding-left .15s,background .15s
}
.mobile-menu-section a:hover{
    color:#fff;
    padding-left:8px;
    background:rgba(255,255,255,.025)
}

/* ==================== SLIDER ==================== */

.slider-card{
    overflow:hidden
}
.newGameSliderOuter{
    width:100%;
    padding:13px 15px 11px;
    box-sizing:border-box;
    overflow:hidden
}
.slider-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:11px
}
.slider-heading{
    color:var(--slider-titlea,#fff);
    font-size:17px;
    font-weight:700;
    letter-spacing:.4px;
    text-transform:uppercase
}
.gs-viewport{
    width:100%;
    overflow:hidden;
    visibility:hidden
}
.gs-viewport.slider-ready{
    visibility:visible
}
.gs-track{
    display:flex;
    gap:10px;
    width:max-content;
    will-change:transform;
    transform:translate3d(0,0,0);
    transition:none
}
.gs-track.slider-ready{
    transition:transform .38s cubic-bezier(.22,.61,.36,1)
}
.gs-item{
    flex:0 0 auto;
    width:200px;
    min-width:0
}
.gs-link{
    display:block;
    color:inherit;
    text-decoration:none
}
.gs-image{
    position:relative;
    overflow:hidden;
    width:100%;
    aspect-ratio:16/9;
    background:#20242c;
    border-radius:6px
}
.gs-image img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .3s
}
.gs-link:hover .gs-image img{
    transform:scale(1.04)
}
.gs-title{
    margin-top:7px;
    overflow:hidden;
    color:var(--short-titlea);
    font-size:13px;
    font-weight:600;
    line-height:1.3;
    white-space:nowrap;
    text-overflow:ellipsis
}
.gs-link:hover .gs-title{
    color:var(--short-titleahover)
}
.gs-buttons{
    display:flex;
    gap:5px
}
.gs-buttons button{
    width:29px;
    height:29px;
    padding:0;
    color:#aeb3bd;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    cursor:pointer;
    outline:0
}
.gs-buttons button:focus{
    outline:0;
    box-shadow:none
}
.gs-buttons button:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.gs-buttons button:hover:not(:disabled){
    color:#fff;
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.14)
}
.gs-buttons button:disabled{
    cursor:default
}
.gs-bottom{
    display:flex;
    justify-content:center;
    margin-top:11px
}
.gs-pages{
    display:flex;
    align-items:center;
    gap:5px;
    min-height:6px
}
.gs-dot{
    width:6px;
    height:6px;
    padding:0;
    border:0;
    border-radius:50%;
    background:#62666d;
    opacity:.5;
    cursor:pointer;
    outline:0
}
.gs-dot:focus{
    outline:0;
    box-shadow:none
}
.gs-dot.active{
    width:17px;
    border-radius:4px;
    background:#67c8bd;
    opacity:1
}

/* ==================== QUICK NAV ==================== */

.content-tools{
    width:100%
}
.quick-nav{
    display:flex;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:15px;
    padding:10px;
    background:var(--card);
    border:1px solid rgba(255,255,255,.045);
    box-shadow:0 1px 4px rgba(47,50,58,.05)
}
.quick-link{
    display:inline-flex;
    align-items:center;
    gap:7px;
    min-height:38px;
    padding:0 13px;
    color:#c1c6ce;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.06);
    border-radius:5px;
    text-decoration:none;
    font-size:13px;
    outline:0;
    transition:color .15s,background .15s,border-color .15s,transform .15s
}
.quick-link:focus{
    outline:0;
    box-shadow:none
}
.quick-link:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.quick-link i{
    color:#72d8ca
}
.quick-link:hover{
    color:#fff;
    background:rgba(114,216,202,.07);
    border-color:rgba(114,216,202,.2);
    transform:translateY(-1px)
}
.quick-telegram i{color:#4db5df}
.quick-order i{color:#d1aa67}

/* ==================== SEARCH ==================== */

.search-box{
    margin-bottom:15px;
    padding:10px;
    background:var(--card);
    border:1px solid rgba(255,255,255,.045);
    box-shadow:0 1px 4px rgba(47,50,58,.05)
}
.main-search-form{
    display:flex;
    align-items:center;
    gap:7px
}
.search-input-wrap{
    position:relative;
    flex:1;
    min-width:0
}
.search-input-icon{
    position:absolute;
    top:50%;
    left:13px;
    color:#727985;
    font-size:13px;
    transform:translateY(-50%);
    pointer-events:none
}
.search-input-wrap input{
    width:100%;
    height:42px;
    padding:0 13px 0 37px;
    box-sizing:border-box;
    color:var(--body);
    background:var(--card);
    border:1px solid var(--form-control2);
    border-radius:6px;
    outline:0;
    box-shadow:none!important;
}

.search-input-wrap input:focus{
    color:var(--body);
    background:var(--card);
    border-color:var(--form-controlfocus);
    box-shadow:none!important;
}

.search-input-wrap input::placeholder{
    color:var(--text-muted);
}
.search-filter-btn,
.search-submit{
    height:42px;
    border-radius:6px;
    cursor:pointer;
    outline:0
}
.search-filter-btn:focus,
.search-submit:focus{
    outline:0;
    box-shadow:none
}
.search-filter-btn:focus-visible,
.search-submit:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.search-filter-btn{
    width:42px;
    flex:0 0 42px;
    padding:0;
    color:#9da4af;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08)
}
.search-filter-btn:hover,
.search-filter-btn.active{
    color:#72d8ca;
    background:rgba(114,216,202,.07);
    border-color:rgba(114,216,202,.22)
}
.search-filter-btn i{
    transition:transform .2s
}
.search-filter-btn.active i{
    transform:rotate(90deg)
}
.search-submit{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    min-width:92px;
    padding:0 14px;
    color:#fff;
    background:#209182;
    border:1px solid rgba(255,255,255,.08)
}
.search-submit:hover{
    background:#25a390
}

/* ==================== FILTER ==================== */

#filter-block,
.filter-block{
    display:none!important;
    margin-top:10px;
    padding-top:12px;
    border-top:1px solid rgba(255,255,255,.07)
}
#filter-block.open,
.filter-block.open{
    display:block!important
}
.filter-title{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
    color:var(--short-titlea);
    font-size:14px;
    font-weight:700
}
.filter-title i{
    color:#72d8ca
}
.filter-wrap{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:8px
}
.fb-sect,
.fb-check{
    min-width:0
}
.fb-sect select{
    width:100%;
    height:38px;
    padding:0 9px;
    color:#e5e7eb;
    background:#22262d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    outline:0
}
.fb-sect select:focus{
    outline:0;
    border-color:rgba(114,216,202,.3)
}
.fb-check{
    display:flex;
    align-items:center;
    gap:8px;
    min-height:38px;
    padding:0 9px;
    color:#b9bec7;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(255,255,255,.06);
    border-radius:5px;
    font-size:13px
}
.fb-check input{
    width:16px;
    height:16px;
    accent-color:#209182
}
.fb-submit{
    display:flex;
    gap:7px;
    grid-column:1/-1;
    margin-top:2px
}
.fb-submit input{
    height:38px;
    padding:0 15px;
    color:#fff;
    background:#209182;
    border:0;
    border-radius:5px;
    cursor:pointer;
    outline:0
}
.fb-submit input:focus{
    outline:0;
    box-shadow:none
}
.fb-submit input[data-dlefilter="reset"]{
    color:#c3c7ce;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08)
}

/* ==================== TAIL SELECT ==================== */

.filter-wrap .tail-select{
    width:100%;
    min-width:0;
    color:#e5e7eb;
    background:#22262d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px
}
.filter-wrap .tail-select .select-label{
    min-height:38px;
    padding:9px 30px 9px 10px;
    color:inherit;
    background:transparent;
    border:0
}
.filter-wrap .tail-select .select-dropdown{
    z-index:1100;
    padding:5px;
    color:#ddd;
    background:#30343d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    box-shadow:0 10px 25px rgba(0,0,0,.3)
}
.filter-wrap .tail-select .select-dropdown ul{
    max-height:240px
}
.filter-wrap .tail-select .dropdown-option{
    padding:6px 30px;
    color:#c4c8cf;
    border-radius:4px
}
.filter-wrap .tail-select .dropdown-option:hover,
.filter-wrap .tail-select .dropdown-option.selected{
    color:#fff;
    background:rgba(114,216,202,.1)
}
.filter-wrap .tail-select .dropdown-search{
    margin-bottom:5px
}
.filter-wrap .tail-select .dropdown-search input{
    color:#fff;
    background:#252930;
    border:1px solid rgba(255,255,255,.08);
    border-radius:4px;
    outline:0
}

/* ==================== TITLE / SORT ==================== */

.page-title-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    min-height:54px;
    margin-bottom:15px;
    padding:7px 10px 7px 15px;
    background:var(--card);
    border:1px solid rgba(255,255,255,.045);
    box-shadow:0 1px 4px rgba(47,50,58,.05)
}
.page-title-box .title_game{
    margin:0;
    color:var(--short-titlea);
    font-size:20px;
    font-weight:700;
    line-height:1.3
}
.sort-box{
    position:relative;
    flex:0 0 auto
}
.sort-button{
    display:flex;
    align-items:center;
    gap:7px;
    height:38px;
    padding:0 11px;
    color:#bfc4cd;
    background:rgba(255,255,255,.035);
    border:1px solid rgba(255,255,255,.08);
    border-radius:5px;
    cursor:pointer;
    outline:0
}
.sort-button:focus{
    outline:0;
    box-shadow:none
}
.sort-button:focus-visible{
    box-shadow:0 0 0 2px rgba(114,216,202,.18)
}
.sort-button:hover{
    color:#fff;
    border-color:rgba(114,216,202,.2)
}
.sort-button>i:first-child{
    color:#72d8ca
}
.sort-arrow{
    margin-left:3px;
    font-size:10px;
    opacity:.6
}
.sort-menu{
    min-width:190px;
    padding:5px;
    background:#30343d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:6px;
    box-shadow:0 10px 30px rgba(0,0,0,.35)
}
.sort-menu a{
    display:block;
    padding:8px 10px;
    color:#c2c6ce;
    text-decoration:none;
    border-radius:4px;
    font-size:13px
}
.sort-menu a:hover{
    color:#fff;
    background:rgba(114,216,202,.08)
}

/* ==================== LIGHT THEME ==================== */

.light-theme .site-header{
    background:#fff;
    border-bottom-color:rgba(0,0,0,.09);
    box-shadow:0 4px 18px rgba(0,0,0,.07)
}
.light-theme .site-nav a{
    color:#596273
}
.light-theme .site-nav a:hover{
    color:#202633;
    background:rgba(0,0,0,.045)
}
.light-theme .site-user a{
    color:#596273
}
.light-theme .theme-toggle{
    background:#eef1f4;
    border-color:rgba(0,0,0,.1)
}
.light-theme .theme-sun{
    color:#d29c38;
    opacity:.35
}
.light-theme .theme-moon{
    color:#667486;
    opacity:1
}
.light-theme .theme-knob{
    left:28px;
    background:#69b9b0
}
.light-theme .header-search-btn{
    color:#697383;
    background:#f4f5f7;
    border-color:#dfe2e7
}
.light-theme .header-search-btn:hover{
    color:#208f84;
    background:#eef9f7;
    border-color:#b8ddd8
}
.light-theme .header-search-panel{
    background:#fff;
    border-color:#dfe2e7;
    box-shadow:0 12px 30px rgba(0,0,0,.12)
}
.light-theme .header-search-panel input{
    color:#3a4651;
    background:#f7f8fa;
    border-color:#d7dbe2
}
.light-theme .header-search-panel button{
    background:#209182
}
.light-theme .mobile-menu{
    background:#fff;
    box-shadow:12px 0 35px rgba(0,0,0,.15)
}
.light-theme .mobile-menu-head,
.light-theme .mobile-menu-profile{
    border-color:rgba(0,0,0,.08)
}
.light-theme .mobile-menu-head strong{
    color:#303844
}
.light-theme .mobile-menu-head button{
    color:#687282
}
.light-theme .mobile-menu-profile strong{
    color:#303844
}
.light-theme .mobile-menu-profile small{
    color:#8a929e
}
.light-theme .mobile-menu-title{
    color:#218d83
}
.light-theme .mobile-menu-section a{
    color:#596273;
    border-bottom-color:rgba(0,0,0,.055)
}
.light-theme .mobile-menu-section a:hover{
    color:#202633;
    background:rgba(0,0,0,.025)
}
.light-theme .slider-heading{
    color:var(--slider-titlea,#272727)
}
.light-theme .gs-image{
    background:#ededed
}
.light-theme .gs-buttons button{
    color:#687282;
    background:#f5f6f8;
    border-color:#dfe2e7
}
.light-theme .gs-buttons button:hover:not(:disabled){
    color:#202633;
    background:#ebedf0;
    border-color:#d1d5db
}
.light-theme .gs-dot{
    background:#aab1bc
}
.light-theme .gs-dot.active{
    background:#50a99f
}
.light-theme .quick-nav,
.light-theme .search-box,
.light-theme .page-title-box{
    border-color:rgba(0,0,0,.07);
    box-shadow:0 1px 4px rgba(0,0,0,.04)
}
.light-theme .quick-link{
    color:#596273;
    background:#f7f8fa;
    border-color:#e1e4e8
}
.light-theme .quick-link:hover{
    color:#202633;
    background:#eef9f7;
    border-color:#b8ddd8
}
.light-theme .quick-link i{
    color:#209182
}
.light-theme .search-filter-btn{
    color:#687282;
    background:#f7f8fa;
    border-color:#dfe2e7
}
.light-theme .search-filter-btn:hover,
.light-theme .search-filter-btn.active{
    color:#208f84;
    background:#eef9f7;
    border-color:#b8ddd8
}
.light-theme .search-input-wrap input{
    color:#3a4651;
    background:#fff;
    border-color:#ced9ee
}
.light-theme .search-input-wrap input::placeholder{
    color:#8a919d
}
.light-theme .filter-block{
    border-top-color:rgba(0,0,0,.08)
}
.light-theme .filter-title{
    color:#4a5265
}
.light-theme .fb-sect select{
    color:#3a4651;
    background:#fff;
    border-color:#ced9ee
}
.light-theme .fb-check{
    color:#596273;
    background:#f7f8fa;
    border-color:#e1e4e8
}
.light-theme .filter-wrap .tail-select{
    color:#3a4651;
    background:#fff;
    border-color:#ced9ee
}
.light-theme .filter-wrap .tail-select .select-dropdown{
    color:#3a4651;
    background:#fff;
    border-color:#dfe2e7;
    box-shadow:0 10px 25px rgba(0,0,0,.12)
}
.light-theme .filter-wrap .tail-select .dropdown-option{
    color:#596273
}
.light-theme .filter-wrap .tail-select .dropdown-option:hover,
.light-theme .filter-wrap .tail-select .dropdown-option.selected{
    color:#202633;
    background:#eef5f5
}
.light-theme .filter-wrap .tail-select .dropdown-search input{
    color:#3a4651;
    background:#f7f8fa;
    border-color:#dfe2e7
}
.light-theme .sort-button{
    color:#596273;
    background:#f7f8fa;
    border-color:#dfe2e7
}
.light-theme .sort-button:hover{
    color:#202633;
    border-color:#b8ddd8
}
.light-theme .sort-menu{
    background:#fff;
    border-color:#dfe2e7;
    box-shadow:0 10px 30px rgba(0,0,0,.12)
}
.light-theme .sort-menu a{
    color:#596273
}
.light-theme .sort-menu a:hover{
    color:#202633;
    background:#eef5f5
}

/* ==================== RESPONSIVE ==================== */

@media(max-width:1399px){
    .site-nav a{
        padding-left:8px;
        padding-right:8px
    }
}
@media(max-width:1199px){
    .site-nav a:nth-child(n+4){
        display:none
    }
    .site-header .header__logo{
        flex-basis:215px;
        width:215px
    }
}
@media(max-width:991px){
    .site-header-inner{
        min-height:64px
    }
    .menu-toggle{
        display:flex
    }
    .site-nav{
        display:none
    }
    .site-header .header__logo{
        flex:1 1 auto;
        width:auto;
        margin-right:0
    }
    .site-user{
        margin-left:5px
    }
    .site-user a span{
        display:none
    }
    .site-user img{
        width:34px;
        height:34px
    }
    .theme-toggle{
        margin-left:8px
    }
    .filter-wrap{
        grid-template-columns:repeat(2,minmax(0,1fr))
    }
    .page-title-box{
        align-items:flex-start;
        flex-direction:column
    }
    .sort-box{
        width:100%
    }
    .sort-button{
        width:100%;
        justify-content:center
    }
}
@media(max-width:767px){
    .site-header{
        margin-left:-10px;
        margin-right:-10px
    }
    .site-header .header__logo{
        height:54px;
        background-size:170px auto
    }
    .site-user img{
        width:32px;
        height:32px
    }
    .theme-toggle{
        width:52px;
        height:29px;
        flex-basis:52px
    }
    .theme-icon{
        width:29px;
        height:29px
    }
    .theme-knob{
        top:4px;
        left:4px;
        width:21px;
        height:21px
    }
    .theme-toggle.is-dark .theme-knob{
        left:27px
    }
    .quick-nav{
        gap:6px
    }
    .quick-link{
        flex:1 1 calc(50% - 6px);
        justify-content:center
    }
    .main-search-form{
        flex-wrap:wrap
    }
    .search-input-wrap{
        flex:1 1 100%
    }
    .search-filter-btn,
    .search-submit{
        flex:1 1 calc(50% - 4px)
    }
    .filter-wrap{
        grid-template-columns:1fr
    }
    .fb-submit{
        grid-column:1
    }
}
@media(max-width:480px){
    .header-search-panel{
        left:10px;
        right:10px;
        width:auto
    }
    .menu-toggle{
        width:40px;
        height:40px
    }
    .site-header .header__logo{
        background-size:145px auto
    }
    .site-user img{
        width:30px;
        height:30px
    }
    .slider-heading{
        font-size:15px
    }
    .quick-link{
        flex-basis:100%
    }
    .page-title-box .title_game{
        font-size:18px
    }
}


/* FILTER / SELECT */
.filter-block .fb-sect select{
    color:var(--body)!important;
    background:var(--card)!important;
    border-color:var(--form-control2)!important;
}

.filter-block .fb-sect select option{
    color:var(--body)!important;
    background:var(--card)!important;
}

/* DLE custom selects */
.filter-block .chosen-container,
.filter-block .chosen-container-single,
.filter-block .chosen-container-multi{
    width:100%!important;
    color:var(--body)!important;
}

.filter-block .chosen-container .chosen-single,
.filter-block .chosen-container .chosen-choices{
    min-height:38px;
    color:var(--body)!important;
    background:var(--card)!important;
    border:1px solid var(--form-control2)!important;
    border-radius:5px!important;
    box-shadow:none!important;
}

.filter-block .chosen-container .chosen-single span{
    color:var(--body)!important;
}

.filter-block .chosen-container .chosen-choices{
    padding:3px 8px!important;
}

.filter-block .chosen-container .chosen-choices li.search-choice{
    color:var(--body)!important;
    background:var(--menu2hover)!important;
    border:1px solid var(--form-control2)!important;
    box-shadow:none!important;
}

.filter-block .chosen-container .chosen-choices li.search-field input{
    color:var(--body)!important;
}

.filter-block .chosen-container .chosen-drop{
    color:var(--body)!important;
    background:var(--card)!important;
    border-color:var(--form-control2)!important;
}

.filter-block .chosen-container .chosen-results li{
    color:var(--body)!important;
    background:transparent!important;
}

.filter-block .chosen-container .chosen-results li.highlighted{
    color:var(--body)!important;
    background:var(--menu2hover)!important;
}

/* стрелки / плюсики / крестики */
.filter-block .chosen-container .chosen-single div b{
    opacity:.7;
}

.filter-block .chosen-container .search-choice-close{
    margin-top:0!important;
}

.filter-block .fb-check{
    position:relative;
    display:flex;
    align-items:center;
    gap:8px;
}

.filter-block .fb-check input{
    flex:0 0 16px;
    width:16px!important;
    height:16px!important;
    margin:0!important;
}

.filter-block .fb-check span{
    position:static!important;
    display:block;
    line-height:1.3;
}