:root {
  --background-color: #080808;
  --gray-background: #181818;
  --colorPrimary: #9C73FE;
  --white: #f4f4f4;
  --MdGray: #b6b6b6;
  --transition-time: .2s ease-out;
}

/* General */

body,
html {
  background-color: var(--background-color);
  color: var(--white);
  height: 100%;
  text-align: center;
  font-size: 14px;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

main {
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
#root,
#__next {
  isolation: isolate;
}

h2 {
  font-size: 24px;
  font-weight: 500;
}



.nav-link {
  color: var(--white);
}

.ml-auto {
  margin-left: auto;
}

.btn-primary {
  font-size: 18px;
  background: var(--colorPrimary);
  padding: 12px 40px;
  text-transform: uppercase;
  transition: var(--transition-time);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  width: fit-content;
  color: var(--white) !important;
  margin: 0;
  text-shadow: 0 0 10px #0000005e;
}

.btn-primary.hero-btn {
  font-size: 24px;
  padding: 18px 70px;
  font-weight: 800;
}

.btn-primary:hover {
  transform: scale(1.1);
  filter: brightness(1.25);
}

.btn-primary.xs {
  padding: 4px 15px;
  font-size: 15px;
}

.btn-primary.xl {
  background: var(--colorPrimary);
  border: 1.5px solid var(--colorPrimary);
  font-size: 15px;
  margin: auto;
  border-radius: 4px;
  padding: 15px;
  line-height: 25px;
}
  
.btn-primary.xl:hover {
  filter: brightness(.25);
}

.btn-secondary {
  border: 1.5px solid var(--colorPrimary) !important;
  padding: 10px 40px 11px;
  color: var(--colorPrimary);
  font-weight: 600;
  text-align: center;
  font-size: 18px;
  background: transparent !important;
  transition: var(--transition-time);
  border-radius: 4px;
}

.btn-secondary:hover {
  transform: scale(1.1);
  border-color: var(--white) !important;
  color: var(--white) !important;
}

.btn-secondary.btn-icon {
  padding: 10px;
  min-height: 50px;
  box-sizing: border-box;
  min-width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-secondary.btn-icon.disabled {
  transform: scale(1) !important;
  opacity: .15;
  filter: grayscale(1) !important;
  cursor: default;
}

.btn-secondary.btn-icon:hover {
  filter: brightness(5) grayscale(1);
}

a {
  color: var(--colorPrimary);
  font-weight: 500;
  transition: var(--transition-time);
  text-decoration: none;
  cursor: pointer;

}

a > .btn {color: var(--colorPrimary) !important;}

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

a.xl {
  font-size: 18px;
}

.content {
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.app-description {
  max-width: 800px;
  margin: 80px auto 30px;
}


/* Header */

header {
  padding: 20px 30px;
  position: relative;
  z-index: 3;
  position: relative;
}

header .navbar {
  padding: 0;rgba(150, 117, 0, 1)
}

header .navbar .subscription-banner {
  border: 1px solid var(--white);
  border-radius: 8px;
  padding: 10px;
  position: absolute;
  left: 0;
}

header .navbar .subscription-banner span {
  font-size: 13px;
  font-weight: 800;
  padding: 0 15px;
  letter-spacing: -.25px; 
}

header .navbar .navbar-brand {
  position: absolute;
  left: calc(50% - 120px);
}

header .navbar .dropdown {

}

header .navbar .dropdown .btn {
  padding: 0;
  background: transparent;
  border: none;
}

header .navbar .dropdown .btn::after {
  display: none;
}

header .navbar .dropdown .btn:hover {
  filter: brightness(5) grayscale(1);
}

header .navbar .dropdown .dropdown-menu {
  border: 2px solid #77777763;
  background: rgba(39, 39, 39, 0.75);
  box-shadow: inset 0 0 50px #000000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

header .navbar .dropdown .dropdown-menu.dropdown-menu-right {
  left: inherit;
  right: 0;
  padding: 20px 0 0;
  min-width: 200px;
}

header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area {
  min-width: 240px;
  gap: 15px;
  padding: 15px 20px;

}
header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area div span {
    color: var(--MdGray);
    font-size: 22px;
    font-weight: 600;
  }

header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area div a { font-size: 14px;}

header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area .user-container {
  max-width: calc(100% - 70px);
}

header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area .user-container span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

header .navbar .dropdown .dropdown-menu.dropdown-menu-right .user-area .user-container .dropdown-divider {
  margin: 0;
  border-top: 2px solid #9797a566;
}

header .navbar #language-select {
  border: none;
  background: transparent;
  color: var(--colorPrimary) !important;
  font-weight: 700;
  margin-left: 20px;
  background: #0d0d0dd9;
}

header .dropdown-menu li a, header .dropdown-menu li button {
  padding: 10px 20px;
  text-align: center;
  /* padding: 8px 20px 8px 95px; */
  color: var(--colorPrimary);
  font-weight: 600;
  transition: var(--transition-time); 
}

header .dropdown-menu li a, header .dropdown-menu li button:hover {
  color: var(--white);
}
header .dropdown-menu li a img, header .dropdown-menu li button:hover img {
  transition: var(--transition-time);
  transform: scale(1.15);
  filter: brightness(10);
}

header .dropdown-menu li a, header .dropdown-menu li button.xs {
  padding: 6px 15px !important;
  margin: auto;
  display: block;
}

header .dropdown-menu li a, header .dropdown-menu li button.xs {
  padding: 6px 15px !important;
  margin: auto;
  display: block;
}

header .dropdown-menu li:last-of-type a > img {
  width: 24px;
  filter:none;
}


/* Hero */

/* Hero */

.video-bck {
  position: relative;
  padding: 0 20px;
}

.video-bck > img {
  position: absolute;
  width: 100%;
  height: fit-content;
  display: block;
  top: 0;
  left: 0;
}

.video-bck > video {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: fit-content;
  top: 0;
  left: 0;
  filter: brightness(.5);
  -webkit-filter: brightness(.5);
}

.hero {
  position: relative;
  z-index: 0;
}

.main-title {
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px #0000005e;
  padding: 20px 0 120px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.main-title > h1 {
  font-weight: 800;
  font-size: 30px;

}
.main-title > h1 span {
  color: var(--colorPrimary);
}

.main-title > h1 strong {
  display: block;
  font-size: .75em;
  font-weight: 600;
  margin-top: 5px;
}

.hero-slider .swiper-wrapper.cards {
  padding: 0 30px;
  justify-content: space-around;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  background-position: center;
  background-size: contain;
}

.swiper-slide .slider-content {
  height: 100%;
  width: 100%;
  position: absolute;
  padding-bottom: 50px;
}

.swiper-slide .slider-content  .title {
  text-align: left;
  display: flex;
  flex-direction: column;
  line-height: normal;
}

.swiper-slide .slider-content  .title  span:first-of-type {
  font-size: 30px;
}

.swiper-slide .slider-content  .title  span:last-of-type {
  font-size: 45px;
  font-weight: 600;
}

.hero-slider h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero-slider .swiper-slide.card {max-width: 200px; margin: 0 !important;}

.hero-slider .swiper-slide.card::before {
  width: 50%;
  height: 50%;
  display: block;
  position: absolute;
  z-index: 2;
  left: -15px;
  top: 200px;
  font-size: 5rem;
  font-weight: 800;
  color: var(--background-color);
}

.hero-slider .swiper-slide.card:nth-of-type(1)::before {
  content: '1';
}

.hero-slider .swiper-slide.card:nth-of-type(2)::before {
  content: '2';
}

.hero-slider .swiper-slide.card:nth-of-type(3)::before {
  content: '3';
}

.hero-slider .swiper-slide.card:nth-of-type(4)::before {
  content: '4';
}

.hero-slider .swiper-slide.card::after {
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  z-index: -1;
  border: 1px solid #272727;
  left: -30px;
  top: 30px;
  max-height: 292px;
}

.hero-slider .card .card-description h2 {
    height: auto;
    word-wrap: normal;
    overflow: auto;
    text-overflow: inherit;
    white-space: normal;
}

.movies-slider .swiper-slide.card {max-width: 180px;}

.swiper-slide img {
  display: block;
  width: 100%;
  height: fit-content;
}

.swiper.videos-slider {
  height: 400px;
}





/* Content */

.card {
  height: 100%;
  border: none;
  border-radius: 4px;
  background: var(--background-color);
}

.card  .card-image {
  width: 100%;
  min-height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: .2s;
  padding-bottom: 30px;
}

.card  .card-image img {
  transition: .2s;
  min-height: 250px;
  width: 100%;
}

.card .card-image:hover img {transform: scale(1.1);}

.hero .card .card-image {
  height: fit-content;
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  transition: .5s;
}

.hero .card .card-image::before {
  content: '';
  background: url('../images/play-icon.png') center no-repeat;
  width: 100px;
  height: 100px;
  position: absolute;
  z-index: 1;
  opacity: 0;
  transition: .5s;
}

.hero .card .card-image:hover::before {
  opacity: 1;
}

.hero .card .card-image img {height: fit-content;  max-height: 292px;}

.card .card-description {
  color: var(--white);
  display: flex;
  flex-direction: column;
  text-align: start;
  padding: 15px 15px 0 0;
  gap: 10px;
  box-sizing: border-box;
}

.card .card-description img {
  width: 65px;
}

.card .card-description h2 {
  font-size: 15px;
  font-weight: 600;
  height: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  margin: 0;
}

.card .card-description .description {
  font-size: 13px;
  display: block;
  text-overflow: ellipsis;
  word-wrap: break-word;
  overflow: hidden;
  max-height: 3em;
  line-height: 1.4em;
  position: relative;
  padding-right: 12px;
  box-sizing: border-box;
}

.card .card-description .description::after {
  content: "(...)";
  position: absolute;
  right: 0;
  bottom: 1px;
}

h3.hero-title {
  position: relative;
  color: #353a3f;
  font-weight: 700;
  top: 90px;
  font-size: 120px;
  margin-top: -90px !important;
}

/* h3.hero-title::before {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    right: -95px;
    top: 10px;
    background: url(../images/stars-3.png) center center no-repeat;
}

h3.hero-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 10px;
    position: absolute;
    left: -95px;
    top: 10px;
    background: url(../images/stars-3.png) center center no-repeat;
} */

.hero .card  .card-description {
  background: var(--colorPrimary);
  color: var(--background-color);
}

.hero .card  .card-description h2 {
  font-size: 16px;
  font-weight: 800;
  min-height: 45px;
  margin: 0;
  text-align: center;
}

.hero .card .card-description .btn-primary {
  background: var(--background-color);
  color: var(--colorPrimary) !important;
  margin: 0 !important;
  padding: 12px 28px;
  width: 100%;
  text-align: center;
}

section {
  margin: 0 0 90px;
}

section:last-of-type {margin-bottom: 40px;}

.container {
  width: 80%;
  max-width: 1140px;
}

.swiper-wrapper.cards {
  padding-top: 60px;
}

.cat {
  position: relative;
}

.cat::before {
  font-size: 28px;
  height: fit-content;
  left: 0;
  text-align: left;
  position: absolute;
  color: var(--white);
  font-weight: 700;
  padding: 0;
  letter-spacing: 2px;
  display: block;
}


.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  background: var(--background-color);
  background: linear-gradient(180deg, #1f1f1f, #0d0d0d);
  width: 60px;
  height: 60px;
  border-radius: 30px;
}

.swiper .swiper-button-next::after, .swiper .swiper-button-prev::after {
  color: var(--colorPrimary);
  font-size: 20px;
  font-weight: 900;
}

.cat#Comedy::before {
  content: "Comedy";
}

.cat#Thriller::before {
  content: "Thriller";
}

.cat#Kids::before {
  content: "Kids";
}

.cat#Documentary::before {
  content: "Docs";
}

.cat#Drama::before {
  content: "Drama";
}




/* Movie View  */

.movie-view {
  width: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  margin: 0 auto;
  padding: 40px 0;
}

.movie-view .video-player {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: none;
  background: transparent
}

.movie-view .video-player:hover .play-icon {
  transform: scale(1.15);
}

.movie-view .video-player .play-icon {
  position: absolute;
  z-index: 1;
  transition: var(--transition-time);
}

.movie-view .video-description {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  background-color: var(--background-color);
  font-size: 13px;
  padding: 30px 20px;
  height: 100%;
  gap: 20px;
  border-radius: 0 0 4px 4px;
  width: 100%;
} 

.movie-view .video-description h2 {
  font-size: 14px;
  font-weight: 600;
}

.movie-view .video-description .description {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding-left: 125px;
}

.movie-view .video-description .title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 20px;
  text-align: left;
  padding-left: 130px;
}

.movie-view .video-description .modal-image {
  position: absolute;
  width: 120px;
  height: 170px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -45px;
  left: 10px;
  z-index: 1;
}

.movie-view .video-description .bck-thumbnail {
  position: absolute;
  width: 120px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -35px;
  left: 0;
  z-index: 0;
  background-color: var(--background-color);
}

.movie-view .video-description .trailer-image {
  height: 100%;
  width: 100%;
  border-radius: 4px 4px 0 0;
}

.movie-view .video-description .buttons {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.movie-view .video-description .btn-watch {
  background: var(--colorPrimary);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 40px;
  text-shadow: 0 0 10px #0000005e;
}

.movie-view .close-btn {
  position: absolute;
  right: -23px;
  top: -23px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
}

.movie-view .close-btn:hover {
  transform: scale(1.1);
}






/* Profile  */
.profile {
  padding-bottom: 120px;
}

.title-header {
  position: relative;
  background: var(--gray-background);
  padding: 40px 40px 70px 40px;
  margin-bottom: 40px;
}
.title-header h1 {
  margin: auto;
  font-size: 20px;
  font-weight: 600;
}

.title-header.manage {
  padding: 40px;
}

.back-btn {
  position: relative;
  color: var(--colorPrimary);
  text-decoration: none;
  display: flex;
}
.back-btn::before {
  content: url(../images/back-icon.svg);
  position: absolute;
  left: -24px;
  width: 24px;
  height: 24px;
  top: 1px;
}


.profile-btn {
  position: relative;
  width: 100%;
  height: 100%;
  transition: .2s;
  border: none;
  outline: none;
}

.profile-btn::after {
  content: url(../images/changeImg.svg);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 120px;
}

.profile-btn:hover {
  transform: scale(1.1);
}
.profile-btn:hover .profile-img {
  border: 5px solid var(--white);
}

.profile-btn:hover::after {
  filter: brightness(2) grayscale(1);
}

.profile-img {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 5px solid var(--colorPrimary);
  right: 50%;
  transform: translate(50%, 0%);
}

.changeImage {
  position: absolute;
  width: 35px;
  height: 35px;
  right: 45%;
  bottom: -45%;
}

.info {
  padding-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 20px;
  max-width: 450px;
  margin: 0 auto;

}
.info h1 {
  font-size: 22px;
  font-weight: 700;
}

.info p {
  font-size: 14px;
}

.info .info-links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.info .info-links a {
  color: var(--colorPrimary);
  text-decoration: none;
  position: relative;
  transition: .2s ease-out;
}

.info .info-links a::after {
  content: url(../images/arrow-right.svg);
  position: absolute;
  right: 0;
}

.info .info-links a:hover {
  color: var(--white);
  filter: brightness(5) grayscale(1);
}

.info .info-links img {
  margin-right: 10px;
}

.info textarea,
.info input,
.info select {
  border-radius: 4px;
  height: 40px;
  border: none;
  box-sizing: border-box;
  background: #353535;
  color: var(--white);
  width: 100%;
  padding-left: 10px;
  outline: none;
}

.info textarea::placeholder,
.info input::placeholder,
.info select::placeholder {
  color: #ccc;
}

.info h3,
.info label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.info textarea {
  height: 96px;
}

.info button {
  background: var(--colorPrimary);
  color: var(--background-color);
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 800;
  padding: 10px 40px;
  text-transform: uppercase;
  width: 130px;
}

.info button:hover {
  transform: scale(1.05);
}

.active-subs {
  text-align: left;
  max-width: 700px;
  margin: 40px auto;
}

.active-subs img {
  max-width: 150px;
  width: 100%;
  height: 24px;
}
.active-subs .link {
  text-align: right;
}

.active-subs h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.active-subs p {
  font-size: 14px;
}

.active-subs a.manage {
  position: relative;
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
}

.active-subs a.manage::after {
  content: url(../images/arrow-right.svg);
  position: absolute;
  right: 0;
  width: 12px;
  height: 21px;
  top: 2px;
  transition: .2s;
}

.active-subs a.manage:hover::after  {
  filter: brightness(5) grayscale(1);
}

.active-subs .google-icon {
  width: 40px;
  margin-right: 10px;
}





/* modal */

.modal {
  background: #000000c5;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal .modal-dialog .modal-content {
  background-color: rgba(56, 56, 56, 0.7);
  box-shadow: inset 0 0 50px 30px black;
  padding: 50px 30px 20px;
  border-radius: 4px;
  border: 2px solid #222;
  position: relative;
}

.modal .modal-dialog .modal-content .close-modal {
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: var(--background-color);
  color: var(--colorPrimary);
  position: absolute;
  top: 6px;
  right: 6px;
  border: 2px solid #222;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  transition: var(--transition-time);
}

.modal .modal-dialog .modal-content .close-modal:hover {
  transform: scale(1.15);
  color: var(--white);
}

.modal .modal-dialog .modal-content .modal-header {
  border-bottom: none;
  padding: 20px 0;
}

.modal .modal-dialog .modal-content .modal-header h4 {
  font-size: 30px;
  font-weight: 800;
}
  
.modal .modal-dialog .modal-content .modal-body {
  padding: 20px 0;
}

.modal .modal-dialog .modal-content .condition {
  color: var(--MdGray);
  position: relative;
}

.modal .modal-dialog .modal-content .condition::before {
  content: "";
  border-top: 2px solid #353535;
  display: block;
  position: absolute;
  width: calc(50% - 15px);
  left: 0;
  top: 10px;
}

.modal .modal-dialog .modal-content .condition::after {
  content: "";
  border-top: 2px solid #353535;
  display: block;
  position: absolute;
  width: calc(50% - 15px);
  right: 0;
  top: 10px;
}

.modal .modal-dialog .modal-content .modal-footer {
  padding: 0;
  border: none;
}

.modal .modal-dialog .modal-content .modal-footer .btn-secondary {
  padding: 20px;
  width: 100%;
  font-size: 15px;
  margin-left: 0;
  margin-right: 0;
}

.modal#loginModal .btn-secondary {
  border-radius: 4px;
  position: relative;
}

.modal#loginModal .btn-secondary:hover {
  filter: grayscale(1) brightness(5);
}

.modal .btn-secondary {
  border-radius: 4px;
  position: relative;
}

.modal .btn-secondary::after {
  content: '';
  background: url(../images/arrow-primary.png) center no-repeat;
  display: block;
  position: absolute;
  right: 15px;
  top: 20px;
  width: 20px;
  height: 20px;
}

.modal .btn-secondary.d-block::after {content: none;}

.btn-secondary.mobile::before {
  content: '';
  position: absolute;
  background: url(../images/mobile-icon.png) 10px no-repeat !important;
  display: block;
  width: 40px;
  height: 40px;
  left: 0;
  top: 11px;
}

.btn-secondary.email::before {
  content: '';
  position: absolute;
  background: url(../images/email-icon.png) 10px no-repeat !important;
  display: block;
  width: 50px;
  height: 28px;
  left: 0;
  top: 16px;
}

.btn-secondary.username::before {
  content: '';
  position: absolute;
  background: url(../images/userrname-icon.png) center no-repeat !important;
  display: block;
  width: 40px;
  height: 40px;
  left: 10px;
  top: 10px;
}

.btn-secondary:hover::after {
  filter: grayscale(1) brightness(5);
}


.modal#subscriptionModal .btn-primary.xl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  line-height: normal;
}

.modal#subscriptionModal .btn-primary.xl img:first-of-type {
  padding: 10px 15px 15px 0;
  border-right: 1px solid var(--background-color);
}

.modal.modal-full {
  --bs-modal-width: 100%;

}
.modal.modal-full .modal-dialog {
  margin: 0;
}

.modal.modal-full .modal-dialog .modal-content .modal-body > img {width: 100%;}

#player > div[data-player] {
  min-width: 100%;
  max-width: 100%;
}

#player > div[data-player] .play-wrapper {
  display: flex;
  justify-content: center;
}

#player > div[data-player] .play-wrapper .container[data-container] {background-color: transparent;}

#player > div[data-player] .play-wrapper .poster-icon {
  max-height: 60px; max-width: 60px;
}

.player-poster[data-poster] .play-wrapper[data-poster] {
  display: flex;
  justify-content: center;
  align-items: center;
}

.player-poster[data-poster] .play-wrapper[data-poster] svg {
  height: 60%;
}





/* Forms */

textarea,
input {
  border-radius: 4px;
  height: 40px;
  border: none;
  box-sizing: border-box;
  background: #656565;
  color: var(--white);
  width: 100%;
  padding-left: 10px;
  outline: none;
  min-height: 50px;
}

textarea::placeholder,
 input::placeholder {
  color: #ccc;
}




/* Pages */

.title-bar {
  height: 150px;
  background: #151515;
  position: relative;
}

.title-bar h1 {
  color: var(--white);
  margin: auto;
  font-size: 20px;
  font-weight: 600;
}

.title-bar > .breadcrumb {
  margin: 15px 0 0 30px;
  position: absolute;
  left: 0;
  top: 0;
}

.text-content {
  text-align: left; 
}

.text-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 10px;
  text-align: left;
}

.text-content p {
  text-align: left;
  line-height: 20px;
  margin-bottom: 20px;
}

.text-content ul li {
  text-align: left;
  margin-bottom: 15px;
}

.text-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 30px 0 5px;
  text-align: left;
}



/* Footer */

footer {
  margin: 60px auto 0;
  padding: 30px 0;
}

footer .d-flex {
  gap: 20px;
}

footer .d-flex ul {
  margin: 0;
  list-style: none;
  gap: 10px;
  padding: 0;
}

.telegram-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.telegram-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #0088cc;
  display: flex;
  justify-content: center;
  align-items: center;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(0, 136, 204, 0);
  }
}

.telegram-icon svg {
  fill: #fff;
  width: 30px;
  height: 30px;
}




/************** Media Queries **************/

@media (min-width: 1200px) and (max-width: 1399px) {
  header .navbar .subscription-banner {padding: 10px;}
  header .navbar .subscription-banner span {font-size: 12px; padding: 8px;}
  .hero .card .card-description .btn-primary {padding: 12px 26px; letter-spacing: -.25px;}
}

@media (min-width: 992px) and (max-width: 1199px) {
  header .navbar .subscription-banner {display: flex;align-items: center;border-radius: 4px;top: 10px;left: calc(50% - 180px);width: 360px;justify-content: center;}
  header .navbar .subscription-banner span { margin-bottom: 0; font-size: 12px;}
  header .navbar .navbar-brand {left: calc(50% - 120px);}
  header .navbar .dropdown .btn-primary.dropdown-toggle {margin-top: 6px;}
  .hero {margin-top: -90px;}
  .cat::before {text-align: left; font-size: 24px;}
  header .navbar .dropdown {top: 15px;}
  .movie-view {padding: 40px 0;}
}

@media (min-width: 768px) and (max-width: 991px) {
  header .navbar {padding: 0; height: auto; min-height: 52px;}
  header .navbar .subscription-banner {display: flex;width: 100%;max-width: 480px;top: 70px;left: calc(50% - 240px);border-radius: 4px;align-items: center;padding: 12px;justify-content: center;gap: 5px;flex-direction: column;margin: auto;}
  header .navbar .subscription-banner span {margin-bottom: 0;display: block;padding: 0 5px; font-size: 18px;}
  header .navbar .subscription-banner .btn-primary {padding: 6px 30px;font-size: 18px;}
  header .navbar .navbar-brand {max-width: 175px;top: 15px;left: 0;margin: 0;}
  header .navbar .dropdown {top: 15px;}
  .movie-view {padding: 40px 0;}
}

@media (max-width: 1199px) {
  h2 {font-size: 18px;}
  .btn-secondary {padding: 10px 24px 11px;}
  .btn-secondary.btn-icon{ height: 42px; width: 42px}
  header {padding: 0 20px;}
  header .navbar {padding: 0 0 60px;display: block;height: 160px;}
  header .navbar .subscription-banner span {margin-bottom: 5px;display: block;padding: 0 5px;}
  header .navbar .navbar-brand {max-width: 50%;margin: 0 !important;display: block;top: 6px; left: 0;}
  header .navbar .dropdown { width: fit-content; position: absolute; top: 5px; right: 0;}
  header .navbar .dropdown .dropdown-menu.dropdown-menu-right { width: calc(100vw - 40px); right: 0; position: absolute; top: 45px;height: fit-content;}
  header .navbar .dropdown .dropdown-menu.dropdown-menu-right hr {margin-top: 20px;}
  header .navbar #language-select {position: absolute;top: 10px;right: -5px;margin: 0;letter-spacing: -.5px;}
  header .navbar .dropdown .dropdown-menu li a, header .dropdown-menu li button {padding: 8px 20px;text-align: center;}
  .hero{margin: 0 auto !important; height: calc(100vh - 160px);display: flex;width: 100%;justify-content: center;align-items: center;}
  .hero .video-bck {position: relative;padding: 0 20px;width: 100%;}
  .hero-slider .swiper-wrapper.cards {padding: 0;justify-content: flex-start;gap: 20px;}
  .hero-slider .swiper-slide.card { max-width: 240px;}
  .hero-slider .swiper-slide.card::before {left: -20px;top: 250px;}
  .hero-slider .swiper-slide.card::after {content: none;}
  .hero .hero-slider .card-image {width: 100%;overflow: hidden; padding-bottom: 0;}
  .hero .hero-slider .card-image > img {height: fit-content; width: 100%;    max-height: 408px;}
  h3.hero-title {top: 60px; font-size: 58px; margin-top: -60px !important;}
  .main-title{ margin-top: 0;}
  .main-title > h1 {font-size: 32px;}
  .icons {position: fixed; gap: 12px;bottom: 0;z-index: 2;margin: 0 !important;width: 100%;left: 0;}
  .icons::before {content:'';display: block;position: absolute;bottom: 0;width: 100%;left: 0; background: linear-gradient(180deg, rgb(45 45 45) 0%, rgba(13,13,13,1) 50%);height: calc(100% - 6px);}
  .icons a .icons-container {border-radius: 0;background: transparent; display: flex; justify-content: center;}
  .icons > a .icons-container::before {content: none;}
  .icons > a .icons-container img {padding: 10px 10px 2px; width: 44px;height: auto; box-sizing: border-box;}
  .icons > a p {margin: 0 auto; padding-bottom: 10px; font-size: 11px; position: relative;}
  .icons > a:hover, .icons > a:focus, .icons > a:active{transform: none; top: -8px;}
  .swiper-wrapper.cards {padding-top: 40px;}
  .cat .swiper .swiper-wrapper .swiper-slide {min-width: 200px; max-width: 200px;}
  section.cat:first-of-type {margin-top: 0;}
  section {margin: 80px 0;}
  section:last-of-type{ margin-bottom: 60px;}
  .container { width: calc(100% - 40px); padding: 0;}
  .cat::before {font-size: 24px;}
  .cat::after {content: none;}
  .movie-view {width: 100%;padding: 20px; max-width: 640px; box-sizing: border-box;}
  .movie-view .video-description .description { padding-left: 0;}
  .movie-view .video-description .title { padding-left: 0;}
  .movie-view .video-description .modal-image {width: 60px;height: 70px;top: -60px;left: 0;}
  .movie-view .video-description .bck-thumbnail {width: 60px;height: 70px;top: -50px;}
  .movie-view .video-description .social-actions { gap: .5rem !important; flex-direction: column;}
  #player > div[data-player] .play-wrapper .poster-icon { max-height: 45px; max-width: 45px;}
  .title-bar {height: 120px;}
  .title-bar > .breadcrumb { margin: 15px 0 0 20px;}
  footer .d-flex {gap: 15px;}
  .modal .modal-dialog .modal-content {padding: 50px 20px 20px;}
  .long-txt {overflow: hidden;white-space: nowrap;text-overflow: ellipsis;max-width: 90%;display: block;padding-left: 35px;}
  .movie-view .video-description {padding: 30px 0;}
}

@media (max-width: 767px) {
  #trailer, #trailer > [data-player] {max-width: 100%; height: auto !important; min-height: 200px;}
  footer {padding: 30px 0 60px;}
  .video-bck > video {height: 48vh;width: auto !important;min-width: 200%;left: -40%;}
  .video-bck > img {height: 48vh;width: auto !important;min-width: fit-content;}
  .main-title {padding: 50px 0; gap: 50px;}
  .btn-primary.hero-btn.mt-5 {margin-top: 10px !important}
  header .navbar .dropdown .btn {max-width: 30px; margin-top: 8px;}
  header .navbar .subscription-banner {top: 80px;border-radius: 4px;width: 280px;left: calc(50% - 140px);}
  header .navbar .subscription-banner span {padding: 0; font-size: 14px;}
}