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

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: var(--light);
    color: var(--text);
    border-radius: 5px;
    z-index: 8;
}

.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;
}

.header-search_voice {
    background: var(--color1);
    color: var(--text);
    border-radius: 5px;
    opacity: 1;
}

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

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

@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: 300px;
    height: inherit;
    line-height: inherit;
    color: #fff;
    font-weight: 400;
}

.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: 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 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;
}

#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;
}

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

.header-user > img {
    display: block;
    border: 2px solid var(--color1);
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
}

.user_menu {
    position: absolute;
    background: var(--bg2);
    color: var(--text);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    padding: 15px;
    border-radius: 5px;
    width: 220px;
    top: 50px;
    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-bottom: 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: 5px;
    padding: 8px;
    font-weight: 400;
}

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

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

/* LOGIN */
.user-login {
    position: fixed;
    display: none;
    min-width: 450px;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    background: var(--bg2);
    box-shadow: 0 0 0 5000px rgb(0 0 0 / 80%);
    color: var(--text-color);
    padding: 40px 80px;
    border-radius: 20px;
    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 var(--light2);
}

.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: #000;
    color: #fff;
    border-radius: 8px;
    padding: 15px 30px;
    margin-left: 20px;
    font-size: 16px;
}

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

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

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

.user-login_soc a {
    display: inline-block;
    background: transparent;
    border: 1px solid rgb(0 0 0 / 10%);
    box-shadow: 0 3px 14px 0 rgb(0 0 0 / 3%);
    border-radius: 50px;
    width: 40px;
    height: 40px;
    line-height: 55px;
    text-align: center;
}

.user-login_soc a:hover {
    background: var(--bg2);
}

.user-login_close {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg);
    border-radius: 10px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    cursor: pointer;
}

/* FIX RECOMM */
.fix-recom {
    position: relative;
    background: var(--bg2);
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.fix-recom_head {
    background: var(--light);
    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: #fff;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    color: #000;
    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: 30%;
}

@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: var(--color1);
}

.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 var(--bg2);
    box-shadow: 0 0 0 1px var(--light), 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
    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: #ff6702;
}

/* 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-right: 30px;
}

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

/* FIX MENU */
.fix-menu {
    display: flex;
    align-items: center;
    background: var(--bg2);
    border-radius: 5px;
    margin-top: 30px;
    font-weight: 400;
}

.fix-menu > a, .fix-menu_sub, .fix-menu_sub > a {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 5px;
    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: var(--color1);
}

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

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

.fix-menu_sub > div {
    position: absolute;
    display: flex;
    flex-wrap: wrap;
    background: var(--bg3);
    color: var(--text);
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    padding: 30px;
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    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: var(--bg3);
    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;
    flex-basis: 30%;
    font-size: 14px;
    font-weight: 400;
    color: inherit;
}

@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,#a869f0 0%,#834cc2 100%);
    box-shadow: 0 0 20px rgb(168 105 240 / 41%);
    border-radius: 5px;
    margin-right: 20px;
}

.fix-sect_head i:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color2);
    border: 5px var(--bg) 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(140px,1fr));
}

.fix-sect_item {
    position: relative;
    padding-top: 3px;
}

.fix-sect_bg {
    position: relative;
    display: inline-block;
    border: 1px solid var(--bg2);
    box-shadow: 0 0 0 1px var(--light), 0 2px 8px rgb(0 0 0 / 5%);
    border-radius: 5px;
    width: 100%;
    height: 230px;
    margin-bottom: 10px;
    transition: 0.3s;
}

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

.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;
}

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

.fix-sect.fix-seo.container a {
    color: #0ca5ff;
}

.fix-sect.fix-seo.container a:hover {
    color: var(--color2);
}

.fix-sect_name {
    font-size: 25px;
    font-weight: 600;
}

.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: 3px;
    left: 100%;
    width: 420px;
    min-height: 80px;
    background: var(--bg2);
    padding: 20px 30px;
    border-radius: 5px;
    box-shadow: 0 2px 15px rgb(61 61 61 / 8%);
    margin-left: 10px;
    z-index: 8;
}

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

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

.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 solid var(--dark);
}

.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-desc_name {
    font-size: 22px;
    font-weight: 600; 
}

/* 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: var(--bg2);
    padding: 15px;
    border-radius: 5px;
    counter-reset: toc1;
}

.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: 30px;
}

.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_title p {
    font-size: 14px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.4;
}

.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: 10px;
    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 .name-comment {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

.lastcomm-content p, .lastcomm-content ol {
    font-size: 14px;
    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: 5px;
    height: 150px;
    overflow: hidden;
}

.fix-podb_item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg3) -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: 5px;
    object-fit: cover;
    transition: 0.3s;
    overflow: hidden;
}

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

.fix-podb_content span {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

/* FIX FULL */
.fix-full {
    align-items: flex-start;
    background: var(--bg2);
    padding: 10px;
    border-radius: 5px;
    margin: 30px 0;
}

@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: 0.8;
}

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

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

.fix-full_links a.favmod {
    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, .favmod.active .favmod-unset {
    display: inline-block;
}

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

.fix-full_tags a {
    display: inline-block;
    background: var(--light);
    padding: 5px 10px;
    border-radius: 5px;
    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 .header-news {
    margin: 20px 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
}

.milkanews-content .header-news: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: 360px;
    height: 200px;
    object-fit: cover;
    margin-right: 30px;
    border-radius: 10px;
    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: 250px;
        margin-right: 0;
    }
}

.milkanews-item:hover img {
    transform: scale(1.05);
}

/* 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;
}

/* FRANCH */
.franch-item {
    position: relative;
    background: var(--light);
    padding: 15px 25px 15px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.franch-item_poster {
    width: 45px;
    height: 70px;
    border-radius: 5px;
    overflow: hidden;
}

.franch-item_content {
    margin-left: 15px;
}

.franch-item_content h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.franch-item_meta span {
    opacity: 0.5;
    font-size: 12px;
}

.franch-item_meta span:first-child:after {
    content: "|";
    margin-left: 5px;
    margin-right: 5px;
}

.franch-item_rating {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px;
    border-radius: 0 10px 0 10px;
    font-size: 10px;
}

/* UNIQUE STYLES */
.info-center {
  margin: 0 auto;
  display: block;
}

/* FOOTER */
footer {
    background: var(--bg2);
    padding: 30px 0;
}

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

.footer-logo {
}

@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: 14px;
    font-weight: 300;
    margin-top: 10px;
    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;
    }
}