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

.wrapper__container {
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    z-index: 20;
    display: grid;
    grid-template-rows: auto 1fr auto;
    grid-template-columns: 260px minmax(0, 1fr);
    background-color: var(--bg);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    min-height: 100vh;
    grid-template-areas: "header header" "sidebar content" "sidebar footer";
}

.header {
    padding: 10px var(--indent);
    grid-area: header;
    color: #fff;
    --tt: #fff;
    z-index: 100;
    background-color: rgb(0 0 0 / 80%);
    backdrop-filter: blur(16px);
    position: sticky;
    left: 0;
    top: 0;
}

.content {
    grid-area: content;
    padding: 40px var(--indent);
}

.sidebar {
    grid-area: sidebar;
    background-color: var(--bg-darker);
    border-right: 1px solid var(--bdc);
    position: relative;
    z-index: 10;
}

.sidebar__sticky {
    padding: 30px;
    padding-top: 15px;
    position: sticky;
    left: 0;
    top: 70px;
    transition: top 0.3s;
}

.footer {
    padding: 30px var(--indent);
    gap: 15px 60px;
    border-top: 1px solid var(--bdc);
}

.header.sticky {
    translate: 0 -100%;
}

.wrapper:has(.header.sticky) .sidebar__sticky {
    top: 0;
}

.has-branding {
    padding-top: 140px;
}

.scrolltop {
    position: fixed;
    width: 40px;
    height: 40px;
    right: -60px;
    bottom: 10px;
    padding: 0;
    z-index: 990;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    transition: right 0.2s, opacity 0.2s;
}

.scrolltop.is-active {
    right: 10px;
    opacity: 1;
}




.logo {
    font-weight: 700;
    font-size: 22px;
    color: var(--tt);
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
    min-width: 200px;
}

.logo img {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    translate: 0 -50%;
    max-height: 100%;
}

.header__btn {
    margin-left: -18px;
}

.header__login a {
    opacity: 0.6;
}

.search-block {
    width: 600px;
    position: relative;
}

.search-block__input,
.search-block__input:focus {
    padding: 0 30px 0 50px;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 0;
    line-height: 50px;
}

.search-block__input:not(:focus)::placeholder {
    color: #fff;
    opacity: 0.6;
}

.search-block__btn {
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    font-size: 18px;
    color: #fff;
    width: 55px;
    border-radius: 20px;
}




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

.sect__header {
    margin-bottom: 20px;
}

.sect__title {
    font-size: 20px;
    font-weight: 500;
}

.sect__link {
    color: var(--accent);
}

.sect__btn {
    padding: 0;
}

.sect--rkl {
    border: 1px solid var(--bdc);
    min-height: 80px;
}

.sect--slider {
    margin: -40px var(--indent-negative);
    margin-bottom: 40px;
}

.sect--bg {
    border-radius: 10px;
    padding: 20px;
    background-color: var(--bg-darker);
}

.speedbar {
    color: var(--tt-fade);
    font-size: 14px;
    margin-bottom: 20px;
}

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

.speedbar::before {
    color: var(--accent-red);
    margin-right: 10px;
}

.descr {
    display: grid;
    gap: 10px;
    line-height: 1.6;
    padding-top: 40px;
    border-top: 1px solid var(--bdc);
    color: var(--tt-fade-0);
}

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

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

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

.descr ul li::before {
    content: "\f00c";
    color: var(--accent);
    position: absolute;
    left: 0;
    top: 0;
}

.sorter {
    position: relative;
    cursor: pointer;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 162px;
}

.sorter form {
    display: none;
    background-color: var(--bg);
    padding: 0px;
    box-shadow: var(--bsh);
    position: absolute;
    right: 0;
    top: 100%;
    width: 100%;
    z-index: 99;
    border-radius: 10px;
}

.sorter a {
    display: block;
    border-bottom: 1px solid var(--bdc);
    padding: 6px 10px;
}

.sort li.asc a::after,
.sort li.desc a::after {
    content: "\f063";
    font-family: "Font Awesome 5 Pro";
    display: inline-block;
    margin-left: 10px;
    font-weight: 300;
}

.sort li.desc a::after {
    content: "\f062"
}

.carou-6:not(.owl-carousel)>.item {
    width: calc((100% - 100px)/6);
    flex-shrink: 0;
}

.carou-4:not(.owl-carousel)>.item {
    width: calc((100% - 60px)/4);
    flex-shrink: 0;
}

.carou-1:not(.owl-carousel)>.item {
    width: 100%;
    flex-shrink: 0;
}

.carou-6:not(.owl-carousel),
.carou-4:not(.owl-carousel) {
    display: flex;
    overflow: hidden;
    gap: 20px;
}

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




.item__img {
    border-radius: 8px;
    margin-bottom: 11px;
}

.item__rating,
.item__btn-info {
    width: 40px;
    background-color: rgba(60, 60, 60, 0.6);
    color: #fff;
    backdrop-filter: blur(15px);
}

.item__rating svg {
    position: absolute;
    left: 0;
    top: 0;
    fill: none;
    transform: rotate(-90deg);
}

.item__rating svg circle {
    fill: inherit;
    stroke: none;
}

.item__rating svg circle:nth-child(2) {
    stroke: #fbbf24;
}

.item__label {
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 10px;
    background-color: var(--bg-darker);
    color: var(--tt);
}

.item__btn-info {
    position: absolute;
    right: 5px;
    top: 50px;
    z-index: 25;
    scale: 0.5 0.5;
    opacity: 0;
    font-size: 18px;
    cursor: pointer;
}

.item:not(:has(.item__rating)) .item__btn-info {
    top: 5px;
}

.item-slider {
    height: 400px;
    overflow: hidden;
    position: relative;
    background-color: #221f27;
}

.item-slider__desc {
    padding: 40px var(--indent);
    margin-right: 200px;
    position: relative;
    z-index: 10;
    color: #fff;
}

.item-slider__img img {
    opacity: 0.5;
}

.item-slider__img::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, #221f27, transparent, #221f27),
        linear-gradient(to right, #221f27, transparent, #221f27);
}

.item-slider__title {
    text-transform: uppercase;
    font-weight: 800;
    font-size: 30px;
    color: transparent;
    background: url(../images/texture.webp);
    background-clip: text;
}

.item-slider__btns {
    padding-top: 20px;
}

.item-slider .item__text,
.item-slider .item__meta-item {
    opacity: 0.6;
}

.item-slider .item__label,
.item__btn-trailer {
    background-color: rgba(71, 75, 78, 0.6);
    color: #fff;
    backdrop-filter: blur(15px);
}

.item-category {
    border-radius: 10px;
    padding: 10px 20px;
    padding-right: 130px;
    overflow: hidden;
    position: relative;
    min-height: 90px;
}

.item-category__img,
.item-category::after {
    width: 80px;
    border-radius: 8px 8px 0 0;
    z-index: 2;
    position: absolute;
    right: 30px;
    bottom: 0;
    rotate: 9deg;
    transform-origin: left bottom;
}

.item-category::after {
    content: '';
    rotate: -9deg;
    aspect-ratio: 1 / 1;
    right: 40px;
    bottom: -20px;
    background-color: rgba(0, 0, 0, 0.15);
    transform-origin: right bottom;
    z-index: 1;
}

.item-top .item__img {
    border: 3px solid var(--bg);
    box-shadow: 0 0 0 3px var(--accent);
    margin: 3px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.item-poster .item__rating {
    position: absolute;
    right: 5px;
    top: 5px;
    z-index: 5;
    scale: 0.5 0.5;
    opacity: 0;
}

.item-poster .item__title {
    margin-bottom: 3px;
}

.item-collection .item__img {
    aspect-ratio: 3 / 1.5;
}

.item-blog .item__meta {
    margin-top: 5px;
}

.item-hot .item__img {
    width: 46px;
    margin: 0;
}

.sect--bg .item__label {
    background-color: var(--bg-darkest);
}

.trl {
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 990;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    backdrop-filter: blur(10px);
}

.trl__close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    color: #fff;
}

.trl__inner {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    padding: 80px 20px 20px 20px;
}

.trl__btn {
    height: 40px;
    padding: 0 40px;
    margin: 15px 0;
    width: 100%;
}

.trl h1 {
    margin-bottom: 15px;
    margin-top: 20px;
    font-size: 24px;
}

.trl .page__text {
    color: #ccc;
    margin: 0px;
}

.trl-is-opened {
    overflow: hidden;
}

.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: var(--bsh);
    border-radius: 4px;
    min-height: 100px;
    font-size: 12px;
}

.th-text::after {
    content: "";
    border: 10px solid var(--bg);
    position: absolute;
    top: 30px;
    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(--accent);
    padding-top: 20px;
}

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

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

.th-text .page__titles h1 {
    font-size: 24px;
}

.th-text .page__btn-trailer {
    width: 100%;
    margin-top: 15px;
}




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

.sb-menu a {
    height: 42px;
    border-radius: 10px;
    margin: 0 -10px;
    padding: 0 10px;
    gap: 15px;
}

.sb__caption {
    margin-bottom: 15px;
    padding-top: 5px;
    font-weight: 500;
}

.sb-menu .is-active a {
    background-color: rgba(0, 0, 0, 0.1)
}

.sb-menu li {
    position: relative;
}

.sb-menu__hidden {
    position: absolute;
    left: 98%;
    top: 0;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--bg);
    box-shadow: var(--bsh);
    width: 600px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 10px;
}

.sb-menu__hidden a {
    height: 30px;
    margin: 0;
}




.footer__menu li:not(.footer__menu-caption) {
    flex: 1 0 40%;
    --tt: var(--tt-fade-0);
}

.footer__btn {
    align-self: flex-start;
}

.pagination {
    gap: 20px 20px;
    padding-top: 15px;
}

.pagination__pages a,
.pagination__pages span {
    display: grid;
    place-items: center;
    color: var(--tt-fade);
    height: 36px;
    min-width: 36px;
    padding: 0 10px;
    border-radius: 18px;
    border: 2px solid var(--bdc);
}

.pagination__pages {
    gap: 10px;
    font-size: 13px;
}

.pagination__pages span:not(.nav_ext) {
    color: var(--tt);
    border-color: var(--accent);
}

.pagination__btns {
    height: 36px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--bdc);
}

.pagination__btns>* {
    width: 40px;
    display: grid;
    place-items: center;
    color: var(--accent);
    font-size: 18px;
}

.pagination__btns>span {
    color: var(--tt-fade);
}




.page__header {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 25px 40px;
    grid-template-areas: "pposter pheader" "pposter pinfo";
    grid-template-rows: auto 1fr;
}

.page__titles {
    grid-area: pheader;
}

.page__poster {
    grid-area: pposter;
    width: 250px;
}

.page__info {
    grid-area: pinfo;
}

.page__titles h1 {
    font-size: 30px;
    font-weight: 700;
    margin-top: -10px;
}

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

.page__img {
    border-radius: 10px;
}

.page__likes a {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 40px;
    padding: 0 20px;
    border-radius: 20px;
    color: var(--tt-fade);
    background-color: var(--bg-darker);
}

.page__tech li {
    position: relative;
    padding-left: 140px;
    min-height: 14px;
}

.page__tech li>span:first-child {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--tt-fade);
}

.page__tech a {
    color: var(--accent);
}

.page__tags a {
    display: block;
    padding: 5px 10px;
    border-radius: 5px;
    background-color: var(--bg-darker);
    color: var(--tt-fade);
}

.page__header {
    position: relative;
    isolation: isolate;
}

.page__bg {
    position: absolute;
    width: 80%;
    bottom: 0;
    right: 0;
    top: -40px;
    z-index: -1;
    overflow: hidden;
}

.page__bg img {
    opacity: 0.5;
    filter: blur(10px) grayscale(0.5);
}

.page__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: linear-gradient(to bottom, var(--bg), transparent, var(--bg)),
        linear-gradient(to right, var(--bg), transparent, var(--bg));
}

.page__subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 500;
}

.page__text {
    margin-top: -8px;
}

.page__scr ul {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 20px;
}

.page__scr a,
.page__scr img {
    display: block;
    height: auto;
    width: 100%;
    border-radius: 6px;
    aspect-ratio: 300 / 200;
}

.page__scr img {
    object-fit: cover;
}

.page__player {
    position: relative;
}

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

.tabs-block__select button {
    background-color: var(--bg-darker);
    color: var(--tt-fade);
}

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

.page__complaint a {
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    align-items: center;
    height: 40px;
    gap: 10px;
    color: var(--ui-red);
}

.nl .page__player-controls+.tabs-block__content {
    display: block;
}

.page__add-to-list-list {
    overflow: hidden;
    display: none;
    box-shadow: var(--bsh);
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100%;
    background-color: var(--bg);
    border-radius: 10px;
}

.page__add-to-list-list li+li {
    border-top: 1px solid var(--bdc);
}

.page__add-to-list-list li {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
    white-space: nowrap;
    height: var(--ui-elem-height);
    padding: 0 var(--ui-elem-padding);
    gap: var(--ui-elem-gap);
    border-radius: var(--ui-elem-bdrs);
    color: var(--ui-tt-btn);
    font-size: 14px;
    font-weight: 400;
}

.page__add-to-list-list li.active {
    background-color: var(--accent);
    color: #fff;
}

.page__lists-btn.is-active {
    background-color: var(--bg-btn-hover);
    color: #fff;
}

.page__add-to-list-list li.d-none {
    display: none;
}

.page__tooltip {
    cursor: pointer;
    font-size: 24px;
    color: var(--tt-fade);
    height: 40px;
}

.page__tooltip-info {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 30px);
    z-index: 100;
    background-color: var(--bg-darker);
    box-shadow: var(--bsh);
    color: var(--tt);
    border-radius: 6px;
    font-size: 14px;
    width: 400px;
    visibility: hidden;
    opacity: 0;
}

.page__tooltip-info::before {
    content: '';
    border: 10px solid transparent;
    border-bottom-color: var(--bg-darkest);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translate(-50%);
}

.page__tooltip-info-header {
    background-color: var(--bg-darkest);
    padding: 15px 20px;
    font-weight: 500;
    font-size: 18px;
    color: var(--tt);
    border-radius: 6px 6px 0 0;
}

.page__tooltip-info-content {
    padding: 20px;
}

.page__rating-list-item-count,
.page__rating-list-item-value {
    width: 50px;
}

.page__rating-list-item-bar {
    border: 0px solid var(--accent);
    background-color: var(--bg);
    height: 20px;
    position: relative;
    border-radius: 2px;
}

.page__rating-list-item-bar-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    min-width: 35px;
    background-color: var(--accent);
    color: #fff;
    padding-right: 5px;
    border-radius: 2px;
}

.page__tooltip.is-active::before {
    color: var(--accent);
}

.page__tooltip.is-active .page__tooltip-info {
    visibility: visible;
    opacity: 1;
    transform: translate(-50%, 0px);
}

.page__list-info {
    justify-self: center;
    color: var(--tt);
    cursor: pointer;
}

.page__list-info .page__tooltip {
    font-size: 18px;
    height: auto;
}

.page__list-info .page__rating-list-item-value {
    width: 100px;
    font-size: 12px;
}

.notify-18 {
    background-color: var(--bg);
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.notify-18__block {
    margin: 0 auto;
    max-width: 600px;
    overflow-y: auto;
    padding: 40px 20px;
    text-align: center;
    min-height: 100vh;
}

.notify-18__block>* {
    flex-shrink: 0;
}

.notify-18__icon {
    width: 100px;
    font-size: 34px;
    font-weight: 700;
    background: var(--ui-red);
    color: #fff;
}

.notify-18__title {
    font-size: 34px;
    font-weight: 700;
}

.notify-18__text {
    color: var(--tt-fade-0);
}

.notify-18__btn {
    height: 60px;
    padding: 0 30px;
}




.page__title {
    margin-bottom: 30px;
    font-size: 24px;
}

.full-text {
    line-height: 1.6;
    font-size: 15px;
    word-wrap: break-word;
    color: var(--tt-fade-0);
}

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

.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 {
    margin-bottom: 25px;
}

.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: 6px;
    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: -3px;
    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: -3px;
    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>*: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;
    margin-bottom: 20px;
}




.page__comments {
    margin-top: 0px;
}

.page__comments-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.page__comments-info {
    color: var(--tt-fade);
    display: block;
    margin: 10px 0 20px;
    font-size: 14px;
    padding-left: 23px;
    position: relative;
}

.page__comments-info::before {
    color: var(--ui-red);
    position: absolute;
    left: 0;
    top: 2px;
}

.ac-form {
    margin-bottom: 30px;
    position: relative;
}

.ac-form__header,
.ac-form__editor,
.ac-form .message-info {
    gap: 10px;
    margin-bottom: 10px;
}

.ac-form__btn {
    padding: 0 60px;
}

.ac-form__bottom {
    gap: 25px;
}

.confidential-check {
    font-size: 14px;
}

.ac-form__header>span {
    margin-left: 15px;
}

.ac-form .comments_subscribe {
    margin-top: 0px;
}

.ac-toggle.ac-form {
    cursor: pointer;
}

.ac-form__header input,
.ac-form__editor textarea {
    border-radius: 0;
    background-color: var(--bg-darker);
}

.ac-toggle,
.ac-toggle .ac-form__editor {
    position: relative;
}

.ac-toggle .ac-form__bottom button {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 10;
    pointer-events: none;
}

.ac-form .bb-btn {
    display: none;
}

.ac-form .bb-pane {
    background: none;
    box-shadow: none;
    border: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
}

.ac-form #b_emo,
.ac-form #b_leech,
.ac-form #b_quote,
.ac-form #b_b,
.ac-form #b_u,
.ac-form #b_s,
.ac-form #b_color,
.ac-form #b_hide {
    display: grid;
}

.ac-toggle .bb-btn {
    pointer-events: none;
}

.ac-toggle .ac-form__editor .bb-editor textarea {
    height: 120px;
    resize: none;
}

.ac-form__editor .bb-editor textarea {
    height: 120px;
    line-height: 1.4;
    padding-bottom: 40px;
}

.comments_subscribe+br,
.ac-form .bb-editor+br {
    display: none;
}

.ac-toggle .has-checkbox {
    display: none;
}

.mass_comments_action {
    display: none;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mass_comments_action select {
    flex: 1 1 0;
    margin: 0 -28px 0 0;
    border-radius: 0;
    box-shadow: none;
    min-width: 60%;
}

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

.comm__title {
    font-size: 18px;
    margin-bottom: 20px;
}

.comm {
    margin-bottom: 25px;
    position: relative;
}

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

.comm__letter {
    width: 100%;
    height: 100%;
    text-transform: uppercase;
    border-radius: inherit;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.comm__author,
.comm__author a {
    color: var(--tt);
    font-weight: 500;
    font-size: 14px;
}

.comm__date {
    color: var(--tt-fade);
    font-size: 12px;
    margin-top: 3px;
}

.comm__action {
    gap: 20px;
    font-size: 12px;
}

.comm__main {
    margin: 10px 0;
}

.comm__action li,
.comm__action li a {
    color: var(--tt-fade);
    cursor: pointer;
    gap: 8px;
    display: flex;
    align-items: center;
}

.comm__ctrl,
.comm__ctrl a {
    font-size: 15px;
    gap: 10px 15px;
    color: var(--tt-fade);
}

.comm__rating {
    gap: 10px;
    font-size: 12px;
}

.comm__rating>* {
    display: flex;
    gap: 5px;
    height: 30px;
    border-radius: 15px;
    align-items: center;
    background-color: var(--bg-darker);
    color: var(--tt-fade);
    font-size: 12px;
    padding: 0 15px;
}

.comm__rating>* .fal {
    font-size: 14px;
}




.login {
    position: fixed;
    z-index: 999;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 440px;
    max-width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
}

.login__header {
    padding-bottom: 25px;
    color: #fff;
    padding-left: 50px;
    font-size: 18px;
    font-weight: var(--ui-fw-bolder);
}

a.login__title {
    color: #ccc;
    margin-left: 50px;
}

div.login__title::after {
    content: '';
    border: 10px solid transparent;
    border-bottom-color: var(--bg);
    position: absolute;
    left: 50%;
    bottom: -25px;
    margin-left: -5px;
}

.login__close {
    font-size: 23px;
    position: absolute;
    right: 0px;
    top: -3px;
    padding: 0;
    width: 40px;
    height: 40px;
    color: #fff;
}

.login__content {
    display: grid;
    gap: 20px;
    padding: 25px 50px;
    padding-bottom: 50px;
    position: relative;
    background-color: var(--bg);
}

.login__row::before {
    position: absolute;
    right: 2px;
    bottom: 0;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    opacity: 0.3;
    font-size: 18px;
}

.login__input input {
    padding-right: 50px;
    height: 50px;
    line-height: 48px;
    border-radius: 0;
}

.login__row button {
    width: 100%;
    height: 50px;
    border-radius: 0;
}

.login__social {
    padding-top: 10px;
    text-align: center;
    gap: 10px;
    margin-bottom: -20px;
}

.login__social-caption {
    font-size: 13px;
    width: 100%;
}

.login__social a {
    padding: 0 10px;
    border-radius: 20px;
    position: relative;
    width: 40px;
    height: 40px;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login__social a::before {
    content: '';
    width: 40px;
    background: rgba(0, 0, 0, 0);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.login__social a img {
    position: absolute;
    left: 10px;
    top: 50%;
    height: 20px;
    width: 20px;
    z-index: 1;
    display: block;
    filter: invert(1);
    transform: translateY(-50%);
}

.login__social-vk {
    background-color: #587ba1;
}

.login__social-ok {
    background-color: #ff9800;
}

.login__social-fb {
    background-color: #3b5998;
}

.login__social-ml {
    background-color: #2196f3;
}

.login__social-gg {
    background-color: #f44336;
}

.login__social-ya {
    background-color: #fc3f1d;
}

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

.header__login-header {
    padding: 20px;
    color: var(--tt);
    font-weight: 700;
    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 {
    position: absolute;
    right: 0;
    top: 100%;
    width: 260px;
    --tt: #000;
    color: #000;
    background-color: var(--bg);
    box-shadow: var(--bsh);
    padding: 20px;
    border-radius: 10px;
    display: none;
}

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

.header__ava {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.header__btn1 {
    font-size: 18px;
    position: relative;
}

.header__btn1 span {
    position: absolute;
    right: 0;
    top: 0;
    padding: 1px 3px;
    font-size: 10px;
    border-radius: 6px;
    background-color: var(--accent);
    color: #fff;
    display: inline-block;
    text-align: center;
    min-width: 20px;
}

.c-0 span {
    display: none;
}

.dt .js-theme::before {
    content: "\f186";
}




.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;
    z-index: 999;
    position: fixed;
    left: -360px;
    top: 0;
    transition: left 0.4s;
    background-color: var(--bg);
}

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

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

.mobile-menu__header {
    padding: 15px 20px;
    gap: 10px;
    background-color: var(--bg-darker);
}

.mobile-menu__btn-close {
    font-size: 24px;
    width: 40px;
    height: 40px;
    margin-right: -10px;
}

.mobile-menu__content .sidebar__sticky {
    position: static;
    min-height: 0;
}

.mobile-menu__content .sb-menu__hidden {
    border-radius: 0;
    box-shadow: none;
    margin: 10px -30px;
    background: var(--bg-darker);
    font-size: 12px;
    padding: 10px 20px;
    position: static;
    display: grid;
    width: calc(100% + 60px);
}

@media screen and (min-width: 1220px) {
    .col2 .wrapper__container--main {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .col2 .col2-hide {
        display: none;
    }

    .col2 .sb-menu>li+li {
        margin-top: 3px;
    }

    .col2 .sb-menu>li>a {
        width: 40px;
        overflow: hidden;
        padding-left: 0;
    }

    .col2 .sb-menu a::before {
        width: 40px !important;
        font-size: 20px;
        flex-shrink: 0;
    }

    .col2 .content,
    .col2 .footer {
        --indent: 120px;
        --indent-negative: -120px;
    }

    .col2 .item-slider {
        height: 500px;
    }

    .has-branding .wrapper__container--main {
        max-width: 1200px;
    }

    .has-branding:not(.col2) .wrapper__container--main {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .has-branding .content,
    .has-branding .footer {
        --indent: 20px;
        --indent-negative: -20px
    }

    .has-branding.col2 .content,
    .has-branding.col2 .footer {
        --indent: 80px;
        --indent-negative: -80px
    }

    .has-branding .search-block {
        width: 500px;
    }
}

@media screen and (max-width: 1220px) {
    :root {
        --indent-negative: -20px;
        --indent: 20px;
    }

    .wrapper__container {
        max-width: 1000px;
        display: block;
    }

    .sidebar,
    .header__btn,
    .header__login a {
        display: none;
    }

    .header__btn-menu {
        display: flex;
        margin: 0;
    }

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

    .logo {
        min-width: 0;
    }

    .carou-6:not(.owl-carousel)>.item {
        width: calc((100% - 100px)/6);
    }

    .carou-4:not(.owl-carousel)>.item {
        width: calc((100% - 60px)/4);
    }

    .page__main {
        gap: 20px;
    }

    .page__watch {
        margin-right: 10px;
    }

    .page__rates {
        position: static;
        width: 100%;
        justify-content: center;
        padding-top: 10px;
    }

    .page__trl {
        flex-grow: 1;
    }
}

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

    .carou-6:not(.owl-carousel)>.item {
        width: calc((100% - 80px)/5);
    }

    .carou-4:not(.owl-carousel)>.item {
        width: calc((100% - 40px)/3);
    }

    .footer__about {
        min-width: 100%;
    }

    .scroll-items-1000 {
        display: flex;
        gap: 20px;
        overflow-x: auto;
    }

    .scroll-items-1000>.item-top {
        flex-shrink: 0;
        width: 105px;
    }

    .scroll-items-1000>.item-hot {
        flex-shrink: 0;
        width: 260px;
    }

    .pagination {
        gap: 10px;
    }

    .pagination__btn-loader a,
    .pagination__btn-loader span {
        width: 100%;
    }

    .pagination>a,
    .pagination>span {
        flex-grow: 1;
        order: 10;
    }

    .pagination__pages,
    .pagination__btns {
        min-width: 100%;
    }

    .pagination__pages a,
    .pagination__pages span,
    .pagination__btns>* {
        flex-grow: 1;
    }

    .page__header {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px 20px;
        grid-template-areas: "pheader" "pposter" "pinfo";
    }

    .page__bg {
        width: 100%;
        height: 500px;
        top: 100px;
    }

    .page__titles,
    .page__poster {
        align-self: center;
        text-align: center;
    }

    .page__poster {
        margin: 0 auto;
    }

    .page__meta,
    .page__ratings {
        justify-content: center;
        gap: 10px 20px;
    }

    .page__share {
        margin: 0;
    }

    .page__related:not(.owl-carousel)>.rels {
        width: calc((100% - 60px)/4);
    }
}

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

    .login__header {
        padding-left: 20px;
        font-size: 16px;
    }

    a.login__title {
        margin-left: 20px;
    }

    .login__content {
        padding: 20px;
    }

    .login__social {
        margin-bottom: 0;
    }

    .login__social a {
        border-radius: var(--bdrs);
        height: 30px;
        flex: 1 0 30%;
    }

    .login__social a img {
        left: 50%;
        margin-left: -10px;
    }

    .carou-6:not(.owl-carousel)>.item {
        width: calc((100% - 40px)/3);
    }

    .carou-4:not(.owl-carousel)>.item {
        width: calc((100% - 20px)/2);
    }

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

    .header__search {
        min-width: 100%;
        order: 10;
    }

    .item-slider {
        text-align: center;
        justify-content: flex-end;
    }

    .item-slider__desc {
        align-items: center;
        margin: 0;
    }

    .item-slider .item__meta {
        justify-content: center;
    }

    .item-slider__btns>* {
        flex-grow: 1;
    }

    .page__complaint {
        display: none !important;
    }

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

    .wrapper__container--main {
        overflow: hidden;
        overflow: clip;
    }

    .page__bg {
        width: 200%;
        height: 600px;
        right: 50%;
        bottom: auto;
        top: -40px;
        transform: translateX(50%);
    }

    .page__tech {
        font-size: 12px;
    }

    .page__tech li {
        min-height: 12px;
        padding-left: 120px;
    }

    .ac-form__bottom {
        gap: 10px;
    }

    .ac-form__bottom button {
        padding: 0 20px;
        width: 100%;
    }

    .ac-form__header input+input {
        min-width: 100%;
        order: 10;
    }

    .ac-form__header>span,
    .comm__rating::before {
        display: none;
    }

    .ac-form #b_color {
        display: none;
    }

    .ac-toggle .ac-form__bottom button {
        position: static;
        width: 100%;
    }

    .comm__img {
        width: 40px;
        height: 40px;
    }

    .comm__ctrl {
        justify-content: flex-start;
        min-width: 100%;
        margin-top: 10px;
    }
}

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

    .footer__col {
        min-width: 100%;
    }

    .header__login button {
        height: 40px;
        border-radius: 20px;
        padding: 0 20px;
    }

    .carou-4:not(.owl-carousel)>.item {
        width: calc((100% - 0px)/1);
    }

    .sect__header:has(.sorter) .sect__title {
        min-width: 100%;
    }

    .page__list-info,
    .page__lists {
        order: 11;
    }

    .page__share {
        width: 100%;
    }

    .page__lists {
        margin-right: auto;
    }

    .page__tooltip-info {
        left: auto;
        right: 0;
        transform: translate(0%, 30px);
        width: calc(100vw - 40px);
    }

    .page__tooltip.is-active .page__tooltip-info {
        transform: translate(0%, 0px);
    }

    .page__tooltip-info::before {
        display: none;
    }
}

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

    .carou-6:not(.owl-carousel)>.item {
        width: calc((100% - 20px)/2);
    }

    .header__btn1:first-child {
        display: none;
    }

    .page__lists {
        order: 10;
    }

    .page__scr ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .sect__title {
        line-height: 1.3;
    }

    .ac-form__bottom .comments_subscribe {
        font-size: 13px;
    }

    .full-text iframe {
        width: calc(100% + 40px);
        max-width: calc(100% + 40px);
        height: 260px;
        margin-left: -20px;
        margin-right: -20px;
    }
}




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

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

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

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

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

.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-animated-in {
    z-index: 0;
}

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

.moveIn {
    animation-name: moveIn;
}

@keyframes moveIn {
    from {
        transform: translateX(100%)
    }

    to {
        transform: translateX(0%)
    }
}

.fadeOut {
    animation-name: fadeOut;
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.scaleIn {
    animation-name: scaleIn;
}

.scaleOut {
    animation-name: scaleOut;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.66, 0.66);
        transform-origin: center top;
    }

    to {
        opacity: 1;
        transform: scale(1, 1);
        transform-origin: center top;
    }
}

@keyframes scaleOut {
    from {
        opacity: 1;
        transform: scale(1, 1);
    }

    to {
        opacity: 0;
        transform: scale(0.66, 0.66);
    }
}

.slideOutDown {
    animation-name: slideOutDown;
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.rollOut {
    animation-name: rollOut;
}

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

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

.owl-prev,
.owl-next {
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    font-size: 18px;
    background-color: var(--bg);
    color: var(--tt-fade);
    box-shadow: var(--bsh);
    position: absolute;
    top: 0;
    border-radius: 50%;
}

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

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

.owl-prev:hover,
.owl-next:hover {
    background-color: var(--accent);
    color: #fff;
}

.owl-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    position: absolute;
    left: var(--indent);
    right: var(--indent);
    bottom: 10px;
}

.owl-dot {
    display: block;
    width: 50px;
    height: 6px;
    border-radius: 3px;
    cursor: pointer;
    background-color: rgba(71, 75, 78, 0.6);
    backdrop-filter: blur(15px);
}

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

#broadcasts .owl-nav {
    margin-top: -40px;
}

#collections .owl-nav {
    margin-top: -40px;
}

#bslider .owl-nav {
    left: auto;
    right: var(--indent);
    margin-top: -61px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#bslider .owl-nav button {
    position: static;
    width: 54px;
    height: 54px;
    font-size: 18px;
    backdrop-filter: blur(15px);
}

#bslider .owl-nav button:not(:hover) {
    background-color: rgba(71, 75, 78, 0.6);
    color: #fff;
}

@media screen and (max-width: 760px) {
    #bslider .owl-nav {
        display: none;
    }

    .owl-dot {
        flex-grow: 1;
    }

}

.filter-block {
    margin-bottom: 30px;
}

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

.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-darker);
    color: var(--tt);
    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);
    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-darker);
    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-darker);
    color: var(--tt);
}

.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%;
    background: var(--bg);
}

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

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

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

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

.bottom-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.dle_collections .pagination {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.dle_collections {
    width: 100%;
}

.dle_collections {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    margin: 0;
}

.dle_collections .content-collection {
    width: 30%;
    cursor: pointer;
    height: 160px;
    position: relative;
    overflow: hidden;
}

.dle_collections .content-collection:first-child {
    margin-right: 18px;
}

.dle_collections .content-collection:last-child {
    margin-left: 18px;
}

@media screen and (max-width: 590px) {
    .collections-block-no-main {
        width: 44%;
    }
}

@media screen and (max-width: 425px) {
    .collections-block-no-main {
        width: 90%;
    }
}

.collections-img-block {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: alpha(opacity=100);
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
    border: 1px solid black;
}

.collections-count-block {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 16px;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.collections-cover-block {
    background: rgba(0, 0, 0, 0.6);
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.collections-a-block {
    color: #fff;
    display: block;
    font-size: 14px;
    line-height: 14px;
    padding: 10px;
}

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

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

.carousel-1 .owl-pic {
    border-left: 5px solid black;
    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));
}

.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-top {
    margin-top: 10px;
}

.main-mylist .mylists-switch,
.main-mylist .mylists-tabs {
    list-style: none;
    padding: 20px;
    margin: 20px 0px;
    border-radius: 4px;
    font-size: 12px;
    width: 100%;
    text-align: center;
}

.main-mylist .mylists-switch li,
.main-mylist .mylists-tabs li {
    display: inline-block;
    margin: 0px 10px 0px 0px;
    text-decoration: none;
    border-bottom: 1px dotted;
    padding: 3px 10px;
}

.main-mylist .mylists-switch li:hover,
.main-mylist .mylists-tabs li:hover {
    color: var(--accent);
    cursor: pointer;
}

.main-mylist .mylists-switch li:last-child,
.main-mylist .mylists-tabs li:last-child {
    margin: 0px;
}

.main-mylist .mylists-switch li.active,
.main-mylist .mylists-tabs li.active {
    background: var(--ui-bg-btn);
    color: #fff;
    border: 0px;
    border-radius: 4px;
}

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

.emoji-category-header {
    font-size: 16px;
    border-bottom: 1px solid #15161e;
    text-align: center;
}

.emoji-category-header h1 {
    display: inline-block;
    font-size: inherit;
    margin: 0;
    padding: 0;
}

.emoji-select-wrapper {
    display: flex;
    position: relative;
    line-height: 50px;
    border-bottom: 1px solid #15161e;
    margin-bottom: 10px;
}

.emoji-select-wrapper a {
    text-decoration: none;
    transition: .2s;
}

.emoji-select-wrapper *,
.emoji-select-wrapper *:after,
.emoji-select-wrapper *:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.emoji-select {
    font-size: 24px;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

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

.emoji-select a {
    flex: 1;
    float: left;
    min-width: 40px;
    text-align: center;
    padding: 5px 0 10px;
}

.emoji-select a:hover {
    background: var(--accent);
}

.emoji-select a.active {
    background: #dadde2;
    cursor: default;
}

.emoji-select-adv {
    position: relative;
    flex: 0;
    font-size: 13px;
    line-height: 18px;
    padding: 0 20px;
    border-left: 1px solid #ddd;
}

.emoji-select-adv-trigger {
    display: block;
    width: 30px;
    height: 100%;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAABpklEQVQ4T72UMWgUQRiF39sRLAUJeOzNrXIEgkFQQbuAZSAgNiGNpLgmlQlY2QUUYmEnCKJVCNZWgkXKhMTmIEgSEZJw3LCLcK2BxNudJye5eAne3eY4nG5m3nzzv/+ff4ghDw6Zh/8LjCL7XFIFwL4xWaVW+1Hr5+hPhKVS6Zb3/lKnmOQ9QEukFiROkxjxHk+7AYMgSJ1z27TWjpLaAnAGeDL/6Fw8E0XhhMQ1AMc9Ikwl3umaw2KxeNsYrElcAfSA1Ga9nszlstxNZK2dIv1jgPtHR79eNRqNn21tFBXGs8xcKxQK69VqtdleH6jK1oZPSL4mcShhx7l4AkDWgrZyeBXQIsnzOezhThVSj9IUG8bwK4BdCQcAXwwMDAI8zDJukmoBv50C+yX5X/s9LXceKJfLV5rN42eArpNYrteT1W4X5ipKFIUfJN4E8IXEbJrqfpIk3y/i4vzDvuw97sZxvGVt8ROJyXb1ckD/Pux26wUB3pLY856fSb2ROC9pJwcMp63XKQ7DcMwYvAd4A8A75+KXeWBn/oCLHuinH6hTekGHDvwNPKeu0Wz98R8AAAAASUVORK5CYII=) no-repeat 50% 50%;
}

.emoji-select-adv-area {
    display: none;
    position: absolute;
    right: 55px;
    top: 20px;
    width: 270px;
    padding: 15px 20px;
    background: #fff;
    z-index: 1003;
    border-radius: 3px;
    box-shadow: 0 2px 9px rgba(0, 0, 0, .3);
}

.emoji-select-adv-area:before {
    content: '';
    position: absolute;
    top: 6px;
    left: 100%;
    border: 7px solid transparent;
    border-left-color: #ccc;
}

.emoji-select-adv-area:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 100%;
    border: 6px solid transparent;
    border-left-color: #fff;
}

.emoji-select-adv-period {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.emoji-select-adv-period a {
    position: relative;
    display: block;
    padding: 4px 0 5px 30px;
    color: #222;
}

.emoji-select-adv-period a:after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    border-radius: 50%;
    transition: .2s;
}

.emoji-select-adv-period a:hover {
    color: var(--accent);
}

.emoji-select-adv-period a:hover:after {
    border-color: #ccc;
}

.emoji-select-adv-period a.active {
    color: #000;
}

.emoji-select-adv-period a.active:after {
    border: 5px solid var(--accent);
}

.emoji-select-adv-category {}

.emoji-select-adv-category a {
    position: relative;
    display: block;
    line-height: 34px;
    padding: 0 10px;
    color: #222;
    border-radius: 2px;
}

.emoji-select-adv-category a:hover {
    color: var(--accent);
}

.emoji-select-adv-category a.active {
    background-color: var(--accent);
    color: #fff;
}

.emoji-select-adv-category a.active:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 35px;
    background: rgba(0, 0, 0, .1) url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAANUlEQVQYV2P89+/ffwYGBgYmJiZGEA0CMDFGGAOmAJkPVo0sANMNMgnDKGQr8OvEayc+1wIAGgkr7HgVYQQAAAAASUVORK5CYII=) no-repeat 50% 50%;
}

.rating-emoji {
    display: flex;
    background: black;
    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: var(--accent);
}

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

.sort-container a:hover {
    text-decoration: underline;
}

.spoiler-detka {
    cursor: pointer;
}

.mergerep {
    font-size: 12px;
    color: var(--accent);
}

.one-pre {
    float: left;
    margin-right: 5px;
}


@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);
    }
}

.comment-item__meta a {
    color: #b6b6b6;
    font-weight: 700 !important;
    text-decoration: underline;
}

.tier-2 {
    color: gold !important;
}

.star-container {
    position: relative;
}

.star-container .particle {
    position: absolute;
    margin-left: 5px;
    margin-top: 8px;
    font-size: 5px;
    color: var(--accent);
    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;
}

.good-comm {
    color: #02bc02;
}

.info-block a {
    color: black;
}

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

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

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

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

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

.blocked-color_two {
    color: var(--accent);
}

.blocked-serial_allist {
    width: 50px;
    height: 75px;
    border-radius: 5px;
    margin: 5px;
}

.blocked-serial_list {
    width: 100%;
    margin-top: 25px;
    margin-bottom: 25px;
}

.blocked-serial_list table,
th,
tr {
    border: 1px solid var(--accent);
    font-size: 14px;
    font-weight: 400;
}

.fr-list {
    counter-reset: num;
    display: flex;
    flex-direction: column-reverse;
    padding: 10px 10px 0 10px;
}

.fr::before {
    content: counter(num);
    counter-increment: num;
    width: 40px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3
}

.fr {
    cursor: pointer;
    position: relative;
    padding: 5px 10px;
    padding-left: 40px;
    border-radius: 5px;
    -webkit-background-size: cover;
    background-size: cover;
    overflow: hidden;
    border: 1px solid var(--accent);
    margin-top: 10px;
}

.fr__title {
    display: inline-block;
    max-width: 100%;
    line-height: 22px;
    height: 17px;
    font-weight: 500
}

.fr:hover {
    box-shadow: 0 10px 26px rgba(0, 0, 0, .15);
    z-index: 3
}

.fr__year {
    margin: 0 10px;
    font-size: 13px;
    z-index: 3;
    font-weight: 700;
}

.fr__rating {
    font-weight: 700;
    font-size: 12px;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    z-index: 3;
    display: grid !important;
    place-items: center;
    background: var(--accent);
}

.is-active .fr__title {
    font-weight: 700;
    text-decoration: underline
}

.fr.is-active::before {
    content: "\25CF";
    display: block;
    left: 13px;
    background-size: 13px 15px;
    background-repeat: no-repeat;
    width: 13px;
    height: 15px
}

.fr__bg_opacity {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    backdrop-filter: blur(2px)
}

.fr__linked {
    z-index: 3
}

.info-block {
    background: var(--accent);
    border-radius: 10px;
    padding: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    max-width: 100%;
    margin: 10px;
    flex-flow: row wrap;
}

.info-block {
    position: relative;
    max-height: 150px;
    overflow: hidden;
    background: var(--accent);
    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(--accent));
    backdrop-filter: blur(1.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(--accent);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin: 10px;
    border: 1px solid #ffffff;
}

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

@keyframes highlight {
    0% { background-color: var(--accent); }
    50% { background-color: #a4a4a4; }
    100% { background-color: var(--accent); }
}

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

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