.wrapper {
    min-width: 320px;
    position: relative
}

.wrapper-container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 20
}

.wrapper-main {
    min-height: 100vh;
    padding: 0 var(--indent)
}

.header {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 50
}

.footer {
    background-color: var(--bg-lighter);
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid var(--bdc-lighter);
    margin-top: 50px
}

.block-bg,.lightstat_sander {
    background-color: var(--bg-lighter);
    padding: 20px;
    border-radius: 6px
}

.cols {
    display: grid;
    grid-gap: 50px 50px;
    grid-template-columns: 360px minmax(0,1fr)
}

.col-main {
    grid-column: 2/3;
    min-height: 80vh
}

.cols--full {
    grid-template-columns: minmax(0,1fr)!important
}

.cols--full .col-main {
    grid-column: 1/-1
}

#scrolltop {
    position: fixed;
    width: 60px;
    height: 60px;
    line-height: 60px;
    right: 10px;
    bottom: 50px;
    z-index: 990;
    display: none;
    background-color: var(--bg-lighter);
    color: var(--tt-darker);
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,.6)
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: #2c2c2c
}

::-webkit-scrollbar-thumb {
    background: #5c5c5c;
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: #7c7c7c
}

.batcave-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #242424;
    padding: 20px;
    width: 300px;
    text-align: center;
    border-radius: 10px 0 0 10px;
    box-shadow: -2px 0 5px rgba(0,0,0,.5)
}

.batcave-close-btn {
    color: #fff;
    float: right;
    font-size: 24px;
    font-weight: 700;
    margin-top: -10px;
    cursor: pointer
}

.batcave-close-btn:hover {
    color: #aaa
}

.batcave-share-btn {
    background-color: #1e3a8a;
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%
}

.batcave-share-btn:hover {
    background-color: #3e5bb8
}

.logo {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    height: 40px;
    text-align: left;
    padding-left: 40px;
    margin-right: 30px;
    position: relative;
}

.logo__title {
    text-transform: uppercase;
    color: #fff;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 600;
    line-height: 1
}

.logo span {
    color: var(--tt-darker-2)
}

.logo::before {
    content: '';
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    background: #f2f2f2 url(../images/logo.svg) center center/20px no-repeat
}

.header__menu>li {
    margin-right: 30px;
    position: relative;
    font-weight: 600
}

.header__menu>li>a {
    height: 40px;
    display: flex;
    align-items: center
}

.header__menu>li>a.is-active {
    color: var(--accent)
}

.header__menu>li:hover>a,.header__btn-login:hover,.header__btn-ctrl:hover {
    color: var(--accent)
}

.header__menu>li .fal,.header__btn-login .fal {
    opacity: .8;
    width: 23px;
    font-size: 14px
}

.header__btn-login {
    cursor: pointer;
    font-weight: 600;
    margin-left: 30px
}

.header__btn-ctrl {
    display: inline-block;
    font-size: 24px;
    margin-left: 20px;
    position: relative;
    cursor: pointer
}

.header__btn-ctrl i {
    position: absolute;
    left: 10px;
    top: -6px;
    font-size: 12px;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    padding: 0 5px;
    pointer-events: none;
    line-height: 20px;
    text-align: center;
    background-color: var(--accent);
    color: #000;
    font-style: normal
}

.header__btn-ctrl i.pm-0 {
    background-color: var(--tt-darker);
    color: var(--tt)
}

.header__ctrl-login {
    padding-left: 10px
}

.theme-toggle {
    margin-right: -10px
}

.header__btn-ctrl-text {
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px
}

.header__btn-ctrl-caption {
    font-size: 12px;
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    text-align: center;
    line-height: 1
}

.header__search {
    position: relative;
    width: 260px
}

.header__search input,.header__search input:focus {
    padding: 0 15px 0 45px;
    border-radius: 20px;
    background: var(--bg-lighter);
    box-shadow: 0 0 0 1px var(--bdc-lighter);
    color: var(--tt)
}

.header__search input:not(:focus)::placeholder {
    color: var(--tt);
    opacity: .6;
    font-size: 16px
}

.header__search button {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    padding: 0;
    background: 0 0;
    color: var(--tt);
    font-size: 15px
}

.nav {
    margin-bottom: 50px
}

.nav__list {
    gap: 8px 8px;
    font-size: 14px
}

.nav__list a {
    padding: 6px 10px;
    border-radius: 3px;
    display: block;
    background-color: var(--bg-lighter)
}

.nav__list a b {
    font-weight: 600
}

.nav__list a span {
    color: var(--tt-darker);
    font-size: 11px;
    margin-left: 6px;
    display: inline-block
}

.nav__list a:hover {
    background-color: var(--accent)!important;
    color: #000
}

.nav__list a:hover span {
    color: #000
}

.nav__list li.is-active a:not(:hover) {
    box-shadow: 0 0 0 1px var(--accent)
}

.header__menu>li>div {
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--accent);
    border-radius: 4px;
    cursor: pointer;
    transition: all .2s linear
}

.header__menu .nav__list {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 99%;
    background-color: var(--bg-lighter);
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
    padding: 20px;
    width: 840px
}

.header__menu li:hover .nav__list {
    opacity: 1;
    visibility: visible;
    transition: all .2s linear
}

.header__menu li:hover>div {
    background-color: var(--accent);
    color: #000
}

.header__menu .nav__list a:not(:hover) {
    background-color: var(--bg)
}

.sect+.sect {
    margin-top: 50px
}

.sect__header {
    margin-bottom: 20px
}

.sect__title {
    font-size: 24px;
    font-weight: 700
}

.sect__title .fal {
    color: var(--accent-2);
    margin-right: 10px
}

.sect__sort {
    position: relative;
    color: var(--tt-darker);
    font-size: 10px
}

.sect__sort * {
    display: inline-block;
    vertical-align: middle
}

.sect__sort a {
    text-transform: uppercase;
    margin-left: 10px;
    color: var(--tt-darker)
}

.sect__sort a::after {
    content: "\f107";
    font-weight: 300;
    font-family: 'font awesome 5 pro';
    margin-left: 8px;
    display: inline-block
}

.sect__sort .desc a::after {
    content: "\f106"
}

.sect__sort li[class] a {
    color: var(--tt)
}

.sect__genres {
    display: grid;
    grid-gap: 10px 20px;
    font-size: 14px;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr))
}

.sect__genres.is-active {
    display: none
}

.sect__genres.force-active {
    display: grid
}

.sect__genres a {
    color: var(--tt-darker-2)
}

.sect__genres span {
    color: var(--accent-darker)
}

.sect__btn {
    height: 30px;
    padding: 0 10px;
    border-radius: 4px;
    margin-left: 20px;
    background-color: var(--tt-darker);
    color: #fff
}

.site-desc {
    display: grid;
    grid-gap: 20px;
    line-height: 1.7;
    color: var(--tt-darker);
    padding-top: 30px;
    grid-column: 1/-1;
    font-size: 12px
}

.site-desc h1,.site-desc h2,.site-desc h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--tt);
    line-height: 1.3
}

.site-desc a {
    text-decoration: underline;
    color: var(--tt-darker)
}

.site-desc ul li {
    position: relative;
    padding-left: 25px;
    margin-left: 25px
}

.site-desc ul li::before {
    content: "\f00c";
    font-weight: 300;
    font-family: 'font awesome 5 pro';
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0
}

.speedbar {
    font-size: 13px;
    margin-bottom: 20px
}

.speedbar a:hover,.sect__genres a:hover {
    text-decoration: underline;
    opacity: 1;
    color: var(--tt)
}

.sect--comms {
    grid-column: 1/-1
}

.sect--comms .sect__content {
    display: grid;
    grid-gap: 20px 20px;
    grid-template-columns: repeat(auto-fill,minmax(260px,1fr))
}

.sect--latest .sect__content {
    display: grid;
    grid-gap: 15px 20px;
    grid-template-columns: repeat(auto-fill,minmax(320px,1fr))
}

.sect--hot .sect__content {
    display: grid;
    grid-gap: 20px 15px;
    grid-template-columns: repeat(auto-fill,minmax(120px,1fr))
}

.sect--bg {
    background-color: var(--bg-lighter);
    padding-top: 30px;
    padding-bottom: 30px;
    border: 1px solid var(--bdc-lighter);
    border-left: 0;
    border-right: 0
}

.sect--popular {
    margin-bottom: 50px
}

.carou__content:not(.owl-carousel) {
    display: flex;
    overflow: hidden
}

.carou__content:not(.owl-carousel)>* {
    flex-shrink: 0
}

.carou__content:not(.owl-carousel)>.poster {
    margin-right: 20px;
    width: calc((100% - 140px)/8)
}

.latest {
    position: relative;
    margin: 0;
    box-shadow: inset 0 -1px #000;
    border-bottom: 1px solid var(--bdc-lighter);
    padding-bottom: 16px
}

.latest__img {
    width: 160px;
    height: 100px;
    border-radius: 6px;
    display: block;
    margin-right: 15px
}

.latest__chapter,.latest__chapter a {
    font-size: 14px;
    color: var(--tt-darker-2);
    margin-top: 5px
}

.latest__publisher {
    font-size: 13px;
    color: var(--tt-darker);
    margin-top: 5px
}

.latest__chapter a:hover,.latest__title:hover {
    text-decoration: underline
}

a.latest__img:hover {
    opacity: .8
}

.latest__title .fal {
    color: var(--accent-2);
    padding-left: 10px
}

.sect--latest-smaller .sect__content {
    grid-gap: 20px 20px
}

.sect--latest-smaller .latest {
    border: 0;
    box-shadow: none;
    padding-bottom: 0
}

.sect--latest-smaller .latest__img {
    width: 60px;
    height: 60px
}

.sect--latest-smaller .latest__title {
    font-size: 14px;
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1
}

.sect--latest-smaller .latest__chapter {
    font-size: 12px;
    margin-top: 2px
}

.sect--latest-smaller .latest__publisher {
    font-size: 11px;
    margin-top: 3px
}

.poster {
    display: block;
    position: relative;
    z-index: 1
}

.poster__img {
    margin-bottom: 17px;
    border-radius: 10px
}

.poster__title {
    font-size: 16px;
    font-weight: 400
}

.poster__subtitle {
    margin-top: 8px;
    font-size: 12px;
    color: #9fa2a8
}

.poster__subtitle li {
    display: inline;
    margin-right: 1px
}

.poster__subtitle li a {
    color: var(--tt-darker)
}

.poster__subtitle li:not(:last-child)::after {
    margin-left: 3px;
    content: '/';
    opacity: .9
}

.poster__label {
    position: absolute;
    z-index: 10;
    padding: 5px 10px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    max-width: 90%;
    word-wrap: break-word;
    background-color: rgba(0,0,0,.6);
    color: #fff;
    text-shadow: 0 0 4px #000
}

.poster__label--readers {
    right: 5px;
    top: 5px
}

.poster__label--rate {
    left: 5px;
    bottom: 5px;
    font-size: 14px
}

.has-overlay__mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    background-color: rgba(0,0,0,.8);
    color: var(--accent);
    font-size: 40px;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

.has-overlay:hover .has-overlay__mask {
    opacity: 1
}

.poster__subtitle,.poster__subtitle li {
    max-width: 100%
}

.readed {
    background-color: var(--bg-lighter);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: -10px
}

.readed.not-active>* {
    opacity: .7
}

.readed.not-active .readed__btn {
    background-color: var(--tt-darker);
    color: #fff
}

.readed__img {
    width: 100px;
    height: 150px;
    border-radius: 6px;
    margin-right: 20px;
    display: block
}

.readed__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px
}

.readed__meta {
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--tt-darker-2)
}

.readed__meta-item:not(:last-child)::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px;
    background: var(--tt-darker)
}

.readed__info li>span:first-child {
    display: inline-block;
    font-weight: 700;
    width: 80px;
    color: var(--tt-darker)
}

.readed__progress {
    text-align: center;
    width: 160px;
    margin-left: 20px
}

.readed__progress-counter {
    margin-bottom: 10px;
    font-size: 13px
}

.readed__progress-bar {
    position: relative;
    border-radius: 3px;
    height: 6px;
    background-color: var(--bdc)
}

.readed__progress-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: var(--tt-darker);
    border-radius: 3px
}

.readed__progress-percent {
    margin: 15px 0;
    font-weight: 700;
    font-size: 24px
}

.readed__btn {
    width: 100%;
    padding: 0
}

a.readed__img:hover {
    opacity: .8
}

.readed__desc a:hover {
    text-decoration: underline
}

.short .readed__info li>span:first-child {
    display: inline;
    width: auto;
    margin-right: 3px
}

.readed__info a {
    text-decoration: none
}

.readed__info a:hover {
    text-decoration: none;
    color: var(--accent)
}

.readed__rating {
    margin-bottom: 0
}

.readed__rating-votes {
    font-size: 12px;
    margin-bottom: 20px;
    color: var(--tt-darker)
}

.side-block:not(:last-child) {
    margin-bottom: 50px
}

.side-block__title {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px
}

.popular {
    background: var(--bg-lighter);
    border-radius: 6px
}

.popular+.popular {
    margin-top: 8px
}

.popular__img {
    width: 120px;
    /* height: 96px; */
    border-radius: 6px
}

.popular__desc {
    padding: 6px 15px
}

.popular__subtitle {
    font-size: 13px;
    margin-top: 6px;
    opacity: .7
}

.popular:hover .popular__title,.showitems-btn:hover {
    text-decoration: underline
}

.showitems-btn {
    margin-top: 13px;
    cursor: pointer;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px
}

.soc-channels__item {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
    background: #2daae1 url(../images/i-tlg.svg) center center/16px 16px no-repeat
}

.soc-channels__item.vk {
    background: #1877f2 url(../images/i-vk.svg) center center/20px 20px no-repeat
}

.lcomm {
    padding: 10px;
    padding-bottom: 37px;
    position: relative
}

.lcomm__author {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.lcomm__link {
    display: block;
    color: var(--tt-darker);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0
}

.lcomm__date {
    font-size: 11px;
    color: var(--tt-darkest);
    margin-left: 10px
}

.lcomm__text {
    margin: 8px 0 0;
    color: var(--tt-darker-2);
    -webkit-line-clamp: 3
}

.lcomm__avatar {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    margin-right: 10px
}

.lcomm__link:hover {
    text-decoration: underline;
    color: var(--tt)
}

.popular:hover .popular__title,.speedbar a:hover,.readed__title a:hover,.poster:hover .poster__title,a.latest__title:hover,.latest__chapter a:hover,a.lcomm__link:hover,.footer__menu a:hover,.comment-item__controls li a:hover,.comment-item__rating-likes a:hover,.comment-item__author a:hover,.page__translators a:hover,.speedbar a:hover {
    color: var(--accent);
    text-decoration: none!important
}

.lightstat_sander {
    margin-bottom: 40px
}

.lightstat_sander_head {
    display: flex;
    align-items: center;
    font-size: 18px;
    padding-right: 60px;
    line-height: 1.2
}

.lightstat_sander_head_count {
    font-size: 40px;
    font-weight: 700;
    margin-right: 20px
}

.lightstat_sander_body {
    margin: -20px;
    padding: 20px;
    margin-top: 0;
    display: grid;
    grid-gap: 10px
}

.lightstat_sander_body_item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    justify-content: space-between;
    color: var(--tt)
}

.lightstat_sander_body_item b {
    color: var(--tt-darker);
    font-weight: 400;
    font-size: 14px
}

.lightstat_sander_bar {
    margin: 0 -20px;
    margin-top: 20px;
    height: 4px;
    display: flex;
    background: #619505
}

.lightstat_sander_bar>* {
    height: 4px
}

.lightstat_sander_body_item::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 5px;
    content: '';
    background-color: var(--bg)
}

.lightstat_sander_body_item_bots::after {
    background-color: #619505
}

.lightstat_sander_bar_users,.lightstat_sander_body_item_users::after {
    background-color: #d95e01
}

.lightstat_sander_bar_guest,.lightstat_sander_body_item_guest::after {
    background-color: #af291d
}

.searchXfield {
    display: grid;
    grid-gap: 10px 20px;
    font-size: 14px;
    padding-bottom: 10px;
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr))
}

label.XSearchfield {
    position: relative;
    padding-left: 26px;
    cursor: pointer;
    color: var(--tt-darker-2);
    display: block
}

label.XSearchfield input {
    appearance: none;
    -webkit-appearance: none;
    opacity: 0
}

label.XSearchfield span::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 3px;
    background: var(--bdc);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -8px;
    box-shadow: 0 0 0 1px var(--bdc-lighter)
}

label.XSearchfield input:checked+span::before {
    box-shadow: 0 0 0 1px var(--tt-darker)
}

label.XSearchfield input:checked+span::after {
    content: "\f00c";
    font-family: 'font awesome 5 pro';
    font-weight: 300;
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -2px;
    color: #03b82a;
    font-size: 20px
}

.xFieldSearchContent>.list>.title {
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: var(--bg-lighter);
    border-radius: 6px;
    padding: 10px 20px
}

.xFieldSearchContent>.list>.title .openClose {
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    text-indent: -200px!important;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -15px
}

.xFieldSearchContent .title .openClose:before {
    content: "\f078";
    font-family: 'font awesome 5 pro';
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: 0!important;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center
}

.xFieldSearchContent .title .openClose.open:before {
    content: "\f077"
}

label.XSearchfield:hover {
    color: var(--tt);
    text-decoration: underline
}

.xFieldSearchContent>.list>.title:hover {
    color: var(--accent)
}

.xFieldSearchContent .close {
    text-indent: 0;
    overflow: visible
}

.searchXfield li:empty {
    display: none
}

.pols {
    padding-bottom: 10px
}

.pols input[type=text] {
    width: 100px!important;
    margin-right: 10px
}

.pols input[type=text]:last-child {
    margin: 0 0 0 10px
}

.xFieldSearchSubmit {
    text-align: center
}

.xFieldSearchSubmit input {
    height: 30px;
    border-radius: 4px;
    background-color: var(--tt-darker);
    color: #fff
}

.footer__menu {
    display: grid;
    grid-gap: 10px;
    align-content: start
}

.footer__menu-title {
    font-weight: 600;
    font-size: 18px;
    padding-bottom: 10px
}

.footer__menu a {
    font-size: 12px;
    text-transform: uppercase
}

.footer__menu-2 a {
    color: var(--tt-darker)
}

.footer__two {
    margin-top: 30px
}

.footer__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--tt-darker);
    margin-top: 15px
}

.footer__menu-2 .soc-channels {
    padding-bottom: 10px
}

.footer__menu a:hover {
    text-decoration: underline
}

.pagination {
    text-align: center;
    padding-top: 10px;
    grid-column: 1/-1
}

.readed+.pagination {
    padding-top: 20px
}

#dle-content>.pagination:first-child {
    padding-top: 0;
    margin-top: -10px;
    margin-bottom: -10px
}

.sect__content>.pagination:first-child {
    padding-top: 0;
    margin-top: -10px;
    margin-bottom: 20px
}

#content-load>.pagination:not(:last-child) {
    display: none
}

.pagination__btn-loader a,.pagination__btn-loader>span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 40px;
    max-width: 360px;
    background: var(--bg);
    color: var(--accent);
    width: 100%;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 30px
}

.pagination__pages a,.pagination__pages span {
    display: inline-block;
    margin: 10px 5px 0;
    line-height: 38px;
    padding: 0 10px;
    min-width: 40px;
    font-size: 16px;
    border: 1px solid var(--bdc);
    border-radius: 6px;
    text-align: center
}

.pagination__pages span:not(.nav_ext),.pagination__pages a:hover,.pagination__btn-loader a:hover {
    background: var(--bdc);
    color: var(--accent);
    border-color: var(--bdc)
}

.pagination__pages--full a,.pagination__pages--full span {
    line-height: 30px;
    min-width: 30px;
    font-size: 14px
}

.page__grid {
    display: grid;
    grid-gap: 20px 25px;
    grid-template-columns: 300px minmax(0,1fr);
    grid-template-areas: "pleft pheader" "pleft pmain";
    position: relative;
    padding-bottom: 30px;
    grid-template-rows: min-content 1fr
}

.page__left {
    grid-area: pleft;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--bdc-lighter);
    background-color: var(--bg-lighter);
    border-radius: 6px;
    padding: 15px
}

.page__header {
    grid-area: pheader
}

.page__main {
    grid-area: pmain
}

.page__header h1 {
    font-weight: 700;
    font-size: 28px
}

.page__header h1 a {
    font-size: 16px;
    margin-left: 10px
}

.page__title-original {
    font-weight: 600;
    font-size: 20px;
    margin-top: 3px;
    color: var(--tt-darker)
}

.page__poster {
    border-radius: 4px;
    margin-bottom: 20px;
    height: 400px
}

.page__btns {
    display: grid;
    grid-gap: 10px 0
}

.page__btns .btn {
    width: 100%;
    text-transform: uppercase;
    border-radius: 4px;
    font-size: 14px
}

.page__btn-read {
    background-color: var(--accent-3);
    color: #fff
}

.page__btn-continue {
    background-color: #083;
    color: #fff
}

.page__btn-continue+.page__btn-read {
    display: none
}

.page__btn-fav {
    background-color: var(--bg-lighter-2);
    border: 1px solid var(--bdc-lighter);
    color: var(--tt-darker-2)
}

.page__btn-fav::after {
    content: "\f107";
    font-weight: 300;
    font-family: 'font awesome 5 pro';
    margin-left: 10px;
    font-size: 18px
}

.page__favs {
    position: relative
}

.page__fav-list {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    line-height: 40px;
    padding: 10px 0;
    background-color: var(--bdc);
    box-shadow: 0 5px 10px rgba(0,0,0,.6)
}

.page__fav-list li {
    cursor: pointer;
    padding: 0 20px
}

.page__fav-list li:hover {
    background-color: var(--bg)
}

.page__btn-fav {
    color: #fff;
    background-color: #16a085
}

.page__fav-list li.page__fav-del {
    background-color: #c0392b;
    color: #fff
}

.page__complaint {
    text-align: center;
    padding-top: 10px
}

.page__complaint a:hover {
    color: var(--accent)
}

.page__list {
    border-radius: 6px;
    padding: 20px;
    margin-top: 20px;
    background-color: var(--bg-lighter-2);
    display: grid;
    grid-gap: 10px 0;
    font-size: 16px
}

.page__list li>div:first-child {
    color: #afafb6;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 3px
}

.page__list a {
    text-decoration: underline
}

.page__list a:hover {
    color: var(--accent)
}

.text-hidden {
    overflow: hidden;
    position: relative
}

.show-text {
    position: absolute;
    right: 0;
    bottom: 0
}

.show-text button {
    height: 20px;
    color: #ccc;
    padding: 0 5px 0 60px;
    text-transform: none
}

.show-text button:hover {
    color: #eee
}

.page__fav-list li.is-active {
    background-color: var(--accent-3);
    color: #fff;
    pointer-events: none
}

.page__fav-list li.page__fav-del {
    background-color: #900;
    color: #fff
}

.page__activity-subtitle {
    text-overflow: ellipsis;
    overflow: hidden
}

.tabs__block {
    padding-top: 30px;
    position: relative
}

.tabs__block::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: -30px;
    right: calc((100% - 100vw)/2);
    background-color: var(--bg-lighter);
    left: calc((100% - 100vw)/2 - 310px);
    border: 1px solid var(--bdc-lighter);
    border-left: 0;
    border-right: 0
}

.tabs__block>* {
    position: relative;
    z-index: 5
}

.tabs__select {
    text-transform: uppercase;
    font-size: 14px;
    gap: 0 20px;
    font-weight: 600
}

.tabs__select>li {
    cursor: pointer;
    color: #afafb6;
    padding: 0 10px 10px
}

.tabs__select>li.is-active {
    color: var(--tt);
    box-shadow: inset 0 -2px var(--accent)
}

.tabs__select>li:not(.is-active):hover {
    color: var(--accent)
}

.page__rating {
    position: relative;
    padding: 0 0 10px!important
}

.page__rating .rating {
    width: 136px;
    height: 27px;
    position: relative;
    top: -5px
}

.page__rating .unit-rating {
    transform: scale(1.6,1.6);
    transform-origin: 0 0
}

.page__rating-votes {
    position: absolute;
    width: 100%;
    left: 0;
    top: -16px;
    color: var(--tt-darker);
    font-size: 10px
}

.page__author {
    font-size: 12px
}

.page__author a:hover {
    text-decoration: underline
}

.page__text,.page__tags,.page__translators {
    margin-bottom: 20px
}

.page__tags {
    border-top: 1px solid var(--bdc-lighter);
    padding-top: 20px;
    gap: 10px 5px;
    font-size: 0
}

.page__tags a {
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 36px;
    border-radius: 3px;
    padding: 0 10px;
    font-size: 14px;
    color: var(--tt-darker-2);
    border: 1px solid var(--bdc-lighter);
    background-color: var(--bg-lighter-2)
}

.page__tags a:hover {
    background-color: var(--bg-lighter);
    border-color: var(--accent);
    color: var(--tt)
}

.page__translators {
    border-top: 1px solid var(--bdc-lighter);
    padding-top: 20px;
    color: var(--tt-darker);
    font-size: 14px;
    margin-bottom: 40px
}

.page__translators a {
    color: var(--accent);
    text-decoration: underline
}

.page__sect-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px
}

.page__sect+.page__sect {
    margin-top: 40px
}

.page__activity {
    display: grid;
    grid-gap: 10px 30px;
    color: var(--tt-darker-2);
    grid-template-columns: repeat(auto-fill,minmax(300px,1fr))
}

.page__activity-col {
    border-radius: 6px;
    padding: 20px;
    background-color: var(--bg-lighter-2)
}

.page__activity-title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative
}

.page__activity-votes {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
    white-space: nowrap
}

.page__activity-votes .fal {
    color: #ffc107;
    margin-right: 3px
}

.page__activity-votes>span:last-child {
    color: var(--tt-darker);
    margin-left: 6px
}

.page__activity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    white-space: nowrap
}

.page__activity-subtitle {
    width: 90px
}

.page__activity-percent {
    font-weight: 700;
    width: 50px;
    text-align: right;
    color: var(--tt)
}

.page__activity-quantity {
    text-align: right;
    width: 60px;
    color: var(--tt-darker)
}

.page__activity-bar {
    flex-grow: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--bdc);
    position: relative
}

.page__activity-bar-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
    background: var(--accent)
}

.page__activity-col--rates .page__activity-row:nth-child(2) .page__activity-bar-progress {
    background: #76db98
}

.page__activity-col--rates .page__activity-row:nth-child(3) .page__activity-bar-progress {
    background: #b7ea83
}

.page__activity-col--rates .page__activity-row:nth-child(4) .page__activity-bar-progress {
    background: #f6d757
}

.page__activity-col--rates .page__activity-row:nth-child(5) .page__activity-bar-progress {
    background: #fbb851
}

.page__activity-col--rates .page__activity-row:nth-child(6) .page__activity-bar-progress {
    background: #f17a54
}

.page__activity-col--rates .page__activity-subtitle {
    width: 50px
}

.page__activity-col--rates .page__activity-subtitle .fal {
    color: var(--tt-darker);
    margin-left: 6px
}

.page__chapters-list {
    display: grid;
    grid-gap: 10px
}

.cl__item {
    background-color: var(--bg-lighter-2);
    padding: 5px 10px;
    font-size: 14px
}

.cl__item-num {
    border-radius: 4px;
    line-height: 32px;
    padding: 0 7px;
    font-size: 11px;
    color: var(--tt-darker-2);
    background-color: var(--bg);
    margin-right: 15px
}

.cl__item-pages {
    color: var(--tt-darker-2);
    white-space: nowrap;
    margin-left: 15px
}

.cl__item-date {
    color: var(--tt-darker);
    margin-left: 15px;
    font-size: 11px;
    padding-right: 10px;
    width: 70px;
    text-align: right
}

.cl__itemAction {
    color: var(--tt-darker-2);
    background-color: var(--bg);
    padding: 0;
    height: 32px;
    width: 32px;
    margin-left: 5px;
    font-size: 16px;
    border-radius: 50%
}

.cl__itemAction-readed {
    background-color: #16a085;
    color: #fff
}

.cl__item-title a:hover {
    text-decoration: underline;
    color: var(--accent)
}

.cl__action {
    background-color: var(--tt-darker);
    border-radius: 4px;
    color: #fff
}

.cl__action span {
    margin-right: 10px
}

.page__chapters-list .pagination__pages {
    margin-top: -10px
}

.page__share {
    background-color: #4e6baf;
    padding: 10px
}

[v-cloak] {
    display: none
}

.sortable-placeholder {
    background: #fff2c0;
    height: 17px
}

.cl__grab {
    margin: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,.1)
}

.cl__grabTitle {
    display: inline-block;
    text-transform: uppercase;
    font: bold 12px/30px Arial;
    letter-spacing: 1px;
    padding: 0 20px;
    color: #607d8b;
    background: #fff;
    margin-right: 5px;
    margin-bottom: 5px;
    border-radius: 2px;
    border: 1px solid #e5e7e9;
    box-shadow: 0 1px 2px rgba(0,0,0,.05)
}

.cl__grabTitle:hover {
    border-color: transparent;
    background: #607d8b;
    color: #fff;
    text-decoration: none
}

.cl__editForm {
    margin-top: 15px;
    display: block;
    position: relative
}

.cl__editLoading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    text-align: center;
    font-size: 19px;
    line-height: 140%;
    font-weight: 500;
    color: #fff;
    z-index: 900
}

.cl__editUpload {
    border: 2px dashed rgba(0,0,0,.1);
    display: flex;
    min-height: 120px;
    margin: 0 15px;
    padding: 20px 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    font-size: 13px;
    color: #777;
    transition: .3s
}

.cl__editUpload:hover,.cl__editUpload.highlight {
    border-color: #009381
}

.cl__editUpload input {
    position: absolute;
    top: -100px;
    left: 0;
    bottom: 0;
    width: 100%;
    cursor: pointer
}

.cl__editUploadButton {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    background: #00b19c;
    line-height: 36px;
    border-radius: 4px;
    padding: 0 15px;
    margin-bottom: 7px;
    transition: .2s
}

.cl__editUpload:hover .cl__editUploadButton {
    background: #009381
}

.cl__editUploadFiles {
    margin-top: 10px
}

.cl__editUploadFile {
    font-family: monospace;
    color: #444;
    font-size: 11px;
    line-height: 17px
}

.cl__editImages {
    max-height: 590px;
    overflow: auto;
    list-style: none;
    display: flex;
    margin: 14px;
    flex-wrap: wrap;
    padding: 10px 0 10px 10px;
    border-radius: 4px;
    background: #f1f1f4
}

.cl__editImagesItem {
    position: relative;
    margin: 0 14px 6px 0;
    display: flex;
    width: 140px;
    height: 140px;
    background: #fff;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0,0,0,.1);
    cursor: pointer;
    cursor: move
}

.cl__editImagesItem:hover {
    background: #00b19c;
    box-shadow: 0 1px 4px rgba(0,0,0,.2)
}

.cl__editImagesItem.disabled {
    background: #eee
}

.cl__editImagesItem.disabled:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255,255,255,.85)
}

.cl__editImagesItem-img {
    max-height: 140px;
    max-width: 100%;
    transition: .2s
}

.cl__editImagesItem.disabled .cl__editImagesItem-img {
    filter: blur(10px)
}

.cl__editImagesItem-num {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    left: 0;
    top: 4px;
    padding: 0 8px;
    line-height: 20px;
    color: #000;
    background: #fff;
    border-radius: 0 2px 2px 0;
    box-shadow: 1px 1px 3px rgba(0,0,0,.4)
}

.cl__editImagesItem-del {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #d00;
    border-right-color: #d00;
    transition: .2s
}

.cl__editImagesItem-del:hover {
    border-top-color: #900;
    border-right-color: #900
}

.cl__editImagesItem-del:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAAAXNSR0IArs4c6QAAADxJREFUKFONj8EKADAIQvX/P9rhwWGDQZ1EfFYEAEkiSetMPFrETGh4aWi6gVvblANp2wVeeqxYH/l78wCBUzABsh2nSgAAAABJRU5ErkJggg==) no-repeat 50% 50%
}

.cl__editImagesItem-undel {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    left: 20px;
    right: 20px;
    line-height: 30px;
    color: #fff;
    background: #539ba7;
    text-align: center;
    font-size: 12px;
    z-index: 7;
    font-weight: 500;
    border-radius: 2px;
    transition: .2s
}

.cl__editImagesItem-undel:hover {
    background: #00b19c
}

.cl__editImagesItem-zoom {
    content: '';
    z-index: 4;
    background: #fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAppJREFUeNq8lstL1FEUx3/O2JSPXqKG6MKVlkobkwnSUHSRixaBEhqlEOi/MNKsTC0X4tZdqyBECoIWIaVBoRJRaPQQsY0I9qAsX6Pkz++B75XD5f7GWcgc+DDD73HPPd/zuL8M3/e9dFjIS5OlzVFGCvePgyioB+dAIRC9l8FHMAHegw1e37dU0xIBV8BzsMlFXPwDj8BFkGk7MgTZCRAD62pBcfYdLIBF8BNsqfsr4BY4lqqjbNCjFtgGH0AcNIAKUAmaQD+YB//5rGysw0SWzJHkpEXtVF4cAcVJJD4LHoMdFVn0IEclYIovJMCQpXsWqGZEEXX9NBhTkY2CnCBHYXCTD+6CF6DA2shVsMRqu+CI7ItSolY7Clm5aeL/v6ykH9ZiUcpYyYW1iZMnzKms1ahvallyQTn/i86vlVw1oBRU8ZpIVEcVJLpZ5ugl6AJ53IzTyllBEvoMdffYS0tKUlONJh+f1AYqWPpy/VWQdCE1knZVl+eAfMckMc8WMmpPbcbk3Cmd5OU3/59iIfxhUXSC8+AyuMTFnlGyKcondobN7jnyu28y0x5yV7/ADccz95V0HY77cbaF3B8Ikm6TA9JEdJ0Fom2OkUvOvjl6sJX9lVBrOa2U48bnNI45ZuA1tkGWlYIRldtxcPKgWdfKXjASxqxFbZO8DKtjQn6bU5l1fap0hTXwlFOjjGWfx1LupkQJ9XzcjKcgR0fAXbDq6BWfx8JnVpn02VdWqZ7yd1TVOR2FWVHm/Nmi03bwLsmhZ3jDqZ+d7OCTMO+pU1R21suXwiyQ2yz9tzz4ZIJMgweUtMT1/WE7iqnzR5wMOpKfyT4r5neDjKsiln84qEpsR/r8kciOHtaXj+2oDUwysshhfmJpR3sCDAC/8WJFfLMiBQAAAABJRU5ErkJggg==) no-repeat 50% 50%;
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -24px 0 0 -24px;
    opacity: 0;
    cursor: zoom-in;
    border-radius: 50%;
    transition: .2s
}

.cl__editImagesItem:hover .cl__editImagesItem-zoom {
    opacity: .65
}

.cl__editImagesItem-zoom:hover {
    opacity: .9!important
}

.cl__imageExpander {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.8);
    z-index: 1005;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer
}

.cl__imageExpander img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 2px;
    box-shadow: 0 6px 17px #000
}

.cl__actions {
    display: flex;
    justify-content: flex-end;
    padding: 15px 0
}

.cl__action+.cl__action {
    margin-left: 7px
}

.cl__item {
    transition: background .3s
}

.cl__item:hover {
    background-color: var(--bg-darkest)
}

.cl__item.active {
    background: #a3f6ff
}

.cl__item-chbox {
    width: 16px;
    height: 16px;
    margin-right: 7px;
    cursor: pointer
}

.full-text {
    line-height: 1.6;
    font-size: 16px;
    word-wrap: break-word;
    color: var(--tt-darker-2)
}

.full-text a {
    text-decoration: underline;
    color: var(--accent-3)
}

.full-text img:not(.emoji),.full-text p,.full-text h1,.full-text h2,.full-text h3,.full-text h4,.full-text h5,.full-text>ul,.full-text>ol,.full-text table,.page__title {
    margin-bottom: 20px
}

.full-text>img[style*=left],.full-text>.highslide img[style*=left] {
    margin: 0 10px 10px 0
}

.full-text>img[style*=right],.full-text>.highslide img[style*=right] {
    margin: 0 0 10px 10px
}

.full-text>ul li,.full-text>ol li {
    padding-left: 60px;
    position: relative
}

.full-text>ul li:before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    position: absolute;
    top: 5px;
    left: 34px
}

.full-text>ol {
    counter-reset: num
}

.full-text>ol li:before {
    content: counter(num);
    counter-increment: num;
    background-color: var(--accent);
    color: #fff;
    position: absolute;
    top: -2px;
    left: 17px;
    width: 24px;
    height: 30px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 6px;
    box-sizing: border-box
}

.full-text>ol li:after {
    content: '';
    border: 10px solid transparent;
    border-left-color: var(--accent);
    position: absolute;
    left: 41px;
    top: -2px;
    transform: scale(.66,1.5);
    transform-origin: 0 0
}

.full-text>ul li+li,.full-text>ol li+li {
    margin-top: 10px
}

.full-text table,.video-inside>* {
    width: 100%
}

.full-text table tr td {
    padding: 10px;
    border: 2px solid #fff
}

.full-text table tr:nth-child(2n+1) {
    background-color: #f2f6f9
}

.full-text table tr:nth-child(1) {
    background-color: #cee0ed
}

.full-text table img:not(.emoji) {
    margin: 0;
    max-width: 350px
}

.full-text>*:last-child {
    margin-bottom: 0
}

.video-responsive {
    padding-top: 60%;
    position: relative
}

.video-responsive>iframe,.video-responsive>video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.full-text h1,.full-text h2,.full-text h3,.full-text h4,.full-text h5 {
    font-size: 21px
}

.full-text iframe {
    width: 100%;
    height: 400px;
    margin-bottom: 20px
}

.page__comments {
    margin: 0;
    margin-left: 325px;
    padding: 30px 0
}

.page__comments-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px
}

.page__comments-info {
    font-size: 14px;
    margin-bottom: 15px;
    margin-top: -15px;
    color: var(--tt-darker);
    line-height: 1.5
}

.page__comments-info .fal {
    color: #eb4d4b;
    margin-right: 6px
}

.page__comments-list {
    padding: 0
}

.page__comments-list--not-comments {
    padding: 0;
    border: 0
}

.add-comments-form.form {
    padding: 0;
    margin-bottom: 20px
}

.add-comments-form .form__input,.add-comments-form__input,.add-comments-form .form__textarea-inside textarea,.mass_comments_action select {
    border-radius: 0
}

.add-comments-form__input,.comm-spoiler {
    margin-left: 20px
}

.add-comments-form .d-none,.comments_subscribe+br,.comments_subscribe,.bb-editor+br {
    display: none
}

.mass_comments_action {
    display: flex;
    align-items: center;
    max-width: 800px;
    white-space: nowrap;
    margin-bottom: 20px
}

.mass_comments_action select {
    flex: 1 1 0;
    margin: 0 -8px 0 20px
}

.mass_comments_action .bbcodes {
    border-radius: 0;
    padding: 0 10px
}

.comment-item__title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px
}

.comment-item {
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 6px;
    background: var(--bg-lighter)
}

.comment-item__img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px
}

.comment-item__letter {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 5;
    color: #fff;
    font-size: 18px
}

.comment-item__author {
    font-weight: 600;
    font-size: 14px
}

.comment-item__date {
    color: var(--tt-darker);
    margin-top: 4px;
    font-size: 12px
}

.comment-item__main {
    margin: 8px 0 6px;
    font-size: 15px
}

.comment-item__rating {
    white-space: nowrap;
    font-size: 10px;
    color: var(--tt-darker);
    padding: 6px 10px 6px 6px;
    border-radius: 4px;
    background: var(--bg);
    text-transform: uppercase
}

.comment-item__rating .fal {
    color: #03b82a;
    margin-right: 3px;
    font-size: 12px
}

.comment-item__rating a {
    color: var(--tt-darker)
}

.zcomm-likes {
    color: var(--tt-darker-2);
    font-size: 12px
}

.comment-item__rating:hover,.comment-item__rating:hover a {
    color: var(--tt)
}

.comment-item__reply a {
    font-size: 12px;
    color: var(--tt-darker)
}

.comment-item__reply a .fal {
    margin-left: 5px
}

.comment-item__rating-likes .fas {
    argin-right: 5px
}

.comment-item__reply+.comment-item__reply a .fal {
    margin-left: 20px;
    margin-right: 5px
}

.comment-item__controls {
    font-size: 12px;
    margin: 0 -15px 0 15px;
    justify-content: flex-end;
    gap: 10px 10px
}

.comment-item__controls li {
    height: 16px;
    line-height: 16px
}

.comment-item__controls a:not(:hover) {
    color: var(--tt-darker)
}

.comment-item__footer a:hover {
    text-decoration: underline
}

.comment-item__rating a:hover>span:first-child {
    text-decoration: none
}

.comment-item__controls .checkbox {
    transform: scale(.8,.8);
    margin-left: 5px
}

.comment-item__main--spoiler {
    position: relative;
    cursor: pointer;
    color: var(--tt-darker-2)
}

.comment-item__main--spoiler .full-text {
    filter: blur(6px);
    opacity: .8
}

.comment-item__main--spoiler:before {
    content: 'Ð¡Ð¿Ð¾Ð¹Ð»ÐµÑ€. ÐšÐ»Ð¸ÐºÐ½Ð¸Ñ‚Ðµ, Ñ‡Ñ‚Ð¾Ð±Ñ‹ Ð¿Ð¾ÐºÐ°Ð·Ð°Ñ‚ÑŒ.';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center
}

.comment-item__main--spoiler:hover::before {
    text-decoration: underline
}

.js-follow-status .js-follow-unsub {
    display: none
}

.js-follow-status.is-active .js-follow-sub {
    display: none
}

.js-follow-status.is-active .js-follow-unsub {
    display: block
}

.js-follow-status {
}

.js-follow-status.is-active {
    background-color: #b22525;
    color: var(--tt-darker-2)!important
}

.readed .js-follow-status.is-active {
    background-color: var(--ui-bg-darkest)
}

.js-follow-status.is-active:hover {
    background-color: var(--accent-darker)
}

.js-follow-status span.fa:before {
    content: "\f00c";
    margin-right: 8px
}

.js-follow-status.is-active span.fa:before {
    content: "\f068"
}

.login {
    position: fixed;
    z-index: 999;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    overflow: hidden;
    background-color: var(--ui-bg);
    border-radius: 4px;
    width: 400px;
    box-shadow: 0 0 0 10px rgba(255,255,255,.2),0 15px 45px #000
}

.login__header {
    padding: 20px 40px;
    background-color: var(--ui-bg-darker)
}

.login__title {
    font-size: 18px;
    font-weight: 600;
    padding: 1px 0;
    text-transform: capitalize
}

.login__close {
    cursor: pointer;
    font-size: 24px;
    opacity: .6;
    margin-left: 20px
}

.login__title a {
    border-bottom: 1px dotted var(--tt-darker);
    margin-left: 10px;
    font-weight: 400;
    color: var(--tt-darker)
}

.login__content {
    padding: 20px 40px
}

.login__row {
    margin-bottom: 20px;
    position: relative;
    display: block;
    font-size: 14px;
    color: var(--tt-darker)
}

.login__caption {
    font-size: 14px;
    color: var(--tt);
    margin-bottom: 10px
}

.login__caption a {
    text-decoration: underline;
    margin-left: 6px;
    color: var(--accent)
}

.login__input input {
    padding-left: 40px
}

.login__row .fal {
    opacity: .7;
    position: absolute;
    left: 0;
    bottom: 0;
    line-height: 40px;
    width: 40px;
    text-align: center
}

.login__row button {
    width: 100%
}

.login__social {
    background-color: var(--ui-bg-darker);
    padding: 20px 40px;
    text-align: center
}

.login__social-caption {
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.login__social-btns a {
    display: inline-block;
    margin: 0 3px;
    vertical-align: top
}

.login__social-btns img {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%
}

.login__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px
}

.login__menu {
    padding-left: 35px;
    padding-right: 35px;
    margin-bottom: -10px
}

.login__menu li {
    flex: 1 1 0;
    min-width: auto;
    max-width: 100%;
    margin: 0 5px 10px
}

.login__menu a {
    display: block;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    white-space: nowrap;
    background-color: var(--ui-bg-darker);
    box-shadow: inset 0 0 10px rgba(0,0,0,.1);
    font-size: 13px
}

.login__menu .fal {
    display: block;
    height: 30px;
    font-size: 24px;
    opacity: .3
}

.login__menu a:hover {
    color: var(--accent)
}

.owl-carousel {
    width: 100%;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    display: flex;
    justify-content: flex-start
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    transform: translate3d(0px,0px,0px)
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 10px
}

.owl-carousel .owl-nav.disabled,.owl-carousel .owl-dots.disabled,.owl-carousel.owl-refresh .owl-item {
    display: none
}

.owl-carousel.owl-loaded,.owl-carousel.owl-loading,.no-js .owl-carousel {
    display: block;
    opacity: 1
}

.owl-carousel.owl-drag .owl-item {
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height 500ms ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%
}

.owl-prev,.owl-next {
    display: flex;
    cursor: pointer;
    box-shadow: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--tt);
    position: absolute;
    top: 0;
    margin-top: -55px;
    font-size: 18px
}

.owl-prev {
    left: -35px
}

.owl-next {
    right: -35px
}

.owl-prev:hover,.owl-next:hover {
    color: #000
}

.owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px
}

.owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--bdc);
    margin: 0 5px
}

.owl-dot.active,.owl-dot:hover {
    background: var(--tt-darker)
}

#xfilter[v-cloak] {
    display: none
}

.xfilter__form {
    margin-right: -6px
}

.xfilter__filterItem {
    position: relative;
    margin: 0 6px 6px 0;
    flex: 1;
    min-width: 270px;
    max-width: 400px
}

.xfilter__filterItem-group {
    display: block;
    position: relative;
    height: 46px;
    padding: 5px 35px 5px 12px;
    font-size: 13px;
    line-height: 18px;
    background: var(--bg-lighter);
    color: var(--tt);
    border-radius: 2px;
    box-shadow: 0 2px 3px rgba(0,0,0,.1);
    transition: background .2s
}

.xfilter__filterItem-group:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    content: "\f078";
    font-family: 'font awesome 5 pro';
    font-weight: 600;
    font-size: 12px;
    transition: transform .3s
}

.xfilter__filterItem.xf-open .xfilter__filterItem-group:after {
    transform: rotate(180deg)
}

.xfilter__filterItem-group:hover {
    background: var(--bg-lighter-2)
}

.xfilter__filterItem-label {
    font-size: 15px;
    line-height: 36px;
    color: var(--tt);
    cursor: inherit
}

.xfilter__filterItem.xf-active .xfilter__filterItem-label {
    font-size: 12px;
    line-height: inherit;
    opacity: .4
}

.xfilter__filterItem-content {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.xfilter__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-lighter);
    box-shadow: 0 3px 14px rgba(0,0,0,.8);
    border-top: 2px solid #d95e01;
    z-index: 98;
    border-radius: 0 0 3px 3px
}

.xfilter__filterItem.xf-open .xfilter__dropdown {
    display: block
}

.xfilter__dropdown-search {
    display: block;
    width: 100%;
    padding: 0 10px 0 40px;
    height: 35px;
    background: var(--bg) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARFJREFUeNps0cFLAkEUx/HZFApNOnbUg+AtOhoIUcdIEMKbd10xgs5d/AMMOrTrvyAEHUNIRBCEEItuHQLxD5Ak6tj6ffhGltwHH2bWnd+8cdYJgsBI+b5fYmjiwKzqBbeu63ZMqBwJsLjF/BpfeMU2DpFAg9D9OuB5Xk0aYIwqLyfascDQRhYFfpf3ZgtXmKNsF0sxHzLUtNslGzg2kMM7C6Zms94wwxFSNiDJuImuHe3wg8AGRsjT8jQicIx9DDjBt9Gdb9DDHSE584dudIKWBp/+X2udub26T8SQCXV6RIUuv07owxUZzvUP/qGLPmSzop7iYh2wRXBPr3Whz7sM8rXP8LwRiCpCSYYHpJcCDADilV4AMbStnwAAAABJRU5ErkJggg==) no-repeat 14px 50%;
    color: var(--tt);
    border: none;
    border-bottom: 1px solid #151515;
    font-size: 13px;
    font-family: inherit
}

.xfilter__dropdown-list {
    list-style: none;
    margin: 0;
    padding: 5px 0;
    max-height: 410px;
    overflow: auto
}

.xfilter__dropdown-list::-webkit-scrollbar {
    width: 6px;
    background: var(--ui-bg-darker)
}

.xfilter__dropdown-list::-webkit-scrollbar-thumb {
    background-color: var(--tt-darker);
    border: 0
}

.xfilter__dropdown-listItem {
    position: relative;
    display: flex;
    height: 40px;
    font-size: 14px;
    line-height: 17px;
    padding: 0 15px 0 43px;
    align-items: center;
    cursor: pointer;
    transition: background .2s
}

.xfilter__dropdown-listItemValue::first-letter {
    text-transform: uppercase
}

.xfilter__dropdown-listItem:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 15px;
    box-sizing: border-box;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 2px
}

.xfilter__dropdown-listItem.is-active {
}

.xfilter__dropdown-listItem.is-active:after {
    content: '\f00c';
    font-family: 'font awesome 5 pro';
    border-color: transparent;
    background: #d95e01;
    color: #fff;
    font-size: 11px;
    line-height: 13px;
    text-align: right
}

.xfilter__dropdown-listItem:hover {
    background: var(--bg)
}

.xfilter__dropdown-range {
    padding: 12px
}

.xfilter__dropdown-rangeBlock {
    position: relative
}

.xfilter__dropdown-rangeBlock+.xfilter__dropdown-rangeBlock {
    margin-top: 8px
}

.xfilter__dropdown-rangeLabel {
    position: absolute;
    top: 0;
    left: 12px;
    font-size: 13px;
    opacity: .6
}

.xfilter__dropdown-rangeInput {
    height: 46px!important;
    padding: 13px 12px 0!important
}

.overlay {
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .6;
    background-color: #000;
    cursor: pointer;
    display: none
}

.mobile-menu {
    width: 280px;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 20px;
    z-index: 999;
    position: fixed;
    left: -320px;
    top: 0;
    transition: left .4s;
    background-color: var(--bg-lighter);
    color: var(--tt)
}

.mobile-menu.is-active {
    left: 0
}

.mobile-menu-close {
    cursor: pointer;
    display: block;
    left: 280px;
    top: -40px;
    position: fixed;
    z-index: 999;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    opacity: 0;
    background-color: #e84e36;
    color: #fff;
    transition: top .4s,opacity .4s
}

.mobile-menu-close.is-active {
    top: 0;
    opacity: 1
}

body.mobile-menu-is-opened {
    overflow: hidden;
    width: 100%;
    height: 100%
}

.mobile-menu .header__menu {
    margin: 0;
    padding: 10px 20px;
    display: flex;
    background: var(--bg-3);
    width: calc(100% + 40px);
    margin: -10px -20px 25px;
    max-width: none
}

.mobile-menu .header__menu>li {
    width: 100%;
    margin: 0;
    padding: 0
}

.mobile-menu .header__menu>li>a {
    height: 40px
}

.mobile-menu .header__menu .nav__list {
    position: static;
    width: calc(100% + 40px);
    opacity: 1;
    visibility: visible;
    background-color: var(--bg);
    box-shadow: none;
    margin: 10px -20px;
    padding: 10px
}

.mobile-menu .header__menu .nav__list a {
    background-color: var(--bg-lighter);
    padding: 6px
}

.mobile-menu .header__menu>li:first-child {
    order: 10
}

.mobile-menu .header__menu li>div {
    display: none
}

@media screen and (max-width: 1400px) {
    .wrapper-container {
        max-width:1260px
    }

    .cols {
        grid-template-columns: 340px minmax(0,1fr);
        grid-gap: 50px 30px
    }
}

@media screen and (max-width: 1220px) {
    body {
        background-image:none
    }

    .wrapper {
        padding: 0;
        background-image: none;
        overflow: hidden
    }

    .wrapper-container {
        max-width: 1000px
    }

    .header__menu {
        display: none
    }

    .header {
        padding-top: 15px;
        padding-bottom: 15px
    }

    .header__search {
        width: auto;
        flex: 1 1 0;
        max-width: 100%;
        min-width: 60px
    }

    .header__btn-menu {
        font-size: 40px;
        cursor: pointer;
        display: block;
        margin-left: 20px
    }

    #scrolltop {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px
    }

    .carou__content:not(.owl-carousel)>.poster {
        width: calc((100% - 100px)/6)
    }

    .cols {
        grid-gap: 50px 20px;
        grid-template-columns: 280px minmax(0,1fr)
    }

    .lightstat_sander_head {
        padding-right: 20px;
        font-size: 16px
    }

    .scroller-2,.scroller:not(#owl-carou) {
        white-space: nowrap;
        overflow-y: hidden;
        overflow-x: auto;
        display: block!important;
        grid-gap: 0 0!important
    }

    .scroller-2>.poster,.scroller:not(#owl-carou)>.poster {
        display: inline-block;
        vertical-align: top;
        width: 132px;
        margin-right: 13px;
        white-space: normal
    }

    .footer__desc {
        width: 100%;
        text-align: center;
        margin-bottom: 30px
    }

    .footer {
        text-align: center
    }

    .footer .soc-channels {
        justify-content: center
    }

    .footer .soc-channels__item {
        margin: 0 10px
    }

    .scroller-2,.scroller:not(#owl-carou) {
        padding-bottom: 15px;
        scrollbar-width: thin;
        scrollbar-color: var(--tt-darker) var(--bdc)
    }

    .scroller::-webkit-scrollbar {
        width: 12px;
        height: 8px
    }

    .scroller::-webkit-scrollbar-thumb {
        border-radius: 0;
        background-color: var(--tt-darker);
        border: 0
    }

    .scroller::-webkit-scrollbar-track {
        background-color: var(--bdc)
    }

    .scroller:not(#owl-carou) {
        margin-bottom: -30px;
        padding-bottom: 30px
    }

    .readed__info li>span:first-child {
        display: inline;
        width: auto
    }

    .sect__genres {
        display: none
    }

    .sect__genres.is-active {
        display: grid
    }

    .tabs__block::before {
        display: none
    }

    .page__left {
        padding: 0;
        border: 0;
        background: 0 0;
        margin-bottom: 10px
    }

    .page__grid {
        grid-template-columns: minmax(0,1fr);
        margin-left: -20px;
        margin-right: -20px;
        grid-template-areas: "pheader" "pleft" "pmain";
        padding: 30px 20px;
        background-color: var(--bg-lighter);
        border: 1px solid var(--bdc-lighter);
        border-left: 0;
        border-right: 0;
        grid-template-rows: auto
    }

    .page__comments {
        margin: 0 0 -40px
    }
}

@media screen and (max-width: 1220px) and (min-width:760px) {
    .page__left {
        display:grid;
        grid-gap: 20px 20px;
        grid-template-columns: 270px minmax(0,1fr);
        grid-auto-flow: row dense
    }

    .page__poster {
        grid-row: span 2;
        margin: 0
    }

    .page__btns {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 10px;
        margin-bottom: -20px
    }

    .page__btns>* {
        flex: 1 1 0;
        min-width: auto;
        max-width: 100%;
        white-space: nowrap
    }
}

@media screen and (max-width: 950px) {
    .wrapper-container {
        max-width:768px
    }

    .carou__content:not(.owl-carousel)>.poster {
        width: calc((100% - 80px)/5)
    }

    .cols {
        grid-gap: 50px 20px;
        grid-template-columns: minmax(0,1fr)
    }

    .col-main {
        grid-column: 1/-1
    }

    .col-side {
        order: 0
    }

    .sect--latest .block-bg {
        border-radius: 0;
        margin-left: -20px;
        margin-right: -20px
    }

    .tabs__select {
        gap: 20px 20px;
        text-align: center
    }

    .tabs__select>li {
        flex: 1 1 0;
        min-width: auto;
        max-width: 100%;
        white-space: nowrap;
        padding-left: 0;
        padding-right: 0;
        font-size: 12px;
        box-shadow: inset 0 -2px var(--bdc)
    }

    .page__rating .rating {
        left: -25px
    }

    .page .sect--hot .sect__content {
        margin-bottom: 0!important
    }

    .page__activity {
        grid-template-columns: minmax(0,1fr)
    }
}

@media screen and (max-width: 760px) {
    .wrapper-container {
        max-width:640px
    }

    .header__logo {
        flex: 1 1 0;
        min-width: 40px;
        max-width: 100%
    }

    .header__search {
        min-width: 100%;
        margin: 0;
        margin-top: 15px;
        order: 10
    }

    .carou__content:not(.owl-carousel)>.poster {
        width: calc((100% - 40px)/3)
    }

    .footer__menu {
        width: 100%;
        margin-bottom: 30px
    }

    .footer__menu:last-child {
        margin-bottom: 0
    }

    .footer__desc br {
        display: none
    }

    .readed {
        padding: 10px;
        align-items: center
    }

    .readed__desc {
        min-width: 100%;
        margin-bottom: 10px;
        order: -1;
        display: block
    }

    .readed__progress {
        flex: 1 1 0;
        min-width: 100px;
        max-width: 100%;
        margin-left: -10px
    }

    .readed__meta {
        margin-bottom: 6px;
        font-size: 11px
    }

    .readed__title {
        font-size: 16px;
        font-weight: 700;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis
    }

    .readed__info {
        font-size: 13px
    }

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

    h1.sect__title {
        text-align: center
    }

    .sect__sort {
        width: 100%;
        line-height: 3;
        margin-top: 10px
    }

    .sect__sort a {
        margin: 0 10px 0 0
    }

    .page__grid {
        padding-top: 20px
    }

    .page__poster {
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto
    }

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

    .page__header,.cols--full .speedbar {
        text-align: center
    }

    .speedbar {
        padding-top: 6px
    }

    .page__text .quote {
        margin-left: var(--indent-negative);
        margin-right: var(--indent-negative);
        padding-right: var(--indent)
    }

    .full-text h1,.full-text h2,.full-text h3,.full-text h4,.full-text h5 {
        font-size: 18px
    }

    .add-comments-form__input {
        min-width: 100%;
        margin: 0 0 10px;
        order: -1
    }

    .add-comments-form__btn123 {
        width: 100%;
        order: 10
    }

    .add-comments-form .form__row--protect .form__caption {
        width: 100%;
        margin: 0 0 10px
    }

    .mass_comments_action,.comment-item__controls123 li:not(.comment-item__controls-complaint),.comment-item__rating-caption,.comment-item__controls .checkbox {
        display: none
    }
}

@media screen and (max-width: 590px) {
    .wrapper-container {
        max-width:480px
    }

    .login {
        max-width: 90%;
        max-height: 90%;
        overflow-x: hidden;
        overflow-y: auto
    }

    .login__header,.login__content,.login__social,.pages-bg {
        padding-left: 20px;
        padding-right: 20px
    }

    #dle-content,.d-grid,.sect__genres,.searchXfield {
        grid-template-columns: repeat(auto-fill,minmax(140px,1fr))
    }

    .header__logo.uauth .logo__title {
        font-size: 0
    }

    .comment-item__rating {
        font-size: 0
    }

    .page__rating {
        order: 10
    }

    .page__rating-votes {
        text-align: right
    }

    .page__rating .rating {
        left: 0
    }

    .page__activity-col {
        padding: 0;
        background: 0 0
    }

    .page__activity-title {
        font-size: 14px
    }

    .page__comments-title {
        font-size: 18px
    }

    .comment-item {
        margin: 0 -20px 5px;
        border-radius: 0
    }

    .cl__item {
        gap: 10px 10px;
        padding: 10px;
        border: 1px solid var(--bdc);
        margin-bottom: 10px
    }

    .cl__item>*,.cl__itemAction {
        margin: 0
    }

    .cl__item-num {
        order: -2
    }

    .cl__item-title {
        min-width: calc(100% - 56px);
        order: -1;
        font-weight: 600;
        font-size: 16px
    }

    .cl__item-title a {
        padding: 3px 0;
        display: block
    }

    .cl__item-author {
        flex: 1 0 50%
    }

    .cl__item-date {
        flex: 1 0 40%
    }

    .cl__item-actions {
        gap: 5px 5px;
        display: flex;
        align-items: center
    }
}

@media screen and (max-width: 470px) {
    .wrapper-container22 {
        max-width:360px
    }

    .header__logo {
        margin: 0
    }

    .header__logo .logo__title {
        font-size: 16px;
        letter-spacing: 1px
    }

    .header__logo>* {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .header__btn-login {
        font-size: 0;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin: 0 -10px 0 20px;
        padding: 0;
        background-color: var(--bdc);
        text-align: center;
        line-height: 40px
    }

    .header__btn-login .fal {
        font-size: 16px;
        margin: 0;
        width: 40px;
        line-height: 40px
    }

    .carou__content:not(.owl-carousel)>.poster {
        width: calc((100% - 20px)/3);
        margin-right: 10px
    }

    .scroller .poster__title {
        font-size: 14px
    }

    .scroller .poster__subtitle {
        font-size: 12px
    }

    .scroller>.poster {
        width: calc((100vw - 20px)/3)
    }

    .header__btn-ctrl--od {
        display: none
    }

    .page__grid {
        display: block
    }

    .page__grid>*+* {
        margin-top: 20px
    }
}

.favorites__movetoList {
    gap: 10px 10px
}

.favorites__movetoList button {
    border-radius: 4px
}

@media screen and (max-width: 590px) {
    .comix__fullstory .cl__actions {
        gap:10px 10px;
        flex-wrap: wrap
    }

    .comix__fullstory .cl__actions button,.favorites__movetoList li,.favorites__tabs-item {
        margin: 0;
        flex: 1 0 auto;
        min-width: auto;
        white-space: nowrap;
        padding: 0 10px
    }

    .comix__fullstory .cl__actions button span {
        display: none
    }

    .favorites__movetoList li,.favorites__tabs-item {
        padding: 0
    }

    .favorites__movetoList button {
        width: 100%
    }

    .favorites__tabs {
        gap: 10px!important;
        flex-wrap: wrap!important;
        overflow: visible!important
    }

    .favorites__tabs-item a {
        text-align: center;
        padding: 10px!important;
        border-radius: 4px;
        background-color: var(--bg-lighter)!important;
        color: var(--tt)!important
    }

    .favorites__tabs-item.is-active a {
        color: #fff!important;
        box-shadow: none!important;
        background-color: var(--accent)!important
    }
}

.wrapper-container {
    display: block!important
}

.content {
    min-height: 80vh
}

#NoPoster {
    width: 240px;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #fff;
    padding-left: 41px
}

#NoPoster::before {
    content: "ÐŸÐ¾ÑÑ‚ÐµÑ€ Ð½Ðµ Ð½Ð°Ð¹Ð´ÐµÐ½";
    text-align: center;
    font-size: 16px;
    font-weight: 700
}

#NoPoster::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0
}

.mce-accordion summary {
    cursor: pointer
}

.self_delete_link {
    border: 0;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    padding: 12px 27px;
    border-radius: 10px;
    outline: none;
    background-color: #f44336;
    color: #fff;
    text-shadow: 0 1px #333;
    text-decoration: none!important;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.2);
    box-sizing: border-box;
    transition: all ease .1s;
    transition: all ease .1s
}

.title_spoiler svg {
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 7px;
    height: 16px;
    width: 16px
}
