.cld-button {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-right: 12px;
    color: inherit;
}

.cld-button img {
    width: 16px;
    vertical-align: middle;
    margin-right: 4px;
}

.cld-common-wrap {
    border-radius: 4px;
}

.light .cld-common-wrap {
    background: rgba(0, 0, 0, 0.05);
}

.cld-common-wrap:hover {
    background: rgba(255, 255, 255, 0.1);
}

.anime-notify-trigger {
    position: absolute;
    right: -5px;
    bottom: -5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    border: 2px solid #d0d50f;
    background-color: #d0d50f;
    color: #1c1f1c;
    cursor: pointer;
    z-index: 3;
}

.anime-notify-trigger svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.anime-notify-trigger:hover {
    filter: brightness(0.96);
}

.anime-notify-push-source {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    border: 0;
}

.anime-notify-modal {
    position: fixed;
    inset: 0;
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: linear-gradient(180deg, rgba(10, 15, 12, 0.58), rgba(10, 15, 12, 0.82));
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.anime-notify-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.anime-notify-dialog {
    width: min(430px, 100%);
    border-radius: 18px;
    border: 1px solid #5d6958;
    background: radial-gradient(120% 180% at 20% 10%, #394438 0%, #2f352f 45%, #252a25 100%);
    box-shadow: 0 24px 60px #0000008a;
    padding: 18px 16px 14px;
    transform: translateY(8px) scale(0.98);
    transition: transform 0.2s ease;
    position: relative;
}

.anime-notify-modal.is-open .anime-notify-dialog {
    transform: translateY(0) scale(1);
}

.light .anime-notify-dialog {
    background: radial-gradient(120% 180% at 20% 10%, #f3f9d8 0%, #eaf3c8 46%, #ddeab2 100%);
    border-color: #acce0d;
}

.anime-notify-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222722;
    color: #dce5d4;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.light .anime-notify-close {
    background: #d8e9a7;
    color: #4f5b39;
}

.anime-notify-title {
    margin: 0;
    padding-right: 34px;
    font-size: 20px;
    line-height: 1.2;
    color: #f2f7eb;
}

.light .anime-notify-title {
    color: #35411f;
}

.anime-notify-subtitle {
    margin: 8px 0 14px;
    color: #b8c2b4;
    font-size: 13px;
    line-height: 1.45;
}

.light .anime-notify-subtitle {
    color: #627249;
}

.anime-notify-actions {
    display: grid;
    gap: 10px;
}

.anime-notify-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #e9f0e9;
    font-size: 14px;
    margin-bottom: 10px;
    cursor: pointer;
}


.anime-notify-checkbox {
    width: 16px;
    height: 16px;
    accent-color: #d0d50f;
}

.anime-notify-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid #4f5a4f;
    background: #3a433a;
    color: #e9f0e9;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
}

.anime-notify-option svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex: 0 0 18px;
}

.anime-notify-option:hover {
    text-decoration: none;
    filter: brightness(1.06);
}

.anime-notify-option_tg {
    background: #2b5278;
    border-color: #2f5b86;
    color: #fff;
}

.anime-notify-option_tg.is-subscribed {
    background: #3e7a52;
    border-color: #4c9a64;
}

.site-notice {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 2600;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-notice.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-notice__inner {
    margin: 0 auto;
    max-width: 760px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #5f6a5f;
    background: #2d342d;
    color: #d8dfd2;
    box-shadow: 0 10px 28px #0000007d;
}

.site-notice__text {
    margin: 0;
    font-size: 13px;
    line-height: 1.4;
    flex: 1;
}

.site-notice__btn {
    min-width: 96px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #4f5f4f;
    background: #3f5b3f;
    color: #edf3e8;
    font-weight: 500;
    cursor: pointer;
}

.site-notice__btn:hover {
    filter: brightness(1.06);
}

.light .site-notice__inner {
    background: #eef5cd;
    color: #40502a;
    border-color: #accf62;
    box-shadow: 0 10px 28px #7f8c5b5e;
}

.light .site-notice__btn {
    background: #98bc1f;
    border-color: #8ab015;
    color: #ffffff;
}

.chrome-install {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 2601;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.chrome-install.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chrome-install__dialog {
    width: min(420px, calc(100vw - 20px));
    border-radius: 14px;
    border: 1px solid #5f6a5f;
    background: #2d342d;
    box-shadow: 0 12px 34px #0000008f;
    padding: 14px;
}

.chrome-install__head {
    display: flex;
    gap: 12px;
    align-items: center;
}

.chrome-install__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #d7dfd0;
    flex: 0 0 48px;
}

.chrome-install__title {
    margin: 0;
    color: #edf3e8;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
}

.chrome-install__subtitle {
    margin: 4px 0 0;
    color: #bfc8b8;
    font-size: 12px;
    line-height: 1.35;
}

.chrome-install__actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-top: 14px;
}

.chrome-install__btn {
    min-width: 96px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #4f5f4f;
    font-weight: 500;
    cursor: pointer;
}

.chrome-install__btn_ghost {
    background: transparent;
    color: #d8dfd2;
}

.chrome-install__btn_primary {
    background: #3f5b3f;
    color: #edf3e8;
}

.chrome-install__btn:hover {
    filter: brightness(1.06);
}

.light .chrome-install__dialog {
    background: #eef5cd;
    border-color: #accf62;
    box-shadow: 0 10px 28px #7f8c5b5e;
}

.light .chrome-install__title {
    color: #40502a;
}

.light .chrome-install__subtitle {
    color: #5d6d42;
}

.light .chrome-install__btn_ghost {
    border-color: #aac771;
    color: #40502a;
    background: #dfe9bf;
}

.light .chrome-install__btn_primary {
    background: #98bc1f;
    border-color: #8ab015;
    color: #ffffff;
}

.light .anime-notify-option {
    background: #d8e6b0;
    border-color: #acce0d;
    color: #3f452f;
}

.light .anime-notify-option_tg {
    background: #4a80b6;
    border-color: #4a80b6;
    color: #fff;
}

.light .anime-notify-option_tg.is-subscribed {
    background: #5a9d4d;
    border-color: #5a9d4d;
}

.light .anime-notify-check-row {
    color: #3f452f;
}

body.anime-notify-open {
    overflow: hidden;
}

@media screen and (max-width: 800px) {
    .anime-notify-trigger {
        width: 34px;
        height: 34px;
        right: -6px;
        bottom: -6px;
    }

    .anime-notify-trigger svg {
        width: 16px;
        height: 16px;
    }

    .anime-notify-modal {
        align-items: flex-end;
        padding: 10px;
    }

    .anime-notify-dialog {
        width: 100%;
        border-radius: 16px;
        padding: 16px 14px 12px;
    }

    .anime-notify-title {
        font-size: 18px;
    }

    .site-notice {
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .site-notice__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .site-notice__btn {
        width: 100%;
    }

    .chrome-install {
        left: 10px;
        right: 10px;
        bottom: calc(10px + env(safe-area-inset-bottom));
    }

    .chrome-install__dialog {
        width: 100%;
    }

    .chrome-install__actions {
        justify-content: stretch;
    }

    .chrome-install__btn {
        width: 100%;
    }
}

.mass_comments_action {
    display: none;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    overflow-y: scroll;
}

@supports (scrollbar-gutter: stable) {
    html {
        overflow-y: auto;
        scrollbar-gutter: stable;
    }
}

body {
    min-height: calc(100vh + 10px);
    background-color: #fff;
    color: #cdcdd3;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    margin: 0;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.dark {
    background-color: #1f1f1f;
    background-image: url(../images/background.webp?v=1);
}

body.light {
    background-color: #fff;
    background-image: url(../images/background_white.webp?v=1);
}

a {
    color: #fff;
    text-decoration: none;
}

.light a {
    color: #5f762f;
}

a:hover {
    text-decoration: underline;
}

.center {
    text-align: center;
}

.lower {
    text-transform: lowercase;
}

.my-15 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.hide {
    display: none;
}

hr {
    border-top: 1px solid #5c675e;
    width: 100%;
    margin: 10px 0;
}

.light hr {
    border-top: 1px solid #5c675e;
    border-top: 1px solid #ACCE0D;
}

.adv-block {
    padding: 10px 10px 0;
    background: #1f1f1f;
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
}

.light .adv-block {
    background: #fff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
}

.header {
    background: #1c341c;
    background: -moz-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #1c341c), color-stop(100%, #334633));
    background: -webkit-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -o-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: -ms-linear-gradient(top, #1c341c 0%, #334633 100%);
    background: linear-gradient(to bottom, #1c341c 0%, #334633 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c341c', endColorstr='#334633', GradientType=0);
    border-bottom: 1px solid #515b3b;
}

.light .header {
    background: #9bc76c;
    background: -moz-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9bc76c), color-stop(100%, #c3e062));
    background: -webkit-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -o-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: -ms-linear-gradient(top, #9bc76c 0%, #c3e062 100%);
    background: linear-gradient(to bottom, #9bc76c 0%, #c3e062 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9bc76c', endColorstr='#c3e062', GradientType=0);
    border-bottom: 1px solid #9dc86c;
}

.header__inner {
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 2px;
}

.header__moon {
    background: url(../images/moon.png?v=1) no-repeat;
    background-size: contain;
    width: 66px;
    height: 67px;
    cursor: pointer;
    transition: all 1s;
}

.header__moon:hover {
    background: url(../images/moon_white.png?v=1) no-repeat;
    background-size: contain;
}

.light .header__moon:hover {
    background: url(../images/moon_dark.png?v=1) no-repeat;
    background-size: contain;
}

.header__menu {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: flex-end;
    height: 45px;
    align-items: center;
}

.header__menu_visible {
    display: flex !important;
}

.header__menu li {
    width: 92px;
    text-align: center;
}

.header__menu a,
.header__menu span {
    color: #b0c0b2;
    text-transform: uppercase;
    position: relative;
    z-index: 3;
}

.light .header__menu a,
.header__menu span {
    color: #617c42;
}

.header__menu-sub-menu-button {
    position: relative;
}

.header__menu-sub-menu-button::before {
    position: absolute;
    top: -27px;
    left: 0;
    width: 92px;
    height: 90px;
    content: '';
    background: url(../images/nav-bg.png?v=1) no-repeat;
    z-index: 3;
}

.light .header__menu-sub-menu-button::before {
    background: url(../images/nav-bg_white.png?v=1) no-repeat;
}

.header__sub-menu {
    position: absolute;
    top: 45px;
    left: -5px;
    background: rgb(31 31 31 / 77%);
    box-shadow: 1px 1px 5px #535f53;
    z-index: 2;
    padding: 36px;
    list-style-type: none;
    flex-wrap: wrap;
    gap: 10px;
    width: 622px;
    justify-content: flex-start;
    display: none;
    border-radius: 0 0 10px 10px;
    backdrop-filter: blur(5px);
}

.light .header__sub-menu {
    background: rgb(255 255 255 / 77%);
    box-shadow: 1px 1px 5px #BDDC62;
}

.header__sub-menu li {
    width: 130px;
}

.header__sub-menu a {
    text-transform: none;
}

.header__menu-sub-menu-button:hover .header__sub-menu {
    display: flex;
}

.header__mobile-menu-button {
    display: none;
    width: 40px;
    height: 34px;
    border: 0;
    padding: 0;
    appearance: none;
    background: #212722 url(../images/mobile-menu.svg?v=1) center no-repeat;
    background-size: 25px;
    border-radius: 5px;
    box-shadow: 1px 1px 0px 0px #1f1f1f, inset 1px 1px 1px #606661;
    cursor: pointer;
}

.light .header__mobile-menu-button {
    box-shadow: 1px 1px 0px 0px #95ad65, inset 1px 1px 1px #fff;
    background-color: #d9f1a7;
}

.logo {
    margin: 25px 0;
}

.logo__link {
    background: url(../images/logo.webp?v=1) no-repeat;
    background-size: contain;
    width: 346px;
    height: 116px;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.light .logo__link {
    background: url(../images/logo_white.png?v=1) no-repeat;
    background-size: contain;
}

.main__inner {
    max-width: 1020px;
    margin: 0 auto;
}

.main__title {
    width: 100%;
    text-align: center;
    font-weight: bold;
}

.content__header {
    max-width: 1020px;
    width: 100%;
    height: 75px;
    margin: 0 auto;
    border-radius: 10px;
    position: relative;
    padding: 0 45px;
    box-sizing: border-box;
    background: #334633;
    background: -moz-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #334633), color-stop(100%, #1c341c));
    background: -webkit-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -o-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: -ms-linear-gradient(top, #334633 0%, #1c341c 100%);
    background: linear-gradient(to bottom, #334633 0%, #1c341c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#334633', endColorstr='#1c341c', GradientType=0);
    box-shadow: 2px 2px 3px 0 #394439;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    z-index: 1;
}

.light .content__header {
    background: #c6e262;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2M2ZTI2MiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM5NWMzNjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #c6e262), color-stop(100%, #95c361));
    background: -webkit-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -o-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: -ms-linear-gradient(top, #c6e262 0%, #95c361 100%);
    background: linear-gradient(to bottom, #c6e262 0%, #95c361 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c6e262', endColorstr='#95c361', GradientType=0);
    box-shadow: 2px 2px 3px 0 #bbd487;
}

.content__login-button {
    display: flex;
    flex-direction: column;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font: 10px / 1 Arial;
    position: relative;
    background-color: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    color: #bee6c3;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.light .content__login-button {
    color: #5d7637;
    background-color: #d9f1a7;
    box-shadow: 1px 1px 0 0 #95ad65, inset 1px 1px 1px #fff;
}

.content__login-button:active {
    position: relative;
    top: 1px;
}

.content__login-button::before {
    width: 35px;
    height: 35px;
    position: absolute;
    right: -18px;
    bottom: 0;
    content: '';
    border-radius: 50%;
    box-shadow: 0 0 1px 1px #4f5e33;
    background: #394129;
    background: -moz-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #394129), color-stop(100%, #585f4b));
    background: -webkit-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -o-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: -ms-linear-gradient(top, #394129 0%, #585f4b 100%);
    background: linear-gradient(to bottom, #394129 0%, #585f4b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#394129', endColorstr='#585f4b', GradientType=0);
    z-index: -1;
}

.light .content__login-button::before {
    box-shadow: 0 0 1px 1px #9ab865;
    background: #adc879;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2FkYzg3OSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiMmNjN2MiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #adc879), color-stop(100%, #b2cc7c));
    background: -webkit-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -o-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: -ms-linear-gradient(top, #adc879 0%, #b2cc7c 100%);
    background: linear-gradient(to bottom, #adc879 0%, #b2cc7c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#adc879', endColorstr='#b2cc7c', GradientType=0);
}

.content__login-button span:first-child {
    font-size: 18px;
}

.content__search {
    flex-grow: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.search {
    flex-grow: 1;
    width: 100%;
    height: 35px;
    border: 1px solid #a0b771;
    border-radius: 10px;
    padding: 0 25px;
    font: 16px / 1.3 Verdana;
    border-color: #7c817e;
    background: #2e332f;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #606661;
    color: #b0c0b2;
}

.light .search {
    border: 1px solid #a0b771;
    background: #d9f1a7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q5ZjFhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkOWYxYTciIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d9f1a7), color-stop(100%, #d9f1a7));
    background: -webkit-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -o-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: -ms-linear-gradient(top, #d9f1a7 0%, #d9f1a7 100%);
    background: linear-gradient(to bottom, #d9f1a7 0%, #d9f1a7 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d9f1a7', endColorstr='#d9f1a7', GradientType=0);
    box-shadow: 1px 1px 1px #96ad65, inset 1px 1px 1px #fff;
    color: #5f5f5f;
}

.search-button {
    width: 94px;
    height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    float: right;
    color: #b0c0b2;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e', GradientType=0);
}

.light .search-button {
    box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7efa7', endColorstr='#a7c071', GradientType=0);
    border: 1px solid #8ea65c;
    color: #5d7637;
}

.content__socials {
    list-style-type: none;
    display: flex;
    gap: 10px;
}

.content__socials li a {
    width: 46px;
    height: 46px;
    display: flex;
    background: #212722;
    box-shadow: 1px 1px 0 0 #1f1f1f, inset 1px 1px 1px #606661;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.light .content__socials li a {
    box-shadow: 1px 1px 0 0 #95ad65, inset 1px 1px 1px #fff;
    background: #d9f1a7;
}

.content__socials li a:active {
    position: relative;
    top: 1px;
}

.content__socials li a img {
    width: 26px;
    height: 26px;
}

.content__nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: #212722 url(../images/mobile-menu.svg?v=1) center no-repeat;
    background-size: 25px;
    border-radius: 25px;
    box-shadow: 1px 1px 0px 0px #1f1f1f, inset 1px 1px 1px #606661;
    cursor: pointer;
}

.light .content__nav-toggle {
    box-shadow: 1px 1px 0px 0px #95ad65, inset 1px 1px 1px #fff;
    background-color: #d9f1a7;
}

.content__data {
    max-width: 1010px;
    width: 100%;
    margin: 0 auto;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    gap: 10px;
}

.light .content__data {
    background-color: #fff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
    color: #333;
}

#fullsearch {
    width: 100%;
}

.search-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.search__form {
    display: flex;
    gap: 10px;
}

#searchinput {
    width: 100%;
    padding: 5px 10px;
    background: #2e332f;
    color: #b0c0b2;
    border: 1px solid #505b50;
    border-radius: 10px;
}

#searchinput::placeholder {
    color: #8fa48f;
    opacity: 1;
}

.light #searchinput {
    background: #d9f1a7;
    color: #2f3b24;
    border: 1px solid #a0b771;
}

.light #searchinput::placeholder {
    color: #4b5a35;
    opacity: 1;
}

.search__button {
    background: #343b25;
    color: #b0c0a4;
    border: 1px solid #505b50;
    padding: 5px 10px;
    cursor: pointer;
}

.searchpage .box_in {
    border-radius: 14px;
    border: 1px solid #4f5c4f;
    background: linear-gradient(180deg, #3a413c 0%, #313832 100%);
    box-shadow: inset 0 1px 0 #5e6b5e, 0 10px 22px #00000030;
    padding: 14px;
    margin: 0 0 25px 0;
}

.searchpage .title {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #ebf2e8;
}

.searchpage__hint {
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #cfd9ca;
}

.searchpage__body {
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.searchpage .searchtable,
.searchpage #fullsearch,
.searchpage .search-block {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.searchpage .search_result_num {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
}

.searchpage__result {
    font-size: 15px;
    line-height: 1.35;
    color: #d4dfcf;
    margin-bottom: 10px;
}

.searchpage__form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.searchpage__form input[type="text"],
.searchpage__form input[type="search"],
.searchpage__form #searchinput,
.searchpage__form .search {
    height: 48px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.2;
    padding: 10px 16px;
    background: #2d342f;
    border: 1px solid #566656;
    color: #e5ece2;
    box-shadow: inset 0 1px 0 #4d5d4d;
    flex: 1;
}

.searchpage__form .search-button,
.searchpage__form #dosearch {
    width: 128px;
    min-width: 128px;
    height: 48px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
}

.light .searchpage .box_in {
    border-color: #b8ce8a;
    background: linear-gradient(180deg, #eef6d5 0%, #e7f1cb 100%);
    box-shadow: inset 0 1px 0 #ffffff, 0 12px 24px #9eb16a3b;
}

.light .searchpage .title {
    color: #40502a;
}

.light .searchpage__hint {
    color: #596b3c;
}

.light .searchpage__result {
    color: #4d5f36;
}

.light .searchpage__form input[type="text"],
.light .searchpage__form input[type="search"],
.light .searchpage__form #searchinput,
.light .searchpage__form .search {
    background: #f4f9e7;
    border-color: #aeca6f;
    color: #3c4a2a;
    box-shadow: inset 0 1px 0 #ffffff;
}

@media screen and (max-width: 900px) {
    .searchpage .box_in {
        padding: 12px;
    }

    .searchpage .title {
        font-size: 22px;
    }

    .searchpage__hint {
        font-size: 14px;
    }

    .searchpage__result {
        font-size: 14px;
    }
}

@media screen and (max-width: 700px) {
    .searchpage .title {
        font-size: 21px;
    }

    .searchpage__hint,
    .searchpage__result {
        font-size: 13px;
    }

    .searchpage__form input[type="text"],
    .searchpage__form input[type="search"],
    .searchpage__form #searchinput,
    .searchpage__form .search {
        height: 44px;
        padding: 10px 12px;
        font-size: 15px;
    }

    .searchpage__form {
        flex-direction: column;
        align-items: stretch;
    }

    .searchpage__form .search-button,
    .searchpage__form #dosearch {
        height: 44px;
        width: 100%;
        min-width: 0;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .searchpage .box_in {
        border-radius: 12px;
        padding: 10px;
    }

    .searchpage .title {
        font-size: 19px;
    }

    .searchpage__hint,
    .searchpage__result {
        font-size: 12px;
    }

    .searchpage__form input[type="text"],
    .searchpage__form input[type="search"],
    .searchpage__form #searchinput,
    .searchpage__form .search {
        height: 42px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .searchpage__form .search-button,
    .searchpage__form #dosearch {
        height: 42px;
        font-size: 15px;
    }
}

.sidebar {
    width: 260px;
    min-width: 260px;
}

.sidebar__block {
    border-radius: 10px;
    padding: 10px 10px;
    text-align: center;
    background: #363a37;
    box-shadow: 2px 2px 3px #535f53, inset 1px 1px 1px #535f53;
}

.light .sidebar__block {
    background: #eef5cd;
    box-shadow: 2px 2px 3px #bddc62, inset 1px 1px 1px #bddc62;
}

.sidebar__toggle {
    display: none;
    width: 100%;
    margin-bottom: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    background: #363a37;
    color: #b6b6bd;
    border: 1px solid #505b50;
    font-size: 16px;
    cursor: pointer;
}

.light .sidebar__toggle {
    background: #eef5cd;
    color: #4f4f4f;
    border: 1px solid #c2df6e;
}

.sidebar__title {
    font-size: 18px;
    border-bottom: 1px solid #8ca38f;
    text-align: center;
    padding: 10px 0;
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
}

.sidebar__title span {
    color: #accaa6;
}

.light .sidebar__title span {
    color: #81a834;
}

.sidebar__menu {
    display: flex;
    list-style-type: none;
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
}

.sidebar__menu li {
    width: 100%;
    text-align: left;
}

.sidebar__menu a {
    color: #b6b6bd;
    display: block;
    padding: 3px;
    padding-left: 25px;
    border-radius: 15px;
}

.light .sidebar__menu a {
    color: #4f4f4f;
}

.sidebar__menu a:hover {
    color: #1f1f1f;
    background: #889b88;
    text-decoration: none;
}

.light .sidebar__menu a:hover {
    color: #fff;
    background: #98bc1f;
}

.sidebar__menu-line {
    padding: 0 5px 10px 20px;
}

.sidebar__menu-line::before {
    content: '';
    display: block;
    border-bottom: 1px solid #5c675e;
    padding: 5px;
    padding-left: 20px;
}

.light .sidebar__menu-line::before {
    border-bottom: 1px solid #c5d18c;
}

.content__main {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.main__description {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    border-bottom: 1px solid #5c675e;
    padding-bottom: 30px;
}

.main__description-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.main__description-text li {
    list-style-type: circle;
    margin-left: 20px;
}

.main__description-text li::marker {
    color: #f17d00;
    font-size: 20px;
}

.main__description-footer {
    width: 100%;
    max-width: 1010px;
    margin: 0 auto;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.light .main__description-footer {
    background-color: #ffffff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
}

.main__description-footer .main__description-text {
    background: #492e32;
    padding: 10px;
    border-radius: 10px;
}

.light .main__description-footer .main__description-text {
    background: #d9efc9;
    color: #505050;
}

.next-series {
    width: 100%;
    border-bottom: 1px solid #acce0d;
    padding: 14px 0 6px;
    margin-bottom: 20px;
}

.next-series__title {
    text-align: center;
    margin: 0 0 30px;
    font-size: 15px;
    line-height: 1.1;
    font-family: inherit;
    color: #2f2f2f;
    font-weight: 700;
}

.next-list {
    width: 100%;
    max-width: none;
    margin: 0;
}

.next-list::after {
    content: "";
    display: block;
    clear: both;
}

.next-card {
    position: relative;
    width: 50%;
    float: left;
    padding-right: 20px;
    max-width: 330px;
    margin-bottom: 28px;
    margin-left: 10px;
}

.next-card__link {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 8px 12px 8px 75px;
    border-radius: 0 12px 12px 0;
    background: #eef5cd;
    border: 1px solid #acce0d;
    color: #2c2c2c;
    overflow: visible;
}

.next-card__link:hover {
    text-decoration: none;
    opacity: .96;
}

.next-card__cover {
    position: absolute;
    left: -15px;
    top: -11px;
    flex: 0 0 84px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #acce0d;
    overflow: hidden;
    background: #fff;
}

.next-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-card__watched {
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 31px;
    opacity: 0;
    transition: opacity .3s ease;
    background: url('/templates/school/images/anime_next_mark_watched.png') top no-repeat;
}

.next-card__content {
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 260px;
    height: 100%;
    position: relative;
}

.next-card__title {
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #cdcdd4;
    font-family: Verdana;
}

.light .next-card__title {
    color: #2c2c2c;
}

.next-card__episode {
    margin-top: 10px;
    font-size: 14px;
    color: #9c9ca6;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.light .next-card__episode {
    color: #5b5b5b;
}

body:not(.light) .next-series {
    border-top-color: #5c675e;
    border-bottom-color: #5c675e;
}

body:not(.light) .next-series__title {
    color: #d3d4dc;
}

body:not(.light) .next-card__link {
    background: #3a3f3a;
    border-color: #5e6a60;
    color: #d6d7de;
}

body:not(.light) .next-card__cover {
    border-color: #8ca38f;
}

body:not(.light) .next-card__episode {
    color: #bcbcc3;
}

@media only screen and (max-width: 990px) and (min-width: 801px) {
    .next-list {
        text-align: center;
    }

    .next-card {
        width: 100%;
        min-width: 0;
        max-width: 540px;
        float: none;
        display: inline-block;
        padding-right: 10px;
        text-align: left;
    }
}

@media only screen and (max-width: 690px) {
    .next-list {
        text-align: center;
    }

    .next-card {
        width: 100%;
        min-width: 0;
        max-width: none;
        float: none;
        display: inline-block;
        padding-right: 10px;
        text-align: left;
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 691px) {
    .next-list>.next-card:nth-child(even) {
        padding-right: 0;
        padding-left: 20px;
    }
}

.content__title {
    width: 100%;
    background: #363a37;
    border: 1px solid #505b50;
    margin-top: -10px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.light .content__title {
    background: #eef5cd;
    border: 1px solid #c2df6e;
}

.content__title h1 {
    font-weight: normal;
    color: #7b8254;
    font-size: 20px;
}

.content__item {
    display: flex;
    flex-direction: column;
    background: #492e32;
    margin-top: 100px;
    border-bottom-left-radius: 93px 15px;
    border-bottom-right-radius: 93px 15px;
    gap: 10px;
    align-items: center;
    padding-bottom: 15px;
    width: 200px;
}

.content__item-items {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    counter-reset: n;
}

.content__item {
    position: relative;
}

.content__item-itemsnumber .content__item:before {
    content: counter(n);
    counter-increment: n;
    position: absolute;
    top: -28px;
    left: 50%;
    background: rgba(255, 255, 255, .8);
    color: #111;
    width: 50px;
    height: 50px;
    border-radius: 555px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 0 -25px;
    font-size: 20px;
    font-weight: 700;
}

.content__item.active:before {
    background: #492e32;
    color: #fff;
}

.light .content__item.active:before {
    background: #d9efc9;
    color: #111;
}



.light .content__item {
    background: #d9efc9;
}

.content__item:hover {
    text-decoration: none;
}

.content__item-poster {
    border-radius: 50%;
    overflow: hidden;
    width: 200px;
    height: 200px;
    margin-top: -50%;
}

.content__item-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content__item-title {
    font-size: 18px;
    color: #ececf2;
    padding: 0 10px;
    text-align: center;
    margin: 0;
    font-weight: 400;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.light .content__item-title {
    color: #2c2c2c;
}

.content__item-series {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #c0c0c9;
    align-items: flex-end;
    width: 100%;
    padding: 10px;
    line-height: 1.3;
}

.light .content__item-series {
    color: #5b5b5b;
}

.content__item-info {
    width: 22px;
    height: 22px;
    background: #1f1f1f8a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    align-self: flex-start;
    margin-left: 10px;
    margin-top: -40px;
    transition: all .25s;
    position: relative;
}

.light .content__item-info {
    background: #f0ffe5;
    color: #93ad95;
}

.content__item-info::before {
    content: 'i';
}

.content__item-info:hover {
    background: #1f1f1f;
}

.light .content__item-info:hover {
    background: #fff;
}

.content__item-info-hidden {
    display: none;
    flex-direction: column;
    gap: 10px;
    background: #1f1f1f;
    padding: 5px;
    border: 2px solid #505b50;
    font-size: 12px;
    left: 25px;
    width: 300px;
    position: absolute;
    font-weight: normal;
    z-index: 1;
}

.light .content__item-info-hidden {
    background: #fff;
    border: 2px solid #d4d9d4;
    color: #454545;
}

.content__item-info:hover .content__item-info-hidden {
    display: flex;
}

.info-hidden__titles {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-hidden__title {
    font-size: 18px;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination span,
.pagination a {
    background: #363a37;
    color: #b6b6bd;
    padding: 10px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

.light .pagination span,
.light .pagination a {
    background: #d9efc9;
    color: #333;
}

.pagination span,
.pagination a:hover {
    color: #d9d9d9;
    text-decoration: none;
    background: #492e32;
}

.light .pagination span,
.light .pagination a:hover {
    color: #fff;
    background: #98bc1f;
}

.full {
    width: 100%;
}

.full__title {
    position: relative;
    display: flex;
    background: #363a37;
    padding: 20px;
    border-top: 1px solid #666b66;
    border-bottom: 1px solid #666b66;
    border-radius: 35px 10px 10px 10px;
    justify-content: center;
}

.light .full__title {
    background: #eef5cd;
    border-top: 1px solid #acce0d;
    border-bottom: 1px solid #acce0d;
}

.full__poster {
    border-radius: 50%;
    width: 90px;
    height: 90px;
    position: absolute;
    top: -10px;
    left: -5px;
    border: 2px solid rgba(102, 107, 102, 0.8);
}

.full__poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.full__title h1 {
    padding-left: 80px;
    padding-right: 12px;
    font-size: 20px;
    font-family: Verdana;
    font-weight: 500;
}

.full__rating {
    position: absolute;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 1;
    top: -3px;
    right: -5px;
    background: #3f3f3f;
    padding: 7px;
    border-radius: 5px;
}

.light .full__rating {
    background: #d9dfbb;
}

.full__rating a {
    min-width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all .3s;
    padding-left: 25px;
    padding-right: 10px;
    font-size: 12px;
}

.full__rating a:first-child {
    background: #98bc1f url(../images/thumb-up.svg?v=1) 7px 7px no-repeat;
    background-size: 15px;
}

.full__rating a:last-child {
    background: #dd5161 url(../images/thumb-down.svg?v=1) 7px 7px no-repeat;
    background-size: 15px;
}

.full__rating a:first-child:hover {
    background: #7a9e1f url(../images/thumb-up.svg?v=1) 7px 7px no-repeat;
    /* ÃƒÂÃ‚ÂÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â°ÃƒÂÃ‚Â¼Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™, Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ */
    background-size: 15px;
}

.full__rating a:last-child:hover {
    background: #e7566f url(../images/thumb-down.svg?v=1) 7px 7px no-repeat;
    /* ÃƒÂÃ‚ÂÃƒÂÃ‚Âµ ÃƒÂÃ‚Â¼ÃƒÂÃ‚ÂµÃƒÂÃ‚Â½Ãƒâ€˜Ã‚ÂÃƒÂÃ‚ÂµÃƒÂÃ‚Â¼ Ãƒâ€˜Ã‚ÂÃƒÂÃ‚Â°ÃƒÂÃ‚Â¼Ãƒâ€˜Ã†â€™ ÃƒÂÃ‚Â¸ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ÃƒÂÃ‚ÂºÃƒâ€˜Ã†â€™, Ãƒâ€˜Ã¢â‚¬Å¡ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â»Ãƒâ€˜Ã…â€™ÃƒÂÃ‚ÂºÃƒÂÃ‚Â¾ Ãƒâ€˜Ã¢â‚¬Å¾ÃƒÂÃ‚Â¾ÃƒÂÃ‚Â½ */
    background-size: 15px;
}

.full__player {
    border: 5px solid #3f3f3f;
    position: relative;
}

.light .full__player {
    border: 5px solid #d9dfbb;
}

.full__player iframe {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.player_style {
    padding-top: 60%;
}

.full__data {
    background: #363a37;
    border-radius: 10px;
    font-size: 13px;
    line-height: 150%;
    padding: 10px 0 10px;
}

.light .full__data {
    background: #eef5cd;
}

.full__data a {
    color: #bee6c3;
}

.light .full__data a {
    color: #75ab0e;
}

.full__data div {
    padding: 0 15px;
}

.full__data div p {
    margin: 10px 0;
}

.full__comments {
    width: 100%;
    margin-top: -10px;
}

.full__comments h2 {
    margin: 0 0 20px;
}

.comment {
    background: #363a37;
    border-radius: 10px;
    font-size: 13px;
    line-height: 150%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.light .comment {
    background: #eef5cd;
}

.comment__top {
    display: flex;
    justify-content: space-between;
}

.comment__login {
    font-weight: bold;
}

.comment__buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.mass_comments_action {
    margin-bottom: 15px;
    text-align: right;
}

input[type="submit"] {
    height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    color: #b0c0b2;
    padding: 0 15px;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e', GradientType=0);
}

.light input[type="submit"] {
    box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7efa7', endColorstr='#a7c071', GradientType=0);
    border: 1px solid #8ea65c;
    color: #5d7637;
}

input[type="submit"]:hover {
    opacity: .8;
}

#dle-comments-form {
    background: #363a37;
    padding: 10px;
    border-radius: 10px;
}

.light #dle-comments-form {
    background: #eef5cd;
}

#comments {
    width: 100%;
    height: 130px;
    border: 1px solid #3c4c40;
    border-radius: 10px;
    padding: 5px 10px;
    font: 14px / 1.3 Verdana;
    background: #2e332f;
    color: #b0c0b2;
    margin-bottom: 10px;
    min-height: 75px;
}

.light #comments {
    color: #5f5f5f;
    border: 1px solid #a0b771;
    background: #d9f1a7;
}

.comment__input {
    width: 100%;
    border: 1px solid #3c4c40;
    border-radius: 10px;
    padding: 5px 10px;
    font: 14px / 1.3 Verdana;
    background: #2e332f;
    color: #b0c0b2;
    margin-bottom: 10px;
}

.light .comment__input {
    color: #5f5f5f;
    border: 1px solid #a0b771;
    background: #d9f1a7;
}

.ui-dialog {
    background: #1f1f1f;
    border-radius: 10px;
    padding: 10px 15px;
    box-shadow: 0 0 10px #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 4px solid #3c4c40;
    gap: 10px;
    z-index: 999999;
}

.light .ui-dialog {
    background: #eef5cd;
    color: #333;
    box-shadow: 0 0 10px #00000099;
    border: 4px solid #96c461;
}

.ui-dialog-titlebar {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.ui-button {
    height: 30px;
    border: 1px solid #4e5b33;
    border-radius: 7px;
    cursor: pointer;
    color: #b0c0b2;
    padding: 0 15px;
    box-shadow: 1px 1px 1px #1f1f1f, inset 1px 1px 1px #536038;
    background: #3d4629;
    background: -moz-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #3d4629), color-stop(100%, #272b1e));
    background: -webkit-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -o-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: -ms-linear-gradient(top, #3d4629 0%, #272b1e 100%);
    background: linear-gradient(to bottom, #3d4629 0%, #272b1e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3d4629', endColorstr='#272b1e', GradientType=0);
}

.light .ui-button {
    box-shadow: 1px 1px 1px #8fa75c, inset 1px 1px 1px #fff;
    background: #d7efa7;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Q3ZWZhNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNhN2MwNzEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d7efa7), color-stop(100%, #a7c071));
    background: -webkit-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -o-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: -ms-linear-gradient(top, #d7efa7 0%, #a7c071 100%);
    background: linear-gradient(to bottom, #d7efa7 0%, #a7c071 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d7efa7', endColorstr='#a7c071', GradientType=0);
    border: 1px solid #8ea65c;
    color: #5d7637;
}

.ui-button:hover {
    opacity: .8;
}

.ui-dialog-buttonset {
    display: flex;
    gap: 10px;
}

.ui-dialog-titlebar-close,
.light .ui-dialog-titlebar-close {
    cursor: pointer;
    width: 20px;
    height: 20px;
    background: url(../images/close.svg?v=1) no-repeat;
    background-size: contain;
    text-indent: -9999999px;
    padding: 0;
    transition: all .3s;
    border: 0;
    box-shadow: none;
}

.ui-dialog-titlebar-close:hover {
    opacity: .8;
}

.ui-dialog-title {
    font-weight: 500;
}

.ui-widget-content {
    height: auto !important;
    min-height: 38px !important;
}

.footer {
    max-width: 1010px;
    width: 100%;
    height: 94px;
    margin: 0 auto;
    background: url(../images/footer-bg.png?v=1) center no-repeat;
    background-size: cover;
    background-color: #1f1f1f;
    border-left: 3px solid #3c4c40;
    border-right: 3px solid #3c4c40;
    border-radius: 0 0 10px 10px;
    font-size: 13px;
}

.light .footer {
    background: url(../images/footer-bg_white.png?v=1) center no-repeat;
    background-size: cover;
    background-color: #fff;
    border-left: 3px solid #96c461;
    border-right: 3px solid #96c461;
    color: #4d7d41;
}

.footer__menu {
    display: flex;
    list-style-type: none;
    justify-content: center;
    gap: 20px;
    height: 94px;
    align-items: flex-end;
    padding-bottom: 12px;
}

.footer__menu a {
    color: #b0c0b2;
    transition: all .25s;
}

.light .footer__menu a {
    color: #4d7d41;
}

.footer__menu a:hover {
    text-shadow: 1px 1px 2px #000000, -1px -1px 2px #000;
}

.light .footer__menu a:hover {
    text-shadow: 1px 1px 2px #fff, -1px -1px 2px #fff;
}

/* player selection */
.tabs-block__select {
    margin: 20px 10px 10px;
    padding: 10px;
    text-align: center;
}

.tabs-block__select-item {
    background-color: #363a37;
    border-radius: 10px;
    padding: 10px 15px;
    cursor: pointer;
}

.light .tabs-block__select-item {
    background-color: #eef5cd;
    color: #676862;
}

.is-active {
    color: #1f1f1f;
    background-color: #889b88;
    text-decoration: none;
}

.light .is-active {
    color: #fff;
    background: #98bc1f;
}

.tabs-block__select-item+.tabs-block__select-item {
    margin-left: 15px;
}

.d-none {
    display: none;
}

@media screen and (max-width: 1020px) {

    body.mobile-site-nav-open,
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-site-nav-open::before,
    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1000;
    }

    .content__header {
        border-radius: 10px 10px 0 0;
        padding: 0 15px;
    }

    .content__data {
        max-width: none;
        flex-direction: column-reverse;
    }

    .sidebar {
        width: 100%;
    }

    .sidebar__block_collapsible {
        position: fixed;
        left: 0;
        top: 0;
        width: min(86vw, 430px);
        height: 100vh;
        z-index: 1002;
        border-radius: 0 12px 12px 0;
        padding: 84px 12px 20px;
        overflow-y: auto;
        transform: translateX(-105%);
        transition: transform 0.25s ease, visibility 0s linear 0.25s;
        pointer-events: none;
        visibility: hidden;
        box-shadow: 0 10px 30px #00000080;
    }

    .sidebar__block_collapsible.is-open {
        transform: translateX(0);
        transition-delay: 0s, 0s;
        pointer-events: auto;
        visibility: visible;
    }

    .sidebar__menu {
        flex-direction: column;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 6px;
    }

    .sidebar__menu li {
        width: 100%;
        text-align: left;
    }

    .sidebar__menu li.sidebar__menu-line {
        width: 100%;
    }

    .sidebar__menu a {
        border-radius: 8px;
        padding-left: 10px;
        background: #2e332f;
        padding: 8px 10px;
    }

    .light .sidebar__menu a {
        background: #a1c529;
        color: #2b351f;
        font-weight: 500;
    }
}

@media screen and (max-width: 800px) {
    body.mobile-menu-open {
        overflow: hidden;
    }

    body.mobile-menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        z-index: 1000;
    }

    .header__sub-menu {
        display: flex;
        position: static;
        flex-direction: column;
        flex-wrap: nowrap;
        padding: 6px 0 0;
        border-radius: 5px;
        width: 100%;
        margin-top: 6px;
        background: transparent;
        box-shadow: none;
        border: 0;
        gap: 0;
    }

    .light .header__sub-menu {
        background: transparent;
        box-shadow: none;
        border: 0;
    }

    .header__sub-menu li {
        width: 100% !important;
        margin-bottom: 6px;
    }

    .header__sub-menu a {
        display: block;
        padding: 8px 10px;
        border-radius: 8px;
        background: #2e332f;
        color: #b6b6bd;
    }

    .light .header__sub-menu a {
        background: #a1c529;
        color: #2b351f;
        font-weight: 500;
    }

    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        flex-direction: column;
        background: #314431;
        gap: 8px;
        height: 100dvh;
        max-height: 100dvh;
        padding: 70px 14px calc(20px + env(safe-area-inset-bottom));
        width: min(86vw, 430px);
        align-items: flex-start;
        z-index: 1001;
        border-radius: 0 12px 12px 0;
        box-shadow: 0 10px 30px #00000080;
        display: flex;
        overflow-y: auto;
        overflow-x: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        transform: translateX(-105%);
        transition: transform 0.25s ease, visibility 0s linear 0.25s;
        pointer-events: none;
        visibility: hidden;
    }

    .light .header__menu {
        background: #b4e382;
    }

    .header__menu.header__menu_visible {
        transform: translateX(0);
        transition-delay: 0s, 0s;
        pointer-events: auto;
        visibility: visible;
    }

    .header__menu-sub-menu-button::before {
        display: none;
    }

    .header__menu li {
        width: 100%;
        text-align: left;
    }

    .header__menu>li>a,
    .header__menu>li>span {
        display: block;
        width: 100%;
        padding: 8px 10px;
        border-radius: 8px;
        background: #2e332f;
        color: #b6b6bd;
    }

    .header__menu-sub-menu-button {
        background: transparent !important;
        padding: 0;
    }

    .header__menu-sub-menu-button>span {
        margin-bottom: 6px;
    }

    .light .header__menu>li>a,
    .light .header__menu>li>span {
        background: #a1c529;
        color: #2b351f;
        font-weight: 500;
    }

    .header__menu>li>a:hover,
    .header__sub-menu a:hover {
        color: #1f1f1f;
        background: #889b88;
        text-decoration: none;
    }

    .light .header__menu>li>a:hover,
    .light .header__sub-menu a:hover {
        color: #fff;
        background: #98bc1f;
    }

    .header__inner {
        justify-content: space-between;
        padding: 5px 10px;
    }

    .header__moon {
        height: 40px;
    }

    .header__mobile-menu-button {
        display: block;
    }

    .sidebar__menu li {
        width: 23%;
    }

    .sidebar__block_collapsible .sidebar__menu li {
        width: 100% !important;
    }

    .content__header {
        height: 135px;
        padding: 10px 15px;
        align-items: flex-start;
    }

    .content__search {
        width: calc(100vw - 40px);
        position: absolute;
        top: 85px;
        left: 20px;
        gap: 10px;
    }

    .content__socials {
        margin-top: 10px;
    }

    .content__nav-toggle {
        display: block;
        position: absolute;
        top: 23px;
        right: 15px;
        z-index: 3;
    }
}

@media screen and (max-width: 600px) {
    .footer {
        height: 50px;
    }

    .footer__menu {
        display: none;
    }

    .sidebar__menu li {
        width: 48%;
    }

    .sidebar__block_collapsible .sidebar__menu li {
        width: 100% !important;
    }

    .main__description {
        flex-direction: column;
    }

    .content__main {
        gap: 24px 10px;
        justify-content: space-between;
    }

    .content__item {
        width: calc(50% - 5px);
        margin-top: 78px;
        min-width: 0;
        border-bottom-left-radius: 56px 12px;
        border-bottom-right-radius: 56px 12px;
        gap: 8px;
        padding-bottom: 10px;
    }

    .content__item-poster {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        margin-top: -50%;
    }

    .content__item-title {
        font-size: 14px;
        line-height: 1.28;
        padding: 0 8px;
    }

    .content__item-series {
        font-size: 13px;
        gap: 3px;
        padding: 8px;
    }

    .content__item-info {
        margin-top: -26px;
    }

    .tabs-block__select {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .tabs-block__select-item {
        margin: 10px 20px;
    }

    .next-series {
        margin-bottom: 14px;
    }

    .next-series__title {
        font-size: 15px;
    }

    .next-card {
        margin-bottom: 25px;
        margin-left: 10px;
        padding-right: 5px;
    }

    .next-card__cover {
        width: 74px;
        height: 74px;
        top: -7px;
        left: -17px;
    }

    .next-card__link {
        min-height: 58px;
        padding: 8px 10px 8px 65px;
        border-radius: 0 10px 10px 0;
    }

    .next-card__content {
        max-width: 100%;
    }

    .next-card__title {
        font-size: 15px;
    }

    .next-card__episode {
        margin-top: 6px;
        font-size: 13px;
    }
}

@media screen and (max-width: 500px) {
    .header__sub-menu li {
        width: 100% !important;
    }
}

.comments-tree-list {
    list-style: none;
}

.comment__text {
    word-break: break-all;
}

.v_epi_nav {
    margin: 0 10px;
    margin-top: 20px;
    text-align: center;
}

.short-btn .video {
    margin-bottom: 10px;
}

.vnright {
    float: right;
}

.vnleft {
    float: left;
}

.vncenter {
    margin-top: 10px !important;
}

/*        .short-btn.black {
    background: #b2b5b8;
    color: #1f1f1f !important;
}
*/

.videoBlockWrapp {
    padding:
        /*35px*/
        20px 0;
    font: 14px/1.4 normal verdana, sans-serif;
    padding-top: 0
}

.videoBlockWrapp .video_h {
    margin-top: 10px;
    margin-bottom: 15px
}

.tittle_h {
    font-size: 15px;
    color: #c1c0c0;
    text-align: center;
    font-weight: 500
}

.header_video {
    margin: 15px 0 0;
    font-size: 15px;
    padding: 15px 10px;
    background-color: #eef5cd;
    border-top: 1px solid #acce0d;
    border-bottom: 1px solid #acce0d;
    text-align: center;
    font-weight: 600
}

.header_video.allanimevideo {
    font-family: Verdana;
    font-weight: 500;
    font-size: 20px
}

.b-b-title.the-anime-season {
    border-top: 1px solid #acce0d;
    border-bottom: 0;
    padding-top: 8px;
    margin-top: 25px !important
}

.b-b-title.the-anime-season:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0 !important;
}

.title-bottom {
    margin-bottom: auto !important;
}

.b-b-title.the-anime-season.films_title {
    border-top: 1px solid #acce0d;
    padding-top: 8px;
    margin-top: 25px !important
}

.videoContent,
.videoBlock {
    width: 100%;
    margin: 0;
    padding: 0;
}

.video-player {
    width: 100%;
    max-width: 100%;
    display: block;
}

.v_epi_nav {
    text-align: center;
    margin-top: 20px;
}

.videoBlock .video {
    margin-bottom: 10px
}

.next,
.previous {
    position: relative;
    line-height: 1;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: -2px 2px 1px #85b161;
    background: #bbe65f;
    background: -moz-linear-gradient(top, #bbe65f 0%, #98ce79 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #bbe65f), color-stop(100%, #98ce79));
    background: -webkit-linear-gradient(top, #bbe65f 0%, #98ce79 100%);
    background: -o-linear-gradient(top, #bbe65f 0%, #98ce79 100%);
    background: -ms-linear-gradient(top, #bbe65f 0%, #98ce79 100%);
    background: linear-gradient(to bottom, #bbe65f 0%, #98ce79 100%);
    transition: background ease-out .5s
}

.next:hover,
.previous:hover {
    text-decoration: none;
    background: #98ce79;
    background: -moz-linear-gradient(top, #98ce79 0%, #bbe65f 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #98ce79), color-stop(100%, #bbe65f));
    background: -webkit-linear-gradient(top, #98ce79 0%, #bbe65f 100%);
    background: -o-linear-gradient(top, #98ce79 0%, #bbe65f 100%);
    background: -ms-linear-gradient(top, #98ce79 0%, #bbe65f 100%);
    background: linear-gradient(to bottom, #98ce79 0%, #bbe65f 100%)
}

.previous {
    border-radius: 11px 5px 5px 11px;
    padding: 6px 6px 5px 26px
}

.previous:before,
.next:before {
    display: inline-block;
    width: 18px;
    height: 18px;
    content: "";
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -9px
}

.previous:before {
    left: 5px
}

.previous:after,
.next:after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px
}

.previous:after {
    left: 7px;
    border-top: 5px solid transparent;
    border-right: 10px solid #abd750;
    border-bottom: 5px solid transparent
}

.next {
    border-radius: 5px 11px 11px 5px;
    padding: 6px 26px 5px 6px
}

.next:before {
    right: 5px
}

.next:after {
    right: 8px;
    border-top: 5px solid transparent;
    border-left: 10px solid #abd750;
    border-bottom: 5px solid transparent
}

.technicBatleVideo {
    display: inline-block;
    border: 10px solid #eef5cd;
    padding: 10px 20px;
    overflow: hidden;
    text-align: left
}

.bottom_line {
    border-bottom: 1px solid #acce0d
}

.battle_series {
    margin-top: 20px
}

.battle_series p {
    color: #8ea85f;
    font-size: 14px;
    margin-bottom: 5px
}

.links_series {
    margin-top: 30px
}

.links_series p {
    color: #8ea85f;
    font-size: 14px;
    margin-bottom: 5px
}

.social_vidget {
    overflow: hidden;
    text-align: center
}

.social_vidget>div {
    display: inline-block;
    vertical-align: middle
}

.social_vidget #share42 {
    display: inline-block;
    padding: 6px 0 0 6px;
    background: #fff;
    border: none;
    border-radius: 4px
}

.social_vidget #share42:hover {
    border: none;
    background: 0 0;
    box-shadow: none
}

.videoBlock .social_vidget {
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -80px
}

.mailBlock_h {
    text-align: center
}

.mail_h {
    background: #eef5cc;
    font-weight: 400;
    font-size: 19px;
    color: #adbd5b;
    padding: 10px;
    border: 1px solid #adbd5b;
    border-top: none;
    width: 90%;
    margin: 0 auto 30px
}

.mail_h_div {
    width: 90%;
    text-align: center;
    display: inline-block;
}

.mail_h_h1 {
    background: #eef5cc;
    font-weight: 400;
    font-size: 19px;
    color: #adbd5b;
    padding: 10px;
    border: 1px solid #adbd5b;
    /*border-top: none;*/
    margin: 0 auto 30px
}



.all_anime_title .all_anime_mark_viewed_mini {
    background: url(../images/mark_anime_viewed_mini.png) no-repeat;
    background-position: 0 0;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 62px;
    left: 35px;
    opacity: .5;
    z-index: 3;
    transition: opacity ease-out .34s;
    cursor: pointer
}

.aamv_check .all_anime_title .all_anime_mark_viewed_mini {
    background-position: 0 -30px
}

@media only screen and (max-width: 990px) {
    .all_anime_title .all_anime_mark_viewed_mini {
        opacity: .5
    }
}

.all_anime_title:hover .all_anime_mark_viewed_mini {
    opacity: .7
}

.all_anime_title .all_anime_mark_viewed_mini:hover {
    opacity: .93
}

.aamv_check .all_anime_mark_viewed_star {
    display: block
}

.all_anime_title .all_anime_mark_viewed_star {
    top: -5px;
    left: 91px;
    cursor: pointer
}

.aamv_check:hover .all_anime_mark_viewed_star ul.asr_rating {
    background: url(../images/mark_anime_viewed_star.png) center
}

.all_anime .aaname {
    padding-left: 12px;
    padding-top: 5px;
    padding-right: 9px;
    color: #2c2c2c;
    font-size: 1.3em;
    text-align: center
}

.all_anime .aaname_break {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto
}

.all_anime .aailines {
    padding-top: 12px;
    text-align: right;
    padding-right: 9px;
    padding-left: 9px;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 80px;
    padding-bottom: 20px
}

.all_anime_bottom {
    width: 186px;
    height: 15px;
    background: #ffdeca;
    border-bottom-left-radius: 93px 15px;
    border-bottom-right-radius: 93px 15px
}

.all_anime_title_halfleft {
    position: absolute;
    left: -3px;
    top: -9px;
    width: 52px;
    height: 52px;
    background-color: #fff
}

.all_anime_title {
    position: absolute;
    left: -3px;
    top: -9px;
    width: 104px;
    height: 104px;
    border-radius: 30px;
    z-index: 2;
    border: 2px solid rgba(172, 206, 13, .8)
}




a.short-btn {
    color: #fff !important
}

a.short-btn:hover {
    color: #fff !important
}

.short-btn {
    font: bold 16px / 22px Helvetica, Helvetica-Neue, Arial, sans-serif !important;
    background: #98bc1f;
    color: #1f1f1f;
    font-size: 17px;
    padding: 12px 20px;
    width: auto;
    margin-bottom: 4px;
    border: none !important;
    cursor: pointer;
    display: inline-block;
    margin: 0 4px 4px 0;
    text-align: center;
    text-decoration: none !important;
    appearance: none;
    -webkit-appearance: none;
    -webkit-font-smoothing: antialiased;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 10px;
}

.short-btn.medium {
    padding: 13px 19px !important;
    font-weight: 700;
    font-size: 15px !important
}

.short-btn.large {
    font-size: 18px !important;
    padding: 17px 29px !important;
    width: auto;
    margin-bottom: 4px
}

.short-btn.video {
    font-size: 17px !important;
    padding: 10px 20px !important;
    width: auto;
    margin-bottom: 4px
}

.short-btn.round {
    padding-left: 20px !important;
    padding-right: 20px !important;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px
}

.short-btn.pink {
    background: #ffadcb
}

.short-btn.pink:hover {
    background-color: #fdccde;
    color: #e35f90 !important
}

.short-btn.blue {
    background: #72bbf0
}

.short-btn.blue:hover {
    background-color: #a1d1f3;
    color: #1089e2 !important
}

.short-btn.black {
    background: #b2b5b8;
    color: #1f1f1f !important;
}

.short-btn.black:hover {
    background: #9b9ea1;
    color: #fff !important;
}

.short-btn.yellow {
    background: #ffd900
}

.short-btn.yellow:hover {
    background-color: #fbea86;
    color: #aa5800 !important
}

.short-btn.red {
    background: #ff6163
}

.short-btn.red:hover {
    background-color: #fcc8c8;
    color: #da3a3c !important
}

.short-btn.green {
    background: #98bc1f;
}

.watch_list_item .short-btn.green {
    background: #98bc1f;
}

.short-btn.green:hover {
    background: #475e47;
    color: #fff !important
}

.light .short-btn.green {
    background: #9dc532;
}

.light .watch_list_item .short-btn.green {
    background: #9ac762
}

.light .short-btn.green:hover {
    background: #bde74c;
    color: #4c6802 !important
}

.short-btn.grey {
    background: #8d8e91
}

.short-btn.grey:hover {
    background-color: #b5b6b8;
    color: #585a5e !important
}

.short-btn.purple {
    background: #b482c9
}

.short-btn.purple:hover {
    background: #d9b1eb;
    color: #793894 !important
}

.short-btn.orange {
    background: #f5731c
}

.short-btn.orange:hover {
    background: #ffb380;
    color: #b92500 !important
}

.v_epi_nav {
    margin: 0 10px;
    margin-top: 20px;
    text-align: center
}

.v_epi_nav i {
    display: none
}

.vnright {
    float: right;
    margin: 0 0 0 5px;
}

.vnright:after {
    content: ' \2192'
}

.vnleft {
    float: left;
    margin: 0 5px 0 0;
}

.vnleft:before {
    content: '\2190  '
}

.vncenter {
    margin-top: 10px !important
}

.tabs {
    width: 100%;
    background: #c9c9c9;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.tab-buttons button {
    flex: 1;
    padding: 12px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 16px;
}

.light .tab-buttons button.active {
    background: #b2b5b8;
    border-bottom: 2px solid #bde74c;
    font-weight: bold;
}

.tab-buttons button.active {
    background: #b2b5b8;
    border-bottom: 2px solid #4d7d41;
    font-weight: bold;
}

.tab-content {
    display: none;
}

@media (min-width: 1024px) {
    .tab-content {
        display: none;
    }
}

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

#myPlayer {
    display: block;
    width: 100% !important;
    height: 400px !important;
}

@media (max-width: 590px) {
    #myPlayer {
        display: block;
        width: 100% !important;
        height: 300px !important;
    }
}

@media (max-width: 470px) {
    #myPlayer {
        display: block;
        width: 100% !important;
        height: 250px !important;
    }
}

.tab-buttons button {
    color: #3b3d40;
    text-decoration: none;
}

.player-tabs__header {
    display: flex;
    justify-content: flex-end;
    gap: 5px;
}

.light .player-tabs__button {
    padding: 5px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    background: #eee;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 10px 10px 0 0;
}

.player-tabs__button {
    padding: 5px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    background: #323232;
    position: relative;
    color: #a8a8b1;
    border-radius: 10px 10px 0 0;
}

.light .player-tabs__button {
    background: #e8ecd6;
    color: #8f8f8f;
}

.player-tabs__button:hover {
    color: #fff;
}

.light .player-tabs__button:hover {
    color: #454545;
}

.player-tabs__button.is-active {
    color: #fff;
    background: #3f3f3f;
    font-weight: bold;
    padding: 5px 20px;
}

.light .player-tabs__button.is-active {
    background: #d9dfbb;
    color: #454545;
}

.player-tabs__content {
    display: none;
}

.player-tabs__content.is-active {
    display: block;
}

.age_rating_18 {
    background: #000;
    border-radius: 4px;
    padding: 3px 2px;
    color: #f6f6fa;
}

.ser-g-title {
    font-size: 18px;
    padding: 10px;
    margin: 10px;
    font-weight: 400;
    border-top: 1px solid #acce0d;
}

.ser-g-title:first-of-type {
    border: 0;
}

.ksep-episodes-browser {
    margin: 6px 0 10px;
    padding: 8px 6px 6px;
}

.ksep-episodes-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 4px 0px 16px;
    justify-content: space-between;
}

.ksep-episodes-skeleton {
    display: grid;
    gap: 10px;
    margin: 6px 10px 16px;
}

.ksep-episodes-skeleton-line {
    position: relative;
    overflow: hidden;
    height: 42px;
    border-radius: 10px;
    background: #333833;
}

.ksep-episodes-skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.14) 50%, rgba(255, 255, 255, 0) 100%);
    animation: ksepSkeletonPulse 1.2s linear infinite;
}

.light .ksep-episodes-skeleton-line {
    background: #e4edbd;
}

.light .ksep-episodes-skeleton-line::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.45) 50%, rgba(255, 255, 255, 0) 100%);
}

@keyframes ksepSkeletonPulse {
    100% {
        transform: translateX(100%);
    }
}

.ksep-episodes-search,
.ksep-episodes-sort {
    border: 1px solid #acce0d;
    border-radius: 10px;
    background-color: #2f332f;
    color: #e9e9e9;
    min-height: 40px;
    padding: 8px 12px;
    cursor: pointer;
}

.light .ksep-episodes-search,
.light .ksep-episodes-sort {
    background-color: #eef5cd;
    color: #454545;
}

.ksep-episodes-search {
    flex: 1 1 260px;
}

.ksep-episodes-sort {
    flex: 0 0 190px;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 34px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%238ea83d' d='M7 2l3 3H4zM7 12l-3-3h6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    background-size: 14px 14px;
}

.light .ksep-episodes-sort {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%23687035' d='M7 2l3 3H4zM7 12l-3-3h6z'/%3E%3C/svg%3E");
}

.ksep-episodes-info {
    font-size: 13px;
    color: #9da3a3;
}

.light .ksep-episodes-info {
    color: #68704f;
}

.ksep-episodes-empty {
    margin: 15px 10px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(172, 206, 13, 0.12);
    border: 1px solid rgba(172, 206, 13, 0.45);
    color: #dce7a8;
    text-align: center;
}

.light .ksep-episodes-empty {
    color: #657138;
}

.anime-rating {
    position: absolute;
    display: flex;
    gap: 3px;
    padding: 2px 5px;
    align-items: center;
    background: #ffff00b0;
    backdrop-filter: blur(3px);
    border-radius: 7px;
    color: #000;
    font-size: 14px;
    font-weight: 450;
    left: -5px;
    top: 5px;
}

@media only screen and (max-width: 780px) {
    .short-btn.video {
        padding: 13px 19px !important;
        font-weight: bold;
        font-size: 15px !important;
    }
}

.video_plate_title {
    text-align: center;
    padding-left: 83px
}

.video_plate_title span {
    background-color: #363a37;
    position: relative;
    display: inline-block;
    padding: 3px 14px 3px 14px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.light .video_plate_title span {
    background: #eef5cd;
}

.vpt_roll {
    display: block;
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 4px;
    top: -4px;
    background-color: #363a37;
    border: 1px solid #666b66;
    cursor: pointer
}

.light .vpt_roll {
    background-color: #eef5cc;
    border: 1px solid #acce0d;
}

.vpt_roll_bef {
    left: -4px
}

.vpt_roll_af {
    right: -4px
}

.video_plate_title span h2 {
    overflow: hidden;
    font: 14px/1.4 normal Verdana, sans-serif
}