.header__menu .active_menu,
.header__menu > li:hover > a,
.header__dropdown.is-open > .header__dropdown-toggle {
  background:
    linear-gradient(var(--bg), var(--bg-2)) padding-box,
    linear-gradient(to right, #4300fb, #fb3570) border-box;
}
.descr ul li,
.header,
.header__menu,
.header__search,
.poster,
.updli,
.wrapper {
  position: relative;
}
#scrolltop,
.coll,
.fr::before,
.full_rating span,
.fullstory-new__player-title,
.fullstory-new__ratings span,
.fullstory-new__tagline,
.header__favlink span,
.header__login-menu a i,
.login__menu a,
.login__row .fal,
.login__social,
.mobile-menu-close,
.owl-dots,
.pagination__pages,
.poster__ratings,
.updli__fav a,
.updli__meta {
  text-align: center;
}
.card .poster__fav a:not(:hover),
.wrapper-main {
  background-color: var(--bg-2);
}
.pmovie__list li a:hover,
.th-text-header {
  text-decoration: none;
}
.coll__title,
.comment-item__letter,
.logo {
  text-transform: uppercase;
}
.card__list a,
.comment-item__controls a:hover,
.comment-item__footer a:hover,
.descr a,
.footer__menu a:hover,
.full-text a,
.login__caption a,
.page__comments-psform-form:hover,
.pmovie__list li a,
.sb__nav a:hover,
.sblogin a:hover,
.show-comms a:hover,
.speedbar a:hover,
a.card__title:hover {
  text-decoration: underline;
}
.header,
.sb--mt .sb__title {
  border-image-source: linear-gradient(to right, #4300fb, #fb3570);
  border-image-slice: 1;
}
.count-items,
.fr-list,
.full-text > ol,
.sb__grid {
  counter-reset: num;
}
.wrapper {
  min-width: 320px;
  padding-top: 10px;
  padding-bottom: 40px;
}
.wrapper-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 20;
}
.wrapper-main {
  min-height: 100vh;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
  border-radius: 10px;
}
.fr:hover,
.theme-toggle {
  box-shadow: 0 0 0 1px var(--bdc);
}
.header {
  height: 110px;
  padding: 0 var(--indent);
  background-color: var(--bg);
  z-index: 100;
  border-radius: 10px 10px 0 0;
  border-bottom: 2px solid;
}
.content {
  padding: 20px var(--indent);
  padding-bottom: 60px;
  min-height: 80vh;
}
.cols {
  display: grid;
  gap: 40px;
  grid-template-columns: 250px minmax(0, 1fr);
}
.footer {
  padding: 20px var(--indent);
  background-color: var(--bg-dark);
  color: var(--tt-dark);
  border-radius: 0 0 10px 10px;
}
#scrolltop,
.card,
.carou,
.carou .poster__label,
.linek,
.sb,
.th-text,
.theme-toggle {
  background-color: var(--bg);
}
.header__btn-login,
.theme-toggle {
  margin-left: 10px;
  border-radius: 4px;
  height: 30px;
}
.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;
  color: var(--tt-2);
  cursor: pointer;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.logo {
  display: block;
  font-weight: 700;
  font-size: 22px;
  margin-right: 40px;
  color: var(--tt-3) !important;
}
.logo img {
  width: 170px;
}
.header__btn-login {
  font-size: 12px;
  font-weight: 500;
  padding: 0 10px;
}
.theme-toggle {
  font-size: 16px;
  display: grid;
  place-items: center;
  width: 30px;
  padding: 0;
  color: var(--tt);
}
.dt-is-active .theme-toggle .fal::before {
  content: '\f186';
}
.header__menu {
  gap: 20px;
}
.header__menu > li > a {
  font-weight: 600;
  color: var(--tt-3);
  display: flex;
  align-items: center;
  border: 2px solid transparent;
  border-radius: 30px;
  padding: 10px;
}
.header__menu > li:hover > a {
  color: var(--tt-3);
}
.header__dropdown {
  position: relative;
}
.header__dropdown-toggle {
  gap: 6px;
  cursor: pointer;
  user-select: none;
}
.header__dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header__dropdown.is-open .header__dropdown-arrow {
  transform: rotate(180deg);
}
.header__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: auto;
  z-index: 200;
  width: min(680px, calc(100vw - 40px));
  padding: 2px;
  border-radius: 12px;
  background: linear-gradient(to right, #4300fb, #fb3570);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s ease;
}
.header__dropdown.is-open .header__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
@media screen and (min-width: 1221px) {
  .header__dropdown.is-open::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -40px;
    right: -40px;
    height: 16px;
    z-index: 201;
  }
}
.header__dropdown-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  margin: 0;
  padding: 8px;
  border-radius: 10px;
  background: var(--bg-2);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4300fb var(--bg);
}
.header__dropdown-list::-webkit-scrollbar {
  width: 5px;
}
.header__dropdown-list::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: linear-gradient(to bottom, #4300fb, #fb3570);
}
.header__dropdown-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--tt);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  transition: background 0.25s ease, color 0.25s ease;
}
.header__dropdown-list a:hover,
.header__dropdown-list a:focus-visible,
.header__dropdown-list a.active_menu {
  background: rgba(67, 0, 251, 0.12);
  color: var(--tt-3);
  text-decoration: none;
}
.header__dropdown-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(67, 0, 251, 0.1);
  color: #a78bfa;
  transition: background 0.25s ease, color 0.25s ease;
}
.header__dropdown-icon svg {
  width: 18px;
  height: 18px;
}
.header__dropdown-list a:hover .header__dropdown-icon,
.header__dropdown-list a:focus-visible .header__dropdown-icon,
.header__dropdown-list a.active_menu .header__dropdown-icon {
  background: linear-gradient(135deg, rgba(67, 0, 251, 0.35), rgba(251, 53, 112, 0.35));
  color: #fff;
}
.header__search {
  width: 210px;
}
.header__search input,
.header__search input:focus {
  padding: 0 30px 0 10px;
  border-radius: 4px;
  background: var(--bg);
  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: 0 0;
  color: var(--tt-3);
  font-size: 12px;
}
.carou {
  padding: 20px 60px;
}
.carou__content:not(.owl-carousel),
.sect__content--carousel: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 {
  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;
}
.coll__title {
  position: absolute;
  inset: 0;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  font-weight: 700;
  font-size: 15px;
  z-index: 5;
}
.coll__title:hover {
  background-color: var(--accent-red);
  color: #fff;
}
#dle-content > .coll,
.grid-items > .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;
}
.sblogin__name,
.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 label div {
  height: 30px;
  display: flex;
  align-items: center;
}
.sect__ctrl-menu a.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 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) > .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,
.descr ul li::before {
  color: var(--tt-accent);
}
.descr ul li {
  padding-left: 25px;
  margin-left: 25px;
}
.descr ul li::before {
  content: '\f00c';
  font-weight: 300;
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  left: 0;
  top: 0;
}
.speedbar {
  font-size: 13px;
  color: var(--tt-2);
  margin-top: 20px;
  margin-bottom: -20px;
}
.poster__label,
.poster__series {
  font-size: 10px;
  position: absolute;
}
.speedbar .fal {
  margin-right: 8px;
  color: var(--tt-3);
}
.poster__img {
  border-radius: 5px;
  margin-bottom: 15px;
}
.poster__label {
  left: 5px;
  top: 5px;
  border-radius: 3px;
  height: 20px;
  display: flex;
  align-items: center;
  padding: 0 6px;
  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 {
  bottom: 0;
  left: 0;
  background-color: var(--bg);
  padding: 5px 8px;
  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;
}
.poster__ratings {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
.poster__btn-info,
.poster__fav a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 12px;
}
.poster__fav a {
  background-color: #fff;
  color: #000;
}
.poster__btn-info,
.poster__fav {
  position: absolute;
  right: 0;
  top: 5px;
  z-index: 11;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease-in-out;
}
.poster__fav {
  top: 50px;
  transform: translateX(0);
}
.poster:hover .poster__btn-info,
.poster:hover .poster__fav {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.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;
}
.poster__btn-info:hover,
.poster__fav a:hover {
  background-color: var(--bg-dark);
}
.has-overlay:hover .has-overlay__icon {
  opacity: 1;
}
.poster:hover .poster__series {
  opacity: 0;
}
.poster__fav a:hover {
  color: #fff;
}
.poster__link {
  display: block;
}
.add-comments-form .d-none,
.comments_subscribe + br,
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled,
.owl-carousel.owl-refresh .owl-item,
.pactor .poster .poster__fav,
.pactor .poster .poster__ratings,
.th-text,
.th-text .not-shown-ajax,
.th-text .pmovie__header h1 a {
  display: none;
}
.poster__link::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
}
.poster__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-3);
}
.poster__subtitle {
  color: var(--tt-2);
  font-size: 12px;
  font-weight: 500;
  margin-top: 6px;
}
.th-text-header,
.th-text-loader {
  font-size: 18px;
  color: var(--tt-3);
}
.th-active {
  z-index: 100;
}
.th-text {
  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;
}
.card,
.card__img {
  border-radius: 5px;
}
.pop-left .th-text {
  left: auto;
  right: 100%;
}
.th-text-loader {
  text-align: center;
  padding-top: 20px;
}
.th-text-header {
  display: block;
  font-weight: 500;
}
.th-text .pmovie__text {
  font-size: 13px;
  line-height: 1.4;
  margin: 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.th-text .pmovie__list {
  background: 0 0;
  padding: 0;
  font-size: 13px;
}
.th-text .pmovie__list li + li,
.upd:not(.is-active) + .upd {
  margin-top: 5px;
}
.th-text button {
  width: 100%;
  margin-top: 15px;
  gap: 10px;
}
.card {
  padding: 20px;
  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;
  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__title {
  display: block;
  grid-area: ctitle;
  margin-right: 130px;
}
.card__title h3,
.pmovie__franchise .sect__title {
  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 {
  color: var(--tt-accent);
}
.card__text {
  margin-top: 15px;
  -webkit-line-clamp: 4;
  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,
.card__rating-ext,
.linek,
.pmovie__header,
.pmovie__list li,
.pmovie__poster,
.pmovie__rating {
  position: relative;
}
.card__fav .fas {
  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;
  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: #f60;
  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 {
  border-radius: 5px;
  padding: 10px 20px;
  gap: 0 !important;
  margin-bottom: 10px;
  overflow: hidden;
  display: flex !important;
}
.linek__img {
  width: 80px;
  height: 120px;
  margin: -10px 20px -10px -20px;
}
.updli__fav,
.updli__img {
  height: 50px;
  border-radius: 3px;
}
.full-text > ol li + li,
.full-text > ul li + li,
.linek .card__bottom,
.linek__meta {
  margin-top: 10px;
}
.linek__title {
  color: var(--tt-accent);
  font-weight: 500;
  font-size: 15px;
  padding-right: 120px;
}
.comment-item__date,
.linek__meta {
  color: var(--tt-2);
  font-size: 12px;
}
.linek .poster__fav {
  right: 5px;
  top: 5px;
}
.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__title {
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
}
.upd__date,
.updli__title {
  font-size: 13px;
  font-weight: 500;
}
.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 {
  color: var(--accent-red);
}
.upd__date {
  background-color: var(--bg-dark);
  color: var(--tt-dark);
  padding: 10px 20px;
  cursor: pointer;
}
.updli__link {
  padding: 10px 5px;
  border-bottom: 1px solid var(--bdc);
}
.updli__img {
  width: 50px;
  margin-right: 10px;
}
.updli__meta,
.updli__season {
  font-size: 11px;
  border-radius: 3px;
  background-color: var(--bg-2);
}
.updli__season {
  margin-top: 6px;
  padding: 3px 6px;
  display: inline-block;
}
.updli__meta {
  margin-left: 10px;
  padding: 6px 10px;
  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(250px, 1fr));
}
.updli__fav {
  width: 50px;
  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;
}
.updli__fav a::before {
  content: '';
  background: url(../images/heart.svg) center center/12px no-repeat #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 2px;
}
.upd__date:hover,
.updli:hover .updli__meta,
.updli:hover .updli__voice {
  background-color: var(--accent-red);
  color: #fff;
}
.upd__items {
  max-height: 460px;
  overflow-x: hidden;
  overflow-y: auto;
}
.sblogin {
  padding: 20px;
}
.sblogin__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-right: 10px;
  background-color: #000;
}
.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;
}
.footer__menu {
  gap: 20px 40px;
  font-weight: 400;
}
.footer__menu a {
  color: var(--tt-dark);
}
.comment-item__rating a > span,
.footer__menu--fw600,
.login__title {
  font-weight: 600;
}
.footer__copyright,
.footer__text {
  font-size: 13px;
}
.footer__soc {
  gap: 20px 15px;
}
.footer__soc img {
  display: block;
  height: 16px;
  opacity: 0.5;
}
.footer__soc a:hover img {
  opacity: 1;
}
.pagination__pages {
  padding-top: 40px;
  gap: 20px;
}
.pagination__pages-btn > a,
.pagination__pages-btn > span,
.pagination__pages > a,
.pagination__pages > 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;
}
.pmovie__poster {
  grid-area: pimg;
}
.pmovie__header {
  padding-right: 170px;
  grid-area: pheader;
}
.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: 0;
  top: 0;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fr:nth-child(2n),
.page__comments-psform,
.pmovie__header .poster__fav a:not(:hover),
.show-comms a {
  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 {
  grid-area: plist;
  line-height: 1.5;
  font-size: 13px;
  word-wrap: break-word;
}
.pmovie__list li {
  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);
}
.pmovie__rating {
  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;
}
.full-text h1,
.full-text h2,
.full-text h3,
.full-text h4,
.full-text h5,
.full-text iframe,
.full-text img:not(.emoji),
.full-text p,
.full-text table,
.full-text > ol,
.full-text > ul,
.page__title {
  margin-bottom: 20px;
}
.tabs-block__select button {
  height: 30px;
  padding: 0 10px;
  border-radius: 0;
  gap: 10px;
  background-color: var(--bg-2);
  color: var(--tt-2);
  font-weight: 500;
  border: 1px solid transparent;
}
.tabs-block__select button.is-active,
.tabs-block__select button:hover {
  background:
    linear-gradient(var(--bg), var(--bg-2)) padding-box,
    linear-gradient(to right, #4300fb, #fb3570) border-box;
  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;
  color: var(--tt);
}
.pmovie__related {
  padding: 0 !important;
  background: 0 0;
}
@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: 20px 0 0;
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  gap: 20px;
}
.pactor .card,
.pactor .linek {
  padding: 0;
  background: 0 0;
}
.full-text {
  line-height: 1.7;
  font-size: 14px;
  word-wrap: break-word;
}
.full-text a {
  color: #5278b1;
}
.full-text > .highslide img[style*='left'],
.full-text > img[style*='left'] {
  margin: 0 10px 10px 0;
}
.full-text > .highslide img[style*='right'],
.full-text > img[style*='right'] {
  margin: 0 0 10px 10px;
}
.full-text > ol li,
.full-text > ul 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 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 table,
.video-inside > * {
  width: 100%;
}
.full-text table tr td {
  padding: 10px;
  border: 2px solid #fff;
}
.full-text table tr:nth-child(odd) {
  background-color: #f2f6f9;
}
.full-text table tr:first-child {
  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;
}
.page__comments {
  margin: 0;
  border: 2px solid var(--bg-2);
}
.page__comments-psform-title {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 15px;
}
.page__comments-psform-form {
  cursor: pointer;
  color: var(--tt-3);
  font-size: 13px;
  padding: 10px;
  width: 200px;
  background:
    linear-gradient(var(--bg), var(--bg-2)) padding-box,
    linear-gradient(to right, #4300fb, #fb3570) border-box;
  border: 2px solid transparent;
  border-radius: 30px;
}
.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 #comment:first-child + .comments-tree-list,
#dle-comments-list .comments-tree-list:first-child {
  margin-top: -15px;
}
.ftop-item .has-overlay__icon,
.fullstory-new__container,
.page__comments-list {
  padding: 0;
}
.page__comments-list--not-comments {
  padding: 0;
  border: 0;
}
.add-comments-form.form {
  padding: 0;
  margin-bottom: 0;
}
.add-comments-form .form__input,
.add-comments-form .form__textarea-inside textarea,
.add-comments-form__input,
.mass_comments_action select {
  border-radius: 0;
}
.add-comments-form__input {
  margin-left: 20px;
}
.mass_comments_action {
  display: flex;
  align-items: center;
  max-width: 800px;
  white-space: nowrap;
  padding: 15px;
}
.comments-tree-item,
.comments-tree-list {
  display: block;
  padding: 0;
  margin: 0;
}
.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;
  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 15px 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%;
  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__main {
  margin: 6px 0 13px;
  font-size: 13px;
}
.comment-item__controls,
.comment-item__footer {
  gap: 10px;
  font-size: 12px;
}
.comment-item__rating a {
  color: var(--tt-3);
}
.comment-item__controls a,
.login__row,
.login__title a {
  color: var(--tt-2);
}
.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 .checkbox {
  transform: scale(0.8, 0.8);
  margin-right: -10px;
}
.comments-tree-list {
  list-style: none;
}
.comments-tree-list .comments-tree-list {
  padding-left: 50px;
  position: relative;
}
.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 #000;
}
.login__header,
.login__menu a,
.login__social {
  background-color: var(--ui-bg-darker);
}
.login__content,
.login__header,
.login__social {
  padding: 20px 40px;
}
.login__title {
  font-size: 17px;
  padding: 1px 0;
  text-transform: capitalize;
}
.lcomm__author,
.lcomm__link {
  font-weight: 500;
}
.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;
}
.login__row {
  margin-bottom: 20px;
  position: relative;
  display: block;
  font-size: 14px;
}
.login__caption {
  font-size: 14px;
  color: var(--tt);
  margin-bottom: 10px;
}
.login__caption a {
  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;
}
.login__row button {
  width: 100%;
}
.login__social-caption {
  font-size: 11px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.login__social-btns a {
  display: inline-block;
  margin: 0 3px;
  vertical-align: top;
}
.login__social-btns img {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.login__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}
.login__menu {
  padding-left: 35px;
  padding-right: 35px;
  margin-bottom: -10px;
}
.login__menu li {
  flex: 1 1 0;
  min-width: auto;
  max-width: 100%;
  margin: 0 5px 10px;
}
.login__menu a {
  display: block;
  border-radius: 6px;
  padding: 10px;
  white-space: nowrap;
  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(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 10px;
}
.no-js .owl-carousel,
.owl-carousel.owl-loaded,
.owl-carousel.owl-loading {
  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: 1s;
  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 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 0.4s;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
.owl-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
}
.owl-next,
.owl-prev {
  display: flex;
  cursor: pointer;
  box-shadow: none;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: 0 0;
  color: var(--tt);
  position: absolute;
  top: 0;
  font-size: 28px;
  margin-top: -40px;
}
.owl-prev {
  left: -50px;
}
.owl-next {
  right: -50px;
}
.owl-next:hover,
.owl-prev:hover {
  background: var(--bg-dark) !important;
  color: #fff !important;
}
.owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -37px;
}
.mobile-menu,
.overlay {
  position: fixed;
  height: 100%;
  top: 0;
}
.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-next,
.sect--carou .owl-prev {
  position: static;
  width: 30px;
  height: 30px;
  border-radius: 4px;
  font-size: 18px;
  background-color: var(--bg-dark);
  color: #fff;
}
.overlay {
  z-index: 998;
  left: 0;
  width: 100%;
  opacity: 0.6;
  background-color: #000;
  cursor: pointer;
  display: none;
}
.mobile-menu {
  width: 280px;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  z-index: 999;
  left: -320px;
  transition: left 0.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;
  font-size: 18px;
  opacity: 0;
  background: var(--ui-bg-accent);
  color: #fff;
  transition:
    top 0.4s,
    opacity 0.4s;
  border-bottom-right-radius: 10px;
}
.mobile-menu-close.is-active {
  top: 0;
  opacity: 1;
}
body.mobile-menu-is-opened {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.mobile-menu .header__menu {
  margin: 0;
  display: block;
}
.mobile-menu .header__menu > li > a {
  height: 50px;
  padding: 0 20px;
}
.mobile-menu .header__dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu .header__dropdown-toggle {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  border-radius: 0;
  border: 0;
  justify-content: space-between;
}
.mobile-menu .header__dropdown-menu {
  position: static;
  width: 100%;
  padding: 0;
  background: none;
  border-radius: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transform: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu .header__dropdown.is-open .header__dropdown-menu {
  pointer-events: auto;
  overflow: scroll;
  max-height: 900px;
}
.mobile-menu .header__dropdown-list {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0 8px 8px;
  max-height: none;
  overflow: visible;
  background: var(--bg-dark);
  border-radius: 0;
}
.mobile-menu .header__dropdown-list a {
  padding: 12px 14px;
  border-radius: 6px;
}
@media (prefers-reduced-motion: reduce) {
  .header__dropdown-menu,
  .header__dropdown-arrow,
  .header__dropdown-list a,
  .header__dropdown-icon,
  .mobile-menu .header__dropdown-menu {
    transition: none;
  }
}
@media screen and (max-width: 1320px) and (min-width: 1221px) {
  .header__dropdown-menu {
    width: min(520px, calc(100vw - 40px));
  }
  .header__dropdown-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 1220px) {
  .wrapper,
  body {
    background-image: none;
  }
  .wrapper {
    padding: 0;
    overflow: hidden;
  }
  .footer,
  .header,
  .wrapper-container {
    max-width: 1000px;
    border-radius: 0;
  }
  .cols__right .js-this-in-mobile-menu,
  .has-overlay__icon,
  .header .header__menu,
  .poster .poster__fav,
  .poster__btn-info {
    display: none;
  }
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .header__btn-menu {
    display: flex;
    margin-left: 10px;
    padding: 0;
    width: 40px;
    font-size: 18px;
    border: 2px solid transparent;
    background:
      linear-gradient(var(--bg), var(--bg-2)) padding-box,
      linear-gradient(to right, #4300fb, #fb3570) border-box;
  }
  .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;
  }
  .filter-block-toggle {
    display: flex;
    margin-bottom: 40px;
  }
  .filter-block {
    display: none;
    margin-top: -40px;
  }
}
@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;
    line-clamp: 3;
  }
  .linek__img {
    margin: 0 10px 0 0;
  }
  .linek {
    padding: 10px;
  }
  .count-items .linek::before {
    right: 10px;
    margin-top: -20px;
  }
}
@media screen and (max-width: 760px) {
  .card__img,
  .pmovie__img {
    height: 180px;
  }
  .linek__title,
  .pmovie__header {
    padding: 0;
  }
  .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;
  }
  .logo {
    flex: 1 1 0;
    min-width: 50px;
    max-width: 100%;
    margin-right: 20px;
  }
  .sect__ctrl-menu label,
  .sect__ctrl-menu label div,
  .sect__ctrl-menu li,
  .sect__ctrl-menu li a {
    justify-content: center;
    flex-grow: 1;
    text-align: center;
  }
  .footer__bottom,
  .footer__menu,
  .footer__text,
  .footer__top {
    justify-content: center;
    min-width: 100%;
    text-align: center;
  }
  .footer__menu {
    gap: 20px;
    margin-bottom: 20px;
  }
  .sect__ctrl-menu {
    gap: 10px;
  }
  .card,
  .pmovie__main {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 15px 10px;
  }
  .sect__ctrl-menu a,
  .sect__ctrl-menu label div {
    background-color: var(--bg);
    color: var(--tt);
    border-radius: 4px;
    padding: 0 10px;
  }
  .card {
    grid-template-rows: min-content min-content 1fr;
    grid-template-areas: 'cimg ctitle' 'cimg cbtm' 'cdesc cdesc';
  }
  .card__bottom {
    align-self: flex-end;
  }
  .card .poster__fav {
    right: auto;
    top: 100px;
    left: 150px;
  }
  .card__rating-ext span,
  .comment-item__controls,
  .mass_comments_action {
    display: none;
  }
  .card__title {
    padding: 0;
    margin: 0;
  }
  .linek {
    align-items: flex-start;
  }
  .linek .poster__fav {
    position: static;
    margin-top: 10px;
  }
  .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';
  }
  .pmovie__header h1 {
    font-size: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .pmovie__list li {
    padding-left: 130px;
  }
  .pmovie__img {
    width: 120px;
  }
  .pmovie__rating,
  .pmovie__rating--10-stars {
    bottom: 0;
    width: 100%;
  }
  .pmovie__rating {
    position: relative;
    left: 0;
    margin: 20px 0;
  }
  .page__comments,
  .page__text .quote {
    margin-left: var(--indent-negative);
    margin-right: var(--indent-negative);
  }
  .pmovie__rating--4 {
    min-width: 190px;
    width: calc(100vw - 170px);
  }
  .pmovie__header .poster__fav {
    position: static;
    margin-top: 20px;
    display: inline-flex;
  }
  .tabs-block__select button {
    flex-grow: 1;
  }
  .page__text .quote {
    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;
  }
  .comment-item,
  .page__comments-psform,
  .page__comments-title {
    padding-left: var(--indent);
    padding-right: var(--indent);
  }
  .add-comments-form__input {
    min-width: 100%;
    margin: 0 0 10px;
  }
  .add-comments-form__btn {
    width: 100%;
    order: 10;
    background: var(--ui-bg-accent);
  }
  .add-comments-form .form__row--protect .form__caption {
    width: 100%;
    margin: 0 0 10px;
  }
}
.fr::before,
.ftop-item::before {
  content: counter(num);
  counter-increment: num;
  top: 50%;
  transform: translateY(-50%);
}
@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__logo img {
    width: 135px;
    height: 84.15px;
  }
  .header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header__search input,
  .header__search input:focus {
    height: 40px;
  }
  .header__search button,
  .poster__fav a::before {
    width: 40px;
    height: 40px;
  }
  .coll {
    height: 140px;
  }
  .cols__right {
    margin: 0 var(--indent-negative);
    margin-top: 20px;
  }
  .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;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .speedbar {
    margin-bottom: -20px;
  }
  .comment-item__date {
    width: 100%;
  }
  .ya-share2 {
    height: 17px;
    margin-left: 0;
  }
  .pmovie__complaint {
    margin-right: 5px;
  }
  .header__favlink {
    margin-left: 10px;
    margin-right: 10px;
  }
}
.ftop-item,
.lcomm {
  border-bottom: 1px solid;
  padding: 15px;
}
@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));
}
.sb--mt {
  margin-top: 20px;
}
.sb--mt .sb__title {
  border-bottom: 2px solid;
}
.ftop-item {
  width: 250px;
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #fb3570, #4300fb);
}
.fullstory-new__header,
.lcomm {
  border-image-slice: 1;
  border-image-source: linear-gradient(to right, #4300fb, #fb3570);
}
.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 {
  color: var(--tt-2);
  opacity: 0.3;
  position: absolute;
  left: -25px;
  font-size: 40px;
  font-weight: 700;
}
.lcomm {
  width: 250px;
  font-size: 13px;
}
.lcomm__link {
  display: block;
  font-size: 12px;
  color: var(--tt-3);
  padding-left: 1px;
}
.lcomm__date {
  font-size: 12px;
  color: var(--tt-2);
  margin-left: 10px;
}
.lcomm__text {
  margin: 8px 0 10px;
  opacity: 0.66;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
.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;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg-2)) padding-box,
    linear-gradient(to right, #4300fb, #fb3570) border-box;
}
.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;
}
.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;
  background:
    linear-gradient(var(--bg), var(--bg-2)) padding-box,
    linear-gradient(to right, #4300fb, #fb3570) border-box;
  border: 2px solid transparent;
}
.header__login-header {
  padding: 20px;
  color: var(--tt);
  font-weight: 600;
  gap: 20px;
  border-bottom: 1px solid var(--accent-red);
  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;
  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;
}
.fr-list {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: -30px;
}
.fr::before {
  width: 40px;
  margin-top: -1px;
  color: var(--tt-accent);
  font-weight: 600;
  position: absolute;
  left: 0;
}
.fr {
  cursor: pointer;
  position: relative;
  padding: 6px 10px 6px 40px;
  border-radius: 4px;
}
.fr__title {
  display: inline-block;
  max-width: 100%;
  line-height: 20px;
  height: 20px;
  font-weight: 400;
}
.fr:hover {
  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,
.pmovie__rating-likes > * .fal {
  background-color: var(--accent-green);
}
.clrrating-10,
.clrrating-9 {
  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;
  overflow: hidden;
}
.pmovie__rating-likes > * .fal {
  font-size: 16px;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  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) {
  .wrapper-container {
    max-width: 480px;
  }
  .login {
    max-width: 90%;
    max-height: 90%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .login__content,
  .login__header,
  .login__social,
  .pages-bg {
    padding-left: 20px;
    padding-right: 20px;
  }
  #dle-content,
  .grid-items {
    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);
  }
  .fr {
    margin: 0 var(--indent-negative);
    padding-right: 20px;
  }
  .header__favlink,
  .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 input[type='text'],
.filter-block__cell-content select,
.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: 0.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: 0.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 button,
.filter-block__cell-content input[type='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);
}
.full_rating {
  position: absolute;
  top: 0;
  right: 50px;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
}
.full_rating span {
  display: inline-block;
  padding: 0 5px;
}
.full_rating p:last-child {
  font-size: 12px;
}
@media screen and (max-width: 470px) {
  .full_rating {
    position: relative;
    top: 10px;
    right: auto;
  }
  .pmovie__header .poster__fav {
    display: inline-block;
    margin-top: 0;
  }
}
.js-show-trailer {
  background: var(--ui-bg-accent);
  color: var(--ui-text-color-on-accent);
}
.fullstory-new {
  background-color: var(--bg);
  padding: 0;
  overflow: hidden;
}
.fullstory-new__header {
  background: linear-gradient(135deg, var(--bg) 0, var(--bg-2) 100%);
  padding: 20px 0;
  border-bottom: 2px solid;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.fullstory-new__title-section {
  flex: 1;
}
.fullstory-new__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0 0 8px;
  line-height: 1.2;
}
.fullstory-new__meta {
  font-weight: 500;
  font-size: 13px;
  color: var(--tt-2);
}
.fullstory-new__age-rating,
.fullstory-new__season {
  font-weight: 600;
  font-size: 12px;
}
.fullstory-new__actions {
  display: flex;
  align-items: center;
}
.fullstory-new__actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.fullstory-new__actions a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 0, 251, 0.4);
  color: #fff;
  text-decoration: none;
}
.fullstory-new__content {
  display: flex;
  gap: 20px;
  padding: 20px;
  position: relative;
}
.fullstory-new__poster-section {
  flex: 0 0 160px;
  max-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fullstory-new__info-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.fullstory-new__poster {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 160px;
}
.fullstory-new__poster-img {
  width: 160px;
  height: 240px;
  object-fit: cover;
  display: block;
}
.fullstory-new__poster-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 15px;
  color: #fff;
}
.fullstory-new__poster-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fullstory-new__age-rating {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 10;
}
.fullstory-new__ratings {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  flex-wrap: wrap;
  justify-content: center;
}
.fullstory-new__ratings span {
  display: inline-block;
  padding: 0 5px;
}
.fullstory-new__ratings p:last-child {
  font-size: 11px;
}
.fullstory-new__favorites {
  position: absolute;
  right: 0;
  top: 20px;
  z-index: 11;
  cursor: pointer;
  opacity: 1;
  visibility: visible;
  transform: none;
}
.fullstory-new__favorites a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 3px;
  background-color: var(--accent-red);
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}
.fullstory-new__favorites a::before {
  content: '';
  background: url(../images/heart.svg) 0 0 / contain no-repeat;
  width: 16px;
  height: 16px;
}
.fullstory-new__favorites a:hover {
  background-color: var(--bg-dark);
  color: #fff;
  text-decoration: none;
}
.fullstory-new__user-rating {
  background: linear-gradient(135deg, var(--bg-2) 0, var(--bg) 100%);
  border-radius: 8px;
  padding: 15px 0;
  margin-top: 10px;
}
.fullstory-new__rating-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fullstory-new__rating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fullstory-new__rating-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0;
}
.fullstory-new__rating-stats {
  color: var(--tt-2);
  font-size: 11px;
}
.fullstory-new__rating-content {
  display: flex;
  align-items: center;
  gap: 15px;
}
.fullstory-new__rating-score {
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 12px;
}
.fullstory-new__details {
  background: linear-gradient(135deg, var(--bg-2) 0, var(--bg) 100%);
  border-radius: 8px;
  padding: 0 20px;
}
.fullstory-new__details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.fullstory-new__detail-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1 1 200px;
  min-width: 200px;
}
.fullstory-new__detail-item--full-width {
  flex: 1 1 100%;
  min-width: 100%;
}
.fullstory-new__detail-label {
  font-weight: 700;
  color: var(--tt-3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: linear-gradient(135deg, #4300fb, #fb3570);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fullstory-new__description,
.fullstory-new__player-section,
.fullstory-new__related {
  background: linear-gradient(135deg, var(--bg-2) 0, var(--bg) 100%);
  border-radius: 8px;
  padding: 20px;
}
.fullstory-new__detail-value {
  color: var(--tt-3);
  font-size: 13px;
  line-height: 1.4;
  max-height: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.fullstory-new__detail-value a {
  color: var(--tt-accent);
  text-decoration: underline;
}
.fullstory-new__detail-value a:hover {
  text-decoration: none;
}
.fullstory-new__tagline-content {
  font-size: 16px;
  font-style: italic;
  color: var(--tt-3);
  line-height: 1.5;
  font-weight: 500;
}
.fullstory-new__description {
  margin: 0 20px;
}
.fullstory-new__description-content {
  color: var(--tt);
  line-height: 1.6;
  font-size: 14px;
}
.fullstory-new__description-content h1,
.fullstory-new__description-content h2,
.fullstory-new__description-content h3,
.fullstory-new__description-content h4,
.fullstory-new__description-content h5 {
  color: var(--tt-3);
  font-weight: 600;
  margin: 15px 0 8px;
}
.fullstory-new__description-content a {
  color: var(--tt-accent);
  text-decoration: underline;
}
.fullstory-new__description-content a:hover {
  text-decoration: none;
}
.fullstory-new__player-section,
.fullstory-new__related {
  margin: 0 20px 20px;
}
.fullstory-new__player-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0 0 20px;
}
.fullstory-new__player-tabs-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 15px;
}
.fullstory-new__tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background-color: var(--bg);
  color: var(--tt-2);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: 0.3s;
}
.fullstory-new__tab-btn--active,
.fullstory-new__tab-btn:hover {
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
}
.fullstory-new__player-tab {
  display: none;
}
.fullstory-new__player-tab--active {
  display: block;
}
.fullstory-new__video-container {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 400px;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullstory-new__video-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 4px solid rgba(67, 0, 251, 0.3);
  border-top: 4px solid #4300fb;
  border-right: 4px solid #fb3570;
  border-radius: 50%;
  animation: 1s linear infinite spin;
  z-index: 1;
}
.fullstory-new__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  min-height: 400px;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  background: 0 0;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.fullstory-new__player-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--bdc);
}
.fullstory-new__share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fullstory-new__share-label {
  color: var(--tt-2);
  font-size: 13px;
  font-weight: 500;
}
.fullstory-new__complaint-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  border: none;
}
.fullstory-new__complaint-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(67, 0, 251, 0.4);
}
.fullstory-new__related-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0 0 15px;
}
.fullstory-new__related-content {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 10px;
}
.fullstory-new__related-content .poster {
  flex: 0 0 120px;
  width: 120px;
}
.fullstory-new__related-content .poster__img {
  height: 180px;
  margin-bottom: 6px;
}
.fullstory-new__related-content .poster__title {
  font-size: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.fullstory-new__related-content .poster__subtitle {
  font-size: 12px;
  margin-top: 3px;
}
.fullstory-new__comments {
  background: linear-gradient(135deg, var(--bg-2) 0, var(--bg) 100%);
  margin: 0 20px 20px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.fullstory-new__comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 15px;
  background: linear-gradient(135deg, var(--bg) 0, var(--bg-2) 100%);
  border-bottom: 1px solid var(--bdc);
}
.fullstory-new__comments-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0;
}
.fullstory-new__comment-btn {
  padding: 8px 16px;
  background: linear-gradient(135deg, #4300fb, #fb3570);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.fullstory-new__comment-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(67, 0, 251, 0.4);
}
.dt-is-active .fullstory-new__edit-btn:hover,
.dt-is-active .fullstory-new__poster {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.fullstory-new__comments-form {
  background-color: var(--bg);
  padding: 20px;
  margin: 0;
}
.fullstory-new__comments-stats {
  padding: 15px 20px;
  background-color: var(--bg-2);
  border-bottom: 1px solid var(--bdc);
}
.fullstory-new__comments-count {
  color: var(--tt-2);
  font-size: 13px;
  font-weight: 500;
}
.fullstory-new__comments-count strong {
  color: var(--tt-3);
  font-weight: 700;
}
.fullstory-new__comments-list {
  background-color: var(--bg);
  padding: 0;
}
@media screen and (max-width: 1000px) {
  .fullstory-new__content {
    gap: 15px;
    padding: 15px;
  }
  .fullstory-new__poster-section {
    flex: 0 0 160px;
    max-width: 160px;
  }
  .fullstory-new__poster-img {
    width: 160px;
    height: 240px;
  }
}
@media screen and (max-width: 800px) {
  .fullstory-new__header {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
  }
  .fullstory-new__actions {
    align-self: flex-end;
  }
  .fullstory-new__content {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  .fullstory-new__poster-section {
    order: 1;
    flex: none;
    max-width: none;
    width: 100%;
  }
  .fullstory-new__info-section {
    order: 2;
  }
  .fullstory-new__details-grid {
    flex-direction: column;
  }
  .fullstory-new__detail-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .fullstory-new__comments,
  .fullstory-new__description,
  .fullstory-new__player-section,
  .fullstory-new__related {
    margin: 0 15px 15px;
  }
}
@media screen and (max-width: 600px) {
  .fullstory-new__content,
  .fullstory-new__header {
    padding: 15px;
  }
  .fullstory-new__title {
    font-size: 20px;
  }
  .fullstory-new__poster-section {
    align-items: center;
    margin-top: 10px;
  }
  .fullstory-new__poster {
    max-width: 160px;
    width: 160px;
  }
  .fullstory-new__poster-img {
    width: 160px;
    height: 240px;
  }
  .fullstory-new__ratings {
    font-size: 18px;
    gap: 10px;
  }
  .fullstory-new__comments,
  .fullstory-new__description,
  .fullstory-new__player-section,
  .fullstory-new__related {
    margin: 0 10px 10px;
    padding: 15px;
  }
  .fullstory-new__player-footer {
    gap: 8px;
    align-items: stretch;
  }
  .fullstory-new__share {
    justify-content: center;
  }
  .fullstory-new__comments-header {
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
  }
  .fullstory-new__comment-btn {
    text-align: center;
  }
  .fullstory-new__related-content {
    gap: 8px;
    scroll-snap-type: x mandatory;
  }
  .fullstory-new__related-content .poster {
    flex: 0 0 120px;
    width: 120px;
    scroll-snap-align: start;
  }
  .fullstory-new__related-content .poster__img {
    height: 160px;
  }
}
@media screen and (max-width: 480px) {
  .fullstory-new__meta {
    font-size: 12px;
  }
  .fullstory-new__details {
    padding: 0;
  }
  .fullstory-new__content,
  .fullstory-new__header {
    padding: 12px 0;
  }
  .fullstory-new__title {
    font-size: 18px;
  }
  .fullstory-new__poster {
    max-width: 160px;
    width: 160px;
  }
  .fullstory-new__poster-img {
    width: 160px;
    height: 240px;
  }
  .fullstory-new__ratings {
    font-size: 16px;
    gap: 8px;
    justify-content: flex-start;
  }
  .fullstory-new__comments,
  .fullstory-new__description,
  .fullstory-new__player-section,
  .fullstory-new__related {
    margin: 12px 0;
    padding: 15px 0;
  }
  .fullstory-new__tab-btn {
    justify-content: center;
  }
  .fullstory-new__related-content .poster {
    flex: 0 0 140px;
    width: 140px;
  }
  .fullstory-new__related-content .poster__img {
    height: 140px;
  }
  .fullstory-new__comments-header {
    padding: 20px 0;
  }
}
.dt-is-active .fullstory-new {
  border-color: rgba(255, 255, 255, 0.1);
}
.dt-is-active .fullstory-new__edit-btn {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.dt-is-active .fullstory-new__comment-btn {
  box-shadow: 0 2px 8px rgba(67, 0, 251, 0.3);
}
.dt-is-active .fullstory-new__comment-btn:hover {
  box-shadow: 0 4px 12px rgba(67, 0, 251, 0.4);
}

/* Main page SEO block (main-seo.tpl) — neon / brand gradient */
.descr-main-seo__shell {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 28px 26px 32px;
}
.descr-main-seo__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}
.descr-main-seo__glow--tl {
  width: 220px;
  height: 220px;
  top: -80px;
  left: -60px;
  background: rgba(67, 0, 251, 0.55);
  opacity: 0.85;
}
.descr-main-seo__glow--br {
  width: 280px;
  height: 280px;
  bottom: -100px;
  right: -80px;
  background: rgba(251, 53, 112, 0.45);
  opacity: 0.9;
}
.descr-main-seo__shell > *:not(.descr-main-seo__glow) {
  position: relative;
  z-index: 1;
}
.descr h2.descr-main-seo__title {
  font-size: clamp(17px, 4.2vw, 22px);
  font-weight: 700;
  margin: 0 0 22px;
  line-height: 1.25;
  letter-spacing: 0.03em;
  padding-bottom: 14px;
  border-bottom: none;
  background: linear-gradient(
    95deg,
    #e8e0ff 0%,
    #ffffff 28%,
    #ffc8e0 52%,
    #b8a3ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(251, 53, 112, 0.5))
    drop-shadow(0 0 36px rgba(67, 0, 251, 0.35));
}
.descr h2.descr-main-seo__title::after {
  content: '';
  display: block;
  height: 3px;
  margin-top: 14px;
  max-width: 120px;
  border-radius: 3px;
  background: linear-gradient(90deg, #4300fb, #fb3570, #7c5cff);
  box-shadow:
    0 0 14px rgba(251, 53, 112, 0.85),
    0 0 24px rgba(67, 0, 251, 0.5);
}
@supports not (background-clip: text) {
  .descr h2.descr-main-seo__title {
    color: var(--tt-3);
    background: none;
    filter: none;
  }
}
.descr-main-seo__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 24px 22px;
}
.descr-main-seo__lead p {
  margin: 0;
  color: var(--tt);
  line-height: 1.75;
}
.descr-main-seo__lead p + p {
  margin-top: 16px;
}
.descr-main-seo__figure {
  margin: 0;
}
.descr-main-seo__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: #0d0618;
  border: 1px solid rgba(251, 53, 112, 0.5);
  box-shadow:
    0 0 32px rgba(251, 53, 112, 0.45),
    0 0 56px rgba(67, 0, 251, 0.35),
    inset 0 0 40px rgba(67, 0, 251, 0.2);
}
.descr-main-seo__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 50px rgba(67, 0, 251, 0.35),
    inset 0 0 90px rgba(251, 53, 112, 0.18);
}
.descr-main-seo__hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.descr-main-seo__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 4px;
}
.descr-main-seo__card {
  margin: 0;
  padding: 0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(139, 92, 246, 0.4);
  box-shadow: 0 0 24px rgba(67, 0, 251, 0.15);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}
.descr .descr-main-seo__card-hit {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px 20px;
  height: 100%;
  min-height: 0;
  text-decoration: none;
  color: inherit;
  border-radius: 13px;
  -webkit-tap-highlight-color: rgba(67, 0, 251, 0.2);
}
.descr .descr-main-seo__card-hit:hover {
  text-decoration: none;
}
.descr-main-seo__card-hit:hover .descr-main-seo__card-title {
  color: var(--tt-accent);
}
.descr-main-seo__card-hit:hover .descr-main-seo__card-text {
  color: var(--tt);
}
.descr-main-seo__card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 12px 40px rgba(67, 0, 251, 0.35),
    0 0 28px rgba(251, 53, 112, 0.25);
}
.descr-main-seo__card--violet {
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 28px rgba(67, 0, 251, 0.25);
}
.descr-main-seo__card--violet:hover {
  border-color: rgba(160, 130, 255, 0.85);
}
.descr-main-seo__card--rose {
  border-color: rgba(251, 53, 112, 0.45);
  box-shadow: 0 0 28px rgba(251, 53, 112, 0.2);
}
.descr-main-seo__card--rose:hover {
  border-color: rgba(255, 120, 170, 0.85);
  box-shadow: 0 12px 40px rgba(251, 53, 112, 0.35);
}
.descr-main-seo__card--duo {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-2), var(--bg-2)) padding-box,
    linear-gradient(135deg, rgba(67, 0, 251, 0.85), rgba(251, 53, 112, 0.85))
      border-box;
  box-shadow:
    0 0 32px rgba(67, 0, 251, 0.22),
    0 0 24px rgba(251, 53, 112, 0.15);
}
.descr-main-seo__card--duo:hover {
  box-shadow:
    0 12px 48px rgba(67, 0, 251, 0.35),
    0 0 36px rgba(251, 53, 112, 0.28);
}
.descr-main-seo__card-fig {
  margin: 0;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0d0618;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 24px rgba(67, 0, 251, 0.2);
}
.descr-main-seo__card-fig::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 28px rgba(67, 0, 251, 0.25),
    inset 0 0 48px rgba(251, 53, 112, 0.12);
}
.descr-main-seo__card-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.descr .descr-main-seo__card-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--tt-3);
  margin: 0;
  line-height: 1.3;
  text-shadow: 0 0 20px rgba(251, 53, 112, 0.25);
}
.descr-main-seo__card-text {
  margin: 0;
  font-size: 13px;
  color: var(--tt-2);
  line-height: 1.6;
  flex-grow: 1;
}
.descr-main-seo__bottom {
  margin-top: 8px;
  padding: 22px 20px 8px;
}
.descr h3.descr-main-seo__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.3;
  color: var(--tt-3);
  text-shadow: 0 0 18px rgba(67, 0, 251, 0.35);
}
.descr-main-seo__outro {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 53, 112, 0.25);
  color: var(--tt);
  font-size: 14px;
  line-height: 1.75;
  box-shadow: 0 -1px 0 rgba(67, 0, 251, 0.2);
}
.descr-main-seo ul li::before {
  color: #fb3570;
  text-shadow: 0 0 10px rgba(251, 53, 112, 0.85);
}
.dt-is-active .descr-main-seo__glow--tl {
  background: rgba(28, 202, 218, 0.45);
}
.dt-is-active .descr-main-seo__glow--br {
  background: rgba(67, 0, 251, 0.4);
}
.dt-is-active .descr h2.descr-main-seo__title {
  background: linear-gradient(95deg, #b8f8ff 0%, #ffffff 35%, #c4b3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(28, 202, 218, 0.55))
    drop-shadow(0 0 28px rgba(67, 0, 251, 0.35));
}
.dt-is-active .descr h2.descr-main-seo__title::after {
  background: linear-gradient(90deg, #1ccada, #4300fb, #fb3570);
  box-shadow:
    0 0 14px rgba(28, 202, 218, 0.75),
    0 0 22px rgba(67, 0, 251, 0.45);
}
.dt-is-active .descr-main-seo__visual {
  border-color: rgba(28, 202, 218, 0.45);
  box-shadow:
    0 0 32px rgba(28, 202, 218, 0.35),
    0 0 48px rgba(67, 0, 251, 0.25),
    inset 0 0 40px rgba(28, 202, 218, 0.12);
}
.dt-is-active .descr-main-seo__visual::after {
  box-shadow:
    inset 0 0 50px rgba(28, 202, 218, 0.22),
    inset 0 0 90px rgba(67, 0, 251, 0.15);
}
.dt-is-active .descr-main-seo__card:hover {
  border-color: rgba(28, 202, 218, 0.55);
  box-shadow: 0 12px 40px rgba(28, 202, 218, 0.28);
}
.dt-is-active .descr-main-seo ul li::before {
  color: #1ccada;
  text-shadow: 0 0 10px rgba(28, 202, 218, 0.85);
}
@media screen and (max-width: 950px) {
  .descr-main-seo__shell {
    padding: 20px 16px 24px;
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    border-radius: 16px;
  }
  .descr-main-seo__glow--tl {
    width: 140px;
    height: 140px;
    top: -50px;
    left: -40px;
    filter: blur(40px);
    opacity: 0.65;
  }
  .descr-main-seo__glow--br {
    width: 180px;
    height: 180px;
    bottom: -60px;
    right: -50px;
    filter: blur(44px);
    opacity: 0.7;
  }
  .descr h2.descr-main-seo__title {
    margin-bottom: 16px;
    padding-bottom: 10px;
    letter-spacing: 0.02em;
    filter: drop-shadow(0 0 12px rgba(251, 53, 112, 0.35))
      drop-shadow(0 0 22px rgba(67, 0, 251, 0.22));
  }
  .descr h2.descr-main-seo__title::after {
    margin-top: 12px;
    max-width: 100px;
    height: 2px;
  }
  .descr-main-seo__hero {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 14px;
  }
  .descr-main-seo__figure {
    order: -1;
    width: 100%;
    max-width: none;
  }
  .descr-main-seo__visual {
    border-radius: 10px;
    box-shadow:
      0 0 22px rgba(251, 53, 112, 0.32),
      0 0 36px rgba(67, 0, 251, 0.22),
      inset 0 0 28px rgba(67, 0, 251, 0.15);
  }
  .descr-main-seo__visual::after {
    box-shadow:
      inset 0 0 36px rgba(67, 0, 251, 0.28),
      inset 0 0 64px rgba(251, 53, 112, 0.12);
  }
  .descr-main-seo__lead p + p {
    margin-top: 14px;
  }
  .descr-main-seo__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 2px;
  }
  .descr .descr-main-seo__card-hit {
    padding: 16px 14px 18px;
    gap: 10px;
  }
  .descr-main-seo__bottom {
    margin-top: 6px;
    padding: 18px 14px 6px;
    border-radius: 12px;
  }
  .descr h3.descr-main-seo__subtitle {
    font-size: 17px;
    margin-bottom: 12px;
  }
  .descr-main-seo__outro {
    margin-top: 16px;
    padding-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }
  .dt-is-active .descr h2.descr-main-seo__title {
    filter: drop-shadow(0 0 10px rgba(28, 202, 218, 0.35))
      drop-shadow(0 0 18px rgba(67, 0, 251, 0.2));
  }
}
@media screen and (max-width: 760px) {
  .descr-main-seo__lead p {
    font-size: 14px;
    line-height: 1.65;
  }
  .descr .descr-main-seo__card-title {
    font-size: 16px;
    line-height: 1.28;
  }
  .descr-main-seo__card-text {
    font-size: 13px;
    line-height: 1.55;
  }
  .descr-main-seo__card-fig {
    aspect-ratio: 16 / 9;
    border-radius: 8px;
  }
}
@media screen and (max-width: 470px) {
  .descr-main-seo__shell {
    padding: 16px 12px 20px;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    border-radius: 12px;
  }
  .descr-main-seo__hero {
    padding: 12px 10px;
    gap: 12px;
  }
  .descr-main-seo__visual {
    border-radius: 8px;
  }
  .descr-main-seo__grid {
    gap: 12px;
  }
  .descr .descr-main-seo__card-hit {
    padding: 14px 12px 16px;
  }
  .descr-main-seo__bottom {
    padding: 14px 10px 4px;
  }
  .descr-main-seo ul li {
    margin-left: 0;
    padding-left: 22px;
    font-size: 13px;
    line-height: 1.55;
  }
  .descr-main-seo ul li::before {
    left: 0;
    font-size: 11px;
  }
}
@media (hover: none) and (pointer: coarse) {
  .descr-main-seo__card:hover {
    transform: none;
  }
  .descr-main-seo__card:active {
    transform: scale(0.99);
    transition: transform 0.1s ease;
  }
}
@media (prefers-reduced-motion: reduce) {
  .descr-main-seo__card:hover {
    transform: none;
  }
  .descr-main-seo__card:active {
    transform: none;
  }
}
.descr .descr-main-seo__card-hit:focus-visible {
  outline: 2px solid var(--tt-accent);
  outline-offset: 3px;
}
