.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;
  height: 100%;
  margin-bottom: 1vw;
}
/* .last-viewed__img img {
  width: 100%;
  height: 100px;
  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;
}

.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;
}

/*# sourceMappingURL=global2.css.map */
