.actor {
  background-color: #000;
}
.actor-banner__back {
  margin-top: 1.5vw;
  margin-left: 1.5vw;
  z-index: 10;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.actor-banner__back.focusable-item--focused {
  background-color: #eb0000;
}
.actor-actors {
  margin-bottom: 3vw;
}
.actor-actors__wrapper {
  margin-top: 3vw;
  padding-left: 2vw;
  padding: 2vw;
  background-color: #100d2e;
}
.actor-actors__item {
  width: 12vw;
}
.actor-actors__image {
  width: 100%;
  border-radius: 10vw;
  max-height: 11.5vw;
  min-height: 11.5vw;
  object-fit: cover;
  margin-bottom: 0.5vw;
}
.actor-actors__name {
  font-weight: 700;
  text-align: center;
}
.actor-actors__role {
  opacity: 0.6;
  text-align: center;
  font-weight: 700;
}

.actors-skleton {
  height: 32vh;
  background-color: #100d2e;
  margin-top: 7vh;
}

.last-viewed__skleton-img {
  animation: placeholder 1s linear infinite;
  height: 17vw;
  margin-bottom: 1vw;
}

.skleton {
  background-color: rgba(255, 255, 255, 0.062745098);
  border-radius: 0.5vw;
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
}

@keyframes placeholder {
  0% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.062745098);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
}
.about {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0vw 2vw;
}
.about-banner__back {
  margin-top: 1.5vw;
  z-index: 10;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.about-banner__back.focusable-item--focused {
  background-color: #eb0000;
}
.about__title {
  padding-top: 2vh;
  padding-left: 2vw;
}
.about__title h4 {
  font-size: 48px;
}
.about__title p {
  font-size: 26px;
  opacity: 50%;
}

.about-info {
  align-items: center;
  padding: 10vh 2vw;
}
.about-info img {
  height: 24vh;
  width: 24vw;
  float: left;
  margin-right: 2vw;
  border-radius: 1vw;
}
.about-info span {
  padding-left: 2vw;
  padding-right: 2vw;
}
.about-info span h4 {
  font-size: 40px;
}
.about-info span p {
  font-size: 26px;
  opacity: 80%;
}

.info-btn {
  border-radius: 0.7vw;
  width: 17vw;
  height: 5vh;
  font-size: 24px;
  color: white;
  border: none;
  margin-top: 3vh;
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
}

.notification {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4vh;
  padding-right: 3vw;
}
.notification-banner__back {
  margin-top: 1.5vw;
  margin-left: 1.5vw;
  z-index: 10;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.notification-banner__back.focusable-item--focused {
  background-color: #eb0000;
}
.notification__title {
  padding-top: 2vh;
  padding-left: 2vw;
}
.notification__title h4 {
  font-size: 48px;
}
.notification__title p {
  font-size: 26px;
  opacity: 50%;
}
.notification__read {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1019607843);
  border-radius: 0.2vw;
  margin-top: 2vh;
  padding: 0.5vw 1.4vw;
}
.notification__read button {
  color: white;
  font-size: 1em;
  padding-left: 0.5vw;
  background-color: transparent;
  border: none;
  font-weight: bold;
}

.notification-card {
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
  padding: 1vw 1.5vw;
  margin-top: 2vh;
  width: 95vw;
  margin-left: 2vw;
}
.notification-card span {
  display: flex;
  flex-direction: column;
}
.notification-card span h5 {
  font-size: 28px;
  font-weight: 800;
}
.notification-card span p {
  font-size: 22px;
  font-weight: lighter;
  opacity: 50%;
}
.notification-card__info {
  display: flex;
  flex-direction: row;
  margin-top: 4vh;
}
.notification-card__info img {
  width: 8vw;
  height: 16vh;
  border-radius: 0.5vw;
}
.notification-card__info p {
  font-size: 1.3em;
  font-weight: 500;
  opacity: 50%;
  margin-left: 2vw;
}

.notification-card.active {
  background: #1D193D;
}

#profile {
  display: flex;
  flex-direction: column;
  background-image: url("../images/profile-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.profile-main {
  display: flex;
  flex: auto;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2vw;
}
.profile-main table {
  width: calc(100% + 3vw);
  border-spacing: 1.5vw;
  border-collapse: separate;
  margin-left: -1.5vw;
}
.profile-main table td {
  width: 20%;
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 0.5vw;
  padding: 1.5vw;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .profile-main-top {
  display: flex;
  justify-content: space-between;
}
.main .profile-main-top__first {
  display: flex;
  min-height: 10vw;
  flex-direction: column;
  justify-content: space-between;
}
.main .profile-main-top__first h4 {
  font-size: 2em;
}
.main .profile-main-top__first h6 {
  font-size: 1.2em;
}
.main .profile-main-top__first span {
  display: flex;
  flex-direction: column;
  font-size: 1.2em;
}
.main .profile-main-top__second {
  width: 40.5vw;
  min-height: 20vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5vw;
  border-radius: 0.5vw;
  margin-left: 2vw;
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
}
.main .profile-main-top__second h4 {
  font-size: 2em;
}
.main .profile-main-top__second span {
  display: flex;
  flex-direction: column;
}
.main .profile-main-bottom {
  transition: all 0.3s ease;
}
.main .profile-main-bottom__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.main .profile-main-bottom__card h5 {
  font-size: 1.4em;
  margin-top: 1vh;
}
.main .profile-main-bottom.focusable-item--focused {
  background: white;
  color: black;
}
.main .profile-main-bottom.focusable-item--focused img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(4%) saturate(15%) hue-rotate(214deg) brightness(109%) contrast(101%);
}

.profile-footer {
  display: flex;
  flex-direction: column;
  padding: 0vw 2vw;
}
.profile-footer__contact {
  font-size: 1.5em;
  opacity: 50%;
}
.profile-footer__main {
  display: flex;
  justify-content: space-between;
}
.profile-footer__main__left {
  display: flex;
  justify-content: space-between;
  width: 50vw;
}
.profile-footer__main__left span {
  display: flex;
  align-items: center;
}
.profile-footer__main__left span h4 {
  font-size: 1.3em;
  margin: 0;
  margin-left: 0.7vw;
}
.profile-footer__main__right {
  display: flex;
  align-items: center;
}
.profile-footer__main__right h2 {
  font-size: 1.7em;
}
.profile-footer__main__right .focusable-item--focused {
  background-color: #eb0000;
}
.profile-footer__main__right span {
  display: flex;
  align-items: center;
  margin-left: 2vw;
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
  border-radius: 0.5vw;
  padding: 0.5vw 1.5vw;
}
.profile-footer__main__right span h5 {
  margin-left: 0.3vw;
  font-size: 1.2em;
}

.saved {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 4vh;
}
.saved-banner__back {
  margin-top: 1.5vw;
  margin-left: 1.5vw;
  z-index: 10;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}
.saved-banner__back.focusable-item--focused {
  background-color: #eb0000;
}
.saved__title {
  padding-top: 2vh;
  padding-left: 2vw;
}
.saved__title h4 {
  font-size: 48px;
}
.saved__title p {
  font-size: 26px;
  opacity: 50%;
}

.saved-tabs {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5019607843);
  margin: 0 2vw;
  padding-bottom: 0.5vw;
  display: flex;
  margin-bottom: 1vw;
  position: relative;
}
.saved-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1vw;
}
.saved-item {
  width: 20%;
  padding: 0 1vw;
  margin-bottom: 1.5vw;
  border: none;
}
.saved-item.focusable-item--focused .img {
  border: 4px solid #fff;
}
.saved-item-placeholder {
  padding: 0 1vw;
}
.saved-item-placeholder .img {
  border-radius: 0.5vw;
  height: 18vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}
.saved-item-placeholder p {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}
.saved-item .img {
  border-radius: 0.5vw;
  max-height: 23vw;
  min-height: 23vw;
  height: 23vw;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5vw;
  padding: 0.2vw;
  border: 4px solid transparent;
}
.saved-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}
.saved-item p {
  font-size: 1.3vw;
}
.saved-tv {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1vw;
}
.saved-tv-item {
  width: 16.6666666667%;
  padding: 0 0vw;
  border: none;
}
.saved-tv-item.focusable-item--focused .img {
  border: 4px solid #fff;
}
.saved-tv-item-placeholder {
  margin-bottom: 0.5vw;
  padding: 0 0.3vw;
}
.saved-tv-item-placeholder .img {
  border-radius: 0.5vw;
  height: 7vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}
.saved-tv-item-placeholder p {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}
.saved-tv-item .img {
  border-radius: 0.5vw;
  max-height: 9vw;
  min-height: 9vw;
  height: 9vw;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.2vw;
  border: 4px solid transparent;
}
.saved-tv-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}
.saved-tv-item p {
  font-size: 1.3vw;
}

.saved-no-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.saved-no-data p {
  font-size: 1.5em;
  font-weight: 600;
  margin-top: 2vh;
}

.last-viewed__slide {
  float: left;
  width: 20%;
  border: 4px solid transparent;
}
.last-viewed__slide.focusable-item--focused .last-viewed__img {
  border-radius: 0.4vw;
  border: 4px solid #fff;
}
.last-viewed__img {
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  border: 4px solid transparent;
  margin-bottom: 1vw;
}
.last-viewed__img img {
  width: 100%;
  height: 20vw !important;
  height: 12vw;
  padding: 2px;
  margin-bottom: -4px;
  border-radius: 0.4vw;
  object-fit: cover;
}
.last-viewed__timeline {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  z-index: 100;
  background-color: #fa0202;
}
.last-viewed__title {
  font-size: 1.2vw;
  font-weight: 600;
}

.last-viewed-skleton__placeholder-img {
  animation: placeholder 1s linear infinite;
  aspect-ratio: 16/9;
  margin-bottom: 1vw;
}
.last-viewed-skleton__placeholder-img__placeholder-title {
  height: 1.2vw;
  background-color: red;
}

.placeholder-skleton {
  background-color: rgba(255, 255, 255, 0.062745098);
  border-radius: 0.5vw;
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
}
.placeholder-skleton-title {
  height: 1.2vw;
  animation: placeholder 1s linear infinite;
  border-radius: 0.2vw;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
  width: 70%;
}

@keyframes placeholder {
  0% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.062745098);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
}
#single-radio {
  background-image: url("../images/single-radiobg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.filter-main {
  padding: 0 150px;
  display: flex;
  justify-content: space-between;
}
.filter-main__card {
  display: flex;
  flex-direction: column;
  width: 30%;
}
.filter-main__card span {
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 0.5vw;
  margin: 0.5vh 0;
}
.filter-main__card span.focusable-item--focused {
  background-color: #eb0000;
}
.filter-main__card span input[type=checkbox] {
  width: 30px;
  height: 30px;
  position: relative;
}
.filter-main__card span input[type=checkbox]::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background-color: #000;
  border: 1px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.filter-main__card span input:checked {
  accent-color: #eb0000;
}
.filter-main__card span input:checked::after {
  display: none;
}
.filter-main__card span p {
  font-weight: bold;
  padding-left: 1vw;
}
.filter-main__card .filter-all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px;
  padding: 2vh 1vw;
  margin: 0.5vh 0;
  background: rgba(255, 255, 255, 0.1019607843);
}
.filter-main__card .filter-all.focusable-item--focused {
  background-color: #eb0000;
}
.filter-main__card .filter-all p,
.filter-main__card .filter-all h6 {
  font-weight: bold;
}

.filter-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 150px;
  margin-top: 10vh;
}
.filter-footer span {
  display: flex;
  align-items: center;
  width: 19%;
  border-radius: 8px;
  padding: 0.5vw;
  margin: 0.5vh 0;
}
.filter-footer span.focusable-item--focused {
  background-color: #eb0000;
}
.filter-footer span input[type=checkbox] {
  width: 30px;
  height: 30px;
  background-color: transparent;
}
.filter-footer span p {
  font-weight: bold;
  padding-left: 1vw;
}

.filter-reset-btn {
  margin-top: 20vh;
  padding: 0 150px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.filter-reset-btn button {
  border: 2px solid #ffffff;
  border-radius: 12px;
  background: transparent;
  color: white;
  font-weight: bold;
  font-size: 0.8em;
  padding: 0.8vw 2vw;
}

.filter-genres-btn {
  margin-top: 20vh;
  padding: 0 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-genres-btn .reset-btn {
  border: 2px solid #ffffff;
  border-radius: 12px;
  background: transparent;
  color: white;
  font-weight: bold;
  font-size: 0.8em;
  padding: 0.8vw 2vw;
}
.filter-genres-btn .search-result-btn {
  display: flex;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 0.8em;
  padding: 0.8vw 2vw;
  background: linear-gradient(126.6deg, rgba(255, 255, 255, 0.2) 28.69%, rgba(255, 255, 255, 0.2) 100%);
}
.filter-genres-btn .search-result-btn img {
  margin-right: 0.7vw;
}

.select-genre {
  padding-left: 150px;
  margin-bottom: 5vh;
  font-weight: bold;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-size: 1vw;
  font-family: "Manrope", sans-serif;
  background-color: #0a001c;
  overflow-x: hidden;
  color: #fff;
}

.gradient-button {
  background: linear-gradient(180deg, #4e4698 0%, #1a1732 100%);
}

.wrapper {
  padding: 0 2vw;
  margin: 0 auto;
  width: 100%;
}

.container {
  padding: 0 2vw !important;
  margin: 0 auto;
  width: 100%;
}

.title {
  font-size: 1.5vw;
  font-weight: 700;
  margin-bottom: 1vw;
}

.long-button {
  text-align: center;
  font-size: 1.2vw;
  padding: 1vw 0;
  background-color: rgba(255, 255, 255, 0.0823529412);
}

.long-button.focusable-item--focused {
  color: #ffffff;
  background-color: rgba(78, 70, 152, 0.5019607843);
  border-top: 2px solid #4e4698;
  border-bottom: 2px solid #4e4698;
}

.top-button {
  width: 5vw;
  height: 5vw;
  background-color: rgba(255, 255, 255, 0.0823529412);
  border-radius: 5vw;
  margin: 1vw auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-button img {
  width: 4vw;
}

.top-button.focusable-item--focused {
  color: #ffffff;
  background-color: rgba(250, 2, 2, 0.5019607843);
  border: 2px solid #fa0202;
}

.devices__list {
  max-width: 70%;
  margin: 0 auto;
}

.keyboard {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.keyboard-row {
  display: flex;
}

.keyboard-row .focusable-item {
  width: 4vw;
  height: 3vw;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5vw;
  margin: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5vw;
}

.keyboard-row .focusable-item img {
  max-width: 50%;
  max-height: 70%;
}

.keyboard-row .focusable-item.focusable-item--focused {
  background-color: #eb0000 !important;
}

.keyboard-row .k-extra--space.focusable-item--focused {
  background-color: #000 !important;
  border: 1px solid #eb6845;
}

.k-num {
  background: rgba(255, 255, 255, 0.1) !important;
}

.k-extra--uppercase,
.k-extra--space {
  margin-left: 1.5vw !important;
  width: 8.6vw !important;
}

.k-extra--alpha {
  color: #a2d910;
  margin-left: 1.5vw !important;
}

.k-extra--alpha.focusable-item--focused {
  color: #ffffff;
}

.k-extra--a {
  margin-left: 1.5vw !important;
}

/* .k-extra--uppercase{
    background-image: url("icons/icon-arrow--up.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
}
.k-extra--space:not(.focusable-item--focused){
    background-image: url("icons/icon-keyboard--space-orange.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
}
.k-extra--space.focusable-item--focused{
    background-image: url("icons/icon-keyboard--space-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 25%;
}
.k-extra--backspace:not(.focusable-item--focused){
    background-image: url("icons/icon-keyboard--backspace-blue.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
}
.k-extra--backspace.focusable-item--focused{
    background-image: url("icons/icon-keyboard--backspace-white.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 50%;
} */
.keyboard-input {
  border-bottom: 4px solid rgba(255, 255, 255, 0.4);
  width: 60vw;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.keyboard-input__label {
  font-size: 3vw;
  font-weight: bold;
  opacity: 0.5;
  margin-bottom: 0.5vw;
}

.keyboard-input__value {
  font-size: 3vw;
  font-weight: bold;
  margin-bottom: 0.5vw;
  position: relative;
  z-index: 2;
}

.keyboard-input__value:after {
  position: absolute;
  right: -0.3vw;
  width: 0.2vw;
  height: 100%;
  background-color: var(--main-primary-color);
  content: "";
  animation-name: fade;
  animation-iteration-count: infinite;
  animation-duration: 1s;
}

.keyboard-input__helper {
  position: absolute;
  left: 0;
  opacity: 0.7;
  font-size: var(--size-small);
  font-weight: 500;
  top: 100%;
  margin-top: 0.5vw;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-button {
  animation: animation-botton 0.5s linear both;
}

@keyframes animation-botton {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.animation-top {
  animation: animation-top 0.5s linear both;
}

@keyframes animation-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.animation-left {
  animation: animation-left 0.5s linear both;
}

@keyframes animation-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.animation-right {
  animation: animation-right 0.5s linear both;
}

@keyframes animation-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.animation-fade {
  animation: animation-fade 0.5s linear both;
}

@keyframes animation-fade {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
#page-preloader {
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #0a001c;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("../images/page-loader.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30%;
  transition: 0.5s ease;
}

#page-preloader:after {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background-color: transparent;
  border: 0.2vw solid transparent;
  border-top-color: #fe0000;
  animation: 0.8s spin linear infinite;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5vw;
  margin: auto;
}

.page-preloader-small {
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(10, 0, 28, 0.8);
  font-size: 1vw;
}

.page-preloader-small .spin {
  display: block;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background-color: transparent;
  border: 0.2vw solid transparent;
  border-top-color: #fe0000;
  animation: 0.8s spin linear infinite;
  content: "";
  margin-top: 1vw;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}
#page-preloader.--hide {
  opacity: 0;
  pointer-events: none;
}

.auth {
  padding: 0px 5vw;
}

.auth__tabs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 3vw 0;
}

.auth__qr--video {
  width: 15vw;
  height: 32.5vw;
  position: absolute;
  top: 0.5vw;
  left: 0.9vw;
  border-radius: 2.5vw;
  overflow: hidden;
}

.auth__qr--video img {
  width: 100%;
  height: 100%;
}

.auth__qr--wrapper {
  position: relative;
}

.auth__code {
  padding: 3vw 3vw 1vw 9vw;
}

.auth__code--parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth__code--enter {
  font-size: 8vw;
  font-weight: 800;
  line-height: 11vw;
  letter-spacing: 1.5vw;
  text-align: center;
  padding: 2vw 7vw;
  border-radius: 2vw;
  margin-bottom: 1vw;
  background: #3b3349;
}

.auth__code--box {
  display: flex;
  margin-bottom: 2.8vw;
  align-items: center;
}

.auth__code--wrapper {
  margin-right: 3vw;
}

.auth__tab {
  padding: 1vw 2vw;
  font-size: 1.2vw;
  border-radius: 1vw;
  background-color: rgba(255, 255, 255, 0.1607843137);
  border: 1px solid #4e4698;
  transition: all 0.2s ease-in-out;
}

.auth__tab:not(:last-child) {
  margin-right: 1.5vw;
}

.auth__tab.focusable-item--focused {
  transition: all 0.5s ease-in-out;
  background: linear-gradient(180deg, #4e4698 0%, #1a1732 100%);
}

.auth__qr {
  display: flex;
  align-items: center;
  margin-top: 5vw;
  justify-content: space-between;
}

.auth__qr-left {
  width: 30%;
}

.auth__qr-img {
  height: 34vw;
  margin-bottom: 3vw;
}

.auth__qr-border {
  z-index: -1;
  height: 39vw;
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  width: 30vw;
  border: 1px solid rgba(255, 255, 255, 0.3137254902);
  border-top-right-radius: 0.5vw;
}

.auth__qr-text {
  width: 15vw;
  text-align: center;
  font-weight: 900;
  font-size: 1.3vw;
}

.auth__qr-center {
  width: 40%;
}

.auth__qr-code {
  background-color: #fff;
  border-radius: 0.5vw;
  overflow: hidden;
  margin-bottom: 1vw;
}

.auth__qr-code img {
  width: 100%;
  height: 100%;
}

.auth__qr-countdown {
  font-size: 1.2vw;
  text-align: center;
}

.auth__qr-right {
  display: flex;
  flex-direction: column;
  padding-left: 3vw;
  width: 30%;
}

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

.auth__roadmap:not(:last-child) {
  margin-bottom: 2vw;
}

.auth__roadmap:last-child .auth__roadmap-count {
  background-color: rgba(66, 60, 129, 0.6901960784);
}

.auth__roadmap-count {
  width: 3vw;
  height: 3vw;
  border-radius: 0.5vw;
  padding: 0.5vw;
  min-width: 3vw;
  font-size: 1.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1254901961);
  box-shadow: 0px 8px 36px 0px rgba(255, 255, 255, 0.1411764706);
}

.auth__roadmap-text {
  margin-left: 1vw;
  font-weight: 700;
}

.auth__btn {
  border-radius: 24.5px;
  font-size: 30.86px;
  font-weight: 500;
  line-height: 34.29px;
  text-align: center;
  width: 60vw;
  background: #3b3449;
  padding: 31px 0;
  margin: 52px auto 0 auto;
}

.auth__login {
  display: none;
}

.auth__email--wrapper .focusable-item--focused {
  background: red;
}

.auth__modal-kick-img {
  width: 10vw;
  margin-bottom: 2vw;
}

.auth__modal-kick-title {
  font-size: 2vw;
}

.auth__modal-kick-text {
  width: 80%;
  font-size: 1.2vw;
  color: rgba(255, 255, 255, 0.5019607843);
}

.auth__modal-kick-btns {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vw;
}

.auth__modal-kick-btn {
  padding: 1vw 5vw;
  border-radius: 12px;
  border: 1px solid #4e4698;
  color: #fff;
  font-size: 1.5vw;
  margin: 0 1vw;
}

.auth__modal-kick-btn.focusable-item--focused {
  background-color: #4e4698;
}

.auth__modal img {
  margin-bottom: 0 !important;
}

.auth__modal-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: inherit;
  height: inherit;
  padding: 0 2vw;
}

.auth__modal-title {
  font-size: 1.8vw;
  text-align: left;
  margin-bottom: 1.2vw;
}

.auth__modal-text {
  text-align: left;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5019607843);
  margin-bottom: 1.5vw;
}

.auth__modal-limit {
  width: 100%;
}

.auth__modal-item {
  background-color: #1a0e2f;
  display: flex;
  align-items: center;
  border-radius: 1vw;
  padding: 1vw;
  justify-content: space-between;
}

.auth__modal-item:not(:last-child) {
  margin-bottom: 1vw;
}

.auth__modal-item.focusable-item--focused {
  background-color: #1a0e2f !important;
}

.auth__modal-item.focusable-item--focused .auth__modal-delete {
  background: red;
}

.auth__modal-device {
  display: flex;
  align-items: center;
}

.auth__modal-content h3 {
  text-align: left;
  font-size: 1.2vw;
  margin-bottom: 0.2vw;
  padding-right: 1vw;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.auth__modal-content p {
  text-align: left;
  color: rgba(255, 255, 255, 0.5019607843);
}

.auth__modal-icon {
  width: 3vw;
  min-width: 3vw;
  height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #271d3f;
  margin-right: 1vw;
  border-radius: 3vw;
}

.auth__modal-icon img {
  width: 1.2vw;
  margin-bottom: 0 !important;
}

.auth__modal-delete {
  width: 3vw;
  height: 3vw;
  min-width: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.0823529412);
  border-radius: 1vw;
}

.auth__modal-delete img {
  width: 2vw;
  margin-bottom: 0 !important;
}

.auth-visible {
  animation: auth-visible 0.5s linear both;
}

@keyframes auth-visible {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes auth-hidden {
  0% {
    opacity: 1;
    transform: translateY(0%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.keyboard-input {
  position: relative;
}

.keyboard-input.error {
  color: #ffa8a8;
  border-color: #fa0202;
}

.keyboard-input.error .keyboard-input__hint {
  display: block;
  color: #ffa8a8;
}

.keyboard-input .keyboard-input__hint {
  display: none;
  position: absolute;
  bottom: -3vw;
  left: 0;
  font-size: 1.5vw;
  text-align: center;
}

.modal {
  background: rgba(0, 0, 0, 0.7);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.modal--content {
  background-color: #0d0926;
  border-radius: 16px;
  width: 40vw;
  min-height: 50vh;
  display: flex;
  padding: 2vw;
  align-items: center;
  margin: auto 0;
  flex-direction: column;
  text-align: center;
  justify-content: space-between;
}

.modal--content button {
  padding: 16px 64px;
  border-radius: 12px;
  background-color: #4e4698;
  border: none;
  color: #fff;
  font-size: 1vw;
  margin-top: auto;
}

.modal--content img {
  margin-bottom: 20px;
}

.modal--head {
  font-size: 1vw;
  font-weight: bold;
  margin-bottom: 1vw;
}

.modal .focusable-item--focused {
  background-color: #fa0202;
}

.modal.active {
  display: flex;
}

.banner-swiper {
  position: relative;
  margin-bottom: 1vw;
}

.banner-swiper__wrapper {
  position: relative;
  z-index: 10;
}

.banner-swiper__next,
.banner-swiper__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.5vw;
}

.banner-swiper__next {
  left: 18vw;
}

.banner-swiper__prev {
  right: 18vw;
}

.banner-swiper__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.banner-swiper__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2vw;
  z-index: 100;
  visibility: hidden;
}

.banner-swiper__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54vw;
  border-radius: 1vw;
  height: 100%;
  object-fit: cover;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.0823529412);
}

.banner-swiper__text {
  font-weight: 900;
  font-size: 3vw;
  margin-bottom: 3vw;
}

.banner-swiper__button {
  background-color: rgba(255, 255, 255, 0.3137254902);
  width: max-content;
  padding: 0.6vw 4vw;
  border-radius: 0.8vw;
  font-size: 1vw;
}

.banner-swiper__slide {
  aspect-ratio: 16/7;
  position: relative;
  border-radius: 1vw;
  position: relative;
  width: 100%;
  padding-top: 27.5%;
  overflow: hidden;
}

.banner-swiper__slide > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-swiper .focusable-item--focused .banner-swiper__button {
  background: linear-gradient(180deg, #4e4698 0%, #1a1732 100%);
}

.banner-swiper .swiper-slide-active .banner-swiper__content {
  visibility: visible;
}

.last-viewed-swiper {
  margin-bottom: 1vw;
}

.last-viewed-swiper .focusable-item .timeline {
  visibility: hidden;
}

.last-viewed-swiper .focusable-item--focused .timeline {
  visibility: visible;
}

.last-viewed__slide {
  border: 4px solid transparent;
}

.last-viewed__slide.focusable-item--focused .last-viewed__img {
  border-radius: 0.4vw;
  border: 4px solid #fff;
}

.last-viewed__img {
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  border: 4px solid transparent;
  height: 100%;
  margin-bottom: 1vw;
}

.last-viewed__img img {
  width: 100%;
  height: 100%;
  max-height: 10.5vw;
  padding: 2px;
  margin-bottom: -4px;
  border-radius: 0.4vw;
  object-fit: cover;
}

.last-viewed__timeline {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  z-index: 100;
  background-color: #fa0202;
}

.last-viewed__title {
  font-size: 1.2vw;
  font-weight: 600;
}

.channels-swiper {
  margin-bottom: 1vw;
}

.channels-swiper__slide {
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  padding-top: 12.5%;
  border: 4px solid transparent;
}

.channels-swiper__slide > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channels-swiper__slide.focusable-item--focused {
  transform: translateY(-0.5vw) scale(1.1);
}

.channels-swiper__slide.focusable-item--focused .channels-swiper__img {
  padding: 4px;
  border: 4px solid #fff;
}

.channels-swiper__img {
  width: 100%;
  height: 100%;
  border-radius: 0.4vw;
  object-fit: cover;
}

.category-swiper {
  margin: 2vw 0;
  padding: 0 2vw;
}

.category-swiper__slide {
  border: 4px solid transparent;
  margin-right: 1vw;
}

.category-swiper__slide.focusable-item--focused .category-swiper__image {
  transform: scale(1.02);
  padding: 4px;
  border: 4px solid #fff;
}

.category-swiper__slide.focusable-item--focused .category-swiper__image img {
  width: 100%;
  height: 100%;
}

.category-swiper__image {
  width: 100%;
  height: 100%;
  border-radius: 0.4vw;
  object-fit: cover;
  max-height: 17vw;
  position: relative;
  transition: all 0.1s ease;
  margin-bottom: 0.8vw;
  overflow: hidden;
}

.category-swiper__image img {
  width: 100%;
  height: 100%;
}

.top-swiper {
  margin: 2vw 0;
  padding: 0 2vw;
}

.horizontal-slide {
  border: 4px solid transparent;
}

.horizontal-slide.focusable-item--focused .horizontal-slide__img {
  border-radius: 0.4vw;
  border: 4px solid #fff;
}

.horizontal-slide__img {
  position: relative;
  width: 100%;
  height: 100%;
}

.horizontal-slide__img img {
  width: 100%;
  height: 100%;
  padding: 2px;
  margin-bottom: -4px;
  border-radius: 0.4vw;
  object-fit: cover;
}

.header {
  display: flex;
  align-items: center;
  padding: 1vw 2vw;
  margin-bottom: 1vw;
  position: relative;
  overflow: hidden;
}

.header .focusable-item--focused,
.header .active {
  background-color: #fa0202;
}

.header .focusable-item--focused img,
.header .active img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(4%) saturate(5%) hue-rotate(174deg) brightness(103%) contrast(100%);
}

.header__shape {
  position: absolute;
  top: -2%;
  left: -5%;
  z-index: -1;
}

.header__logo {
  height: 2vw;
  margin-right: 2vw;
}

.header__content {
  display: flex;
  align-items: center;
  flex: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  flex: 1;
}

.header__nav-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.0862745098);
  padding: 0.5vw 2vw;
  border-radius: 0.5vw;
  margin: 0 1vw;
}

.header__nav-item:first-child {
  margin-left: 0;
}

.header__nav-item:last-child {
  margin-left: auto;
  margin-right: 0;
}

.header__nav-img {
  height: 1vw;
  margin-right: 1vw;
  object-fit: cover;
}

.header__nav-text {
  font-size: 1.5vw;
}

.banner-placeholder {
  animation: placeholder 1s linear infinite;
  aspect-ratio: 16/7;
  position: relative;
  width: 100%;
  padding-top: 27.5%;
}

.banner-placeholder > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-viewed__placeholder-img {
  animation: placeholder 1s linear infinite;
  aspect-ratio: 16/9;
  position: relative;
  width: 100%;
  padding-top: 50%;
  margin-bottom: 1vw;
}

.last-viewed__placeholder-img > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.last-viewed__placeholder-img__placeholder-title {
  height: 1.2vw;
  background-color: red;
}

.placeholder {
  background-color: rgba(255, 255, 255, 0.062745098);
  border-radius: 0.5vw;
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
}

.placeholder-title {
  height: 1.2vw;
  animation: placeholder 1s linear infinite;
  border-radius: 0.2vw;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
  width: 70%;
}

@keyframes placeholder {
  0% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.062745098);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
}
.catalog-tabs {
  border-bottom: 2px solid rgba(255, 255, 255, 0.5019607843);
  margin: 0 2vw;
  padding-bottom: 0.5vw;
  display: flex;
  margin-bottom: 1vw;
  position: relative;
}

.catalog-tab {
  position: relative;
  font-size: 1.2vw;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.catalog-tab:not(:last-child) {
  margin-right: 1.5vw;
}

.catalog-tab.focusable-item--focused,
.catalog-tab.active {
  opacity: 1;
}

.catalog-tab.focusable-item--focused::after,
.catalog-tab.active::after {
  content: "";
  height: 3px;
  width: 100%;
  background-color: #eb0000;
  position: absolute;
  border-radius: 3px;
  bottom: calc(-0.5vw - 2px);
  left: 0;
}

.catalog-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1vw;
}

.catalog-item {
  width: 20%;
  padding: 0 1vw;
  margin-bottom: 1.5vw;
  border: none;
}

.catalog-item.focusable-item--focused .img {
  border: 4px solid #fff;
}

.catalog-item-placeholder {
  padding: 0 1vw;
}

.catalog-item-placeholder .img {
  border-radius: 0.5vw;
  height: 18vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.catalog-item-placeholder p {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.catalog-item .img {
  border-radius: 0.5vw;
  max-height: 23vw;
  min-height: 23vw;
  height: 23vw;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5vw;
  padding: 0.2vw;
  border: 4px solid transparent;
}

.catalog-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}

.catalog-item p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.3vw;
}

.catalog-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1vw 0;
  flex-direction: column;
}

.catalog-more .focusable-item {
  padding: 1vw 2vw;
  border-radius: 0.4vw;
  background-color: rgba(255, 255, 255, 0.0823529412);
}

.catalog-more .focusable-item--focused {
  background-color: #eb0000;
}

.catalog-more .top-button {
  border-radius: 4vw;
}

.catalog-filter {
  position: absolute;
  top: -0.8vw;
  border-radius: 0.5vw;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  background-color: rgba(255, 255, 255, 0.062745098);
  padding: 0.5vw 1.5vw;
}

.catalog-filter span {
  margin-left: 0.3vw;
}

.catalog-filter.focusable-item--focused {
  background-color: #eb0000;
}

.catalog-tv {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1vw;
}

.catalog-tv-item {
  width: 16.6666666667%;
  padding: 0 0vw;
  border: none;
}

.catalog-tv-item.focusable-item--focused .img {
  border: 4px solid #fff;
}

.catalog-tv-item-placeholder {
  margin-bottom: 0.5vw;
  padding: 0 0.3vw;
}

.catalog-tv-item-placeholder .img {
  border-radius: 0.5vw;
  height: 7vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.catalog-tv-item-placeholder p {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.catalog-tv-item .img {
  border-radius: 0.5vw;
  max-height: 9vw;
  min-height: 9vw;
  height: 9vw;
  display: block;
  position: relative;
  overflow: hidden;
  padding: 0.2vw;
  border: 4px solid transparent;
}

.catalog-tv-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5vw;
}

.catalog-tv-item p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 1.3vw;
}

.catalog-radio {
  display: flex;
  flex-wrap: wrap;
  margin: 0 2vw;
}

.catalog-radio-item {
  width: 33.3333333333%;
  padding: 0 0.8vw;
  margin: 0 0vw;
  max-height: 13vw;
  min-height: 13vw;
  height: 13vw;
  border-radius: 0.5vw;
  border: none;
}

.catalog-radio-item .inner {
  overflow: hidden;
  border: 4px solid #000;
  border-radius: 0.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 1.5vw;
  background: linear-gradient(234.61deg, #0c096b -9.7%, rgba(45, 83, 97, 0) 71.8%, rgba(250, 255, 0, 0.26) 108.36%);
}

.catalog-radio-item .inner .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-radio-item .inner .top img {
  height: 3vw;
}

.catalog-radio-item .inner .top p {
  font-size: 1.2vw;
  font-weight: 700;
}

.catalog-radio-item .inner .bottom img {
  width: 3vw;
  object-fit: cover;
}

.catalog-radio-item.focusable-item--focused .inner {
  border: 4px solid #fff;
}

.catalog-radio-item-placeholder {
  width: 33.3333333333%;
  padding: 0 0.5vw;
  margin-bottom: 0.5vw;
  max-height: 13vw;
  min-height: 13vw;
  height: 13vw;
  border: 4px solid transparent;
}

.catalog-radio-item-placeholder .inner {
  width: 100%;
  height: 100%;
  border-radius: 0.5vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.last-viewed__slide {
  float: left;
  width: 20%;
  border: 4px solid transparent;
}

.last-viewed__slide.focusable-item--focused .last-viewed__img {
  border-radius: 0.4vw;
  border: 4px solid #fff;
}

.last-viewed__img {
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  border: 4px solid transparent;
  margin-bottom: 1vw;
}

.last-viewed__img img {
  width: 100%;
  height: 20vw !important;
  height: 12vw;
  padding: 2px;
  margin-bottom: -4px;
  border-radius: 0.4vw;
  object-fit: cover;
}

.last-viewed__timeline {
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  z-index: 100;
  background-color: #fa0202;
}

.last-viewed__title {
  font-size: 1.2vw;
  font-weight: 600;
}

.last-viewed-skleton__placeholder-img {
  animation: placeholder 1s linear infinite;
  aspect-ratio: 16/9;
  margin-bottom: 1vw;
}

.last-viewed-skleton__placeholder-img__placeholder-title {
  height: 1.2vw;
  background-color: red;
}

.placeholder-skleton {
  background-color: rgba(255, 255, 255, 0.062745098);
  border-radius: 0.5vw;
  width: 100%;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
}

.placeholder-skleton-title {
  height: 1.2vw;
  animation: placeholder 1s linear infinite;
  border-radius: 0.2vw;
  border: 1px solid rgba(204, 204, 204, 0.062745098);
  width: 70%;
}

@keyframes placeholder {
  0% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.062745098);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.0509803922);
  }
}
.search-tab {
  display: flex;
}

.search-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 1vw 1vw 1vw;
}

.search-item {
  padding: 0 1vw;
  width: 16.6666666667%;
  margin-bottom: 1vw;
}

.search-item.focusable-item--focused img {
  padding: 2px;
  border: 4px solid #fff;
}

.search-item img {
  width: 100%;
  border-radius: 0.5vw;
  height: 21vw;
  margin-bottom: 0.5vw;
}

.search-item p {
  font-weight: 600;
  font-size: 1.2vw;
}

.search-item-placeholder {
  padding: 0 1vw;
  width: 16.6666666667%;
  margin-bottom: 2vw;
}

.search-item-placeholder .inner {
  height: 21vw;
  border-radius: 0.5vw;
  margin-bottom: 0.5vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.search-item-placeholder p {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.search-head {
  background: #210c3b;
  padding: 1.5vw 0;
  margin-top: -1vw;
  margin-bottom: 1vw;
}

.search-top {
  height: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1vw;
}

.search-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  font-weight: 800;
  letter-spacing: 0.1vw;
}

.search-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  font-weight: 800;
  opacity: 0.6;
  letter-spacing: 0.1vw;
}

.search-keyboard {
  display: flex;
  justify-content: center;
}

.search-keyboard-btn {
  width: 2.5vw;
  height: 2.5vw;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5vw;
  margin: 0.3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1vw;
  padding: 0.2vw;
}

.search-keyboard-btn.focusable-item--focused {
  background-color: #eb0000;
}

.search-keyboard-btn.language {
  color: #a2d910;
}

.search-keyboard-btn.backspace img {
  width: 1.2vw;
}

.search-keyboard-btn.space img {
  width: 1.2vw;
}

.search-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.search-more .focusable-item {
  padding: 1vw 2vw;
  border-radius: 0.4vw;
  background-color: rgba(255, 255, 255, 0.0823529412);
}

.search-more .focusable-item--focused {
  background-color: #eb0000;
}

.search-more .top-button {
  border-radius: 4vw;
}

.search-title {
  font-size: 2vw;
  margin-bottom: 1.5vw;
}

.film {
  background-color: #000;
}

.film-banner {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 10;
}

.film-banner__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.film-banner__back {
  position: absolute;
  top: 1.5vw;
  left: 1.5vw;
  z-index: 10;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
}

.film-banner__back.focusable-item--focused {
  background-color: #eb0000;
}

.film-banner__content {
  position: absolute;
  padding: 8vw 3vw 10vw 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.film-banner__buttons {
  display: flex;
}

.film-banner__button {
  box-shadow: 0px 11.67px 52.52px 0px rgba(255, 255, 255, 0.1411764706);
  border-radius: 1vw;
  padding: 1vw 4vw;
  font-size: 1.5vw;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.film-banner__button.focusable-item--focused {
  background-color: #eb0000;
  box-shadow: 0px 11.67px 52.52px 0px rgba(235, 0, 0, 0.1411764706);
}

.film-banner__button--bookmark {
  padding: 1vw 1.5vw;
}

.film-banner__button:not(:first-child) {
  margin-left: 1vw;
}

.film-banner__title {
  font-weight: 800;
  font-size: 4vw;
  line-height: 1;
  margin-bottom: 1.5vw;
}

.film-banner__info {
  display: flex;
  align-items: center;
  opacity: 0.5;
}

.film-banner__subtitle {
  margin-right: 0.5vw;
  font-size: 1.5vw;
  font-weight: 600;
}

.film-banner__rate {
  font-size: 4vw;
  font-weight: 900;
  margin-right: 1.2vw;
}

.film-banner__formats {
  font-size: 1.5vw;
  font-weight: 700;
  margin-right: 0.5vw;
  padding: 0.2vw 1vw;
  border-radius: 0.5vw;
  background-color: rgba(255, 255, 255, 0.2);
}

.film-banner__description {
  margin-top: 2vw;
  font-size: 1.5vw;
  opacity: 0.75;
  font-weight: 600;
  width: 60%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.film-banner__overlay-bottom {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20vh;
  z-index: 10;
}

.film-banner__overlay-left {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.0039215686) 0%, #000 100%);
  position: absolute;
  top: 0;
  left: 0;
  width: 70vw;
  height: 100%;
  z-index: 10;
}

.film-content__wrapper {
  padding: 0 3vw;
  display: flex;
  margin-top: -5vw;
  position: relative;
  margin-bottom: 3vw;
  z-index: 11;
}

.film-content__info {
  width: 60%;
  padding-right: 8vw;
}

.film-content__title {
  font-size: 2vw;
  margin-bottom: 1vw;
}

.film-content__description {
  font-size: 1.2vw;
  line-height: 1.5;
  opacity: 0.75;
  font-weight: 400;
  margin-bottom: 1vw;
}

.film-content__description p,
.film-content__description h1,
.film-content__description h2,
.film-content__description h3,
.film-content__description h4,
.film-content__description h5,
.film-content__description h6 {
  margin-bottom: 1vw;
  font-size: 1.2vw;
}

.film-content__ganres {
  flex: auto;
}

.film-content__ganre {
  box-shadow: 0px 8px 36px 0px rgba(255, 255, 255, 0.1411764706);
  border-radius: 0.5vw;
  font-weight: 500;
  font-size: 1vw;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5vw 2vw;
  width: max-content;
  white-space: nowrap;
}

.film-content__ganre:not(:last-child) {
  margin-bottom: 0.5vw;
}

.film-content__more {
  box-shadow: 0px 8px 36px 0px rgba(255, 255, 255, 0.1411764706);
  border-radius: 0.5vw;
  font-weight: 700;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5vw 3vw;
  width: max-content;
}

.film-content__more.focusable-item--focused {
  background-color: #eb0000;
  box-shadow: 0px 8px 36px 0px rgba(235, 0, 0, 0.1411764706);
}

.film-actors {
  margin-bottom: 3vw;
}

.film-actors__title {
  padding: 0 3vw;
  margin-bottom: 1.5vw;
}

.film-actors .swiper {
  padding: 0 3vw;
}

.film-actors__image {
  width: 100%;
  border-radius: 10vw;
  max-height: 11.5vw;
  min-height: 11.5vw;
  object-fit: cover;
  margin-bottom: 0.5vw;
}

.film-actors .focusable-item--focused .film-actors__image {
  padding: 2px;
  border: 4px solid #fff;
}

.film-actors__name {
  font-weight: 700;
  text-align: center;
}

.film-actors__role {
  opacity: 0.6;
  text-align: center;
  font-weight: 700;
}

.film-info {
  padding: 0 3vw;
}

.film-info__wrapper {
  display: flex;
  margin-bottom: 1.5vw;
}

.film-info__left {
  width: 30vw;
}

.film-info__item {
  margin-bottom: 1.5vw;
}

.film-info__title {
  margin-bottom: 1.5vw;
}

.film-info__text {
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.5;
  opacity: 0.6;
}

.film-info__value {
  font-size: 1.2vw;
  font-weight: 600;
  line-height: 1.5;
}

.film-info__formats {
  margin-top: 0.2vw;
}

.film-info__formats span {
  font-size: 1vw;
  margin-right: 0.2vw;
  border-radius: 0.3vw;
}

.film-similar {
  margin-bottom: 3vw;
}

.film-similar__title {
  margin-bottom: 1.5vw;
  padding: 0 3vw;
}

.film-similar .swiper {
  padding: 0 3vw;
}

.film-similar__item.focusable-item--focused .film-similar__img {
  padding: 2px;
  border: 4px solid #fff;
}

.film-similar__img {
  width: 100%;
  border-radius: 1vw;
  margin-bottom: 0.5vw;
  max-height: 11.5vw;
  min-height: 11.5vw;
  object-fit: cover;
}

.film-similar__text {
  font-size: 1.2vw;
  font-weight: 600;
}

.video-player {
  transition: all 0.2s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: block;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.video-player__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.video-player__controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  transition: all 0.2s ease;
}

.video-player__controls.hide {
  visibility: hidden;
  opacity: 0;
}

.video-player__controls-up {
  position: absolute;
  bottom: 0vw;
  display: none;
  left: 50%;
  transform: translateX(-50%);
}

.video-player__controls-live-icon {
  position: absolute;
  top: 2.5vw;
  transform: translateY(-50%);
  left: 10vw;
  height: 2vw;
  display: none;
}

.video-player__controls-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 1vw;
  padding-bottom: 3vw;
  opacity: 1;
  z-index: 1;
  border-top-left-radius: 1vw;
  border-top-right-radius: 1vw;
  background-color: rgba(0, 0, 0, 0.2509803922);
}

.video-player__controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1vw;
}

.video-player__controls-slider {
  display: flex;
  position: absolute;
  top: 50%;
  justify-content: space-between;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
}

.video-player__controls-slider .focusable-item {
  width: 1vw;
  height: 1vw;
  border-radius: 3vw;
}

.video-player__controls-slider .focusable-item.focusable-item--focused {
  background-color: #eb0000;
}

.video-player__controls-line {
  width: 100%;
  height: 0.2vw;
  background-color: rgba(255, 255, 255, 0.5019607843);
  margin: 0 1vw;
  position: relative;
}

.video-player__controls-line .focusable-item {
  transition: all 0.2s ease;
  position: absolute;
  top: 0;
  left: 0;
  height: 0.2vw;
  background-color: #eb0000;
  width: 0%;
}

.video-player__controls-line .focusable-item::after {
  transition: all 0.3s ease;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -0.5vw;
  width: 1vw;
  height: 1vw;
  background-color: #fff;
  border-radius: 3vw;
  border: 2px solid #000;
}

.video-player__controls-line .focusable-item--focused::after {
  width: 1.5vw;
  background-color: #eb0000;
  height: 1.5vw;
  right: -0.75vw;
}

.video-player__controls-start,
.video-player__controls-end {
  width: 4vw;
  display: block;
  text-align: center;
}

.video-player__controls-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5vw;
  position: relative;
}

.video-player__controls-navigation .navigation-icon {
  width: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: rgba(255, 255, 255, 0.2);
}

.video-player__controls-navigation .navigation-icon img {
  width: 1.5vw;
}

.video-player__controls-navigation .navigation-icon.focusable-item--focused {
  background-color: #eb0000;
}

.video-player__controls-navigation .tv-channel-btn,
.video-player__controls-navigation .quality {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.video-player__controls-navigation .tv-channel-btn {
  left: 1vw;
}

.video-player__controls-navigation .quality {
  right: 1vw;
}

.video-player__controls-navigation .quality-list {
  transition: all 0.3s ease;
  right: 0;
  width: 12vw;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 7vw;
  border-radius: 1vw;
  background-color: #000;
  overflow: hidden;
}

.video-player__controls-navigation .quality-list.active {
  opacity: 1;
  visibility: visible;
}

.video-player__controls-navigation .quality-item {
  padding: 0.7vw 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.video-player__controls-navigation .quality-item.focusable-item--focused {
  background-color: #eb0000;
}

.video-player__controls-navigation .play-pause {
  margin: 0 1vw;
}

.video-player__head-info {
  margin-left: 1vw;
}

.video-player__head-channel {
  display: flex;
  align-items: center;
}

.video-player__head-channel img {
  width: 5vw;
  border-radius: 0.5vw;
  margin-right: 1vw;
}

.video-player__head-channel p {
  opacity: 0.7;
  font-weight: 600;
}

.video-player__back {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.5vw;
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  border-bottom-left-radius: 1vw;
  border-bottom-right-radius: 1vw;
}

.video-player__back-item {
  display: flex;
  align-items: center;
}

.video-player__back .focusable-item {
  display: flex;
}

.video-player__back .focusable-item .icon,
.video-player__back .focusable-item .programm-list {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: rgba(255, 255, 255, 0.2);
}

.video-player__back .focusable-item.focusable-item--focused .icon,
.video-player__back .focusable-item.focusable-item--focused .programm-list {
  background-color: #eb0000;
}

.video-player__back .focusable-item .programm-list img {
  width: 1.8vw;
}

.tv-programm {
  height: 92vh;
  padding: 4vw 0 !important;
}

.tv-programm__list {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  right: 0;
  transition: all 0.3s linear;
  transform: translateX(100%);
  width: 30vw;
  z-index: 10;
}

.tv-programm__list.active {
  transform: translateX(0);
}

.tv-programm__list-top {
  height: 8vh;
  min-height: 8vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1vw;
  background-color: #1d193d;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2509803922);
}

.tv-programm__list-close {
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: rgba(255, 255, 255, 0.0745098039);
}

.tv-programm__list-close.focusable-item--focused {
  background-color: #eb0000;
}

.tv-programm__list-bottom {
  position: relative;
  flex: auto;
  width: 100%;
}

.tv-programm__list-buttons {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.tv-programm__list-buttons .tv-program-up,
.tv-programm__list-buttons .tv-program-down {
  height: 4vw;
  display: flex;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: center;
  background-color: #4f4f4f;
}

.tv-programm__list-buttons .tv-program-up.focusable-item--focused,
.tv-programm__list-buttons .tv-program-down.focusable-item--focused {
  background-color: #eb0000;
}

.tv-programm__list-item {
  display: flex;
  padding: 1vw;
}

.tv-programm__list-item-time {
  min-width: 6vw;
  font-size: 2vw;
  max-width: 6vw;
}

.tv-programm__list-item-time img {
  width: 4vw;
  padding: 0.2vw 0.4vw;
  border-radius: 4vw;
  background-color: rgba(204, 204, 204, 0.5019607843);
}

.tv-programm__list-item-title {
  margin-left: 1vw;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tv-programm__list-item:not(:last-child) {
  border-bottom: 1px solid rgba(204, 204, 204, 0.1882352941);
}

.tv-channels {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  bottom: 0;
  left: 0;
  transition: all 0.3s linear;
  transform: translateX(-100%);
  width: 30vw;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.tv-channels.active {
  transform: translateX(0);
}

.tv-channels__language {
  position: relative;
}

.tv-channels__language .tv-channels__dropdown-list {
  width: 100%;
  left: 0;
  top: 5vw;
}

.tv-channels__dropdown {
  position: relative;
  padding: 1.5vw;
}

.tv-channels__dropdown-list {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  top: 6vw;
  left: 1.5vw;
  z-index: 10;
  width: calc(100% - 3vw);
  background-color: #191515;
  padding: 0.5vw;
  border-radius: 1vw;
}

.tv-channels__dropdown-list img {
  height: 1.5vw !important;
}

.tv-channels__dropdown-list.active {
  opacity: 1;
  visibility: visible;
}

.tv-channels__dropdown-item,
.tv-channels__dropdown-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1vw;
  background-color: rgba(215, 206, 206, 0.1019607843);
  padding: 1vw;
  border-radius: 1vw;
  font-weight: 600;
}

.tv-channels__dropdown-item.focusable-item--focused,
.tv-channels__dropdown-child.focusable-item--focused {
  background-color: #eb0000;
}

.tv-channels__dropdown-item img,
.tv-channels__dropdown-child img {
  height: 2vw;
  opacity: 0;
  visibility: hidden;
}

.tv-channels__dropdown-item:not(:last-child),
.tv-channels__dropdown-child:not(:last-child) {
  margin-bottom: 0.5vw;
}

.tv-channels__dropdown-item.active img,
.tv-channels__dropdown-child.active img {
  opacity: 1;
  visibility: visible;
}

.tv-channels__dropdown-item img {
  height: 2vw;
  visibility: visible;
  opacity: 1;
}

.tv-channels__list {
  margin: 0 !important;
}

.tv-channels__list::-webkit-scrollbar {
  display: none;
}

.tv-channels__list-item {
  display: flex;
  align-items: center;
  padding: 1vw 1.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1254901961);
}

.tv-channels__list-item.lock p {
  opacity: 0.5 !important;
}

.tv-channels__list-item.lock .tv-channels__list-file {
  opacity: 0.5 !important;
}

.tv-channels__list-item.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tv-channels__list-item.placeholder div {
  width: 6vw;
  height: 4vw;
  border-radius: 0.4vw;
  background-color: rgba(204, 204, 204, 0.2);
  border-radius: 0.5vw;
}

.tv-channels__list-item.placeholder p {
  width: 80%;
  background-color: rgba(204, 204, 204, 0.2);
  margin-left: 1vw;
  border-radius: 0.2vw;
  height: 1.5vw;
  font-weight: 600;
}

.tv-channels__list-item p {
  font-size: 1.3vw;
  font-weight: 600;
}

.tv-channels__list-item.active {
  background-color: rgba(253, 204, 204, 0.3137254902);
}

.tv-channels__list-item.focusable-item--focused {
  background-color: #fd0000;
}

.tv-channels__list-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2.5vw;
  height: 2.5vw;
}

.tv-channels__list-img {
  position: relative;
  width: 6vw;
  height: 4vw;
  overflow: hidden;
  border-radius: 0.5vw;
  margin-right: 1vw;
  border: 1px solid #fff;
}

.tv-channels__list-file {
  width: 100%;
  height: 100%;
}

.film-inner {
  padding: 0vw 1vw 0 1vw;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 0.3s ease;
  background-color: #000;
  z-index: 10;
  transform: translateY(calc(100% - 2vw));
}

.film-inner-up {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 6vw;
  height: 2vw;
  position: relative;
  bottom: 0vw;
  border-top-left-radius: 5vw;
  border-top-right-radius: 5vw;
}

.film-inner-up img {
  width: 3vw;
}

.film-inner-up.focusable-item--focused {
  background-color: #eb0000;
}

.film-inner.active {
  transform: translateY(0);
}

.film-inner.active .film-inner-up img {
  transform: rotate(180deg);
}

.film-inner-swiper {
  width: 100%;
}

.settings .focusable-item--focused .tv-channels__dropdown-item {
  background-color: #eb0000;
}

.toast {
  visibility: hidden;
  transform: translateX(50%);
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}

.toast.show {
  visibility: visible;
  bottom: 2vw;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 1.75s;
  animation: fadein 0.5s, fadeout 0.5s 1.75s;
}

.toast.success {
  background-color: #5cb85c;
}

.toast.warning {
  background-color: #f0ad4e;
}

.toast.error {
  background-color: #d9534f;
}

.toast.info {
  background-color: #5bc0de;
}

@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 2vw;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 2vw;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 2vw;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 2vw;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.series {
  padding-bottom: 1vw;
  min-height: 100vh;
  background-image: url("../images/season-bg.png");
  background-repeat: no-repeat;
  background-position: top;
}

.series__back {
  display: flex;
  align-items: center;
  padding: 1vw 0;
}

.series__back-img {
  width: 3vw;
  height: 3vw;
  border-radius: 3vw;
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.series__back.focusable-item--focused .series__back-img {
  background-color: #eb0000;
}

.series__img.disabled::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6392156863);
}

.series__lock {
  position: absolute;
  width: 5vw !important;
  height: 5vw !important;
  top: 50%;
  left: 50%;
  z-index: 10;
  opacity: 0.8;
  transform: translate(-50%, -50%);
}

.series__progress {
  position: absolute;
  bottom: 0.5vw;
  left: 0.3vw;
  right: 0.3vw;
  height: 0.2vw;
  border-radius: 5px;
  background-color: #eb0000;
}

.series__text {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 0.5vw;
}

.series__item {
  width: 20%;
}

.series__item h4 {
  color: rgba(255, 255, 255, 0.768627451);
}

.series__item .img {
  min-height: 12vw;
  max-height: 12vw;
  height: 12vw;
}

.series__item-placeholder {
  margin-bottom: 0.5vw;
  padding: 0 0.3vw;
}

.series__item-placeholder .img {
  border-radius: 0.5vw;
  height: 12vw;
  margin-bottom: 0.5vw;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.series__item-placeholder h4 {
  border-radius: 0.3vw;
  height: 1.5vw;
  width: 84%;
  background-color: rgba(204, 204, 204, 0.1254901961);
}

.radio {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.radio-head {
  display: flex;
}

.radio-head__title {
  font-size: 5vw;
}

.radio-head__img {
  width: 7vw;
  object-fit: contain;
  margin-left: 1vw;
}

.radio-head__text {
  opacity: 0.5;
  font-size: 2vw;
}

.radio-navigation {
  display: flex;
  align-items: center;
  margin-top: 3vw;
}

.radio-navigation .focusable-item--focused {
  background-color: #4e4698;
}

.radio-navigation__prev,
.radio-navigation__next {
  border-radius: 5vw;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6vw;
  object-fit: contain;
  width: 6vw;
}

.radio-navigation__prev img,
.radio-navigation__next img {
  width: 3vw;
}

.radio-navigation__play-pause {
  width: 7vw;
  height: 7vw;
  border-radius: 7vw;
  margin: 0 3vw;
  transition: all 0.2s ease;
}

.radio-navigation__play-pause.focusable-item--focused {
  transform: scale(1.1);
  background-color: transparent;
  border: 4px solid #4e4698;
}

.radio-formats {
  background: #070013;
  border: 1px solid #4e4698;
  border-radius: 1.5vw;
  padding: 0.2vh;
  margin-top: 3vh;
  width: 26vw;
  display: flex;
}

.radio-formats__item {
  width: 33.3333333333%;
  background: rgba(78, 70, 152, 0.2);
  color: white;
  border: none;
  border-radius: 1.5vw;
  padding: 1vw 3vw;
  font-size: 1.5em;
  text-align: center;
}

.radio-formats__item.active {
  background-color: rgba(78, 70, 152, 0.5019607843);
}

.radio-formats__item.focusable-item--focused {
  background-color: #4e4698;
}

.radio-wave {
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-wave__item {
  animation-name: wave-lg;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
  background: #f32968;
  margin: 0 1.5px;
  height: 10px;
  width: 1px;
}

.radio-wave__item:nth-child(-n+7),
.radio-wave__item:nth-last-child(-n+7) {
  animation-name: wave-md;
}

.radio-wave__item:nth-child(-n+3),
.radio-wave__item:nth-last-child(-n+3) {
  animation-name: wave-sm;
}

.radio-vawe {
  height: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-vawe.active .radio-vawe__item {
  animation-name: wave-lg;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-direction: alternate;
}

.radio-vawe__item {
  background: #fff;
  margin: 0 0.3vw;
  height: 100%;
  width: 0.2vw;
}

.radio-vawe__item:nth-child(-n+7),
.radio-vawe__item:nth-last-child(-n+7) {
  animation-name: wave-md;
}

.radio-vawe__item:nth-child(-n+3),
.radio-vawe__item:nth-last-child(-n+3) {
  animation-name: wave-sm;
}

@keyframes wave-sm {
  0% {
    opacity: 0.35;
    height: 10%;
  }
  100% {
    opacity: 1;
    height: 30%;
  }
}
@keyframes wave-md {
  0% {
    opacity: 0.35;
    height: 20%;
  }
  100% {
    opacity: 1;
    height: 50%;
  }
}
@keyframes wave-lg {
  0% {
    opacity: 0.35;
    height: 50%;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
.language__img {
  width: 11vw;
  height: 16vw;
  border-radius: 0.5vw;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: linear !important;
}

.language {
  width: 100vw;
  height: 100vh;
}
.language__check {
  display: none;
}
.language__wrapper {
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.language__wrapper .focusable-item--focused {
  background: red;
}
.language__wrapper .focusable-item--focused .language__check {
  display: flex;
}
.language__logo {
  width: 10vw;
  height: 9vw;
}
.language__desc {
  font-size: 1vw;
  font-family: Manrope;
  font-weight: 700;
  line-height: 2.5vw;
  text-align: center;
  color: #9d99a4;
  margin-top: 5vw;
}
.language__contents {
  display: flex;
  align-items: center;
}
.language__flags {
  width: 36vw;
  display: flex;
  align-items: center;
  margin-top: 1vw;
  background: #41374a;
  padding: 0.9vw;
  border-radius: 1vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.language__flags h3 {
  font-size: 2vw;
  margin-left: 1vw;
}
.language__flags img {
  width: 4vw;
  height: 2.5vw;
}

.auth__back--wrap {
  margin-right: auto;
}

.auth .focusable-item--focused .auth__back--btn {
  width: 3vw;
  height: 3vw;
  background: red;
  border-radius: 50vw;
}

.backward-next {
  margin-left: 1vw;
}

.backward-prev {
  margin-right: 1vw;
  transform: rotate(180deg);
}

/*# sour

ceMappingURL=index.scss.map */
.slider-wrapper {
  position: relative;
  height: 101vh;
  width: 100%;
  margin: auto;
  display: grid;
  transform: rotate(8deg);
  top: -6.5vw;
}

.slider-track {
  display: flex;
  width: 635vw;
  animation: slidescroll 133s linear infinite;
}

@keyframes slidescroll {
  0% {
    transform: translateX(-60vw);
  }
  100% {
    transform: translateX(-100vw);
  }
}
.slider-track1 {
  display: flex;
  width: 635vw;
  animation: slidescroll1 130s linear infinite;
}

@keyframes slidescroll1 {
  0% {
    transform: translateX(-60vw);
  }
  100% {
    transform: translateX(1vw);
  }
}
.slide {
  width: 12vw;
  height: 18vw;
  display: flex;
  align-items: center;
  overflow: hidden;
  perspective: 100px;
  cursor: pointer;
  padding: 0.3vw;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.2vw;
}

.language__content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.language__bg {
  width: 100vw;
  height: 102vh;
  position: absolute;
  top: 49%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  opacity: 0.8;
}

.language .swiper .swiper-button-prev,
.language .swiper .swiper-button-next {
  display: none;
}

.language .swiper .slider-track {
  height: 20vw;
}

/*# sourceMappingURL=global.css.map */
