.wrapper {
    min-width: 320px;
    position: relative;
    background: url(../images/bg.png);
    padding-top: 40px;
    padding-bottom: 40px;
}

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

.wrapper-main {
    min-height: 100vh;
    background-color: var(--bg-2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
    border-radius: 10px;
}

.header {
    padding: 0 var(--indent);
    background-color: var(--bg);
    position: relative;
    z-index: 100;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid var(--bdc);
}

.content {
    padding: 20px var(--indent);
    padding-bottom: 60px;
    min-height: 80vh;
}

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

.footer {
    padding: 20px var(--indent);
    background-color: var(--bg-dark);
    color: var(--tt-dark);
    border-radius: 0 0 10px 10px;
}

.footer__bottom {
    margin-top: 16px;
    gap: 20px;
}

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

.logo {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    margin-right: 40px;
    color: var(--tt-3) !important;
}

.header__btn-login {
    height: 30px;
    border-radius: 4px;
    font-size: 12px;
    margin-left: 10px;
    font-weight: 500;
    padding: 0 10px;
}

.theme-toggle {
    margin-left: 10px;
    font-size: 16px;
    display: grid;
    place-items: center;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    box-shadow: 0 0 0 1px var(--bdc);
    padding: 0;
    color: var(--tt);
    background-color: var(--bg);
}

.dt-is-active .theme-toggle .fal::before {
    content: "\f186";
}

.header__menu {
    gap: 20px;
    position: relative;
}

.header__menu>li>a {
    font-weight: 600;
    color: var(--tt-3);
    height: 100px;
    display: flex;
    align-items: center;
}

.header__menu>li.header__menu--fw400>a {
    font-weight: 400;
}

.header__menu-hidden {
    position: absolute;
    top: 80%;
    left: 0;
    z-index: 100;
    border-radius: 6px;
    background-color: var(--bg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 15px 20px;
    display: grid;
    gap: 5px 20px;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    display: none;
}

.header__menu-hidden a {
    display: block;
    padding: 5px 10px;
    border-radius: 4px;
}

.header__menu>li:hover .header__menu-hidden {
    display: grid;
}

.header__menu>li:hover>a {
    color: var(--accent-red);
}

.header__menu-hidden a:hover,
.theme-toggle:hover {
    background-color: var(--accent-red);
    color: #fff;
}

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

.header__search input,
.header__search input:focus {
    padding: 0 30px 0 10px;
    border-radius: 4px;
    background: var(--bg);
    box-shadow: 0 0 0 1px var(--bdc);
    color: var(--tt);
    height: 30px;
    line-height: 30px;
}

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

.header__search button {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    width: 30px;
    height: 30px;
    background: none;
    color: var(--tt-3);
    font-size: 12px;
}

.carou {
    background-color: var(--bg);
    padding: 20px 60px;
}

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

.carou__content>.poster {
    width: calc((100% - 120px)/7);
    flex-shrink: 0;
    margin-right: 20px;
}

.carou .poster__title {
    font-size: 12px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.carou .poster__subtitle {
    font-size: 10px;
    font-weight: 400;
}

.carou .has-overlay__icon {
    padding: 0;
}

.carou .poster__fav {
    top: 140px;
}

.carou .poster__label {
    background-color: var(--bg);
    color: var(--tt-3);
}

.carou .poster__series {
    left: 5px;
    bottom: 5px;
    border-radius: 3px;
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.carou .poster__series div {
    display: inline;
    margin-left: 6px;
}

.grid-collectons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
}

.coll {
    display: block;
    padding-top: 0;
    height: 160px;
    text-align: center;
}

.coll__title {
    position: absolute;
    inset: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    z-index: 5;
}

.coll__title:hover {
    background-color: var(--accent-red);
    color: #fff;
}

.grid-items>.coll,
#dle-content>.coll {
    grid-column: span 2;
}

.sect:not(:last-child) {
    margin-bottom: 40px;
}

.sect__header {
    margin-bottom: 20px;
    gap: 10px;
}

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

.sect__ctrl {
    margin-top: -6px;
    gap: 10px;
}

.sect__ctrl-menu {
    gap: 20px 20px;
    font-size: 13px;
}

.sect__ctrl-menu--main {
    font-weight: 600;
}

.sect__ctrl-menu label {
    position: relative;
    display: block;
}

.sect__ctrl-menu label input {
    display: block;
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.sect__ctrl-menu a,
.sect__ctrl-menu span,
.sect__ctrl-menu label div {
    height: 30px;
    display: flex;
    align-items: center;
}

.sect__ctrl-menu a.is-active,
.sect__ctrl-menu span.is-active,
.sect__ctrl-menu label input:checked+div {
    background-color: var(--bg-dark);
    color: var(--tt-dark);
    border-radius: 4px;
    padding: 0 10px;
}

.sect__ctrl-menu a:not(.is-active):hover,
.sect__ctrl-menu span:not(.is-active):hover,
.sect__ctrl-menu label div:hover {
    color: var(--accent-red);
}

.sect__link {
    display: flex;
    align-items: center;
    height: 30px;
    border-radius: 4px;
    padding: 0 10px;
    font-size: 12px;
    background-color: var(--bg);
    color: var(--tt-2);
    gap: 10px;
}

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

.sect__content--carousel:not(.owl-carousel)>.poster {
    flex-shrink: 0;
    margin-right: 20px;
    width: calc((100% - 100px)/6);
}

.sect--carou .sect__header {
    padding-right: 80px;
}

.descr {
    display: grid;
    grid-gap: 20px;
    line-height: 1.7;
    color: var(--tt);
    padding-top: 60px;
}

.descr h1,
.descr h2,
.descr h3 {
    font-weight: 500;
    font-size: 18px;
    color: var(--tt);
    line-height: 1.3;
}

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

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

.descr ul li::before {
    content: "\f00c";
    font-weight: 300;
    font-family: 'Font Awesome 5 Pro';
    color: var(--tt-accent);
    position: absolute;
    left: 0;
    top: 0;
}

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

.speedbar .fal {
    margin-right: 8px;
    color: var(--tt-accent);
}

.speedbar a:hover {
    text-decoration: underline;
}

.poster {
    position: relative;
}

.poster__img {
    border-radius: 5px;
    margin-bottom: 15px;
}

.poster__label {
    position: absolute;
    left: 5px;
    top: 5px;
    border-radius: 3px;
    height: 20px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    font-size: 10px;
    background-color: var(--bg-dark);
    color: var(--tt-dark);
    z-index: 10;
    pointer-events: none;
}

.poster__label--white {
    background-color: var(--bg);
    color: var(--tt-3);
}

.poster__series {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--bg);
    padding: 5px 8px;
    font-size: 10px;
    font-weight: 500;
    border-top-right-radius: 5px;
}

.has-overlay__icon {
    position: absolute;
    z-index: 3;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding-bottom: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.has-overlay__icon::before {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff url(../images/play.svg) center center / 14px no-repeat;
    content: '';
}

.poster__ratings {
    color: #fff;
    font-size: 11px;
    text-align: center;
    line-height: 1.6;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
}

.poster__btn-info,
.poster__fav a {
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    border-radius: 3px;
    background-color: var(--accent-red);
    color: #fff;
    gap: 5px;
    font-size: 12px;
    white-space: nowrap;
}

.poster__fav a {
    background-color: #fff;
    color: #000;
}

.poster__btn-info,
.poster__fav {
    position: absolute;
    left: 50%;
    top: 50px;
    z-index: 11;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -30px);
    transition: all 0.2s ease-in-out;
}

.poster__fav {
    top: 146px;
    transform: translate(-50%, 30px);
}

.poster:hover .poster__fav,
.poster:hover .poster__btn-info {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}

.poster:hover .poster__btn-info {
    transition-delay: 0.2s;
}

.poster__fav a::before {
    content: '';
    background: url(../images/heart.svg) 0 0 / contain no-repeat;
    width: 16px;
    height: 16px;
}

.has-overlay:hover .has-overlay__icon {
    opacity: 1;
}

.poster:hover .poster__series {
    opacity: 0;
}

.poster__fav a:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

.poster__btn-info:hover {
    background-color: var(--bg-dark);
}

.poster__link {
    display: block;
}

.poster__link::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 5;
}

.poster__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--tt-accent);
}

.poster__subtitle {
    color: var(--tt-2);
    font-size: 11px;
    font-weight: 500;
    margin-top: 6px;
}

.th-active {
    z-index: 100;
}

.th-text {
    display: none;
    background-color: var(--bg);
    cursor: auto;
    padding: 20px;
    text-align: left;
    position: absolute;
    z-index: 1000;
    left: 100%;
    top: 0;
    width: 460px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    min-height: 100px;
}

.th-text::after {
    content: "";
    border: 10px solid var(--bg);
    position: absolute;
    top: 24px;
    right: 100%;
    border-left-color: transparent;
    border-bottom-color: transparent;
}

.pop-left .th-text::after {
    border: 10px solid var(--bg);
    border-right-color: transparent;
    border-bottom-color: transparent;
    left: 100%;
    right: auto;
}

.pop-left .th-text {
    left: auto;
    right: 100%;
}

.th-text-loader {
    text-align: center;
    font-size: 18px;
    color: var(--tt-accent);
    padding-top: 20px;
}

.th-text-header {
    display: block;
    text-decoration: underline;
    font-weight: 500;
    font-size: 18px;
    color: var(--tt-accent);
}

.th-text .not-shown-ajax,
.th-text .pmovie__header h1 a {
    display: none;
}

.th-text .pmovie__text {
    font-size: 13px;
    line-height: 1.4;
    margin: 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.th-text .pmovie__list {
    background: none;
    padding: 0;
    font-size: 13px;
}

.th-text .pmovie__list li+li {
    margin-top: 5px;
}

.th-text button {
    width: 100%;
    margin-top: 15px;
    gap: 10px;
}

.card {
    padding: 20px;
    border-radius: 5px;
    background-color: var(--bg);
    display: grid;
    gap: 15px 20px;
    grid-template-columns: 200px minmax(0, 1fr);
    grid-template-rows: min-content 1fr min-content;
    grid-template-areas: "cimg ctitle" "cimg cdesc" "cimg cbtm";
    position: relative;
}

.card__img {
    display: block;
    height: 300px;
    border-radius: 5px;
    grid-area: cimg;
    border: 1px solid var(--bdc);
}

.card .has-overlay__icon {
    padding: 0;
}

.card .poster__fav {
    left: auto;
    right: 20px;
    top: 20px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.card .poster__fav a:not(:hover) {
    background-color: var(--bg-2);
}

.card__title {
    display: block;
    grid-area: ctitle;
    margin-right: 130px;
}

a.card__title:hover {
    text-decoration: underline;
}

.card__title h3 {
    font-size: 18px;
    font-weight: 600;
}

.card__desc {
    grid-area: cdesc;
}

.card__list {
    display: grid;
    grid-gap: 6px 0;
    font-size: 13px;
}

.card__list li>span:first-child {
    font-weight: 500;
    margin-right: 3px;
}

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

.card__text {
    margin-top: 15px;
    -webkit-line-clamp: 4;
    line-height: 1.5;
}

.card__bottom {
    font-size: 12px;
    grid-area: cbtm;
    gap: 10px 20px;
}

.card__meta .fal {
    margin-right: 5px;
    opacity: 0.66;
}

.card__btn {
    height: 30px;
    padding: 0 10px;
}

.card__fav {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 18px;
    overflow: hidden;
    color: var(--tt-lighter);
}

.card__fav .fas {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 0 25px 25px;
}

.card__fav .fas::after {
    content: '';
    background: var(--gradient);
    box-shadow: var(--bsh-2);
    z-index: -1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: skew(45deg);
    transform-origin: 0 0;
}

.card__fav .fas.added::after {
    background: var(--gradient-accent);
}

.card__rating-ext {
    font-size: 14px;
    font-weight: 500;
    color: var(--tt);
    gap: 3px;
    position: relative;
    display: flex;
    align-items: center;
    line-height: 1;
    white-space: nowrap;
}

.card__rating-ext>span {
    font-size: 11px;
    font-weight: 400;
}

.card__rating-ext::before {
    content: attr(data-text);
    display: inline-flex;
    height: 24px;
    align-items: center;
    border-radius: 3px;
    padding: 0 5px;
    font-size: 11px;
    margin-right: 3px;
}

.card__rating-ext.kp::before {
    background-color: #ff6600;
    color: #fff;
}

.card__rating-ext.imdb::before {
    background-color: #ffc107;
    color: #000;
}

.card__meta.flex-grow-1 {
    align-self: center;
    text-align: right;
    margin-right: -10px;
}

.linek {
    background-color: var(--bg);
    border-radius: 5px;
    padding: 10px 20px;
    gap: 0 !important;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
    display: flex !important;
}

.linek__img {
    width: 80px;
    height: 120px;
    margin: -10px -20px;
    margin-right: 20px;
}

.linek__title {
    color: var(--tt-accent);
    font-weight: 500;
    font-size: 15px;
    padding-right: 120px;
}

.linek__meta {
    margin-top: 10px;
    color: var(--tt-2);
    font-size: 12px;
}

.linek .card__bottom {
    margin-top: 10px;
}

.linek .poster__fav {
    right: 5px;
    top: 5px;
}

.count-items {
    counter-reset: num;
}

.count-items .linek::before {
    content: counter(num);
    counter-increment: num;
    color: var(--tt-2);
    opacity: 0.3;
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -10px;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 700;
}

.sb {
    background-color: var(--bg);
}

.sb__title {
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
}

.sb__nav {
    background-color: var(--bg-dark-lighter);
    padding: 16px 20px;
    border-top: 1px solid var(--bdc);
    display: grid;
    gap: 0 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sb__nav a {
    display: block;
    padding: 4px 0;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.upd__date {
    background-color: var(--bg-dark);
    color: var(--tt-dark);
    padding: 10px 20px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
}

.updli {
    position: relative;
}

.updli__link {
    padding: 10px 20px;
    border-bottom: 1px solid var(--bdc);
}

.updli__img {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    margin-right: 10px;
}

.updli__title {
    font-weight: 500;
    font-size: 13px;
}

.updli__season {
    margin-top: 6px;
    border-radius: 3px;
    background-color: var(--bg-2);
    padding: 3px 6px;
    font-size: 11px;
    display: inline-block;
}

.updli__meta {
    border-radius: 3px;
    background-color: var(--bg-2);
    margin-left: 10px;
    padding: 6px 10px;
    font-size: 11px;
    text-align: center;
    width: 80px;
    font-weight: 500;
}

.updli__voice {
    font-weight: 400;
    color: var(--tt-2);
    margin-top: 3px;
}

.upd.is-active .upd__items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.upd:not(.is-active)+.upd {
    margin-top: 5px;
}

.updli__fav {
    width: 50px;
    height: 50px;
    border-radius: 3px;
    inset: 10px auto auto 20px;
    color: #fff;
    font-size: 10px;
    z-index: 10;
    white-space: nowrap;
}

.updli__fav a {
    color: #fff;
    width: 100%;
    height: 100%;
    display: block;
    text-align: center;
}

.updli__fav a::before {
    content: '';
    background: #fff url(../images/heart.svg) center center / 12px no-repeat;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2px;
}

.updli:hover .updli__meta,
.updli:hover .updli__voice,
.upd__date:hover {
    background-color: var(--accent-red);
    color: #fff;
}

.upd__items {
    max-height: 460px;
    overflow-x: hidden;
    overflow-y: auto;
}

.sb+.sb {
    border-top: 1px solid var(--bdc);
}

.sblogin {
    padding: 20px;
}

.sblogin__img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: #000;
}

.sblogin__name {
    font-weight: 600;
}

.sblogin__name div:last-child {
    font-weight: 400;
    color: var(--tt-2);
    font-size: 11px;
    margin-top: 2px;
}

.sblogin__ctrl {
    gap: 10px;
    font-weight: 500;
    font-size: 11px;
    margin-left: 10px;
}

.sblogin__desc-btm {
    gap: 6px;
    margin-top: 6px;
}

.sblogin__desc-btm a,
.sblogin__desc-btm a span {
    border-radius: 3px;
    background-color: var(--bg-2);
    display: flex;
    align-items: center;
    padding: 0 6px;
    font-size: 11px;
    height: 20px;
    overflow: hidden;
}

.sblogin__desc-btm a span {
    margin-right: -6px;
    margin-left: 6px;
    background-color: var(--accent-red);
    color: #fff;
    border-radius: 0;
    font-size: 10px;
}

.sblogin a:hover {
    text-decoration: underline;
}

.footer__menu {
    gap: 20px 40px;
    font-weight: 400;
}

.footer__menu a {
    color: var(--tt-dark);
}

.footer__menu--fw600 {
    font-weight: 600;
}

.footer__text,
.footer__copyright {
    font-size: 13px;
}

.footer__soc {
    gap: 20px 15px;
}

.footer__soc img {
    display: block;
    height: 16px;
    opacity: 0.5;
}

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

.footer__soc a:hover img {
    opacity: 1;
}

.pagination__pages {
    text-align: center;
    padding-top: 40px;
    gap: 20px;
}

.pagination__pages>a,
.pagination__pages>span,
.pagination__pages-btn>a,
.pagination__pages-btn>span {
    height: 36px;
    font-weight: 600;
    color: var(--tt-3);
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination__pages-btn {
    font-size: 30px;
}

.pagination__pages>span:not(.nav_ext) {
    background: var(--bg-dark);
    color: #fff;
    min-width: 36px;
    padding: 0 10px;
}

.pagination__pages a:hover {
    color: var(--accent-red);
}

.pmovie {
    background-color: var(--bg);
    border-radius: 5px;
    padding: 20px;
}

.pmovie__main {
    display: grid;
    gap: 20px;
    grid-template-columns: 200px minmax(0, 1fr);
    grid-template-areas: "pimg pheader" "pimg plist";
    margin-bottom: 20px;
    grid-template-rows: min-content 1fr;
}

.pmovie__img {
    height: 300px;
    width: 200px;
    border-radius: 5px;
    border: 1px solid var(--bdc);
}

.pmovie__poster {
    grid-area: pimg;
    position: relative;
}

.pmovie__header {
    position: relative;
    padding-right: 130px;
    grid-area: pheader;
}

.pmovie__list {
    grid-area: plist;
}

.pmovie__header h1 {
    font-weight: 600;
    font-size: 22px;
}

.pmovie__header h1 a {
    font-size: 14px;
    margin-left: 10px;
    color: var(--tt-2);
}

.pmovie__main-info {
    font-weight: 500;
    font-size: 12px;
    color: var(--tt-2);
    margin-top: 4px;
}

.pmovie__header .poster__fav {
    left: auto;
    right: 0px;
    top: 0px;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.pmovie__header .poster__fav a:not(:hover) {
    background-color: var(--bg-2);
}

.pmovie__subtitle {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
}

.pmovie__descr+.pmovie__subtitle {
    margin-bottom: 20px;
    margin-top: 20px;
}

.pmovie__list {
    line-height: 1.5;
    font-size: 13px;
    word-wrap: break-word;
}

.pmovie__list li {
    position: relative;
    padding-left: 160px;
}

.pmovie__list li+li {
    margin-top: 6px;
}

.pmovie__list li>span:first-child {
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
}

.pmovie__list li a {
    color: var(--tt-accent);
    text-decoration: underline;
}

.pmovie__list li a:hover {
    text-decoration: none;
}

.pmovie__rating {
    position: relative;
    margin-top: 16px;
    font-size: 13px;
}

.pmovie__rating-caption {
    font-weight: 600;
    margin-bottom: 6px;
}

.pmovie__rating-votes {
    font-size: 12px;
    color: var(--tt-2);
    position: absolute;
    right: 0;
    top: 1px;
}

.pmovie__rating-score {
    position: absolute;
    right: 0;
    top: 25px;
    height: 28px;
    width: 28px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
    background-color: var(--bg-dark);
    color: #fff;
    display: grid;
    place-items: center;
}

.pmovie__player {
    position: relative;
    margin-bottom: 20px;
}

.tabs-block__select {
    gap: 10px;
    margin-bottom: 10px;
}

.tabs-block__select button {
    height: 30px;
    padding: 0 10px;
    border-radius: 3px;
    gap: 10px;
    background-color: var(--bg-2);
    color: var(--tt-2);
    font-weight: 500;
}

.tabs-block__select button.is-active,
.tabs-block__select button:hover {
    background: var(--bg-dark);
    color: #fff;
}

.pmovie__player-bottom {
    background-color: var(--bg-2);
    padding-left: 20px;
}

.ya-share2 {
    height: 24px;
    margin-left: 10px;
}

.ya-share2 a:not(:hover) {
    filter: grayscale(1);
    opacity: 0.66;
}

.pmovie__complaint a {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    font-size: 24px;
    background: var(--accent-red);
    color: #fff;
}

.pmovie__related {
    padding: 0 !important;
    background: none;
}

@media screen and (min-width: 760px) {
    .pmovie__related .grid-items {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 16px;
    }

    .pmovie__related .poster__img {
        margin-bottom: 8px;
    }

    .pmovie__related .has-overlay__icon {
        padding-bottom: 0;
        padding-top: 55px;
    }

    .pmovie__related .poster__btn-info {
        top: 32px;
        padding: 0 7px;
    }
}

.pactor .pmovie__header .poster__fav {
    position: static;
}

.pactor .pmovie__header .pmovie__btn-scroll {
    margin: 0;
    height: 40px;
    padding: 0 20px;
    margin-top: 20px;
    font-size: 16px;
    gap: 20px;
}

.pactor .poster .poster__ratings,
.pactor .poster .poster__fav {
    display: none;
}

.pactor .card,
.pactor .linek {
    padding: 0;
    background: none;
}

.full-text {
    line-height: 1.7;
    font-size: 14px;
    word-wrap: break-word;
}

.full-text a {
    text-decoration: underline;
    color: #5278b1;
}

.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: 500;
    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(0.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;
    background-color: #000;
}

.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;
    border: 2px solid var(--bg-2);
}

.page__comments-psform {
    padding: 15px;
    background-color: var(--bg-2);
}

.page__comments-psform-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 15px;
}

.page__comments-psform-form {
    background-color: var(--bg);
    cursor: pointer;
    color: var(--tt-2);
    font-size: 13px;
    padding: 15px;
}

.page__comments-title {
    font-size: 13px;
    color: var(--tt-2);
    padding: 15px;
}

.page__comments-title span {
    font-weight: 600;
    color: var(--tt-3);
}

#dle-comments-list .comments-tree-list:first-child,
#dle-comments-list #comment:first-child+.comments-tree-list {
    margin-top: -15px;
}

.page__comments-list {
    padding: 0;
}

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

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

.add-comments-form .form__input,
.add-comments-form__input,
.add-comments-form .form__textarea-inside textarea,
.mass_comments_action select {
    box-shadow: inset 0 0 0 1px #e3e3e3;
    border-radius: 0;
}

.add-comments-form__input {
    margin-left: 20px;
}

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

.mass_comments_action {
    display: flex;
    align-items: center;
    max-width: 800px;
    white-space: nowrap;
    padding: 15px;
}

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

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

.show-comms a {
    padding: 15px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-2);
    color: var(--tt-3);
    font-size: 13px;
}

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

.comment-item {
    border-bottom: 2px solid var(--bdc);
    padding: 15px;
    padding-bottom: 10px;
}

.comment-item__header,
.comment-item__main {
    position: relative;
    padding-left: 60px;
}

.comment-item__img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: -6px;
}

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

.comment-item__author,
.comment-item__author a {
    font-weight: 600;
    font-size: 14px;
    color: var(--tt-3);
}

.comment-item__date {
    color: var(--tt-2);
    font-size: 12px;
}

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

.comment-item__footer,
.comment-item__controls {
    gap: 10px;
    font-size: 12px;
}

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

.comment-item__rating a>span {
    font-weight: 600;
}

.comment-item__rating a::before {
    content: '';
    background: url(../images/heart.svg) 0 0 / contain no-repeat;
    width: 14px;
    height: 14px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.comment-item__controls a {
    color: var(--tt-2);
}

.comment-item__footer a:hover,
.comment-item__controls a:hover,
.show-comms a:hover,
.page__comments-psform-form:hover {
    text-decoration: underline;
}

.comment-item__controls .checkbox {
    transform: scale(0.8, 0.8);
    margin-right: -10px;
}

.comments-tree-list {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.comments-tree-list .comments-tree-list {
    padding-left: 50px;
    position: relative;
}

.comments-tree-item {
    display: block;
    margin: 0;
    padding: 0;
}

.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, 0.2), 0 15px 45px rgba(0, 0, 0, 1);
}

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

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

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

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

.login__content {
    padding: 20px 40px;
}

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

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

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

.login__input input {
    padding-left: 40px;
}

.login__row .fal {
    opacity: 0.5;
    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 5px;
}

.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, 0.1);
    font-size: 13px;
}

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

.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: 40px;
    height: 40px;
    border-radius: 5px;
    background: none;
    color: var(--tt);
    position: absolute;
    top: 0;
    font-size: 28px;
    margin-top: -40px;
}

.owl-prev {
    left: -50px;
}

.owl-next {
    right: -50px;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--bg-dark) !important;
    color: #fff !important;
}

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

.owl-dot {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    background: var(--bg);
    margin: 0 5px;
    box-shadow: var(--bsh-2);
}

.owl-dot.active,
.owl-dot:hover {
    background: var(--accent-green);
}

.sect--carou .owl-nav {
    left: auto;
    top: -10px;
    display: flex;
    gap: 10px;
}

.sect--carou .owl-prev,
.sect--carou .owl-next {
    position: static;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    font-size: 18px;
    background-color: var(--bg-dark);
    color: #fff;
}

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

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

.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: 0px;
    opacity: 1;
}

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

.mobile-menu .header__menu {
    margin: 0;
    display: block;
}

.mobile-menu .header__menu>li>a {
    height: 50px;
    border-bottom: 1px solid var(--bdc);
    padding: 0 20px;
}

.mobile-menu .header__menu-hidden a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 5px 0;
}

.mobile-menu .header__menu-hidden {
    background-color: var(--bg-2);
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    width: 100%;
    display: grid;
    border-radius: 0;
    gap: 5px 10px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    padding: 10px 20px;
    font-size: 12px;
}

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

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

    .wrapper-container,
    .header,
    .footer {
        max-width: 1000px;
        border-radius: 0;
    }

    .header .header__menu,
    .has-overlay__icon,
    .poster .poster__fav,
    .poster__btn-info,
    .cols__right .js-this-in-mobile-menu {
        display: none;
    }

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

    .header__btn-menu {
        display: flex;
        margin-left: 10px;
        padding: 0;
        width: 40px;
        font-size: 18px;
    }

    .header__btn-login {
        background-color: var(--bg);
        color: var(--tt-3);
        box-shadow: 0 0 0 1px var(--bdc);
    }

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

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

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

    .sect__ctrl-menu {
        min-width: 100%;
    }

    .cols {
        display: block;
    }

    .cols__right {
        margin-top: 60px;
    }
}

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

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

    .card__bottom .btn {
        width: 100%;
    }

    .card__meta.flex-grow-1 {
        margin: 0;
    }

    .card__text {
        -webkit-line-clamp: 3;
    }

    .linek__img {
        margin: 0px;
        margin-right: 10px;
    }

    .linek {
        padding: 10px;
    }

    .count-items .linek::before {
        right: 10px;
        margin-top: -20px;
    }
}

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

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

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

    .logo {
        flex: 1 1 0;
        min-width: 50px;
        max-width: 100%;
        margin-right: 20px;
    }

    .sect__ctrl-menu li,
    .sect__ctrl-menu li a,
    .sect__ctrl-menu li span,
    .sect__ctrl-menu label,
    .sect__ctrl-menu label div {
        justify-content: center;
        flex-grow: 1;
        text-align: center;
    }

    .footer__top,
    .footer__bottom,
    .footer__menu,
    .footer__text {
        justify-content: center;
        min-width: 100%;
        text-align: center;
    }

    .footer__menu {
        gap: 20px;
        margin-bottom: 20px;
    }

    .sect__ctrl-menu {
        gap: 10px;
    }

    .sect__ctrl-menu a,
    .sect__ctrl-menu span,
    .sect__ctrl-menu label div {
        background-color: var(--bg);
        color: var(--tt);
        border-radius: 4px;
        padding: 0 10px;
    }

    .card {
        grid-template-columns: 120px minmax(0, 1fr);
        grid-template-rows: min-content min-content 1fr;
        grid-template-areas: "cimg ctitle" "cimg cbtm" "cdesc cdesc";
        gap: 15px 10px;
    }

    .card__img {
        height: 180px;
    }

    .card__bottom {
        align-self: flex-end;
    }

    .card .poster__fav {
        right: auto;
        top: 100px;
        left: 150px;
    }

    .card__rating-ext span {
        display: none;
    }

    .card__title {
        padding: 0;
        margin: 0;
    }

    .linek {
        align-items: flex-start;
    }

    .linek .poster__fav {
        position: static;
        margin-top: 10px;
    }

    .linek__title {
        padding: 0;
    }

    .linek__meta {
        margin-top: 5px;
    }

    .linek .card__btn {
        margin-left: -90px;
        width: calc(100% + 90px);
    }

    .count-items .linek::before {
        right: 10px;
        margin-top: -5px;
        top: 10px;
        transform: none;
    }

    .pmovie {
        border-radius: 0;
        margin: 0 var(--indent-negative);
        margin-top: -20px;
    }

    .pmovie__main {
        grid-template-areas: "pimg pheader" "plist plist";
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 15px 10px;
    }

    .pmovie__header h1 {
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pmovie__list li {
        padding-left: 130px;
    }

    .pmovie__img {
        width: 120px;
        height: 180px;
    }

    .pmovie__rating {
        position: absolute;
        left: 100%;
        bottom: 0;
        margin: 0 0 0 10px;
        width: 190px;
    }

    .pmovie__rating--10-stars {
        bottom: 13px;
        width: 200px;
    }

    .pmovie__rating--4 {
        min-width: 190px;
        width: calc(100vw - 170px);
    }

    .pmovie__header {
        padding: 0;
    }

    .pmovie__header .poster__fav {
        position: static;
        margin-top: 20px;
        display: inline-flex;
    }

    .tabs-block__select button {
        flex-grow: 1;
    }

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

    .comments-tree-list .comments-tree-list {
        padding-left: 15px;
    }

    .show-comms a {
        margin: 0 var(--indent);
        margin-top: 15px;
        margin-bottom: -5px;
    }

    .page__comments {
        border: 0;
        margin-left: var(--indent-negative);
        margin-right: var(--indent-negative);
    }

    .page__comments-psform,
    .comment-item,
    .page__comments-title {
        padding-left: var(--indent);
        padding-right: var(--indent);
    }

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

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

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

    .mass_comments_action,
    .comment-item__controls {
        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;
    }

    .grid-items,
    #dle-content {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .sect--carou .sect__title {
        min-width: calc(100% + 80px);
        margin-right: -80px;
    }

    .pmovie__subtitle {
        font-size: 16px;
    }

    .pmovie__share-caption {
        display: none;
    }

    .pmovie__player-bottom,
    .tabs-block__content {
        margin-left: var(--indent-negative);
        margin-right: var(--indent-negative);
    }
}

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

    .carou__content>.poster,
    .sect__content--carousel:not(.owl-carousel)>.poster {
        width: calc((100% - 20px)/2);
    }

    .header__logo {
        font-size: 18px;
    }

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

    .header__search {
        margin-top: 10px;
    }

    .coll {
        height: 140px;
    }

    .cols__right {
        margin: 0 var(--indent-negative);
        margin-top: 40px;
    }

    .descr {
        padding-top: 40px;
    }

    .pagination__pages {
        padding-top: 20px;
    }

    .card__meta.flex-grow-1 {
        display: none;
    }

    .card__title h3 {
        font-size: 16px;
        padding: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .speedbar {
        margin-bottom: -20px;
    }

    .comment-item__date {
        width: 100%;
    }
}

@media screen and (min-width: 1220px) {
    .cols--no-cols {
        display: block;
    }

    .cols--no-cols .cols__right {
        margin-top: 60px;
    }

    .cols--no-cols .sb__grid,
    .cols--no-cols .upd.is-active .upd__items {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }
}

.sb__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    counter-reset: num;
}

.sb--mt {
    margin-top: 20px;
}

.sb--mt .sb__title {
    border-bottom: 1px solid var(--bdc);
}

.ftop-item .has-overlay__icon {
    padding: 0;
}

.ftop-item {
    border-bottom: 1px solid var(--bdc);
    padding: 15px;
}

.ftop-item,
.ftop-item__desc {
    position: relative;
    z-index: 5;
}

.ftop-item__img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    margin-right: 15px;
    z-index: 5;
}

.ftop-item::before {
    content: counter(num);
    counter-increment: num;
    color: var(--tt-2);
    opacity: 0.3;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    font-weight: 700;
}

.lcomm {
    font-size: 13px;
    border-bottom: 1px solid var(--bdc);
    padding: 15px;
}

.lcomm__link {
    display: block;
    font-size: 12px;
    color: var(--tt-3);
    padding-left: 1px;
    font-weight: 500;
}

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

.lcomm__text {
    margin: 8px 0 10px 0;
    opacity: 0.66;
    -webkit-line-clamp: 3;
}

.lcomm__author {
    font-weight: 500;
}

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

.header__login-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    margin-left: 20px;
}

.header__favlink {
    font-size: 24px;
    display: block;
    position: relative;
    margin-left: 20px;
}

.header__favlink span {
    border-radius: 3px;
    background-color: var(--accent-red);
    color: #fff;
    font-size: 10px;
    position: absolute;
    right: -10px;
    top: -1px;
    min-width: 20px;
    text-align: center;
}

.header__login-panel {
    position: absolute;
    right: 0;
    top: 100%;
    width: 240px;
    padding-bottom: 10px;
    background-color: var(--bg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-radius: 6px;
    margin-top: 15px;
}

.header__login-header {
    padding: 20px;
    color: var(--tt);
    font-weight: 600;
    gap: 20px;
    border-bottom: 1px solid var(--bdc);
    background-color: var(--ui-bg-darker);
    margin-bottom: 10px;
    border-radius: 6px 6px 0 0;
}

.header__login-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.header__login-group span {
    font-size: 12px;
    font-weight: 400;
    margin-top: 2px;
    display: block;
    color: var(--ui-tt-fade) !important;
}

.header__login-menu a {
    display: flex;
    align-items: center;
    min-height: 30px;
    padding: 0 20px 0 0;
}

.header__login-menu a i {
    width: 40px;
    text-align: center;
    color: var(--accent-red);
}

.header__login-menu-border {
    border-top: 1px solid var(--bdc);
    margin-top: 10px;
    padding-top: 10px;
}

.header__login-menu a span {
    font-size: 12px;
    margin-left: auto;
}

.header__login-menu a:hover {
    color: var(--accent-green);
}

.header__login-img:hover {
    opacity: 0.8;
}

.pmovie__franchise .sect__title {
    font-size: 18px;
    font-weight: 600;
}

.fr-list {
    counter-reset: num;
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: -30px;
}

.fr::before {
    content: counter(num);
    counter-increment: num;
    width: 40px;
    text-align: center;
    margin-top: -1px;
    color: var(--tt-accent);
    font-weight: 600;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
}

.fr {
    cursor: pointer;
    position: relative;
    padding: 6px 10px;
    padding-left: 40px;
    border-radius: 4px;
}

.fr:nth-child(2n) {
    background-color: var(--bg-2);
}

.fr__title {
    display: inline-block;
    max-width: 100%;
    line-height: 20px;
    height: 20px;
    font-weight: 400;
}

.fr:hover {
    box-shadow: 0 0 0 1px var(--bdc);
    z-index: 3;
}

.fr__year {
    color: var(--tt-2);
    margin: 0 10px;
    font-size: 13px;
}

.fr__rating {
    background: var(--accent-gray);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.clrrating-1,
.clrrating-2,
.clrrating-3,
.clrrating-4 {
    background-color: var(--accent-red);
}

.clrrating-7,
.clrrating-8 {
    background-color: var(--accent-green);
}

.clrrating-9,
.clrrating-10 {
    background-color: var(--accent-gold);
}

.is-active .fr__title {
    font-weight: 600;
    color: var(--tt-3);
}

.fr.is-active::before {
    content: "";
    display: block;
    left: 13px;
    background-size: 13px 15px;
    background-repeat: no-repeat;
    width: 13px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg width='13px' height='15px' viewBox='0 0 13 15' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='sprite' transform='translate(-170.000000, -111.000000)' fill='%23000000' fill-rule='nonzero'%3E%3Cg id='play_black' transform='translate(170.000000, 111.000000)'%3E%3Cpath d='M12.508581,8.36085 L1.50873,14.86076 C1.033253,15.14173 0.420037,14.98404 0.139074,14.50857 C0.048028,14.35449 0,14.1788 0,13.99984 L0,1 C0,0.44772 0.447715,0 1,0 C1.178966,0 1.354653,0.04803 1.50873,0.13908 L12.508581,6.63899 C12.984057,6.91996 13.141741,7.53317 12.860778,8.00865 C12.774963,8.15388 12.653806,8.27503 12.508581,8.36085 Z' id='Triangle'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.dt-is-active .fr.is-active::before {
    filter: invert(0.8);
}

.pmovie__btn-scroll {
    margin-top: 6px;
    padding: 0 10px;
    height: 24px;
    gap: 5px;
    font-size: 12px;
    border-radius: 3px;
}

.pmovie__rating-likes {
    gap: 10px;
    padding-top: 2px;
}

.pmovie__rating-likes>* {
    display: flex;
    align-items: center;
    height: 30px;
    border-radius: 4px;
    background-color: var(--bg-2);
    color: var(--tt-3);
    padding: 0 10px 0 0;
    border-radius: 4px;
    overflow: hidden;
}

.pmovie__rating-likes>* .fal {
    font-size: 16px;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    background-color: var(--accent-green);
    color: #fff;
}

.pmovie__rating-likes>*+* .fal {
    background-color: var(--accent-red);
}

.pmovie__rating-likes>a:hover {
    background-color: var(--bg-dark);
    color: #fff;
}

[data-actorimg] {
    position: relative;
    z-index: 999;
}

.actor-preview {
    position: absolute;
    left: 50%;
    bottom: 100%;
    margin-left: -100px;
    width: 200px;
    background-color: var(--bg);
    border-radius: 6px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.bottom .actor-preview {
    top: 100%;
    bottom: auto;
}

@media screen and (max-width: 760px) {
    .pmovie .poster__fav {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .pmovie__btn-scroll {
        margin: 0;
        flex-grow: 1;
        padding: 0;
    }

    .pmovie__btn-scroll span {
        display: none;
    }

    .pmovie__btn-scroll::before {
        content: attr(data-mobtext);
        display: inline;
    }
}

@media screen and (max-width: 590px) {
    .fr {
        margin: 0 var(--indent-negative);
        padding-right: 20px;
    }

    .header__favlink {
        margin-left: 10px;
    }

    .header__login-img {
        margin-left: 10px;
    }
}

.filter-block-toggle {
    border-radius: 0;
    width: 100%;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-block {
    margin-bottom: 40px;
    background-color: var(--bg);
    padding: 20px;
}

.filter-block__form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 10px 20px;
}

.filter-block__cell--full-width {
    grid-column: 1 / -1;
}

.filter-block__cell-caption {
    margin-bottom: 10px;
}

.filter-block__cell-content>* {
    width: 100%;
    display: block;
}

.filter-block__cell-content--two-columns {
    display: flex;
    justify-content: space-between;
}

.filter-block__cell-content--two-columns>* {
    width: calc((100% - 10px)/2) !important;
}

.filter-block__cell-content select,
.filter-block__cell-content input[type="text"],
.filter-block__cell-content--check-group {
    height: 36px;
    line-height: 34px;
    background-position: right 8px top 50%;
    background-color: var(--bg);
    color: var(--tt-2);
    border: 1px solid var(--bdc);
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
    padding: 0 7px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-block__cell-content select {
    padding: 0 20px 0 4px;
}

.filter-block__cell-content input[type="text"]::placeholder {
    opacity: 1;
    color: var(--tt-2);
    font-size: 14px;
}

.filter-block__cell-content input[type="text"]:focus::placeholder {
    opacity: 0;
}

.filter-block__cell-content label {
    position: relative;
    padding-left: 50px;
    cursor: pointer;
    height: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 14px;
}

.filter-block__cell-content label input {
    display: inline-block;
    appearance: none;
    -webkit-appearance: none;
    height: 20px;
    width: 40px;
    border-radius: 10px;
    background-color: var(--bg-2);
    cursor: pointer;
    transition: all .2s linear;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
}

.filter-block__cell-content label input::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 10px;
    position: absolute;
    left: 1px;
    top: 1px;
    background-color: var(--bg);
    transition: all .2s linear;
}

.filter-block__cell-content label input:checked {
    background-color: #6ab04c;
}

.filter-block__cell-content label input:checked::before {
    left: 21px;
}

.filter-block__cell-content input[type="button"],
.filter-block__cell-content button {
    cursor: pointer;
    height: 36px;
    display: inline-flex;
    justify-content: center;
    padding: 0 10px;
    box-shadow: none;
    border-radius: 4px;
}

.filter-block__cell-content input[type="button"][data-dlefilter="reset"] {
    background: var(--bg-2);
    color: var(--tt-2);
}

.filter-block__cell-content--check-group label {
    padding: 0;
    text-align: center;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 30px;
    max-width: 100%;
}

.filter-block__cell-content--check-group label input {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 5;
}

.filter-block__cell-content--check-group {
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

.filter-block__cell-content--check-group label+label {
    border-left: 1px solid var(--bg-2);
}

.filter-block__cell-content--check-group label span {
    height: 36px;
    font-size: 13px;
    display: block;
}

.filter-block__cell-content--check-group label input:checked+span {
    background-color: var(--bg-2);
    color: var(--tt);
}

@media screen and (max-width: 1220px) {
    .filter-block-toggle {
        display: flex;
        margin-bottom: 40px;
    }

    .filter-block {
        display: none;
        margin-top: -40px;
    }
}

.filter-link {
    cursor: pointer;
}

.info-block {
    background: var(--bg-2);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 10px 0;
    flex-flow: row wrap;
    font-size: 14px;
}

.info-block {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    border-radius: 8px;
    padding: 20px 20px 50px 20px;
    margin: 20px auto;
    transition: max-height 0.3s ease-out;
    color: #fff;
    margin: 10px;
    text-align: justify;
}

.info-block.expanded {
    max-height: 3000px;
}

.info-block .info-title {
    display: block;
    font-size: 17px;
    font-weight: bold;
    margin-bottom: 15px;
    font-weight: 600;
    text-decoration: underline;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
}

.info-block .faq-item {
    margin: 10px 0;
    line-height: 1.5;
}

.info-block .marker {
    font-size: 1.2em;
    margin-right: 10px;
}

.info-block .fade-effect {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--bg-2));
    backdrop-filter: blur(0.5rem);
    pointer-events: none;
    transition: opacity 0.3s ease-out;
    opacity: 1;
}

.info-block  .read-more {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--bg-2);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px;
    border: 1px solid #959595;
}

.info-block.expanded .fade-effect {
    display: none;
}

@keyframes highlight {
    0% { background-color: var(--bg-2); }
    50% { background-color: gray; }
    100% { background-color: var(--bg-2); }
}

.info-block.highlight {
    animation: highlight 0.5s ease-in-out 5;
}

.info-block a {
    font-weight: 700;
    color: var(--tt-accent);
}

.carousel-1 {
    border-left: 2px solid var(--bg-2);
    border-right: 2px solid var(--bg-2);
    margin: 20px 0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3), 0 16px 20px rgba(0, 0, 0, 0.2);
    background: var(--bg-2);
    padding: 5px 0;
}

.carousel-1 .owl-pic {
    border-left: 5px solid var(--bg-2);
    overflow: hidden;
    transform: skew(-10deg);
}

.carousel-1 .owl-pic img {
    width: 100%;
    transform: skew(10deg) scale(1.2);
    transition: 0.3s opacity ease, 0.3s transform ease;
    opacity: 0.6;
    height: 150px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .carousel-1 .owl-pic img {
        opacity: 1;
    }
}

.carousel-1 .owl-pic:hover img {
    opacity: 1;
    transform: skew(10deg) scale(1.3);
}

.carousel-1 .owl-nav .owl-prev,
.carousel-1 .owl-nav .owl-next {
    position: absolute;
    cursor: pointer;
    font-size: 60px !important;
    color: #FFF !important;
    top: 0;
    height: 100%;
    width: 70px;
    transition: 0.3s opacity ease;
    opacity: 0.2;
    margin: 0;
    padding: 0;
}

.carousel-1 .owl-nav .owl-prev:hover,
.carousel-1 .owl-nav .owl-next:hover {
    opacity: 1;
}

.carousel-1 .owl-nav .owl-prev,
.carousel-1 .owl-nav .owl-prev:hover {
    left: 0;
    background: linear-gradient(to right, #131313, rgba(19, 19, 19, 0));
}

.carousel-1 .owl-nav .owl-next,
.carousel-1 .owl-nav .owl-next:hover {
    right: 0;
    background: linear-gradient(to left, #131313, rgba(19, 19, 19, 0));
}

.rating-emoji {
    display: flex;
    background: black;
    border-radius: 3px;
    padding: 0 1%;
    flex-wrap: wrap;
}

.rating-emoji:after {
    content: '';
    display: block;
    clear: both;
}

.rating-emoji .rating-emoji-item {
    flex: 1 0 16%;
    float: left;
    width: 16.66%;
    text-align: center;
    text-decoration: none;
    padding: 10px 0 5px;
    font-size: 21px;
    line-height: 30px;
    position: relative;
    cursor: default;
}

a.rating-emoji-item:hover {
    cursor: pointer;
    background: rgba(0, 50, 100, .1);
    font-size: 30px;
}

.rating-emoji-item-count {
    display: block;
    font-size: 13px;
    line-height: 20px;
    margin-top: 3px;
    color: rgba(217, 217, 217, 0.5);
}

a.rating-emoji-item.active:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2px;
    right: 2px;
    height: 3px;
    background: #00bcd4;
}

.mydeaf-serial_list {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
}

.mydeaf-serial_list tr:first-child th:first-child {
    border-top-left-radius: 10px;
}

.mydeaf-serial_list tr:first-child th:last-child {
    border-top-right-radius: 10px;
}

.mydeaf-serial_list tr:last-child th:first-child {
    border-bottom-left-radius: 10px;
}

.mydeaf-serial_list tr:last-child th:last-child {
    border-bottom-right-radius: 10px;
}

.mydeaf-serial_allist {
    width: 50px;
    height: 75px;
    border-radius: 5px;
    border: var(--br-bg);
    margin: 5px;
}

.mydeaf-serial_list {
    width: 100%;
}

.mydeaf-serial_list table,
th,
tr {
    border: 1px solid #ffffff3d;
    font-size: 14px;
    font-weight: 400;
}

.dt-is-active .mydeaf-serial_list table,
th,
tr {
    border: 1px solid #6f6f6fb8;
    font-size: 14px;
    font-weight: 400;
}

.mylists-switch, .mylists-tabs {
	list-style: none;
    border-radius: 4px;
    font-size: 12px;
    width: 100%;
    text-align: center;
    padding: 10px;
}
.mylists-switch li, .mylists-tabs li {
	display: inline-block;
	margin: 0px 10px 0px 0px;
	text-decoration: none;
	border-bottom: 1px dotted;
	padding: 3px 10px;
}
.mylists-switch li:hover, .mylists-tabs li:hover {
	color: var(--tt-accent);
	cursor: pointer;
}
.mylists-switch li:last-child, .mylists-tabs li:last-child {
	margin: 0px;
}
.mylists-switch li.active, .mylists-tabs li.active {
	background: #373737;
	color: #fff;
	border: 0px;
	border-radius: 4px;    
}
.mylists-tabs li.active a {
	color: #fff;
}

.ongoing-chek:before{
    content:"";
    width: 10px;
    height: 10px;
    background:#02bc02;
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%
}

.player-container {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.player-reconstruction {
	width: 100%;
	height: 400px;
	background-color: black;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: gray;
	padding: 20px;
	box-sizing: border-box;
}

.player-reconstruction p {
	font-size: 1.5em;
	margin: 0;
	padding: 10px;
}

@media (max-width: 768px) {
	.player-reconstruction {
		height: auto;
		padding: 40px 20px;
	}
	.player-reconstruction p {
		font-size: 1.2em;
	}
}

.pmovie__share-caption {
	padding: 10px;
}

.center {
	text-align: center;
}

.ongoing-chek:before{
    content:"";
    width: 10px;
    height: 10px;
    background:#02bc02;
    display: inline-block;
    margin-right: 4px;
    border-radius: 50%
}

.smile {
    cursor: pointer;
    font-size: 25px;
    flex-grow: 1;
}

.pod-smiles {
    display: flex;
    width: 100%;
}

.smiles {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-bottom: 5px;
}

.margin-auto {
	margin: 0 auto;
}

.comment-item__img img {
    width: 90%;
    height: 90%;
    margin: 5%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    position: relative;
    z-index: 1;
}

.comment-item__img::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 50%;
    background: linear-gradient(45deg, rgb(255 0 31), rgb(132 18 48), rgba(0,255,255,1));
    background-size: 400% 400%;
    animation: rotateNeon 8s linear infinite, glowNeon 1.5s ease-in-out infinite;
    z-index: 0;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5),
                0 0 20px rgba(0, 255, 255, 0.3),
                0 0 30px rgba(0, 255, 255, 0.2);
}

.footer__text a {
	color: white !important;
}

.dt-is-active .footer__text a {
    color: var(--tt);
}

.mergerep {
    margin-right: 5px;
    font-size: 12px;
    color: black;
}

.dt-is-active .mergerep {
    color: gold;
}

@keyframes rotateNeon {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes glowNeon {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 255, 0.5),
                    0 0 20px rgba(0, 255, 255, 0.3),
                    0 0 30px rgba(0, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.7),
                    0 0 30px rgba(0, 255, 255, 0.5),
                    0 0 40px rgba(0, 255, 255, 0.3);
    }
}

.js-comm-author a {
	color: var(--tt);
	text-decoration: underline;
	font-size: 600
}

.bb-editor {
	margin: 10px;
}

.star-container {
	z-index: 9999
	position: relative;
	width: 12px;
	height: 12px;
}

.star-container .particle {
	position: absolute;
	margin-left: -10px;
	margin-top: 8px;
	font-size: 5px;
	color: gold;
	opacity: 0;
	transform: translate(-0%, -2%) scale(1);
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

/* Определение разных направлений */
.star-container .particle:nth-child(2) {
	animation-name: spray-right;
	animation-delay: 0s;
}
.star-container .particle:nth-child(3) {
	animation-name: spray-top-right;
	animation-delay: 0.8s;
}
.star-container .particle:nth-child(4) {
	animation-name: spray-top-left;
	animation-delay: 1.6s;
}
.star-container .particle:nth-child(5) {
	animation-name: spray-left;
	animation-delay: 2.4s;
}
.star-container .particle:nth-child(6) {
	animation-name: spray-bottom-left;
	animation-delay: 3.2s;
}

/* Анимации для разных направлений */
@keyframes spray-right {
	0% {
		opacity: 1;
		transform: translate(-100%, -20%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-50% + 10px), -0%) scale(2);
	}
}

@keyframes spray-top-right {
	0% {
		opacity: 1;
		transform: translate(0%, -0%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-100% + 20px), calc(-50% - 20px)) scale(2);
	}
}

@keyframes spray-top-left {
	0% {
		opacity: 1;
		transform: translate(-0% -0%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-0% - 20px), calc(-0% - 25px)) scale(2);
	}
}

@keyframes spray-left {
	0% {
		opacity: 1;
		transform: translate(-0%, -0%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-0% - 40px), -0%) scale(2);
	}
}

@keyframes spray-bottom-left {
	0% {
		opacity: 1;
		transform: translate(-0%, -0%) scale(1);
	}
	100% {
		opacity: 0;
		transform: translate(calc(-0% - 20px), calc(-0% + 30px)) scale(2);
	}
}

.dle-popup-userprofile .ui-dialog-buttonpane {
	display: none;
}

.displayoff {
	display: none;
}

.blacked {
    background: black !important;
}

.active {
	color: var(--tt-accent);
}

.info-language-off {
	background-color: black;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: gray;
    padding: 20px;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-icon {
    width: 15px;
    height: 15px;
    background-color: #5d5d5d;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.tooltip-icon:hover {
    background-color: #0056b3;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}