* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: Arial, Helvetica, sans-serif !important;
  background-color: #000;
  height: 100%;
}

:root {
  --black: #000000;
  --light: #E8F0FE;
  --red: #E50914;
  --white: #FFFFFF;
  --checkbox: #737373;
  --dark: #6F6F6F;

  --primary: #ED0F3B;
  --header_text: #464646;
  --new_border: #E4E4E4;
  --white: #ffffff;
  --landing_text: #686868;
  --landing_footer: #FAFAFA;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

.wrapper {
  background-color: #000;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

/****************** common_css **********************/
.new_cust_container {
  width: 100%;
  max-width: 1360px;
  margin: auto;
}

/****************** end_common_css **********************/

/************************************ login ***************************************/

.login_btn {
  color: white;
  background-color: red;
  border-radius: 10px;
  padding: 6px;
  width: 70px;
  border-color: white;
  border: none;
}

.login_bg {
  width: 100%;
  height: 100vh;
  background-image: url("../public/img/banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.login_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.login_logo {
  position: relative;
  z-index: 1;
  padding: 19px 60px;
  display: flex;
  align-items: center;
}

.login_logo img {
  width: 200px;
}

.login_box {
  width: 100%;
  max-width: 450px;
  background-color: var(--black);
  padding: 58px 49px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.login_box_title h3 {
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.login_box_title {
  display: inline-block;
  padding-bottom: 5px;
}

.input_box {
  margin-top: 31px;
  position: relative;
}

.login_box_content span {
  color: var(--white);
}

.active_box {
  text-align: center;
  width: 100%;
}

.input_box .input_fild {
  width: 100%;
  height: 50px;
  padding-left: 16px;
  outline: none;
  background-color: var(--light);
  color: var(--black);
  border: 0;
  border-radius: 5px;
  margin-bottom: 16px;
}

.input_box .input_fild:last-child {
  margin-bottom: 0;
}

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

::placeholder {
  font-size: 14px !important;
  color: var(--dark) !important;
  font-weight: 500;
}

.forgot_pwd {
  font-size: 14px;
  text-decoration: none;
  color: #6F6F6F;
}

.otp_box {
  width: 47px;
  height: 50px;
  background-color: var(--light);
  border: 0;
  border-radius: 5px;
}

.otp_input {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.otp_main_box {
  padding: 78px 49px 77px;
}

.container_check_box {
  display: flex;
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--dark);
  margin-bottom: 35px;
}

.container_check_box input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: var(--white);
  border-radius: 4px;
}

.container_check_box:hover input~.checkmark {
  background-color: #ccc;
}

.container_check_box input:checked~.checkmark {
  background-color: var(--checkbox);
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.container_check_box input:checked~.checkmark:after {
  display: block;
}

.container_check_box .checkmark:after {
  left: 7px;
  top: 4px;
  width: 7px;
  height: 10px;
  border: solid var(--black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.submit_btn,
.disbled_btn {
  width: 100%;
  padding: 9px;
  border: 0;
  background-color: var(--red);
  color: var(--white);
  border-radius: 5px;
  font-size: 20px;
  margin-bottom: 36px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.disbled_btn:disabled,
.disbled_btn[disabled] {
  opacity: 0.5;
}

.sign_up_text {
  text-align: center;
  display: block;
  color: var(--dark);
  text-decoration: none;
  font-size: 16px;
}

.sign_up_text:hover {
  color: var(--white);
}

.login_modal .modal-content {
  background-color: #373737;
  border: 1px solid #626262;
}

.login_modal_img {
  text-align: center;
  padding-top: 50px;
}

.login_modal_img img {
  width: 150px;
}

.login_modal_text {
  padding-top: 38px;
}

.login_modal_text h3 {
  color: var(--white);
  font-size: 32px;
}

.login_modal_text h4 {
  color: var(--white);
  font-size: 20px;
}

.login_modal_btn {
  display: flex;
  justify-content: center;
  padding: 30px 0 10px;
}

.login_modal_btn a {
  padding: 13px 112px;
  color: var(--black);
  background-color: var(--white);
  display: inline-block;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.login_modal_btn a:last-child {
  background-color: #555555;
  color: var(--white);
}

.skip_btn {
  padding-top: 33px;
  text-align: center;
}

.skip_btn .skip_btn_btn {
  text-decoration: none;
  padding: 13px 80px;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(to right, #E50914, #38070A) border-box;
  border-radius: 50em;
  border: 2px solid transparent;
}

.login_modal .modal-dialog {
  max-width: 664px;
}


/************************************ End-login ***************************************/



/************************************ Home ***************************************/
.slider_section {
  position: relative;
  z-index: 1;
  min-height: 150px;
}

.slider_section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50vh;
  width: 100%;
  z-index: 1;
  background:
    linear-gradient(to bottom, transparent, black) no-repeat bottom;
}

.carousel-control-prev,
.carousel-control-next {
  display: none !important;
}

.slider_section img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.slider_section .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 100%;
}

.slider_section .carousel-indicators .active {
  opacity: 1;
  background-color: var(--red);
}

.slider_common_banner {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  background-size: cover;
  background-position: top;
  padding: 390px 0;
  position: relative;
}

.slider_common_banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../public/img/opacity_bg.png");
  background-repeat: no-repeat;
}

.img_content {
  /* position: relative;
  z-index: 20;
  max-width: 750px;
  width: 100%; */
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(15%, -50%);
  width: 100%;
  z-index: 10;
}

.img_content h1 {
  color: var(--white);
  font-size: 80px;
  font-weight: bolder;
  margin-bottom: 20px;
}

.img_content p {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 800px;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;

}

.img_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.play_btn {
  padding: 10px 36px;
  border: 0;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
}

.btn_img img {
  width: 22px !important;
  height: 22px !important;
  object-fit: contain;
  margin-right: 14px;
}

.play_info {
  padding: 10px 16px;
  border: 0;
  border-radius: 5px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  background-color: #6D6D6E;
  display: flex;
  align-items: center;
  margin-left: 14px;
}

.carousel-indicators {
  bottom: 10% !important;
}

/************************************ End-Home ***************************************/

/************************************ header ***************************************/
.main_header {
  position: fixed;
  width: 100%;
  z-index: 100;
  /* background-image: url() !important; */
  background-image: linear-gradient(180deg, rgba(0, 0, 0, .7) 10%, transparent), url("../public/img/header_bg.png");
  background-position: center;
  padding: 0 100px;
  background-color: transparent;
  background-size: cover;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 19px 0;
}

.header_left_content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header_left_content img {
  width: 150px;
}

.header_left_content ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 0 0 0 60px;
}

.header_left_content ul li {
  list-style-type: none;
  margin: 0 24px 0 0;
}

.header_left_content ul li a {
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  transition: all .5s;
}

.header_left_content ul li a.active {
  color: red;
  font-weight: 800;
}


.header_left_content ul li a:hover {
  color: var(--red);
}

.header_right_content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header_right_content div {
  margin: 0 0 0 25px;
}

.profile_menu {
  width: 100%;
  max-width: 220px;
  background-color: var(--black);
  position: absolute;
  width: 100%;
  right: 0;
  margin-top: 0px !important;
  margin-right: 150px !important;
  transition: all 0.4s ease-in-out;
  transform-origin: 50% 0;
  transform: scaleY(0);
  display: block;
  overflow: hidden;
  opacity: 0;
}

.create_profile_img {
  width: 100%;
  height: 114px !important;
}

.profile_menu ul {
  padding: 14px;
  margin: 0;
}

.profile_menu ul li {
  margin-bottom: 10px;
  list-style-type: none;
}

.profile_menu ul li a img {
  margin-right: 12px;
}

.profile_menu ul li a {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
}

.profile_menu ul li.small_icon {
  margin-left: 8px;
  cursor: pointer;
}

.small_text {
  padding-left: 6px;
}

.profile_logout {
  padding: 0 !important;
  margin: 0;
  text-align: center;
  border-top: 1px solid #555555;
}

.profile_logout li {
  list-style-type: none;
  padding: 10px 0 0;
}

.profile_logout li a {
  color: var(--white);
}

.drop_menu:hover .profile_menu {
  transform: scaleY(1);
  overflow: visible;
  opacity: 1;
}

.toggle_icon {
  display: none;
}

.toggle_icon img {
  width: 25px;
}

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  animation: smoothScroll 1s forwards;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
}

.fixed .header {
  padding: 19px 100px;
}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }

  100% {
    transform: translateY(0px);
  }
}

.header_right_content .search {
  /* border: 1px solid var(--white) !important; */
  padding: 8px 10px 8px 10px;
  white-space: nowrap;
}

.search input[type] {
  background-color: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  color: var(--white);
  padding: 0 10px 0 0;
  width: 300px;
}

.search input[type]::placeholder {
  color: var(--white) !important;
  font-size: 16px !important;
}

.search img {
  width: 18px;
  vertical-align: sub;
  cursor: pointer;
}

.search .nav-pills {
  float: none !important;
}

.search .nav-pills {
  background-color: transparent !important;
}

.search .nav-pills .nav-link {
  background-color: #404040;
  border-radius: 30px;
  color: var(--white) !important;
  margin: 0 10px 0 0;
  font-weight: 500;
  min-width: 120px;
  border: 1px solid #787878;
}

.result_text {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
  padding-bottom: 10px;
  text-align: center;
  padding-top: 10px;
}

.search_data .nav-pills {
  /* display: inline-flex;
  justify-content: flex-end; */
  /* width: 100%;
  position: relative;
  top: -40px; */

}

.search_box {
  width: 375px;
  padding: 14px 16px;
  border-radius: 30px;
  background-color: #2F2F2F;
  position: relative;
  z-index: 1;
}

.search_box .search {
  padding: 0 0 0 30px !important;
}

.search_box img {
  position: absolute;
  top: 18px;
  left: 18px;
}


/************************************ end_header ***************************************/

/************************************ index ***************************************/
.index_more_content_first {
  margin-top: -60px;
  position: relative;
  z-index: 2;
}

.episode_slider {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.cust_container {
  overflow-x: clip;
}

.owl-stage-outer {
  overflow: visible !important;
}

.index_more_content .owl-carousel .owl-stage-outer {
  overflow-x: clip;
}

.episode_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.episode_title h4 {
  font-size: 26px;
  color: var(--white);
  font-weight: 700;
}

.episode_title a {
  text-decoration: none;
  color: var(--red);
  font-size: 16px;
  font-weight: 700;
  padding-left: 14px;
  display: none;
}

.index_more_content {
  overflow-x: clip;
}

.owl-item {
  cursor: pointer;
}

.item_box {
  cursor: pointer;
  position: relative;
  margin: 0 5px;
  z-index: 0;
  transition: 0.3s ease-out;
}


.item_box:hover {
  transform: scale(1.2);
  z-index: 100;

}

.item_box img {
  width: 100% !important;
  border-radius: 5px;
}


.item_img_details {
  background-color: #1A1A1A;
  padding: 10px 10px;
  position: absolute;
  width: 100%;
  bottom: 0;
  opacity: 0;
  display: block;
  visibility: hidden;
  /* transition: all .5s; */
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  /* transform: translate(0%,50%); */
}

.item_box:hover .item_img_details {
  opacity: 1;
  visibility: visible;
}

.owl-item:hover {
  position: relative;
  z-index: 100;
}

.item_img_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.item_img_header h5 {
  color: var(--white);
  font-size: 14px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.item_img_header ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.item_img_header ul li {
  list-style-type: none;
}

.item_img_header ul li img {
  width: 18px !important;
  margin: 0 5px 0 0;
  display: block;
}

.episode_details .item_img_header ul li img {
  width: 18px !important;
  margin: 0 5px 0 0;
}

.item_img_number {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 5px;
}

.item_img_number h3 {
  border: 1px solid red;
  display: inline-block;
  font-size: 10px;
  color: red;
  padding: 2px 5px;
  white-space: nowrap;
  margin-bottom: 0;
}

.item_img_number h4 {
  padding-left: 6px;
  font-size: 10px;
  color: #ffffff;
  white-space: nowrap;
  margin-bottom: 0;
}

.item_description p {
  color: #AEAEAE;
  font-size: 10px;
  margin-bottom: 0;
  overflow: hidden;
  width: 100%;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


.item_box:hover .item_img_details {
  display: block;

}

.index_more_content:hover .episode_title a {
  display: inline-flex;
  align-items: center;
}

.arrow {
  position: absolute;
  border-radius: 3px;
  font-size: 26px;
  top: 0;
  background: hsla(0, 0%, 8%, .5);
  padding: 0 6px;

}

.next {
  right: 10px;
  top: 0;
  transform: translate(-10%, -370%);
  padding: 0 10px;
  background: hsla(0, 0%, 8%, .5);
}

.prev {
  left: 0%;
  top: 0;
  transform: translate(-10%, -370%);
}

.owl-prev,
.owl-next {
  position: absolute;
}


.owl-prev {
  background: hsla(0, 0%, 8%, .5) !important;
  left: 0;
  top: 50%;
  transform: translate(0%, -100%);
}

.owl-next {
  background: hsla(0, 0%, 8%, .5) !important;
  right: 0;
  top: 50%;
  transform: translate(17%, -100%);
}

.owl-nav {
  opacity: 0;
}

.episode_slider:hover .owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: inline-block !important;
}

.owl-carousel:hover .owl-nav {
  opacity: 1;
}

.owl-prev,
.owl-next {
  color: var(--white) !important;
}

.custom-button {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  /* background: #000; */
  width: 100%;
  display: block;
}

.fav_icon {
  background-color: transparent;
  border: 0;
  padding-top: 8px;
}

/************************************ end-index ***************************************/

/************************************ footer_section ***************************************/

.sticky_btn_section {
  position: fixed;
  bottom: 0px;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, 0);
  backdrop-filter: blur(10px);
  padding: 10px;
  border-radius: 30px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.sticky_btn_section.show {
  opacity: 1;
  visibility: visible;
}

.sticky_btn_section a {
  display: inline-block;
  text-decoration: none;
  padding: 14px 60px;
  margin: 0 8px 0 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.get_started {
  position: relative;
  background-color: var(--white);
  border-radius: 50px;
  color: var(--black) !important;
}

.get_started::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  padding: 3px;
  background: linear-gradient(45deg, var(--red), blue);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  background-color: var(--white);
  mask-composite: exclude;
}

.sticky_btn_section .schedule {
  background-color: var(--red);
  border-radius: 50px;
}


.footer_section {
  width: 100%;
  height: auto;
  background-color: #1E1E1E;
  padding: 75px 0 39px;

}

.footer_text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 30px;
}

.footer_section .footer_logo img {
  padding-bottom: 20px;
  width: 200px;
}

.footer_section .footer_logo p {
  color: #8E8E8E;
  max-width: 400px;
  font-size: 18px;
  margin-bottom: 0;
}

.sub_footer_rights {
  color: var(--black) !important;
}

.footer_contant .footer_title h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 400;
}

.footer_contant .footer_links {
  padding-top: 10px;
}

.footer_links ul {
  padding: 0;
}

.footer_links ul li {
  list-style-type: none;
  margin-bottom: 10px;
}

.footer_links ul li a {
  text-decoration: none;
  color: #8E8E8E;
  transition: all .5s;
  font-size: 18px;
}

.footer_links ul li a:hover {
  color: var(--white);
}

.footer_contact_details {
  display: flex;
  flex-direction: row;
  padding-top: 10px;
}

.footer_det_text {
  padding-left: 13px;
  max-width: 240px;
}

.footer_det_text h3 {
  color: #D2D2D2;
  font-size: 20px;
  margin-bottom: 2px;
}

.footer_det_text p {
  color: #8E8E8E;
  font-size: 15px;
}

.sub_footer {
  border-top: 1px solid #272727;
  padding: 29px 0 0;
}

.sub_footer_text {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.sub_footer_text p {
  color: var(--white);
  font-size: 18px;
  margin: 0;
}

.sub_footer_text ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
}

.sub_footer_text ul li {
  list-style-type: none;
  margin: 0 10px 0 0;
}

.sub_footer_text ul li a img {
  width: 38px;
  transition: all .5s;
}

.sub_footer_text ul li a img:hover {
  margin-top: -10px;
}

/************************************ end_footer_section ***************************************/

/************************************ modal ***************************************/

.series_modal {
  max-height: 900px;
  overflow: auto;
}

.series_modal .modal-dialog {
  max-width: 924px;
}

.series_modal .modal-content {
  border-radius: 0;
  background-color: #181818;
}

.series_modal .modal-body {
  padding: 0;
}

.series_modal .series_img {
  position: relative;
}

.series_modal .series_img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.3); */
  background: linear-gradient(0deg, #181818, transparent 50%);
}

.series_modal .series_img .series_big_imf {
  width: 100%;
  height: 521px;
  object-fit: cover;
}

.series_tool {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 24px 0 24px;
  z-index: 1;
}

.series_controller {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 24px 0;
}

.series_name h2 {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
}

.series_left_controller {
  display: flex;
  flex-direction: row;
  align-items: center;

}

.series_left_controller .music_small_btn {
  background-color: transparent;
  border: 0;
}

.series_left_controller .music_small_btn img {
  width: 40px;
}

.series_modal .series_img .series_big_imf {
  width: 100%;
  height: 521px;
  object-fit: cover;
}

.series_tool {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 24px 0 24px;
  z-index: 1;
}

.series_controller {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 35px 0 24px 0;
}

.series_name h2 {
  color: #fff;
  font-weight: 700;
  font-size: 35px;
}

.series_left_controller {
  display: flex;
  flex-direction: row;
  align-items: center;

}

.music_play_btn {
  border: 0;
  width: auto;
  border-radius: 5px;
  font-weight: 700;
  font-size: 20px;
  margin-right: 10px;
  cursor: pointer;
  color: var(--black) !important;
  padding: 6px 20px;
}

.music_play_btn:focus {
  outline: none;
}

.music_play_btn img {
  padding-right: 6px;
}

.music_small_btn {
  margin: 0 10px 0 0;
}

.series_full_description {
  padding: 24px 24px 30px 24px;
}
.series_full_description .more_like_box{
  margin-bottom: 20px;
}
.series_full_description .more_like_box:hover{
  transform: none;
}
.series_full_description .more_second_section{
  padding: 0;
  position: relative;
  opacity: 1;
  background-color: transparent !important;
  margin-top: 10px !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.shaka-play-button{
  padding: calc(3% / 2) !important;
  background-size: 60% !important;
}

.more_like_left_info li{
  list-style-type: none;
}
.series_details_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.series_description {
  flex-grow: 1;
  flex-shrink: 0;
}

.series_description p {
  color: #FFFFFF;
  font-size: 16px;
  max-width: 593px;
  text-align: justify;
  padding-right: 20px;

}

.series_categories h4 {
  color: #777777;
  font-size: 14px;
}

.white_text {
  color: #ffffff;
  padding-left: 5px;
}

.series_dropdown_menu ul li {
  z-index: 2;
  line-height: 43px;
}

.series_dropdown_menu ul li:not(.init) {
  float: left;
  display: none;
  background: #1f1f1f;
}

.series_dropdown_menu ul li:not(.init):hover,
ul li.selected:not(.init) {
  background: #000000;
}

.series_dropdown_menu li.init {
  cursor: pointer;
  width: 221px;
  height: 43px;
  cursor: pointer;
  background: #282828;
  border-radius: 5px;
}

.series_dropdown_menu a#submit {
  z-index: 1;
}

.series_episode_details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.series_episode_header {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.series_dropdown_menu {
  position: relative;
}

.series_drop_icon {
  width: 10px;
  position: absolute;
  right: 50px;
  z-index: 5;
  top: 19px;
}

.series_episode_list_box a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  width: 100%;
}

.series_episode_list_box {
  padding: 25px 24px 25px 24px;
  cursor: pointer;
  transition: all .5s;
  border-bottom: 1px solid #333333;
  display: flex;
  flex-direction: row;
}

.series_episode_list_box:hover {
  background-color: #333333;
  border-radius: 5px;
}

.series_episode_list {
  margin-top: 20px;
}

.series_episode_list_box_details h4 {
  color: #D2D2D2;
  font-size: 20px;
  padding-right: 14px;
}

.series_episode_list_box_details .episode_img {
  width: 143px;
  height: 80px;
  border-radius: 5px;
}

.series_episode_list_box_details .play_video_icon {
  width: 34px;
}

.series_episode_list_box_details h3 {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
}

.series_episode_list_box_details p {
  font-size: 14px;
  color: #D2D2D2;
  max-width: 545px;
}

.series_episode_list_box_details {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.series_episode_list_box_min h2 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  padding-top: 9px;
  white-space: nowrap;
}

.series_full_description {
  padding: 24px 24px 30px 24px;
}

.series_details_content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}


.series_categories h4 {
  color: #777777;
  font-size: 16px;
  line-height: 1.8;
}

.white_text {
  color: #ffffff;
  padding-left: 5px;
}

.series_dropdown_menu ul li {
  z-index: 2;
  line-height: 43px;
}

.series_dropdown_menu ul li:not(.init) {
  float: left;
  display: none;
  background: #1f1f1f;
}

.series_dropdown_menu ul li:not(.init):hover,
ul li.selected:not(.init) {
  background: #000000;
}

.series_dropdown_menu li.init {
  cursor: pointer;
  width: 221px;
  height: 43px;
  cursor: pointer;
  background: #282828;
  border-radius: 5px;
}

.series_dropdown_menu a#submit {
  z-index: 1;
}

.series_episode_details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.series_dropdown_menu {
  position: relative;
}

.series_drop_icon {
  width: 10px;
  position: absolute;
  right: 50px;
  z-index: 5;
  top: 19px;
}

.series_episode_list_box a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}

.series_episode_list_box {
  padding: 25px 24px 25px 24px;
  cursor: pointer;
  transition: all .5s;
  border-bottom: 1px solid #333333;
  display: flex;
  flex-direction: row;
}

.series_episode_list_box:hover {
  background-color: #333333;
  border-radius: 5px;
}

.series_episode_list {
  margin-top: 20px;
}

.series_episode_list_box_details h4 {
  color: #D2D2D2;
  font-size: 20px;
  padding-right: 14px;
}

.series_episode_list_box_details .episode_img {
  width: 143px;
  height: 80px;
  border-radius: 5px;
}

.series_episode_list_box_details .play_video_icon {
  width: 34px;
}

.series_episode_list_box_details h3 {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 700;
}

.series_episode_list_box_details p {
  font-size: 14px;
  color: #D2D2D2;
  max-width: 545px;
}

.series_episode_list_box_details {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}

.series_episode_list_box_min h2 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
  padding-top: 9px;
}

.more_like_this {
  padding-top: 48px;
}

.more_like_this_title h3 {
  font-weight: 700;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 20px;
}

.more_like_box {
  cursor: pointer;
  position: relative;
  transition: all .5s;
}


.more_like_content_box {
  padding: 12px;
  background-color: #2F2F2F;
}

.more_like_box_img img {
  width: 100%;
  height: 147px;
  object-fit: cover;
}

.more_like_left_info h4 {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 500;
  max-width: 172px;
  margin: 0;
}

.more_like_left_info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.more_like_left_info li img {
  width: 30px;
}

.more_second_section {
  padding: 10px;
  background-color: #1A1A1A;
  position: absolute;
  bottom: 0%;
  width: -webkit-fill-available;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  opacity: 0;
  transition: all .5s;
  width: 100%;
}
.more_like_box:hover .more_second_section{
  opacity: 1;
}
.more_like_box:hover{
  transform: scale(1.1);
}

.more_second_section h3 {
  border: 1px solid red;
  display: inline-block;
  font-size: 14px;
  color: red;
  padding: 2px 5px;
  font-weight: normal;
  margin-bottom: 0;
}

.white_text_border {
  border: 1px solid var(--white);
  display: inline-block;
  font-size: 12px;
  color: var(--white);
  padding: 2px 5px;
  margin-left: 5px;
}



.more_second_section h4 {
  padding-left: 6px;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 0;
}

.more_second_description p {
  color: #D2D2D2;
  font-size: 14px;
  max-width: 250px;
  padding-top: 8px;
}

.more_img_load {
  margin-top: 25px;
  text-align: center;
  position: relative;
}

.more_img_load::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 46%;
  border: 1px solid #404040;
}

.more_img_load::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 46%;
  border: 1px solid #404040;
}

.more_img_load img {
  width: 45px;
}

.modal_close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
}

.series_episode_header h3 {
  font-weight: 700;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
}

.series_dropdown_menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: -25px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

.episode_details_img .play_video_icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .5s;
}

.series_episode_list_box:hover .episode_details_img .play_video_icon {
  opacity: 1;
}

.episode_details_img {
  position: relative;
}

.series_episode_list_box_description {
  margin-left: 14px;
}

/************************************ end_modal ***************************************/

/************************************ Generes ***************************************/
.select_box {
  overflow: hidden;
  border: 1px solid var(--white);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.select_box .cust_seleted {
  padding: 8px 16px !important;
  background-color: var(--black);
  color: var(--white);
}

.select_box:after {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--white);
  position: absolute;
  top: 49%;
  right: 5%;
  content: "";
  z-index: 500;
}

.select_box select {
  border: 1px solid var(--white);
  width: 170px;
  border: 0;
  position: relative;
  z-index: 99;
  background: none;
}

.genres_section {
  margin-bottom: 20px;
}

/************************************ end_Generes ***************************************/

/************************************ Common_css ***************************************/
.genres_section {
  display: flex;
  align-items: center;
}

.genres_section h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0;
  margin-right: 10px;
}

.cust_container {
  padding: 0 110px !important;
}

.inner_section {
  padding-top: 80px !important;
}

.video_play_btn_btn {
  background-color: transparent;
  border: 0;
}

.video_play_btn {
  position: fixed;
  top: 0;
  left: 0;
  margin-left: 10px;
  margin-top: 10px;
  border: 0;
  padding: 4px 8px;
  font-weight: 600;
  border-radius: 5px;
  width: 60px;
  cursor: pointer;
}

.App .jw-video {
  height: 98vh;
}

.App .jwplayer.jw-flag-aspect-mode {
  height: 100vh !important;
}

.jw-error-text {
  display: none;
}

.jw-icon {
  display: none;
}

.not_found {
  padding: 100px 0;
  text-align: center;
}

/************************************ end_Common_css ***************************************/


/************************************ watchlist ***************************************/
.watchlist {
  padding-top: 100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.watchlist_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 30px;
}

.watchlist_header h3 {
  margin: 0;
  color: var(--white);
}

.watchlist .nav-pills .nav-link.active {
  background-color: var(--red);
  color: var(--white);
  border: 0;
}

.nav-tabs .nav-link:hover {
  border: 1px solid var(--black);
}

.watchlist .nav-pills .nav-link.active img {
  filter: brightness(0) invert(1);
}

.watchlist .nav-pills .nav-link {
  color: #CBCBCB;
}

.watchlist .nav-pills .nav-link img {
  margin-right: 5px;
}

.watchlist .nav-pills {
  background-color: #414141;
  margin: 0 10px;
  padding: 0;
  display: inline-flex;
  border: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 100px;
  margin-right: 40px;
  z-index: 1;
}

.search_tab {
  /* position: relative !important;
  margin-top: 0 !important;
  margin-right: 0px !important; */
}

.watch_list_images {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-gap: 10px;
}

.watch_list_images a {
  text-align: center;
}

.watch_list_images a img {
  border-radius: 5px;
  width: 100%;
}

.view_all_section .slick-slider {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  row-gap: 50px;
  margin-bottom: 20px;

}

.view_all_section .slick-slider .watchlist_box {
  cursor: pointer;
  transition: 0.3s ease-out;
}

.watchlist_box:hover {
  transform: scale(1.2);
  position: relative;
  z-index: 1;
}

.watchlist_box img {
  width: 100%;
}

/************************************ end_watchlist ***************************************/


/************************************ switch_profile ***************************************/
.switch_profile {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #000;
}

.switch_profile_title h3 {
  font-size: 60px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 50px;
}

.switch_profile_title h6 {
  text-align: center;
  padding: 10px 0;
}

.switch_profile_img {
  text-align: center;
  margin: 0 28px 0 0;
  position: relative;
  cursor: pointer;
}


.switch_profile_img h5 {
  text-decoration: none;
  font-size: 24px;
  color: #D2D2D2;
  position: absolute;
  text-align: center;
  width: 100%;
  margin-top: 18px;
}

.switch_profile_box {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
}

.profile_action {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  /* opacity: 0; */
}

.profile_action::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
  border-radius: 5px;
}

.profile_icon_action {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.profile_action a {
  margin: 0 0 0 16px;
}

.manage_pro {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

.manage_profile,
.bg-white {
  text-align: center;
  padding: 10px 68px;
  border: 1px solid #FFFFFF;
  color: #D2D2D2;
  font-size: 24px;
  text-decoration: none;
  background-color: transparent;
}

[type="file"] {
  height: 0;
  overflow: hidden;
  width: 0;
}

[type="file"]+label {
  cursor: pointer;
}

.switch_profile_img img {
  width: 100%;
  border-radius: 5px;
}

.profile_icon_action img {
  width: 50px;
}

.profile_icon_action button {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  margin: 0 5px;
  position: relative;
  z-index: 100;
}

.bg-white {
  background-color: var(--white);
  color: var(--black);
}

.switch_profile_modal .modal-content {
  background-color: #181818;
  border-radius: 0;
}

.switch_profile_modal .modal-dialog {
  max-width: 924px;
}

.switch_profile_modal .modal-body {
  padding: 28px 24px;
}

.switch_profile_modal .modal_header {
  border-bottom: 1px solid #404040;
  width: 100%;
}

.switch_profile_modal .modal_header h3 {
  font-size: 45px;
  color: var(--white);
  margin-bottom: 20px;
}

.form_group {
  margin-bottom: 28px;
}

.form_label h4 {
  font-size: 16px;
  color: #D2D2D2;
}

.form_box {
  width: 100%;
  height: 45px;
  background-color: #2D2D2D;
  color: var(--white);
  font-size: 16px;
  border: 0;
  outline: none;
  padding-left: 14px;
}

.profile_change {
  margin-top: 22px;
}

.profile_change img {
  border-radius: 5px;
}

.form_modal_action {
  display: flex;
}

.data_box {
  color-scheme: dark;
}

.form_modal_action .update {
  background-color: var(--white);
  color: var(--black);
  width: 50%;
  padding: 8px;
  text-align: center;
  border: 0;
  font-size: 18px;
  font-weight: 700;
  margin: 0 13px 0 0;
}

.form_modal_action .cancel {
  background-color: #2D2D2D;
  color: var(--white);
  width: 50%;
  padding: 8px;
  text-align: center;
  border: 0;
  font-size: 18px;
  font-weight: 700;
}

.series_episode_header h3 {
  font-weight: 700;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 0;
}

.series_dropdown_menu ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  top: -25px;
  color: #fff;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
}

/************************************ end_switch_profile ***************************************/


/************************************ account_settings ***************************************/
.account_setting {
  padding-top: 55px;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
}

.account_setting_title {
  padding-top: 30px;
}

.account_setting_title h3 {
  color: var(--white);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 26px;
}

.account_setting_table {
  background-color: #181818;
  border-radius: 5px;
}

.account_setting_box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #404040;
  padding: 20px 0;
}

.account_setting_box:last-child {
  border-bottom: 0;
}

.account_setting_left_section {
  display: flex;
  flex-direction: row;
}

.account_setting_left_first_text h4 {
  color: var(--white);
  font-size: 22px;
  font-weight: normal;
  margin: 0;
}

.account_setting_left_first_text {
  width: 400px;
}

.account_setting_left_second_text h5 {
  color: #D2D2D2;
  font-size: 18px;
  font-weight: normal;
}

.account_setting_left_second_text h5 a {
  color: #D2D2D2;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  transition: all .5s;
}

.account_setting_left_second_text h5 a:hover {
  color: var(--white);
}

.account_setting_right_section a {
  padding: 12px 34px;
  margin: 0 10px 0 0;
  background-color: #2C2C2C;
  color: var(--white);
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
}

.change_pwd_text a {
  background-color: transparent;
  color: #D2D2D2;
  font-weight: 400;
}

.account_profile_list_box ul {
  padding: 0;
  margin: 0;
}

.account_profile_list_box ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.account_profile_list_box ul li .profile_name {
  display: flex;
  flex-direction: column;
}

.account_profile_list_box ul li .profile_name a:first-child {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
}

.account_profile_list_box ul li .profile_name a:last-child {
  color: #D2D2D2;
  text-decoration: none;
  font-size: 18px;
}

.profile_img a img {
  width: 75px;
}

.profile_img {
  margin-right: 20px;
}

.back_arrow {
  padding-right: 24px;
}

.change_password_box {
  padding: 58px 63px;
}

.change_pwd {
  width: 100%;
  background-color: var(--white);
  color: var(--black);
  padding: 10px;
  border: 0;
  border-radius: 5px;
  font-weight: 600;
}

.form_group .form_input_group {
  width: 100%;
}

.form_input_group {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #515050;
  color: var(--white);
}

.form_group label {
  display: block;
  color: #B8B8B8;
  font-size: 18px;
  padding-bottom: 14px;
}

.form_input_group:focus {
  outline: none;
  box-shadow: none;
}

.change_pwd_text a {
  padding-right: 0;
}

.billing_details {
  display: flex;
  flex-direction: row;
}

.billing_left_details {
  padding: 44px 28px;
  position: relative;
  width: 300px;
  white-space: nowrap;
}

.billing_left_details h4 {
  font-size: 22px;
  color: var(--white);
}

.billing_left_details h5 {
  color: #D2D2D2;
  font-size: 18px;
  margin: 0;
}

.billing_left_details:last-child {
  padding-left: 114px;
}

.billing_left_details::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 1px;
  height: 80%;
  border: 1px solid #404040;
}

.billing_left_details:last-child:after {
  border: 0;
}

.account_setting_table thead tr th {
  color: var(--white);
  font-weight: normal;
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid #404040;
  white-space: nowrap;
  background-color: #181818;
}

.account_setting_table {
  border-radius: 5px;
}

.account_setting_table tbody tr th {
  background-color: #181818;
  color: var(--white);

}

.account_setting_table tbody tr td {
  background-color: #181818;
  color: var(--white);
  border: 0;
}

.table-bordered>:not(caption)>* {
  border-width: 0 !important;
}

.account_setting_table tbody tr th,
td {

  color: #D2D2D2;
  font-size: 14px;
  font-weight: normal;
  border: 0;
  white-space: nowrap;
}

/************************************ end_account_settings ***************************************/


/************************************ plan ***************************************/
.premium_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #404040;
}

.premium_header_left {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 17px 0;
}

.premium_header_left img {
  width: 30px;
}

.premium_header_left h4 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: normal;
  margin-left: 12px;
}

.premium_header_right h4 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  font-weight: normal;
}

.premium_details {
  padding-top: 26px;
  padding-top: 26px;
  display: flex;
  justify-content: space-around;
}

.premium_details_box {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.premium_details_box h5 {
  color: #D2D2D2;
  font-size: 16px;
  margin: 0 0 0 19px;
}

.plan_btn {
  margin-top: 42px;
}

.plan_btn a {
  padding: 15px 62px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin: 0 12px 0 0;
}

.plan_btn .continue_btn {
  background-color: var(--red);
}

.plan_btn .go_back {
  background-color: #2C2C2C;
}

.selected_table {
  border: 2px solid var(--red);
}

.account_setting_table thead tr th {
  color: var(--white);
  font-weight: normal;
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid #404040;
  white-space: nowrap;
}

.account_setting_table tbody tr th,
td {
  color: #D2D2D2;
  font-size: 14px;
  font-weight: normal;
  border: 0;
  white-space: nowrap;
}

.cust_radio {
  display: none;
}

.inner_div {
  padding: 0 30px 20px;
  cursor: pointer;
}

.cust_radio:checked+.inner_div {
  border: 1px solid red;
}

.plan_radio {
  width: 100%;
  cursor: pointer;
}

.video {
  width: 100%;
  height: 100vh;
}

/************************************ end_plan ***************************************/

/************************************ payment ***************************************/
.payment_section {
  width: 100%;
  max-width: 1296px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: calc(100vh - 250px);
}

.payment_right_section [data='input-focus'] {
  position: relative;
}

.payment_right_section [data='input-focus'] input {
  outline: none;
  -webkit-appearance: none;
  display: block;
  width: 100%;
  font-size: 18px;
  border: 0;
  border-bottom: 1px solid #515050;
  background-color: transparent;
  line-height: 40px;
  color: var(--white);
  font-weight: normal;
}

.payment_right_section [data='input-focus'] input:focus {
  color: var(--white);
  border-bottom: 1px solid var(--white);
}

.payment_right_section [data='input-focus'] input~label {
  position: absolute;
  left: 0px;
  top: 0;
  pointer-events: none;
  transition: all 0.3s;
  line-height: 40px;
  color: #B8B8B8;
  font-size: 18px;
}

.payment_right_section [data='input-focus'] input:focus~label,
[data='input-focus'] input:valid~label {
  top: -30px;
  font-size: 18px;
  color: var(--white);
}

.payment_right_section {
  width: 100%;
  max-width: 527px;
}

.change_plan {
  position: absolute;
  top: 10px;
  right: 0;
  text-decoration: none;
  color: #B8B8B8;
  font-size: 16px;
}

.change_plan:hover {
  color: var(--white);
}

.payment_right_section .container_check_box input:checked~.checkmark {
  background-color: #ffffff;
}

.payment_text {
  color: #B8B8B8;
  font-size: 14px;
}

.pay_now {
  margin-top: 34px;
  width: 100%;
  padding: 8px 0;
  background-color: var(--white);
  color: var(--black);
  border: 0;
  font-size: 24px;
  font-weight: 700;
  border-radius: 5px;
}

.payment_left_img img {
  width: 100%;
}

.payment_right_section label {
  display: block;
  color: #B8B8B8;
  padding-bottom: 5px;
}

.payment_right_section .payment_box {
  background-color: transparent;
  width: 100%;
  border: 0;
  border-bottom: 1px solid #515050;
  box-shadow: none;
  outline: none;
  color: var(--white);
  padding-bottom: 5px;
}

/************************************ end_payment ***************************************/

/************************************ landing ***************************************/
.sign_in_btn {
  padding: 5px 27px;
  background-color: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}

.sign_in_btn:hover {
  color: var(--white);
}

.index_bg {
  width: 100%;
  height: auto;
  background-image: url("../public/img/banner.jpg");
  background-repeat: no-repeat;
  background-size: auto;
  position: relative;
}

.index_bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.index_first_content {
  padding: 250px 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  text-align: center;
}

.index_first_content h3 {
  color: var(--white);
  font-size: 65px;
  text-align: center;
  font-weight: 700;
  line-height: 75px;
  margin-bottom: 50px;
}

.join_now_btn {
  padding: 14px 141px;
  background-color: var(--red);
  color: var(--white);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
}

.join_now_btn:hover {
  color: var(--white);
}

.index_second_content {
  padding: 100px 0;
  background-color: var(--black);
  position: relative;
  z-index: 1;
}

.index_content_text {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.index_left_content {
  flex-grow: 1;
  flex-shrink: 0;
}

.index_left_content h3 {
  font-size: 34px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 26px;
}

.index_left_content h4 {
  font-size: 26px;
  color: #D2D2D2;
  max-width: 426px;
  margin-bottom: 66px;
}

.watch_now_btn {
  padding: 14px 51px;
  background-color: var(--red);
  color: var(--white);
  font-size: 26px;
  text-decoration: none;
  font-weight: 700;
}

.watch_now_btn:hover {
  color: var(--white);
}

.index_right_img {
  text-align: center;
}

.index_right_img img {
  width: 90%;
}

.select-dropdown {
  position: relative;
  display: inline-block;
  max-width: 100%;
  z-index: 10;
}

.slider_content {
  position: absolute;
  top: 80px;
  z-index: 20;
  display: flex;
  align-items: center;
}

.label h4 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin: 0 18px 0 0;
}

.slider_content .select-dropdown__button {
  padding: 10px 35px 10px 20px;
  background-color: transparent;
  color: #616161;
  border: 1px solid #fff;
  border-radius: 3px;
  cursor: pointer;
  width: auto;
  text-align: left;
}

.select-dropdown .series_drop_icon_main {
  width: 10px;
  position: absolute;
  right: 14px;
  z-index: 5;
  top: 21px;
}

.select-dropdown span {
  color: var(--white);
}

.select-dropdown__button::focus {
  outline: none;
}

.select-dropdown__button .zmdi-chevron-down {
  position: absolute;
  right: 10px;
  top: 12px;
}

.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 0;
  pointer-events: none;
  transform-origin: top left;
  transform: scale(1, 0);
  transition: all ease-in-out 0.3s;
  z-index: 2;
}

.select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1, 1);
}

.select-dropdown__list-item {
  display: block;
  list-style-type: none;
  padding: 10px 15px;
  background: #000;
  border: 1px solid #fff;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: #fff;
  transition: all ease-in-out 0.3s;
}

.select-dropdown__list-item a {
  text-decoration: none;
  color: #ffffff;
}

.landing_login_logo {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 19px 60px;
}

.sign_in_btn {
  padding: 8px 32px;
}

/************************************ end_landing ***************************************/

/************************************ mobile_menu ***************************************/
.menu_close {
  width: 30px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}

.mobile_menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 300px;
  background-color: var(--black);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: all .5s;
}

.mobile_menu ul {
  padding: 50px 0;
  margin: 0;
}

.mobile_menu ul li {
  padding: 10px 20px;
  border-bottom: 1px solid #2c2c2c
}

.mobile_menu ul li a {
  text-decoration: none;
  color: var(--white);
}

.generwise {
  padding-top: 100px;
}

/************************************ end_mobile_menu ***************************************/

.animation_section {
  padding: 390px 0 290px 100px;
  position: relative;
  z-index: 10;
}

.title_animation {
  width: 500px;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 5px;
  animation: title_shimmer 3s;
  animation-iteration-count: infinite;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1000px 100%;
}

@keyframes title_shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

.text_animation {
  width: 750px;
  padding: 15px;
  margin-bottom: 40px;
  border-radius: 5px;
  animation: text_shimmer 3s;
  animation-iteration-count: infinite;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1000px 100%;
}

@keyframes text_shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

.btn_animation {
  display: flex;
}

.sm_animate {
  width: 140px;
  height: 53px;
  border-radius: 5px;
  animation: sm_shimmer 3s;
  animation-iteration-count: infinite;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1000px 100%;
  margin: 0 14px 0 0;
}

@keyframes sm_shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}

.lg_animate {
  width: 193px;
  height: 53px;
  border-radius: 5px;
  animation: lg_shimmer 3s;
  animation-iteration-count: infinite;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1000px 100%;
}

@keyframes lg_shimmer {
  from {
    background-position: -1000px 0;
  }

  to {
    background-position: 1000px 0;
  }
}





.shimmer_card {
  width: 166px;
  height: 234px;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.profile_shimmer_card {
  width: 200px;
  height: 200px;
  margin: 0 28px 0 0;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer_two;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 5px;
}

@keyframes shimmer_two {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.subscription_shimmer_card {
  width: 1800px;
  height: 150px;
  padding: 0 30px 20px;
  margin: 0 28px 0 0;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: shimmer_two;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 5px;
}

@keyframes shimmer_two {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.series_episode_list_box_shimmer {
  width: 100%;
  height: 131px;
  /* margin-bottom: 20px; */
  border-bottom: 1px solid #333333;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: series_episode_list_box_shimmer;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 5px;
  padding: 25px 24px 25px 24px;
}

@keyframes series_episode_list_box_shimmer {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}


.error_page {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.error_page h1 {
  font-size: 28px;
  padding-top: 50px;
  color: var(--white);
  font-weight: 700;
}

.error_page img {
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: infinite;
  animation: error 5s linear infinite;
  position: relative;
  transition: all .5s;
}

@keyframes error {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(0);
  }
}



.series_img_shimmer {
  width: 100%;
  height: 521px;
  margin: 0 28px 0 0;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: series_img_shimmer;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 5px;
  /* position: absolute;
  top: 0; */
  z-index: 100;
}

@keyframes series_img_shimmer {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.more_like_shimmer {
  width: 277.53px !important;
  height: 263.39px !important;
  margin: 0 21px 21px 0;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: more_like_shimmer;
  animation-timing-function: linear;
  background: #3a3a3a;
  background-image: linear-gradient(to right, #3a3a3a 0%, #3f3f3f 10%, #4a4a4a 20%, #3f3f3f 30%, #3a3a3a 50%, #3a3a3a 100%);
  background-size: 1200px 100%;
  border-radius: 5px;
}

@keyframes more_like_shimmer {
  0% {
    background-position: -1200px 0;
  }

  100% {
    background-position: 1200px 0;
  }
}

.profile_select_img {
  position: relative;
}

.profile_select_img img {
  min-height: 126px;
  height: 126px;
  object-fit: cover;
}

.select_img {
  width: 85%;
  position: absolute;
  top: 0;
  left: 11px;
  height: 44%;
  object-fit: cover;
}

.react-datepicker-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.otp_screen {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-top: 10px;
}

.otp_screen .input_fild {
  margin: 0 10px 0 0;
  padding-left: 0;
  text-align: center;
}

.resend_code_txt {
  display: block;
  text-align: center;
  color: #6f6f6f;
  text-decoration: none;
  padding: 15px 0 20px;
}

.black_box {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
}

.resend_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.resend__action_btn {
  background-color: transparent;
  color: var(--red);
  border: 0;
  padding: 4px 0;
  margin: 0 5px;
}

.remain_text {
  width: 100%;
}

.remain_text {
  padding: 10px 10px;
}

.active_btn {
  background: transparent;
  color: #fff;
  border: 0;
  padding-bottom: 5px;
  text-decoration: underline;
  cursor: pointer;
}


.privacy_contnt {
  background-color: var(--white);
  padding: 54px 0;
}

.privacy_main_header {
  background-color: var(--black);
}

.privacy_header a {
  text-decoration: none;
  color: #131313;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 40px;
}

.privacy_header a img {
  margin-right: 20px;
}

.privacy_large_text h3 {
  color: #000;
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}

.privacy_content h4 {
  color: #131313;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}

.privacy_content p {
  font-size: 22px;
  color: #131313;
  margin-bottom: 28px;
}

.privacy .fixed .header {
  padding: 19px 0px !important;
}

.sub_content {
  margin-bottom: 50px;
}

.sub_content_header {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
}

.sub_content_header h3 {
  color: var(--red);
  font-weight: 700;
  border-right: 2px solid var(--red);
  display: inline-block;
  padding-right: 15px;
  margin-bottom: 0;
  color: #131313;
}

.sub_content_header img {
  border-right: 2px solid var(--red);
  padding-right: 15px;
  width: 50px;
}

.sub_content_header h4 {
  margin-bottom: 0;
  padding-left: 15px;
}

.profile_menu_two {
  right: 330px !important;
}

.coming_soon_content {
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.coming_soon_img {
  width: 100%;
  max-width: 700px
}

.coming_soon_content h3 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  padding-top: 20px;
}

.pt-100 {
  padding-top: 100px;
}

.data_not_found_img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* padding: 100px 0 250px 0; */
  top: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  transform: translate(0%, -40%);
}

.data_not_found_img_two {
  position: relative !important;
  padding: 100px 0 220px 0 !important;
  top: 0 !important;
  transform: translate(0) !important;
}

.data_not_found_img img {
  width: 200px;
}

.text-red {
  color: var(--red) !important;
}

.close_account h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 20px;
}

.close_account label {
  color: var(--white);
}

.close_account .form-check {
  margin-bottom: 10px;
}

.input_form {
  padding-top: 15px;
}

.input_form label {
  color: var(--white);
  display: block;
}

.password_box {
  width: 400px;
  padding: 10px;
  margin-top: 4px;
  border-radius: 5px;
  outline: none;
  box-shadow: none;
}

.close_acc_btn {
  margin-top: 10px;
  background-color: var(--red);
  color: var(--white);
  border: 0;
  padding: 10px;
  width: 200px;
  font-weight: 600;
  border-radius: 5px;
}

.search_data .nav-pills {
  top: 0;
  position: relative;
  justify-content: center;
  margin-top: 10px;
}

.watchlist_main {
  min-height: 68vh;
  height: auto;
}

.series_right_controller {
  display: none;
}

.premium_icon {
  position: absolute;
  top: 7px;
  left: 7px;
}

.premium_icon img {
  width: 22px !important;
  height: 22px !important;
}

.movie_name_modal .modal-content {
  background-color: #333333;
  border-radius: 10px !important;
}

.movie_name_details {
  padding: 40px 0 30px;
  text-align: center;
}

.movine_name_section {
  padding: 14px 0;
}

.movine_name_section h3 {
  color: var(--white);
  font-weight: 900;
  font-size: 25px;
}

.movine_name_section h4 {
  color: #22BB33;
  font-size: 30px;
  font-weight: 900;
}

.movine_name_section button {
  margin-top: 10px;
  border: 0;
  background-color: var(--white);
  color: var(--black);
  padding: 10px 45px;
  font-size: 18px;
  font-weight: 700;
}

.movie_name_close_modal {
  position: absolute;
  right: 8px;
  top: 5px;
}

.movie_price {
  color: #22BB33;
  font-size: 18px;
  font-weight: 700;
  margin-left: 8px;
  font-size: 18px;
}

.purchase_icon {
  position: relative;
  left: -1px;
}

.purchase_table thead th {
  width: 25%;
}

.purchase_table tbody tr td {
  color: #D2D2D2;
}


.white_bg {
  width: 100%;
  height: 100vh;
  background-color: var(--white);
}

.card-element {
  border-radius: 6px;
  padding: 12px 14px;
  background-color: #f5f8fc;
  border: 1px solid #d3dce7;
  outline: none;
  margin: auto;
}

.pay_btn {
  background-color: var(--red);
  color: var(--white);
  border: 0;
  padding: 8px 30px;
  width: 100%;
  font-weight: 600;
  border-radius: 5px;

}

.card_instructions {
  text-align: left;
  margin: 10px auto;
  color: var(--white);
}

.card_instructions h3 {
  font-weight: 600;
  font-size: 22px;
}

.card_instructions ul li {
  margin-bottom: 5px;
}

.stripe_form {
  padding-top: 14px;
}

.stripe_form h2 {
  color: var(--white);
  padding-bottom: 6px;
  font-size: 25px;
  font-weight: 600;
}

.stripe_header {
  margin-top: 30px;
  background: #2b2b2b;
  padding: 10px 10px;
  border-radius: 5px;
}

.stripe_header h3 {
  color: #c0c0c0;
  margin-bottom: 10px;
  font-size: 18px;
}

.stripe_header h3:last-child {
  margin-bottom: 0;
}

.stripe_header h3 span {
  font-weight: 700;
  color: var(--white);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.loader img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}

.stripe_error_msg {
  font-size: 18px;
}

.status_section {
  width: 100%;
  height: 100%;
}

.status_logo {
  text-align: center;
  padding-top: 50px;
}

.status_logo img {
  width: 200px;
}

.status_body_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.status_body_content h3 {
  font-size: 28px;
  font-weight: 700;
}

.status_body_content .status_green {
  color: #55C642;
}

.status_body_content .status_red {
  color: #E13B36;
}

.status_body_content h4 {
  color: var(--white);
  width: 100%;
  max-width: 100%;
  font-size: 16px;
  margin: auto;
}

.text_large {
  font-size: 20px !important;
}

.video_height,
.jw-video {
  /* height: calc(100vh - 1vh) !important; */
  position: absolute;
  width: 100%;
  height: 100%;
}

.button_with_name {
  position: fixed;
  top: 0;
  left: 0;
  margin-left: 10px;
  margin-top: 10px;
  border: 0;
  padding: 4px 8px;
  font-weight: 600;
  border-radius: 5px;
  width: 60px;
  cursor: pointer;
  display: flex;
  color: var(--white);
  width: 100%;
  align-items: center;
  font-weight: normal;
  font-size: large;
  z-index: 10000;
}

.video_title {
  margin-left: 45px;
  margin-top: 6px;
}

/************************************** new_landing_css ******************************/




/****************** header **********************/
.new_header {
  border-bottom: 1px solid var(--new_border);
  background-color: var(--white);
}

.landing_header_section {
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.landing_header_left_section {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.landing_logo img {
  width: 200px;
}

.landing_menu {
  margin-left: 60px;
}

.landing_menu a {
  text-decoration: none;
  color: var(--header_text);
  font-size: 16px;
  margin: 0 24px 0 0;
  transition: all .5s;
  font-weight: 600;
}

.landing_menu a.active {
  color: var(--primary);
}

.landing_menu a:hover {
  color: var(--primary);
}

.landing_header_right_section {
  display: flex;
  align-items: center;

}

.landing_header_right_section a {
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 8px;
  margin: 0 5px 0 16px;
  font-weight: 600;
}

.common_border_btn {
  border: 1px solid var(--new_border);
  color: var(--primary);
}

.common_fill_btn {
  background-color: var(--primary);
  color: var(--white);
}

.toggle_btn {
  width: 30px;
  display: none;
  cursor: pointer;
}

/****************** end_header **********************/


/****************** mid_section **********************/
.landing_mid_section {
  padding: 60px 0;
  background-color: var(--white);
}

.landing_mid_content {
  text-align: center;
}

.landing_mid_content h3 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.landing_mid_content p {
  margin: 0 auto;
  color: var(--landing_text);
  font-size: 18px;
  width: 100%;
  max-width: 500px;
}

.landing_mid_content a {
  text-decoration: none;
  font-size: 16px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 8px;
  margin: 0 8px;
  min-width: 155px;
  font-weight: 600;
}

.email_filed {
  padding: 10px 10px;
  width: 400px;
  border: 1px solid var(--primary);
  outline: none;
  box-shadow: none;
  border-radius: 8px;
}

.btn_white {
  background-color: var(--black);
  color: var(--white);
  display: inline-block;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  margin-left: 5px;
}

.about_us .about_img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about_main_img{
  background-color: #1a2428;
}
.cust_flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.poster {
  width: 80%;
}

.poster img {
  width: 100%;
  border-radius: 10px;
}

.about_us_content {
  padding: 20px 10px;
}

.about_us_content h3 {
  font-size: 18px;
  color: var(--header_text);
}

.title {
  color: var(--black);
  font-weight: 800;
}

.about_inner_point {
  padding-top: 10px;
}

.about_inner_point li {
  color: var(--header_text);
  margin-bottom: 10px;
  text-align: justify;
}

.contact_link {
  font-weight: 700;
  color: var(--primary);
}

/****************** end_mid_section **********************/

/****************** tv_section **********************/
.tv_section {
  background-color: var(--primary);
  padding: 50px 0;
  margin-top: -8px;
}

.tv {
  text-align: center;
  position: relative;
}

.tv .video {
  width: 100%;
  height: auto;
}

.cap {
  width: auto !important;
  position: absolute;
  top: 0;
  transform: translate(0%, -100%);
}

.square {
  width: auto !important;
  position: absolute;
  left: 20%;
  top: 100%;
}

.cust_d_flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

/****************** end_tv_section **********************/

/****************** landing_footer **********************/
.landing_footer {
  background-color: var(--landing_footer);
  padding: 68px 0 30px;
}

.landing_footer_box p {
  color: var(--landing_text);
  font-size: 16px;
  width: 100%;
  max-width: 360px;
  margin-bottom: 16px;
}

.landing_footer_social {
  margin-top: 8px;
  display: flex;
}

.landing_footer_social a {
  margin: 0 12px 0 0;
}

.footer_hig_text {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.landing_footer_box a {
  display: block;
  text-decoration: none;
  color: var(--landing_text);
  font-size: 16px;
  margin-bottom: 8px;
}

.landing_footer_content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.new_landing_wrapper {
  background-color: var(--white);
}

/****************** end_landing_footer **********************/


/****************** ott_section **********************/
.ott_img img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
}

.ott_details_content {
  padding-top: 80px;
  width: 93.3%;
}

.ott_details_content .accordion-button {
  background-color: var(--black) !important;
  color: var(--white) !important;
  padding: 0 !important;
  font-size: 20px;
}

.ott_details_content .accordion-item {
  border: 0 !important;
}

.ott_details_content .accordion-body {
  background-color: var(--black) !important;
  color: var(--white) !important;
  padding-left: 0;
  font-size: 18px;
}

.ott_details_content .accordion-button:not(.collapsed) {
  box-shadow: none;
}

.ott_details_content .accordion-button:after {
  background-image: url("../public/img/acc_download.svg");
}

.ott_details_content .accordion-button:not(.collapsed)::after {
  background-image: url("../public/img/acc_download.svg");
}

.ott_details_content .accordion-button:focus {
  box-shadow: none !important;
}

.ott_details_content .accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
  border-radius: 0 !important;
}

.ott_logo {
  margin-bottom: 30px;
}

.ott_logo img {
  width: 70px;
  height: 70px;
  border-radius: 100%;
}

.menu_close {
  display: none;
}

.count_number {
  font-weight: 700;
  font-size: 20px;
}

.privacy_box p {
  font-size: 18px;
  color: var(--header_text);
  margin-bottom: 5px;
}

.privacy_box p a {
  color: var(--primary);
  font-weight: 700;
}

.privacy_box {
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #dddddd;
}

.privacy_box ul {
  margin-top: 15px;
}

.privacy_box ul li {
  margin-bottom: 10px;
}

.privacy_box ul li:last-child {
  margin-bottom: 0;
}

.font-bold {
  font-weight: bold;
  color: var(--white);
}

/****************** end_ott_section **********************/

/****************** new_details **********************/
.movie_poster {
  width: 100vw;
  height: 90vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.movie_poster img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
.gradient_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
    pointer-events: none; 
}
.movie_details_content{
  position: absolute;
  bottom: 5%;
  transform: translate(0,-50%);
}
.movie_name{
  color: var(--white);
  font-weight: 600;
  font-size: 60px;
  text-transform: uppercase;
}
.font-18{
  font-size: 18px !important;
}
.cast_crew_section{
  margin: 20px 0;
}
.cast_crew_section h3{
  color: var(--white);
  font-size: 18px;
  font-weight: normal;
  padding-bottom: 15px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.movie_full_description p{
  color: var(--white);
  width: 100%;
  font-size: 16px;
  text-align: justify;
  line-height: 1.8;
}
.background-left{
  background-color: var(--red);
  width: 2px;
  height: 30px;
  margin-right: 10px;
}
.cast_crew_section h3{
  display: flex;
  align-items: center;
}
.movie_buttons{
  margin-top: 25px;
  display: flex;
  align-items: center;
}
.movie_buttons button{
  border: 0;
  padding: 14px 40px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  background-color: var(--white);
  color: var(--black);
  cursor: pointer;
  border: 1px solid #636161;
  border-radius: 8px;
  transition: all .5s;
}

.movie_like_dislike_section .music_small_btn{
  background-color: #ffffff33 !important;
  width: 45px;
  height: 45px;
  border-radius: 100%;
  padding: 5px !important;
}
.new_play_btn{
  width: 20px !important;
  margin-right: 10px;
}
.movie_like_dislike_section .music_small_btn{
  background-color: transparent;
  padding: 0;
}
.movie_like_dislike_section{
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.movie_like_dislike_section .music_small_btn img{
  width: 40px;
}
.movie_details_main_section{
  overflow-x: hidden;
}
.movie_more_content{
  padding: 20px 0;
  background-color: #fff;
}
.movie_new_title{
  color: var(--black);
  font-size: 22px;
  border-left: 2px solid var(--red);
  padding-left: 8px;
  font-weight: 600;
}
.page_scroll{
  position: absolute;
  top: 80%;
  left: 50%;
  cursor: pointer;
}
.page_scroll img{
  width: 50px;
  cursor: pointer;
}
.more_like_section{
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 10px;
}

.more_like_box a{
  text-decoration: none;
}
.more_like_img{
  position: relative;
}
.more_like_img img{
  width: 100%;
  border-radius: 5px;
}
.more_like_content{
  padding-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center
}
.more_like_content img{
  width: 30px;
}
.more_like_content h3{
  color: var(--white);
  font-size: 18px;
  margin: 0;
}
.tv_dropdown{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.tv_dropdown .drop_menu{
  padding: 10px;
  background-color: var(--black);
  color: var(--white);
}
.more_second_section p{
  color: var(--light);
  font-size: 14px;
}
.episode_play{
  background-color: transparent;
  border: 0;
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .5s;
}
.more_like_box:hover .episode_play{
  opacity: 1;
  top: 50%;
}
.episode_play .new_play_btn{
  margin: 0 !important;
}
.more_like_content h4{
  font-size: 16px;
  margin: 0;
  color: var(--landing_footer);
}
.seasion_text{
  color: var(--white);
  font-size: 18px;
  margin-right: 5px;
  display: inline-block;
}
.cast_crew_box{
  border: 1px solid var(--black);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  color: var(--black);
  font-weight: 100;
  font-size: 16px;
  margin: 0 8px 0 0;
}
.genres_list{
  display: inline-block;
  padding: 0 10px;
  border-right: 2px solid var(--black);
  color: var(--black);
  font-size: 16px;
}
.genres_list:last-child{
  border: 0;
}
.movie_full_description{
  margin-bottom: 50px;
}

.movie_full_description .inner_title{
  min-width: 120px;
  font-size: 18px;
  display: block;
}
.red_dot{
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--red);
  display: inline-block;
  margin-left: 3px;
}
.more_second_section img{
  width: 15px;
}
.more_second_section button{
  background-color: transparent;
  border: 0;
  box-shadow: none;
  cursor: pointer;
  width: 30px;
  height: 30px;
  border: 2px solid #3f3f3f;
  border-radius: 100%;
  display: flex;
  justify-content: center;
}
.more_second_section_level{
  justify-content: flex-start !important;
  position: relative;
  background-color: transparent;
  display: flex;
  align-items: center;
  opacity: 1;
}


.chevron {
  position: absolute;
  width: 35px;
  height: 4px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}


@keyframes pulse {
  to {
    opacity: 1;
  }
}
.inner_title{
  color: var(--red);
}
.movie_full_description p{
  color: var(--black);
}
.details_logo {
  position: absolute;
  z-index: 10;
  top: 30px;
  left: 6%;
}
.details_logo img{
  width: 150px;
}
.cust_flex{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.cust_flex h5{
  text-decoration: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 100;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 150px;
  margin: 0;
}
.cust_bottom_size{
  margin-bottom: 30px;
}
.custom_width{
  max-width: 1440px;
  margin: auto;
  padding: 0 20px;
}

.cast_crew_list{
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 10px;
}
.cast_crew_inner_box{
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  cursor: pointer;
}
.cast_crew_inner_box img{
  width: 100%;
  height: 200px;
  filter: grayscale(100%);
  transition: all .5s;
}
.cast_crew_inner_box:hover img{
  filter: grayscale(0%);
} 
.cast_crew_main_section{
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.cast_crew_main_section h3{
  border-bottom: 0;
  margin-bottom: 0;
}
.cast_crew_bio{
  padding: 10px;
}
.cast_crew_bio h2{
  color: #666;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cast_crew_bio span{
  display: block;
  color: #4e4d4d;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 8px;
}
.more_second_section_level .trailer_btn{
  width: auto;
  height: auto;
  padding: 6px 20px;
  border-radius: 6px;
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 14px;
  margin-left: 10px;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--black);
}
.more_second_section_level .trailer_btn img{
  margin-right: 5px;
  width: 16px !important;
  position: relative;
  top: 2px;
}




.sharing .btn-cssbuttons {
  --btn-color: #3d3d3d;
  position: relative;
  padding: 20px 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: white;
  background: none;
  border: none;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-left: 10px;
}

.sharing .btn-cssbuttons::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: var(--btn-color);
  border-radius: 8px;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sharing .btn-cssbuttons span,
.sharing .btn-cssbuttons span span {
  display: inline-flex;
  vertical-align: middle;
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sharing .btn-cssbuttons span {
  transition-delay: 0.05s;
}

.sharing .btn-cssbuttons span:first-child {
  padding-right: 7px;
}

.sharing .btn-cssbuttons span span {
  margin-left: 8px;
  transition-delay: 0.1s;
}

.sharing .btn-cssbuttons ul {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transform: translateY(-50%);
}

.sharing .btn-cssbuttons ul li {
  flex: 1;
}

.sharing .btn-cssbuttons ul li a {
  display: inline-flex;
  vertical-align: middle;
  transform: translateY(55px);
  transition: 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.sharing .btn-cssbuttons ul li a:hover {
  opacity: 0.5;
}

.sharing .btn-cssbuttons:hover::before {
  transform: scale(1.2);
}

.sharing .btn-cssbuttons:hover span,
.sharing .btn-cssbuttons:hover span span {
 transform: translateY(-55px);
}

.sharing .btn-cssbuttons:hover ul li a {
 transform: translateY(0);
}

.sharing .btn-cssbuttons:hover ul li:nth-child(1) a {
 transition-delay: 0.15s;
}

.sharing .btn-cssbuttons:hover ul li:nth-child(2) a {
 transition-delay: 0.2s;
}

.sharing .btn-cssbuttons:hover ul li:nth-child(3) a {
 transition-delay: 0.25s;
}
.sharing ul li a img{
  width: 20px;
}
.custum_width{
  max-width: 1440px;
  margin: auto;
}
.trailer_modal .modal_close{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
}
.trailer_modal .modal_close img{
  width: 35px;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: none !important;
}
.series_description .more_second_section{
  justify-content: flex-start;
  margin-bottom: 10px;
}
.series_description .more_second_section .movie_price{
  margin-bottom: 0;
}

.copy_popup{
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .6);
}
.copy_popup_box{
  padding: 10px 20px;
  background-color: var(--white);
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.copy_popup_box h3{
  margin: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.copy_popup_box .modal_close{
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
}
.copy_popup_box .modal_close img{
  width: 30px;
}
.episode_title{
  display: flex;
  flex-direction: row;
  align-items: center;
}
.episode_title .select_episode{
  padding: 6px 12px;
  background-color: var(--white);
  border: 1px solid var(--black);
  border-radius: 5px;
  margin-left: 10px;
}
.episode_title .select_episode:focus{
  outline: none;
}
.episode_section_list{
  padding: 10px;
  background-color: #f3f3f3;
  border-radius: 5px;
}
.episode_section_list .more_like_img img{
  border-radius: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.episode_section_list .more_second_section{
  position: relative;
  bottom: 0;
  opacity: 1;
  background-color: var(--black);
}
.episode_section_list .more_like_box:hover{
  transform: scale(1);
}
.episode_section_list{
  grid-template-columns: repeat(5, 1fr) !important;
}
.episode_section_list .more_second_section {
    padding: 8px 10px
}
.episode_number{
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background-color: var(--white);
  align-content: center;
  text-align: center;
  border-bottom-left-radius: 40px;
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
}
.cust_flex h6{
  margin: 0;
  color: var(--white);
}
.episode_play_button{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 40px;
  background-color: transparent;
  border: 0;
  opacity: 0;
  display: block;
  transition: all .5s;
}
.episode_play_button img{
  width: 30px;
}
.episode_section_list .more_like_box:hover .episode_play_button{
  opacity: 1;
  top: 50%;
}
.episode_section_list .cust_flex{
  display: block;
}
.episode_section_list .cust_flex h5{
  padding-bottom: 5px;
  font-weight: 600;
  width: 250px;
}
.episode_section_list .cust_flex h6{
  font-size: 14px;
  color: #a7a7a7;
}
/****************** end_new_details **********************/


@media (max-width: 1399.98px) {
  .more_like_section{
    grid-template-columns: repeat(4,1fr);
  }
  .img_content h1 {
    font-size: 70px;
  }

  .main_header {
    padding: 0 50px;
  }

  .profile_menu {
    right: 0px;
    margin-right: 100px !important;
  }

  .index_more_content_first {
    margin-top: -50px;
  }

  .episode_slider {
    padding-bottom: 40px;
  }

  .fixed .header {
    padding: 19px 50px;
  }

  .cust_container {
    padding: 0 70px !important;
  }

  .view_all_section .slick-slider {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 30px;
  }

  .switch_profile_modal .modal_header h3 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .index_first_content {
    padding: 200px 0;
  }

  .index_first_content h3 {
    margin-bottom: 30px;
  }

  .join_now_btn {
    font-size: 22px;
  }

  .index_second_content {
    padding: 80px 0;
  }

  .index_left_content h3 {
    font-size: 28px;
  }

  .index_left_content h4 {
    font-size: 24px;
    margin-bottom: 55px;
  }

  .index_right_img img {
    width: 90%;
  }

  .item_box:hover {
    transform: scale(1.1);
  }

  .owl-stage {
    padding-left: 0 !important;
  }

  .item_img_header ul {
    padding: 5px 0;
  }

  .item_img_header {
    flex-wrap: wrap;
  }

  .profile_menu_two {
    right: 150px !important;
  }


  /************** new_landing *****************/
  .landing_header_section {
    padding: 15px 0;
  }

  .landing_mid_section {
    padding: 30px 0;
  }

  .landing_mid_content h3 {
    font-size: 45px;
  }

  .square {
    left: 10%;
  }


}

@media (max-width: 1199.98px) {
  .login_box {
    padding: 110px 49px;
  }

  .login_logo {
    padding: 19px 20px;
  }

  .slider_common_banner {
    padding: 300px 0;
  }

  .img_content {
    transform: translate(8%, -50%);
  }

  .img_content h1 {
    font-size: 60px;
    margin-bottom: 15px;
  }

  .header_left_content img {
    width: 150px;
  }

  .footer_section {
    padding: 50px 0 20px;
  }

  .footer_section .footer_logo img {
    width: 150px;
  }

  .footer_section .footer_logo p {
    font-size: 16px;
  }

  .series_full_description {
    padding: 16px 24px 30px 24px;
  }

  .series_name h2 {
    font-size: 30px;
    margin-bottom: 0;
  }

  .genres_section {
    margin-bottom: 10px;
  }

  .genres_section h3 {
    font-size: 22px;
  }

  .cust_container {
    padding: 0 60px !important;
  }

  .view_all_section .slick-slider {
    grid-template-columns: repeat(5, 1fr);
    row-gap: 20px;
  }

  .switch_profile_img img {
    width: 90%;
  }

  .switch_profile_title h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .switch_profile_modal .modal-body {
    padding: 20px 16px;
  }

  .switch_profile_modal .modal_header h3 {
    font-size: 34px;
    margin-bottom: 10px;
  }

  .account_setting_title h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .account_setting_left_first_text h4 {
    font-size: 20px;
  }

  .account_setting_left_second_text {
    margin: 20px 0;
  }

  .account_setting_left_first_text {
    width: 300px;
  }

  .account_setting_title h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .change_password_box {
    padding: 30px 30px;
  }

  .billing_left_details {
    padding: 40px 22px;
  }

  .inner_div {
    padding: 0 15px 20px;
  }

  .premium_details {
    flex-direction: column;
    padding-top: 18px;
  }

  .premium_details_box {
    margin-bottom: 10px;
  }

  .index_first_content {
    padding: 180px 0;
    max-width: 700px;
  }

  .index_first_content h3 {
    font-size: 50px;
    line-height: 55px;
  }

  .index_second_content {
    padding: 70px 0;
  }

  .index_left_content h3 {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .index_left_content h4 {
    font-size: 20px;
    margin-bottom: 40px;
  }

  .index_right_img img {
    width: 80%;
  }

  .privacy_large_text h3 {
    font-size: 40px;
    margin-bottom: 20px;
  }

  .privacy_content p {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .sub_content_header img {
    padding-right: 10px;
    width: 40px;
  }

  .privacy_content h4 {
    font-size: 26px;
  }

  .switch_profile_img .action_icon {
    width: 40px !important;
    height: auto !important;
  }

  .account_setting_box {
    flex-direction: column;
    align-items: flex-start;
  }

  .account_setting_left_section {
    flex-direction: column;
  }

  .change_pwd_text a {
    padding-left: 0;
  }

  .account_setting_left_second_text h5:last-child {
    margin-bottom: 0;
  }

  .account_setting_right_section.change_pwd_text a {
    display: block;
  }

  .switch_profile_box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 0;
  }

  .switch_profile {
    overflow: auto;
    height: auto;
    padding: 30px 0;
  }

  .switch_profile_img {
    margin: 0 28px 90px 0;
  }


  /********************** new landing *************************/
  .landing_header_section {
    padding: 15px 20px;
  }

  .landing_logo img {
    width: 180px;
  }

  .landing_menu {
    margin-left: 30px;
  }

  .landing_header_right_section a {
    padding: 8px 30px;
    margin: 0 5px 0 8px;
  }

  .landing_mid_section {
    padding: 20px 0;
  }

  .landing_mid_content h3 {
    font-size: 40px;
  }

  .landing_mid_content p {
    font-size: 16px;
  }

  .square {
    left: 5%;
  }

  .landing_footer {
    padding: 25px 10px;
    margin-top: 20px;
  }


}

@media (max-width: 991.98px) {
  .login_box {
    padding: 80px 49px;
  }

  .slider_common_banner {
    padding: 250px 0;
  }

  .img_content h1 {
    font-size: 50px;
  }

  .img_content p {
    color: var(--white);
    font-size: 20px;
  }

  .play_btn,
  .play_info {
    padding: 8px 28px;
    font-size: 18px;
  }

  .header_left_content img {
    width: 130px;
  }

  .search img {
    width: 20px;
  }

  .header_right_content div {
    margin: 0 0 0 20px;
  }

  .search img {
    width: 20px;
  }

  .header_left_content ul {
    margin: 0 0 0 30px;
    white-space: nowrap;
  }

  .index_more_content_first {
    margin-top: -40px;
  }

  .footer_section {
    padding: 30px 0 10px;
  }

  .footer_section .footer_logo img {
    width: 120px;
  }

  .footer_contant .footer_title h3 {
    font-size: 18px;
  }

  .footer_links ul li a {
    font-size: 16px;
  }

  .sub_footer {
    padding: 20px 0 10px;
  }

  .sub_footer_text p {
    font-size: 16px;
  }

  .series_controller {
    padding: 25px 0 24px 0;
  }

  .switch_profile_img img {
    width: 80%;
  }

  .switch_profile_title h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .switch_profile_img h5 {
    text-decoration: none;
    font-size: 22px;
    margin-top: 10px;
  }

  .switch_profile_box {
    margin-bottom: 60px;
  }

  .manage_profile {
    padding: 8px 55px;
    font-size: 20px;
  }

  .profile_img a img {
    width: 50px;
  }

  .account_setting_left_second_text h5 {
    font-size: 16px;
  }

  .change_password_box {
    padding: 25px 25px;
  }

  .billing_left_details {
    padding: 30px 20px;
  }

  .payment_section {
    flex-direction: column;
  }

  .payment_section {
    height: auto;
    padding-bottom: 50px;
  }

  .index_first_content {
    padding: 150px 0;
    max-width: 550px;
  }

  .index_first_content h3 {
    font-size: 40px;
    line-height: 45px;
  }

  .index_second_content {
    padding: 50px 0;
  }

  .index_left_content h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .watch_now_btn {
    padding: 12px 40px;
    font-size: 20px;
  }

  .switch_profile_img img {
    width: 180px !important;
  }

  .switch_profile_box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .switch_profile_img {
    margin: 0 28px 80px 0;
  }

  .search input[type] {
    width: 200px;
  }

  .privacy_contnt {
    padding: 20px 0;
  }

  .privacy_header a {
    margin-bottom: 20px;
  }

  .privacy_large_text h3 {
    font-size: 35px;
    margin-bottom: 15px;
  }

  .privacy_content p {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .privacy_content h4 {
    font-size: 24px;
  }

  .sub_content {
    margin-bottom: 30px;
  }

  .search_tab {
    position: relative !important;
    margin-top: 10px !important;
    margin-left: 0;
  }

  .search_box {
    width: 100%;
  }

  .profile_shimmer_card {
    margin-bottom: 20px;
  }

  .sticky_btn_section a {
    padding: 14px 30px;
  }

  .cust_d_flex {
    flex-direction: column;
    align-items: center;
  }

  .btn_white {
    margin-left: 0;
    margin-top: 5px;
  }

  .tv_section {
    padding: 20px 0;
  }

  /************************ new landing **********************/
  .landing_menu {
    margin-left: 0 !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 350px;
    transition: all .5s;
    white-space: nowrap;
    height: 100vh;
    background-color: var(--white);
    z-index: 10;
    padding-top: 50px;
  }

  .menu_close {
    display: inline-block;
  }

  .menu_close img {
    width: 30px;
  }

  .landing_menu.open {
    left: 0;
  }

  .landing_menu a {
    display: block;
    padding: 10px;
    border-bottom: 1px solid #e7e7e7;
    margin: 0;
  }

  .toggle_btn {
    display: inline-block;
  }

  .landing_mid_content h3 {
    font-size: 30px;
  }

  .landing_mid_content a {
    min-width: max-content;
    margin: 0 3px;
  }

  .tv img {
    max-width: 600px;
  }

  .cap {
    display: none;
  }

  .square {
    display: none;
  }

  .landing_footer_box a {
    font-size: 14px;
    margin-bottom: 6px;
  }

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

  .footer_hig_text {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .cust_flex {
    flex-direction: column;
  }
  .about_us_content ul {
    padding-left: 1rem
  }
   .more_like_section{
    grid-template-columns: repeat(3,1fr);
  }
  .movie_new_title {
    font-size: 20px;
  }
  .movie_full_description p {
    font-size: 16px;
  }
  .movie_name {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .login_box {
    padding: 50px 49px;
  }

  .login_box_title h3 {
    font-size: 30px;
  }

  .input_box {
    margin-top: 20px;
  }

  .container_check_box,
  .submit_btn {
    margin-bottom: 20px;
  }

  .slider_common_banner {
    padding: 200px 0;
  }

  .img_content h1 {
    font-size: 40px;
  }

  .img_content p {
    max-width: 560px;
    margin-bottom: 30px;
  }

  .header_left_content ul {
    display: none;
  }

  .toggle_icon {
    display: block;
  }

  .profile_menu {
    right: 0px;
  }

  .item_img_details {
    background-color: #1A1A1A;
    padding: 10px 9px
  }

  .episode_title h4 {
    font-size: 20px;
  }

  .item_img_header h5 {
    font-size: 16px;
  }

  .item_img_number h4 {
    font-size: 10px;
  }

  .index_more_content_first {
    margin-top: -50px;
  }

  .carousel-indicators {
    bottom: 10% !important;
  }

  .footer_text {
    flex-wrap: wrap;
  }

  .footer_contant:last-child {
    margin-top: 20px;
  }

  .footer_contant .footer_links {
    padding-top: 0;
  }

  .footer_section .footer_logo img {
    padding-bottom: 10px;
  }

  .sub_footer_text ul li a img {
    width: 30px;
  }

  .select_box .cust_seleted {
    padding: 6px 10px !important;
    width: 180px;
  }

  .watchlist_header {
    padding-bottom: 15px;
  }

  .switch_profile_img h5 {
    font-size: 18px;
    margin-top: 8px;
  }

  .form_group {
    margin-bottom: 14px;
  }

  .account_setting_box {
    flex-wrap: wrap;
  }

  .change_pwd_text a {
    padding-left: 0;
  }

  .account_setting_left_first_text {
    width: 200px;
  }

  .billing_left_details {
    width: 50%;
  }

  .billing_left_details:last-child {
    padding-left: 90px;
  }

  .index_first_content {
    padding: 100px 0;
    max-width: 400px;
  }

  .index_first_content h3 {
    font-size: 30px;
    line-height: 40px;
  }

  .join_now_btn {
    padding: 12px 90px;
    font-size: 18px;
  }

  .index_second_content {
    padding: 30px 0;
  }

  .index_right_img img {
    width: 100%;
  }

  .landing_login_logo {
    padding: 10px 20px;
  }

  .landing_login_logo img {
    width: 150px;
  }

  .index_content_text {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .index_left_content h4 {
    margin-bottom: 20px;
  }

  .index_right_img {
    margin-top: 20px;
  }

  .mobile_menu {
    display: block;
  }

  .search img {
    width: 17px;
  }

  .watchlist .nav-pills .nav-link {
    padding: 8px;
    font-size: 14px;
  }

  .watchlist_header {
    margin-bottom: 20px;
    padding-bottom: 0;
  }

  .watchlist .nav-pills {
    justify-content: flex-end;
  }

  .search .nav-pills .nav-link {
    margin: 0 5px 0 0;
  }

  .view_all_section .slick-slider {
    margin-top: 20px;
  }

  .search_box {
    width: 100%;
  }

  .main_header {
    padding: 0 10px;
  }

  .cust_container {
    padding: 0 20px !important;
  }

  .watchlist {
    flex-wrap: wrap;
  }

  /* .watchlist .nav-pills{
    margin-right: 0;
  } */

  .watchlist .nav-pills {
    margin-right: 0;
  }

  .sticky_btn_section a {
    padding: 12px 20px;
    font-size: 14px;
    text-transform: capitalize;
  }
  .more_like_section{
    grid-template-columns: repeat(2,1fr);
  }
 
}

@media (max-width: 575.98px) {
  .login_logo .logo img {
    width: 150px;
  }

  .login_box {
    max-width: 310px;
    padding: 30px 20px;
  }

  .login_box_title h3 {
    font-size: 26px;
  }

  .input_box .input_fild {
    height: 45px;
  }

  .submit_btn {
    padding: 6px;
    font-size: 18px;
  }

  .input_box .input_fild {
    margin-bottom: 10px;
  }

  .index_first_content {
    padding: 80px 0;
  }

  .slider_common_banner {
    padding: 200px 0
  }

  .img_content h1 {
    font-size: 35px;
    margin-bottom: 5px;
  }

  .img_content p {
    color: var(--white);
    font-size: 16px;
  }

  .play_btn,
  .play_info {
    padding: 8px 24px;
    font-size: 16px;
  }

  .btn_img img {
    width: 19px !important;
    height: 19px !important;
  }

  .main_header {
    padding: 0;
  }

  .profile_menu {
    right: 0px;
    top: 70px !important;
    margin-right: 90px !important;
  }

  .episode_slider {
    padding-bottom: 20px;
  }

  .footer_section {
    padding: 20px 0 10px;
  }

  .footer_contant .footer_title h3 {
    font-size: 16px;
  }

  .footer_links ul li {
    margin-bottom: 5px;
  }

  .footer_links ul li a {
    font-size: 14px;
  }

  .sub_footer {
    padding: 10px 0 10px;
  }

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

  .sub_footer_text ul li a img {
    width: 26px;
  }

  .footer_text {
    padding-bottom: 0;
  }

  .arrow {
    display: none;
  }

  .series_modal .series_img .series_big_imf {
    width: 100%;
    height: 300px;
  }

  .series_full_description {
    padding: 10px 12px 10px 12px;
  }

  .series_details_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .series_episode_details {
    margin-top: 20px;
  }

  .series_episode_list_box_details {
    flex-direction: column;
    align-items: flex-start;
  }

  .series_episode_list_box_details .episode_img {
    margin-bottom: 10px;
  }

  .series_episode_list_box {
    padding: 12px 24px 0px 10px;
  }

  .series_episode_list_box_description {
    margin-left: 0;
  }

  .fixed .header {
    padding: 19px 30px;
  }

  .genres_section {
    margin-top: 30px;
  }

  .genres_section h3 {
    font-size: 18px;
  }

  .select_box .cust_seleted {
    width: 140px;
  }

  .cust_container {
    padding: 0 10px !important;
  }

  .view_all_section .slick-slider {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }

  .switch_profile_box {
    margin-bottom: 20px;
  }

  .account_setting_left_first_text h4 {
    font-size: 18px;
  }

  .account_setting_left_second_text h5 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .profile_img a img {
    width: 40px;
  }

  .account_setting_left_section {
    flex-direction: column;
  }

  .change_pwd_text a {
    padding: 0 !important;
  }

  .account_setting_box {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .change_password_box {
    padding: 20px 20px;
  }

  .account_setting_title h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .back_arrow {
    width: 40px;
    padding-right: 5px;
  }

  .account_setting_title {
    padding-top: 10px;
  }

  .billing_details {
    flex-direction: column;
  }

  .billing_left_details h4 {
    font-size: 16px;
  }

  .billing_left_details {
    padding: 20px 20px 23px;
  }

  .billing_left_details:last-child {
    padding: 12px 20px 17px;
  }

  .billing_left_details::after {
    bottom: 10%;
    right: 0;
    width: 100%;
    height: 1%;
    top: inherit;
  }

  .billing_left_details {
    width: 100%;
  }

  .billing_left_details h5 {
    font-size: 14px;
  }

  .account_setting_table thead tr th {
    font-size: 16px;
  }

  .account_setting_table tbody tr th,
  td {
    font-size: 12px;
  }

  .account_setting_table thead tr th {
    font-size: 16px;
  }

  .premium_header_left h4 {
    font-size: 18px;
  }

  .premium_details_box h5 {
    font-size: 14px;
  }

  .plan_btn a {
    padding: 10px 28px;
    font-size: 14px;
    margin: 0 6px 0 0;
  }

  .plan_btn {
    margin-top: 20px;
  }

  .pay_now {
    margin-top: 10px;
    font-size: 20px;
    padding: 5px 0;
  }

  .payment_right_section [data='input-focus'] input~label,
  .change_plan {
    font-size: 14px;
  }

  .payment_right_section [data='input-focus'] input:focus~label,
  [data='input-focus'] input:valid~label {
    top: -18px;
    font-size: 14px;
  }

  .index_first_content {
    padding: 60px 0;
  }

  .index_first_content h3 {
    font-size: 28px;
    line-height: 34px;
  }

  .index_second_content {
    padding: 20px 0;
  }

  .index_left_content h3 {
    font-size: 22px;
  }

  .index_left_content h4 {
    font-size: 18px;
  }

  .watch_now_btn {
    font-size: 18px;
  }

  .switch_profile_img img {
    width: 150px !important;
    height: 150px !important;
  }

  .search input[type] {
    width: 160px;
  }

  .privacy_header a {
    margin-bottom: 10px;
  }

  .privacy_large_text h3 {
    font-size: 30px;
    margin-bottom: 10px;
  }

  .privacy_content h4 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .privacy_content p {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .privacy_content h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .profile_menu_two {
    right: 30px !important;
  }

  .header_right_content div {
    margin: 0 2px;
  }

  .watchlist {
    flex-wrap: wrap;
  }

  .search_box {
    width: 100%;
    margin-bottom: 5px;
  }

  .watchlist .nav-pills {
    justify-content: center;
  }

  .sticky_btn_section a {
    padding: 8px 10px;
    margin: 0 5px 0 0;
    font-size: 12px;
  }

  .sticky_btn_section {
    width: 70%;
    text-align: center;
  }





  /********************** new landing ************************/

  .landing_logo img {
    width: 150px;
  }

  .landing_header_right_section a {
    font-size: 14px;
    border-radius: 5px;
    padding: 8px 10px;
  }

  .landing_mid_content h3 {
    font-size: 28px;
  }

  .landing_mid_content h3 {
    font-size: 22px;
  }

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

  .tv img {
    max-width: 400px;
  }

  .privacy_box {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .more_like_section{
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 425.98px) {
  .slider_common_banner {
    padding: 150px 0;
  }

  .img_content {
    transform: translate(3%, -50%);
  }

  .img_content h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }

  .img_content p {
    color: var(--white);
    font-size: 14px;
  }

  .img_content p {
    max-width: 560px;
    margin-bottom: 15px;
  }

  .main_header {
    padding: 0;
  }

  .fixed .header {
    padding: 15px 0px !important;
  }

  .item_description p {
    font-size: 10px;
  }

  .carousel-indicators {
    bottom: 5% !important;
  }

  .index_more_content_first {
    margin-top: 20px;
  }

  .footer_text {
    flex-direction: column;
  }

  .footer_contant {
    margin-top: 10px;
  }

  .footer_contant:last-child {
    margin: 0;
  }

  .sub_footer_text {
    flex-direction: column;
  }

  .sub_footer_text p {
    margin-bottom: 10px;
  }

  .fixed .header {
    padding: 19px 20px;
  }

  .genres_section {
    margin-top: 0px;
  }

  .watchlist {
    padding-top: 80px;
  }

  .profile_icon_action img {
    width: 30px !important;
  }

  .switch_profile_title h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .switch_profile_modal .modal-body {
    padding: 12px 12px;
  }

  .profile_select_img {
    margin-bottom: 20px;
  }

  .switch_profile_modal .modal_header h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .account_setting_right_section a {
    padding: 9px 28px;
    font-size: 16px;
  }

  .switch_profile_box {
    grid-template-columns: repeat(2, 1fr);
  }

  .switch_profile_img img {
    width: 120px !important;
    height: 120px !important;
  }

  .search input[type] {
    width: 70px;
  }

  .header_left_content img {
    width: 120px;
  }

  .search input[type]::placeholder {
    font-size: 14px !important;
  }

  .sub_content_header h4 {
    margin-bottom: 0;
  }

  .sub_content_header img {
    width: 35px;
  }

  .slider_section::after {
    background: none;
  }

  .watchlist .nav-pills {
    margin-right: 0;
    margin-top: 80px;
  }

  .switch_profile_img {
    margin-bottom: 65px;
  }

  .result_text {
    font-size: 18px;
  }

  .data_not_found_img img {
    width: 150px;
  }

  .profile_shimmer_card {
    width: 150px;
    height: 150px;
  }

  .sticky_btn_section {
    width: 62%;
    text-align: center;
    bottom: 0px;
  }

  .landing_header_section {
    padding: 10px 5px;
  }
  .email_filed{
    width: 350px;
  }
  .font-bold{
    margin-bottom: 5px !important;
  }
}