.container {
  max-width: 1500px;
  width: 98%;
  margin: 0 auto;
  padding: 0 25px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 10px;
  }
}

.mainTitle {
  font-size: 16px;
  font-weight: 500;
  color: #29F87E;
  font-style: italic;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1;
}
.mainTitle.mobileItrotext {
  max-width: 70%;
}
@media (max-width: 767px) {
  .mainTitle.mobileItrotext {
    max-width: 80%;
  }
}
@media (max-width: 768px) {
  .mainTitle {
    font-size: 12px;
  }
}

.features {
  padding-left: 0;
  display: flex;
  list-style: none;
  padding-top: 16px;
  min-height: 60px;
}
@media (max-width: 768px) {
  .features {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 30px;
    justify-content: space-between;
  }
  .features .features__items {
    flex: 1 1;
    max-width: 100%;
    border-right: none;
  }
}
@media (max-width: 767px) {
  .features {
    display: none;
  }
}
.features__imgWrap {
  line-height: 0;
}
.features__imgWrap img {
  margin-right: 9px;
}
.features__items {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 200px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.features__items:last-child {
  margin-right: 0;
  border-right: 0px;
  justify-content: flex-start;
}
.features__title {
  font-size: 12px;
  font-weight: 500;
  line-height: 13px;
  color: #fff;
  margin: 0 0 4px 0;
}
.features__textwrap {
  width: calc(100% - 45px);
}
.features__subtitle {
  font-size: 11px;
  font-weight: 400;
  color: #CBADFF;
  margin: 0;
  line-height: 13px;
  margin-top: 2px;
}
.features .featuresStreamingOptions {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 15px;
  margin-top: 12px;
}

.subscriptionPlansWrapper {
  min-height: 900px;
}

.subscriptionPlans {
  margin-top: 25px;
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .subscriptionPlans {
    margin-top: 10px;
  }
}
.subscriptionPlans__cont {
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.subscriptionPlans__wrapper {
  height: 100%;
  position: relative;
}
.subscriptionPlans__wrapper::before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(255, 255, 255, 0.15);
  border: solid 1px rgba(255, 255, 255, 0.2);
  z-index: 1;
  padding: 16px;
  -webkit-backdrop-filter: blur(14px) brightness(100%);
          backdrop-filter: blur(14px) brightness(100%);
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
}
.subscriptionPlans__wrapper div {
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.subscriptionPlans__wrapper div .plansHeadingWrap {
  position: relative;
  background: rgb(158, 26, 255);
  background: linear-gradient(250deg, rgba(158, 26, 255, 0.4) 0%, rgba(89, 7, 224, 0.4) 100%);
  padding: 8px 15px 10px;
  border-radius: 6px 6px 0px 0px;
}
.subscriptionPlans__wrapper div .planDetailsWrapContent {
  padding: 15px 15px 20px;
}
@media (max-width: 767px) {
  .subscriptionPlans__wrapper div .planDetailsWrapContent {
    padding: 15px 15px 0px;
  }
}
.subscriptionPlans__wrapper h5 {
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.2;
  margin: 0;
  color: #fff;
  text-shadow: 2px 2px 0 black;
}
.subscriptionPlans__wrapper p {
  font-weight: 400;
  font-size: clamp(12px, 1.6vw, 15px);
  line-height: 1.3;
  color: #fff;
  margin-top: 0;
  margin-bottom: clamp(8px, 1.5vw, 10px);
  min-height: 42px;
  /* overflow-x: hidden;
  text-overflow: ellipsis; */
}
@media (max-width: 600px) {
  .subscriptionPlans__wrapper p {
    min-height: 0;
  }
}
.subscriptionPlans__sublist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -4px 20px;
}
.subscriptionPlans__sublist li {
  width: 20%;
  padding: 4px;
  line-height: 0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  display: inline-flex;
}
.subscriptionPlans__sublist li.currentPlanActive {
  position: relative;
}
.subscriptionPlans__sublist li.currentPlanActive::after {
  right: 10px;
  width: 21px;
  bottom: 10px;
  height: 21px;
  content: "";
  position: absolute;
  background: #29F87E;
  border-radius: 2px;
}
.subscriptionPlans__sublist li.currentPlanActive::before {
  right: 18px;
  width: 6px;
  bottom: 15px;
  height: 12px;
  content: "";
  z-index: 1;
  position: absolute;
  transform: rotate(45deg);
  border-right: solid 2px #000;
  border-bottom: solid 2px #000;
}
.subscriptionPlans__sublist li img {
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.subscriptionPlans__sublist li span[data-more] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}
.subscriptionPlans__sublist li span[data-more]:after {
  content: attr(data-more);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  text-align: center;
  color: #29F87E;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 600px) {
  .subscriptionPlans__sublist li {
    width: 25%;
  }
}
.subscriptionPlans__amount p {
  display: flex;
  font-weight: 500;
  line-height: 0.9;
  color: #fff;
  font-size: clamp(16px, 1vw, 22px);
  min-height: 0;
  margin: 0;
}
.subscriptionPlans__amount p span {
  font-weight: 500;
  padding: 0;
}
.subscriptionPlans__amount p strong {
  font-size: clamp(12px, 1.5vw, 14px);
  padding-top: 0px;
}
.subscriptionPlans__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8px;
  border-top: dashed 1px rgba(255, 255, 255, 0.2);
  min-height: 134px;
  margin-top: auto;
}
.subscriptionPlans .subscriptionCard {
  padding: 8px;
}

.badge {
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #fff;
}
.badge__red {
  color: #29F87E;
  display: inline;
}

.btn__primary {
  background: #29F87E;
  border-radius: 4px;
  color: #000;
  font-size: 15px;
  text-align: center;
  padding: 5px 10px;
  font-weight: 500;
  line-height: 1.8;
  cursor: pointer;
  transition: 0.2s all;
  border: 1px solid transparent;
  white-space: nowrap;
}
@media (max-width: 1720px) {
  .btn__primary {
    font-size: clamp(12px, 1.3vw, 14px);
    padding: 5px 6px;
  }
}
@media (max-width: 718px) {
  .btn__primary {
    font-size: clamp(13px, 1.5vw, 12px);
  }
}
.btn__primary svg {
  margin-left: 4px;
  margin-bottom: -1px;
}
.btn__primary:hover {
  background-color: #130726;
  border: 1px solid #29F87E;
  color: #29F87E;
}
.btn__primary:hover svg line {
  stroke: #29F87E;
}

.footerMoreInfo {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 9px 14px 12px;
  background-color: rgba(1, 0, 20, 0.35);
}
@media (max-width: 767px) {
  .footerMoreInfo {
    padding: 9px 7px 12px;
  }
}

.footerMarketPriceWrap {
  display: flex;
  flex-direction: column;
}
.footerMarketPriceWrap .marketPricePlans {
  font-size: 16px;
  color: #DFD2FC;
  font-weight: 500;
}
@media (max-width: 1720px) {
  .footerMarketPriceWrap .marketPricePlans {
    font-size: 14px;
  }
}
.footerMarketPriceWrap .saveUptoPlans {
  font-size: 14px;
  font-weight: 400;
  color: #29F87E;
}
@media (max-width: 1720px) {
  .footerMarketPriceWrap .saveUptoPlans {
    font-size: 13px;
  }
}

.moreInfoBtn {
  font-size: 15px;
  color: #29F87E;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 1720px) {
  .moreInfoBtn {
    font-size: 13px;
  }
}

.moreInfoIconPlans {
  background: url(https://images.ottplay.com/static/newImages/moreInfoPlans.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: -25px;
}
@media (max-width: 767px) {
  .moreInfoIconPlans {
    left: -19px;
  }
}

.lightningDealBtnWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: rgba(42, 22, 81, 0.7);
  border-radius: 8px;
}

.lighteningDealAmount {
  display: flex;
  flex-direction: column;
  padding: 8px 8px;
  flex: 1 0 25%;
}

.cutoffAmount {
  font-size: 17px;
  font-weight: 500;
  color: #C6ADFC;
  position: relative;
}
@media (max-width: 1600px) {
  .cutoffAmount {
    font-size: 14px;
  }
}
.cutoffAmount::after {
  content: "";
  position: absolute;
  width: 50%;
  top: 54%;
  left: 30%;
  height: 2px;
  background: #f81351;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.actualAmount {
  font-size: clamp(16px, 1vw, 22px);
  font-weight: 500;
  color: #ffffff;
}

.lighteningDealSubmit {
  background-color: #29F87E;
  padding: 40px 10px 10px;
  position: relative;
  border-radius: 0px 8px 8px 0px;
  font-size: 17px;
  font-weight: 600;
  color: #000;
  flex: 1 0 65%;
}
@media (max-width: 767px) {
  .lighteningDealSubmit {
    font-size: 13px;
  }
}
.lighteningDealSubmit svg {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.lighteningDealSubmit sup {
  font-size: 12px;
}

.lightningDealText {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(260deg, #FF3372 0%, #E417BF 62%, #CD00FF 100%);
  padding: 6px 22px 6px 13px;
  border-radius: 10px 35px 35px 10px;
  position: absolute;
  left: -2px;
  top: 6px;
  font-weight: 500;
}

.subcribeFullWidth {
  display: inline-block;
  width: 100%;
}

.lightningIcon {
  position: absolute;
  top: 0px;
  left: -6px;
  background: url(https://images.ottplay.com/static/newImages/lightningDealIcon.svg) no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}

.popupOverly {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
}

.moreInfoPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 25px 25px 20px;
  background: #fff;
  border-radius: 15px;
  text-align: center;
  width: 100%;
  max-width: 567px;
  z-index: 9991;
  max-height: 90vh;
  overflow-y: auto;
}
@media (max-width: 767px) {
  .moreInfoPopup {
    max-height: 85vh;
    top: 50px;
    left: 0;
    transform: inherit;
  }
}

.popupHead {
  font-size: 26px;
  color: #000000;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #E5E4F5;
  padding-bottom: 15px;
}
@media (max-width: 600px) {
  .popupHead {
    font-size: 22px;
  }
}

.plansAccordionContent {
  margin: 0;
  padding: 5px 15px 0 0;
  list-style-type: none;
  width: 100%;
}
@media (max-width: 600px) {
  .plansAccordionContent {
    padding: 5px 0px 0 0;
  }
}

.plansAccordionList {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 6px 0;
}
.plansAccordionList > span {
  font-size: 18px;
  color: #4E3777;
  font-weight: 500;
}
@media (max-width: 600px) {
  .plansAccordionList > span {
    font-size: 16px;
  }
}
.plansAccordionList > span > sup {
  font-size: 14px;
}
.plansAccordionList > span.totalText {
  font-size: 24px;
  font-weight: 500;
  color: #100721;
}
@media (max-width: 600px) {
  .plansAccordionList > span.totalText {
    font-size: 18px;
  }
}
.plansAccordionList > span.totalText {
  font-size: 24px;
  color: #100721;
}
@media (max-width: 600px) {
  .plansAccordionList > span.totalText {
    font-size: 18px;
  }
}
.plansAccordionList > span.totalAmount {
  font-size: 24px;
  color: #100721;
  display: flex;
  flex-direction: column;
  text-align: right;
}
@media (max-width: 600px) {
  .plansAccordionList > span.totalAmount {
    font-size: 18px;
  }
}
.plansAccordionList > span.totalAmount .totalSavings {
  padding: 4px 15px;
  font-size: 16px;
  background-color: #29F87E;
  border-radius: 5px;
}
@media (max-width: 600px) {
  .plansAccordionList > span.totalAmount .totalSavings {
    font-size: 14px;
  }
}
.plansAccordionList > span.totalAmount > span sup {
  font-size: 17px;
}
@media (max-width: 600px) {
  .plansAccordionList > span.totalAmount > span sup {
    font-size: 15px;
  }
}
.plansAccordionList:last-child {
  align-items: flex-start;
  padding-top: 20px;
  position: relative;
}
.plansAccordionList:last-child::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  border-top: 1px solid #E5E4F5;
}

.redAsteriskPlans {
  color: #F81351;
}

.yellowAsteriskPlans {
  color: #FFA700;
}

.perYearFlex {
  display: inline-flex;
  flex-direction: column;
  font-size: 11px;
  line-height: 1;
  margin-top: -4px;
}

.popupBottom {
  padding: 20px 0 0;
  border-top: 1px solid #E5E4F5;
  margin: 0;
  list-style: none;
}
.popupBottom li {
  font-size: 14px;
  color: #4E3777;
  font-weight: 400;
  text-align: left;
}

.popupCross {
  top: 5px;
  right: 15px;
  width: 40px;
  cursor: pointer;
  height: 40px;
  position: fixed;
  transform: rotate(45deg);
  transition: 0.3s;
  z-index: 9991;
}
@media (max-width: 900px) {
  .popupCross {
    top: 3px;
  }
}
.popupCross::before {
  top: 50%;
  left: 50%;
  width: 2px;
  height: 20px;
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  background: #ffffff;
}
.popupCross::after {
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  content: "";
  position: absolute;
  transform: translate(-50%, -50%);
  background: #ffffff;
}

.w100 {
  max-width: 23%;
  width: 100%;
}

.subPageHead {
  margin: 0;
}
.subPageHead img {
  max-width: 100%;
}
.subPageHead.planPagehead img {
  width: 50%;
}
@media (max-width: 1025px) {
  .subPageHead.planPagehead {
    padding-top: 0vh;
  }
}
@media (max-width: 600px) {
  .subPageHead.planPagehead {
    line-height: 0;
    padding-bottom: 0;
  }
  .subPageHead.planPagehead img {
    width: 160px;
    min-height: 55px;
  }
}

.offerPrice {
  position: relative;
  color: rgba(255, 255, 255, 0.5);
  margin-right: 18px;
  display: inline-flex;
  font-weight: 300;
}
.offerPrice::before {
  content: "*";
  position: absolute;
  top: 0%;
  left: 100%;
  color: #29F87E;
  margin-left: 6px;
  font-size: 22px;
}
.offerPrice:after {
  content: "";
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  height: 2px;
  background: #F81351;
  transform: translate(-50%, -50%) rotate(-15deg);
}

.tvComingSoonWrap {
  display: flex;
  margin-top: 45px;
  align-items: center;
}
.tvComingSoonWrap p {
  color: #fff;
  font-size: 16px;
  padding-left: 15px;
  margin: 0;
}
.tvComingSoonWrap p a {
  color: #29F87E;
  text-decoration: underline;
}

.recommendedTag {
  position: absolute;
  top: 12px;
  right: -5px;
  background: linear-gradient(90deg, rgb(205, 0, 255) 0%, rgb(255, 51, 114) 100%);
  display: inline-block;
  padding: 1px 10px 3px 5px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.recommendedTag:after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 5px solid rgb(255, 51, 114);
  border-right: 5px solid transparent;
}
.recommendedTag:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid rgb(255, 51, 114);
  border-right: 5px solid transparent;
}
.recommendedTag i:after {
  content: "";
  position: absolute;
  top: 0%;
  right: 100%;
  width: 0;
  height: 0;
  border-top: 17px solid rgb(205, 0, 255);
  border-left: 6px solid transparent;
}
.recommendedTag i:before {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 100%;
  width: 0;
  height: 0;
  border-bottom: 17px solid rgb(205, 0, 255);
  border-left: 6px solid transparent;
}

.freeTrailTag {
  position: absolute;
  top: 11px;
  right: -5px;
  background: linear-gradient(90deg, rgb(41, 248, 126) 29%, rgb(79, 255, 151) 42%, rgb(41, 248, 126) 57%);
  display: inline-block;
  padding: 1px 10px 3px 5px;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
}
.freeTrailTag:after {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 5px solid #582386;
  border-right: 5px solid transparent;
}
.freeTrailTag:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid #582386;
  border-right: 5px solid transparent;
}
.freeTrailTag i:after {
  content: "";
  position: absolute;
  top: 0%;
  right: 100%;
  width: 0;
  height: 0;
  border-top: 17px solid #29f87e;
  border-left: 6px solid transparent;
}
.freeTrailTag i:before {
  content: "";
  position: absolute;
  bottom: 0%;
  right: 100%;
  width: 0;
  height: 0;
  border-bottom: 17px solid #29f87e;
  border-left: 6px solid transparent;
}

.wrapMazePremium {
  display: flex;
  margin-top: 30px;
  position: relative;
}
.wrapMazePremium .premiumLogoPlan {
  margin-right: 30px;
  width: 160px;
}
.wrapMazePremium .premiumLogoPlan img {
  width: 100%;
}
@media (max-width: 767px) {
  .wrapMazePremium .premiumLogoPlan img {
    display: none;
  }
}
@media (max-width: 786px) {
  .wrapMazePremium {
    flex-wrap: wrap;
  }
  .wrapMazePremium .premiumLogoPlan {
    margin-bottom: 10px;
    width: 130px;
  }
}
@media (max-width: 767px) {
  .wrapMazePremium {
    margin-top: 0px;
  }
  .wrapMazePremium .premiumLogoPlan {
    margin-bottom: 0;
  }
}

.wrapMobileWatchtext {
  display: none;
}
@media (max-width: 767px) {
  .wrapMobileWatchtext {
    display: block;
    position: relative;
  }
  .wrapMobileWatchtext .mobileAvailableOptions {
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 10px;
  }
  .wrapMobileWatchtext .mobileAvailableOptions img {
    width: 567px;
  }
}
.wrapMobileWatchtext h3 {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.watchOntvMobile {
  width: 59px;
  height: 25px;
  background: url("https://images.ottplay.com/static/subscriptionimages/watchOnTvicon.svg") no-repeat;
}

.subscriptions__footer {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  padding: 0 13px 0;
}
.subscriptions__footer h4 {
  font-size: 14px;
  color: #fff;
  font-weight: normal;
  margin: 0 0 20px;
}
@media (max-width: 767px) {
  .subscriptions__footer h4 {
    text-align: left;
    border-top: 1px #fff dotted;
    padding-top: 15px;
  }
}
.subscriptions__footer button {
  width: 100%;
}

.featurestitle {
  color: #fff;
  margin: 20px 0 0;
}
@media (max-width: 767px) {
  .featurestitle {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

.mazeKaroMultiplyText {
  font-size: 32px;
  margin: 0;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  padding-bottom: 9px;
  line-height: 38px;
}
@media (max-width: 600px) {
  .mazeKaroMultiplyText {
    font-size: 24px;
    line-height: 30px;
  }
}

.subscribetxtRow {
  display: flex;
  width: 100%;
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}

