:root {
  --sp-bg: #1d2025;
  --sp-panel: #15191e;
  --sp-panel-soft: rgba(255, 255, 255, .05);
  --sp-border: rgba(255, 255, 255, .09);
  --sp-text: hsla(0, 0%, 100%, .9);
  --sp-muted: hsla(0, 0%, 100%, .5);
  --sp-dim: hsla(0, 0%, 100%, .3);
  --sp-red: #fb2740;
  --sp-red-hover: #ff6262;
  --sp-container: 1180px;
  --sp-container-wide: 1600px;
}

* {
  box-sizing: border-box;
  outline: none;
}

html {
  min-width: 320px;
  min-height: 100%;
  line-height: 1.15;
  background: var(--sp-bg);
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: var(--sp-bg);
  color: var(--sp-text);
  font-family: "Noah", "Trebuchet MS", Verdana, sans-serif;
  font-size: .875rem;
  line-height: 1.25rem;
  -webkit-tap-highlight-color: transparent;
}

body.sp-menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .3s, background-color .3s, opacity .3s, transform .3s;
}

a:hover,
a:focus {
  color: var(--sp-red);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  max-width: 100%;
  border: 0;
  vertical-align: bottom;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

.skip-to-main-content {
  position: absolute;
  top: -100px;
  left: 50%;
  z-index: 10000;
  padding: 8px 12px;
  background: var(--sp-red);
  color: #fff;
  transform: translateX(-50%);
}

.skip-to-main-content:focus {
  top: 8px;
}

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container,
.header__container {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

@media (min-width: 1200px) {
  .container,
  .header__container {
    width: var(--sp-container);
    padding-left: 0;
    padding-right: 0;
  }
}

@media (min-width: 1800px) {
  .container,
  .header__container {
    width: var(--sp-container-wide);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: 0;
  border-radius: 2px;
  background: var(--sp-red);
  color: #fff;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
}

.btn:hover {
  background: var(--sp-red-hover);
  color: #fff;
}

.input {
  width: 100%;
  height: 40px;
  padding: 0 44px 0 16px;
  border: 0;
  border-radius: 2px;
  background: var(--sp-panel);
  color: var(--sp-text);
  box-shadow: none;
  -webkit-appearance: none;
}

.input::placeholder {
  color: var(--sp-dim);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--sp-bg);
  box-shadow: 0 2px 4px #111317;
}

.sp-page {
  padding-top: 64px;
}

@media (min-width: 1200px) {
  .header {
    position: relative;
    padding-top: 8px;
    box-shadow: 0 2px 4px rgba(17, 19, 23, .7);
  }

  .sp-page {
    padding-top: 0;
  }
}

.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}

@media (min-width: 1200px) {
  .header__wrapper {
    min-height: 0;
    padding-bottom: 20px;
  }
}

.burger {
  position: relative;
  z-index: 3;
  order: 1;
  width: 40px;
  height: 40px;
  margin-right: 2px;
  padding: 0;
  border: 0;
  background: transparent;
}

.burger__wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.burger__wrapper > span,
.burger__wrapper > span::before,
.burger__wrapper > span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sp-dim);
  transition: transform .3s, top .3s, background .3s;
}

.burger__wrapper > span {
  position: relative;
}

.burger__wrapper > span::before,
.burger__wrapper > span::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger__wrapper > span::before {
  top: -7px;
}

.burger__wrapper > span::after {
  top: 7px;
}

.burger--close .burger__wrapper > span {
  background: transparent;
}

.burger--close .burger__wrapper > span::before {
  top: 0;
  transform: rotate(45deg);
}

.burger--close .burger__wrapper > span::after {
  top: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.logo {
  text-decoration: none;
}

.header__logo {
  order: 2;
  cursor: pointer;
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  max-width: 44vw;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.7px;
  line-height: 1;
}

.logo-word {
  color: #fff;
}

.logo-tail {
  margin-left: 4px;
  color: var(--sp-red);
}

.logo-text:hover {
  color: #fff;
}

@media (min-width: 1200px) {
  .header__logo {
    order: initial;
  }

  .logo-text {
    max-width: none;
    font-size: 34px;
  }
}

.search {
  display: flex;
  align-items: center;
}

.header__search {
  order: 4;
  width: 40px;
}

.search__input {
  display: flex;
  width: 100%;
}

.search__input .search-form {
  display: none;
}

.search__input .open-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
}

.search_open .search-form {
  position: absolute;
  top: 100%;
  left: 15px;
  right: 15px;
  z-index: 20;
  display: flex;
  height: 44px;
  background: var(--sp-panel);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .35);
}

.search-form {
  position: relative;
  width: 100%;
}

.search-form .do-search {
  position: absolute;
  top: 50%;
  right: 12px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.icon-search,
.icon-eye,
.icon-like,
.icon-dislike {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: currentColor;
}

.icon-search::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid var(--sp-dim);
  border-radius: 50%;
  box-shadow: 8px 8px 0 -6px var(--sp-dim);
  transform: rotate(-45deg);
}

.icon-eye::before {
  content: "◉";
  color: var(--sp-muted);
  font-size: 13px;
  line-height: 18px;
}

.icon-like::before {
  content: "+";
  color: var(--sp-muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
}

.icon-dislike::before {
  content: "-";
  color: var(--sp-muted);
  font-size: 20px;
  font-weight: 700;
  line-height: 18px;
}

@media (min-width: 1200px) {
  .header__search {
    order: initial;
    flex: 1 1 auto;
    width: auto;
    max-width: 520px;
    margin-left: auto;
  }

  .search__input {
    height: 44px;
  }

  .search__input .open-search {
    display: none;
  }

  .search__input .search-form {
    display: block;
  }
}

.change-lang {
  position: relative;
  order: 3;
}

.change-lang__title {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--sp-text);
  font-weight: 700;
  text-transform: uppercase;
}

.change-lang__arrow {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--sp-dim);
}

.change-lang__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 40;
  min-width: 210px;
  max-height: 360px;
  overflow-y: auto;
  padding: 12px 0;
  background: var(--sp-panel);
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 16px 28px rgba(0, 0, 0, .35);
}

.change-lang__list.active {
  opacity: 1;
  visibility: visible;
}

.change-lang__item {
  display: flex;
  align-items: center;
  padding: 7px 18px;
  color: var(--sp-text);
  white-space: nowrap;
}

.change-lang__item:hover,
.change-lang__item.selected {
  background: var(--sp-bg);
  color: var(--sp-red);
}

@media (min-width: 1200px) {
  .change-lang {
    order: initial;
    margin-left: 18px;
  }
}

.header__nav {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: 100%;
  max-width: 280px;
  height: calc(100vh - 64px);
  padding: 24px;
  padding-bottom: 80px;
  overflow-y: auto;
  background: var(--sp-panel);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: transform .3s, opacity .3s, visibility .3s;
}

.header__nav_active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

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

.header__list-item {
  position: relative;
  margin-bottom: 16px;
}

.header__list a {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: var(--sp-text);
  font-size: 1rem;
  font-weight: 700;
}

.header__list-item.selected > a,
.header__list a:hover {
  color: var(--sp-red);
}

.header__list_lvl-2 {
  display: none;
  margin-top: 12px;
  padding-left: 12px;
}

.header__list_lvl-2-active {
  display: block;
}

.header__list_lvl-2 li {
  margin-bottom: 10px;
}

.header__list_lvl-2 a {
  color: var(--sp-muted);
  font-size: .875rem;
}

@media (min-width: 1200px) {
  .header__nav {
    position: static;
    display: flex;
    flex: 0 0 100%;
    align-items: center;
    width: 100%;
    max-width: none;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .header__list {
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 20px;
  }

  .header__list-item {
    margin-right: 50px;
    margin-bottom: 0;
  }

  .header__language-mobile {
    display: none;
  }
}

.tags-categories {
  background: transparent;
}

.tags-categories__wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 0 0;
  scrollbar-width: none;
}

.tags-categories__wrapper::-webkit-scrollbar {
  display: none;
}

.tags-categories__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px;
  background: var(--sp-panel);
  color: var(--sp-text);
  font-size: .875rem;
  white-space: nowrap;
}

.tags-categories__tag:hover,
.tags-categories__tag_active {
  background: var(--sp-red);
  color: #fff;
}

.tags-categories_inline {
  margin-top: 16px;
}

.content {
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
  justify-content: flex-start;
}

.content-block {
  position: relative;
  padding-top: 24px;
  padding-bottom: 20px;
}

.global-adv {
  margin: 0 0 20px;
  text-align: center;
}

.listing__header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.listing__title,
.video-page__title {
  display: inline-flex;
  align-items: center;
  margin: 0 12px 0 0;
  color: var(--sp-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .listing__title,
  .video-page__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .listing__title {
    font-size: 1.25rem;
  }
}

.listing__content {
  display: flex;
  flex-wrap: wrap;
  margin: 20px -5px 0;
}

.listing__content > * {
  flex-basis: 100%;
}

@media (min-width: 768px) {
  .listing__content {
    margin-top: 25px;
  }
}

.listing__item {
  position: relative;
  flex: 0 0 50%;
  max-width: 50%;
  margin-bottom: 16px;
  padding-left: 5px;
  padding-right: 5px;
  text-decoration: none;
  transition: opacity .3s;
}

@media (min-width: 768px) {
  .listing__item {
    flex-basis: 25%;
    max-width: 25%;
  }
}

@media (min-width: 1200px) {
  .listing__item {
    flex-basis: 20%;
    max-width: 20%;
  }
}

@media (min-width: 1800px) {
  .listing__item {
    flex-basis: 16.66667%;
    max-width: 16.66667%;
  }
}

.listing__item a {
  display: block;
  text-decoration: none;
}

.listing__item-top {
  position: relative;
  overflow: hidden;
  padding-top: 75%;
  background: var(--sp-panel);
}

.listing__item .img {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-size: cover;
  transition: opacity .25s, transform .25s;
}

.listing__item:hover .img {
  opacity: .84;
  transform: scale(1.025);
}

.listing__item-top .prop-wrapper,
.listing__item-top .prop-wrapper-left {
  position: absolute;
  bottom: 4px;
  display: flex;
  z-index: 3;
}

.listing__item-top .prop-wrapper {
  right: 0;
}

.listing__item-top .prop-wrapper-left {
  left: 0;
}

.listing__item-top .prop,
.listing__item-top .prop-left {
  margin-right: 5px;
  padding: 0 4px;
  background: var(--sp-bg);
  color: var(--sp-muted);
  font-size: .75rem;
}

.listing__item .buttons button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: var(--sp-bg);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
}

@media (min-width: 1200px) {
  .listing__item .buttons button {
    display: flex;
  }

  .listing__item:hover .buttons button {
    opacity: 1;
  }
}

.progress-body {
  position: absolute;
  inset: 0;
  display: none;
  width: 100%;
  height: 100%;
}

.listing__item-top:hover .progress-body {
  display: block;
}

.progress {
  position: relative;
  display: flex;
  width: 100%;
  height: 2px;
}

.progress-value {
  width: 0;
  height: 2px;
  background: #c10303;
  animation: load 1.1s normal forwards;
}

@keyframes load {
  0% { width: 0; }
  100% { width: 100%; }
}

.listing__item-bottom {
  padding-top: 8px;
}

.listing__item-title {
  overflow: hidden;
  color: var(--sp-text);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.listing__item-title:hover {
  color: var(--sp-red);
}

.listing__item .info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5px;
  color: var(--sp-muted);
  font-size: .875rem;
  line-height: 1rem;
  word-break: break-word;
}

.listing__item .info span {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.listing__item .info span:last-child {
  margin-right: 0;
}

.listing__item .info .positive {
  color: var(--sp-muted);
}

.listing__error {
  display: flex;
  align-items: center;
  margin-top: 15px;
  color: var(--sp-text);
}

.pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  margin-bottom: 16px;
}

.pagination-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.pagination-holder ul,
.pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.pagination-holder li {
  display: inline-flex;
}

.pagination-holder a,
.pagination-holder span,
.pagination li a,
.pagination li span,
.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 2px;
  padding: 0 12px;
  border-radius: 2px;
  background: transparent;
  color: #fff;
  font-weight: 700;
}

.pagination-holder a:hover,
.pagination-holder span,
.pagination li.page-current span,
.pagination .current,
.pagination__arrow {
  background: var(--sp-red);
  color: #fff;
}

.pagination-count {
  display: flex;
  gap: 18px;
  margin-top: 10px;
  color: var(--sp-dim);
  font-size: .75rem;
}

.video-page__wrapper {
  width: 100%;
}

.video-page__header {
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .video-page__header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }
}

.video-page__content {
  display: flex;
  min-width: 0;
}

.video-page__content > .left {
  flex: 1 1 100%;
  width: 100%;
  max-width: 100%;
}

.videoplayer-wrapper {
  position: relative;
}

.video-holder,
.player,
.player-holder {
  width: 100%;
  background: #000;
}

.player-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
}

.player-wrap #player,
.player-wrap .jwplayer {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.video-page__underplayer {
  width: 100%;
  padding: 8px 0;
  background: var(--sp-panel);
}

@media (min-width: 1200px) {
  .video-page__underplayer {
    padding: 8px 20px;
  }
}

.underplayer__controllers > .left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  color: var(--sp-text);
}

.underplayer__controllers .control {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 36px;
  margin-right: 4px;
  padding: 8px 12px;
  background: var(--sp-bg);
  color: var(--sp-muted);
}

.rating-container {
  display: flex;
  align-items: center;
}

.rate-like,
.rate-dislike {
  display: inline-flex;
  align-items: center;
  height: 22px;
}

.rate-like {
  margin-right: 12px;
}

.rate-dislike {
  margin-left: 12px;
  margin-right: 12px;
}

.control__line {
  position: relative;
  display: inline-flex;
  width: 48px;
  height: 2px;
  margin-left: 10px;
  background: var(--sp-dim);
}

.control__line > span {
  display: block;
  height: 2px;
  background: var(--sp-red);
}

.video-page__info {
  margin-top: 12px;
  padding: 16px;
  background: var(--sp-panel);
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--sp-muted);
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-title {
  color: var(--sp-text);
  font-weight: 700;
}

.info-value {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.info-tag {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 2px;
  background: var(--sp-bg);
  color: var(--sp-muted);
}

.info-tag:hover {
  background: var(--sp-red);
  color: #fff;
}

.video-description {
  display: block;
  color: var(--sp-muted);
  line-height: 1.55;
}

.related-videos {
  margin-top: 26px;
}

.video-page__related .listing__title {
  margin-bottom: 10px;
  color: var(--sp-text);
  font-size: 18px;
  font-weight: 400;
}

.video-page__related .listing__content {
  margin-top: 0;
}

.page-description {
  margin: 24px 0 0;
  padding: 16px;
  background: var(--sp-panel);
  color: var(--sp-muted);
  line-height: 1.6;
}

.footer {
  flex-shrink: 0;
  width: 100%;
  padding-bottom: 12px;
  background: var(--sp-panel);
}

.footer__keywords {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px;
  margin-bottom: 24px;
}

.footer__keywords h2 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}

.footer__keyword {
  display: inline-flex;
  margin: 0 10px 10px 0;
  padding: 3px 5px;
  border-radius: 2px;
  background: var(--sp-bg);
  color: var(--sp-muted);
  font-size: 14px;
  font-weight: 400;
}

.footer__keyword:hover {
  color: #fff;
  background: var(--sp-red);
}

.footer__wrapper {
  padding-top: 24px;
}

@media (min-width: 768px) {
  .footer__wrapper {
    display: flex;
    flex-wrap: wrap;
  }
}

.footer__column {
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .footer__column {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.footer__title {
  color: var(--sp-text);
  font-size: 1rem;
  font-weight: 700;
}

.footer__title-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.footer__title-dropdown::after {
  content: "";
  position: absolute;
  top: 9px;
  right: -10px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 5px solid var(--sp-dim);
}

@media (min-width: 768px) {
  .footer__title-dropdown::after {
    display: none;
  }
}

.footer__dropdown {
  display: none;
}

.footer__dropdown.active {
  display: block;
}

@media (min-width: 768px) {
  .footer__dropdown {
    display: block;
  }
}

.footer__link {
  display: block;
  margin-top: 8px;
  color: var(--sp-dim);
}

.footer__link:hover,
.footer__link.selected {
  color: var(--sp-red);
}

.footer__copyright {
  width: 100%;
  margin-top: 24px;
  color: var(--sp-dim);
  font-size: .875rem;
  text-align: center;
}

.footer-counters {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.directory-page,
.error-hero {
  padding: 20px 0;
  color: var(--sp-text);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.directory-card,
.error-button {
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--sp-panel);
  color: var(--sp-text);
}

.directory-card:hover,
.error-button:hover {
  background: var(--sp-red);
  color: #fff;
}

body[dir="rtl"] .header__wrapper,
body[dir="rtl"] .listing__item .info,
body[dir="rtl"] .underplayer__controllers > .left {
  direction: rtl;
}

@media (max-width: 767px) {
  .container,
  .header__container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .logo-text {
    font-size: 23px;
  }

  .change-lang__title {
    font-size: .8125rem;
  }

  .listing__content {
    margin-left: -4px;
    margin-right: -4px;
  }

  .listing__item {
    padding-left: 4px;
    padding-right: 4px;
  }

  .listing__item-title {
    font-size: .875rem;
  }

  .listing__item .info {
    font-size: .75rem;
  }

  .pagination-count {
    flex-direction: column;
    gap: 2px;
    text-align: center;
  }

  .video-page__underplayer {
    padding-left: 8px;
    padding-right: 8px;
  }
}

@media (max-width: 480px) {
  .listing__item {
    flex-basis: 100%;
    max-width: 100%;
  }

  .logo-text {
    max-width: 38vw;
    font-size: 20px;
  }

  .footer__keywords h2:nth-child(n+31) {
    display: none;
  }
}
