
.fa-youtube:before {
    content: "\f167"
}



/* HEADER */
header {
    position: relative;
    padding: 10px 0;
    width: 100%;
    z-index: 7;
    background: #181818;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
}

.header-logo > span {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.header-logo > span span {
    color: var(--color1);
}

/* HEADER SEARCH */
.header-search {
    display: flex;
    align-items: center;
    background: rgb(57 59 65);
    color: #ffffff;
    border-radius: 8px;
    z-index: 8;
}

@media (max-width: 820px) {
    .header-search {
    margin-left: 90px !important;
    }
}

.header-search_icon, .header-search_voice {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
    float: right;
    position: relative;
    z-index: 13;
}

.header-search_voice {
    background: #393b41;
    color: #ffffff;
    border-radius: 1px;
    opacity: 1;
    margin-top: -40px;
    cursor: pointer;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

@media (max-width: 820px) {
    .header-search_voice {
        display: none;
    }
}

.header-search form {
    height: 40px;
    line-height: 40px;
    width: 240px;
}

@media (max-width: 820px) {
    .header-search form {
        display: none;
        position: fixed;
        background: var(--bg3);
        padding: 10px 30px;
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 995;
    }
}

.header-search input {
    width: 210px;
    height: inherit;
    line-height: inherit;
    color: #ffffff;
    font-weight: 400;
    font-size: 14px;
    font-family: 'Unbounded';
}

.header-search input::placeholder {
    color: var(--light2);
}

.header-search_close {
    display: none;
}

@media (max-width: 820px) {
    .header-search_close {
        display: inline-block;
        position: absolute;
        opacity: 0.6;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 25px;
        text-align: center;
    }
}

.search__rezo {
    position: absolute;
    top: 100%;
}

@media(max-width: 820px) {
    .search__rezo {
        left:0;
        width: 100%;
        padding: 0 30px
    }
}

.search__rezo #searchsuggestions {
    background: var(--bg2);
    box-shadow: 0 0 20px 0 rgb(0 0 0/10%);
    color: var(--text);
    width: 300px; /*268px*/
    max-height: 290px;
    overflow: hidden;
    overflow-y: auto;
    padding: 15px;
    margin-top: 20px;
    border-radius: 12px;
    z-index: 997
}

@media(max-width: 460px) {
    .search__rezo #searchsuggestions {
        width:100%
    }
}

.fsearch {
    display: flex;
    padding: 10px;
    align-items: center;
    justify-content: flex-start;
    border-radius: 10px;
    color: var(--text);
}

.fsearch:hover {
    background: var(--light)
}

.fsearch_poster {
    position: relative;
    max-width: 40px;
    min-height: 40px;
    margin-right: 10px;
}

.fsearch_poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px
}

.fsearch_info {
    display: block;
    width: 100%;
}

.fsearch_info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0
}

.fsearch_tags span {
    font-size: 12px;
    font-weight: 400;
    opacity: .8
}

.notfound+.seperator {
    display: none
}

.seperator {
    display: block;
    background: var(--bg);
    padding: 8px 20px;
    text-align: center;
    border-radius: 10px
}

.searchtable {
    margin-bottom: 30px
}

.searchtable div {
    margin: 0!important
}

#searchinput {
    width: 100%!important;
    box-shadow: 0 0px 3px 0 rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 5px;
}

#dofullsearch {
    display: none
}

/* MOB MENU */
@media (min-width: 820px) {
    .mobmenu-btn {
        display: none;
    }
}

@media (max-width: 820px) {
    .mobmenu-btn {
        color: var(--color1);
        border-radius: 10px;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 30px;
        text-align: center;
    }

    .mobmenu-btn.active:before {
        content: "\f00d";
    }

    .mobmenu {
        position: fixed;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        top: 0;
        left: -300px;
        width: 240px;
        height: 100%;
        background: var(--bg2);
        transition: 0.3s;
        overflow-y: auto;
        z-index: 6;
    }

    .mobmenu.active {
        display: flex;
        align-items: flex-start;
        left: 0;
        padding: 60px 0;
        border-radius: 0;
    }

    .mobmenu .header-menu {
        display: flex;
        flex-direction: column;
        margin-left: 0;
    }
}

/* HEADER USER */
.header-user {
    position: relative;
    cursor: pointer;
}

@media (max-width: 820px) {
    .header-user {
        min-width: 100%;
        width: 100%;
        padding: 0px;
        position: absolute;
        top: 0;
        right: 45px;
    }
}

.header-user > span {
    display: inline-block;
    background: var(--color1);
    color: var(--text-color1);
    border-radius: 10px;
    padding: 12px 20px;
    cursor: pointer;
}

@media (max-width: 820px) {
    .header-user > span {
    right: 40px;
    position: relative;
    top: -2px;
    }
}

.header-user > img {
    display: block;
    border: 2px solid #ccc;
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 45px;
}

.user_menu {
    position: absolute;
    background: #292b31;
    color: #f1f1f1;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,.08),0 3px 6px -4px rgba(0,0,0,.12),0 9px 28px 8px rgba(0,0,0,.05);
    padding: 6px;
    border-radius: 12px;
    width: 190px;
    border: var(--size-border-width-1, 1px) solid var(--color-border-subdued, rgba(255, 255, 255, .1));
    top: 55px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 5;
}

.user_menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.user_menu-avatar {
    align-items: center;
    margin: 5px;
}

.user_menu-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgb(255 255 255 / 0.3);
    margin-right: 15px;
}

.user_menu-name {
    font-size: 14px;
    font-weight: 700;
}

.user_menu-name span {
    display: block;
    font-size: 10px;
}

.user-menu_link {
}

.user-menu_link a {
    display: flex;
    align-items: center;
    border-radius: 8px;
    padding: 8px;
    transition: all .2s;
    font-size: 14px;
    color: #ebebeb;
}

.user-menu_link a:hover {
    background: hsl(222.86deg 4.58% 30%);
    color: #f3f3f3;
}

.user-menu_link i {
    font-size: 16px;
    margin-right: 10px;
    opacity: 0.8;
}

/* LOGIN */
.user-login {
    position: fixed;
    display: none;
    min-width: 300px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: #25272b;
    box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
    color: var(--text-color);
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    z-index: 9;
}

.user-login.active {
    display: block;
}

@media (max-width: 820px) {
    .user-login {
        min-width: 100%;
        width: 100%;
        padding: 40px;
    }
}

.user-login_content input {
    /* border: 1px solid rgb(73 73 73 / 30%); */
}

.user-login_lost {
    display: block;
    text-align: right;
    margin: 20px 0;
    color: var(--color1);
}

.user-login_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-login_btn a {
    display: inline-block;
    background: #1f2023;
    color: #e7e7e7;
    border-radius: 6px;
    border: 1px solid #1f2023;
    padding: 14px 20px;
    margin-left: 20px;
    font-size: 16px;
}

.user-login_soc {
    align-items: center;
    justify-content: center;
}

.user-login_soc span {
    width: 100%;
    margin: 30px 0px 15px 0px;
}

.user-login_soc a + a {
    margin-left: 15px;
}

.user-login_soc a {
    display: inline-block;
    background: transparent;
    border: 1px solid rgb(35 35 35);
    box-shadow: 0 3px 14px 0 rgb(0 0 0 / 3%);
    border-radius: 50px;
    width: 50px;
    transition: all 0.2s;
    height: 50px;
    line-height: 50px;
    font-size: 26px;
    text-align: center;
}

.user-login_soc a:hover {
    background: #1f2023;
    color: #fff;
}

.user-login_close {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: #1f2023;
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 37px;
    cursor: pointer;
}

/* FIX RECOMM */
.fix-recom {
    position: relative;
    background: #ffffff;
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.fix-recom_head {
    background: rgb(255 255 255);
    padding: 10px 25px;
    border-radius: 5px 5px 0 0;
    font-weight: 600;
}

.fix-recom_items, .fix-related_items, .milkashort_items {
    position: relative;
    padding: 15px;
    overflow: hidden;
}

.fix-recom_items > .fal, .fix-related_items > .fal, .milkashort_items > .fal, .fix-podb_items > .fal {
    position: absolute;
    backdrop-filter: blur(5px);
    background: #0a0a0a;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    color: #dfdfdf;
    border-radius: 5px;
    top: 40%;
    right: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

.fix-related_items > .fal {
    top: 40%;
}

.milkashort_items > .fal {
    top: 40%;
}

@media (max-width: 820px) {
    .fix-recom_items > .fal, .fix-related_items > .fal, .milkashort_items > .fal, .fix-podb_items > .fal {
        display: none;
    }
}

.fix-recom_items > .fal:hover, .fix-related_items > .fal:hover, .milkashort_items > .fal:hover, .fix-podb_items > .fal:hover {
    background: #181818;
}

.fix-recom_items .fa-chevron-left, .fix-related_items .fa-chevron-left, .milkashort_items .fa-chevron-left, .fix-podb_items .fa-chevron-left {
    left: 0;
}

.fix-recom_item {
}

.fix-recom_bg {
    position: relative;
    border: 1px solid #656565;
    box-shadow: 0 0 0 1px var(--light), 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 2px;
    width: 100%;
    height: 200px;
    transition: 0.3s;
}

.fix-recom_bg:hover {
    transform: scale(1.02) translateY(0)
}

.fix-recom_bg .rating-color {
    position: absolute;
    padding: 2px 8px;
    border-radius: 5px;
    top: 10px;
    left: -10px;
    color: #fff;
    font-size: 12px;
}

/* RATING COLOR */
.rating-color {
    background-color: #3bb33b;
    box-shadow: 0 4px 9px rgb(59 179 59 / 50%);
}

.rating-color.low {
    background: #e13535;
    box-shadow: 0 4px 9px rgb(225 53 53 / 50%);
}

.rating-color.middle {
    background: #ff6702;
    box-shadow: 0 4px 9px rgb(255 103 2 / 50%);
}

.rating-color1 {
    color: #3bb33b;
}

.rating-color1.low {
    color: #e13535;
}

.rating-color1.middle {
    color: #77dfa1;
}

/* BADGE */
.badge {
    display: inline-block;
    padding: 5px 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: pre-wrap;
    vertical-align: baseline;
    border-radius: 3px;
}

.badge-red {
    color: #fff;
    background-color: #ff4954;
}

.badge-green {
    color: #fff;
    background-color: #3cd458;
}

.badge-blue {
    color: #fff;
    background-color: #50a1ff;
}

.badge-dark {
    color: #fff;
    background-color: #343a40;
}

.badge-white {
    background-color: #fff;
    color: #757575;
    box-shadow: 0 1px 4px rgb(0 0 0 / 16%);
    font-weight: 500;
}

/* SPEEDBAR */
.speedbar {
    position: relative;
    margin: 30px 0;
    font-size: 14px;
}

.speedbar:before {
    content: "";
    display: inline-block;
    float: left;
    margin-top: 2px;
    width: 10px;
    height: 10px;
    border: 2px solid var(--color2);
    border-radius: 50px;
    margin-right: 10px;
}

.speedbar a {
    opacity: 0.8;
}

/* ASIDE */
aside {
    width: 300px;
    margin-left: 25px;
}

@media (max-width: 820px) {
    aside {
        width: 100%;
        margin-right: 0;
        order: 2;
    }
}

/* FIX MENU */
.fix-menu {
    display: flex;
    align-items: center;
    background: #1a1a1b;
    border-radius: 8px;
    margin-top: 30px;
    font-weight: 400;
}

.fix-menu > a, .fix-menu_sub, .fix-menu_sub > a {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 400;
}

@media (max-width: 820px) {
    .fix-menu > a, .fix-menu_sub, .fix-menu_sub > a {
        width: 100%;
    }
}

.fix-menu > a:hover, .fix-menu_sub a:hover, .fix-menu_sub div > a:hover {
    color: #d7d7d7;
}

.categ:hover {
    color: #d7d7d7;
    background: #393b41;
    }

.fix-menu a i {
    margin-left: 5px;
    font-size: 13px;
}

.fix-menu_sub {
    position: relative;
    padding: 0;
    z-index: 4;
}

.fix-menu_sub > div {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    background: rgb(41 43 49);
    color: #dfdfdf;
    box-shadow: 0 6px 16px 0 rgba(0,0,0,.08),0 3px 6px -4px rgba(0,0,0,.12),0 9px 28px 8px rgba(0,0,0,.05);
    padding: 8px;
    border-radius: 12px;
    visibility: hidden;
    opacity: 0;
    border: var(--size-border-width-1, 1px) solid var(--color-border-subdued, rgba(255, 255, 255, .1));
    top: 100%;
    left: 0;
    width: 620px;
    transition: 0.3s;
}

@media (max-width: 820px) {
    .fix-menu_sub > div {
        position: absolute;
        padding: 20px;
        border-radius: 0;
        top: 0;
        left: 0;
        width: auto;
        transition: 0.3s;
    }

    .fix-menu_sub:hover > div {
        position: relative;
    }
}

.fix-menu_sub > div:before {
    content: "";
    position: absolute;
    background: #292b31;
    top: -5px;
    left: 10%;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
    z-index: -1;
}

.fix-menu div:hover.fix-menu_sub div, .fix-menu_sub div:hover .fix-menu_sub > div {
    visibility: visible;
    opacity: 1;
    z-index: 2;
}

.fix-menu_sub > div a {
    border-left: none;
    padding: 10px;
    transition: all 0.15s;
    flex-basis: 30%;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
    border-radius: 8px;
}

@media (max-width: 820px) {
    .fix-menu_sub > div a {
        flex-basis: 100%;
    }
}

/* FIX SHORT */
.fix-sect {
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    counter-reset: toc1;
}

.fix-sect_head {
    align-items: center;
    margin-bottom: 30px;
}

.fix-sect_head i {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: linear-gradient(180deg, #616161 0%, #3d3d3d 100%);
    box-shadow: 0 0 20px rgb(103 103 103 / 41%);
    border-radius: 5px;
    margin-right: 20px;
}

.fix-sect_head i:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 5px #434343 solid;
    border-radius: 100px;
    right: -11px;
    top: 8px;
}

.fix-sect_head h2, .fix-sect_head h3 {
    margin-bottom: 0;
}

.fix-sect_items {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
}

.fix-sect_item {
    position: relative;
    padding-top: 10px !important;
    transition: all 0.2s;
    padding-bottom: 10px;
}

.fix-sect_item:hover {
    /* background: #25272b; */
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
}

.fix-sect_bg {
    position: relative;
    display: inline-block;
    border-radius: 8px;
    width: 100%;
    height: 160px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.fix-sect_bg:hover {filter: brightness(0.9);transition: .15s all;}

.fix-sect_bg .rating-color {
    position: absolute;
    padding: 2px 8px;
    border-radius: 5px;
    top: 10px;
    left: -10px;
    color: #fff;
    font-size: 12px;
}

.fix-sect_item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.fix-sect_meta {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.fix-desc_btn {
    position: absolute;
    background: var(--dark);
    backdrop-filter: blur(10px);
    color: #fff;
    border-radius: 5px;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    font-size: 12px;
}

@media (max-width: 820px) {
    .fix-desc_btn {
        display: none;
    }
}

.fix-desc {
    display: none;
    position: absolute;
    top: -40px;
    left: 100%;
    width: 420px;
    min-height: 80px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    margin-left: 10px;
    z-index: 8;
}

.fix-desc:before {
    content: "";
    position: absolute;
    background: #3a3a3f;
    top: 20%;
    left: -10px;
    width: 26px;
    height: 26px;
    transform: rotate(45deg);
}

.fix-desc_left .fix-desc {
    left: auto;
    right: 55px;
}

.fix-desc_left .fix-desc:before {
    left: auto;
    right: -10px;
}

.fix-desc h3 {
    margin-bottom: 0;
}

.fix-desc h3 + span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.5;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 2px dashed rgb(109 109 109 / 30%);
}

.fix-desc ul li {
    margin-top: 10px;
    font-weight: 500;
}

.fix-desc ul li span {
    display: inline-block;
    font-weight: 600;
    opacity: 0.8;
    width: 100px;
}

.fix-desc p {
    font-size: 14px;
    margin-top: 20px;
}

/* FIX TOP 10 */
.fix-top10_items {
    position: relative;
    counter-reset: toc1;
}

.fix-top10_items .fa-chevron-right, .fix-top10_items .fa-chevron-left {
    position: absolute;
    backdrop-filter: blur(5px);
    background: #fff;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    color: #000;
    border-radius: 5px;
    top: 40%;
    right: -20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 4;
}

@media (max-width: 820px) {
    .fix-top10_items .fa-chevron-right, .fix-top10_items .fa-chevron-left {
        display: none;
    }
}

.fix-top10_items .fa-chevron-right:hover, .fix-top10_items .fa-chevron-left:hover {
    background: var(--color1);
}

.fix-top10_items .fa-chevron-left {
    left: -20px;
}

.fix-top10_items .swiper-button-disabled {
    display: none;
}

.fix-top10_item {
    position: relative;
    display: flex;
    align-items: center;
}

.fix-top10_item:before {
    background: linear-gradient(135deg, #cac0c8 20%, #141414 40%, #baa5be 60%, #888cf0 70%, #6fdaf0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    content: counter(toc1, decimal);
    counter-increment: toc1;
    font-size: 250px;
    font-family: 'Archivo Black', sans-serif;
    font-style: italic;
    margin-right: -20px;
}

.fix-top10_bg {
    position: relative;
    border: 1px solid #fff;
    box-shadow: 0 0 0 1px #ddd, 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
    min-width: 200px;
    width: 200px;
    height: 290px;
    transition: 0.3s;
    overflow: hidden;
}

.fix-top10_bg:hover {
    transform: scale(1.02) translateY(0)
}

.fix-top10_bg .rating-color {
    position: absolute;
    padding: 2px 8px;
    border-radius: 5px;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 12px;
}

/* FIX TOP ASIDE */
.fix-top_items, .lastcomm-items {
    background: #25272b;
    padding: 15px;
    border-radius: 4px;
    counter-reset: toc1;
    box-shadow: 0 0px 3px 0 rgba(0,0,0,0.1);
}

.fix-top_item {
    align-items: center;
    flex-wrap: nowrap;
}

.fix-top_item + .fix-top_item {
    margin-top: 20px;
}

.fix-top_item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    opacity: 0.5;
    width: 10px;
}

.fix-top_item img {
    width: 40px;
    height: auto;
    border-radius: 3px;
    margin: 0 10px;
}

.fix-top_title {
}

.fix-top_title h4 {
    font-size: 14px;
    margin-bottom: 0;
}

.fix-top_title h4:hover {
    color: var(--color2);
}

.fix-top_title span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.fix-top_item > span {
    font-size: 16px;
    margin-left: 20px;
}

/* FIX TOP 100 */
.fix-top100_item {
    align-items: center;
    flex-wrap: nowrap;
    background: var(--bg2);
    padding: 20px 30px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.fix-top100_item + .fix-top_item {
    margin-top: 20px;
}

.fix-top100_item:before {
    content: counter(toc1, decimal);
    counter-increment: toc1;
    opacity: 0.5;
    width: 10px;
    font-size: 30px;
    margin-right: 40px;
}

@media (max-width: 820px) {
    .fix-top100_item:before {
        margin-right: 20px;
    }
}

.fix-top100_item img {
    width: 60px;
    height: auto;
    border-radius: 3px;
}

@media (max-width: 820px) {
    .fix-top100_item img {
        width: 40px;
        margin-right: 10px;
    }
}

.fix-top100_title {
}

.fix-top100_title h3 {
    margin-bottom: 0;
}

.fix-top100_title h4:hover {
    color: var(--color2);
}

.fix-top100_title span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.8;
}

.fix-top100_item > span {
    width: 150px;
    font-size: 25px;
    margin-left: auto;
    margin-right: 30px;
    text-align: center;
}

@media (max-width: 820px) {
    .fix-top100_item > span {
        font-size: 18px;
        margin-right: 0;
        text-align: right;
    }
}

.fix-top100_item > span span {
    display: block;
    font-size: 12px;
    color: var(--text);
}

@media (max-width: 820px) {
    .fix-top100_item > span span {
        display: none;
    }
}

.fix-top100_link {
    display: inline-block;
    background: var(--color2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
}

@media (max-width: 820px) {
    .fix-top100_link {
        display: none;
    }
}

/* FIX COMM */
.lastcomm-items {
}

.lastcomm-item {
    position: relative;
    align-items: flex-start;
}

.lastcomm-item + div {
    margin-top: 30px;
}

.lastcomm-item > img {
    width: 50px;
    height: 50px;
    border-radius: 90px;
    margin-right: 15px;
    overflow: hidden;
}

.lastcomm-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.lastcomm-content span {
    font-size: 12px;
    opacity: 0.7;
}

.lastcomm-content p, .lastcomm-content ol {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    margin-top: 10px;
}

.lastcomm-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* FIX PODB */
.fix-podb_items {
    position: relative;
    padding: 0 10px;
    overflow: hidden;
}

@media (max-width: 820px) {
    .fix-podb_items {
        overflow: visible;
    }
}

.fix-podb_items .swiper-button-disabled {
    display: none;
}

.fix-podb_item {
    position: relative;
    display: block;
    border-radius: 2px;
    height: 250px;
    overflow: hidden;
}

.fix-podb_item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00000000 -20%, transparent);
    z-index: 1;
}


.fix-podb_content {
    position: absolute;
    color: #fff;
    left: 0;
    bottom: 0;
    padding: 30px;
    z-index: 2;
}

.fix-podb_content h2 {
    margin-bottom: 0;
}

.fix-podb_item > img {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    object-fit: cover;
    transition: 0.3s;
    overflow: hidden;
}

.fix-podb_item:hover img {
    filter: brightness(1.3);
}

/* FIX FULL */
.fix-full {
    align-items: flex-start;
    background: #25272b;
    padding: 15px;
    border-radius: 2px;
    margin: 20px 0;
    height: max-content;
    box-shadow: 0 0px 3px 0 rgba(0,0,0,0.1);
}

@media (max-width: 820px) {
    .fix-full {
        margin: 0;
        margin-bottom: 30px;
    }
}

.fix-full_left {
    position: relative;
    width: 250px;
}

@media (max-width: 820px) {
    .fix-full_left {
        width: 100%;
    }
}

.fix-full_left > img {
    width: 100%;
    height: auto;
    border: 1px solid var(--bg2);
    box-shadow: 0 0 0 1px var(--light), 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
}

.fix-full_left .e-btn {
    background: var(--color2);
    width: 100%;
}

.fix-full_center {
    position: relative;
    margin: 0 30px;
}

@media (max-width: 820px) {
    .fix-full_center {
        margin: 0;
        margin-top: 30px;
    }
}

.fix-full_age {
    display: inline-block;
    border: 1px solid var(--light);
    color: var(--text);
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
    font-size: 14px;
}

.fix-full_center h1 {
    margin-bottom: 0;
}

.fix-full_center > ul li {
    font-weight: 400;
    margin-top: 10px;
}

.fix-full_center > ul li span {
    display: inline-block;
    font-weight: 500;
    width: 180px;
}

.fix-full_stars {
}

.fix-full_stars span {
    display: block;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.fix-full_grades {
    justify-content: space-between;
    align-content: center;
    padding: 20px 0;
    border-top: 1px dashed var(--light);
    border-bottom: 1px dashed var(--light);
    margin: 20px 0;
}

.fix-full_grade + .fix-full_grade {
    margin-left: 40px;
}

@media (max-width: 820px) {
    .fix-full_grade + .fix-full_grade {
        margin-left: 0;
        margin-top: 20px
    }
}

.fix-full_grade span:first-child {
    display: block;
    font-size: 25px;
    font-weight: 600;
}

.fix-full_grade span {
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.fix-full_links {
    align-items: center;
}

.fix-full_links a:last-child {
    background: var(--bg);
    color: var(--text);
    margin-left: 20px;
}

.fix-full_links a.favmod, .fix-full_links a[id]  {
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
}

@media (max-width: 820px) {
    .fix-full_links a.favmod {
        padding: 15px;
    }

    .fix-full_links a.favmod span {
        display: none!important;
    }

    .fix-full_links a i {
        margin-right: 20px;
    }
}

.favmod-add,.favmod-unset {
    display: block
}

.favmod .favmod-unset,.favmod.active .favmod-add {
    display: none
}

.favmod.active .favmod-unset {
    display: block
}
.favmod span {
    margin-left: 10px;
}


.player-btn {
    margin-right: 20px;
    background: var(--swiper-theme-color);
}

.fix-full_tags a {
    display: inline-block;
    background: var(--light);
    padding: 5px 10px;
    border-radius: 2px;
    color: #828282;
    margin: 10px 0;
    margin-right: 10px;
    font-size: 14px;
}

.fix-full_tags a:hover {
    background: var(--color1);
    color: #fff;
}

.fix-full_links a i {
    margin-right: 20px;
}

.fix-tabs_head {
    align-items: center;
    justify-content: space-between;
}

.fix-tabs_head > span {
    display: inline-block;
    background: var(--bg2);
    padding: 3px 10px;
    margin-left: auto;
}

.fix-tabs_controls {
    margin-bottom: 20px;
}

.fix-tabs_controls span {
    display: inline-block;
    background: var(--bg3);
    color: var(--text1);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.fix-tabs_controls span.active {
    background: var(--color2);
}

.fix-tabs_content {
    height: 400px;
    border-radius: 5px;
    overflow: hidden;
}

/* TRAILER MODAL */
.trailer-modal {
    display: none;
    position: fixed;
    background: var(--bg);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
}

.trailer-modal.active {
    display: block
}

.trailer-modal_heading {
    padding: 20px;
    align-items: center;
    justify-content: space-between;
}

.trailer-modal_heading h4 {
    margin-bottom: 0;
}

.trailer-modal_close {
    display: inline-block;
    background: var(--bg2);
    border-radius: 10px;
    right: 0;
    top: 5px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
}

.trailer-modal_iframe {
    position: relative;
    padding-bottom: 85vh;
}

.trailer-modal_iframe iframe {
    position: absolute;
    width: 100%;
    height: 100%;
}

/* FIX SEO */
.fix-seo ul li {
    position: relative;
    margin: 15px 0;
    padding-left: 20px;
    font-weight: 400;
}

.fix-seo ul li:before {
    content: "";
    position: absolute;
    display: inline-block;
    background: var(--color1);
    border-radius: 100px;
    width: 6px;
    height: 6px;
    left: 0;
    top: 15px;
}

.fix-seo p + h2, .fix-seo p + p {
    margin-top: 20px;
}

.expand-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.expand-btn {
    position: relative;
    display: block;
    width: 100%;
    background: var(--bg);
    border-radius: 0 0 5px 5px;
    padding: 12px;
    text-align: center;
    margin-top: -50px;
    margin-bottom: 30px;
    z-index: 2;
    cursor: pointer;
}

.expand-btn:after {
    content: "";
    position: absolute;
    background: linear-gradient(180deg,rgba(38,38,38,0),var(--bg));
    bottom: 42px;
    width: 100%;
    height: 100px;
    left: 0;
}

/* SHORT NEWS */
.milkanews-item {
    align-items: center;
    margin-bottom: 20px;
}

.milkanews-content h4 {
    margin: 20px 0;
    font-weight: 600;
}

.milkanews-content h4:hover {
    color: var(--color1);
    cursor: pointer;
}

.milkanews-meta {
    align-items: center;
    opacity: 0.6;
}

.milkanews-meta span i {
    margin-right: 10px;
}

.milkanews-meta span + span {
    margin-left: 20px;
}

.milkanews-item img {
    width: 310px;
    height: 150px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 3px;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    transition: all 0.3s;
    overflow: hidden;
}

@media (max-width: 820px) {
    .milkanews-item img {
        width: auto;
        height: 200px;
        margin-right: 0;
        margin-bottom: 30px;
    }
}

.milkanews-item:hover img {filter: brightness(0.9);transition: .15s all;}

/* FULL NEWS */
.milkafull {
    margin-top: 30px;
}

.milkafull > h1, .milkafull > h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.milkafull-meta {
    align-items: center;
    justify-content: space-between;
}

.milkafull-meta > span + span {
    margin-left: 20px;
}

.milkafull-meta .date {
    font-weight: 600;
    opacity: 0.6;
}

.milkafull-rating {
    margin-left: auto;
}

.milkafull-rating > a {
    display: inline-block;
    background: var(--color1);
    color: #fff;
    padding: 0 10px;
    border-radius: 5px;
    width: auto;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.milkafull-rating > a:first-child {
    background: var(--color2);
}

.milkafull-rating span {
    margin-left: 5px;
}

.milkafull-bg {
    height: 400px;
    margin: 20px 0;
    border-radius: 10px;
    overflow: hidden;
}

.milkafull-text {
}

.milkafull-text h2 {
    margin-top: 20px;
}

.milkafull-tool {
    padding-top: 20px;
    margin: 20px 0;
    border-top: 2px solid #f1f3f4;
    font-weight: 500;
    color: #9a9da2;
}

.milkafull-tool span + span {
    margin-left: 20px;
}

.milkafull-tool span i {
    margin-right: 10px;
}

.milkaadvert {
    background: #6e7177;
    text-align: center;
    padding: 60px 0;
    margin-bottom: 30px;
    color: #aaabad;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
}

/* FOOTER */
footer {
    background: #1a1a1b;
    padding: 30px 0;
}

footer .container {
    align-items: center;
    justify-content: space-between;
}

.footer-logo {width: 20%;}

@media (max-width: 820px) {
    .footer-logo {
        display: none;
    }
}

.footer-logo > span {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-logo > span span {
    color: var(--color1);
}

.footer-center {
    text-align: center;
}

@media (max-width: 820px) {
    .footer-center {
        text-align: left; 
    }
}

.footer-menu + .footer-menu {
    font-size: 12px;
    font-weight: 300;
    margin-top: 15px;
    opacity: 0.5;
}

.footer-menu a + a {
    margin-left: 30px;
}

.footer-support span:first-child {
    display: block;
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    opacity: 0.5;
    margin-bottom: 5px;
}

@media (max-width: 820px) {
    .footer-support span:first-child {
        display: inline-block;
        margin-top: 20px;
        margin-bottom: 0;
        text-align: center;
    }
}

.tw-absolute{position:absolute;}
.tw-relative{position:relative;}
.tw-left-0{left:0;}
.tw-right-0{right:0;}
.tw-z-40{z-index:40;}
.tw-m-0{margin:0;}
.tw-mx-5{margin-left:1.25rem;margin-right:1.25rem;}
.tw-ml-1\.5{margin-left:.375rem;}
.tw-block{display:block;}
.tw-flex{display:flex;}
.tw-hidden{display:none;}
.tw-h-10{height:2.5rem;}
.tw-h-16{height: 60px;}
.tw-h-4{height:1rem;}
.tw-h-5{height:1.25rem;}
.tw-h-6{height:1.5rem;}
.tw-h-full{height:100%;}
.tw-max-h-\[70vh\]{max-height:70vh;}
.tw-w-10{width:2.5rem;}
.tw-w-4{width:1rem;}
.tw-w-5{width:1.25rem;}
.tw-w-6{width:1.5rem;}
.tw-w-80{width:20rem;}
.tw-w-full{width:100%;}
.tw-min-w-\[360px\]{min-width:360px;}
.tw-max-w-\[1200px\]{max-width: 1040px;}
.tw-flex-none{flex:none;}
.tw-list-none{list-style-type:none;}
.tw-flex-col{flex-direction:column;}
.tw-items-center{align-items:center;}
.tw-justify-between{justify-content:space-between;}
.tw-gap-1\.5{gap: 0.375rem;}
.tw-gap-2\.5{gap:.625rem;}
.tw-overflow-y-auto{overflow-y:auto;}
.tw-rounded-lg{border-radius:.5rem;}
.tw-border{border-width:1px;}
.tw-border-b{border-bottom-width:1px;}
.tw-border-zinc-500{--tw-border-opacity:1;border-color:rgb(113 113 122/var(--tw-border-opacity));}
.tw-bg-rich-900{--tw-bg-opacity:1;background-color: rgb(41 43 49);}
.tw-bg-zinc-800{--tw-bg-opacity:1;background-color:rgb(39 39 42/var(--tw-bg-opacity));}
.tw-bg-opacity-90{--tw-bg-opacity:0.9;}
.tw-p-0{padding:0;}
.tw-px-2{padding-left:.5rem;padding-right:.5rem;}
.tw-px-4{padding-left:1rem;padding-right:1rem;}
.tw-px-5{padding-left:1.25rem;padding-right:1.25rem;}
.tw-py-2\.5{padding-bottom:.625rem;padding-top:.625rem;}
.tw-py-5{padding-bottom:1.25rem;padding-top:1.25rem;}
.tw-pb-2\.5{padding-bottom:.625rem;}
.tw-pt-2{padding-top:.5rem;}
.tw-font-title{font-family: Inter,sans-serif;}
.tw-text-base{font-size: 14px;line-height:1.5rem;}
.tw-text-xs{font-size:.75rem;line-height:1rem;}
.tw-font-normal{font-weight:400;}
.tw-leading-none{line-height:1;}
.tw-text-sky-300{--tw-text-opacity:1;color:rgb(125 211 252/var(--tw-text-opacity));}
.tw-text-white{--tw-text-opacity:1;color: rgb(255 255 255);}
.tw-shadow-lg{box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow);}
.tw-shadow-lg{--tw-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);}
.tw-backdrop-blur-lg{--tw-backdrop-blur:blur(16px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);}
.tw-transition{transition-duration:.15s;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,-webkit-filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);}
.hover\:tw-bg-zinc-800:hover{--tw-bg-opacity:1;background-color: rgb(89 94 104 / 13%);}
.hover\:tw-text-sky-300:hover{--tw-text-opacity:1;color:rgb(125 211 252/var(--tw-text-opacity));}
.hover\:tw-text-sky-400:hover{--tw-text-opacity:1;color:rgb(56 189 248/var(--tw-text-opacity));}
.tw-group:hover .group-hover\:tw-block{display:block;}
@media (min-width:640px){
.sm\:tw-block{display:block;}
.sm\:tw-flex{display:flex;}
.sm\:tw-hidden{display:none;}
}
@media (min-width:768px){
.md\:tw-block{display:block;}
.md\:tw-hidden{display:none;}
}
@media (min-width:1024px){
.lg\:tw-block{display:block;}
.lg\:tw-hidden{display:none;}
}
*,:after,:before{/* background-repeat:no-repeat; *//* box-sizing:inherit; */}
:after,:before{/* text-decoration:inherit; */it; *//* vertical-align:inherit; */}
*{margin:0;padding:0;}
header{display:block;}
@media print{
*,:after,:before{background:transparent!important;box-shadow:none!important;color:#000!important;text-shadow:none!important;}
a,a:visited{text-decoration:underline;}
a[href]:after{content:" (" attr(href) ")";}
}
ul{margin-bottom:11px;margin-top:0;}
ul ul{margin-bottom:0;}
.header{position:relative;border-bottom: 1px solid #3f4146;}
.mx-auto{margin-left:auto!important;}
.mx-auto{margin-right:auto!important;}
a:hover{cursor:pointer;}
*::selection {background:#fedc80;color: #111;}
.topbar {height: 315px;background: url(https://steamuserimages-a.akamaihd.net/ugc/97222190034163949/C97C04C5889019DBD8A4FDAB161875AD7A5815A0/?imw=512&amp;imh=299&amp;ima=fit&amp;impolicy=Letterbox&amp;imcolor=%23000000&amp;letterbox=true) #ffffff;background-repeat: no-repeat;background-position-y: 66%;background-position-x: 0%;background-size: cover;background-blend-mode: luminosity;}
        .topbarh1 {color: #ffffff;position: relative;display: flow;top: 50px;font-weight: 700;}
        .topbarspan {color: #4f4f4f;position: relative;display: flow;text-align: justify;top: 70px;width: auto;max-width: 70%;}
		
		.banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    background: url(https://moretheme.ru/templates/MorethemeDLE/images/help.png) no-repeat scroll 50% 50% #25272b;
    background-position: 115%;
    background-size: 155px;
    background-position-y: 30px;
    border-radius: 4px !important;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    margin-top: -30px;
    flex-direction: column;
    padding: 15px;
    height: 175px;
}
.banner span.body-2 {
  max-width: 136px;
}
.banner .social {
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 16px;
  margin-top: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner .social a {
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.informer{
    background: #8360f0f5;
    display: block;
    font-family: 'Unbounded';
    height: 60px;
    overflow: hidden;
    position: fixed;
    color: #fff;
    text-decoration: none;
    top: -1px;
    transition: height .2s, background .1s;
    width: 100%;
    z-index: 101;
    }
.informer:hover{background: #8360f0;}
@media screen and (max-width:1024px){
.informer{background:background: #353535e6;border-radius:8px;height:46px;left:9px;position:fixed;width:calc(100% - 18px);z-index:102;}
}
.informer__content{align-items:center;display:flex;justify-content:center;margin:auto;max-width:1305px;padding:8px 0;pointer-events:none;position:relative;width:100%;}
@media screen and (max-width:1024px){
.informer__content{padding:2px 0 2px 12px;}
}
.informer__content_outer{height:100%;left:50%;position:absolute;top:0;transform:translateX(-50%);}
.informer__icon{align-items:center;background:var(--c-informer-bg-icon);border-radius:10px;display:flex;height:44px;justify-content:center;margin-right:22px;min-width:44px;width:44px;}
@media screen and (max-width:1024px){
.informer__icon{height:40px;margin-right:14px;min-width:40px;width:40px;}
}
.informer__title{color:#fff;font-size:14px;line-height:17px;opacity:.5;}
@media screen and (max-width:1024px){
.informer__title{-webkit-box-orient:vertical;-webkit-line-clamp:2;display:-webkit-box;overflow:hidden;padding-right:58px;}
}
.informer__close{align-items:center;background:none;border:0;border-radius:0;color:var(--c-informer-bg-icon);cursor:pointer;display:flex;height:100%;justify-content:center;outline:none;pointer-events:auto;position:absolute;right:0;top:0;width:60px;}
@media screen and (max-width:1024px){
.informer__close{height:100%;width:52px;}
}

    .quick-view {position: absolute;z-index: 10;background: rgb(28 28 28);width: 100%;color: rgb(255, 255, 255);text-align: center;line-height: 30px;bottom: -1px;display: none;font-size: 14px;cursor: pointer;border-bottom-left-radius: 4px;border-bottom-right-radius: 4px;}
.fix-sect_item:hover .quick-view { display: block; }
.fix-sect_bg:hover .quick-view { display: block; }

    .modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Sit on top */
     /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
     /* Fallback color */
    background-color: rgb(0 0 0 / 81%); /* Black w/ opacity */
}


.modal-content {
    position: relative;
    background-color: #3a3a3f;
    margin: auto;
    padding: 0;
    top: 30%;
    border-radius: 8px;
    width: 800px;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}


@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}


.closeModal {
    color: #6b6b6b;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.closeModal:hover,
.closeModal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 10px 15px;
    background-color: #3a3a3f;
    color: #dfdfdf;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.modal-body {padding: 0px 15px 20px 15px;color: #dfdfdf;}

.modal-footer {
    padding: 10px 15px;
    background-color: #ffffff;
    color: #333333;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .wdp-video-meta-row-module__wrapper {
    align-items: normal;
    display: flex;
    flex-flow: row nowrap;
    gap: 8px;
    justify-content: space-between;
    padding: 8px 0;
    position: relative
}

@media screen and (min-width: 768px) {
    .wdp-video-meta-row-module__wrapper {
        align-items:center
    }
}

@media screen and (min-width: 1440px) {
    .wdp-video-meta-row-module__wrapper {
        height:52px;
    }
}

@media screen and (max-width: 1439.9px) {
    .wdp-video-meta-row-module__wrapper {
        align-items:flex-start;
        flex-direction: column-reverse;
        gap: 16px;
        height: 100px
    }
}

@media screen and (max-width: 1023.9px) {
    .wdp-video-meta-row-module__wrapper {
        height:84px
    }
}

@media screen and (max-width: 767.9px) {
    .wdp-video-meta-row-module__wrapper {
        gap:8px;
        height: 76px;
        padding: 16px 0 0
    }
}

.wdp-video-meta-row-module__left {
    flex-grow: 1
}

@media screen and (max-width: 1439.9px) {
    .wdp-video-meta-row-module__left {
        display:flex
    }
}

@media screen and (max-width: 767.9px) {
    .wdp-video-meta-row-module__left {
        flex-grow:0;
        height: 20px
    }
}

.wdp-video-meta-row-module__right {
    display: flex
}

@media screen and (max-width: 1439.9px) {
    .wdp-video-meta-row-module__right {
        justify-content:space-between;
        width: 100%
    }
}

@media screen and (max-width: 767.9px) {
    .wdp-video-meta-row-module__right {
        --ms-overflow-style:none;
        flex-shrink: 0;
        overflow-x: auto;
        overscroll-behavior: contain;
        scrollbar-width: none
    }

    .wdp-video-meta-row-module__right::-webkit-scrollbar {
        display: none
    }
}

.wdp-video-meta-row-module__countPublishContainer {
    align-items: center;
    display: flex
}

.wdp-video-meta-row-module__countPublishContainer>:not(:last-child) {
    margin-right: 8px
}

.wdp-video-meta-row-module__countPublishContainer .wdp-video-meta-row-module__rating {
    border-color: var(--pen-secondary1000);
    color: var(--pen-secondary100);
    font-weight: 600
}

.wdp-video-meta-row-module__viewsCount {
    align-items: center;
    display: flex
}

.wdp-video-meta-row-module__text {
    color: var(--pen-secondary100);
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media screen and (max-width: 767.9px) {
    .wdp-video-meta-row-module__text {
        font-size:11px;
        font-weight: 400;
        line-height: 16px
    }
}

.wdp-video-meta-row-module__text a {
    color: var(--pen-secondary201)
}

.wdp-video-meta-row-module__separator {
    background-color: var(--pen-secondary201);
    border-radius: 50%;
    height: 4px;
    width: 4px
}

.wdp-video-meta-row-module__divider {
    border-bottom: 1px solid #a8b4c41a;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    width: 100%
}

@media screen and (max-width: 767.9px) {
    .wdp-video-meta-row-module__divider {
        display:none
    }
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar {
    align-items: center;
    display: flex;
    height: 72px;
    justify-content: space-between;
    position: relative
}

@media screen and (max-width: 767.9px) {
    .wdp-video-options-row-module__wdpVideoOptionsRow__toolbar {
        align-items:flex-start;
        flex-direction: column;
        height: auto
    }

    .wdp-video-options-row-module__wdpVideoOptionsRow__toolbar_wrap {
        flex-wrap: wrap
    }
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-left {
    align-items: center;
    display: flex;
    gap: 12px;
    overflow: hidden
}

@media screen and (max-width: 767.9px) {
    .wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-left {
        flex-wrap:wrap;
        gap: 16px;
        overflow: visible;
        padding-top: 16px;
        position: relative;
        width: 100%
    }
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-left_narrow_divider {
    border-bottom: 1px solid var(--pen-menu-promo-bg);
    content: "";
    left: calc(var(--wdpPageInfoContainerPadding)*-1);
    position: absolute;
    top: 0;
    width: calc(100% + var(--wdpPageInfoContainerPadding)*2)
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-left_author-wrapper {
    display: contents
}

@media screen and (max-width: 1279.9px) {
    .wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-left_author-wrapper {
        display:block;
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%
    }
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right {
    display: flex;
    gap: 12px;
    justify-content: safe flex-end
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right::-webkit-scrollbar {
    height: 0
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right::-webkit-scrollbar-thumb {
    background: var(--pen-secondary600)
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right::-webkit-scrollbar {
    width: 0
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right::-webkit-scrollbar-track {
    background: transparent;
    opacity: 0
}

.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right::-webkit-scrollbar-thumb,.wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right:hover::-webkit-scrollbar-thumb {
    background: transparent
}

@media screen and (max-width: 767.9px) {
    .wdp-video-options-row-module__wdpVideoOptionsRow__toolbar-right {
        flex-direction:column;
        gap: 16px;
        justify-content: space-between;
        margin: 16px 0;
        width: 100%
    }
}

.wdp-video-options-row-module__wdpVideoOptionsRow__divider {
    border-bottom: 1px solid var(--pen-menu-promo-bg);
    bottom: 0;
    content: "";
    left: calc(var(--wdpPageInfoContainerPadding)*-1);
    position: absolute;
    width: calc(100% + var(--wdpPageInfoContainerPadding)*2)
}

@media screen and (min-width: 768px) {
    .wdp-video-options-row-module__wdpVideoOptionsRow__divider {
        display:none
    }
}
    
    .wdp-video-like-dislike-reactions-module__wrapper {
    color: var(--pen-secondary201);
    display: flex;
    gap: 24px;
    margin-right: 32px
}

@media screen and (min-width: 768px) {
    .wdp-video-like-dislike-reactions-module__wrapper {
        gap:16px
    }
}

@media screen and (max-width: 767.9px) {
    .wdp-video-like-dislike-reactions-module__wrapper {
        margin-right:24px
    }
}

.wdp-video-like-dislike-reactions-module__wrapper .wdp-video-like-dislike-reactions-module__reaction {
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    gap: 4px;
    justify-content: center;
    padding: 0
}

.wdp-video-like-dislike-reactions-module__wrapper .wdp-video-like-dislike-reactions-module__reaction .wdp-video-like-dislike-reactions-module__counter {
    min-width: 8px
}
.wdp-video-row-actions-module__WdpVideoRowActions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    position: relative
}

.wdp-video-row-actions-module__WdpVideoRowActions__right {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: flex-start
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-module__WdpVideoRowActions__right {
        gap:24px
    }
}

.wdp-video-row-actions-module__WdpVideoRowActionsMoreList {
    background: var(--pen-secondary700);
    border-radius: 6px;
    overflow: hidden
}

.wdp-video-row-actions-module__WdpVideoRowActionsMoreListIcon,.wdp-video-row-actions-module__WdpVideoRowActionsMoreListIcon:hover {
    color: var(--pen-secondary50)
}

.wdp-video-row-actions-module__topButton {
    justify-content: center;
    order: 1;
    width: 77px
}

.wdp-video-row-actions-module__watchLaterButton {
    order: 2
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-module__watchLaterButton {
        order:3
    }
}

.wdp-video-row-actions-module__shareButton {
    order: 3
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-module__shareButton {
        order:2
    }
}

.wdp-video-row-actions-module__complaintButton {
    order: 4
}

.wdp-video-row-actions-module__copyrightButton {
    order: 5
}

.wdp-video-row-actions-module__narrowOnly {
    display: none
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-module__narrowOnly {
        display:contents
    }
}

.wdp-video-row-actions-module__notNarrow {
    display: contents
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-module__notNarrow {
        display:none
    }
}
    .wdp-video-row-actions-button-module__wdpVideoRowActionsButton {
    align-items: center;
    background: none;
    background-repeat: no-repeat;
    border: none;
    color: #a8b4c4;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    flex-shrink: 0;
    height: 32px;
    outline: none;
    overflow: hidden;
    padding: 0 8px
}

.wdp-video-row-actions-button-module__wdpVideoRowActionsButton:active,.wdp-video-row-actions-button-module__wdpVideoRowActionsButton:hover {
    background: #a8b4c417;
}

@media screen and (max-width: 767.9px) {
    .wdp-video-row-actions-button-module__wdpVideoRowActionsButton {
        padding:0
    }

    .wdp-video-row-actions-button-module__wdpVideoRowActionsButton:active,.wdp-video-row-actions-button-module__wdpVideoRowActionsButton:hover {
        background: none
    }
}

.wdp-video-row-actions-button-module__wdpVideoRowActionsButton__description {
    color: var(--pen-secondary201);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    margin-left: 4px
}

.wdp-video-row-actions-module__WdpVideoRowActions {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: flex-end;
    position: relative
}

.styles_button__7TBXL{cursor:pointer;display:flex;align-items:center;justify-content:center;padding:18px 24px;border-radius:10px;overflow:hidden;border:none;position:relative;outline:none;transition:all .3s ease-in-out;}
.styles_button__7TBXL:hover:not(:disabled){cursor:pointer;filter:var(--hover-effect);}
.styles_button__7TBXL:disabled{cursor:not-allowed;opacity:.4;}
.styles_button__7TBXL .styles_button__content__Hr6zZ{display:grid;grid-auto-flow:column;align-items:center;grid-gap:10px;font-weight:700;font-size:16px;white-space:nowrap;text-overflow:ellipsis;}
.styles_control__y15L9{display:flex;align-items:center;justify-content:center;transition:all .3s linear;border:none;position:relative;outline:none;overflow:hidden;}
.styles_control__y15L9.styles_color--autumn-gradient__6EumY{color:#fff;background:var(--color-autumn-gradient);}
.styles_control__y15L9.styles_size--large__Sc9Hn{--control-size:50px;height:var(--control-size);min-height:var(--control-size);padding:0 10px;border-radius:var(--border-radius-md);}
@media (min-width:425px){
.styles_control__y15L9.styles_size--large__Sc9Hn{padding:0 14px;}
}
@media (min-width:768px){
.styles_control__y15L9.styles_size--large__Sc9Hn{--control-size:64px;padding:0 20px;}
}
@media (min-width:1440px){
.styles_control__y15L9.styles_size--large__Sc9Hn{--control-size:64px;padding:0 24px;}
}
.styles_control__y15L9:disabled{cursor:not-allowed;opacity:.4;}
.styles_control__y15L9.styles_full-width__BOwdd{width:100%;}
.styles_text__OlAkW{font-weight:500;padding:0;margin:0;}
.styles_text__OlAkW.styles_bold__nhebz{font-weight:700;}
.styles_text__OlAkW.styles_uppercase__iz9x_{text-transform:uppercase;}
.styles_text__OlAkW.styles_color--white__52Lkh{color:var(--color-white);}
.styles_text__OlAkW.styles_variant--h4___QEn8{font-weight:500;font-size:1rem;line-height:1.25rem;}
.styles_text__OlAkW.styles_variant--h4___QEn8.styles_bold__nhebz{font-weight:700;}
.styles_icon__1IAKk{transition:fill .3s ease-in-out;}

.styles_container__MyFaq .styles_eventBanner__wrapper__pVeiW{position:relative;max-width:2060px;width:100%;height:350px;margin:0 auto;padding:0;}
@media (min-width:1024px){
.styles_container__MyFaq .styles_eventBanner__wrapper__pVeiW{height:400px;}
}
@media (min-width:1440px){
.styles_container__MyFaq .styles_eventBanner__wrapper__pVeiW{height:720px;}
}
.styles_event__banner__mtYxA{width:100%;height:100%;position:relative;display:grid;grid-template-columns:1fr;overflow:hidden;}
@media (min-width:1024px){
.styles_event__banner__mtYxA{display:grid;grid-template-columns:55% 1fr;background-size:cover;}
}
.styles_event__banner__mtYxA .styles_event__background__FFXyG{position:absolute;left:0;top:0;width:100%;height:100%;background-repeat:no-repeat;background-position:50%;background-size:cover;}
@media (min-width:1440px){
.styles_event__banner__mtYxA .styles_event__background__FFXyG{height:722px;}
}
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D{position:relative;display:flex;align-items:center;justify-content:center;flex-direction:column;height:100%;}
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_eventLogo__wrapper__cK7sC{width:100%;height:100%;pointer-events:none;max-height:220px;}
@media (min-width:550px){
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_eventLogo__wrapper__cK7sC{max-height:250px;}
}
@media (min-width:1024px){
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_eventLogo__wrapper__cK7sC{max-width:390px;max-height:200px;}
}
@media (min-width:1440px){
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_eventLogo__wrapper__cK7sC{max-width:659px;max-height:486px;}
}
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_eventLogo__wrapper__cK7sC .styles_event__logo__B_28q{background-repeat:no-repeat;background-position:50%;background-size:contain;width:100%;height:100%;}
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_event__controls__vMvwG{padding:10px 0;margin-top:0;}
@media (min-width:768px){
.styles_event__banner__mtYxA .styles_event__banner__content__qrk6D .styles_event__controls__vMvwG{width:176px;}
}
          .timer__items {
  display: flex;
  font-size: 48px;
}
.timer__item {
  position: relative;
  min-width: 60px;
  margin-left: 10px;
  margin-right: 10px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 26px;
}
.timer__item::before {
  content: attr(data-title);
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-size: 14px;
}
.timer__item:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: -15px;
}  

.card-balance{background: url(/images/card.png);margin-bottom: 10px;width: 300px;height: 193px;background-repeat: no-repeat;filter: invert(1);background-size: contain;}
p.top-balance-a{color:#FFF;font-family:Unbounded;font-size:12px;font-style:normal;font-weight:400;opacity:0.54;line-height:normal;}
p.top-balance-b{color:#FFF;font-family:Unbounded;font-size:28px;font-style:normal;font-weight:600;line-height:38px;letter-spacing:-0.42px;}
.bottom-balance-a{color:#FFF;font-family:Unbounded;font-size:9px;font-style:normal;font-weight:700;display:flex;gap:8px;line-height:normal;letter-spacing:0.5px;}
p.bottom-balance-a-2{color:#a2bf08;}
.bottom-balance-b{display:flex;font-size:16px;font-style:normal;font-weight:600;line-height:normal;letter-spacing:0.5px;align-items:center;color:white;gap:7px;}
.border-card{display:flex;flex-direction:column;justify-content:space-between;height:100%;padding:18px;}
.bottom-balance{display:grid;gap:5px;justify-items:start;}
.bottom-balance-b{margin-left:-4px;}
.top-balance{display:grid;gap:4px;}

/* START TOOLTIP STYLES */
[tooltip] {
  position: relative; /* opinion 1 */
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
  text-transform: none; /* opinion 2 */
  font-size: 12px; /* opinion 3 */
  line-height: 1;
  user-select: none;
  pointer-events: none;
  position: absolute;
  display: none;
  opacity: 0;
}
[tooltip]::before {
}
[tooltip]::after {
  content: attr(tooltip); /* magic! */
  
  /* most of the rest of this is opinion */
  font-family: Inter;
  text-align: center;
  
  /* 
    Let the content set the size of the tooltips 
    but this will also keep them from being obnoxious
    */
  min-width: 3em;
  max-width: 36em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1ch 1.5ch;
  border-radius: 6px;
  box-shadow: 0 1em 2em -.5em rgba(0, 0, 0, 0.35);
  background: #393b41;
  color: #fff;
  z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
  display: block;
}

/* don't show empty tooltips */
[tooltip='']::before,
[tooltip='']::after {
  display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^="up"]::before {
  bottom: 30px;
  border-bottom-width: 0;
  /* border-top-color: #36383e; */
}
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::after {
  bottom: calc(100% + 10px);
}
[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^="up"]::before,
[tooltip][flow^="up"]::after {
  left: 50%;
  transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^="down"]::before {
  top: 100%;
  border-top-width: 0;
  border-bottom-color: #333;
}
[tooltip][flow^="down"]::after {
  top: calc(100% + 5px);
}
[tooltip][flow^="down"]::before,
[tooltip][flow^="down"]::after {
  left: 50%;
  transform: translate(-50%, .5em);
}

/* FLOW: LEFT */
[tooltip][flow^="left"]::before {
  top: 50%;
  border-right-width: 0;
  border-left-color: #333;
  left: calc(0em - 5px);
  transform: translate(-.5em, -50%);
}
[tooltip][flow^="left"]::after {
  top: 50%;
  right: calc(100% + 5px);
  transform: translate(-.5em, -50%);
}

/* FLOW: RIGHT */
[tooltip][flow^="right"]::before {
  top: 50%;
  border-left-width: 0;
  border-right-color: #333;
  right: calc(0em - 5px);
  transform: translate(.5em, -50%);
}
[tooltip][flow^="right"]::after {
  top: 50%;
  left: calc(100% + 5px);
  transform: translate(.5em, -50%);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
  to {
    opacity: .9;
    transform: translate(-50%, 0);
  }
}

@keyframes tooltips-horz {
  to {
    opacity: .9;
    transform: translate(0, -50%);
  }
}

/* FX All The Things */ 
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^="up"]:hover::before,
[tooltip][flow^="up"]:hover::after,
[tooltip][flow^="down"]:hover::before,
[tooltip][flow^="down"]:hover::after {
  animation: tooltips-vert 300ms ease-out forwards;
}

[tooltip][flow^="left"]:hover::before,
[tooltip][flow^="left"]:hover::after,
[tooltip][flow^="right"]:hover::before,
[tooltip][flow^="right"]:hover::after {
  animation: tooltips-horz 300ms ease-out forwards;
}

.filter-block, .filter-block * {box-sizing: border-box; margin: 0; padding: 0; outline: none;}
.filter-block {padding: 20px;background-color: #292b31;color: #dfdfdf;font-size: 14px;border-radius: 12px;font-family: Inter;}
.filter-block__form {display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); grid-gap: 20px 20px;}
.filter-block__cell--full-width {grid-column: 1 / -1;}
.filter-block__cell-caption {margin-bottom: 10px;}
.filter-block__cell-content > * {width: 100%; display: block;}
.filter-block__cell-content--two-columns {display: flex;justify-content: space-between;gap: 15px;}
.filter-block__cell-content--two-columns > * {width: calc((100% - 10px)/2);}
.filter-block__cell-content select, .filter-block__cell-content input[type="text"] {
	height: 45px;
	line-height: 40px;
	background: #393b41;
	color: #dfdfdf;
	border: 1px solid #3f4146;
	border-radius: 8px;
	box-shadow: none;
	font-size: 14px;
	font-family: 'Inter' !important;
	padding: 0 10px;
	}
.filter-block__cell-content select {padding: 0 8px;}
.filter-block__cell-content input[type="text"]::placeholder {opacity: 1; color: #000; font-size: 14px;}
.filter-block__cell-content input[type="text"]:focus::placeholder {opacity: 0;}
.filter-block__cell-content label {position: relative; padding-left: 50px; cursor: pointer; 
	height: 40px; display: flex; flex-direction: column; justify-content: center;}
.filter-block__cell-content label input {
	display: inline-block;
	appearance: none;
	-webkit-appearance: none;
	height: 20px;
	width: 40px;
	border-radius: 10px;
	background-color: #eee;
	cursor: pointer;
	transition: all .2s linear;
	box-shadow: inset 0 2px 5px rgba(0,0,0,0.1);
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -10px;
	border: 0px;
	}
.filter-block__cell-content label input::before {content: ''; width: 18px; height: 18px; border-radius: 10px; 
	position: absolute; left: 1px; top: 1px; background-color: #fff; transition: all .2s linear;}
.filter-block__cell-content label input:checked {background-color: #6ab04c;}
.filter-block__cell-content label input:checked::before {left: 19px;border-radius: 90px;width: 17px;height: 17px;border: 0px;top: -1px;}
.filter-block__cell-content input[type="button"], .filter-block__cell-content button {cursor: pointer; 
	height: 40px; display: inline-flex; justify-content: center; padding: 0 10px; box-shadow: none; border-radius: 0; 
	font-size: 12px; text-transform: uppercase; font-weight: 700; background: #6ab04c; color: #fff;}
.filter-block__cell-content input[type="button"][data-dlefilter="reset"] {background: #535c68; color: #fff;}

    .adv:hover .prewive {
    display: block;
    background: #393b41;
    cursor: pointer;
    left: -25px;
    top: -35px;
    border-radius: 8px;
}

.adv .prewive {
    display: none;
    position: absolute;
    padding: 15px;
    width: 275px;
    border-radius: 3px;
    transition: all 0.2s;
    height: auto;
    z-index: 3;
    box-sizing: border-box;
}

.advtitle {margin-top: 10px;font-size: 14px;font-weight: bold;font-family: 'Unbounded';}
.advshort {margin-top: 5px;font-size: 12px;}
.advbottom {margin-top: 10px;display: flex;gap: 15px;justify-content: center;align-items: center;font-size:12px;}
.advver {background: #25272b;padding: 4px 10px;border-radius: 4px;}

.unityhub-container {
  background-color: #1a1a1beb;
  color: #fff;
  text-align: center;
  padding: 20px;
  backdrop-filter: blur(1px);
}

.unityhub-container:before {
    background: #865bee;
    border-radius: 399px;
    content: "";
    filter: blur(100px);
    width: 60%;
    height: 50%;
    left: 50%;
    mix-blend-mode: overlay;
    position: absolute;
    top: 0px;
    z-index: -2;
    transform: translate(-50%)
    }

.unityhub-users {
  margin-bottom: 30px;
}

.unityhub-users-count {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  color: #ddd;
}

.unityhub-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.unityhub-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ccc;
  margin: 0 5px;
  border: 2px solid #121212;
}

.unityhub-reviews-button {
  display: inline-block;
  padding: 8px 15px;
  background-color: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.unityhub-reviews-button:hover {
  background-color: #27ae60;
}

.unityhub-ecosystem {
  padding: 20px;
}

.unityhub-ecosystem-title {
  font-size: 47px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}

.unityhub-ecosystem-description {
  font-size: 16px;
  color: #ddd;
  line-height: 1.4;
}

.unityhub-joystick {
    display: inline-block;
    font-size: 43px;
    vertical-align: middle;
}

@media (max-width: 768px) {
  .unityhub-ecosystem-title {
    font-size: 24px;
  }

  .unityhub-ecosystem-description {
    font-size: 15px;
  }

  .unityhub-avatar {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 576px) {
  .unityhub-ecosystem-title {
    font-size: 20px;
  }

  .unityhub-ecosystem-description {
    font-size: 14px;
  }
}

.advantages-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 20px;
    max-width: 1100px;
    margin: 0 auto;
    background: #1a1a1b;
}

.advantage-card {
    background-color: #292b3100;
    border-radius: 10px;
    padding: 20px;
    backdrop-filter: blur(21px);
    border: 1px solid #3f4146;
    text-align: center;
    width: 300px;
    margin: 10px;
    box-sizing: border-box;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.advantage-card img {
    max-width: 50px;
    margin: 0 auto 10px;
}

.advantage-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.advantage-description {
    font-size: 14px;
    color: #ddd;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .advantage-card {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .advantage-card {
        width: 100%;
    }
}

.unityhub-donate-container {
    background-color: #28282b;
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
}

.unityhub-donate-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.unityhub-donate-title {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.unityhub-donate-title img {
    width: 20px;
    margin-right: 5px;
}

.unityhub-donate-header a {
    color: #999;
    text-decoration: none;
}

.unityhub-donate-description {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.unityhub-asset-icons {
    display: flex;
    overflow-x: auto;
    padding-bottom: 10px;
}

.unityhub-asset-icon {
    text-align: center;
    margin: 0 5px;
    flex: 0 0 auto;
    width: 100px;
}

.unityhub-asset-icon img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-bottom: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.unityhub-asset-icon span {
    display: block;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.unityhub-donate-arrows {
    display: none;
}

.unityhub-donate-arrows {
    display: flex;
    align-items: center;
}

.unityhub-donate-arrows button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.unityhub-donate-arrows button:hover {
    opacity: 1;
}

@media (min-width: 768px) {
    .unityhub-asset-icons {
        overflow-x: hidden;
        justify-content: space-between;
    }

    .unityhub-asset-icon {
        width: auto;
    }
    .unityhub-donate-arrows {
        display: flex;
    }
}

.accordion {
    width: 100%;
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s all;
    }

 
    .accordion-header {
    /* background-color: #141414; */
    padding: 17px 0px;
    cursor: pointer;
    border-bottom: 1px solid #212121;
    position: relative;
    user-select: none;
    font-size: 16px;
    transition: 0.3s all;
    }

    .accordion-header:hover {
      background-color: #1a1a1a;
    }

    
    .accordion-content {
    padding: 25px 30px;
    display: none;
    background-color: #1a1a1a;
    transition: height 0.3s ease;
    }

   
    .accordion-content.active {
      display: block; 
    }

   
    .accordion-header::after {
      content: '\25B6';
      font-size: 16px;
      position: absolute;
      right: 15px;
      top: 50%;
      color: #865bee;
      transform: translateY(-50%);
      transition: transform 0.3s ease;
    }

   
    .accordion-header.active::after {
      transform: translateY(-50%) rotate(90deg); 
    }
	
	.unityhub-reviews-container {
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.unityhub-reviews-title {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.unityhub-reviews-title img {
    width: 20px;
    margin-right: 5px;
}

.unityhub-reviews-slider {
    display: flex;
    animation: scrollReviews 20s linear infinite;
    padding-bottom: 10px;
    transition: animation-play-state 0.3s ease;
}

.unityhub-reviews-container:hover .unityhub-reviews-slider {
    animation-play-state: paused;
}

.unityhub-reviews-card {
    background-color: #28282b;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    width: 250px;
    margin: 0 10px;
    flex: 0 0 auto;
    box-sizing: border-box;
}

.unityhub-reviews-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.unityhub-reviews-card-header span {
    font-size: 14px;
    font-weight: bold;
    margin-right: 5px;
}

.unityhub-reviews-stars {
    color: #ffc107;
    font-size: 12px;
}

.unityhub-reviews-card-details {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.unityhub-reviews-card-comment {
    font-size: 14px;
    line-height: 1.3;
}

.unityhub-reviews-fade-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to right, #18181b, transparent);
    pointer-events: none;
}

.unityhub-reviews-fade-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: linear-gradient(to left, #18181b, transparent);
    pointer-events: none;
}

@keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-260px * 4)); } /* Учитываем 4 карточки */
}

@media (max-width: 768px) {
    .unityhub-reviews-card {
        width: 200px;
    }
    @keyframes scrollReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-210px * 4)); } /* Учитываем 4 карточки */
}
}