html,
body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-regular);
  color: var(--bg-font-color);
  background-color: var(--bg-color);
  scroll-behavior: smooth;
}

#title {
  text-align: center;
  font-size: 48px;
  font-family: var(--font-regular);
  color: var(--bg-font-color);
  padding: 2% 5px 0%;
  font-weight: bold;
}

#sub-title {
  text-align: center;
  font-size: 28px;
  color: var(--bg-font-color);
  font-family: var(--font-regular);
  padding: 1% 5px;
}

#pay-detail {
  font-size: 18px;
  text-align: center;
  padding: 0% 5px;
}

#trail-day {
  text-align: center;
  font-size: 28px;
  padding: 3% 5px 1%;
}

.social-head {
  display: flex;
  color: var(--bg-color);
  flex-direction: column;
  align-items: center;
  padding: 0% 5px 1%;
}

.social-head img {
  position: absolute;
  left: 50px;
}

.social-head button {
  min-width: 250px;
  font-size: 16px;
  padding: 10px 0px;
  margin: 10px 0px;
  position: relative;
  background-color: var(--bg-font-color);
  border-radius: 0px !important;
}

.social-head #sign-btn {
  padding: 5% 5px;
}

#signin-option {
  font-size: 16px;
  padding: 1% 5px;
}

#signin-option button {
  min-width: 250px;
  font-size: 18px;
  padding: 10px 0px;
  margin: 10px 0px;
  position: relative;
}

#signin-option .mail-btn {
  display: flex;
  justify-content: center;
  padding: 10px 50px;
  align-items: center;
  position: relative;
  border-radius: 1px;
  border: none;
  color: var(--bg-font-color);
}

#signin-option .mail-btn img {
  position: absolute;
  left: 50px;
}

#signin-option {
  padding: 0.5% 0%;
  font-size: 14px;
  min-width: 250px;
  display: flex;
  justify-content: space-evenly;
}

#signup-option {
  margin: 20px 0px 25px;
}

#home-bg {
  background-size: cover;
  background-repeat: no-repeat;
  color: var(--bg-font-color);
  text-align: center;
  min-height: 100vh;
}

.d-col {
  flex-direction: column;
}

.align-icon {
  align-items: center;
}

.d-flex {
  display: flex;
}

.center-item {
  align-items: center;
  justify-content: center;
}

.line {
  display: inline-block;
  height: 1px;
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 0;
  min-width: 98px;
  min-width: none;
}

#or {
  padding: 0px 8px;
  font-size: 14px;
}

#header-logo {
  height: 70px;
  width: 132px;
}

#header {
  display: flex;
  padding: 3% 0px 1%;
  justify-content: center;
}

.movie-images {
  /* height: 600px; */
  margin: 20px auto;
}

.movie-box {
  padding-right: 90px;
}

.movies-title {
  font-size: 55px;
  font-weight: bold;
}

.movies-subtitle {
  font-size: 24px;
}

.image-gallery {
  margin: 95px auto;
  width: 554px;
  position: relative;
}

.image-container {
  width: 554px;
  height: auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}

.scroll-arrow {
  width: 35px;
  height: 24px;
}

.thumbnails {
  width: 100%;
  display: flex;
  margin-top: 8px;
}

.thumbnails label {
  display: inline-block;
  width: 150px;
  height: 67px;
  background-size: cover;
  margin: 0;
  flex: 1 1 150px;
  cursor: pointer;
  max-width: 120px;
}

.image-1,
.image-2,
.image-3,
.image-4,
.image-5 {
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: all 1.2s ease-out;
}

/* .image-1,
.thumbnails label[for="image1"] {
    background-image: url(../assets/movie1-big.png);
}

.image-2,
.thumbnails label[for="image2"] {
    background-image: url(../assets/movie2-big.png);
}

.image-3,
.thumbnails label[for="image3"] {
    background-image: url(../assets/movie3-big.png);
}

.image-4,
.thumbnails label[for="image4"] {
    background-image: url(../assets/movie4-big.png);
}

.image-5,
.thumbnails label[for="image5"] {
    background-image: url(../assets/movie5-big.png);
} */

#image1:checked + .image-1,
#image2:checked + .image-2,
#image3:checked + .image-3,
#image4:checked + .image-4,
#image5:checked + .image-5 {
  opacity: 1;
}

.image-gallery input[type=radio] {
  position: absolute;
  top: 370px;
  z-index: 100;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: #00000033;
  height: 16px;
  width: 16px;
  border: 3px solid #f1f1f1;
  border-radius: 16px;
  cursor: pointer;
  outline: none;
  box-shadow: 0px 1px 4px #00000088;
  display: none;
}

.image-gallery input[type=radio]:hover {
  background-color: #f7f7f780;
}

.image-gallery input[type=radio]:checked {
  background-color: #f1f1f1;
}

.image-gallery input[type=radio]:nth-of-type(1) {
  left: 50%;
  margin-left: -36px;
}

.image-gallery input[type=radio]:nth-of-type(2) {
  left: 50%;
  margin-left: -12px;
}

.image-gallery input[type=radio]:nth-of-type(3) {
  left: 50%;
  margin-left: 12px;
}

.image-gallery input[type=radio]:nth-of-type(4) {
  left: 50%;
  margin-left: 36px;
}

.image-gallery label.prev,
.image-gallery label.next {
  position: absolute;
  top: 50%;
  z-index: 100;
  color: #f1f1f1;
  text-shadow: 0px 1px 4px #00000088;
  font-family: "Georgia", "Apple Symbols", serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.image-gallery:hover label.prev,
.image-gallery:hover label.next {
  opacity: 1;
}

.image-gallery label.prev {
  left: 10px;
}

.image-gallery label.next {
  right: 10px;
}

.image-gallery label.prev:hover,
.image-gallery label.next:hover {
  margin-top: -22px;
  text-shadow: 0px 3px 4px #00000088;
}

.videos-block {
  width: 550px;
  height: 412px;
  margin: 118px auto;
  mix-blend-mode: lighten;
  filter: saturate(1.2);
}

.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.img-fill img {
  height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}

/* Slider Theme Style */

.ProductBlock {
  padding: 0 7.5px;
}

#movies-carousel .ProductBlock .img-fill,
#recent-carousel .ProductBlock .img-fill {
  height: 200px;
}

#channels-carousel .ProductBlock .img-fill {
  height: 307px !important;
}

.video-desc {
  padding-left: 90px;
  text-align: right;
  padding-right: 0px;
}

.movies-slider {
  margin: 20px auto 0px auto;
  background-color: #171718;
  padding: 65px 0px;
}

.tile-section {
  padding: 75px 0px;
}

.tiles {
  text-align: center;
}

.tiles img {
  margin-bottom: 45px;
  height: 147px;
}

.tiles h3 {
  margin-bottom: 0px;
  font-size: 1.5rem;
}

/* accordion start */

details {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #171718 0% 0% no-repeat padding-box;
  border: 1px solid #FAFAFB;
  opacity: 1;
}

summary {
  font-size: 16px;
  /* font-weight: bold; */
  color: var(--bg-font-color);
  cursor: pointer;
  position: relative;
  outline: none;
}

/* 
summary::after {
    content: url(../assets/faq-open.svg);
    background: transparent;
    border-radius: 0.25rem;
    padding: 0.5rem;
    position: absolute;
    right: 0.25rem;
    top: -0.9rem;
    width: 36px;
    height: 36px;
} */

details[open] {
  background: transparent;
}

details p {
  font-size: 13px;
}

/* 
details[open] summary::after {
    content: url(../assets/close-icon.svg)
} */

/*** End specific styles ***/

.faq-accordion {
  background: rgba(255, 255, 255, 0.02);
  padding: 56px 0px;
}

details summary::-webkit-details-marker {
  display: none;
}

.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: 0.25s ease;
}

.read-more-wrap,
.read-more-trigger {
  font-size: 12px;
  color: var(--secondary-font-color);
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: "Read more...";
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: " Read less...";
}

.read-more-trigger {
  font-weight: bold;
  cursor: pointer;
}

.description-section {
  text-align: justify;
  padding: 70px 0px;
  background: rgba(255, 255, 255, 0.02);
}

footer {
  background: #ffffff;
  padding: 103px 0px;
}

.footer-list {
  list-style: none;
  padding-left: 0px;
}

.footer-list li a {
  text-decoration: none;
  color: var(--secondary-font-color);
  font-size: 14px;
  line-height: 40px;
}

.language-btn {
  width: 160px;
  color: var(--bg-font-color);
  background-color: transparent;
  border-color: var(--bg-font-color);
  border-radius: 0px;
  transition: 200ms transform;
}

/* .btn:hover {
    color: var(--bg-font-color);
} */

.dropdown-item {
  color: var(--bg-font-color) !important;
}

.dropdown-menu {
  background-color: #171718;
  border: 1px solid white;
  border-radius: 0px !important;
}

.social-icons {
  margin-right: 28px;
}

.lang-dropdown {
  text-align: center;
  margin-top: auto;
  margin-bottom: 33px;
}

/* OWL CAROUSEL */

.col-sm-12 {
  width: 120%;
}

.testimonials {
  position: relative;
  padding-top: 46px;
  background-color: rgba(255, 255, 255, 0.02);
  margin-top: 16px;
}

#popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item {
  width: 384px;
}

/* #live-channels-slider .owl-stage-outer .owl-stage {
    width: 7148px !important;
}

#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 460px !important;
    height: 326px !important;
    margin-right: 15px !important;
}

#live-channels-slider .owl-stage-outer .owl-stage .owl-item img {
    height: 326px !important;
} */

#popular-slider .item-details,
#recent-cards .item-details,
#live-channels-slider .item-details {
  background-color: #333333;
  color: #fff;
  padding: 20px 10px;
  text-align: left;
}

#popular-slider .item-details p,
#recent-cards .item-details p,
#live-channels-slider .item-details p {
  font-size: 14px;
}

.item-details h5 {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 18px;
}

.item-details h5 span {
  color: red;
  float: right;
  padding-right: 20px;
}

#popular-slider .item,
#recent-cards .item,
#live-channels-slider .item {
  text-align: center;
  margin-bottom: 80px;
}

.owl-carousel .owl-nav {
  transition: all 0.3s ease;
}

.owl-carousel {
  position: relative;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  position: absolute;
  top: 30%;
  font-size: 20px;
  color: #fff;
  /* border: 1px solid #ddd; */
  text-align: center;
}

.owl-carousel .owl-prev {
  right: 235px;
  position: absolute;
  top: -61px;
}

.owl-carousel .owl-nav .disabled:hover {
  background-color: transparent;
}

.owl-carousel .owl-nav .disabled {
  opacity: 0.3 !important;
}

.owl-carousel .owl-next {
  right: 208px;
  position: absolute;
  top: -61px;
}

.owl-row {
  margin-right: -223px !important;
}

.download-btns {
  padding-left: 0px !important;
}
@charset "UTF-8";
:root {
  --font-bold: "Tv2z-Bold";
  --font-regular: "Tv2z-Regular";
  --font-medium: "Tv2z-Medium";
  --font-light: "Tv2z-Light";
  --font-semi-bold: "Tv2z-SemiBold";
  --card-width: 248px;
  --auth-card-width: 544px;
  --auth-card-height: 380x;
  --card-pad: 0px 20px;
  --max-mobile-width: 750px;
  --live-page-height: 602px;
  --churn-btn-height:40px;
  --border-radius: 4px;
  --brand-primary-color: #3377ff;
  --bg-page: #f1f4f8;
  --card-bg: var(--card-color);
  --black-sec-rgb: var(--card-color);
  --view-all-card: var(--secondary-btn-color);
  --error-color: #df2d20;
  --header-gradient: linear-gradient(180deg, rgba(241, 244, 248, 0.85) 0%, rgba(241, 244, 248, 0.84265) 6.67%, rgba(241, 244, 248, 0.819817) 13.33%, rgba(241, 244, 248, 0.780589) 20%, rgba(241, 244, 248, 0.7247) 26.67%, rgba(241, 244, 248, 0.652991) 33.33%, rgba(241, 244, 248, 0.567899) 40%, rgba(241, 244, 248, 0.473712) 46.67%, rgba(241, 244, 248, 0.376288) 53.33%, rgba(241, 244, 248, 0.282101) 60%, rgba(241, 244, 248, 0.197009) 66.67%, rgba(241, 244, 248, 0.1253) 73.33%, rgba(241, 244, 248, 0.0694109) 80%, rgba(241, 244, 248, 0.0301835) 86.67%, rgba(241, 244, 248, 0.00735012) 93.33%, rgba(241, 244, 248, 0) 100%);
  --details-gradient: linear-gradient(0deg, rgba(241, 244, 248, 0.4), rgba(241, 244, 248, 0.4)), linear-gradient(180deg, rgba(241, 244, 248, 0) 18.98%, var(--content-gradient) 100%);
  --home-bg-gradient: linear-gradient(0deg, rgba(241, 244, 248, .2), rgba(241, 244, 248, .2));
  --content-detail-gradient: linear-gradient(90deg, var(--content-gradient) -13.31%, rgba( 241, 244, 248, 0.8) 43.35%, rgba(241, 244, 248, 0) 100%);
  --content-detail-banner-bg: linear-gradient(90deg, var(--content-gradient) -13.31%, rgba( 241, 244, 248, 0.8) 43.35%, rgba(241, 244, 248, 0) 100%),
  linear-gradient(180deg, rgba(241, 244, 248, 0) 60.07%, var(--content-gradient) 99.99%);
  --main-pagbackground: linear-gradient(360deg, rgba(241, 244, 248, 0.4) 18.67%, rgba(241, 244, 248, 0.9) 100%);
  --carousel-prev-gradient: linear-gradient(90deg, rgba( 241, 244, 248, 1) 20%, rgba( 241, 244, 248, 0) 100%);
  --carousel-next-gradient: linear-gradient(270deg, rgba( 241, 244, 248, 1) 20%, rgba( 241, 244, 248, 0) 100%);
  --video-banner-overlay: linear-gradient(180deg, rgba(241, 244, 248, 0) 63.49%, rgba(241, 244, 248, 0.9) 85.85%),
  linear-gradient(0deg, rgba(241, 244, 248, 0.2), rgba(241, 244, 248, 0.2));
  --series-gradient-bg: linear-gradient(180.38deg, rgba(241, 244, 248, 0.1) 49.89%, var(--content-gradient) 99.77%);
  --loader-progress-bg: linear-gradient(90deg, rgba(241, 244, 248, 0), rgba(241, 244, 248, .6), rgba(241, 244, 248, 0));
  --primary-black: rgb(0,0,0);
  /* #000000; */
  --uk-notification-bg: #7cb342;
  --plan-offer-color: #3377ff;
  --calculated-banner-height: calc($window-inner-height * 0.70);
  --calculated-banner-info-width: calc($window-inner-width * (2 / 3));
  --primary-font-color-on-lbg:#001133;
  --primary-font-color-on-dbg:#e5eeff;
  --secondary-font-color:#7c7e83;
  --primary-btn-color:#3377ff;
  --secondary-btn-color:rgba(119, 142, 187, 0.3);
  --selected-btn-color:rgba(51, 119, 255, 0.3);
  --unfocused-stroke-color:#bbc6dd;
  --focused-stroke-color:#3377ff;
  --card-overlay:rgba(25, 42, 77, 0.4);
  --overlay-color:rgba(13, 14, 18, 0.8);
  --card-color:#333a48;
  --menu-color:#f1f4f8;
  --tvod-bg-color: #333a48;
  --tvod-text-color: #ffd500;
  --tvod-btn-text-color: #333333;
  --tvod-gradient-a-color: #ffda24;
  --tvod-gradient-b-color: #b29401;
  --content-gradient:#f1f4f8;
  --tags-color-on-dbg:rgba(204, 221, 255, 0.3);
  --content-card-placeholder-color:#b8bec6;
  --seekbar-base-color:rgba(51, 58, 72, 0.4);
  --seekbar-progress-color:#3377ff;
  --card-shadow:gray;
  --player-gradient:#262626;
  --primary-btn-text-color: black;
}
html,
body {
  --button-color: var(--primary-btn-color);
  --bg-btn-color: var(--primary-btn-color);
  /*linear-gradient(149deg, #32B2BC 30.9%, #14282A 148.64%);*/
  --secondary-white: var(--secondary-font-color);
  /*#FAFAFB;*/
  --home-bg-gradient: linear-gradient(0deg, rgba(5, 5, 5, .2), rgba(5, 5, 5, .2));
  --bg-font-color: var(--primary-font-color-on-lbg);
  --bg-color: #121213;
  --block-color: #32B2BC;
  --subtext-font-color: var(--secondary-font-color);
  --bg-color-subsection: #0E1E23;
  --where-to-watch-bg-color: var(--card-bg);
  --join-bg-color:#31d0d84d;
  --join-border-color:#32B2BC;
  --series-test-color: #FFFFFF;
  --font-color: #FFFFFF;
  --card-border: #4D4D4D;
  --button-font-color: #fff;
  --special-font-color: #00BE08;
  --plans-button-color: var(--primary-btn-color);
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  --banner-pipe: #FFFFFF;
  overflow-x: hidden;
}
body {
  font-family: var(--font-regular);
  color: var(--primary-font-color-on-lbg);
  background-color: var(--bg-page);
  scroll-behavior: smooth;
}
#title {
  text-align: center;
  font-size: 48px;
  font-family: var(--font-regular);
  color: var(--primary-font-color-on-lbg);
  padding: 1% 5px 0%;
  font-weight: bold;
}
#sub-title {
  text-align: center;
  font-size: 28px;
  color: var(--primary-font-color-on-lbg);
  font-family: var(--font-regular);
  padding: 1% 5px;
  font-weight: 400;
}
#pay-detail {
  font-size: 18px;
  text-align: center;
  padding: 0% 5px;
}
#trail-day {
  text-align: center;
  font-size: 28px;
  padding: 3% 5px 1%;
}
.social-head {
  display: flex;
  color: var(--bg-color);
  flex-direction: column;
  align-items: center;
  padding: 0% 5px 0%;
}
.social-head img {
  position: absolute;
  left: 24px;
  top: 10px;
}
.signup-social-head img {
  position: absolute;
  left: 75px !important;
  top: 10px !important;
}
.social-head span,
#signin-option .mail-btn span {
  width: 68px;
  height: 24px;
  position: relative;
  top: 2px;
  left: 15px;
}
.social-head button {
  width: 140px;
  font-size: 16px;
  font-weight: 700;
  height: 48px;
  position: relative;
  background-color: var(--primary-font-color-on-lbg);
  color: #000;
  display: flex;
  justify-content: center;
  font-family: var(--font-regular);
  border-radius: 4px;
}
.signup-social-head button {
  min-width: 239.5px !important;
  font-size: 14px !important;
  height: 40px !important;
  padding: 10px 0 !important;
  margin: 5px 0 !important;
  position: relative !important;
  background-color: var(--bg-font-color) !important;
  border-radius: 0 !important;
  color: #8f8f8f !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-regular) !important;
}
.social-head button .fbcls {
  background: #1A77F2;
}
.social-head #sign-btn {
  padding: 5% 5px;
}
#signin-option {
  font-size: 16px;
  padding: 1% 5px;
}
#signin-option button {
  min-width: 239.5px;
  font-size: 18px;
  padding: 10px 0px;
  margin: 5px 0px 10px 0px;
  position: relative;
  height: 40px;
}
#signin-option .mail-btn {
  display: flex;
  justify-content: center;
  padding: 10px 50px;
  align-items: center;
  position: relative;
  border-radius: 1px;
  border: none;
  color: var(--primary-font-color-on-lbg);
  font-size: 14px;
}
#signin-option .mail-btn:hover {
  opacity: 0.7;
}
#signin-option .mail-btn img {
  position: absolute;
  left: 75px;
}
#signin-option {
  padding: 0% 0%;
  font-size: 14px;
  min-width: 250px;
  display: flex;
  justify-content: space-evenly;
  font-weight: 300;
}
#signup-btn {
  font-weight: 500;
  cursor: pointer;
}
#signup-option {
  margin: 5px 0px 10px;
}
#home-bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  color: var(--primary-font-color-on-lbg);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.d-col {
  flex-direction: column;
}
.align-icon {
  align-items: center;
}
.d-flex {
  display: flex;
}
.center-item {
  align-items: center;
  justify-content: center;
  /* opacity: 0.6; */
}
.line {
  display: inline-block;
  height: 1px;
  border: 0;
  border-bottom: 1px solid #ccc;
  padding: 0;
  min-width: 106px;
  min-width: none;
  opacity: 0.6;
}
#or {
  padding: 0px 8px;
  font-size: 12px;
  opacity: 0.6;
}
#header-logo {
  height: 75px;
  width: 126.82px;
}
#header {
  display: flex;
  padding: 2% 0px 1%;
  justify-content: center;
}
.movie-images {
  /* height: 600px; */
  margin: 20px auto;
}
.movie-box {
  padding-right: 90px;
}
.movies-title {
  font-size: 60px;
  font-weight: 700;
}
.movies-subtitle {
  font-size: 28px;
  font-family: var(--font-regular);
}
.image-gallery {
  /* margin: 95px auto; */
  width: 554px;
  position: relative;
}
.image-container {
  width: 554px;
  height: auto;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-color);
}
.scroll-arrow {
  width: 33px;
  height: 24px;
  margin: 2px 0px 10px 0px;
  cursor: pointer;
}
.scroll-arrow img {
  width: 33px;
  height: 24px;
}
.thumbnails {
  width: 100%;
  display: flex;
  margin-top: 8px;
}
.thumbnails label {
  display: inline-block;
  width: 150px;
  height: 67px;
  background-size: cover;
  margin: 0;
  flex: 1 1 150px;
  cursor: pointer;
  max-width: 120px;
}
.image-1,
.image-2,
.image-3,
.image-4,
.image-5 {
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  transition: all 1.2s ease-out;
}
.image-1,
.thumbnails label[for=image1] {
  background-image: url('movie1-big.png');
}
.image-2,
.thumbnails label[for=image2] {
  background-image: url('movie2-big.png');
}
.image-3,
.thumbnails label[for=image3] {
  background-image: url('movie3-big.png');
}
.image-4,
.thumbnails label[for=image4] {
  background-image: url('movie4-big.png');
}
.image-5,
.thumbnails label[for=image5] {
  background-image: url('movie5-big.png');
}
#image1:checked + .image-1,
#image2:checked + .image-2,
#image3:checked + .image-3,
#image4:checked + .image-4,
#image5:checked + .image-5 {
  opacity: 1;
}
.image-gallery input[type=radio] {
  position: absolute;
  top: 370px;
  z-index: 100;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-block;
  background-color: #00000033;
  height: 16px;
  width: 16px;
  border: 3px solid #f1f1f1;
  border-radius: 16px;
  cursor: pointer;
  outline: none;
  box-shadow: 0px 1px 4px #00000088;
  display: none;
}
.image-gallery input[type=radio]:hover {
  background-color: #f7f7f780;
}
.image-gallery input[type=radio]:checked {
  background-color: #f1f1f1;
}
.image-gallery input[type=radio]:nth-of-type(1) {
  left: 50%;
  margin-left: -36px;
}
.image-gallery input[type=radio]:nth-of-type(2) {
  left: 50%;
  margin-left: -12px;
}
.image-gallery input[type=radio]:nth-of-type(3) {
  left: 50%;
  margin-left: 12px;
}
.image-gallery input[type=radio]:nth-of-type(4) {
  left: 50%;
  margin-left: 36px;
}
.image-gallery label.prev,
.image-gallery label.next {
  position: absolute;
  top: 50%;
  z-index: 100;
  color: #f1f1f1;
  text-shadow: 0px 1px 4px #00000088;
  /* font-family: "Georgia", "Apple Symbols", serif; */
  font-family: var(--font-regular);
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  text-align: center;
  height: 40px;
  width: 40px;
  margin-top: -20px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.5s linear;
}
.image-gallery:hover label.prev,
.image-gallery:hover label.next {
  opacity: 1;
}
.image-gallery label.prev {
  left: 10px;
}
.image-gallery label.next {
  right: 10px;
}
.image-gallery label.prev:hover,
.image-gallery label.next:hover {
  margin-top: -22px;
  text-shadow: 0px 3px 4px #00000088;
}
.videos-block {
  width: 550px;
  height: 412px;
  margin: 14px auto;
  mix-blend-mode: lighten;
  filter: saturate(1.2);
}
.img-fill {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  text-align: center;
}
.img-fill img {
  height: 100%;
  min-width: 100%;
  position: relative;
  display: inline-block;
  max-width: none;
}
/* Slider Theme Style */
.Container {
  padding: 0 15px;
}
.Container:after,
.Container .Head:after {
  content: "";
  display: block;
  clear: both;
}
h3.Head {
  font-size: 28px !important;
  font-weight: 400 !important;
}
.head-subtitle,
.channels-head,
.recent-head {
  font-size: 16px;
  color: var(--secondary-font-color);
  padding-bottom: 1rem;
}
.Container .head-subtitle .Arrows,
.Container .channels-head .Arrows,
.Container .recent-head .Arrows {
  float: right;
}
.ProductBlock {
  padding: 0 7.5px;
}
#movies-carousel .ProductBlock .img-fill,
#recent-carousel .ProductBlock .img-fill {
  height: 200px;
}
#channels-carousel .ProductBlock .img-fill {
  height: 307px !important;
}
.video-desc {
  padding-left: 87px;
  text-align: right;
  padding-right: 0px;
}
.movies-slider {
  margin: 20px auto 0px auto;
  background-color: var(--bg-page);
  padding: 65px 0px;
}
.tile-section {
  padding: 135px 0px 92px 0px;
}
.tiles {
  text-align: center;
}
.tiles img {
  margin-bottom: 37px;
  height: 135px;
}
.tiles h3 {
  margin-bottom: 0px;
  font-size: 28px;
  font-weight: 400;
}
/* accordion start */
details {
  margin-bottom: 1rem;
  padding: 15px;
  background: #0E1E23 0% 0% no-repeat padding-box;
  border: 1px solid #FAFAFB;
  opacity: 1;
}
details p {
  font-size: 12px;
  font-weight: 300 !important;
  color: var(--secondary-font-color);
}
.faq-help p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
}
.faq-help p strong a {
  color: var(--primary-font-color-on-lbg);
  text-decoration: none;
}
summary {
  font-size: 16px;
  font-weight: 300;
  color: var(--secondary-font-color);
  cursor: pointer;
  position: relative;
  outline: none;
}
summary::after {
  content: url(/branding/theme/assets/static_assets/ic-add-round-on-lbg.svg);
  background: transparent;
  border-radius: 0.25rem;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 24px;
  height: 24px;
}
details[open] {
  background: transparent;
}
details[open] summary::after {
  content: url(/branding/theme/assets/static_assets/ic-cancel-round-on-lbg.svg);
}
/*** End specific styles ***/
.faq-accordion {
  background: var(--bg-page);
  padding: 54px 0px;
}
.faq-title h2 {
  font-size: 36px;
  color: var(--primary-font-color-on-lbg);
}
.faq-content details {
  /* height: 56px; */
}
details summary::-webkit-details-marker {
  display: none;
}
.read-more-state {
  display: none;
}
.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: 0.25s ease;
}
.read-more-wrap,
.read-more-trigger {
  font-size: 12px;
  color: var(--secondary-font-color);
}
.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}
.read-more-state ~ .read-more-trigger:before {
  content: "Read more...";
}
.read-more-state:checked ~ .read-more-trigger:before {
  content: " Read less...";
}
.read-more-trigger {
  font-weight: bold;
  cursor: pointer;
}
.description-section {
  text-align: justify;
  padding: 58px 0px;
  background: var(--bg-page) !important;
}
footer {
  background: var(--bg-page);
  padding: 129px 0px 108px 0px;
  color: var(--primary-font-color-on-lbg);
  box-shadow: 0 -20px 20px #8080801a;
}
.downArrow-btn:after {
  content: url(/branding/theme/assets/static_assets/down-arrow.svg);
  transition: all 0.3s ease-in;
  transform-origin: center;
}
.upArrow-btn:after {
  /* content: url(../assets/img/right-arrow.svg); */
  transition: all 0.3s ease-in;
  transform: rotate(180deg);
  transform-origin: center;
}
.footer-list {
  list-style: none;
  padding-left: 0px;
}
.footer-list li a {
  text-decoration: none;
  color: var(--primary-font-color-on-lbg);
  font-size: 12px;
  line-height: 40px;
  font-family: var(--font-regular);
}
.footer-card {
  padding-right: 0px;
}
.footer-card h6, .download-btns h6 {
  font-weight: 700;
}
.language-btn {
  width: 160px;
  color: var(--primary-font-color-on-lbg);
  background-color: transparent;
  border: 1px solid var(--unfocused-stroke-color) !important;
  border-radius: 4px;
  font-size: 14px;
  text-align: initial;
  text-decoration: underline;
  position: relative;
  /* transition: text-align 5s; */
  -webkit-animation: center 2s infinite;
          animation: center 2s infinite;
}
.language-btn::after {
  content: url(/branding/theme/assets/static_assets/ic-down.svg);
  float: right;
  width: 24px;
  height: 24px;
  border: unset;
}
.language-btn:hover {
  transform: scale(1) !important;
  text-decoration: underline;
}
.language-btn:focus {
  text-decoration: underline;
}
/* .btn:hover {
    color: var(--primary-font-color-on-lbg);
} */
.dropdown-item {
  cursor: pointer;
  color: var(--bg-font-color) !important;
}
.dropdown-menu {
  background-color: var(--bg-page);
  border: 1px solid var(--unfocused-stroke-color);
  border-radius: 0px !important;
  margin-left: 4px;
}
.social-icons {
  margin-right: 40px;
}
.lang-dropdown {
  text-align: center;
  margin-top: auto;
  margin-bottom: 33px;
}
.social-box {
  margin-left: 24px;
}
/* OWL CAROUSEL */
/* 
.col-sm-12 {
    width: 120%;
} */
.testimonials {
  position: relative;
  padding-top: 54px;
  background-color: var(--bg-page);
  margin-top: 0px;
  padding-bottom: 54px;
}
.title-img {
  min-width: 50px !important;
  max-width: 430px !important;
  height: 166px;
  position: absolute;
  right: 10%;
  z-index: 99;
  top: 15%;
  -o-object-fit: contain;
     object-fit: contain;
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover {
  transform: scale(1.3);
  transition-duration: 450ms;
  z-index: 100;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.2));
}
#popular-slider .owl-stage-outer .owl-stage .owl-item:hover,
#recent-cards .owl-stage-outer .owl-stage .owl-item:hover,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item:hover {
  transform: scale(1.1);
  transition-duration: 450ms;
  z-index: 100;
  filter: drop-shadow(0px 0px 20px #00000033);
  cursor: pointer;
}
#genreCuration-cards .owl-stage-outer .owl-stage .owl-item:hover {
  transform: scale(1.27, 1.277);
  transition-duration: 450ms;
  z-index: 100;
  cursor: pointer;
}
#curation-collection-cards .owl-stage-outer .owl-stage .owl-item:hover {
  transition-duration: 450ms;
  z-index: 100;
  cursor: pointer;
  transform: scale(1.1, 1.1);
}
/* #live-channels-slider .owl-stage-outer .owl-stage .owl-item, */
#popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item {
  width: 384px !important;
  /* margin-right: 15px !important; */
  height: 216px !important;
  overflow: hidden;
  transition-duration: 450ms;
}
#genreCuration-cards .owl-stage-outer .owl-stage .owl-item {
  width: 202px !important;
  margin-right: 15px !important;
  height: 123px !important;
  margin-bottom: 30px;
  overflow: hidden;
  transition-duration: 450ms;
}
#curation-collection-cards .owl-stage-outer .owl-stage .web-screen {
  height: 220px !important;
  width: 392px !important;
  margin-right: 15px !important;
  margin-bottom: 30px;
  overflow: hidden;
}
#curation-collection-cards .owl-stage-outer .owl-stage .mob-screen {
  width: 120px !important;
  height: 180px !important;
  margin-right: 15px !important;
  margin-bottom: 30px;
  overflow: hidden;
}
#curation-collection-cards .owl-stage-outer .owl-stage .owl-item {
  transition-duration: 450ms;
}
#banner-cards .item img {
  height: auto;
}
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
  /* margin-right: 16.5px !important; */
  margin-bottom: 52px;
  transition-duration: 450ms;
}
#popular-slider .owl-stage-outer,
#recent-cards .owl-stage-outer,
#live-channels-slider .owl-stage-outer {
  overflow: visible !important;
}
#genreCuration-cards .owl-stage-outer {
  overflow: visible !important;
}
@media only screen and (min-width: 678px) {
  #curation-collection-cards .owl-stage-outer {
    padding-left: 10% !important;
  }
}
@media only screen and (max-width: 678px) {
  #curation-collection-cards .owl-stage-outer {
    padding-left: 6% !important;
  }
}
/* #live-channels-slider .owl-stage-outer .owl-stage {
    width: 7148px !important;
}

#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 460px !important;
    height: 326px !important;
    margin-right: 15px !important;
}

#live-channels-slider .owl-stage-outer .owl-stage .owl-item img {
    height: 326px !important;
} */
#popular-slider .item-details,
#recent-cards .item-details,
#live-channels-slider .item-details,
#movies-recent .item-details,
#award-winning .item-details,
#most-watched .item-details,
#weekend-movie .item-details,
#blockbuster-movies .item-details,
#other-movie-cards .item-details {
  background-color: #333333;
  color: #fff;
  padding: 20px 10px;
  text-align: left;
}
#popular-slider .item-details p,
#recent-cards .item-details p,
#live-channels-slider .item-details p,
#movies-recent .item-details p,
#award-winning .item-details p,
#most-watched .item-details p,
#weekend-movie .item-details p,
#blockbuster-movies .item-details p,
#other-movie-cards .item-details p {
  font-size: 14px;
}
.item-details h5 {
  margin: 0 0 15px;
  font-size: 18px;
  line-height: 18px;
}
.item-details h5 span {
  color: red;
  float: right;
  padding-right: 20px;
}
#popular-slider .item,
#recent-cards .item,
#live-channels-slider .item,
#movies-recent .item,
#award-winning .item,
#most-watched .item,
#weekend-movie .item,
#blockbuster-movies .item,
#other-movie-cards .item {
  text-align: center;
  margin-bottom: 80px;
  overflow: hidden !important;
}
#genreCuration-cards .item {
  text-align: center;
  margin-bottom: 15px;
  overflow: hidden !important;
}
.warning-strip {
  display: flex;
  justify-content: center;
  background-color: var(--join-bg-color);
  border: 1px solid var(--join-border-color);
  margin: 10px !important;
  padding: 16px;
  position: absolute;
  top: 0px;
  width: 100%;
  gap: 16px;
  align-items: flex-start;
  top: 76px !important;
}
.warning-strip img {
  width: 19.5px;
  height: 19.5px;
}
.warning-strip div {
  /* display: flex; */
  font-family: var(--font-regular);
  color: var(--primary-font-color-on-lbg);
  font-size: 16px;
  line-height: 20px;
}
.warning-container {
  position: relative;
  height: 60px;
  justify-content: center;
  align-items: center;
  display: flex;
  background-color: var(--join-bg-color);
  border: 1px solid var(--join-border-color);
  color: var(--primary-font-color-on-lbg);
  margin: 12px 0;
  border-radius: 4px;
  padding: 12px 20px;
  gap: 12px;
}
.owl-carousel .owl-nav {
  transition: all 0.3s ease;
}
.owl-carousel .owl-nav.disabled:hover {
  background-color: transparent;
  opacity: 0;
}
.owl-carousel .owl-nav .disabled {
  opacity: 0 !important;
}
.owl-carousel {
  position: relative;
}
.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  width: 110px;
  height: 100%;
  /*216px;*/
  position: absolute;
  top: 0%;
  font-size: 20px;
  color: #fff;
  outline: none;
  text-align: center;
  transition: all 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: 0px;
}
.owl-carousel .owl-prev {
  background-image: var(--carousel-prev-gradient) !important;
}
.owl-carousel .owl-next {
  background-image: var(--carousel-next-gradient) !important;
}
.genreCuration-cards .owl-next,
.genreCuration-cards .owl-prev {
  height: 123px !important;
}
.owl-carousel .owl-next img,
.owl-carousel .owl-prev img {
  width: 36px;
  height: 36px;
}
#banner-cards .owl-prev,
#banner-cards .owl-next {
  height: unset !important;
  top: calc(50% - 30px) !important;
  background-image: unset !important;
  display: none;
}
#curation-collection-cards .owl-prev,
#curation-collection-cards .owl-next {
  background-image: unset !important;
  top: calc(50% - 30px) !important;
  height: unset !important;
}
#curation-collection-cards .owl-prev img,
#curation-collection-cards .owl-next img {
  height: 40px !important;
  width: 40px !important;
}
@media only screen and (min-width: 800px) {
  #banner-cards .owl-prev img,
#banner-cards .owl-next img {
    height: 60px !important;
    width: 60px !important;
  }
}
@media only screen and (min-width: 678px) and (max-width: 799px) {
  #banner-cards .owl-prev img,
#banner-cards .owl-next img {
    height: 40px !important;
    width: 40px !important;
  }
}
@media only screen and (min-width: 678px) {
  #banner-cards:hover .owl-prev {
    display: block;
  }

  #banner-cards:hover .owl-next {
    display: block;
  }
}
.owl-carousel .owl-prev {
  position: absolute;
}
.owl-carousel .owl-next {
  right: 151px;
  position: absolute;
}
.owl-row {
  margin-right: -223px !important;
}
.download-btns {
  padding-left: 0px !important;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
/* .btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px hsl(0deg 0% 100% / 30%);
} */
.social-btn:hover {
  opacity: 0.9 !important;
}
.card-title-img {
  width: 250px !important;
  height: 99px;
  position: absolute;
  right: 0px;
  top: 39%;
  transition-duration: 450ms;
}
.onhover-card {
  display: flex;
  height: 0;
  opacity: 0;
  transition-duration: 450ms;
  transform: translateY(40px);
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover .onhover-card {
  display: flex;
  height: auto;
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 450ms;
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover .number-block {
  /* left: -140px;
  top: 38%; */
  /* display: none; */
  transform: scale(1.9);
  transition-duration: 450ms;
  top: 33%;
}
.hover-img {
  display: none !important;
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover .hover-img {
  display: block !important;
  position: absolute;
  width: 141px;
  bottom: 0px;
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover .card-number {
  /* left: 36px;
  top: 25%;
  font-size: 120px; */
  /* left: 52px; */
  top: 47%;
  font-size: 100px;
}
#most-watched .owl-stage-outer .owl-stage .owl-item:hover .card-title-img {
  top: 29%;
  transition-duration: 450ms;
}
.meta-card {
  display: grid;
  flex-direction: row;
  padding: 0px;
  position: absolute;
  right: 5px;
  bottom: 12px;
  width: 250px;
  margin: 0px 13px;
  bottom: 20px;
}
.card-details {
  display: flex;
  width: 250px;
  justify-content: flex-end;
  align-items: center;
}
.pipe {
  margin: 4px 5px;
  font-size: 13px;
}
.card-label {
  border: 1px solid var(--button-color);
  width: 109px;
  margin-top: 5px;
  right: 0;
  margin-left: auto;
  margin-right: 0px;
  font-size: 12px;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: transparent !important;
  cursor: pointer;
}
/* lightbox styles */
.image-gallery .owl-dots {
  display: flex;
  margin: 0 auto;
  width: 100%;
  /* height: 30px; */
  margin-top: 9px;
}
.image-gallery .owl-dots .owl-dot {
  background: var(--bg-color);
  width: 105px;
  height: 63px;
  margin-right: 7px;
}
.image-gallery .owl-dots .owl-dot img {
  width: 105px;
  height: 63px;
}
.image-gallery .owl-dots .owl-dot img {
  max-height: 63px;
}
.image-gallery .owl-dots > .active-box img {
  border: 0.5px solid #8F8F8F;
}
details > summary {
  list-style: none;
}
details > summary::-webkit-details-marker {
  display: none;
}
/* lightbox styles ends */
/* lightbox styles ends */
.width-100 {
  width: 100%;
}
.lang-block {
  width: 33% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pay-detail {
  font-size: 18px;
  text-align: center;
  padding: 0% 5px;
}
.trail-day {
  text-align: center;
  font-size: 28px;
  padding: 3% 5px 1%;
}
.channel-details {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
#live-channels-slider .owl-stage-outer .owl-stage .owl-item:hover .channel-details {
  opacity: 1;
  transform: translateY(0px);
  transition-duration: 550ms;
  position: absolute;
  right: 7%;
  bottom: 8%;
  z-index: 999;
}
#live-channels-slider .owl-stage-outer .owl-stage .owl-item:hover:after {
  height: 25%;
}
#live-channels-slider .owl-stage-outer .owl-stage .owl-item::after {
  content: "";
  display: block;
  position: absolute;
  height: 0%;
  width: 100%;
  bottom: 0;
  transition: height 0.5s ease-out;
  background: transparent linear-gradient(180deg, #2E2E2E45 0%, transparent 35%, transparent 59%, transparent 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #000000;
  mix-blend-mode: overlay;
  cursor: pointer;
}
.multi-block {
  background-color: var(--bg-page);
}
.signin-header {
  cursor: pointer;
}
#navigateToSlider,
:target {
  scroll-margin-top: 76px;
}
#live-channels-slider .owl-dots .owl-dot.active {
  background-color: var(--bg-font-color) !important;
}
#live-channels-slider .owl-nav .owl-next,
#live-channels-slider .owl-nav .owl-prev {
  height: 326.69px;
}
@media (min-width: 400px) and (max-width: 990px) {
  #live-channels-slider .owl-nav .owl-next,
#live-channels-slider .owl-nav .owl-prev {
    height: 225px !important;
  }
}
.video-js {
  height: 100vh;
  width: 100vw;
}
.vjs-info {
  font-family: var(--font-regular) !important;
  top: 36px !important;
}
.vjs-info-top {
  background: none !important;
}
.vjs-info .vjs-text {
  flex: auto;
  overflow: hidden;
  text-align: start;
  margin-left: 50px;
  margin-top: -9px;
}
.vjs-info .vjs-ttl {
  font-size: 28px;
  font-family: var(--font-regular);
}
.video-js .vjs-progress-control .vjs-slider {
  height: 3px;
  /* border: 1px solid #E5E5E5; */
}
.vjs-thumbnail-holder {
  bottom: 18px !important;
}
.vjs-progress-control.vjs-control {
  position: absolute !important;
  top: -24px !important;
  width: 95vw !important;
  left: 1% !important;
}
.video-js .vjs-progress-control {
  margin: 0 0 0 23px !important;
}
.video-js .vjs-progress-control .vjs-play-progress {
  background-color: #EC1E24;
}
.video-js .vjs-progress-control .vjs-play-progress:before {
  border-radius: 0px !important;
  transform: rotate(45deg);
  height: 13px !important;
  width: 13px !important;
  border: 1px solid #8F8F8F;
  background-color: #FFFFFF;
  right: -15px !important;
}
.video-js .vjs-progress-control .vjs-slider:before {
  background-color: #E5E5E5 !important;
  height: 4px !important;
}
.video-js .vjs-progress-control .vjs-load-progress,
.vjs-progress-control .vjs-play-progress {
  height: 4px !important;
}
.video-js .vjs-progress-control .vjs-slider {
  height: 4px !important;
}
button.vjs-rewind-control.vjs-rewind-first.vjs-control.vjs-button {
  display: none !important;
}
button.vjs-play-control.vjs-control.vjs-button.vjs-paused,
button.vjs-play-control.vjs-control.vjs-button.vjs-playing {
  margin-left: 38px;
  width: 36px;
  height: 36px;
  background-color: #FAFAFB !important;
}
.video-js .vjs-play-control .vjs-icon-placeholder:before,
.video-js .vjs-play-control.vjs-paused .vjs-icon-placeholder:before {
  font-size: 26px;
  color: #EC1E24;
}
span.vjs-duration-display,
span.vjs-current-time-display {
  font-size: 20px;
  color: var(--primary-font-color-on-lbg);
}
span.vjs-current-time-display:after {
  content: " /";
  font-size: 20px;
}
.vjs-duration.vjs-time-control.vjs-control::before {
  content: "   ";
}
.vjs-subs-caps-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button,
.vjs-audio-button.vjs-menu-button.vjs-menu-button-popup.vjs-control.vjs-button,
.vjs-quality-button.vjs-menu-button.vjs-control.vjs-button,
.vjs-control.vjs-button.vjs-cog-menu-button,
button.vjs-picture-in-picture-control.vjs-control.vjs-button.vjs-disabled,
.video-js .vjs-big-play-button,
.video-js .vjs-volume-panel:hover .vjs-volume-vertical,
button.vjs-forward-control.vjs-control.vjs-button {
  display: none !important;
}
button.vjs-fullscreen-control.vjs-control.vjs-button {
  margin-left: auto;
  margin-right: 35px;
}
button.vjs-nav-next.vjs-button.player-button:before {
  content: url('forward.svg') !important;
}
.video-js .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: url('full-screen.svg') !important;
}
.video-js.vjs-fullscreen .vjs-fullscreen-control .vjs-icon-placeholder:before {
  content: url('fullscreen-player.svg') !important;
}
.video-js .vjs-mute-control .vjs-icon-placeholder:before {
  content: url('audio-icon.svg') !important;
}
.vjs-icon-volume-mute:before,
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder:before {
  content: url('audio-player.svg') !important;
}
button.vjs-forward-control.vjs-control.vjs-button,
.vjs-current-time.vjs-time-control.vjs-control,
.vjs-volume-panel.vjs-control.vjs-volume-panel-vertical,
button.vjs-nav-next.vjs-button.player-button {
  margin-left: 24px;
}
.no-touch .video-js .vjs-button:hover,
.video-js .vjs-control-bar {
  background-color: transparent !important;
}
.video-js .vjs-control-bar {
  bottom: 15px !important;
}
.vjs-480 .vjs-duration {
  display: block;
}
.vjs-context-menu {
  display: none !important;
}
.vjs-loading-spinner {
  content: url('player-loader.svg') !important;
  border: none !important;
}
.video-js video::-webkit-media-controls {
  display: none !important;
}
.video-js video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.video-js video::--webkit-media-controls {
  display: none !important;
}
.video-js video::--webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
.vjs-480 .vjs-progress-control .vjs-load-progress,
.vjs-480 .vjs-progress-control .vjs-play-progress {
  height: 5px !important;
  top: -2px !important;
}
@media only screen and (min-width: 425px) and (max-width: 600px) {
  button.vjs-fullscreen-control.vjs-control.vjs-button {
    margin-left: auto !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 375px) {
  button.vjs-forward-control.vjs-control.vjs-button,
.vjs-current-time.vjs-time-control.vjs-control,
button.vjs-nav-next.vjs-button.player-button {
    margin-left: 5px !important;
  }

  .vjs-volume-panel.vjs-control.vjs-volume-panel-vertical {
    margin-left: 10px !important;
  }

  button.vjs-fullscreen-control.vjs-control.vjs-button {
    margin-left: 9px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 550px) {
  button.vjs-play-control.vjs-control.vjs-button.vjs-paused,
button.vjs-play-control.vjs-control.vjs-button.vjs-playing {
    margin-left: 20px;
  }

  button.vjs-fullscreen-control.vjs-control.vjs-button {
    margin-left: auto;
    margin-left: 20px;
    margin-right: 20px;
  }

  .vjs-480 .vjs-progress-holder {
    top: 0px;
  }

  .vjs-480 .vjs-progress-control .vjs-slider:before {
    position: absolute;
    width: 90vw;
  }

  .video-js .vjs-progress-control {
    margin: 0 0 0 18px !important;
  }

  .vjs-info .vjs-text {
    margin-left: 38px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 980px) {
  .vjs-info {
    top: 16px !important;
  }

  .vjs-progress-control.vjs-control {
    width: 91vw !important;
  }
}
.vjs-current-time > .vjs-control-text,
.vjs-duration > .vjs-control-text,
.vjs-rewind-control > .vjs-control-text,
.vjs-forward-control > .vjs-control-text,
.vjs-menu-item > .vjs-control-text,
.vjs-load-progress > .vjs-control-text {
  display: none !important;
}
.no-touch .video-js .vjs-control-text {
  border: 0;
  margin: 0;
  position: absolute;
  z-index: 2;
}
.vjs-control-bar .vjs-control:hover .vjs-control-text {
  visibility: visible;
  opacity: 1;
  top: -50px;
  height: initial;
  border: 1px solid #e5e5e5;
  background: transparent;
  color: #fff;
}
.no-touch .vjs-control-text {
  display: block;
  border: 0;
  clip: auto !important;
  top: -10px;
  background-color: #fff;
  color: #000;
  padding: 0 5px !important;
  line-height: 22px;
  font-size: 11px !important;
  left: 50%;
  transform: translate(-50%, 0);
  white-space: nowrap;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
  width: auto !important;
  z-index: 2;
  text-shadow: none !important;
  font-family: var(--font-regular);
}
.vjs-nav-next.vjs-control.vjs-button.player-button {
  right: 0px !important;
}
.redirectcls {
  text-align: center;
  border: 1px solid transparent;
  background-color: transparent;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: auto;
  border-radius: 4px;
  cursor: pointer;
}
.directionurl {
  padding: 0px 12px 0px 12px;
  background-color: transparent;
  height: auto;
  text-align: center;
  margin: 10px;
  white-space: normal;
  font-size: 16px;
  font-weight: 700;
  line-height: 27px;
  width: 252px;
}
@media only screen and (min-width: 400px) and (max-width: 751px) {
  .owl-prev {
    left: -3%;
    display: none;
  }

  .owl-next {
    right: 17% !important;
    display: none;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 750px) and (max-width: 768px) {
  .owl-prev {
    left: -26%;
  }

  .owl-next {
    right: -23% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 769px) and (max-width: 781px) {
  .owl-prev {
    left: -5%;
  }

  .owl-next {
    right: 19% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 781px) and (max-width: 854px) {
  .owl-prev {
    left: -9%;
  }

  .owl-next {
    right: 13% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 854px) and (max-width: 917px) {
  .owl-prev {
    left: -13%;
  }

  .owl-next {
    right: 12% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 917px) and (max-width: 992px) {
  .owl-prev {
    left: -17%;
  }

  .owl-next {
    right: 8% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 991px) and (max-width: 1078px) {
  .owl-prev {
    left: -6%;
  }

  .owl-next {
    right: 13% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1078px) and (max-width: 1147px) {
  .owl-prev {
    left: -10%;
  }

  .owl-next {
    right: 10% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1147px) and (max-width: 1200px) {
  .owl-prev {
    left: -13%;
  }

  .owl-next {
    right: 6% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1263px) {
  .owl-prev {
    left: -6%;
  }

  .owl-next {
    right: 11% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1263px) and (max-width: 1343px) {
  .owl-prev {
    left: -9%;
  }

  .owl-next {
    right: 8% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1343px) and (max-width: 1423px) {
  .owl-prev {
    left: -12%;
  }

  .owl-next {
    right: 5% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1423px) and (max-width: 1499px) {
  .owl-prev {
    left: -15%;
  }

  .owl-next {
    right: 2% !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
@media only screen and (min-width: 1500px) {
  .owl-prev {
    left: -96px !important;
  }

  .owl-next {
    right: 120px !important;
  }

  #banner-cards .owl-prev {
    left: 0px !important;
  }

  #banner-cards .owl-next {
    right: 0px !important;
  }

  #curation-collection-cards .owl-prev {
    left: 0px !important;
  }

  #curation-collection-cards .owl-next {
    right: 0px !important;
  }
}
.owl-stage-outer .owl-stage .owl-item .item {
  height: 100%;
  border-radius: 4px;
}
.owl-stage-outer .owl-stage .owl-item .item .lightbox-img {
  height: 100%;
}
@media screen and (max-width: 550px) {
  .warning-strip {
    top: -210px !important;
  }

  .warning-container {
    /* margin-top: 80px; */
    height: auto !important;
  }
}
@media screen and (min-width: 550px) {
  .warning-strip {
    top: 76px !important;
  }
}
@media only screen and (min-width: 350px) and (max-width: 654px) {
  .redirectcls {
    margin: 20px auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
  }
}
#banner-cards .owl-dots {
  display: flex !important;
  height: 40px !important;
  justify-content: center !important;
  align-items: center !important;
}
#banner-cards .owl-dots button.owl-dot {
  height: 12px !important;
  width: 12px !important;
  background: var(--secondary-font-color) !important;
  margin: 5px !important;
  border-radius: 3px;
}
#banner-cards .owl-dots button.active {
  background: var(--primary-btn-color) !important;
}
#banner-cards .owl-dots button:focus {
  outline: none !important;
}
#banner-cards .owl-items img {
  height: 24px !important;
  width: 24px !important;
}
#curation-collection-cards .owl-stage-outer {
  overflow: visible !important;
}
.episodes-img {
  border-radius: 4px;
}
#select-plan:has(.multi-plan:only-child) #select-plan-pad {
  width: 544px !important;
}
#select-plan:has(.single-plan:only-child) #select-plan-pad {
  width: 544px !important;
}
*:focus {
  outline: none !important;
}
.feedback-bg {
  background: var(--card-bg);
  background-image: none !important;
}
.feedback-btn {
  border-radius: 4px;
  cursor: pointer;
}
.ot-sdk-show-settings {
  background: none;
  border: none;
  color: var(--primary-font-color-on-lbg);
  font-size: 12px;
  padding: 0px;
}
.error-block {
  color: var(--error-color);
}
.static-bg p img {
  width: 100%;
}
.static-bg a {
  color: var(--brand-primary-color);
}
#moviesDataBg {
  background: var(--bg-page);
}
.paywall-header-bg .video-js {
  height: 100%;
  width: 100%;
}
@media (min-width: 1200px) {
  .container {
    max-width: calc(100% - 160px);
  }

  .navbar .container {
    max-width: calc(100% - 160px);
  }

  .more-details .container {
    max-width: calc(100% - 160px);
  }

  .container.details-block {
    max-width: calc(100% - 160px);
  }

  .series-section .container {
    max-width: calc(100% - 160px);
  }

  .container.login-signup-container {
    max-width: calc(100% - 160px);
  }

  .container.header-details-container {
    max-width: calc(100% - 160px);
  }
}
.vjs-has-started.vjs-user-inactive.vjs-playing:not(.vjs-ad-playing) .vjs-control-bar, .video-js .vjs-control-bar {
  visibility: visible;
  opacity: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px;
}
.vjs-control-bar, .vjs-volume-panel {
  display: block;
}
#recent-cards-article .owl-stage-outer {
  overflow: visible;
}
#recent-cards-article .owl-item {
  width: 200px !important;
  height: auto;
  overflow: hidden;
  transition-duration: 450ms;
  margin-right: 15px !important;
}
#recent-cards-article .owl-item .item {
  overflow: hidden;
}
#recent-cards-article .owl-item:hover {
  transform: scale(1.1);
  transition-duration: 450ms;
  z-index: 100;
  filter: drop-shadow(0px 0px 20px #00000033);
  cursor: pointer;
}
.brandimage-block img {
  max-width: 540px;
}
@media only screen and (min-width: 300px) and (max-width: 401px) {
  .footer-card {
    margin-bottom: 20px !important;
    padding: 20px 15px 20px 15px !important;
  }

  #header-logo {
    height: 48.88px;
    width: 90px;
  }

  #header {
    padding: 35px 0px 1%;
  }

  #title {
    font-size: 33px;
  }

  #sub-title,
.pay-detail {
    font-size: 18px;
  }

  .trail-day {
    margin-top: 30px;
  }

  .social-head {
    margin-top: 20px;
  }

  #live-channels-slider .owl-dots {
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: center;
  }

  #live-channels-slider .owl-dots .owl-dot {
    width: 4px;
    height: 4px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #707070;
    margin-right: 5px;
  }

  #lightbox-slider .owl-stage-outer .owl-stage .owl-carousel .owl-item,
#lightbox-slider .owl-stage-outer .owl-stage .owl-carousel .owl-item img {
    width: 335px !important;
    height: 189px !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 355px !important;
  }

  #genreCuration-cards .owl-stage-outer .owl-stage .owl-item {
    width: 202px;
    margin: 0 auto;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    margin-bottom: 18px;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item img,
#recent-cards .owl-stage-outer .owl-stage .owl-item img,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item img {
    width: 355px !important;
    margin: 0 auto;
  }

  .image-container {
    width: 310px !important;
    height: 189px !important;
  }

  .image-gallery .owl-dots > .owl-dot,
.image-gallery .owl-dots > .owl-dot > img {
    width: 56.5px !important;
    height: 38px !important;
  }

  .videos-block {
    width: 344px;
    height: 235px;
    margin: 28px 10px 28px -6px;
  }

  .head-subtitle,
.channels-head,
.recent-head {
    padding-top: 3px;
  }

  .video-desc {
    padding-left: 15px;
    text-align: center;
    padding-right: 15px;
    margin-bottom: 30px;
  }

  .tiles {
    margin-bottom: 30px;
  }

  .tiles img {
    margin-bottom: 15px;
    height: 74px;
  }

  .tiles h3 {
    font-size: 28px;
    font-weight: 400;
    color: rgba(250, 250, 251, 0.8);
  }

  #popular-slider,
#recent-cards,
#live-channels-slider,
#most-watched,
#genreCuration-cards {
    margin-bottom: 30px;
  }

  #popular-slider .item,
#recent-cards .item,
#live-channels-slider .item,
#genreCuration-cards .item {
    margin-bottom: 0px !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item {
    width: 288px !important;
    height: 156px !important;
    margin-bottom: 0px !important;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item img {
    width: 336px !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item img,
#recent-cards .owl-stage-outer .owl-stage .owl-item img,
#most-watched .owl-stage-outer .owl-stage .owl-item img {
    width: 288px !important;
    margin: 0 auto;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item .title-img,
#recent-cards .owl-stage-outer .owl-stage .owl-item .title-img,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item .title-img {
    width: 232px !important;
    height: 90px !important;
  }

  .movie-box {
    text-align: center;
    padding-right: 0px;
    margin: 0px 19px 50px 20px;
  }

  .image-gallery {
    margin: auto !important;
    width: 310px;
  }

  .movies-title {
    font-size: 44px;
  }

  .movies-subtitle {
    font-size: 18px;
    padding: 10px 30px;
  }

  .faq-accordion {
    padding: 29px 0px;
  }

  .faq-title h2 {
    font-size: 27px;
  }

  summary {
    font-size: 15px;
  }

  .faq-help p {
    font-size: 14px;
    padding: 0px 50px;
  }

  .lang-block {
    width: 100% !important;
  }

  .lang-dropdown {
    margin-top: 20px;
  }

  .download-btns {
    padding-left: 15px !important;
    text-align: center;
  }

  .footer-social {
    display: grid !important;
  }

  .social-icons {
    margin: 30px auto 0px;
    padding: 0px 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .social-box {
    margin: 0px 11px !important;
  }

  .testimonials {
    padding-top: 42px !important;
  }

  .faq-content {
    width: 337px;
  }

  details > summary {
    width: 270px;
    line-height: 21px;
  }

  summary::after {
    right: -2.3rem;
  }

  details p {
    font-weight: 100;
  }
}
@media only screen and (min-width: 400px) and (max-width: 750px) {
  .image-gallery .owl-dots .owl-dot {
    background: var(--bg-color);
    width: 70px;
    height: 63px;
    margin-right: 7px;
  }

  .image-gallery .owl-dots .owl-dot img {
    width: 70px;
    height: 63px;
  }

  .faq-title h2 {
    font-size: 27px;
  }

  .image-gallery {
    width: none !important;
  }

  .image-gallery {
    margin: auto !important;
    width: 381px !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 365px !important;
  }
}
@media only screen and (min-width: 350px) and (max-width: 654px) {
  .navbar-collapse {
    display: flex;
  }

  .footer-card {
    padding: 20px 0px;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 400px !important;
    /* height: 275px !important;
    max-height: 275px !important; */
    max-width: 400px !important;
    margin-bottom: 0px;
  }

  .lang-block {
    width: 100% !important;
  }

  .footer-blocks > div > div {
    /* padding-left: 40px !important; */
  }

  .social-icons {
    margin-top: 30px !important;
  }

  .language-btn {
    margin-top: 20px;
  }

  .videos-block {
    width: 350px !important;
    height: 315px;
    margin: 39px 25px !important;
  }

  .thumbnails label {
    max-width: 69px;
  }

  .image-container {
    width: 346px;
  }

  .owl-carousel .owl-nav {
    display: none !important;
  }

  .owl-carousel .owl-next {
    /* right: 73px !important; */
    top: -131px !important;
    left: 303px !important;
  }

  .owl-carousel .owl-prev {
    /* right: 134px !important; */
    top: -131px !important;
    left: 261px !important;
  }

  #popular-slider .owl-nav .owl-prev,
#recent-cards .owl-nav .owl-next,
#popular-slider .owl-nav .owl-next,
#recent-cards .owl-nav .owl-prev,
#movies-recent .owl-nav .owl-next,
#movies-recent .owl-nav .owl-prev,
#award-winning .owl-nav .owl-next,
#award-winning .owl-nav .owl-prev,
#most-watched .owl-nav .owl-next,
#most-watched .owl-nav .owl-prev,
#weekend-movie .owl-nav .owl-next,
#weekend-movie .owl-nav .owl-prev,
#blockbuster-movies .owl-nav .owl-next,
#blockbuster-movies .owl-nav .owl-prev {
    top: -105px !important;
  }

  #title,
.movies-title {
    font-size: 44px;
  }

  #sub-title,
#trail-day {
    font-size: 23px;
  }

  .movies-subtitle {
    font-size: 20px;
    padding: 10px 70px;
  }

  .movie-box {
    padding-top: 60px;
    text-align: center;
    padding-right: 0px;
  }

  .image-gallery {
    margin: 25px 0px 0px 0px;
  }

  .image-container {
    width: 344px;
  }

  .thumbnails label {
    max-width: 69px;
  }

  .video-desc {
    text-align: center;
    padding-left: 0px;
    padding-bottom: 50px;
  }

  /* .footer-card {
      padding-left: 15px !important;
  } */
  .social-icons {
    margin-right: auto !important;
    margin-top: 20px;
    margin-left: auto !important;
  }

  .footer-social {
    display: grid !important;
  }

  .owl-stage-outer .owl-stage .owl-item {
    width: 396px;
    /* margin-right: 0px !important;
    margin-left: 34px; */
  }

  /* #lightbox-slider .owl-stage-outer .owl-stage .owl-item, */
  .lightbox-img img {
    /* width: 381px !important; */
  }

  /* .image-gallery {
      margin: auto !important;
      width: 381px !important;
  } */
  .image-gallery .owl-dots .owl-dot {
    background: var(--bg-color);
    width: 70px;
    height: 63px;
    margin-right: 7px;
  }

  .image-gallery .owl-dots .owl-dot img {
    width: 70px;
    height: 63px;
  }

  .owl-stage-outer .owl-stage .owl-item {
    width: 396px;
    /* margin-right: 0px !important;
    margin-left: 68px; */
  }

  .owl-carousel .owl-nav {
    display: none !important;
  }

  .owl-carousel .owl-next {
    right: 74px;
    position: absolute;
    top: -100px;
  }

  .owl-carousel .owl-prev {
    right: 157px;
    position: absolute;
    top: -100px;
  }

  .download-btns {
    text-align: center;
  }

  .testimonials {
    padding-top: 42px !important;
    padding-bottom: 30px !important;
  }

  #live-channels-slider .owl-dots {
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 23px;
  }

  #live-channels-slider .item {
    margin-bottom: 0px !important;
  }

  #live-channels-slider .owl-dots .owl-dot {
    width: 4px;
    height: 4px;
    background-color: transparent;
    border-radius: 50%;
    border: 1px solid #707070;
    margin-right: 5px;
  }
}
@media only screen and (min-width: 400px) and (max-width: 768px) {
  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    margin-right: 15px !important;
  }

  #navbarTogglerDemo01 {
    display: flex;
  }

  .navbar-nav {
    display: none;
  }

  #popular-slider .owl-stage-outer .owl-stage,
#recent-cards .owl-stage-outer .owl-stage {
    height: auto !important;
    /* overflow-y: hidden !important; */
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 400px !important;
    height: 230px !important;
  }

  #title,
.movies-title {
    font-size: 33px;
  }

  .movies-title {
    width: 95%;
  }

  #sub-title,
#trail-day {
    font-size: 23px;
  }

  .movies-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    width: 97%;
  }

  .movie-box {
    padding-top: 60px;
    text-align: center;
    padding-right: 0px;
  }

  .image-gallery {
    margin: 25px 0px 0px 0px;
  }

  .image-container {
    width: 399px;
  }

  .thumbnails label {
    max-width: 80px;
  }

  .videos-block {
    width: 473px;
    height: 338px;
    margin: 39px auto;
  }

  .video-desc {
    text-align: center;
    padding-left: 0px;
    padding-bottom: 50px;
  }

  summary,
.faq-help p {
    font-size: 14px;
  }

  .faq-help p {
    padding: 0px 80px;
  }

  .tiles {
    margin-bottom: 45px;
  }

  .tiles img {
    margin-bottom: 20px;
  }

  /* .footer-card, */
  .lang-dropdown {
    padding-left: 27px !important;
  }

  .lang-dropdown {
    text-align: start;
  }

  .social-icons {
    margin: 30px auto 0px;
    padding: 0px 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .social-box {
    margin: 0px 11px !important;
  }

  .download-btns,
.lang-dropdown {
    text-align: center !important;
  }

  /* .lang-dropdown {
      margin-bottom: 0px !important;
  } */
  .footer-card {
    margin-bottom: 40px !important;
    /* padding-left: 15px !important; */
  }

  .footer-social {
    /* display: grid !important; */
  }

  .Arrows {
    margin-top: 20px;
  }

  .owl-row {
    margin-right: -15px !important;
  }

  .owl-carousel .owl-prev {
    right: 47px;
  }

  .owl-carousel .owl-next {
    right: -13px;
  }

  .download-btns {
    padding-left: 32px !important;
  }

  .language-btn {
    /* margin-left: -25px; */
  }

  .lang-block {
    width: 100% !important;
  }

  .lang-dropdown {
    margin-top: 0px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 992px) {
  #navbarTogglerDemo01 {
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    margin-bottom: 0px !important;
  }

  .arrow-btn {
    margin-top: -12% !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    margin-right: 15px !important;
  }

  .footer-box {
    display: flex;
    padding-right: 0px;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 400px !important;
    height: 225px !important;
    max-height: 225px !important;
    max-width: 400px !important;
  }

  #live-channels-slider .owl-stage-outer .owl-stage {
    height: 275px !important;
    /* overflow: hidden; */
  }

  #popular-slider .owl-stage-outer .owl-stage,
#recent-cards .owl-stage-outer .owl-stage {
    height: 250px !important;
    /* overflow-y: hidden !important; */
  }

  .movies-title {
    font-size: 40px;
  }

  .thumbnails label {
    max-width: 95px;
  }

  .image-container {
    width: 472px;
  }

  .social-icons {
    /* margin: 30px auto 0px; */
    padding: 0px 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .social-box {
    margin: 0px 11px !important;
  }

  .lang-dropdown {
    text-align: start;
  }

  .movie-box {
    padding-top: 20px;
    padding-bottom: 50px;
    text-align: center;
    padding-right: 0px;
  }

  .image-gallery {
    margin: 30px 78px;
  }

  .videos-block {
    margin: 30px 120px;
  }

  .video-desc {
    text-align: center;
    padding-left: 0px;
    padding-bottom: 50px;
  }

  .owl-carousel .owl-prev,
.owl-carousel .owl-next {
    top: -59px !important;
  }
}
@media screen and (min-width: 1020px) {
  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    margin-right: 15px !important;
  }

  .footer-box {
    display: flex;
    padding-right: 0px;
  }

  details > p {
    margin-right: 95px !important;
  }

  .tiles img {
    width: 147px;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 579px !important;
    height: 324px !important;
    max-height: 324px !important;
    max-width: 579px !important;
  }

  .faq-content {
    width: 691px;
    margin: 0 auto;
  }

  .trail-day {
    padding: 5% 5px 1% !important;
  }

  #title {
    padding: 1% 5px 0% !important;
  }

  #header {
    padding: 1% 0px 1% !important;
  }
}
@media only screen and (min-width: 990px) and (max-width: 1024px) {
  .image-gallery .owl-dots .owl-dot img {
    width: 95px !important;
  }

  #popular-slider .owl-stage-outer .owl-stage .owl-item,
#recent-cards .owl-stage-outer .owl-stage .owl-item,
#most-watched .owl-stage-outer .owl-stage .owl-item,
#live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    margin-right: 15px !important;
  }

  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 579px !important;
    height: 326px !important;
    max-height: 326px !important;
    max-width: 579px !important;
  }

  .movies-title {
    font-size: 40px;
  }

  .thumbnails label {
    max-width: 95px;
  }

  .image-container {
    width: 472px;
  }

  .social-icons {
    margin-right: 40px;
  }

  .lang-dropdown {
    text-align: start;
  }

  .movie-box {
    padding-right: 90px;
  }

  .movie-images {
    height: 600px;
  }

  .image-gallery {
    margin: 95px auto;
    width: 500px;
    margin-left: -10% !important;
  }

  .image-gallery .owl-dots .owl-dot {
    width: 97px;
  }

  .image-gallery .owl-dots .owl-dot img {
    width: 94.5px;
  }

  #live-channels-slider .owl-stage-outer .owl-stage {
    height: 375px;
    /* overflow-y: hidden; */
  }

  #lightbox-slider.owl-dots .owl-dot {
    width: 97px;
  }

  .owl-carousel .owl-prev {
    right: 253px !important;
  }

  .faq-content {
    width: 691px;
    margin: 0 auto;
  }

  .live-section {
    height: 531px;
  }
}
@media only screen and (min-width: 375px) and (max-width: 401px) {
  #live-channels-slider .owl-stage-outer .owl-stage .owl-item {
    width: 337px !important;
    margin-bottom: 0px;
  }
}
@font-face {
  font-family: Tv2z-Bold;
  src: url('font_bold.ttf');
}
@font-face {
  font-family: Tv2z-Medium;
  src: url('TV2ZFont--Medium.ttf');
}
@font-face {
  font-family: Tv2z-Regular;
  src: url('font_regular.ttf');
}
@font-face {
  font-family: Tv2z-Light;
  src: url('TV2ZFont-Light.ttf');
}
/* @font-face {
    font-family: Tv2z-SemiBold;
    src: url(../fonts/TV2ZFont-SemiBold.ttf);
} */
