﻿@charset "UTF-8";
/* Slick slider styles */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.icon-Arrow_left:before {
  content: "\e912";
  font-size: 1.5rem;
}

.icon-Arrow_right:before {
  content: "\e913";
  font-size: 1.5rem;
}

.slick-arrow.slick-hidden {
  display: none;
}

@keyframes slide-top {
  0% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-bottom {
  0% {
    transform: translateY(80%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes appear-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes appear-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes appear-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes appear-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-popout-topleft {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: top left;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-topright {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: top right;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-bottomleft {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom left;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-bottomright {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes no-animation {
  0% {
    opacity: 1;
    transform: scale(100%);
    top: 0px;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
    top: 0px;
  }
}
.slider-up {
  position: relative;
}

.slider-up.top.in-view {
  animation: slide-top 4s linear;
}

.slider-up.left.in-view {
  animation: slide-left 4s linear;
}

.slider-up.right.in-view {
  animation: slide-right 4s linear;
}

.slider-up.bottom.in-view {
  animation: slide-bottom 4s linear;
}

.image-slide {
  position: relative;
}

.image-slide.right.in-view {
  animation: appear-right 2s linear;
}

.image-slide.left.in-view {
  animation: appear-left 2s linear;
}

.image-slide.top.in-view {
  animation: appear-top 2s linear;
}

@media (max-width: 992px) {
  .slider-up {
    animation: no-animation 0s linear;
  }
}

.slider-up.right.in-view {
  animation: slide-right 4s linear;
}
@media (max-width: 992px) {
  .slider-up.right.in-view {
    animation: no-animation 0s linear;
  }
}

.slider-up.bottom.in-view {
  animation: slide-bottom 4s linear;
}
@media (max-width: 992px) {
  .slider-up.bottom.in-view {
    animation: no-animation 0s linear;
  }
}

.slider-up.popout-top-left.in-view {
  animation: slide-popout-topleft 2s linear;
}
@media (max-width: 992px) {
  .slider-up.popout-top-left.in-view {
    animation: no-animation 0s linear;
  }
}

.slider-up.popout-top-right.in-view {
  animation: slide-popout-topright 2s linear;
}
@media (max-width: 992px) {
  .slider-up.popout-top-right.in-view {
    animation: no-animation 0s linear;
  }
}

.slider-up.popout-bottom-left.in-view {
  animation: slide-popout-bottomleft 2s linear;
}
@media (max-width: 992px) {
  .slider-up.popout-bottom-left.in-view {
    animation: no-animation 0s linear;
  }
}

.slider-up.popout-bottom-right.in-view {
  animation: slide-popout-bottomright 2s linear;
}
@media (max-width: 992px) {
  .slider-up.popout-bottom-right.in-view {
    animation: no-animation 0s linear;
  }
}

.image-slide {
  position: relative;
}

.image-slide.right.in-view {
  animation: appear-right 3s linear;
}

.image-slide.left.in-view {
  animation: appear-left 3s linear;
}

.image-slide.top.in-view {
  animation: appear-top 3s linear;
}

.image-slide.bottom.in-view {
  animation: appear-bottom 3s linear;
}

/* custom select styles */
.jcf-select {
  display: inline-block;
  vertical-align: top;
  position: relative;
  border: 1px solid #777;
  background: #fff;
  margin: 0 0 12px;
  min-width: 150px;
  height: 26px;
}

.jcf-select select {
  z-index: 1;
  left: 0;
  top: 0;
}

.jcf-select .jcf-select-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  display: block;
  font-size: 13px;
  line-height: 26px;
  margin: 0 35px 0 8px;
}

.jcf-select .jcf-select-opener {
  position: absolute;
  text-align: center;
  background: #aaa;
  width: 26px;
  bottom: 0;
  right: 0;
  top: 0;
}

body > .jcf-select-drop {
  position: absolute;
  margin: -1px 0 0;
  z-index: 9999;
}

body > .jcf-select-drop.jcf-drop-flipped {
  margin: 1px 0 0;
}

.jcf-select .jcf-select-drop {
  position: absolute;
  margin-top: 0px;
  z-index: 9999;
  top: 100%;
  left: -1px;
  right: -1px;
}

.jcf-select .jcf-drop-flipped {
  bottom: 100%;
  top: auto;
}

/* multiple select styles */
.jcf-list-box {
  overflow: hidden;
  display: inline-block;
  border: 1px solid #b8c3c9;
  min-width: 200px;
  margin: 0 15px;
}

/* select options styles */
.jcf-list {
  display: inline-block;
  vertical-align: top;
  position: relative;
  background: #fff;
  line-height: 14px;
  font-size: 12px;
  width: 100%;
}

.jcf-list .jcf-list-content {
  vertical-align: top;
  display: inline-block;
  overflow: auto;
  width: 100%;
}

.jcf-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jcf-list ul li {
  overflow: hidden;
  display: block;
}

.jcf-list .jcf-overflow {
  overflow: auto;
}

.jcf-list .jcf-option {
  overflow: hidden;
  cursor: default;
  display: block;
  padding: 5px 9px;
  color: #656565;
  height: 1%;
}

.jcf-list .jcf-disabled {
  background: #fff !important;
  color: #aaa !important;
}

.jcf-select-drop .jcf-hover,
.jcf-list-box .jcf-selected {
  background: #e6e6e6;
  color: #000;
}

.jcf-list .jcf-optgroup-caption {
  white-space: nowrap;
  font-weight: bold;
  display: block;
  padding: 5px 9px;
  cursor: default;
  color: #000;
}

.jcf-list .jcf-optgroup .jcf-option {
  padding-left: 30px;
}

/* common custom form elements styles */
.jcf-disabled {
  background: #ddd !important;
}

/* Slick slider styles */
.accordion-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.accordion-slider .slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  /* margin: 0;
  padding: 0;*/
}
.accordion-slider .slick-list:focus {
  outline: none;
}
.accordion-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.accordion-slider .slick-track,
.accordion-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.accordion-slider.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
  border-right: 10px solid white;
}
[dir=rtl] .accordion-slider.slick-slide {
  float: right;
}
.accordion-slider.slick-slide img {
  display: block;
}
.accordion-slider.slick-slide.slick-loading img {
  display: none;
}
.accordion-slider.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .accordion-slider.slick-slide {
  display: block;
}
.slick-loading .accordion-slider.slick-slide {
  visibility: hidden;
}
.slick-vertical .accordion-slider.slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

@keyframes slide-top {
  0% {
    transform: translateY(-80%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-left {
  0% {
    transform: translateX(-80%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-right {
  0% {
    transform: translateX(80%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slide-bottom {
  0% {
    transform: translateY(80%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes appear-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes appear-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes appear-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes appear-bottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slide-popout-topleft {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: top left;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-topright {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: top right;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-bottomleft {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom left;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
@keyframes slide-popout-bottomright {
  0% {
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
  }
  100% {
    opacity: 1;
    transform: scale(100%);
  }
}
.slider-up {
  position: relative;
}

.slider-up.top.in-view {
  animation: slide-top 4s linear;
}

.slider-up.left.in-view {
  animation: slide-left 4s linear;
}

.slider-up.right.in-view {
  animation: slide-right 4s linear;
}

.slider-up.bottom.in-view {
  animation: slide-bottom 4s linear;
}

.image-slide {
  position: relative;
}

.image-slide.right.in-view {
  animation: appear-right 2s linear;
}

.image-slide.left.in-view {
  animation: appear-left 2s linear;
}

.image-slide.top.in-view {
  animation: appear-top 2s linear;
}

.slider-up.right.in-view {
  animation: slide-right 4s linear;
}

.slider-up.bottom.in-view {
  animation: slide-bottom 4s linear;
}

.slider-up.popout-top-left.in-view {
  animation: slide-popout-topleft 2s linear;
}

.slider-up.popout-top-right.in-view {
  animation: slide-popout-topright 2s linear;
}

.slider-up.popout-bottom-left.in-view {
  animation: slide-popout-bottomleft 2s linear;
}

.slider-up.popout-bottom-right.in-view {
  animation: slide-popout-bottomright 2s linear;
}

.image-slide {
  position: relative;
}

.image-slide.right.in-view {
  animation: appear-right 3s linear;
}

.image-slide.left.in-view {
  animation: appear-left 3s linear;
}

.image-slide.top.in-view {
  animation: appear-top 3s linear;
}

.image-slide.bottom.in-view {
  animation: appear-bottom 3s linear;
}

/*Animated slider css */
.slick-dotter {
  margin: auto;
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  min-width: 132px;
  height: 27px;
  background-color: black;
  border-radius: 45px;
}

.slick-dotter ul {
  list-style-type: disc;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slick-dotter li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 0.9375rem;
  height: 0.9375rem;
  padding: 0.3125rem;
  cursor: pointer;
  color: transparent;
  outline: none;
  border: none;
  background: rgba(47, 31, 22, 0.5);
  border-radius: 25px;
}

.slick-dotter li.slick-active button {
  background-color: #fff !important;
  width: 30px;
  height: 8px;
}

.slick-dotter li {
  display: inline-block;
}

.slick-dotter button {
  margin: 0 0.5rem;
}

/*        .slick-dotter .slick-active button:before {
                transition: background 1s ease;
                background: white;
            }
    */
/*.slick-dotter .slick-active button:after {
                width: 14px;
                height: 14px;
                border-color: #6D6D6D;
            }*/
.slick-dotter button {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  background-color: transparent;
  opacity: 1;
  border: none;
  background-color: transparent;
  text-indent: -9999px;
}

.slick-dotter button:focus {
  outline: none;
}

.slick-dotter button:hover:before {
  background: #6D6D6D;
}

.slick-active .slick-dotter button:before {
  transition: background 1s ease;
  background: #6D6D6D;
}

.slick-active .slick-dotter button:after {
  width: 14px;
  height: 14px;
  border-color: #6D6D6D;
}

.slick-dotter button:before {
  transition: background 1s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.slick-dotter button:after {
  transition: border 0.5s ease, width 0.5s ease, height 0.5s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 50%;
  width: 0;
  height: 0;
}

.slick-flex {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apps-block .logo-list, .footer-list ul, .footer-list, .app-list, .share-list, .search-holder .search-list ul, .search-holder .search-list, .compare-package-item-list, .hero-section-slider .top-section-list,
.hero-section-fullscreen-bg .top-section-list, .separated-list, .package-included-list, .genre, .numbered-list, .social-media,
.footer-nav,
.social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.ellipsis {
  white-space: nowrap; /* 1 */
  text-overflow: ellipsis; /* 2 */
  overflow: hidden;
}

.bg-wrap-decoderinfo {
  background-repeat: no-repeat;
  background-size: cover;
}

h1, .h1 {
  margin-bottom: 1.1875rem;
}
@media (min-width: 768px) {
  h1, .h1 {
    font-size: 3rem;
    margin-bottom: 0;
  }
}

h2, .h2 {
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 2.375rem;
  }
}

h3, .h3 {
  line-height: 1.28;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  h5, .h5 {
    font-size: 1.25rem;
  }
}

h6, .h6 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  h6, .h6 {
    font-size: 1.125rem;
  }
}

.btn-holder {
  display: flex;
}
@media (min-width: 992px) {
  .btn-holder .btn + .btn {
    margin-left: 1.875rem;
  }
}
.btn-holder .btn {
  flex: 0 1 auto;
}
@media (min-width: 768px) {
  .btn-holder .btn {
    flex: 0 0 auto;
  }
}
.btn-holder .btn:only-child {
  flex: 0 0 auto;
  margin: 0;
}
.btn-holder span:only-child {
  margin: 0;
}
.btn-holder span[class^=icon] {
  margin-right: 10px;
}

.packagePrice .value-holder {
  line-height: 100%;
}
.packagePrice .h2 {
  margin-bottom: 1.1875rem;
}
@media (min-width: 992px) {
  .packagePrice .h2 {
    margin-bottom: 1.875rem;
  }
}
.packagePrice .btn-holder {
  padding: 0.4375rem 0;
}
@media (max-width: 575.98px) {
  .packagePrice.oneBtn .btn-holder {
    justify-content: flex-end;
  }
}
@media (max-width: 575.98px) {
  .packagePrice .btn {
    min-width: 140px !important;
    padding: 0.6rem 1.2rem !important;
  }
}

.constant-ml .btn + .btn {
  margin: 1rem 1.875rem 0 0;
}
@media (min-width: 448px) {
  .constant-ml .btn + .btn {
    margin: 0 0 0 1.875rem;
  }
}

.btn-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  padding: 0;
}

.btn {
  position: relative;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .btn {
    font-size: 1.125rem;
  }
}
.btn [class^=icon] {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-top: 0.2rem;
  font-size: 1.25rem;
  margin-right: 0.3125rem;
  margin-top: -0.1875rem;
}

.btn-with-icon {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn-dark {
  background: #0A121D;
  border-color: transparent;
}
.btn-dark:hover {
  background: #0095DA;
  border-color: transparent;
}

.btn-md {
  font-size: 1rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (min-width: 768px) {
  .btn-md {
    min-width: 206px;
  }
}
@media (min-width: 992px) {
  .btn-md {
    font-size: 1.125rem;
  }
}

/*$letter-spacing:          1px !default;*/
@media all and (max-width: 990px) {
  .v-align-children {
    display: block !important;
  }
}
.v-align-transform {
  position: relative;
  top: 50%;
  z-index: 2;
}

.v-align-transform-container {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 100%;
}

.article-holder {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .article-holder {
    margin-bottom: 1.875rem;
  }
}
.article-holder [class^=col] {
  margin-bottom: 1.875rem;
}

.card.visual-card .card-image img {
  transition: 0.2s transform linear;
}

.card.visual-card:hover .card-image.zoomIn img {
  transform: scale(1.1);
}

.card-image {
  border-radius: 0.4rem;
  overflow: hidden;
  flex: 1 0 auto;
}

.article-card {
  border: none;
  overflow: hidden;
  border-radius: 0.4rem;
  background-color: transparent;
  color: #fff;
  font-size: 0.875rem;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
}
.article-card:hover:not(.video-card) {
  color: #0a121d;
}
.article-card:hover:not(.video-card) .article-card-image:not(.no-hover) {
  background-size: 106%;
}
.article-card:hover:not(.video-card) .card-body:before {
  opacity: 1;
}
.article-card:hover:not(.video-card) .card-title,
.article-card:hover:not(.video-card) p,
.article-card:hover:not(.video-card) span,
.article-card:hover:not(.video-card) strong {
  color: #0a121d;
}
.article-card:hover:not(.video-card) .date {
  color: rgba(10, 18, 29, 0.7);
}
.article-card:hover:not(.video-card) .article-description [class^=icon] {
  color: #179edd;
}
.article-card .article-description {
  transition: color 0.5s ease;
  display: block;
  font-size: 0.75rem;
  margin-bottom: 0.8125rem;
  line-height: 1.57;
}
.article-card .article-description [class^=icon] {
  font-size: 1rem;
  line-height: 17px;
}
.article-card .date {
  transition: color 0.5s ease;
  font-size: 0.75rem;
  float: right;
  color: rgba(255, 255, 255, 0.7);
}
.article-card p {
  transition: color 0.5s ease;
  color: rgba(255, 255, 255, 0.7);
}

.article-card-image {
  transition: background-size 0.3s ease;
  padding-top: 56%;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.251);
  margin-bottom: -0.9375rem;
  transform: scale(1);
  box-shadow: inset 0 0 50px rgba(10, 18, 29, 0.1);
}

.card-title {
  transition: color 0.5s ease;
  display: block;
  margin-bottom: 0.625rem;
  font-size: 1rem;
}

.card-body {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
  opacity: 1;
  background: transparent;
  height: 100%;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .card-body {
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    background: transparent;
  }
}
.sidebar .card-body {
  border: none;
}
.card-body:before {
  transition: opacity 0.5s ease, z-color 0.5s ease;
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: #fff;
  opacity: 0.05;
  border-radius: 0 0 5px 5px;
  z-index: -1;
}
.sidebar .card-body:before {
  background-color: #f2f2f3;
  opacity: 0.7;
}
.card-body [class^=icon] {
  color: #179edd;
  margin-right: 0.625rem;
}

.card-link {
  position: static;
  display: block;
  width: 0;
  height: 0;
  text-indent: -9999px;
  line-height: 0;
  z-index: 5;
}
.card-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.visual-card-holder,
.visual-card-link-holder {
  align-items: center;
}
.visual-card-holder p,
.visual-card-link-holder p {
  color: rgba(255, 255, 255, 0.7);
}
.visual-card-holder .btn-holder,
.visual-card-link-holder .btn-holder {
  white-space: nowrap;
  justify-content: space-between;
}
@media (max-width: 767.98px) {
  .visual-card-holder .btn-holder .btn:first-child,
  .visual-card-link-holder .btn-holder .btn:first-child {
    margin-right: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .visual-card-holder .btn-holder .btn:first-child,
  .visual-card-link-holder .btn-holder .btn:first-child {
    margin-right: 1.875rem;
  }
}
.visual-card-holder .btn-holder .btn-link,
.visual-card-link-holder .btn-holder .btn-link {
  padding-left: 0;
  padding-right: 0;
}
.visual-card-holder .btn-holder .cust-xl-mr-2,
.visual-card-link-holder .btn-holder .cust-xl-mr-2 {
  margin-right: 0;
}
@media (min-width: 1200px) {
  .visual-card-holder .btn-holder .cust-xl-mr-2,
  .visual-card-link-holder .btn-holder .cust-xl-mr-2 {
    margin-right: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .visual-card-text-holder {
    padding-right: 7.5rem;
  }
}
.visual-card-text-holder .h4 {
  margin-bottom: 1.6875rem;
}

.visual-card {
  height: 100%;
  background-color: transparent;
  border-radius: 7px;
}
.visual-card .card-image img {
  width: 100%;
}
.visual-card .visual-card-body {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .visual-card .visual-card-body {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}

.visual-card-link-holder .visual-card {
  transition: transform 0.5s ease;
  border: none;
  color: #fff;
  text-decoration: none;
}
.visual-card-link-holder .visual-card:hover .visual-card-link {
  color: #fff;
  text-decoration: none;
  transform: scale(0.9);
}
.visual-card-link-holder .visual-card-body {
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.102);
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .visual-card-link-holder .visual-card-body {
    font-size: 0.875rem;
    padding: 0 1.25rem;
    margin-bottom: 1rem;
  }
}
.visual-card-link-holder .visual-card-body .text {
  font-size: 0.625rem;
}
.visual-card-link-holder .visual-card-link-descriotion {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

.local-show-card:hover {
  z-index: 2;
}
.local-show-card .big-dropshadow-with-hover {
  position: relative;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.local-show-card .big-dropshadow-with-hover:after {
  content: "";
  width: 100%;
  height: calc(100% - 16px);
  background: transparent;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 0;
  box-shadow: 0px 0px 0px #000000;
  transition: box-shadow 0.3s ease;
}
@media (max-width: 991.98px) {
  .local-show-card .big-dropshadow-with-hover:after {
    height: calc(100% - 8px);
  }
}
.local-show-card .big-dropshadow-with-hover .zoomIn img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.local-show-card .big-dropshadow-with-hover:hover:after {
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.75);
}
.local-show-card .big-dropshadow-with-hover:hover .zoomIn img {
  transform: scale(1.1);
}

@media (max-width: 991.98px) {
  .visual-card-channels-holder .row {
    margin: 0 -0.375rem;
  }
}
@media (max-width: 991.98px) {
  .visual-card-channels-holder .col-3 {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
  }
}
.visual-card-channels-holder .visual-card-col {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .visual-card-channels-holder .visual-card-col {
    margin-bottom: 1rem;
  }
}
.visual-card-channels-holder .visual-card-body {
  padding: 0.3125rem 1.25rem;
}
.visual-card-channels-holder .visual-card-body img {
  max-height: 50px;
  max-width: 100%;
}
@media (min-width: 992px) {
  .visual-card-channels-holder .visual-card-body img {
    max-height: 60px;
  }
}

@media (max-width: 575px) {
  .visual-card-channels-holder .visual-card-body img {
    max-height: 60px;
  }
}

@media (min-width: 576px) {
  .kids-character-rt .visual-card-body img {
    max-height: 80px;
  }
}
@media (min-width: 992px) {
  .kids-character-rt .visual-card-body img {
    max-height: 60px;
  }
}

.visual-card-link {
  transition: transform 0.5s ease;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .visual-card-link {
    font-size: 0.875rem;
  }
}
.visual-card-link:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 1200px) {
  .advantages-section .visual-card-text-holder {
    margin-bottom: 0;
    padding-right: 7.5rem;
  }
}

.inline-YTPlayer {
  max-width: 100%;
}

.article-card-image.carousel-sell {
  width: 100%;
}

.pricing-card,
.decoders-card,
.chanel-card {
  background-color: transparent;
}
.pricing-card .value-holder span,
.decoders-card .value-holder span,
.chanel-card .value-holder span {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .pricing-card .value-holder span,
  .decoders-card .value-holder span,
  .chanel-card .value-holder span {
    font-size: 1.125rem;
  }
}
.pricing-card .value-holder .h1,
.decoders-card .value-holder .h1,
.chanel-card .value-holder .h1 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .pricing-card .value-holder .h1,
  .decoders-card .value-holder .h1,
  .chanel-card .value-holder .h1 {
    font-size: 2.375rem;
  }
}
.pricing-card .text-secondary-info,
.decoders-card .text-secondary-info,
.chanel-card .text-secondary-info {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
  .pricing-card .text-secondary-info,
  .decoders-card .text-secondary-info,
  .chanel-card .text-secondary-info {
    margin-bottom: 1.5625rem;
  }
}
.pricing-card ul,
.decoders-card ul,
.chanel-card ul {
  color: #00B9AF;
  margin-bottom: 1.75rem;
}
.pricing-card li,
.decoders-card li,
.chanel-card li {
  margin-bottom: 0.8125rem;
}
.pricing-card li span,
.decoders-card li span,
.chanel-card li span {
  color: #fff;
}
.pricing-card .btn,
.decoders-card .btn,
.chanel-card .btn {
  margin-top: auto;
  flex: 0 0 auto;
}
@media (max-width: 1199.98px) {
  .pricing-card p.h1,
  .decoders-card p.h1,
  .chanel-card p.h1 {
    font-size: 2.375rem;
  }
}
.pricing-card.bg-white,
.decoders-card.bg-white,
.chanel-card.bg-white {
  color: #0a121d;
}
.pricing-card .card-subtitle,
.decoders-card .card-subtitle,
.chanel-card .card-subtitle {
  display: block;
}
@media (min-width: 768px) {
  .pricing-card .card-subtitle,
  .decoders-card .card-subtitle,
  .chanel-card .card-subtitle {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}

/*Decoders card specifics*/
.decoders-card ul {
  color: #fff;
  list-style: disc !important;
}
.decoders-card ul li {
  color: #fff;
}
.decoders-card a {
  z-index: 999999999;
}
.decoders-card .list-info li:before {
  color: #0095da;
  top: -1px;
}
.decoders-card .slide {
  padding: 1.15rem 1.45rem;
}

.article-carousel00 .carousel-sell {
  height: 490px;
}
@media (min-width: 768px) {
  .article-carousel00 .carousel-sell {
    height: auto;
  }
}

/*Pricing card specifics*/
.pricing-card {
  font-size: 1rem;
}
.pricing-card p.h1 {
  margin: 0.5rem 0;
}
.pricing-card li.bold {
  font-weight: normal;
}
.pricing-card p.small {
  margin-bottom: 0.5rem;
  line-height: 100%;
}
.pricing-card .text-holder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 1.25rem;
}
.pricing-card .text-holder .subtitle {
  font-size: 1.75rem;
}

.ico-card-top {
  width: 50px;
  height: 50px;
  font-size: 1.875rem;
  border-radius: 50%;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00B9AF;
  top: -25px;
  left: 30px;
  position: absolute;
}

@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .blur {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}
.blur:before {
  transition: opacity 0.3s linear, z-color 0.3s linear;
  content: "";
  position: absolute;
  left: -2px;
  top: -1px;
  background: #fff;
  opacity: 0.05;
  border-radius: 0.3125rem;
  z-index: -1;
}
@supports (backdrop-filter: blur(0)) or (-webkit-backdrop-filter: blur(0)) {
  .blur:before {
    -webkit-backdrop-filter: blur(0);
    backdrop-filter: blur(0);
  }
}
.blur.btn-rounded {
  border-radius: 50px;
}

@-moz-document url-prefix() {
  .card-body {
    z-index: 5;
    border: none;
  }
  .article-card-image {
    margin-bottom: 0;
  }
  .blur {
    background: rgba(10, 18, 29, 0.7);
  }
}
.feature-channels .channel-block {
  width: 100%;
}
.feature-channels .channel-card {
  padding-left: 0;
  padding-right: 0;
  background-color: transparent;
}

.chanel-card {
  padding: 30px 0;
}
.chanel-card h4.subtitle {
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .chanel-card h4.subtitle {
    font-size: 1rem;
  }
}

.chanel-box-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 -0.375rem;
}
@media (min-width: 1200px) {
  .chanel-box-holder {
    margin: 0 -0.9375rem;
  }
}
@media (min-width: 320px) and (max-width: 366px) {
  .chanel-box-holder {
    margin: 0;
  }
}

.chanel-box,
.chanel-box-sm {
  position: relative;
  max-width: calc(20% - 12px);
  flex: 1 0 calc(20% - 12px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  background-color: #fff;
  margin: 0 0.375rem 0.75rem;
  padding: 10px;
}
@media (min-width: 1200px) {
  .chanel-box,
  .chanel-box-sm {
    max-width: calc(20% - 30px);
    flex: 1 0 calc(20% - 30px);
    margin: 0 0.9375rem 1.875rem;
  }
}
@media (min-width: 330px) and (max-width: 366px) {
  .chanel-box,
  .chanel-box-sm {
    max-width: 20%;
    flex: 1 0 100%;
    margin: 0 0.375rem 0.75rem;
    padding: 5px;
  }
}
@media (max-width: 329px) {
  .chanel-box,
  .chanel-box-sm {
    max-width: 29%;
    flex: 1 0 100%;
    margin: 0 0.375rem 0.75rem;
    padding: 2.5px;
  }
}
.chanel-box:before,
.chanel-box-sm:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.chanel-box img,
.chanel-box-sm img {
  max-width: 100%;
}

.chanel-box-sm {
  max-width: calc(25% - 12px);
  flex: 1 0 calc(25% - 12px);
}
@media (min-width: 1200px) {
  .chanel-box-sm {
    max-width: calc(10% - 30px);
    flex: 1 0 calc(10% - 30px);
  }
}

.slide-link {
  margin-top: auto;
  font-weight: 700;
  font-size: 1.125rem;
  margin-left: auto;
  color: #fff;
}
.slide-link:hover:not(.btn) {
  opacity: 0.7;
  text-decoration: none;
  color: #fff;
}

.card-slide-opener {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 5;
  font-size: 1.25rem;
}
.card-slide-opener [class^=icon] {
  margin: 0;
  color: #fff;
}
.card-slide-opener:hover {
  color: #fff;
  opacity: 0.7;
  text-decoration: none;
}

.card {
  min-height: 100%;
}
.card.active .icon-info {
  display: none;
}
.card.active .icon-Close_L {
  display: block;
}
.card .icon-Close_L {
  display: none;
}
.card .iframe-holder {
  border-radius: 0;
  margin: 0;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .card .iframe-holder {
    margin-bottom: -1px;
  }
}

.card-slide {
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem 1.4rem 1.1rem;
  align-content: start;
  flex-direction: column;
}
.card-slide p:first-child {
  padding-right: 1.5625rem;
}

.slide-link-p-absolute {
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.decoders-card {
  font-size: 1rem;
}
@media (min-width: 1200px) {
  .decoders-card {
    font-size: 1.125rem;
  }
}
.decoders-card .card-body {
  display: block;
  padding: 1.1rem 1.4rem;
}
.decoders-card .card-body:before {
  width: calc(100% + 3px);
  height: calc(100% + 2px);
}
.decoders-card .h1 {
  margin-bottom: -8px;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .decoders-card .h1 {
    font-size: 2.375rem;
  }
}
@media (min-width: 1200px) {
  .decoders-card .h1 {
    font-size: 2.375rem;
  }
}
.decoders-card a {
  margin-top: auto;
}
.decoders-card img {
  max-width: 100%;
}
.decoders-card.active .card-body > * {
  opacity: 0;
}
.decoders-card.active .card-body:before {
  opacity: 0;
}
.decoders-card.active .card-body .slide,
.decoders-card.active .card-body .card-slide-opener,
.decoders-card.active .card-body .slide-link-p-absolute {
  opacity: 1;
}

.carousel-sell {
  display: flex;
  min-height: 100%;
}
.carousel-sell .card {
  width: 100%;
}

.ico-holder {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ico-holder img {
  max-width: 46px;
}
@media (min-width: 992px) {
  .ico-holder img {
    max-width: none;
  }
}

.video-card {
  background: transparent;
  box-shadow: none;
  margin-bottom: 1.875rem;
}
.video-card .iframe-holder {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .video-card .iframe-holder {
    margin-bottom: 1.5rem;
  }
}
.video-card .article-description {
  margin-bottom: 0.625rem;
}
.video-card h2 {
  margin-bottom: 1.25rem;
}
.video-card .separated-list {
  margin-bottom: 0.625rem;
}
.video-card .separated-list li {
  color: rgba(255, 255, 255, 0.7);
}
.video-card .separated-list li:before {
  background: rgba(255, 255, 255, 0.7);
}

.iframe-holder__grippy {
  position: absolute;
  left: 0;
  width: calc(50% - 40px);
  top: 0;
  bottom: 50px;
  z-index: 3;
}
.iframe-holder__grippy:before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 29%;
  top: 0;
  left: 100%;
}
.iframe-holder__grippy + .iframe-holder__grippy {
  left: auto;
  right: 0;
}
.iframe-holder__grippy + .iframe-holder__grippy:before {
  bottom: 0;
  top: auto;
  right: 100%;
  left: auto;
}

.card-date {
  color: rgba(255, 255, 255, 0.7);
}

.card-rounded {
  border-radius: 0.3125rem;
}

.card-text-slim p {
  margin-bottom: 0;
}

.image-size-cover {
  background-size: cover !important;
}

.image-size-cover:not(.no-hover) {
  background-size: cover !important;
}

.hidden-overflow {
  overflow: hidden;
}

/* list reset */
/* filtration list */
.filtration-holder,
.smooth-scroll-nav-holder,
.content-nav-holder {
  overflow-x: auto;
  margin-bottom: 1.8125rem;
}
@media (min-width: 768px) {
  .filtration-holder,
  .smooth-scroll-nav-holder,
  .content-nav-holder {
    margin-bottom: 2.5rem;
  }
}

.filtration-list,
.smooth-scroll-nav-list,
.content-nav-list,
.filter-list {
  position: relative;
  width: 100%;
  font-size: 0.875rem;
  margin: 0 -1rem;
  z-index: 50;
}
@media screen and (max-width: 767px) {
  .filtration-list,
  .smooth-scroll-nav-list,
  .content-nav-list,
  .filter-list {
    display: flex;
    white-space: nowrap;
  }
}
.filtration-list a,
.smooth-scroll-nav-list a,
.content-nav-list a,
.filter-list a {
  color: #fff;
  text-decoration: none;
}
.filtration-list a:hover,
.smooth-scroll-nav-list a:hover,
.content-nav-list a:hover,
.filter-list a:hover {
  opacity: 0.8;
}

.smooth-scroll-nav-item a:hover {
  color: #179edd;
}

.anchor-active a {
  color: #179edd;
}
.anchor-active a:hover {
  opacity: 1;
}

.font-size-base {
  font-size: 1rem;
}

.filter-item,
.smooth-scroll-nav-item,
.content-nav-item {
  display: inline-block;
  margin: 0 1rem;
  text-decoration: none;
}

.active-filter-item a:not(.btn):not(btn-medium),
.active-smooth-scroll-nav-item a:not(.btn):not(btn-medium),
.active-content-nav-item a:not(.btn):not(btn-medium) {
  color: #179edd !important;
  font-weight: 700;
}

/* pagination */
.pagination-holder {
  display: flex;
  justify-content: center;
  margin: 0 0 1.375rem;
}
@media (min-width: 768px) {
  .pagination-holder {
    margin-bottom: 3.25rem;
  }
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  flex: 1 0 384px;
  max-width: 384px;
  justify-content: center;
}
@media (min-width: 768px) {
  .pagination {
    max-width: none;
    justify-content: center;
  }
}

.page-item {
  max-width: 40px;
  height: 40px;
  display: flex;
  flex: 1 0 40px;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  opacity: 1;
}
@media (max-width: 575px) {
  .page-item {
    max-width: 30px;
    height: 30px;
    flex: 1 0 30px;
  }
}
.page-item:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .page-item {
    margin-right: 15px;
  }
}
.page-item.active .page-link {
  color: #0A121D;
  background-color: #fff;
}
.page-item.disabled {
  opacity: 0.3;
}
.page-item a:hover {
  opacity: 0.8;
}

.pagination .page-item .page-link {
  border-top-right-radius: 40px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
}

.page-link {
  border-radius: 50%;
  opacity: 1;
  background-color: #252e3a;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-arrow-short-carousel-right {
  color: #fff;
}

/* pagination  end*/
/* social media styles */
.social-media li,
.social-list li {
  display: inline-block;
  margin: 0 0.5625rem;
}
.social-media a:hover,
.social-list a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #0a121d;
  border-radius: 50%;
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .social-media a {
    width: 32px;
    height: 32px;
  }
}

.social-list {
  font-size: 2.5rem;
  margin: 0 -0.375rem;
  line-height: 1.2;
}
.social-list li {
  margin: 0 0.1875rem;
  line-height: inherit;
}
.social-list a {
  color: #179edd;
}

/* social media styles end */
/* privacy lists styles */
.numbered-list {
  list-style-type: none;
  counter-reset: my-awesome-counter;
}
.numbered-list > li {
  counter-increment: my-awesome-counter;
}
.numbered-list > li:before {
  content: counter(my-awesome-counter) ". ";
  font-weight: bold;
}

.unsorted-list {
  font-weight: 700;
}

/* genre list styles */
.genre {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.75rem;
  margin: 0 -0.625rem 0.4375rem;
  text-transform: uppercase;
}
.genre li {
  padding: 0 0.625rem;
}
.genre li + li {
  position: relative;
}
.genre li + li:before {
  content: "";
  width: 1px;
  height: 11px;
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
  background: #0a121d;
}
.genre a {
  color: #0a121d;
}
.genre a:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* genre list styles end*/
.package-included-list {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
}
.package-included-list li {
  flex: 1;
  max-width: 100px;
}
.package-included-list [class^=icon] {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 1.125rem;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .package-included-list [class^=icon] {
    width: 40px;
    height: 40px;
  }
}

.package-list-title {
  white-space: nowrap;
}

.list-info {
  padding-left: 0;
  list-style: none;
  list-style-position: outside;
  font-size: 1rem;
  padding-left: 1rem;
}
.list-info li {
  margin-bottom: 0.3125rem;
  position: relative;
}
.list-info li:before {
  content: "•";
  width: 6px;
  height: 6px;
  position: absolute;
  left: -15px;
  top: 3px;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .list-info li:before {
    line-height: 100%;
  }
}
@media (min-width: 992px) {
  .list-info li:before {
    line-height: 100%;
  }
}
.list-info span {
  color: #fff;
}
.list-info.product-text {
  font-size: 0.5625rem;
}
@media (min-width: 362px) {
  .list-info.product-text {
    font-size: 0.6875rem;
  }
}
@media (min-width: 576px) {
  .list-info.product-text {
    font-size: 0.875rem;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 992px) {
  .list-info.product-text {
    font-size: 0.6875rem;
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  .list-info.product-text {
    font-size: 0.875rem;
  }
}

.separated-list {
  display: flex;
  justify-content: center;
  margin: 0 -0.625rem;
}
.separated-list li {
  position: relative;
  display: inline-block;
  margin: 0 0.625rem;
}
.separated-list li + li:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-40%);
}

.suggested-links {
  color: #d0dadf;
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.375rem;
}
@media (min-width: 992px) {
  .suggested-links {
    font-size: 1rem;
  }
}
.suggested-links li {
  margin: 0 0.375rem;
}
.suggested-links a {
  color: #fff;
}
.suggested-links a:hover {
  color: #179edd;
  text-decoration: underline;
}

.ordered-list {
  list-style: none;
  counter-reset: li;
  padding-left: 0;
  margin-bottom: 1.4375rem;
}
.ordered-list li > strong:first-child {
  display: inline-block;
  margin-bottom: 1.4375rem;
}
.ordered-list > li:before {
  margin-bottom: 1.4375rem;
}
.ordered-list > li:before,
.ordered-list .ordered-list > li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
  font-weight: 700;
}
.ordered-list ul,
.ordered-list .ordered-list {
  padding-left: 0;
}

ol ol ul {
  list-style-type: disc;
}

@media (min-width: 1200px) {
  .social-list {
    font-size: 1.9rem;
  }
}
.iframe-holder {
  position: relative;
  padding-top: 56%;
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 2rem;
  margin-top: 2rem;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.5);
}
.iframe-holder .inline-YTPlayer {
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.iframe-holder.news-article-video {
  width: 100%;
  height: 100%;
  z-index: 2;
  border-radius: 0.3125rem;
}

.latest-local-news .iframe-holder {
  margin-top: 0;
}

.iframe-description {
  font-size: 0.75rem;
  display: block;
  margin-top: -1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .iframe-description {
    font-size: 0.875rem;
  }
}

.yotube-custom-player.player.mb_YTPlayer {
  background-attachment: inherit !important;
  overflow: hidden;
  border-radius: 5px;
  padding-bottom: 56.85% !important;
}

.vimeo_player {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.vimeo-holder.is-playing .play {
  background-color: transparent;
  color: transparent;
}

.inlinePlayButton,
.play {
  width: 64px;
  height: 64px;
  font-size: 4rem;
}

.inlinePlayButton {
  border: none;
  background: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0;
  font-size: 0;
  margin: 0;
}
.inlinePlayButton:before {
  font-family: "DStv-com-icons";
  content: "\e968";
  font-size: 64px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.inlinePlayButton:hover {
  transform: translate(-50%, -50%) !important;
  background: none;
}

.mb_YTPlayer:hover .inlinePlayButton {
  transform: translate(-50%, -50%) !important;
  background-color: transparent;
}

.play {
  border: none;
  background: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0;
}
.play:focus {
  outline: none;
}

.vimeo-holder.is-playing .play {
  background-color: transparent;
}

blockquote {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1.6875rem 0.625rem;
  line-height: 1.4;
  margin-bottom: 2.25rem;
}
@media (min-width: 992px) {
  blockquote {
    padding: 4.625rem 2.0625rem;
  }
}
blockquote:before, blockquote:after {
  content: "";
  width: 4px;
  height: 100%;
  position: absolute;
  top: 0;
  background: #0095DA;
  border-radius: 5px;
}
@media (min-width: 768px) {
  blockquote:before, blockquote:after {
    width: 5px;
  }
}
blockquote:before {
  left: 0;
}
blockquote:after {
  right: 0;
}

.blockquote.blockquote p {
  margin-bottom: 0.4375rem;
}
@media (min-width: 768px) {
  .blockquote.blockquote p {
    margin-bottom: 0.625rem;
  }
}
@media (min-width: 992px) {
  .blockquote.blockquote {
    font-size: 1.5rem;
  }
}

cite {
  display: block;
  font-size: 0.875rem;
  font-style: normal;
  color: rgba(10, 18, 29, 0.5);
}
@media (min-width: 992px) {
  cite {
    font-size: 1rem;
  }
}

.hero-section-slider,
.hero-section-fullscreen-bg {
  position: relative;
  margin-bottom: 3.125rem;
}
@media (min-width: 1200px) {
  .hero-section-slider,
  .hero-section-fullscreen-bg {
    margin-bottom: 0;
  }
}
.hero-section-slider .slick-list,
.hero-section-fullscreen-bg .slick-list {
  overflow: visible;
}
.hero-section-slider .slick-slide,
.hero-section-fullscreen-bg .slick-slide {
  background-position: 0 0;
}
.hero-section-slider .top-section, .hero-section-slider .top-panel-standard,
.hero-section-fullscreen-bg .top-section,
.hero-section-fullscreen-bg .top-panel-standard {
  top: 0;
  padding-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-section-slider .top-section, .hero-section-slider .top-panel-standard,
  .hero-section-fullscreen-bg .top-section,
  .hero-section-fullscreen-bg .top-panel-standard {
    padding-top: 8rem;
    font-size: 1.125rem;
  }
}
@media (min-width: 992px) {
  .hero-section-slider .top-section, .hero-section-slider .top-panel-standard,
  .hero-section-fullscreen-bg .top-section,
  .hero-section-fullscreen-bg .top-panel-standard {
    margin-bottom: 2rem;
  }
}
.hero-section-slider .top-section .top-text-holder, .hero-section-slider .top-panel-standard .top-text-holder,
.hero-section-fullscreen-bg .top-section .top-text-holder,
.hero-section-fullscreen-bg .top-panel-standard .top-text-holder {
  padding-bottom: 6.25rem;
}
.hero-section-slider .top-section > .container, .hero-section-slider .top-panel-standard > .container,
.hero-section-fullscreen-bg .top-section > .container,
.hero-section-fullscreen-bg .top-panel-standard > .container {
  margin-top: 0;
}
@media (min-width: 992px) {
  .hero-section-slider h1,
  .hero-section-fullscreen-bg h1 {
    font-size: 2.5rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .hero-section-slider h1,
  .hero-section-fullscreen-bg h1 {
    font-size: 3rem;
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 992px) {
  .hero-section-slider p,
  .hero-section-fullscreen-bg p {
    margin-bottom: 1.875rem;
  }
}
.hero-section-slider .top-section-list,
.hero-section-fullscreen-bg .top-section-list {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .hero-section-slider .top-section-list,
  .hero-section-fullscreen-bg .top-section-list {
    margin-bottom: 1.3125rem;
  }
}
.hero-section-slider .top-section-list li:before,
.hero-section-fullscreen-bg .top-section-list li:before {
  content: "*";
  padding-right: 1rem;
}
.hero-section-slider .link,
.hero-section-fullscreen-bg .link {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: underline;
}
.hero-section-slider .bg-holder,
.hero-section-fullscreen-bg .bg-holder {
  background-size: auto 100%;
  background-position: center;
  /* background-size: cover;*/
  background-repeat: no-repeat;
  width: 100%;
  padding-top: 100%;
  position: relative;
  margin-bottom: -6.25rem;
  z-index: -1;
}
@media (min-width: 768px) {
  .hero-section-slider .bg-holder,
  .hero-section-fullscreen-bg .bg-holder {
    padding-top: 0;
    position: absolute;
    top: 0;
    bottom: 0;
  }
}
@media (min-width: 992px) {
  .hero-section-slider .bg-holder,
  .hero-section-fullscreen-bg .bg-holder {
    background-size: 100% auto;
  }
}
.hero-section-slider .container,
.hero-section-fullscreen-bg .container {
  position: relative;
  z-index: 5;
}
.hero-section-slider .z-index-0,
.hero-section-fullscreen-bg .z-index-0 {
  z-index: 0;
}
.hero-section-slider .badge,
.hero-section-fullscreen-bg .badge {
  margin-bottom: 1.25rem;
}
.hero-section-slider .genre,
.hero-section-fullscreen-bg .genre {
  margin-bottom: 0.9375rem;
}
.hero-section-slider .genre li:before,
.hero-section-fullscreen-bg .genre li:before {
  background: rgba(255, 255, 255, 0.7);
}
.hero-section-slider .genre a,
.hero-section-fullscreen-bg .genre a {
  color: rgba(255, 255, 255, 0.7);
}

.slick-arrow {
  transition: left 0.3s ease, right 0.3s ease;
  position: absolute;
  top: 0;
  background: #fff;
  width: 50px;
  height: 50px;
  top: 40%;
  z-index: 10;
  border: none;
  background-color: transparent;
  color: #fff;
  font-size: 1.8125rem;
}
@media (max-width: 1024px) {
  .slick-arrow {
    display: none !important;
  }
}

.slick-prev {
  left: 0;
  margin-left: calc(50% - 50vw);
}
.slick-prev:hover {
  left: -5px;
}

.slick-next {
  right: 0;
  margin-right: calc(50% - 50vw);
}
.slick-next:hover {
  right: -5px;
}

.slider-subtitle {
  font-size: 1.75rem;
  display: block;
}

.hero-section-slider .bg-holder {
  min-height: 56.1797752809vw;
}
@media (min-width: 992px) {
  .hero-section-slider .bg-holder {
    background-position: 20% top;
  }
}
@media (min-width: 1600px) {
  .hero-section-slider .bg-holder {
    min-height: 900px;
    background-position: 100% 20%;
    background-repeat: no-repeat;
    background-size: 1600px;
    z-index: -1;
  }
}
.hero-section-slider .bg-holder:before {
  content: "";
  position: absolute;
  left: 0;
  background: #000 0% 0% no-repeat padding-box;
  background: transparent linear-gradient(180deg, rgba(10, 18, 29, 0) 0%, #0a121d 100%) 0% 0% no-repeat padding-box;
  width: 100%;
  height: 200px;
  bottom: -2px;
}
@media (max-width: 768px) {
  .hero-section-slider .bg-holder:before {
    height: 200px;
    background: transparent linear-gradient(180deg, rgba(10, 18, 29, 0) 0%, #0a121d 100%) 0% 0% no-repeat padding-box;
  }
}
.hero-section-slider .bg-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200px;
  background: linear-gradient(90deg, rgb(10, 18, 29) 0%, rgba(10, 18, 29, 0) 45%);
}
@media (min-width: 992px) {
  .hero-section-slider .bg-holder:after {
    height: 100%;
    background: linear-gradient(90deg, rgb(10, 18, 29) 20%, rgba(10, 18, 29, 0) 65%);
  }
}
@media all and (min-width: 1921px) {
  .hero-section-slider .bg-holder:after {
    width: 1920px;
    right: 0;
    left: auto;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .hero-section-slider .bg-holder:after {
    top: 0;
    left: 0;
    height: 100%;
  }
}
@media (max-width: 767.95px) {
  .hero-section-slider .bg-holder:after {
    height: 200px;
    background: transparent linear-gradient(0deg, rgba(10, 18, 29, 0) 40%, #0a121d 100%) 0 0 no-repeat padding-box;
  }
}

.bg-custom-position00 {
  background-repeat: no-repeat;
  background-position: -300px -700px;
}

.hero-section-fullscreen-bg .text-sm {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .hero-section-fullscreen-bg .text-sm {
    font-size: 1rem;
  }
}

.article-carousel .flickity-button,
.news-article-carousel .flickity-button {
  display: none;
}

.flickity-cards {
  margin: 0 -0.375rem 3.125rem;
}
.flickity-cards.flickity-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 1500px) {
  .flickity-cards.flickity-carousel:after {
    content: "";
  }
}
@media (min-width: 1500px) {
  .flickity-cards {
    margin: -13.75rem -0.9375rem 3.125rem;
  }
}
.flickity-cards .flickity-button {
  display: none;
}
.flickity-cards .carousel-sell {
  width: 50%;
  padding: 0 0.375rem;
}
@media (min-width: 768px) {
  .flickity-cards .carousel-sell {
    width: 33.3333333333%;
    flex: 1 0 33.3333333333%;
  }
}
@media (min-width: 1200px) {
  .flickity-cards .carousel-sell {
    max-width: 25%;
    flex: 1 0 25%;
  }
}
@media (min-width: 1500px) {
  .flickity-cards .carousel-sell {
    max-width: 20%;
    flex: 1 0 20%;
    padding: 0 0.9375rem;
  }
}
.flickity-cards .slide-item {
  border-radius: 6px;
  overflow: hidden;
}
.flickity-cards a {
  color: #fff;
}
.flickity-cards a:hover .text-holder {
  text-decoration: none;
  opacity: 0.8;
}
.flickity-cards img {
  width: 100%;
}
.flickity-cards .slide-item {
  position: relative;
  overflow: hidden;
  display: block;
}
.flickity-cards .slide-item img {
  transition: transform 0.5s ease;
}
.flickity-cards .slide-item:hover img {
  transform: scale(1.05);
}
.flickity-cards .text-holder {
  display: block;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.flickity-cards .text-holder:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.flickity-cards .text-holder {
  text-align: center;
  position: absolute;
  bottom: 0.8125rem;
  width: 100%;
}
.flickity-cards .text-holder-top {
  top: 0.5rem;
  bottom: unset;
}
.flickity-cards .text-sm {
  font-size: 0.5rem;
  line-height: 1;
}
@media (min-width: 575px) and (max-width: 992px) {
  .flickity-cards .text-sm {
    font-size: 0.6875rem;
  }
}
@media (min-width: 374px) and (max-width: 575px) {
  .flickity-cards .text-sm {
    font-size: 6875rem;
  }
}
@media (min-width: 992px) {
  .flickity-cards .text-sm {
    font-size: 0.875rem;
  }
}
.flickity-cards .text-lg {
  font-size: 0.75rem;
  line-height: 1;
}
@media (min-width: 374px) and (max-width: 992px) {
  .flickity-cards .text-lg {
    font-size: 1.1rem;
    line-height: 1;
  }
}
@media (min-width: 575px) and (max-width: 992px) {
  .flickity-cards .text-lg {
    font-size: 0.875rem;
  }
}
@media (min-width: 374px) and (max-width: 575px) {
  .flickity-cards .text-lg {
    font-size: 0.75rem;
  }
}
@media (min-width: 992px) {
  .flickity-cards .text-lg {
    font-size: 1.4375rem;
    line-height: 1;
  }
}

.flickity-viewport {
  width: 100%;
}

.flickity-page-dots li:only-child {
  display: none;
}

.article-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 1200px) {
  .article-carousel:after {
    content: "";
  }
}

.news-article-carousel:after {
  display: none;
  content: "flickity";
}

.card-img-carousel .flickity-viewport,
.card-img-carousel .carousel-sell {
  width: 100%;
}
.card-img-carousel .flickity-button {
  z-index: 10;
}
.card-img-carousel .article-card-image {
  width: 100%;
}
.card-img-carousel .card-body {
  position: relative;
}
.card-img-carousel .flickity-button {
  top: 100%;
}
.card-img-carousel .previous {
  left: auto;
  right: 70px;
}

.card-img-carousel-holder:hover .card-body {
  color: #fff;
}
.card-img-carousel-holder:hover .card-body:before {
  opacity: 0.1;
}
.card-img-carousel-holder:hover .card-body p,
.card-img-carousel-holder:hover .card-body .card-title,
.card-img-carousel-holder:hover .card-body .date {
  color: #fff;
}

.card-img-carousel:after {
  display: none;
  content: "flickity";
}

.flickity-page-dots {
  bottom: -46px;
}
.flickity-page-dots .dot {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  background-color: transparent;
  opacity: 1;
}
.flickity-page-dots .dot:hover:before {
  background: #179edd;
}
.bg-white .flickity-page-dots .dot:hover:before {
  background: #179edd;
}
.flickity-page-dots .dot.is-selected:before {
  transition: background 1s ease;
  background: #179edd;
}
.bg-white .flickity-page-dots .dot.is-selected:before {
  background: #179edd;
}
.flickity-page-dots .dot.is-selected:after {
  width: 14px;
  height: 14px;
  border-color: #179edd;
}
.flickity-page-dots .dot:before {
  transition: background 1s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.bg-white .flickity-page-dots .dot:before {
  background: rgba(10, 18, 29, 0.7);
}
.flickity-page-dots .dot:after {
  transition: border 0.5s ease, width 0.5s ease, height 0.5s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 50%;
  width: 0;
  height: 0;
}

.campaign-carousel:after,
.flickity-carousel-6:after,
.flickity-carousel-4:after,
.people-scroller-carousel:after,
.exclusive-highlights-carousel:after,
.carouselAccElmScrollTo:after {
  display: none;
  content: "flickity";
}
.campaign-carousel .flickity-viewport,
.flickity-carousel-6 .flickity-viewport,
.flickity-carousel-4 .flickity-viewport,
.people-scroller-carousel .flickity-viewport,
.exclusive-highlights-carousel .flickity-viewport,
.carouselAccElmScrollTo .flickity-viewport {
  overflow: visible;
}
@media (max-width: 991.98px) {
  .campaign-carousel .flickity-viewport,
  .flickity-carousel-6 .flickity-viewport,
  .flickity-carousel-4 .flickity-viewport,
  .people-scroller-carousel .flickity-viewport,
  .exclusive-highlights-carousel .flickity-viewport,
  .carouselAccElmScrollTo .flickity-viewport {
    margin-left: 3px;
    margin-right: 14px;
  }
}
.campaign-carousel .flickity-viewport:before, .campaign-carousel .flickity-viewport:after,
.flickity-carousel-6 .flickity-viewport:before,
.flickity-carousel-6 .flickity-viewport:after,
.flickity-carousel-4 .flickity-viewport:before,
.flickity-carousel-4 .flickity-viewport:after,
.people-scroller-carousel .flickity-viewport:before,
.people-scroller-carousel .flickity-viewport:after,
.exclusive-highlights-carousel .flickity-viewport:before,
.exclusive-highlights-carousel .flickity-viewport:after,
.carouselAccElmScrollTo .flickity-viewport:before,
.carouselAccElmScrollTo .flickity-viewport:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 4;
  width: 30px;
}
@media (min-width: 1200px) {
  .campaign-carousel .flickity-viewport:before, .campaign-carousel .flickity-viewport:after,
  .flickity-carousel-6 .flickity-viewport:before,
  .flickity-carousel-6 .flickity-viewport:after,
  .flickity-carousel-4 .flickity-viewport:before,
  .flickity-carousel-4 .flickity-viewport:after,
  .people-scroller-carousel .flickity-viewport:before,
  .people-scroller-carousel .flickity-viewport:after,
  .exclusive-highlights-carousel .flickity-viewport:before,
  .exclusive-highlights-carousel .flickity-viewport:after,
  .carouselAccElmScrollTo .flickity-viewport:before,
  .carouselAccElmScrollTo .flickity-viewport:after {
    width: 90px;
  }
}
.campaign-carousel .flickity-viewport:before,
.flickity-carousel-6 .flickity-viewport:before,
.flickity-carousel-4 .flickity-viewport:before,
.people-scroller-carousel .flickity-viewport:before,
.exclusive-highlights-carousel .flickity-viewport:before,
.carouselAccElmScrollTo .flickity-viewport:before {
  left: 0;
  margin-left: calc(50% - 50vw);
}
.campaign-carousel .flickity-viewport:after,
.flickity-carousel-6 .flickity-viewport:after,
.flickity-carousel-4 .flickity-viewport:after,
.people-scroller-carousel .flickity-viewport:after,
.exclusive-highlights-carousel .flickity-viewport:after,
.carouselAccElmScrollTo .flickity-viewport:after {
  right: 0;
  margin-right: calc(50% - 50vw);
}
.campaign-carousel .flickity-prev-next-button,
.flickity-carousel-6 .flickity-prev-next-button,
.flickity-carousel-4 .flickity-prev-next-button,
.people-scroller-carousel .flickity-prev-next-button,
.exclusive-highlights-carousel .flickity-prev-next-button,
.carouselAccElmScrollTo .flickity-prev-next-button {
  z-index: 5;
  background: none;
}
.campaign-carousel .previous,
.flickity-carousel-6 .previous,
.flickity-carousel-4 .previous,
.people-scroller-carousel .previous,
.exclusive-highlights-carousel .previous,
.carouselAccElmScrollTo .previous {
  margin-left: calc(50% - 50vw);
}
.campaign-carousel .next,
.flickity-carousel-6 .next,
.flickity-carousel-4 .next,
.people-scroller-carousel .next,
.exclusive-highlights-carousel .next,
.carouselAccElmScrollTo .next {
  margin-right: calc(50% - 50vw);
}
.campaign-carousel .flickity-button-icon,
.flickity-carousel-6 .flickity-button-icon,
.flickity-carousel-4 .flickity-button-icon,
.people-scroller-carousel .flickity-button-icon,
.exclusive-highlights-carousel .flickity-button-icon,
.carouselAccElmScrollTo .flickity-button-icon {
  fill: #fff;
}

.flickity-carousel-6 .flickity-viewport {
  overflow: visible;
}
.flickity-carousel-6 .flickity-slider {
  align-items: flex-start;
}
@media (min-width: 992px) {
  .flickity-carousel-6 .flickity-page-dots {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .article-carousel,
  .news-article-carousel {
    margin: 0 -0.375rem;
  }
}
.article-carousel .flickity-slider,
.news-article-carousel .flickity-slider {
  display: flex;
}
.article-carousel .flickity-carousel:after,
.news-article-carousel .flickity-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 1200px) {
  .article-carousel .flickity-carousel:after,
  .news-article-carousel .flickity-carousel:after {
    content: "";
  }
}
.article-carousel .carousel-sell,
.news-article-carousel .carousel-sell {
  flex: 1 0 84%;
  max-width: 84%;
  width: 84%;
  align-items: stretch;
  padding: 0 0.375rem;
}
@media (min-width: 768px) {
  .article-carousel .carousel-sell,
  .news-article-carousel .carousel-sell {
    flex: 1 0 50%;
    max-width: 50%;
    width: 50%;
    padding: 0 0.9375rem;
  }
}
@media (min-width: 1200px) {
  .article-carousel .carousel-sell,
  .news-article-carousel .carousel-sell {
    flex: 1 0 25%;
    max-width: 25%;
  }
}
@media (min-width: 1200px) {
  .article-carousel .col-xl-4,
  .news-article-carousel .col-xl-4 {
    flex: 1 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.article-carousel .col-md-6,
.news-article-carousel .col-md-6 {
  width: 50%;
}
@media (min-width: 768px) {
  .article-carousel .col-md-6,
  .news-article-carousel .col-md-6 {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .article-carousel .col-md-6,
  .news-article-carousel .col-md-6 {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
.article-carousel .article-card,
.news-article-carousel .article-card {
  min-height: 100%;
}
.article-carousel .card-body,
.news-article-carousel .card-body {
  height: auto;
  padding: 2.5rem;
  display: block;
}
@media (min-width: 768px) {
  .article-carousel .card-body,
  .news-article-carousel .card-body {
    height: 205px;
    /*min-height: 205px;*/
  }
}

.article-slide-holder {
  font-size: 1rem;
  padding: 2.875rem 0 3.9375rem;
}
.article-slide-holder .row {
  position: relative;
}
@media (max-width: 991.98px) {
  .article-slide-holder .article-slide-holder-btn {
    position: absolute;
    right: 0;
    top: -7px;
  }
}
.article-slide-holder h2 {
  margin-bottom: 2rem;
}
.article-slide-holder [class^=col] {
  margin-bottom: 0.5rem;
}
.article-slide-holder .flickity-page-dots {
  bottom: -24px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin-bottom: 3.125rem;
  transform: translateX(-6px);
  margin-top: 30px;
}
@media (max-width: 768px) {
  .slick-dots {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .slick-dots {
    justify-content: flex-start;
  }
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  margin: 0 0.5rem;
}
.slick-dots .slick-active button:before {
  transition: background 1s ease;
  background: #179edd;
}
.slick-dots .slick-active button:after {
  width: 14px;
  height: 14px;
  border-color: #179edd;
}
.slick-dots button {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  background-color: transparent;
  opacity: 1;
  border: none;
  background-color: transparent;
  text-indent: -9999px;
}
.slick-dots button:focus {
  outline: none;
}
.slick-dots button:hover:before {
  background: #179edd;
}
.slick-active .slick-dots button:before {
  transition: background 1s ease;
  background: #179edd;
}
.slick-active .slick-dots button:after {
  width: 14px;
  height: 14px;
  border-color: #179edd;
}
.slick-dots button:before {
  transition: background 1s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.slick-dots button:after {
  transition: border 0.5s ease, width 0.5s ease, height 0.5s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 50%;
  width: 0;
  height: 0;
}

.people-scroller-section {
  padding: 1.875rem 0 4.375rem;
}
@media (min-width: 992px) {
  .people-scroller-section {
    padding: 3.25rem 0 4.375rem;
  }
}
.people-scroller-section h2 {
  margin-bottom: 1.875rem;
}
@media (max-width: 767.98px) {
  .people-scroller-section h2 {
    font-size: 1.5rem;
  }
}

.people-scroller-carousel {
  position: relative;
  text-align: center;
}
.people-scroller-carousel.flickity-carousel:after {
  display: none;
  content: "flickity";
}
.people-scroller-carousel .flickity-viewport {
  overflow: visible;
}
.people-scroller-carousel .flickity-viewport:before {
  background: linear-gradient(to right, #fff, rgba(10, 18, 29, 0));
}
.people-scroller-carousel .flickity-viewport:after {
  background: linear-gradient(to left, #fff, rgba(10, 18, 29, 0));
}
.people-scroller-carousel .carousel-sell {
  width: calc(33.3333333333% - 12px);
  margin: 0 0.375rem;
}
@media (min-width: 768px) {
  .people-scroller-carousel .carousel-sell {
    width: calc(25% - 12px);
  }
}
@media (min-width: 1200px) {
  .people-scroller-carousel .carousel-sell {
    width: calc(16.6666666667% - 30px);
    margin: 0 15px;
    margin: 0.9375rem;
  }
}
.people-scroller-carousel a {
  transition: color 0.5s ease;
  color: #0a121d;
}
.people-scroller-carousel a:hover {
  text-decoration: none;
  color: rgba(10, 18, 29, 0.8);
}
.people-scroller-carousel a:hover img {
  transform: scale(1.05);
}
.people-scroller-carousel .img-holder-round {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(10, 18, 29, 0.2);
  margin-bottom: 0.625rem;
}
.people-scroller-carousel .img-holder-round img {
  transition: transform 0.5s ease;
  width: 100%;
  border-radius: 50%;
}
.people-scroller-carousel .name,
.people-scroller-carousel .member-info {
  display: block;
}
.people-scroller-carousel .name {
  font-size: 1rem;
  margin-bottom: 0.3125rem;
}
.people-scroller-carousel .member-info {
  font-size: 0.875rem;
  color: rgba(10, 18, 29, 0.7);
}
.people-scroller-carousel .member-info > * {
  display: block;
}
.people-scroller-carousel .flickity-button-icon {
  fill: #0a121d;
}
@media (min-width: 992px) {
  .people-scroller-carousel .flickity-page-dots {
    display: none;
  }
}

.features-carousel-holder {
  position: relative;
  padding: 0 0.375rem 3.125rem;
  background: bottom;
  margin-bottom: 3.125rem;
  background-size: cover;
  z-index: 2;
}
.features-carousel-holder:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, #0a121d, rgba(10, 18, 29, 0.7) 40%, rgba(10, 18, 29, 0) 100%);
}
.features-carousel-holder:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 43px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .features-carousel-holder:before {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}
@media (min-width: 768px) {
  .features-carousel-holder:before {
    height: calc(100% - 220px);
    margin-bottom: -13.75rem;
  }
}
@media (min-width: 768px) {
  .features-carousel-holder {
    padding: 0 0.375rem 13.75rem;
    margin-bottom: -13.75rem;
  }
}
@media (max-width: 768px) {
  .features-carousel-holder.slim {
    padding: 0 0.375rem 0.125rem;
    margin-bottom: 0;
  }
}
.features-carousel-holder .h4 {
  padding-left: 0.5625rem;
}
.features-carousel-holder a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
@media (min-width: 992px) {
  .features-carousel-holder a {
    font-size: 0.875rem;
  }
}
.features-carousel-holder a img {
  transition: transform 0.5s ease;
}
.features-carousel-holder a:hover img {
  transform: scale(1.05);
}
.features-carousel-holder .features-carousel {
  z-index: 5;
}
.features-carousel-holder .flickity-carousel:after {
  display: none;
  content: "flickity";
}
.features-carousel-holder .carousel-sell {
  width: 33.3333333333%;
  padding: 0 0.375rem;
}
@media (min-width: 992px) {
  .features-carousel-holder .carousel-sell {
    width: 12.5%;
    padding: 0 0.9375rem;
  }
}
.features-carousel-holder .img-holder {
  border-radius: 0.4rem;
  overflow: hidden;
  margin-bottom: 0.3125rem;
  border-radius: 5px;
}
.features-carousel-holder .img-holder img {
  width: 100%;
}
.features-carousel-holder .flickity-page-dots,
.features-carousel-holder .flickity-button {
  display: none;
}

@media (min-width: 992px) {
  .faux-row {
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (max-width: 1199.98px) {
  .faux-row .col-6 {
    max-width: initial !important;
  }
}

.article-carousel02 {
  margin-bottom: 4.8125rem;
}
@media (max-width: 991.98px) {
  .article-carousel02 {
    margin-bottom: 4.8125rem;
  }
}
@media (min-width: 1200px) {
  .article-carousel02:after {
    content: "flickity";
  }
}
.article-carousel02 .card-body {
  min-height: 130px;
  height: auto;
}
@media (min-width: 768px) {
  .article-carousel02 .card-body {
    height: auto;
    /*min-height: 300px;*/
  }
}
@media (max-width: 767.98px) {
  .article-carousel02 .card-body {
    padding-left: 1.1875rem;
    padding-right: 1rem;
  }
}
.article-carousel02 .flickity-button {
  display: none;
}
@media (min-width: 992px) {
  .article-carousel02 .flickity-button {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .article-slide-holder-btn:not(.pricing-contact-btn) {
    position: absolute;
    right: 12px;
    top: -12px;
    left: 0;
  }
}

.flickity-carousel.is-fullscreen .carousel-sell {
  height: 100%;
}

.flickity-carousel-4 {
  margin-bottom: 4.6875rem;
  position: relative;
}
.flickity-carousel-4 .carousel-sell {
  width: 282px;
}
@media (min-width: 992px) {
  .flickity-carousel-4 .carousel-sell {
    width: 350px;
  }
}
.flickity-carousel-4 .card-bg {
  background-position: 50%;
  background-size: 115%;
  background-repeat: no-repeat;
}
.flickity-carousel-4 .text-holder {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 380px;
  padding: 1.875rem 1.25rem;
}
@media (min-width: 992px) {
  .flickity-carousel-4 .text-holder {
    padding: 3.125rem 1.625rem 1.25rem;
    height: 440px;
  }
}
.flickity-carousel-4 .text-holder:before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  height: calc(50% + 2px);
  width: calc(100% + 2px);
  background: linear-gradient(to top, rgba(24, 33, 46, 0.5), rgba(38, 49, 64, 0));
}
.flickity-carousel-4 .text-bottom {
  position: relative;
  margin-top: auto;
  font-size: 1rem;
}
.flickity-carousel-4 .value-holder p {
  margin-bottom: 0;
}
.flickity-carousel-4 .list-info {
  font-size: 0.875rem;
  font-weight: 700;
}
.flickity-carousel-4.packages-carousel .slide-link-p-absolute {
  right: 30px;
  bottom: 30px;
}

.decoder-packages-carousel .packages-carousel-gradient-bg,
.package-page .packages-carousel-gradient-bg {
  padding-top: 2rem;
  padding-bottom: 0.0625rem;
}
@media (min-width: 992px) {
  .decoder-packages-carousel .packages-carousel-gradient-bg,
  .package-page .packages-carousel-gradient-bg {
    padding-top: 3rem;
    padding-bottom: 0.5rem;
  }
}

.packages-hardware .packages-carousel-gradient-bg {
  background: transparent;
  padding-top: 0;
}
.packages-hardware .bg-wrap00:before {
  background: transparent;
}

.decoder-carousel-container,
.packges-carousel-container,
.featured-channels-carousel-container {
  position: relative;
}
.decoder-carousel-container .hidden-clicker,
.packges-carousel-container .hidden-clicker,
.featured-channels-carousel-container .hidden-clicker {
  cursor: pointer;
}

@media (min-width: 1200px) {
  .featured-channels-carousel-container .flickity-slider .carousel-sell {
    min-height: 22.1rem;
  }
}
@media (min-width: 991px) and (max-width: 1500px) {
  .featured-channels-carousel-container .flickity-slider .carousel-sell {
    min-height: 15.6rem;
  }
}
@media (min-width: 768.1px) and (max-width: 990.9px) {
  .featured-channels-carousel-container .flickity-slider .carousel-sell {
    min-height: 12.4rem;
  }
}
@media (min-width: 576px) and (max-width: 768px) {
  .featured-channels-carousel-container .flickity-slider .carousel-sell {
    min-height: 16.75rem;
  }
}
@media (max-width: 767.98px) {
  .featured-channels-carousel-container .flickity-slider .carousel-sell {
    min-height: 11.2rem;
  }
}

.featured-channels-carousel-fade-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
}
.featured-channels-carousel-fade-gradient:before {
  content: "";
  background: linear-gradient(90deg, rgba(10, 18, 29, 0) 0%, rgb(10, 18, 29) 100%);
  display: none;
  position: absolute;
  width: 70px;
  bottom: 0;
  right: 0;
  height: 68%;
  z-index: 2;
}
@media (min-width: 992px) {
  .featured-channels-carousel-fade-gradient:before {
    display: block;
    height: 73%;
  }
}
@media (min-width: 1200px) {
  .featured-channels-carousel-fade-gradient:before {
    display: block;
    height: 81%;
  }
}

.decoder-carousel-fade-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
}
.decoder-carousel-fade-gradient:before {
  content: "";
  background: linear-gradient(90deg, rgba(10, 18, 29, 0) 0%, rgb(10, 18, 29) 100%);
  display: none;
  position: absolute;
  width: 70px;
  bottom: 90px;
  right: 0;
  height: 68%;
  z-index: 2;
}
@media (min-width: 992px) {
  .decoder-carousel-fade-gradient:before {
    display: block;
    height: 52%;
  }
}
@media (min-width: 1200px) {
  .decoder-carousel-fade-gradient:before {
    display: block;
    height: 57%;
  }
}

.flickity-slider {
  display: flex;
}

.top-section-carousel-4:after {
  display: none;
  content: "flickity";
}
@media (min-width: 992px) {
  .top-section-carousel-4:after {
    content: "";
  }
}
.top-section-carousel-4 .carousel-sell {
  width: 50%;
  padding: 0 0.375rem;
}
@media (min-width: 992px) {
  .top-section-carousel-4 .carousel-sell {
    width: 25%;
    padding: 0 0.9375rem;
  }
}

.article-carousel00 .flickity-slider,
.article-carousel01 .flickity-slider {
  display: block;
}
.article-carousel00 .carousel-sell,
.article-carousel01 .carousel-sell {
  width: 100%;
}

.article-carousel01 .text-holder {
  min-height: 440px;
}

.flickity-slider .carousel-sell {
  min-height: 0;
}

.top-section-carousel-4 {
  text-align: center;
  font-size: 0.875rem;
}
.top-section-carousel-4 img {
  margin-bottom: 1.0625rem;
}
@media (min-width: 768px) {
  .top-section-carousel-4 img {
    margin-bottom: 1.625rem;
  }
}
.top-section-carousel-4 p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
.top-section-carousel-4:after {
  display: none;
  content: "flickity";
}
@media (min-width: 992px) {
  .top-section-carousel-4:after {
    content: "";
  }
}
.top-section-carousel-4 .carousel-sell {
  width: 50%;
}
@media (min-width: 992px) {
  .top-section-carousel-4 .carousel-sell {
    width: 25%;
  }
}
@media (max-width: 767.98px) {
  .top-section-carousel-4 .card-body {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
}
@media (min-width: 992px) {
  .top-section-carousel-4 .card-body {
    min-height: 0;
  }
}
.top-section-carousel-4 .flickity-button {
  display: none;
}

.local-news-carousel {
  margin: 0 -0.5rem;
}
@media (min-width: 992px) {
  .local-news-carousel {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.9375rem;
  }
}
.local-news-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 992px) {
  .local-news-carousel:after {
    content: "";
  }
}
.local-news-carousel .carousel-sell {
  width: 335px;
  padding: 0 0.5rem;
}
@media (min-width: 992px) {
  .local-news-carousel .carousel-sell {
    max-width: 50%;
    min-width: 50%;
    flex: 1 0 0;
    padding: 0 0.9375rem;
    margin-bottom: 1.875rem;
  }
}
.local-news-carousel .article-card {
  font-size: 0.75rem;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .local-news-carousel .article-card-image {
    margin-bottom: -0.25rem;
  }
}
.local-news-carousel .card-title {
  margin-bottom: 0;
}
.local-news-carousel .flickity-button {
  display: none;
}

.exclusive-highlights-carousel .carousel-sell {
  width: 318px;
  padding: 0 0.9375rem;
}
@media (min-width: 992px) {
  .exclusive-highlights-carousel .carousel-sell {
    width: 450px;
  }
}
@media (min-width: 992px) {
  .exclusive-highlights-carousel .article-card:hover .inlinePlayButton {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .exclusive-highlights-carousel .flickity-page-dots {
    display: none;
  }
}
.exclusive-highlights-carousel .iframe-holder {
  z-index: 0;
}
@media (min-width: 992px) {
  .exclusive-highlights-carousel .inlinePlayButton {
    opacity: 0;
  }
}

.compare-package-form .flickity-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 1200px) {
  .compare-package-form .flickity-carousel:after {
    content: "";
  }
}
.compare-package-form .flickity-carousel .flickity-button {
  display: none;
}

.Carosel-Title {
  font-size: 1.7rem;
}

.article-Show-carousel:after {
  display: none;
  content: "flickity";
}

.article-Show-carousel {
  /* .col-xl-4 {
      @include media-breakpoint-up(xl) {
          flex: 1 0 calc(100% / 3);
          max-width: calc(100% / 3);
      }
  }

  .col-md-6 {
      width: 50%;

      @include media-breakpoint-up(md) {
          width: 50%;
      }

      @include media-breakpoint-up(xl) {
          flex: 1 0 50%;
          max-width: 50%;
      }
  }*/
}
@media (max-width: 991.98px) {
  .article-Show-carousel {
    margin: 0 -0.375rem;
  }
}
.article-Show-carousel .flickity-slider {
  display: flex;
}
.article-Show-carousel .flickity-carousel:after {
  display: none;
  content: "flickity";
}
@media (min-width: 1200px) {
  .article-Show-carousel .flickity-carousel:after {
    content: "";
  }
}
.article-Show-carousel .carousel-sell {
  flex: 1 0 84%;
  max-width: 100%;
  width: 100%;
  align-items: stretch;
  padding: 0 0.375rem;
  /* @include media-breakpoint-up(md) {
      flex: 1 0 50%;
      max-width: 50%;
      width: 50%;
      padding: rem-calc(0 15);
  }

  @include media-breakpoint-up(xl) {
      flex: 1 0 25%;
      max-width: 25%;
  }*/
}

.article-Show-carousel {
  margin-bottom: 2.8125rem;
}
@media (max-width: 767.98px) {
  .article-Show-carousel {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991.98px) {
  .article-Show-carousel {
    margin-bottom: 2.8125rem;
  }
}
@media (min-width: 1200px) {
  .article-Show-carousel:after {
    content: "flickity";
  }
}
.article-Show-carousel .flickity-button {
  display: block;
}
.article-Show-carousel .flickity-page-dots {
  bottom: -4px;
  right: 14rem;
}
@media (max-width: 1024px) {
  .article-Show-carousel .flickity-page-dots {
    right: 12rem;
  }
}
@media (max-width: 768px) {
  .article-Show-carousel .flickity-page-dots {
    top: 54%;
    bottom: 54%;
    right: 0rem;
  }
}
@media (max-width: 414px) {
  .article-Show-carousel .flickity-page-dots {
    top: 40%;
    bottom: 40%;
    right: 0rem;
  }
}
@media (max-width: 376px) {
  .article-Show-carousel .flickity-page-dots {
    top: 38%;
    bottom: 38%;
    right: 0rem;
  }
}
@media (max-width: 321px) {
  .article-Show-carousel .flickity-page-dots {
    top: 34%;
    bottom: 34%;
    right: 0rem;
  }
}
.article-Show-carousel .flickity-page-dots .dot {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  background-color: transparent;
  opacity: 1;
}
.article-Show-carousel .flickity-page-dots .dot:hover:before {
  background: #179edd;
}
.bg-white .article-Show-carousel .flickity-page-dots .dot:hover:before {
  background: #179edd;
}
.article-Show-carousel .flickity-page-dots .dot.is-selected:before {
  transition: background 1s ease;
  background: #179edd;
}
.bg-white .article-Show-carousel .flickity-page-dots .dot.is-selected:before {
  background: #179edd;
}
.article-Show-carousel .flickity-page-dots .dot.is-selected:after {
  width: 14px;
  height: 14px;
  border-color: #179edd;
}
.article-Show-carousel .flickity-page-dots .dot:before {
  transition: background 1s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}
.bg-white .article-Show-carousel .flickity-page-dots .dot:before {
  background: rgba(10, 18, 29, 0.7);
}
.article-Show-carousel .flickity-page-dots .dot:after {
  transition: border 0.5s ease, width 0.5s ease, height 0.5s ease;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid transparent;
  border-radius: 50%;
  width: 0;
  height: 0;
}

.Shows-Box {
  position: relative;
  width: 100%;
  height: 100%;
}
.Details-Box {
  width: 40%;
  right: 0;
  top: 50%;
}
@media screen and (min-width: 998px) {
  .Details-Box {
    position: absolute;
    width: 40%;
    right: 0;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.Video-Box {
  position: relative;
  width: 60%;
  right: 0;
}
@media screen and (min-width: 998px) {
  .Video-Box {
    position: relative;
    width: 60%;
    right: 0;
  }
}

@media (max-width: 998px) {
  .Shows-Box {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    /* optional */
    -webkit-box-align: start;
    -moz-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
  .Shows-Box .Details-Box {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 2;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
    width: 100%;
  }
  .Shows-Box .Video-Box {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
    width: 100%;
  }
  .CaroselDetails {
    /*padding: 1% 1% 1% 1%;
        margin: 3%;*/
    padding: 3% 0% 4% 0%;
    margin: 0rem;
  }
  .flickity-page-dots {
    right: 0rem;
  }
}
.CaroselDetails {
  padding: 3% 10% 4% 20%;
  margin: 3%;
}
@media (max-width: 1022px) {
  .CaroselDetails {
    padding: 3% 0% 4% 0%;
    margin: 0rem;
  }
}

.Description-title {
  font-size: 1.6rem;
}

.Headline-carousel {
  margin-top: 20px;
  margin-bottom: 8%;
  font-size: 0.9rem;
  font-weight: lighter;
}

.Date-carousel {
  margin-top: 20px;
  font-size: 0.8rem;
  font-weight: lighter;
}

.channel-image-article {
  float: left;
  padding-right: 5px;
}

.Channel-Detail-Article-Slider {
  padding-left: 55px;
  padding-top: 1.1rem;
  font-weight: bold;
  font-size: 0.7rem;
}

.Channel-Detail-Article-Slider-number {
  /*padding-left: 10px;*/
  font-weight: 200;
}

.shop-scroller-carousel {
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}
.shop-scroller-carousel .img-holder-round {
  width: 778px;
  height: 382px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.shop-scroller-carousel .img-holder-round a {
  opacity: 1;
  position: absolute !important;
  /* Optional: vertically center if image is not full height */
  display: block;
  align-items: center !important;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.shop-scroller-carousel .img-holder-round img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .shop-scroller-carousel {
    height: 600px;
  }
}
.shop-scroller-carousel .animated-slider {
  width: 778px;
  height: 382px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.shop-scroller-carousel .animated-slider a {
  opacity: 1;
  position: absolute !important;
  /* Optional: vertically center if image is not full height */
  display: block;
  align-items: center !important;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 992px) {
  .shop-scroller-carousel .animated-slider a {
    opacity: 1;
    position: absolute !important;
    bottom: 60px;
  }
}
.shop-scroller-carousel .animated-slider .slick-img {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .shop-scroller-carousel .animated-slider .slick-img {
    top: 360px !important;
    width: 90% !important;
    height: 200px;
    position: absolute;
  }
}
.shop-scroller-carousel .overlay-left {
  position: absolute;
  width: 280px;
  height: 180px;
  border-radius: 15px;
  border: 1px solid;
  opacity: 1;
  left: 140px;
  gap: 10px;
  padding: 15px;
  background-clip: border-box;
  background-color: #0F1722;
}
@media (max-width: 992px) {
  .shop-scroller-carousel .overlay-left {
    top: 0px !important;
    left: 5%;
    width: 90%;
  }
}
.shop-scroller-carousel .overlay-right {
  position: absolute;
  width: 280px;
  height: 159px;
  border-radius: 15px;
  border: 1px solid;
  opacity: 1;
  right: 140px;
  gap: 10px;
  padding: 15px;
  background-clip: border-box;
  background-color: #0F1722;
}
@media (max-width: 992px) {
  .shop-scroller-carousel .overlay-right {
    top: 190px !important;
    width: 90%;
    left: 5%;
  }
}

.contact-form-holder {
  font-size: 1rem;
  color: rgba(10, 18, 29, 0.4);
  padding: 1.125rem 1.875rem;
  margin-bottom: 3.1875rem;
}
.contact-form-holder label {
  font-size: 0.75rem;
  color: rgba(10, 18, 29, 0.4);
  margin-bottom: 0.1875rem;
}
.contact-form-holder .jcf-select {
  font-size: 1rem;
}
.contact-form-holder .form-control {
  width: 100;
  box-shadow: none;
  border-bottom: 1px solid rgba(10, 18, 29, 0.4);
}
.contact-form-holder .form-control:focus {
  box-shadow: none;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
}

.submit-holder {
  flex: 1 0 100%;
  max-width: 100%;
}

.form-control {
  border-width: 0;
  border-radius: 0;
  height: auto;
  border: none;
  box-shadow: 0 0.5px 0 -0.2px #0a121d;
  padding-left: 0;
  padding-bottom: 1.375rem;
  padding-top: 1.25rem;
  height: auto;
}
.form-control::-webkit-input-placeholder {
  color: rgba(10, 18, 29, 0.4);
}
.form-control::-moz-placeholder {
  opacity: 1;
  color: rgba(10, 18, 29, 0.4);
}
.form-control:-moz-placeholder {
  color: rgba(10, 18, 29, 0.4);
}
.form-control:-ms-input-placeholder {
  color: rgba(10, 18, 29, 0.4);
}
.form-control.placeholder {
  color: rgba(10, 18, 29, 0.4);
}
.form-control:focus {
  background-color: transparent;
}

.jcf-select {
  padding: 0;
  margin: 0;
  height: auto;
  border: none;
  box-shadow: 0 0.5px 0 -0.2px #0a121d;
  width: 100%;
  padding-left: 0;
  padding-bottom: 1.3125rem;
}
.jcf-select .jcf-select-text {
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 0;
}
.jcf-select .jcf-select-opener {
  background: none;
  height: 26px;
  display: block;
}
.jcf-select .jcf-select-opener:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: rotate(45deg) translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border: 0.2px solid #0a121d;
  border-top: none;
  border-left: none;
}
.jcf-select.jcf-drop-active .jcf-select-opener:before {
  top: 20%;
  transform: rotate(225deg) translate(-50%, -50%);
}

.modal .form-group {
  max-width: 100%;
  flex: 1 0 100%;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .modal .form-group {
    max-width: 100%;
    flex: 1 0 100%;
    margin-bottom: 1.25rem;
    padding: 0 1.875rem;
  }
}

.form-transparent input {
  background-color: transparent;
  border-color: #fff;
}

@media (min-width: 768px) {
  .search-form-content {
    margin-bottom: 2.0625rem;
  }
}
.search-form-content .form-group {
  position: relative;
}
.search-form-content label {
  color: #d0dadf;
}
@media (min-width: 768px) {
  .search-form-content label {
    font-size: 1rem;
  }
}
.search-form-content .form-control {
  padding-left: 0;
  font-size: 1rem;
  color: #fff;
}
.search-form-content .form-control::-webkit-input-placeholder {
  color: #fff;
}
.search-form-content .form-control::-moz-placeholder {
  opacity: 1;
  color: #fff;
}
.search-form-content .form-control:-moz-placeholder {
  color: #fff;
}
.search-form-content .form-control:-ms-input-placeholder {
  color: #fff;
}
.search-form-content .form-control.placeholder {
  color: #fff;
}
.search-form-content button {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-right: 0;
  color: #fff;
  height: 66px;
}

.compare-package-form {
  display: flex;
  flex-direction: column;
  position: relative;
}
.compare-package-form .flickity-carousel {
  display: flex;
  margin: 0 -0.375rem 5.3125rem;
  padding-left: 4px;
}
@media (min-width: 992px) {
  .compare-package-form .flickity-carousel {
    margin: 0 0 5.3125rem -15px;
    padding-left: 15px;
  }
}

.compare-package-col {
  width: 198px;
  margin-left: 30px;
}
.compare-package-col:first-child {
  margin-left: 0;
}
@media (min-width: 1200px) {
  .compare-package-col {
    flex: 1 0 0;
    max-width: 14.2857142857%;
  }
}

.compare-package-item {
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.compare-package-item .compare-package-item-outline {
  width: 100%;
  height: 100%;
  border: 2px solid #0095DA;
  display: block;
  opacity: 0;
  position: absolute;
  z-index: 2;
  border-radius: 8px;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.compare-package-item.package-is-selected .compare-package-item-outline {
  opacity: 1;
}
.compare-package-item.compare-package-item-disabled {
  pointer-events: none;
  opacity: 0.3;
}
.compare-package-item [type=checkbox] {
  position: absolute;
  left: 0;
  top: 0;
}
.compare-package-item [type=checkbox]:checked ~ label {
  background: #179edd;
  border-color: #179edd;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}
.compare-package-item [type=checkbox]:checked ~ label:before {
  display: block !important;
}
.compare-package-item label {
  display: inline-block;
  text-indent: -9999px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid #fff;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  float: right;
}
.compare-package-item label:before {
  font-family: "DStv-com-icons";
  content: "\e964";
  text-indent: 0;
  display: none;
}
.compare-package-item label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
}
.compare-package-item.compare-package-item-checked .fake-checkbox.fake-checkbox [class^=icon] {
  display: block;
}
.compare-package-item .icons-holder {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}
.compare-package-item .icons-holder [class=icon-tick] {
  display: none;
}
@media (max-width: 767.98px) {
  .compare-package-item p {
    margin-bottom: 0.625rem;
  }
}
.compare-package-item .value-holder {
  font-size: 0.875rem;
}
.compare-package-item .value-holder p {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}
.compare-package-item .value-holder .value-text-sm {
  font-size: 0.875rem;
}

.compare-package-item-img-holder {
  background-size: cover;
  background-position: center;
  border-radius: 0.375rem 0.375rem 0 0;
  padding: 2.625rem 1.1875rem 1.9375rem;
  margin: 0 0 -0.5rem;
}
@media (min-width: 768px) {
  .compare-package-item-img-holder {
    margin-bottom: -0.9375rem;
  }
}

@-moz-document url-prefix() {
  .compare-package-item-img-holder {
    position: relative;
    z-index: 1;
    background-size: auto 105%;
  }
}
.compare-package-name {
  font-size: 1.25rem;
}

.compare-package-item-content {
  font-size: 0.75rem;
  line-height: 1.66;
  padding: 1rem 1rem 0.8125rem 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .compare-package-item-content {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}

@-moz-document url-prefix() {
  .compare-package-item-content {
    padding-top: 1.625rem;
  }
}
.compare-package-item-title {
  display: block;
  margin-bottom: 0.25rem;
}

.compare-package-item-list {
  margin-bottom: 0.75rem;
}
.compare-package-item-list li {
  position: relative;
  padding-left: 0.5625rem;
  margin-bottom: 0;
}
.compare-package-item-list li:before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
}

.form-buttons-holder {
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .form-buttons-holder {
    order: -1;
    justify-content: flex-end;
    margin-bottom: 3rem;
  }
}
.form-buttons-holder button {
  flex: 1 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  margin: 0 0.625rem;
}
.form-buttons-holder button:disabled:not(.btn) {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .form-buttons-holder button {
    flex: 0 1 210px;
    max-width: none;
  }
}
@media (max-width: 991.98px) {
  .form-buttons-holder button {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.tab-holder {
  font-size: 1rem;
}

.list-group-holder {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.3125rem;
  padding: 0 12px;
}
@media (min-width: 768px) {
  .list-group-holder {
    flex: 1 0 90px;
  }
}

.tabs-list-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  text-align: center;
  max-width: 430px;
}
@media (min-width: 768px) {
  .tabs-list-group {
    max-width: 610px;
  }
}
.tabs-list-group [class^=icon] {
  width: 50px;
  height: 50px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0a121d;
  margin: 0 auto;
  font-size: 1.5rem;
}
@media (min-width: 992px) {
  .tabs-list-group [class^=icon] {
    width: 70px;
    height: 70px;
  }
}
.tabs-list-group .ico-reverse:before {
  transform: rotate(180deg);
  display: inline-block;
}

.tabs-group-item-action {
  flex: 1 0 50px;
  max-width: 50px;
  border-radius: 50%;
  background: none;
  padding: 0;
  border: none;
  margin: 0 auto;
  flex: 1 0 15%;
  min-width: 15%;
  max-width: 20%;
}
@media (min-width: 451px) {
  .tabs-group-item-action {
    flex: 1 0 20%;
    min-width: 20% !important;
    margin: 0 0 1.25rem;
  }
}
.tabs-group-item-action.active, .tabs-group-item-action:hover {
  background: transparent;
  text-decoration: none;
}
.tabs-group-item-action.active [class^=icon], .tabs-group-item-action:hover [class^=icon] {
  transition: background 0.5s ease, color 0.5s ease;
  color: #fff;
  background: #179edd;
}

.list-group-item + .list-group-item.active {
  border-width: 0;
  margin-top: 0;
}

.tab-item-description {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .tab-item-description {
    font-size: 0.875rem;
  }
}

.tab-pane-visual {
  font-size: 0.875rem;
  max-width: 615px;
  margin: 0 auto;
}
.tab-pane-visual p {
  max-width: 500px;
  margin: 0 auto;
  font-size: 0.875rem !important;
}

.installer-section {
  padding: 3.125rem 0 0 0;
}

.installer-tab-nav {
  flex-direction: row;
  margin: 0 -0.75rem;
}
.installer-tab-nav a {
  font-weight: 500;
}

.installer-group-item-action {
  color: #0a121d;
  flex: 0 1 auto;
  font-size: 1rem;
  margin: 0 12px;
}
.installer-group-item-action.active, .installer-group-item-action:hover {
  color: #179edd;
}
.installer-group-item-action.active {
  font-weight: 700;
}

.installer-tab-content {
  padding-bottom: 5.25rem;
}

.carousel-installer:after {
  display: none;
  content: "flickity";
}
.carousel-installer .flickity-sell {
  margin: 0;
  padding-right: 0.75rem;
}
.carousel-installer .flickity-sell:last-child() {
  padding-right: 0;
}
@media (min-width: 992px) {
  .carousel-installer .flickity-sell {
    padding-right: 1.875rem;
  }
}
.carousel-installer .flickity-button {
  display: none;
}

.installer-logo {
  padding: 1.25rem;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(10, 18, 29, 0.1);
  border-radius: 0.4rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.installer-logo img {
  width: 100%;
  max-width: 100%;
}

.tab-content > .tab-pane {
  display: block;
  height: 0;
  visibility: hidden;
}
.tab-content > .active {
  height: auto;
  visibility: visible;
}

.payment-method-content-col,
.payment-method-tablist-col {
  width: 100%;
}
@media (min-width: 768px) {
  .payment-method-content-col,
  .payment-method-tablist-col {
    font-size: 1rem;
  }
}

.payment-method-tablist-holder {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.payment-method-tablist-holder > .row [class^=col] {
  margin-bottom: 1.875rem;
}
.payment-method-tablist-holder .list-group-item {
  background: none;
  border: none;
}
.payment-method-tablist-holder .list-group-item:hover {
  text-decoration: none;
}
.payment-method-tablist-holder .list-group-item.active .list-group-item-content {
  filter: brightness(1.25);
  transform: scale(1.05);
}
.payment-method-tablist-holder .list-group-item-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  min-height: 114px;
  background: #179edd;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  transform: scale(1);
  padding: 1.875rem 0;
  transition: transform 0.2s ease;
}
@media (min-width: 992px) {
  .payment-method-tablist-holder .list-group-item-content {
    padding-bottom: 1.25rem;
  }
}
.payment-method-tablist-holder .list-group-item-content img {
  display: block;
}
.payment-method-tablist-holder .list-group-item-content .payment-method-description {
  margin-top: auto;
}
.payment-method-tablist-holder .img-holder {
  box-shadow: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 24px;
  margin-bottom: 0.9375rem;
}

.js-only-child .payment-method-tablist-col {
  display: none;
}
.payment-method-tablist-col .filtered-element {
  max-width: 50%;
  flex: 1 0 50%;
  padding: 0 0.375rem 0.75rem;
}
@media (min-width: 768px) {
  .payment-method-tablist-col .filtered-element {
    max-width: 33.3333333333%;
    flex: 1 0 33.3333333333%;
    padding: 0 0.9375rem 1.875rem;
  }
}
@media (min-width: 1200px) {
  .payment-method-tablist-col .filtered-element {
    max-width: 16.6666666667%;
    flex: 1 0 16.6666666667%;
  }
}
@media (min-width: 768px) {
  .payment-method-tablist-col .filter-title-list {
    padding-left: 0.9375rem;
  }
}
.payment-method-tablist-col .filter-title-list h1 {
  font-weight: 700;
}

.filter-holder {
  display: flex;
  overflow-x: auto;
  padding-bottom: 1rem;
}
@media (min-width: 992px) {
  .filter-holder {
    padding-bottom: 2.25rem;
  }
}

.filter-list {
  position: relative;
  width: auto;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .filter-list {
    font-size: 0.875rem;
  }
}
.filter-list .filter-item {
  font-weight: 500;
}
.filter-list .filter-item-active {
  font-weight: 650;
}
.filter-list .filter-item-active a {
  color: #179edd;
}

.filter-title-list.title-hide {
  display: none;
}
.filter-title-list h1 {
  font-weight: 700;
  margin-bottom: 2rem;
  padding-left: 0;
}
.filter-title-list h1:first-child {
  display: block;
}

.payment-method-content-col {
  display: none;
  color: #0a121d;
  flex: 1 0 100%;
}
@media (max-width: 767.98px) {
  .payment-method-content-col {
    padding: 0;
  }
}
@media (min-width: 992px) {
  .payment-method-content-col {
    flex: 1 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .payment-method-content-col {
    flex: 1 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
}
.js-only-child .payment-method-content-col {
  flex: 1 0 100%;
  max-width: 100%;
}
.payment-method-content-col .payment-method-content-holder {
  background: #fff;
  padding: 1.875rem 1.875rem 1.4375rem;
  border-radius: 6px;
  margin-bottom: 1.4375rem;
}
@media (min-width: 992px) {
  .payment-method-content-col .payment-method-content-holder {
    padding-bottom: 0.5rem;
  }
}
.payment-method-content-col ul {
  padding-left: 1.0625rem;
  margin-bottom: 1.4375rem;
}
.payment-method-content-col h1 {
  padding-left: 0.9375rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 1199.98px) {
  .payment-method-content-col h1 {
    font-size: 2.375rem;
  }
}
@media (min-width: 992px) {
  .payment-method-content-col h1 {
    padding-left: 0;
    margin-bottom: 2.9375rem;
  }
}
.payment-method-content-col p a,
.payment-method-content-col li a,
.payment-method-content-col strong a {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
}
.payment-method-content-col p a:hover,
.payment-method-content-col li a:hover,
.payment-method-content-col strong a:hover {
  color: #179edd;
}
.payment-method-content-col p {
  margin-bottom: 1.4375rem;
}
.payment-method-content-col .payment-method-list-title {
  display: block;
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .payment-method-content-col .payment-method-list-title {
    margin-bottom: 1.625rem;
  }
}
.payment-method-content-col img {
  width: 100%;
  margin-bottom: 1.6875rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .payment-method-content-col img {
    width: auto;
  }
}

.tab-content-active .payment-method-content-col {
  display: block;
}
@media (min-width: 992px) {
  .tab-content-active .filtered-element {
    max-width: 50%;
    flex: 1 0 50%;
  }
}
@media (min-width: 1200px) {
  .tab-content-active .filtered-element {
    max-width: 50%;
    flex: 1 0 50%;
  }
}

.payment-method-content-title {
  display: block;
}

.pay-method-sub-title {
  font-size: 5rem;
  margin: 0 0 0.25rem 0;
  line-height: 1.25;
}
@media (max-width: 1499px) {
  .pay-method-sub-title {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .pay-method-sub-title {
    display: none;
  }
}

.js-hidden {
  display: none !important;
}

.js-show {
  display: block !important;
}

.navbar-active {
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.navbar-active .icon-hamburger-nav {
  display: none;
}
.navbar-active .icon-Close_M {
  display: block;
}
.navbar-active [id=header] {
  background-color: #0a121d;
  bottom: 0;
}
.navbar-active .search-mobile {
  opacity: 0;
}

.icon-hamburger-nav {
  display: block;
}

.icon-Close_M {
  display: none;
}

[id=header] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  z-index: 50;
}
[id=header]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 150px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  z-index: -1;
}
@media (min-width: 768px) {
  [id=header]:after {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  [id=header] .collapse:not(.show) {
    display: block;
  }
}
[id=header].fixed-position {
  z-index: 200;
}
[id=header].fixed-position:after {
  top: 0;
}
[id=header].fixed-position .navbar {
  padding: 0.625rem 1rem;
}
@media (min-width: 768px) {
  [id=header].fixed-position .navbar {
    padding: 0 1rem;
  }
}

.navbar {
  transition: padding 0.5s ease;
  background-color: transparent;
  padding: 1rem 1rem 0;
  top: 0;
  left: 0;
  position: relative;
}
@media (min-width: 768px) {
  .navbar {
    padding-top: 0;
  }
}
.navbar .navbar-toggler {
  border-color: transparent;
  width: 55px;
}
.navbar .navbar-toggler:focus {
  outline: none;
}
.navbar .nav-item:focus,
.navbar .nav-link:focus {
  outline: none;
  border: none;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .navbar .nav-item,
  .navbar .nav-link {
    font-size: 0.75rem;
  }
}
.navbar .container {
  position: relative;
}
.navbar .dropdown-menu {
  background: none;
}

@media (min-width: 768px) {
  .navbar-nav {
    margin-left: 0.625rem;
  }
}

.nav-item {
  position: relative;
  color: #fff;
}
@media (min-width: 768px) {
  .nav-item {
    margin: 0 0.25rem;
  }
}
.nav-item.active {
  font-weight: 700;
}
.nav-item.active a {
  position: relative;
}
.nav-item.active a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #179edd;
}
@media (min-width: 768px) {
  .nav-item.active a:after {
    left: 0.5rem;
    width: calc(100% - 1rem);
  }
}

.search-opener.nav-link {
  color: #fff;
}
.search-opener.nav-link.active + .header-search-form {
  opacity: 1;
  transform: translateX(0);
}

.search-mobile {
  opacity: 1;
}
.search-mobile .btn.active + .header-search-form {
  opacity: 1;
  transform: translateX(0);
}

@media (min-width: 768px) {
  .nav-controls {
    margin: 0 -1rem;
  }
}
@media (min-width: 768px) {
  .nav-controls .nav-item {
    margin: 0 0.625rem;
  }
}
.nav-controls .nav-link {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  align-items: center;
}
.nav-controls [class^=icon] {
  font-size: 1.3125rem;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .nav-controls [class^=icon] {
    font-size: 0.9375rem;
  }
}
@media (min-width: 992px) {
  .nav-controls [class^=icon] {
    font-size: 1.3125rem;
  }
}
.nav-controls .dropdown-menu {
  right: 0;
  left: auto;
  background: none;
}

.header-search-form {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateX(100%);
  opacity: 0;
}

.navbar-toggler {
  z-index: 10;
}

.navbar-brand {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .navbar-brand img {
    width: 118px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-collapse {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 0;
    z-index: 9;
    opacity: 0;
    height: 0;
    visibility: hidden;
    padding-top: 115px;
    transition: none !important;
  }
  .navbar-collapse.navbar-active {
    min-height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .navbar-collapse.show {
    opacity: 1;
    visibility: visible;
  }
}

body.search-active {
  overflow: hidden;
}

.search-active {
  opacity: 1;
  visibility: visible;
}
.search-active .search-holder {
  display: block;
  right: 0;
  bottom: 0;
  position: fixed;
  opacity: 1;
  visibility: visible;
  height: auto;
  padding: 5.4375rem 0 1.25rem;
}
@media (min-width: 768px) {
  .search-active .search-holder {
    padding: 4.375rem 0 1.875rem;
  }
}
@media (min-width: 992px) {
  .search-active .search-holder {
    padding: 6.3125rem 0 1.25rem;
  }
}

.search-holder {
  transition: opacity 0.5s ease, visibility 0.5s ease;
  height: 0;
  z-index: 999;
  top: 0;
  padding: 0;
  left: 0;
  width: 100%;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(10, 18, 29, 0.8);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .search-holder {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}
@-moz-document url-prefix() {
  .search-holder {
    background: rgba(10, 18, 29, 0.95);
  }
}
.search-holder .search-opener {
  transition: color 0.5s ease;
  position: absolute;
  top: 3rem;
  right: 2rem;
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
}
@media (min-width: 768px) {
  .search-holder .search-opener {
    font-size: 1.5625rem;
    top: 3.0625rem;
    right: 2.8125rem;
  }
}
.search-holder .search-opener:hover {
  color: rgba(255, 255, 255, 0.7);
}
.search-holder .search-form {
  margin-bottom: 2.9375rem;
}
@media (min-width: 768px) {
  .search-holder .search-form {
    margin-bottom: 7.0625rem;
  }
}
.search-holder .search-form .row {
  display: flex;
  align-items: flex-end;
}
.search-holder .search-form button {
  float: right;
  display: none;
}
@media (min-width: 768px) {
  .search-holder .search-form button {
    display: block;
  }
}
.search-holder .search-form input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  width: 100%;
  color: #fff;
  font-size: 1.75rem;
  padding: 0.5rem 0.625rem 0.5rem 0.5rem;
}
@media (min-width: 768px) {
  .search-holder .search-form input {
    font-size: 3rem;
  }
}
.search-holder .search-form input::-webkit-input-placeholder {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}
@media (min-width: 576px) {
  .search-holder .search-form input::-webkit-input-placeholder {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-form input::-webkit-input-placeholder {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .search-holder .search-form input::-webkit-input-placeholder {
    font-size: 3rem;
  }
}
.search-holder .search-form input::-moz-placeholder {
  opacity: 1;
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}
@media (min-width: 576px) {
  .search-holder .search-form input::-moz-placeholder {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-form input::-moz-placeholder {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .search-holder .search-form input::-moz-placeholder {
    font-size: 3rem;
  }
}
.search-holder .search-form input:-moz-placeholder {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}
@media (min-width: 576px) {
  .search-holder .search-form input:-moz-placeholder {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-form input:-moz-placeholder {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .search-holder .search-form input:-moz-placeholder {
    font-size: 3rem;
  }
}
.search-holder .search-form input:-ms-input-placeholder {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}
@media (min-width: 576px) {
  .search-holder .search-form input:-ms-input-placeholder {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-form input:-ms-input-placeholder {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .search-holder .search-form input:-ms-input-placeholder {
    font-size: 3rem;
  }
}
.search-holder .search-form input.placeholder {
  font-size: 1.25rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.6);
  padding: 0;
}
@media (min-width: 576px) {
  .search-holder .search-form input.placeholder {
    font-size: 1.75rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-form input.placeholder {
    font-size: 2.125rem;
  }
}
@media (min-width: 992px) {
  .search-holder .search-form input.placeholder {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .search-holder .search-list {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 1200px) {
  .search-holder .search-list {
    justify-content: flex-start;
  }
}
.search-holder .search-list h4 {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .search-holder .search-list h4 {
    margin-bottom: 1.6875rem;
  }
}
.search-holder .search-list > li {
  margin-bottom: 1.875rem;
}
@media (min-width: 768px) {
  .search-holder .search-list > li {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .search-holder .search-list > li:not(:first-child) {
    padding-left: 18.1875rem;
  }
}
.search-holder .search-list ul li {
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .search-holder .search-list ul li {
    margin-bottom: 0.625rem;
  }
}
.search-holder .search-list ul a {
  transition: color 0.5s ease;
  color: #fff;
  text-decoration: none;
}
.search-holder .search-list ul a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.home-package-logo {
  font-size: 3rem;
}

.value-holder {
  line-height: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}

body {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

.bg-white {
  color: #0a121d;
}

#wrapper {
  overflow: hidden;
  position: relative;
  z-index: 9999;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: 50% 90px;
}
@media (min-width: 768px) {
  #wrapper {
    background-size: 100%;
  }
}
@media (max-width: 768px) {
  #wrapper {
    overflow-y: visible;
    overflow-x: hidden;
  }
}

/*This blurs the header of the article page*/
.blurArticle {
  background-position: center top !important;
}
@media (min-width: 768px) {
  .blurArticle {
    background-size: 1920px 900px !important;
  }
}
.blurArticle:before {
  content: "";
  width: 100%;
  height: 1014px;
  position: absolute;
  z-index: -1;
  background-color: rgba(10, 18, 29, 0.6);
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .blurArticle:before {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}
.blurArticle:after {
  content: "";
  width: 100%;
  height: 300px;
  background: linear-gradient(180deg, rgba(10, 18, 29, 0) 0%, #0a121d 99%);
  position: absolute;
  top: 600px;
  z-index: -1;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .blurArticle:after {
    top: 740px;
  }
}

.bg-stretch,
.bg-cover {
  background-position: 50% 0;
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-cover {
  background-size: cover;
}

p > a {
  color: rgba(255, 255, 255, 0.7);
}

.container-sm {
  max-width: 1200px;
}

.small-container {
  max-width: 720px;
}

.date {
  font-size: 0.875rem;
}

.article-description {
  display: inline-block;
  vertical-align: middle;
  line-height: 1.6;
  font-size: 0.875rem;
}
.article-description > [class^=icon] {
  color: #179edd;
  font-size: 1.125rem;
  line-height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-top: -0.25rem;
}

.text-link {
  color: inherit;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.1s ease-in-out;
}
.text-link:hover {
  color: #0095da !important;
}

.blur-box {
  transition: background 0.5s ease, color 0.5s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.102);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1) 0% 0% no-repeat padding-box;
  padding: 1.5625rem 1.875rem 1.25rem;
  height: 100%;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .blur-box {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}
.blur-box:hover {
  background: #fff;
  color: #0a121d;
}

.link-overlay {
  margin-top: auto;
}
.link-overlay:hover {
  text-decoration: none;
}
.link-overlay:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.text-top-secondary {
  color: rgba(255, 255, 255, 0.7);
}

.privacy-section {
  margin-bottom: 3.75rem;
}
@media (max-width: 991.98px) {
  .privacy-section {
    margin-left: -0.9375rem;
    margin-right: -0.9375rem;
  }
}
.privacy-section h2,
.privacy-section p {
  margin-bottom: 1.25rem;
}
@media (min-width: 768px) {
  .privacy-section h2,
  .privacy-section p,
  .privacy-section .list-item-title {
    margin-bottom: 1.875rem;
  }
}
.privacy-section .list-item-title {
  display: inline-block;
}
.privacy-section ul {
  padding-left: 1rem;
}
.privacy-section ul a {
  text-decoration: underline;
  color: inherit;
}
.privacy-section ul a:hover {
  color: #179edd;
}

.badge-secondary {
  display: inline-block;
  background: #313844;
  vertical-align: middle;
  border-left: 4px solid #5045d3;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .badge-secondary {
    font-size: 1.125rem;
    padding: 0.375rem 1.4375rem 0.3125rem 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .md-h4 {
    font-size: 1.125rem;
  }
}

@media (max-width: 575.98px) {
  .md-h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .h1-lg {
    font-size: 3.625rem;
    margin-bottom: 1.5625rem;
  }
}

.h1-sm {
  font-size: 2.375rem;
  margin-bottom: 1.6875rem;
  margin-top: 0;
}
@media (min-width: 992px) {
  .h1-sm {
    font-size: 3rem;
  }
}

.h2-sm {
  font-size: 2.375rem;
  margin-bottom: 1.6875rem;
  margin-top: 0;
}
@media (min-width: 992.02px) and (max-width: 1499.98px) {
  .h2-sm {
    font-size: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .md-down-h5 {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .sm-down-h2 {
    font-size: 1.75rem;
  }
}

.md-h1 {
  font-size: 3rem;
}

@media (max-width: 991.98px) {
  .mobile-at-bottom {
    position: absolute;
    left: 0.9375rem;
    top: calc(100% + 0px);
    width: calc(100% - 30px);
  }
}
@media (min-width: 992px) {
  .mobile-at-bottom {
    max-width: 445px;
  }
}

.value-text-sm {
  font-size: 1.125rem;
}

.text-secondary-info {
  color: #00B9AF;
}

.subtitle {
  font-size: 1.125rem;
}

.subtitle02 {
  font-size: 1rem;
  display: block;
  margin-bottom: 1.25rem;
}
@media (min-width: 992px) {
  .subtitle02 {
    font-size: 1.125rem;
  }
}

.list-two-col {
  column-count: 2;
}

.bold {
  font-weight: 700;
}

.bg-wrap00 {
  position: relative;
  background-repeat: no-repeat;
  background-position: bottom;
  padding-bottom: 2.1875rem;
  background-size: cover;
}
.bg-wrap00:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 200px;
  width: 100%;
  background: linear-gradient(to top, rgba(10, 18, 29, 0), #0a121d);
}

.text-normal {
  font-size: 1rem;
}

.tab-pane.hw-min-height.active {
  min-height: 20rem;
}

.protect-decoder {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}
.protect-decoder .protect-decoder-item {
  height: 100%;
  padding: 0 0.9375rem;
  font-size: 1rem;
}
.protect-decoder .protect-decoder-item .text-holder .subtitle {
  color: #fff;
}
.protect-decoder .img-holder {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 768px) {
  .protect-decoder .img-holder {
    min-height: 7.3rem;
  }
}
@media (min-width: 992px) {
  .protect-decoder .img-holder {
    min-height: 13.5rem;
  }
}
.protect-decoder img {
  max-width: 100%;
}
.protect-decoder .subtitle {
  display: block;
  font-size: 1.125rem;
  color: #535960;
  margin-bottom: 0.9375rem;
}
.protect-decoder .subtitle-lg {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
  color: rgba(10, 18, 29, 0.7);
}
@media (min-width: 992px) {
  .protect-decoder .subtitle-lg {
    font-size: 1.25rem;
  }
}
.protect-decoder .subtitle-lg a {
  color: rgba(10, 18, 29, 0.7);
}
.protect-decoder a {
  text-decoration: underline;
  font-weight: 700;
  color: inherit;
}
.protect-decoder .separated-list {
  font-weight: 700;
  opacity: 0.7;
  margin-bottom: 4.25rem;
}

.available-services {
  padding-bottom: 3rem;
}

.available-services-bg {
  background-position-y: 100%;
  background-repeat: no-repeat;
}

.available-services-item {
  position: relative;
  background-size: cover;
  border-radius: 0.5rem;
  margin: 0 auto;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  padding: 1.25rem;
  max-width: 384px;
  height: 212px;
  background-repeat: no-repeat;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 992px) {
  .available-services-item {
    width: 100%;
    background-position: right;
  }
}
@media (min-width: 1200px) {
  .available-services-item {
    background-position: contain;
    height: 253px;
    max-width: 100%;
  }
}
.available-services-item .text-holder {
  position: absolute;
  bottom: 20px;
  left: 23px;
  max-width: 40%;
  z-index: 2;
}
@media (min-width: 992px) {
  .available-services-item .text-holder {
    max-width: 60%;
  }
}
@media (min-width: 1200px) {
  .available-services-item .text-holder {
    max-width: 40%;
  }
}
.available-services-item .text-holder p:first-child {
  font-size: 0.75rem;
}
@media (min-width: 1200px) {
  .available-services-item .text-holder p:first-child {
    font-size: 0.875rem;
  }
}
.available-services-item .text-holder p:last-child {
  margin-bottom: 0;
}

.available-services-logo-holder {
  max-width: 55%;
  margin-bottom: 1rem;
}
.available-services-logo-holder img {
  max-width: 100%;
}

.bg-wrap01 {
  background-repeat: no-repeat;
  background-position: bottom;
}

.tabs-group-item-action .bg-wrap01 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.slider-subtitle {
  margin-bottom: 1.5rem;
}

.text-small {
  font-size: 0.75rem;
}
@media (min-width: 992px) {
  .text-small {
    font-size: 0.875rem;
  }
}

.support-channel-item-container {
  margin-bottom: 3rem;
}
.support-channel-item-container:last-child() {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .support-channel-item-container:nth-child(n+3) {
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .support-channel-item-container:nth-child(n+4) {
    margin-bottom: 0;
  }
}

.support-channel-item {
  display: flex;
  font-size: 1rem;
}
.support-channel-item .app-btn {
  display: flex;
}
.support-channel-item .subtitle {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.625rem;
}
.support-channel-item .img-holder img {
  max-width: 100%;
  margin-left: -0.6875rem;
}
@media (min-width: 992px) {
  .support-channel-item .img-holder img {
    margin-left: -1.25rem;
  }
}
.support-channel-item p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}
.support-channel-item a {
  font-weight: 700;
  text-decoration: underline;
  color: inherit;
}
.support-channel-item a:hover {
  color: white;
}

.bordered {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.h1-sever-error {
  font-size: 3.625rem;
}
@media (min-width: 768px) {
  .h1-sever-error {
    font-size: 4.875rem;
  }
}

@media (min-width: 768px) {
  .server-error-title-holder {
    margin-bottom: 1.25rem;
  }
}

.page-error-nav-buttons {
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -0.375rem 1.0625rem;
}
@media (min-width: 768px) {
  .page-error-nav-buttons {
    margin-bottom: 2.5rem;
  }
}
.page-error-nav-buttons .btn {
  max-width: 210px !important;
  margin: 0 0.375rem 0.9375rem;
}
@media (min-width: 768px) {
  .page-error-nav-buttons .btn {
    flex: 1 0 auto;
    max-width: none;
  }
}
.page-error-nav-buttons .btn + .btn {
  margin: 0 0.375rem 0.9375rem;
}

.badge-secondary {
  color: #fff;
}

.modal {
  font-size: 1rem;
}
.modal .modal-header {
  position: relative;
  border: none;
}
@media (min-width: 768px) {
  .modal .modal-header {
    padding-top: 3.4375rem;
  }
}
.modal .modal-title {
  font-size: 1.125rem;
  margin: 0 auto;
}
.modal .contact-form-holder {
  padding-top: 0.8125rem;
  padding-bottom: 3.125rem;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .modal .contact-form-holder {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}
.modal .contact-form-holder .btn {
  min-width: 210px;
}
.modal .form-control {
  box-shadow: 0 0.5px 0 -0.2px #0a121d;
}
.modal .h4 {
  font-size: 1.5rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .modal .h4 {
    font-size: 2.375rem;
  }
}
.modal .close {
  position: absolute;
  right: 0;
  top: 50%;
  margin: 0;
  transform: translateY(-50%);
  font-size: 2.5rem;
  color: #0a121d;
  opacity: 1;
  font-weight: 100;
}
@media (min-width: 768px) {
  .modal .close {
    padding-top: 3.4375rem;
  }
}

.modal-backdrop {
  background-color: transparent;
  opacity: 1;
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .modal-backdrop {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}

.modal-backdrop.show {
  opacity: 1;
}

.modal-dialog {
  max-width: 570px;
}

.modal-body {
  padding: 0;
}
@media (min-width: 768px) {
  .modal-body {
    padding: 0 1.875rem;
  }
}

.modal-footer {
  border: none;
}

.gradient-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #0a121d, rgba(10, 18, 29, 0));
  height: 200px;
  width: 100%;
}

.gradient-lighter-bottom:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(to top, #263140, rgba(38, 49, 64, 0));
  height: 280px;
  width: 100%;
  z-index: -1;
  opacity: 0.2;
}

.no-gradient:after {
  content: "";
  display: none;
}

.blur-at-top {
  position: relative;
}
@media (min-width: 768px) {
  .blur-at-top {
    padding-top: 2.125rem;
  }
}
.blur-at-top:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50%;
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .blur-at-top:before {
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
}
.blur-at-top .container {
  position: relative;
  z-index: 1;
}

.latest-local-news {
  margin-top: 0px;
}
.latest-local-news .card {
  background-color: transparent;
}

.latest-local-news .container > h1,
.latest-local-news .container > h2,
.latest-local-news .container > h3,
.latest-local-news .container > h4,
.latest-local-news .container > h5,
.latest-local-news .container > p,
.advantages-section .container > h1,
.advantages-section .container > h2,
.advantages-section .container > h3,
.advantages-section .container > h4,
.advantages-section .container > h5,
.advantages-section .container > p,
.pros-section .container > h1,
.pros-section .container > h2,
.pros-section .container > h3,
.pros-section .container > h4,
.pros-section .container > h5,
.pros-section .container > p,
.personalised-view-section .container > h1,
.personalised-view-section .container > h2,
.personalised-view-section .container > h3,
.personalised-view-section .container > h4,
.personalised-view-section .container > h5,
.personalised-view-section .container > p {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .latest-local-news .container > h1,
  .latest-local-news .container > h2,
  .latest-local-news .container > h3,
  .latest-local-news .container > h4,
  .latest-local-news .container > h5,
  .latest-local-news .container > p,
  .advantages-section .container > h1,
  .advantages-section .container > h2,
  .advantages-section .container > h3,
  .advantages-section .container > h4,
  .advantages-section .container > h5,
  .advantages-section .container > p,
  .pros-section .container > h1,
  .pros-section .container > h2,
  .pros-section .container > h3,
  .pros-section .container > h4,
  .pros-section .container > h5,
  .pros-section .container > p,
  .personalised-view-section .container > h1,
  .personalised-view-section .container > h2,
  .personalised-view-section .container > h3,
  .personalised-view-section .container > h4,
  .personalised-view-section .container > h5,
  .personalised-view-section .container > p {
    margin-bottom: 40px;
  }
}

.local-channels .container h1,
.local-channels .container h2,
.local-channels .container h3,
.local-channels .container h4,
.local-channels .container h5,
.local-channels .container p {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .local-channels .container h1,
  .local-channels .container h2,
  .local-channels .container h3,
  .local-channels .container h4,
  .local-channels .container h5,
  .local-channels .container p {
    margin-bottom: 40px;
  }
}

.pros-section .img-holder {
  margin-bottom: 0;
  margin-top: 2rem;
}

.exclusive-highlights-section {
  padding: 2.25rem 0 1.6875rem;
}
@media (min-width: 992px) {
  .exclusive-highlights-section {
    padding: 3.375rem 0 3.75rem;
  }
}
.exclusive-highlights-section .container {
  overflow: visible;
}

.local-channels {
  background-image: radial-gradient(closest-corner at 36% 23%, #263140, rgba(38, 49, 64, 0.25));
  padding: 2.25rem 0 1.6875rem;
}
.local-channels .chanel-card {
  padding: 0;
}
.local-channels.border .chanel-card {
  border: 0;
  background: none;
}
.local-channels .chanel-box-sm {
  flex: 1 0 calc(25% - 12px);
  max-width: calc(25% - 12px);
}
@media (min-width: 320px) and (max-width: 366px) {
  .local-channels .chanel-box-sm {
    max-width: 25%;
    flex: 1 0 25%;
  }
}
@media (min-width: 768px) {
  .local-channels .chanel-box-sm {
    flex: 1 0 calc(10% - 12px);
    max-width: calc(10% - 12px);
  }
}
@media (min-width: 992px) {
  .local-channels .chanel-box-sm {
    max-width: calc(10% - 12px);
    flex: 1 0 calc(10% - 12px);
  }
}
@media (min-width: 992px) {
  .local-channels .chanel-box-sm {
    max-width: calc(10% - 30px);
    flex: 1 0 calc(10% - 30px);
  }
}

.top-section, .top-panel-standard {
  font-size: 1.25rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 2.5rem;
  padding-top: 143px;
  font-size: 1rem;
  z-index: 2;
  /* this was added when the new, higher menu was introduced */
}
@media (min-width: 768px) {
  .top-section, .top-panel-standard {
    padding-top: 103px;
    font-size: 1.125rem;
    margin-bottom: 3.75rem;
  }
}
.top-section .text-holder, .top-panel-standard .text-holder {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .top-section .text-holder, .top-panel-standard .text-holder {
    padding-bottom: 0;
  }
}
@media (min-width: 1500px) {
  .top-section .text-holder, .top-panel-standard .text-holder {
    font-size: 1rem;
  }
}
.top-section .article-description, .top-panel-standard .article-description {
  margin-bottom: 1.25rem;
  display: block;
}
.top-section .date, .top-panel-standard .date {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.6875rem;
}
@media (min-width: 768px) {
  .top-section .date, .top-panel-standard .date {
    margin-bottom: 1.25rem;
  }
}
.top-section .img-holder, .top-panel-standard .img-holder {
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
  text-align: center;
  z-index: 2;
}
.top-section .img-holder img, .top-panel-standard .img-holder img {
  margin: auto;
}
.top-section .news-intro-imageVideo, .top-panel-standard .news-intro-imageVideo {
  z-index: 2;
  width: 100%;
}
.top-section .news-intro-imageVideo .img-holder, .top-panel-standard .news-intro-imageVideo .img-holder {
  margin-top: 0;
}
.top-section .news-intro-imageVideo .img-holder img, .top-panel-standard .news-intro-imageVideo .img-holder img {
  margin: auto;
  width: 100%;
}
@media (min-width: 992px) {
  .top-section .news-intro-imageVideo .img-holder, .top-panel-standard .news-intro-imageVideo .img-holder {
    margin-top: 2.8125rem;
  }
  .top-section .news-intro-imageVideo .img-holder img, .top-panel-standard .news-intro-imageVideo .img-holder img {
    width: 690px;
  }
}
@media (min-width: 992px) {
  .top-section .sm-font, .top-panel-standard .sm-font {
    font-size: 1rem;
  }
}
.top-section > .container, .top-panel-standard > .container {
  margin-top: 30px;
}

@media (min-width: 768px) and (max-width: 1499px) {
  .hero-compare .text-holder {
    padding-bottom: 0 !important;
  }
}
@media (min-width: 768px) and (max-width: 1499px) {
  .hero-compare ~ .blur-at-top {
    padding-top: 0 !important;
  }
}

.img-holder img {
  margin: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .top-section-news {
    font-size: 1rem;
  }
}

.sharedrop-holder {
  position: relative;
  float: right;
  z-index: 1;
  height: 0;
  border-radius: 30px;
  margin-left: 10px;
}
.sharedrop-holder .btn {
  transition: background-color 150ms ease-out, color 150ms ease-out !important;
}
.sharedrop-holder:hover {
  background: #179edd;
}
.sharedrop-holder:hover .share-list {
  opacity: 1;
  height: 134px;
}
.sharedrop-holder:hover .drop-opener {
  background-color: transparent;
}
.sharedrop-holder:hover .drop-opener.btn-light {
  background: #179edd;
  border-color: transparent;
}
.sharedrop-holder a:not([href]),
.sharedrop-holder a {
  color: #0a121d;
}
.sharedrop-holder a:hover {
  background: #fff;
}

.drop-opener {
  border-color: transparent;
  background-color: transparent;
}

.share-list {
  position: absolute;
  opacity: 0;
  height: 0;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 30px;
  background: #179edd;
  padding-top: 40px;
  z-index: -1;
  overflow: hidden;
  transition: opacity 150ms ease-out, height 150ms ease-out;
}
.share-list a {
  display: flex;
  width: 47px;
  height: 47px;
  margin: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.share-list a:hover {
  text-decoration: none;
  color: #0a121d;
}

.btn-holder .sharedrop-holder {
  transform: translate(0, 0);
  margin-left: 0.625rem;
  border-radius: 30px;
}
@media (min-width: 992px) {
  .btn-holder .sharedrop-holder {
    margin-left: 1.875rem;
  }
}
.btn-holder .sharedrop-holder:hover {
  border-color: transparent;
}
.btn-holder .sharedrop-holder:hover a:not([href]) {
  border-color: transparent;
}
.btn-holder .sharedrop-holder a:not([href]) {
  color: #fff;
  border-color: #fff;
}
.btn-holder .share-list {
  padding-top: 3.125rem;
  border-radius: 30px;
}

.top-section-package {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .top-section-package {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .top-section-package .subtitle {
    font-size: 1rem;
  }
}

.article-news-holder {
  color: #0a121d;
  z-index: 1;
}
.article-news-holder > .row {
  margin-top: -4rem;
  margin-bottom: 3rem;
  padding: 1.375rem 1.0625rem 2rem;
  align-items: flex-start;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .article-news-holder > .row {
    margin-top: -6.6875rem;
    padding: 2.75rem 2.875rem 2rem;
  }
}
.article-news-holder .card {
  color: #0a121d;
}
.article-news-holder .card .date,
.article-news-holder .card p {
  color: #0a121d;
}
.article-news-holder p {
  margin-bottom: 1.5625rem;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .article-news-holder p {
    margin-bottom: 1.25rem;
  }
}
.article-news-holder img {
  max-width: 100%;
}
.article-news-holder a {
  font-weight: 700;
}

.article-news-top-title {
  margin-bottom: 0.5rem;
}
@media (min-width: 992px) {
  .article-news-top-title {
    font-size: 2.375rem;
  }
}

.news-article {
  font-size: 1rem;
  margin-bottom: 3.125rem;
}

.news-article-title {
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
  line-height: 1.57;
}
.news-article-title img {
  display: inline-block;
  margin-bottom: 0.9375rem;
  margin-right: 0.625rem;
}
@media (min-width: 768px) {
  .news-article-title img {
    margin-bottom: 0;
  }
}
.news-article-title .title-text {
  display: block;
  margin-bottom: 1.3125rem;
}
@media (min-width: 768px) {
  .news-article-title .title-text {
    display: inline-block;
    margin-bottom: 0;
  }
}

.sidebar img {
  width: 100%;
}

.news-article-item {
  margin-bottom: 2.5rem;
}
.news-article-item p {
  margin-bottom: 0.5rem;
}

.news-article-image-holder {
  margin-bottom: 0.625rem;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
}
@media (min-width: 768px) {
  .news-article-image-holder {
    margin-bottom: 1.625rem;
  }
}
.news-article-image-holder img {
  width: 100%;
}

.news-article-subtitle {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .news-article-subtitle {
    margin-bottom: 0.375rem;
  }
}

.article-item-date {
  font-size: 0.875rem;
  margin-bottom: 0.9375rem;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .article-item-date {
    margin-bottom: 0.625rem;
  }
}
.article-item-date img {
  display: inline-block;
  margin-right: 0.3125rem;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  .sidebar {
    padding-left: 2.8125rem;
    margin-top: -0.9375rem;
  }
}
.sidebar h3 {
  margin-bottom: 1.5625rem;
}
.sidebar .card {
  margin-bottom: 2.1875rem;
  box-shadow: none;
}

.sidebar-aad-block {
  margin: 0 1.5625rem 1.5625rem;
  border-radius: 0.4rem;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
}
@media (min-width: 992px) {
  .sidebar-aad-block {
    margin: 0 0 1.5625rem;
  }
}

.app-section {
  padding: 60px 0 60px;
  background-image: radial-gradient(closest-corner at 36% 23%, #263140, rgba(38, 49, 64, 0.25));
  margin-bottom: 2.6875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 992px) {
  .app-section {
    padding: 3.75rem 0;
  }
}
.app-section .col-md-3 {
  padding: 0 0.375rem;
}
@media (min-width: 768px) {
  .app-section .col-md-3 {
    padding: 0 1.5625rem;
  }
}
.app-section h3 {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .app-section .col-lg-5-cols {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.app-section-text {
  font-size: 1rem;
  order: 1;
}
@media (min-width: 768px) {
  .app-section-text {
    order: 0;
  }
}
.app-section-text h4 {
  margin-bottom: 0.75rem;
}
.app-section-text p {
  margin-bottom: 1.875rem;
}

.app-section-image {
  text-align: center;
  margin-bottom: 1.25rem;
}
.app-section-image img {
  width: 100%;
}

.app-section-white {
  padding: 60px 0 60px;
  margin-bottom: 2.6875rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: black;
}
@media (min-width: 992px) {
  .app-section-white {
    padding: 3.75rem 0;
  }
}
.app-section-white .col-md-3 {
  padding: 0 0.375rem;
}
@media (min-width: 768px) {
  .app-section-white .col-md-3 {
    padding: 0 1.5625rem;
  }
}
.app-section-white h3 {
  margin-bottom: 2.5rem;
}
@media (min-width: 992px) {
  .app-section-white .col-lg-5-cols {
    flex: 0 0 20%;
    max-width: 20%;
  }
}
@media (max-width: 992px) {
  .app-section-white .col-lg-5-cols {
    display: flex;
    flex: 0 1 20%;
    max-width: 20%;
  }
  .app-section-white img {
    width: 80%;
    height: 80%;
  }
  .app-section-white h3 {
    font-size: medium;
  }
}

.app-btn {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .app-btn {
    display: block !important;
  }
}
.app-btn a {
  flex: 1;
  max-width: 10rem;
}
@media (max-width: 767.98px) {
  .app-btn a {
    flex: none;
    display: block;
    clear: both;
  }
}
.app-btn a img {
  width: 100%;
}
.app-btn * + * {
  margin-left: 15px;
}
@media (max-width: 767.98px) {
  .app-btn * + * {
    margin: 15px 0 0 0;
  }
}

.app-wrap {
  font-size: 0.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.app-wrap h3 {
  margin-bottom: 2.3125rem;
}
.app-wrap .image-holder {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.app-wrap .image-holder-fixed {
  width: 9.375rem;
  height: 9.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .app-wrap .image-holder-fixed {
    width: 3.75rem;
    height: 3.75rem;
  }
}
.app-wrap .image-holder img {
  margin: -1px;
}
.app-wrap .subtitle {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.625rem;
}
.app-wrap .subtitle-small {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  font-weight: normal;
  width: 50px;
}
@media (max-width: 992px) {
  .app-wrap .subtitle-small {
    font-size: 0.625rem;
  }
}
.app-wrap p {
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 992px) {
  .app-wrap {
    background-size: 100px !important;
  }
}

.app-list {
  display: flex;
  justify-content: center;
  font-weight: 700;
  margin-top: auto;
  margin-bottom: 1.875rem;
  flex-wrap: wrap;
}
.app-list li {
  text-align: center;
  position: relative;
  line-height: 1;
  padding: 0 0.625rem;
  margin-bottom: 20px;
  display: block;
  width: auto;
}
@media (min-width: 768px) {
  .app-list li {
    display: inline-block;
    margin-bottom: 10px;
  }
}
.app-list li:first-child:before {
  display: none;
}
@media (min-width: 560px) {
  .app-list li:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
  }
}
@media (max-width: 1500px) and (min-width: 992px) {
  .app-list {
    flex-wrap: wrap;
  }
  .app-list li {
    margin-bottom: 20px;
  }
  .app-list li::before {
    display: none;
  }
}
.app-list a {
  color: inherit;
  white-space: nowrap;
}
.app-list a:hover {
  text-decoration: none;
}

.pros-section {
  position: relative;
  color: #0a121d;
  padding: 3.375rem 0 3.75rem;
  font-size: 1rem;
}
.pros-section .text-holder {
  padding-top: 0;
}
@media (min-width: 992px) {
  .pros-section .text-holder p:last-child() {
    margin-bottom: 0;
  }
}
.pros-section.special-offers-side-by-side p {
  margin-bottom: 1.25rem;
}
.pros-section .article-description {
  margin-bottom: 1.25rem;
}
.pros-section .article-description + h2 {
  padding-top: 0;
}
.pros-section h2,
.pros-section .h2 {
  margin-bottom: 1.125rem;
}
@media (min-width: 992px) {
  .pros-section h2,
  .pros-section .h2 {
    margin-bottom: 1.6875rem;
  }
}
.pros-section .date {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .pros-section .date {
    position: static;
  }
}
.pros-section .list-default {
  margin-bottom: 1.625rem;
}
.pros-section ul {
  padding-left: 1rem;
}
@media (min-width: 992px) {
  .pros-section ul {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 992px) {
  .pros-section ul li {
    margin-bottom: 0.3125rem;
  }
}
.pros-section .img-holder {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
  margin-bottom: 0.625rem;
}
@media (min-width: 992px) {
  .pros-section .img-holder {
    margin-bottom: 0;
  }
}
.pros-section .img-holder img {
  width: 100%;
}
@media (min-width: 1200px) {
  .pros-section .img-holder img {
    margin-top: 0.5rem;
  }
}
.pros-section .iframe-holder {
  margin-bottom: 1.5625rem;
}
.pros-section .genre {
  align-items: center;
  padding-left: 0;
}
.pros-section .offer-item p {
  color: rgba(255, 255, 255, 0.7);
}
.pros-section .offer-item p.h1 {
  color: rgb(255, 255, 255);
}

.pros-section-xtra-view {
  font-size: 1rem;
}
.pros-section-xtra-view .text-accent {
  font-size: 1.25rem;
  line-height: 1.33;
}
@media (min-width: 768px) {
  .pros-section-xtra-view .text-accent {
    font-size: 1.5rem;
  }
}
.pros-section-xtra-view .description {
  color: rgba(10, 18, 29, 0.7);
}

.pricingOptionCarousel .hasIcons .c-card {
  margin: 30px 0;
}

.advantages-section {
  font-size: 1rem;
  padding-top: 2.25rem;
  padding-bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (min-width: 992px) {
  .advantages-section {
    padding: 3.375rem 0 3.75rem;
  }
}
.advantages-section h2,
.advantages-section .h2 {
  margin-top: -0.4375rem;
  margin-bottom: 1.25rem;
}
.advantages-section p {
  margin-bottom: 1.5rem;
}
@media (max-width: 767.98px) {
  .advantages-section .row {
    margin-left: -0.375rem;
    margin-right: -0.375rem;
  }
}
@media (max-width: 767.98px) {
  .advantages-section [class^=col] {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
  }
}
.advantages-section .visual-card-holder .btn-holder {
  flex-wrap: nowrap;
}

.visual-card-text-holder {
  margin-bottom: 2.5rem;
}

.advantages-section-lg {
  padding-bottom: 1.6875rem !important;
  background: linear-gradient(to right, #263140, rgba(38, 49, 64, 0.25));
}
.advantages-section-lg .col-md-3 {
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .advantages-section-lg .col-md-3 {
    margin-bottom: 27px;
  }
}
.advantages-section-lg .col-6 {
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .advantages-section-lg .col-6 {
    margin-bottom: 27px;
  }
}
@media (min-width: 768px) {
  .advantages-section-lg h2 {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 1200px) {
  .row-lg-reverse.visual-card-holder .visual-card-text-holder {
    padding-right: 0;
    padding-left: 4.5rem;
  }
}

[id=footer] {
  /*background: rgba($body-bg, 0.4);*/
  color: rgba(255, 254, 254, 0.5);
  text-align: center;
  padding: 1.875rem 0;
}
[id=footer] .social-media {
  margin-bottom: 2.0625rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-logo {
    width: 180px;
    height: 108px;
  }
}

/* footer navigation styles */
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0.375rem;
  justify-content: center;
}
@media screen and (min-width: 1400px) {
  .footer-nav {
    font-size: 1.0625rem;
  }
}
.footer-nav li {
  display: block;
  text-align: center;
  position: relative;
  line-height: 1;
  padding: 0 0.5rem;
  margin-bottom: 0.625rem;
}
@media (min-width: 768px) {
  .footer-nav li {
    display: inline-block;
    margin-bottom: 0;
  }
}
.footer-nav li:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.5);
  top: 50%;
  left: -1px;
  transform: translateY(-40%);
}
@media (min-width: 768px) {
  .footer-nav li:before {
    transform: translateY(-30%);
  }
}
.footer-nav li:first-child {
  padding-left: 0;
}
.footer-nav li:first-child:before {
  display: none;
}
.footer-nav a {
  font-size: 0.75rem;
  color: rgba(255, 254, 254, 0.5);
}
.footer-nav a:hover {
  color: rgba(255, 254, 254, 0.8);
  text-decoration: none;
}

/* footer navigation styles end */
.copy {
  font-size: 0.625rem;
  letter-spacing: 0.39px;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .copy {
    font-size: 0.8125rem;
  }
}

.footer-new {
  /*background-color: $dark-blue;*/
}
.footer-new .footer-logo {
  width: 4.6875rem;
  height: auto;
  margin-bottom: 1.125rem;
}
@media (min-width: 992px) {
  .footer-new .footer-logo {
    width: 4.6875rem;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .footer-new .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-new .footer-bottom .nav-holder {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .footer-new .footer-bottom .nav-holder {
    display: flex;
    text-align: left;
    margin-bottom: 0;
  }
}
.footer-new .footer-bottom .social-media {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .footer-new .footer-bottom .social-media li {
    margin: 0 0.8125rem;
  }
  .footer-new .footer-bottom .social-media li:last-child {
    margin-right: 0;
  }
}
.footer-new .footer-bottom .social-media a {
  width: auto;
  height: auto;
  background-color: transparent;
  color: #fff;
  font-size: 1.4375rem;
  transition: color 0.5s ease;
}
.footer-new .footer-bottom .social-media a:hover {
  color: #0095da;
}
@media (min-width: 992px) {
  .footer-new .footer-bottom .social-media a {
    font-size: 1.25rem;
  }
}
@media (min-width: 992px) {
  .footer-new .footer-bottom .nav-block {
    padding: 0.6875rem 0 0 1rem;
  }
}
.footer-new .footer-bottom .copy {
  font-size: 0.75rem;
}

.footer-list {
  display: flex;
  justify-content: space-between;
  text-align: left;
  padding: 0 0 1.0625rem;
}
@media (min-width: 768px) {
  .footer-list {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
@media (min-width: 992px) {
  .footer-list {
    padding-right: 5.875rem;
  }
}
.footer-list ul {
  display: none;
}
@media (min-width: 768px) {
  .footer-list ul {
    display: block;
  }
}
.footer-list li h5 {
  color: #fff;
  font-size: 0.875rem;
}
.footer-list li a {
  transition: color 0.5s ease;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-list li a:hover {
  color: #0095da;
}

.apps-block {
  padding: 1.5rem 0 0.75rem;
}
@media (min-width: 992px) {
  .apps-block {
    display: flex;
    justify-content: space-between;
    padding: 1.9375rem 0;
  }
}
.apps-block .apps-holder {
  color: #fff;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .apps-block .apps-holder {
    display: flex;
    margin-bottom: 0;
  }
}
.apps-block .apps-holder .text-holder {
  margin-bottom: 1.4375rem;
}
@media (min-width: 992px) {
  .apps-block .apps-holder .text-holder {
    margin-bottom: 0;
  }
}
.apps-block .apps-holder .text-holder p {
  font-size: 0.75rem;
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
.apps-block .btns-holder {
  margin-bottom: 1.6875rem;
}
@media (min-width: 992px) {
  .apps-block .btns-holder {
    margin-bottom: 0;
  }
}
.apps-block .btns-holder .btn {
  min-width: 175px;
}
.apps-block .btns-holder .btn:not(:first-child) {
  margin-left: 0;
  margin-top: 0;
}
.apps-block .btns-holder--footer {
  gap: 1.5rem !important;
}
@media (max-width: 992px) {
  .apps-block .btns-holder--footer {
    flex-wrap: nowrap !important;
    gap: 0.5rem !important;
  }
}
.apps-block .logo-list {
  display: flex;
  justify-content: center;
  padding: 0 1.375rem;
}
@media (min-width: 992px) {
  .apps-block .logo-list {
    margin-left: 4.25rem;
    padding: 0;
  }
}
.apps-block .logo-list li:not(:first-child) {
  margin-left: 0.9375rem;
}

.search-results {
  background-image: url(../../buildSrc/images/bg06.png);
  padding-top: 8.8125rem;
}
@media (min-width: 768px) {
  .search-results {
    background-image: url(../../buildSrc/images/bg05.png);
    padding-top: 7.125rem;
  }
}
.search-results .content-holder p {
  color: rgba(255, 255, 255, 0.7);
}
.search-results .results {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .search-results .results {
    font-size: 1.125rem;
    margin-bottom: 3.1875rem;
  }
}
.search-results .results h1 {
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .search-results .results h1 {
    font-size: 3rem;
  }
}
.search-results .results strong {
  color: #fff;
}
.search-results .text-item {
  margin-bottom: 1.75rem;
}
.search-results .text-item h6 {
  font-weight: bold;
}
.search-results .text-item .subtitle {
  font-size: 1rem;
  font-weight: bold;
}

.results-pagination {
  padding-top: 0.875rem;
}
@media (min-width: 768px) {
  .results-pagination {
    padding-top: 1.75rem;
  }
}
.results-pagination .page-item.active .page-link {
  color: #0A121D;
  background-color: #fff;
}
.results-pagination .page-link {
  background-color: #252E3A;
  color: rgba(255, 255, 255, 0.7);
}
.results-pagination .icon-arrow-short-carousel-right {
  color: #fff;
}

/*Compare results page body class*/
@media (max-width: 767.98px) {
  .compare-packages-result #wrapper {
    background-image: url(/content/images/bg01.jpg) !important;
    background-size: 250%;
    background-position: 50% 0%;
    background-size: 800px;
  }
  .compare-packages-result .blur-at-top:before {
    backdrop-filter: blur(0);
  }
  .compare-packages-result .hero-section.cust-hero {
    padding-top: 40px;
    min-height: 235px;
  }
}

.compare-table-holder {
  position: relative;
  padding-bottom: 1.8125rem;
}
.compare-table-holder .top-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.625rem;
  padding-top: 0.9375rem;
  width: 100%;
}
@media (min-width: 992px) {
  .compare-table-holder .top-panel {
    margin-bottom: 1.375rem;
  }
}
.compare-table-holder .top-panel .btn {
  position: absolute;
}
.compare-table-holder .select-genre-form {
  width: 100%;
}
@media (min-width: 768px) {
  .compare-table-holder .select-genre-form {
    width: 330px;
  }
}
.compare-table-holder .select-genre-form .form-title {
  padding-left: 0;
}
.compare-table-holder .form-title {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
.compare-table-holder .table-caption.caption-1.stickyTarg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.compare-table-holder.scrolled-active .table-caption.caption-1.stickyTarg {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  padding: 0px;
}
.compare-table-holder.scrolled-active .table-caption.caption-1.stickyTarg > .btns-holder {
  display: none;
}
@media (max-width: 576px) {
  .compare-table-holder.scrolled-active .table-caption.caption-1.stickyTarg .btns-holder {
    margin-bottom: 10px;
  }
}

.feature-selection-row {
  align-items: center;
}
.feature-selection-row .cta-text {
  min-width: fit-content;
}
.feature-selection-row .cta-text span {
  min-width: 100px;
  display: block;
}
.feature-selection-row .table-caption {
  margin-bottom: 0;
  max-width: calc(100% - 130px);
}
.feature-selection-row .table-caption .form-label-group-dstv {
  margin-bottom: 0;
}

.table-caption {
  margin-bottom: 1.1875rem;
}
.table-caption .row {
  flex-wrap: nowrap;
}
.table-caption .cta-text span {
  display: inline-block;
  padding-top: 9px;
}
.table-caption .btns-holder {
  padding-left: 0px;
}
.table-caption .btns-holder .btn-1 {
  max-width: 210px;
  display: none;
}
@media (max-width: 767px) {
  .table-caption .cta-text {
    display: none !important;
  }
}
@media (min-width: 576px) {
  .table-caption .btns-holder .btn-1 {
    display: none !important;
  }
}
@media (max-width: 576px) {
  .table-caption.caption-1 {
    margin-bottom: 0px;
  }
  .table-caption .btns-holder {
    margin-bottom: 33px;
  }
  .table-caption .btns-holder .btn-1 {
    margin-left: 0px !important;
  }
  .table-caption .btns-holder .btn-2 {
    display: none !important;
  }
  .table-caption {
    padding-left: 15px;
  }
  .table-caption .select-container {
    padding-left: 0px;
  }
}
.table-caption #multiSelectList {
  padding-left: 0;
  padding-right: 0;
}
.table-caption #multiSelectList .jcf-select {
  border-bottom: none;
}
.table-caption #multiSelectList .jcf-select-text {
  padding-left: 25px;
  padding-top: 14px;
  padding-bottom: 14px;
  vertical-align: middle;
  font-weight: 700;
}
.table-caption #multiSelectList .jcf-select-form-control {
  border-radius: 23.5px;
  background-color: rgba(36, 43, 53, 0.95);
}
.table-caption #multiSelectList .jcf-select-opener {
  right: 25px;
  bottom: 14px;
  color: white;
}
.table-caption #multiSelectList .jcf-select-drop {
  top: 0px;
}
.table-caption #multiSelectList .jcf-select-drop-content,
.table-caption #multiSelectList .jcf-list,
.table-caption #multiSelectList .jcf-list-content {
  border-radius: 23.5px;
}
.table-caption #multiSelectList .jcf-list-content {
  max-height: none !important;
  border-radius: 23.5px;
  padding: 15px;
  color: white;
}
.table-caption #multiSelectList .jcf-list-content ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
}
@media (max-width: 768px) {
  .table-caption #multiSelectList .jcf-list-content ul {
    grid-template-columns: repeat(2, auto);
  }
}
@media (max-width: 576px) {
  .table-caption #multiSelectList .jcf-list-content ul {
    display: list-item;
  }
}
.table-caption #multiSelectList .jcf-list-content .jcf-option.jcf-selected:hover {
  background: #2f363f;
}
.table-caption #multiSelectList .jcf-list-content li {
  border-radius: 23.5px;
  text-align: center;
  color: rgba(255, 255, 255, 0.95);
  margin: 6px 5px;
}
.table-caption #multiSelectList .jcf-list-content li span {
  height: 100%;
}
.table-caption .btns-holder .btn {
  width: 100%;
}
@media (max-width: 991.98px) {
  .table-caption .btns-holder .btn {
    padding: 0.1875rem 0.625rem;
  }
}
.table-caption .btns-holder .add-btn {
  display: none;
}
.table-caption .blank-card .btns-holder .btn {
  display: none;
}
.table-caption .blank-card .btns-holder .add-btn {
  display: block;
}

.table-caption .row > [class^=col-],
.table-body .row > [class^=col-] {
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.98px) {
  .table-caption .row .col-4,
  .table-body .row .col-4 {
    min-width: 168px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

.compare-table {
  overflow-x: auto;
}
@media (min-width: 1200px) {
  .compare-table {
    overflow-x: visible;
  }
}
.compare-table .tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  border-radius: 0.375rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.5rem 0.3125rem;
  flex: 1 1 auto;
}
@media (min-width: 768px) {
  .compare-table .tariff-card {
    padding: 0.625rem 1.25rem 0.75rem;
  }
}
.compare-table .tariff-card:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}
.compare-table .tariff-card .tariff-name {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .compare-table .tariff-card .tariff-name {
    font-size: 1.125rem;
    margin-bottom: 0.3125rem;
  }
}
.compare-table .tariff-card .channels {
  font-size: 1.25rem;
  line-height: 1.25rem;
}
@media (min-width: 768px) {
  .compare-table .tariff-card .channels {
    line-height: 2.25rem;
    font-size: 2.375rem;
  }
}
.compare-table .tariff-card strong {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .compare-table .tariff-card strong {
    font-size: 1.25rem;
  }
}

.table-body {
  text-align: center;
}
.table-body .row {
  margin-bottom: 0.75rem;
  flex-wrap: nowrap;
}
@media (min-width: 768px) {
  .table-body .row {
    margin-bottom: 0.9375rem;
  }
}
.table-body .row .col-4:first-child() {
  padding-left: 15px;
}
.table-body .product-icon-block-container {
  min-height: 56px;
}
.table-body .product-cell {
  position: relative;
  background: #fff;
  border-radius: 0.375rem;
}
.table-body .product-cell:hover .info-tab {
  transition: opacity 0.5s ease;
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.table-body .product-cell:hover .info-tab .channel-detail p {
  margin: 0;
}
.table-body .product-cell .info-tab {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  background-color: #0095DA;
  font-size: 0.75rem;
  padding: 0.3125rem 1.25rem;
  bottom: calc(100% + 5px);
  border-radius: 2px;
}
.table-body .product-cell .info-tab:before {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #0095DA transparent transparent transparent;
}
.table-body .product-cell img {
  width: 56px;
}
.table-body .tick-cell {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0.375rem;
}
.table-body .tick-cell:before {
  border: 0;
}
.table-body .table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
}
.table-body .table-cell:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
}
.table-body .table-cell .icon-tick {
  color: #0095da;
  min-width: 1.875rem;
  min-height: 1.875rem;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.compare-table .tariff-card {
  background-position: 50% 5%;
  min-height: 150px;
}

.package-compare-btn-holder-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin: 2rem 0 2rem auto;
  position: absolute;
  top: -7rem;
  padding: 0;
}
@media (max-width: 992px) {
  .package-compare-btn-holder-top {
    position: relative;
    top: 0;
    margin-top: 0;
  }
}
@media (max-width: 769px) {
  .package-compare-btn-holder-top {
    display: none;
  }
}

.package-compare-btn-holder-btm {
  display: none;
}
@media (max-width: 769px) {
  .package-compare-btn-holder-btm {
    display: flex;
    padding-bottom: 20px;
  }
}

.no-border:before {
  border: 0px !important;
}

li .jcf-hover {
  font-weight: 400 !important;
}

.btns-holder-2 {
  padding-top: 13px;
}

.btn-2,
.btn-1 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.btns-holder-1 {
  padding-left: 8px !important;
}

.get-connected-container {
  margin-top: 160px;
}
.get-connected-container .euro-section {
  padding: 30px 15px 15px 15px;
}
@media (max-width: 992px) {
  .get-connected-container .col-md-4.column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.get-connected-container .col-md-7.column {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
@media (min-width: 992px) {
  .get-connected-container .col-md-7.column {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
}
.get-connected-container .card-body {
  padding: 0;
}
.get-connected-container .container-offset .container {
  padding: 0;
}
@media (max-width: 992px) {
  .get-connected-container .container-offset .container {
    margin: 60px 0;
  }
}
.get-connected-container .questionIcon {
  font-size: x-large;
  vertical-align: sub;
  color: #0095da;
}
.get-connected-container .thank-you-note {
  padding: 30px 15px 30px 15px;
  margin-bottom: 60px;
}
.get-connected-container .hidetag {
  display: none !important;
}
.get-connected-container .privacy-section {
  margin: 0;
  padding: 0 !important;
}

.top-panel-standard {
  margin-bottom: -60px;
}
.top-panel-standard.top-section, .top-panel-standard {
  padding-bottom: 60px;
  padding-top: 180px;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .top-panel-standard.top-section, .top-panel-standard {
    padding-top: 130px;
  }
}
.top-panel-standard:first-of-type + .standard-panel, .top-panel-standard:first-of-type + .narrow-panel {
  padding-top: 0;
}

.standard-panel {
  padding-top: 120px;
  padding-bottom: 120px;
  background-size: cover;
  background-position-x: center;
}
@media (max-width: 575px) {
  .standard-panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media (max-width: 1199px) and (min-width: 576px) {
  .standard-panel {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.narrow-panel {
  padding-top: 60px;
  padding-bottom: 60px;
  background-size: cover;
}
@media (max-width: 575px) {
  .narrow-panel {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.dark-blue-background {
  background-color: #09131E;
}

.frosted-panel.standard-panel {
  padding-top: 0;
  padding-bottom: 0;
}
.frosted-panel.standard-panel div.row {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 575px) {
  .frosted-panel.standard-panel div.row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.frosted-panel.standard-panel div.row div.row {
  padding-top: inherit;
  padding-bottom: inherit;
}
@media (max-width: 992px) {
  .frosted-panel.standard-panel div.row div.row {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
.frosted-panel.narrow-panel {
  padding-top: 0;
  padding-bottom: 0;
}
.frosted-panel.narrow-panel div.row {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 575px) {
  .frosted-panel.narrow-panel div.row {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.frosted-panel.narrow-panel div.row div.row {
  padding-top: inherit;
  padding-bottom: inherit;
}
@media (max-width: 575px) {
  .frosted-panel.narrow-panel div.row div.row {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
.frosted-panel div.row {
  background-color: rgba(59, 96, 142, 0.063);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.314);
  border-top: solid 1px rgba(255, 255, 255, 0.063);
  border-bottom: solid 1px rgba(255, 255, 255, 0.063);
}
.frosted-panel div.row div.row {
  background-color: inherit;
  border-bottom: inherit;
  box-shadow: inherit;
  border-top: inherit;
}

.c-modal {
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.c-modal--white .c-modal-dialog {
  background-color: #fff;
}
.c-modal--white .c-modal-dialog .modal-close {
  color: black;
}
.c-modal-dialog {
  width: 800px;
  max-width: 800px;
  max-height: 100%;
  overflow: auto;
  position: relative;
  margin: 1.75rem auto;
  border-radius: 5px;
  border: 1px solid #232a34;
  background-color: #131A24;
  color: white;
}
@media (max-width: 768px) {
  .c-modal-dialog {
    height: 100%;
    border-radius: 0;
  }
}
.c-modal-dialog .modal-close {
  appearance: none;
  background-color: transparent;
  color: white;
  border: none;
  position: absolute;
  font-size: 23px;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.c-modal-dialog .modal-close:focus {
  outline: none;
}
.c-modal-dialog--center {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: unset;
  transform: translate(-50%, -50%);
}
.c-modal-dialog--full {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  margin: auto;
  position: absolute;
}
.c-modal-dialog--small {
  max-width: 100%;
  max-height: 100%;
  width: 600px;
  min-height: 300px;
}
.c-modal-dialog--white {
  border: 1px solid #fff;
  background-color: #fff;
  color: #000;
}
.c-modal-dialog--white .modal-close {
  color: #000;
}
.c-modal-header {
  display: flex;
  align-items: flex-start;
  padding: 1rem;
  justify-content: space-between;
}
.c-modal-body {
  padding: 1rem;
  position: relative;
  text-align: center;
}
.c-modal-footer {
  padding: 1rem;
}
@media (max-width: 768px) {
  .c-modal-dialog:not(.c-modal-dialog--small) {
    margin: auto;
    max-width: 100%;
    width: 100%;
    overflow: auto;
  }
}
@media (max-width: 600px) {
  .c-modal-dialog--small {
    margin: auto;
    max-width: 100%;
    width: 100%;
    overflow: auto;
  }
}

.modal-open {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.self-service .carousel-sell {
  width: 50%;
  padding: 0 6px 6px;
  text-align: left;
  position: relative;
}
@media (min-width: 768px) {
  .self-service .carousel-sell {
    width: 25%;
    padding: 0 15px 15px;
  }
}
.self-service .carousel-sell .card:before {
  font-size: 10px;
  position: absolute;
  bottom: 5px;
  right: 5px;
  margin: 0;
  color: white;
  z-index: 1;
  border-radius: 15px;
  padding: 5px;
}
.self-service .carousel-sell:last-child {
  padding-right: 0;
}
.self-service .carousel-sell a {
  text-decoration: none;
}
.self-service .carousel-sell .card-body {
  height: 118px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.self-service .carousel-sell .card-body p {
  font-size: 14px;
  vertical-align: bottom;
  font-family: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.self-service .carousel-sell .card-body .card-icon {
  color: white;
  font-size: 24px;
}
@media (min-width: 992px) {
  .self-service .carousel-sell {
    width: 20%;
    padding: 0 15px 15px;
    text-decoration: none;
    color: #fff;
  }
  .self-service .carousel-sell:nth-child(5) {
    padding-right: 0;
  }
  .self-service .carousel-sell .card-body {
    height: 118px;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0px;
  position: relative;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  text-decoration: none;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  z-index: 0;
  box-sizing: border-box;
  background-clip: border-box;
}
.c-card:hover {
  text-decoration: none;
}
.c-card:hover {
  text-decoration: none;
}
.c-card .border-0 {
  border: 0 !important;
}
.c-card .c-card--img {
  border-radius: 7px 7px 0 0;
  overflow: hidden;
  min-height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
  min-height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}
.c-card .c-card--img img {
  height: auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  width: 100%;
  max-width: 100%;
}
.c-card .c-card--img-small {
  max-height: 90px;
  position: absolute;
  bottom: 15px;
  width: 170px;
  left: 20px;
}
.c-card .c-card--img-rt {
  border-radius: 7px 7px 0 0;
}
.c-card .c-card--bg-img {
  background-size: cover;
  background-position: 100% 0;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 7px;
}
.c-card .c-card--bg-img-svg {
  background-size: cover;
  background-position: 100% 0;
  position: absolute;
  bottom: -15px;
  width: 176px;
  left: -10px;
  height: 176px;
  border-radius: 7px;
  z-index: -10;
}
.c-card--overlay {
  align-items: center;
  background-attachment: scroll;
  backdrop-filter: blur(30px);
  background-clip: border-box;
  background-color: rgba(255, 255, 255, 0.1);
  background-origin: padding-box;
  border-radius: 0 0 7px 7px;
  box-sizing: border-box;
  color: rgb(255, 255, 255);
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  height: 20%;
  justify-content: center;
  line-height: 21px;
  overflow-wrap: break-word;
  position: relative;
  padding: 5px 20px;
  text-align: center;
  width: 100%;
  margin-top: -5px;
}
.c-card--overlay p {
  position: absolute;
  margin: 0;
  left: 20px;
  color: white;
}
.c-card--overlay img {
  max-height: 50px;
  max-width: 100%;
  min-height: 25px;
}
@media (min-width: 992px) {
  .c-card--overlay img {
    max-height: 60px;
  }
}
@media (max-width: 575px) {
  .c-card--overlay {
    height: 20%;
  }
  .c-card--overlay img {
    max-height: 47px;
  }
}
.c-card--overlay-border {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.c-card--overlay-full {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
  padding: 16px;
  border-radius: 7px;
  background-attachment: scroll;
  background-clip: border-box;
  background-origin: padding-box;
  box-sizing: border-box;
  line-height: 21px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: rgb(255, 255, 255);
  cursor: pointer;
  background-color: rgba(10, 18, 29, 0.7);
}
.c-card--overlay-header {
  text-align: left;
  width: 100%;
}
.c-card--overlay-body {
  text-align: left;
  width: 100%;
}
.c-card--overlay-footer {
  text-align: left;
  width: 100%;
  height: auto;
}
.c-card--overlay-footer-right {
  position: absolute;
  right: 0px;
  bottom: 0px;
  padding: 10px;
}
.c-card--overlay-logo {
  display: flex;
  justify-content: center;
  border-radius: 0px 50px 50px 0px;
  height: 30px;
  width: 60px;
  padding: 2px 6px 2px 5px;
  flex-direction: column;
  align-items: flex-start;
}
.c-card--overlay-left {
  width: 280px;
  height: 180px;
  border-radius: 15px;
  border: 1px solid;
  opacity: 1;
  top: 30px;
  left: 0px;
  gap: 10px;
  padding: 15px;
  background-clip: border-box;
  background-color: #0F1722;
  background-origin: padding-box;
}
.c-card--overlay-right {
  width: 280px;
  height: 159px;
  border-radius: 15px;
  border: 1px solid;
  opacity: 1;
  right: 0px;
  top: 30px;
  gap: 10px;
  padding: 15px;
  background-clip: border-box;
  background-color: #0F1722;
  background-origin: padding-box;
}
.c-card--caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  text-decoration: none;
  margin: 15px 0 0;
}
.c-card--caption:hover {
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.c-card--shadow-hover:hover::after {
  opacity: 1;
}
.c-card--shadow-hover::after {
  content: "";
  transition: opacity 0.1s linear;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.35);
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 4rem;
  right: 0;
  left: 0;
  z-index: 0;
  border-radius: 7px;
}
.c-card--zoom-hover .c-card--img img {
  transition: transform 0.1s linear;
}
.c-card--zoom-hover:hover .c-card--img img {
  transform: scale(1.1);
}
.c-card--text-block {
  padding: 25px 30px;
}
.c-card--bg::before {
  content: "";
  background-attachment: scroll;
  backdrop-filter: blur(30px);
  background-clip: border-box;
  background-color: rgba(255, 255, 255, 0.05);
  background-origin: padding-box;
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: 7px;
  transition: all 0.3s linear, z-color 0.3s linear;
}
.c-card--bg.blurDisabled::before {
  background-color: rgba(255, 255, 255, 0);
}
.c-card--heading-sm {
  color: #0095da;
  font-weight: 700;
}
.c-card--flip .front-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-card--flip .back-panel {
  backdrop-filter: blur(30px);
  background-color: rgba(10, 18, 29, 0.5);
  position: relative;
  z-index: 0;
  opacity: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.c-card--flip .back-panel .c-card--body {
  overflow: auto;
  margin-right: 10px;
  margin-bottom: 15px;
}
.c-card--flip .back-panel .c-card--body::-webkit-scrollbar {
  width: 5px;
  padding: 0 2px;
}
.c-card--flip .back-panel .c-card--body::-webkit-scrollbar-track {
  background: transparent;
}
.c-card--flip .back-panel .c-card--body::-webkit-scrollbar-thumb {
  background-color: rgb(77, 83, 91);
  border-radius: 10px;
  border: 3px solid transparent;
}
.c-card--flip .back-panel .c-card--body ul {
  padding: 0;
  margin: 0 0 1rem 1rem;
}
.c-card--flip .back-panel .c-card--body ul li {
  font-size: 1rem;
  padding: 0 10px 0 0;
}
.c-card--flip .back-panel .c-card--body ul li::before {
  content: "•";
  font-size: 1rem;
  position: absolute;
  left: -15px;
  line-height: 1.2rem;
  top: 0;
  height: auto;
  width: auto;
}
.c-card--flip .active {
  z-index: 1;
  opacity: 1;
}

.text-very-small-regular {
  /* Global/Paragraph/VerySmall Regular */
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
@media (max-width: 576px) {
  .text-very-small-regular {
    font-size: 8px;
  }
}

.text-very-small-semi-bold {
  /* Global/Paragraph/VerySmall SemiBold */
  font-family: Poppins;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 18px */
}
@media (max-width: 576px) {
  .text-very-small-semi-bold {
    font-size: 8px;
  }
}

.c-card--shadow-hover {
  cursor: pointer;
}
.c-card--shadow-hover:hover::after {
  opacity: 1;
}
.c-card--shadow-hover:hover .c-card--caption {
  color: white;
}
.c-card--shadow-hover::after {
  content: "";
  transition: opacity 0.3s ease;
  box-shadow: 0 3p 15px 0px rgba(0, 0, 0, 0.65);
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 0;
  border-radius: 7px;
}
.c-card--zoom-hover {
  transition: transform 0.3s linear;
  cursor: pointer;
}
.c-card--zoom-hover:hover {
  transform: scale(1.05);
}
.c-card--zoom-img-hover {
  cursor: pointer;
}
.c-card--zoom-img-hover .c-card--img img {
  transition: transform 0.3s ease;
}
.c-card--zoom-img-hover .c-card--caption {
  transition: transform 0.3s linear;
}
.c-card--zoom-img-hover:hover .c-card--img img {
  transform: scale(1.1);
}
.c-card--zoom-img-hover:hover .c-card--caption {
  transform: scale(0.95);
}
.c-card--show-hover {
  opacity: 0;
  transition: opacity 0.3s ease-in;
}
.c-card--show-hover:hover {
  opacity: 1;
}

.c-card--header {
  position: relative;
  padding: 20px 30px 0;
  display: flex;
  justify-content: space-between;
}
.c-card--body {
  position: relative;
  padding: 0px 30px;
}
.c-card--body img {
  max-width: 100%;
  margin: auto;
}
.c-card--footer {
  position: relative;
  padding: 0 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-card--footer p {
  margin: 0;
}
.c-card--footer a {
  margin-bottom: 10px;
  color: rgb(255, 255, 255);
  font-weight: 500;
}
.c-card--footer button {
  min-width: unset;
  margin-bottom: 10px;
}
@media (max-width: 450px) {
  .c-card--header {
    padding: 20px 15px 0;
  }
  .c-card--body {
    padding: 0px 15px;
  }
  .c-card--footer {
    padding: 0 15px 20px;
  }
}
.c-card--article {
  display: flex;
  flex-wrap: wrap;
}
.c-card--article-iframe {
  margin-top: 0;
  margin-bottom: 45px;
}
.c-card--article-img {
  margin-bottom: 45px;
  height: auto;
}
.c-card--article-img img {
  min-height: 167px;
}
@media (min-width: 1500px) {
  .c-card--article-img img {
    min-height: 338px;
  }
}
@media (min-width: 992px) {
  .c-card--article-img img {
    min-height: 258px;
  }
}
@media (max-width: 768px) {
  .c-card--article-img img {
    min-height: 369px;
  }
}
@media (max-width: 575px) {
  .c-card--article-img img {
    min-height: 267px;
  }
}
.c-card--article-text {
  color: black;
}

.c-card--package {
  height: 380px;
}
@media (min-width: 992px) {
  .c-card--package {
    height: 440px;
    width: 350px;
  }
}
.c-card--package .front-panel .c-card--header {
  padding-top: 50px;
}
.c-card--package .front-panel .c-card--footer {
  align-items: flex-end;
}
.c-card--package .front-panel .c-card--footer button {
  font-size: 12px;
  font-weight: 900;
}
.c-card--package .back-panel .c-card--header {
  justify-content: flex-end;
}
.c-card--package .back-panel .c-card--footer {
  padding-top: 20px;
}
.c-card--package .back-panel .c-card--footer a {
  font-size: 18px;
}
.c-card--package .back-panel .c-card--footer a:hover {
  text-decoration: none;
  color: white;
}
.c-card--package .package-heading {
  font-size: 38px;
}
.c-card--package .c-card--bg-img {
  background-position: 50% 50%;
  background-size: 115%;
}
.c-card--overlay-full .label-pill {
  margin-bottom: 10px;
}
.c-card--overlay-full .genre-info {
  font-size: 16px;
  display: inline-block;
}

.package-value {
  line-height: 1.2;
}
.package-value .pre-text {
  font-size: 16px;
}
.package-value .package-price {
  font-size: 38px;
  font-weight: 700;
}
.package-value .time-span {
  font-size: 18px;
}

.decoder-carousel-container .c-card--footer a {
  font-size: 18px;
}

.c-button {
  box-sizing: border-box;
  display: block;
  max-height: 47px;
  min-width: 150px;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 24px;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  vertical-align: middle;
  white-space: nowrap;
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  transition-delay: 0s;
  transition-duration: 0.1s;
  transition-property: color, background-color, border-color, box-shadow;
  transition-timing-function: ease-in-out, ease-in-out, ease-in-out, ease-in-out, ease-in-out;
  border-radius: 25px;
  user-select: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  will-change: box-shadow, transform;
}
.c-button--dark {
  color: rgb(255, 255, 255);
  background-color: #0a121d;
  fill: rgb(255, 255, 255);
}
.c-button--light {
  background-color: rgb(255, 255, 255);
  color: #0a121d;
  fill: #0a121d;
}
.c-button--circle {
  min-width: unset;
  max-width: unset;
  padding: 0;
  border-radius: 50%;
  height: 2rem;
  width: 2rem;
}
.c-button--small {
  padding: 5px 10px;
  font-size: 0.8rem;
  max-height: unset;
  height: auto;
  line-height: 1.1;
}

.content-image-panel {
  font-size: 18px;
}
.content-image-panel .btn-holder {
  flex-wrap: wrap;
}
.content-image-panel .btn-holder .btn:not(:last-of-type) {
  margin-right: 15px;
}
.content-image-panel .content-image-right .img-holder {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 1199px) {
  .content-image-panel .content-image-right .img-holder {
    padding: 0 120px 0 0;
    margin-bottom: 0;
  }
}
.content-image-panel .content-image-left .img-holder {
  overflow: hidden;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (min-width: 1199px) {
  .content-image-panel .content-image-left .img-holder {
    padding: 0 0 0 120px;
    margin-bottom: 0;
  }
}

.bubble-container {
  font-size: 18px;
}
.bubble-container .bubble-content {
  margin-bottom: 30px;
}
.bubble-container .row.bubble-steps {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.bubble-container .row.bubble-steps .bubble-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bubble-container .row.bubble-steps .bubble-outer .bubble {
  background-color: #0095da;
  border: 1px solid #0095da;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bubble-container .row.bubble-steps .bubble-outer .bubble .bubble-no {
  font-weight: 700;
  font-size: 24px;
}
.bubble-container .row.bubble-steps .bubble-outer .bubble-text {
  font-size: 1.3rem;
  padding-top: 10px;
  width: 120px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .bubble-container .row.bubble-steps .bubble-outer .bubble-text {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .bubble-container .row.bubble-steps .bubble-outer .bubble-text {
    width: 80px;
  }
}
@media (max-width: 365px) {
  .bubble-container .row.bubble-steps .bubble-outer .bubble-text {
    width: 60px;
  }
}
.bubble-container .row.bubble-steps .bubble-outer .line {
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #0095da;
  top: 25px;
  z-index: 0;
  left: 50%;
}
@media (max-width: 575px) {
  .bubble-container .row.bubble-steps .bubble-outer .bubble {
    width: 40px;
    height: 40px;
  }
  .bubble-container .row.bubble-steps .bubble-outer .bubble .bubble-no {
    font-size: 18px;
  }
  .bubble-container .row.bubble-steps .bubble-outer .bubble-text {
    font-size: 0.75rem;
  }
  .bubble-container .row.bubble-steps .bubble-outer .line {
    top: 20px;
  }
}
@media (max-width: 480px) {
  .bubble-container {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .bubble-container .container {
    max-width: 100%;
    width: 100%;
  }
  .bubble-container .bubble-text {
    width: auto;
  }
}

.step-listing-container .steps-container .step-image {
  width: 100%;
  margin-bottom: 15px;
}
.step-listing-container .steps-container .step-header {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}
.step-listing-container .steps-container .step-subheader {
  padding-bottom: 30px;
}

.top-section .unification-panel:not(.section-panel), .top-panel-standard .unification-panel:not(.section-panel) {
  margin-bottom: -30px;
}

.unification-panel {
  margin-bottom: 30px;
}
.unification-panel.padded-panel {
  padding: 30px 30px 0 30px;
}
.unification-panel.section-panel {
  margin-bottom: 60px;
}
.unification-panel .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 5px 0;
}
.unification-panel .header-container .panel-header-back-button {
  margin-right: 18px;
}
.unification-panel .header-container .panel-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.unification-panel .header-container .panel-heading.padded {
  padding: 0 0 15px 0;
}
.unification-panel .header-container .panel-heading h5 {
  margin: 0;
}
.unification-panel .header-container .panel-header-subnote {
  color: rgba(10, 18, 29, 0.6);
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0px;
  display: flex;
  align-items: center;
}
.unification-panel .header-container .panel-header-subnote span i {
  font-size: 24px;
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .unification-panel .header-container .panel-header-right-item {
    margin-top: 15px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .unification-panel .header-container {
    flex-wrap: wrap;
  }
}
.unification-panel .descriptive-container {
  padding: 30px 0;
  color: rgba(10, 18, 29, 0.6);
}
.unification-panel .descriptive-container p {
  margin-bottom: 30px;
}
.unification-panel .descriptive-container p.header {
  margin-bottom: 5px;
  font-weight: bold;
  color: #000000;
}
.unification-panel .descriptive-container .detail-media-container {
  margin-top: -15px;
  margin-bottom: 30px;
}
.unification-panel .descriptive-container .detail-media-container .media-item {
  background-color: #CCCCCC;
  width: 100%;
  min-height: 200px;
}
.unification-panel .descriptive-container .detail-media-container .media-item-caption {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0px;
  text-align: center;
  color: rgba(10, 18, 29, 0.6);
  margin-top: 15px;
}
.unification-panel .list-container {
  margin: 0 -30px;
}
.unification-panel .list-container .list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.unification-panel .list-container .list .list-item {
  padding: 0 30px;
  color: #313844;
}
.unification-panel .list-container .list .list-item a.list-item-inner,
.unification-panel .list-container .list .list-item a.list-item-inner:focus,
.unification-panel .list-container .list .list-item a.list-item-inner:focus-visible,
.unification-panel .list-container .list .list-item a.list-item-inner:visited,
.unification-panel .list-container .list .list-item a.list-item-inner:active {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  border-bottom: solid 1px #D9D9D9;
}
.unification-panel .list-container .list .list-item .list-item-main {
  flex-grow: 1;
  align-self: center;
  padding: 20px 0;
}
.unification-panel .list-container .list .list-item .list-item-action {
  margin: 20px 10px;
}
.unification-panel .list-container .list .list-item .list-item-action i {
  font-size: 24px;
  color: rgba(10, 18, 29, 0.6);
}
.unification-panel .header-search-input {
  width: 100%;
  position: relative;
}
.unification-panel .header-search-input .input-icon-container {
  position: absolute;
  right: 25px;
  top: 16px;
}
.unification-panel .header-search-input .input-icon-container i {
  font-size: 22px;
  color: #000000;
}
.unification-panel .header-search-input input {
  width: 100%;
  min-width: 300px;
  border-radius: 80px;
  padding: 15px 50px 15px 30px;
  border: 1px solid rgba(10, 18, 29, 0.1019607843);
  color: #0A121D;
}
.unification-panel .header-search-input.glass-input input {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  width: 100%;
  height: 54px;
  background: rgba(0, 149, 218, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 15px -5px #0A121D;
  backdrop-filter: blur(50px);
  border-radius: 80px;
  flex: none;
  order: 1;
  flex-grow: 0;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
}
.unification-panel .header-search-input.glass-input input:focus-visible {
  outline: none;
}
.unification-panel .header-search-input.glass-input .input-icon-container {
  position: absolute;
  right: 30px;
  top: 16px;
}
.unification-panel .header-search-input.glass-input .input-icon-container i {
  color: rgba(255, 255, 255, 0.7);
}
.unification-panel .card-list-container {
  display: flex;
  gap: 15px;
}
.unification-panel .card-list-container .card {
  background: url(/content/images/generic-card-background.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 33%;
  cursor: pointer;
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
  min-height: 150px;
  text-decoration: none;
  color: #FFFFFF;
}
.unification-panel .card-list-container .card p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.unification-panel .card-list-container .card .card-icon-container i {
  font-size: 35px;
}
.unification-panel .breadcrumb-container .breadcrumb-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item a {
  color: #FFFFFF;
  text-decoration: none;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item.active a {
  color: rgba(255, 255, 255, 0.7);
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item .separator {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0 9px;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item:not(:first-of-type) .separator {
  display: block;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.unification-panel .breadcrumb-container .breadcrumb-list .breadcrumb-item + .breadcrumb-item::before {
  padding-right: 0;
  content: "";
}

.jcf-list {
  border: none;
  margin-top: 10px;
  opacity: 1;
  background-color: rgb(42, 49, 59);
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .jcf-list {
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
  }
}
.jcf-list .jcf-option {
  color: rgb(189, 192, 194);
  font-weight: 400;
  font-size: 14px;
  background-color: transparent;
  position: relative;
  padding: 12px;
}
.jcf-list .jcf-option.jcf-hover {
  font-weight: 600;
}
.jcf-list .jcf-select-text {
  color: rgb(189, 192, 194);
  font-weight: 400;
  font-size: 14px;
  position: relative;
  text-transform: capitalize;
}
.jcf-list ul {
  border-radius: 0px;
  overflow: hidden;
}
.jcf-list .jcf-list-content {
  border-radius: 0;
}
.jcf-list span.jcf-list-content::-webkit-scrollbar {
  width: 6px;
}
.jcf-list span.jcf-list-content::-webkit-scrollbar-track {
  background: transparent;
}
.jcf-list span.jcf-list-content::-webkit-scrollbar-thumb {
  background-color: rgb(77, 83, 91);
  border-radius: 5px;
  border: 3px solid transparent;
}

.jcf-select .jcf-select-opener:before {
  border-color: white;
}

.jcf-select-light-fields .jcf-list-content {
  border: 1px solid rgba(10, 18, 29, 0.2) !important;
  border-radius: 5px;
}
.jcf-select-light-fields .jcf-list {
  border-radius: 5px;
}
.jcf-select-light-fields.jcf-select .jcf-select-text > span {
  overflow: hidden;
  width: 80%;
  text-overflow: ellipsis;
  display: block;
}
.jcf-select-light-fields .jcf-option {
  color: #0a121d;
}
.jcf-select-light-fields .jcf-option.jcf-selected {
  color: #0095da !important;
  background-color: #ffffff !important;
  font-weight: 600;
}

.no-underline {
  text-decoration: none !important;
}

.promocards-module {
  position: relative;
  z-index: 2;
}
.promocards-module .text-holder .text-sm {
  line-height: 1.5;
}
.promocards-module .text-holder-store {
  position: absolute;
  text-align: left;
  top: 16px;
  left: 20px;
}
.promocards-module .flickity-cards .carousel-sell {
  min-height: 170px;
  height: auto;
}
@media (min-width: 768px) {
  .promocards-module .flickity-cards .carousel-sell {
    min-height: 230px;
  }
}
@media (min-width: 992px) {
  .promocards-module .flickity-cards .carousel-sell {
    min-height: 258px;
  }
}
@media (min-width: 1500px) {
  .promocards-module .flickity-cards .carousel-sell {
    min-height: 258px;
  }
}

.hidden {
  display: none;
  visibility: hidden;
}

/*Freshchat*/
#fc_frame.custom_fc_frame.fc-widget-small {
  min-width: 75px;
  min-height: 75px;
  right: 20px;
  bottom: 15px;
}
@media (max-width: 600px) {
  #fc_frame.custom_fc_frame.fc-widget-small {
    right: calc((100% - (75px + 0.2rem) * 5) / 2 - 0.5rem);
    bottom: 97px;
  }
}
@media (max-width: 420px) {
  #fc_frame.custom_fc_frame.fc-widget-small {
    right: 5px;
    bottom: 97px;
  }
}

@media (max-width: 992px) {
  #footer {
    margin-bottom: 85px;
  }
}

.compare-results-tables {
  z-index: 2;
}

.en-ng .pricingOptionCarousel .pricing-card .card-body .value-holder > span {
  line-height: 1.5;
}
.en-ng #card-back {
  padding-top: 10px;
}
.en-ng #card-back .package-heading {
  display: block;
  margin-top: 12px;
  font-size: 1.3rem;
  padding-bottom: 15px;
}
.en-ng #card-back .logo-container {
  margin-bottom: 0px;
}
.en-ng #card-back .value-holder {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
}
.en-ng #card-back .value-holder > p {
  text-align: center;
  width: 100%;
}
.en-ng #card-back .value-holder .btn-small {
  margin: 10px auto auto auto;
  padding: 8px 25px;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 992px) {
  .en-ng .packagePrice.oneBtn .btn-holder {
    justify-content: flex-end;
  }
}
.en-ng .hardware .packages-carousel-gradient-bg {
  position: relative;
}
.en-ng .hardware .packages-carousel-gradient-bg::before {
  content: "";
  position: absolute;
  height: 265px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgb(10, 18, 29));
}
@media (max-width: 1499px) {
  .en-ng .packages-carousel-gradient-bg .value-holder .h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .en-ng .packages-carousel-gradient-bg .value-holder .h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .en-ng .bg-wrap01 {
    background-position: bottom;
  }
  .en-ng .pricingOptionCarousel .list-info li span::before {
    top: -6px;
  }
}
@media (min-width: 768px) {
  .en-ng .pricing-card .value-holder .h1,
  .en-ng .decoders-card .value-holder .h1,
  .en-ng .chanel-card .value-holder .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .en-ng .protect-decoder .col-12:last-of-type .protect-decoder-item {
    padding: 60px 0.9375rem 0;
  }
}
.en-ng .decoders-card .slide .list-info {
  font-size: 0.675rem;
}
.en-ng .packages-hardware-top-section {
  padding-top: 100px;
  margin-bottom: 0;
}

.en-ng .list-info.product-text {
  font-size: 0.75rem;
}
@media (max-width: 558px) {
  .en-ng .app-list li {
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .en-ng .app-list li {
    margin-bottom: 20px;
  }
}
.en-ng .list-info li {
  list-style: disc;
}
.en-ng .card-slide .list-two-col {
  column-count: 2;
  margin-left: 10px;
  padding: 0;
  column-gap: 60px;
}
@media (max-width: 1500px) {
  .en-ng .card-slide .list-two-col {
    column-gap: 30px;
  }
}
.en-ng .decoder-carousel-container .flickity-slider .carousel-sell .card .card-body strong {
  width: 75%;
  min-height: 4rem;
}
.en-ng .decoder-carousel-container .flickity-slider .carousel-sell .decoders-card .slide-link-p-absolute {
  right: 13px;
  bottom: 20px;
}
.en-ng .popup-backdrop.modal.show {
  margin-top: 0px;
  z-index: 100000;
}
.en-ng .decoders-card .card-body {
  padding: 1.1rem 1.4rem 1.1rem;
}
.en-ng .decoders-card .card-slide {
  flex-direction: row;
  padding: 1.1rem 1.4rem 1.1rem;
}
@media (max-width: 460px) {
  .en-ng .decoders-card .card-slide {
    padding: 0.9rem 0.9rem 0.9rem;
  }
}
.en-ng .pricing-card {
  border: none;
}
.en-ng .pricing-card .card-body {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.en-ng .flickity-carousel .card.card-bg .text-bottom p.h1 {
  font-size: 1.5rem;
}
@media all and (min-width: 768px) {
  .en-ng .flickity-carousel .card.card-bg .text-bottom p.h1 {
    font-size: 1.625rem;
  }
}
@media all and (min-width: 992px) {
  .en-ng .flickity-carousel .card.card-bg .text-bottom p.h1 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1500px) and (min-width: 992px) {
  .en-ng .pros-section h2,
  .en-ng .pros-section .h2 {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 1499px) {
  .en-ng .tv-guide-header .drop-down-holder .package-select.select-block {
    min-width: 11rem;
    max-width: 11rem;
  }
}
@media (min-width: 768px) {
  .en-ng .tv-guide-header .drop-down-holder .package-select.select-block {
    min-width: 10rem;
    max-width: 10rem;
  }
  .en-ng .tv-guide-header .drop-down-holder .channel-select.select-block {
    min-width: 9rem;
    max-width: 9rem;
  }
  .en-ng .tv-guide-header .drop-down-holder .channel-select.select-block .tvg-custom-select {
    min-width: 90%;
  }
  .en-ng .tv-guide-header .drop-down-holder .select-block .select-item p {
    padding-right: 10px;
  }
}

.droplist.open {
  z-index: 2;
}

@media (min-width: 1500px) and (max-width: 768px) {
  .en-ng .hero-section.cust-hero .bg-holder.overlay-mobile.product-bg {
    padding-top: 32rem;
    margin-bottom: -9rem !important;
  }
  .en-ng .hero-section.cust-hero .bg-holder.overlay-mobile.product-bg .btn-holder {
    flex-wrap: wrap;
    min-width: 21rem;
  }
}
@media (min-width: 1500px) {
  .en-ng .hero-section-slider ul.top-section-list {
    padding: 0 0.5em;
  }
  .en-ng .hero-section-slider .top-section-list li {
    list-style-position: outside;
    padding: 0 1rem;
  }
  .en-ng .hero-section-slider .top-section-list li::marker {
    content: "*";
  }
  .en-ng .hero-section-slider .top-section-list li::before {
    content: "";
    padding: 0;
  }
}

@media (min-width: 992px) {
  .en-ng .pros-section h2,
  .en-ng .pros-section .h2 {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 992px) {
  .en-ng .top-section.packages-hardware-top-section, .en-ng .packages-hardware-top-section.top-panel-standard {
    padding-top: 75px;
    margin-bottom: 30px;
  }
  .en-ng .top-section.packages-hardware-top-section .container, .en-ng .packages-hardware-top-section.top-panel-standard .container {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .en-ng .pricing-card .value-holder .h1,
  .en-ng .decoders-card .value-holder .h1,
  .en-ng .chanel-card .value-holder .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .en-ng .protect-decoder .col-12:last-of-type .protect-decoder-item {
    padding: 60px 0.9375rem 0;
  }
}
.en-ng .decoders-card .slide .list-info {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .en-ng .decoders-card .slide .list-info {
    font-size: 0.9rem;
  }
}
@media (max-width: 991.98px) {
  .en-ng .pros-section .img-holder {
    margin-bottom: 0;
    margin-top: 2rem;
  }
}
.en-ng .constant-ml .btn + .btn {
  margin: unset;
}
@media (max-width: 550px) {
  .en-ng .map-canvas {
    height: 100vw;
  }
}
.en-ng .hero-section-slider ul.top-section-list {
  padding: 0 0.5em;
}
.en-ng .hero-section-slider .top-section-list li {
  list-style-position: outside;
  padding: 0 1rem;
}
.en-ng .hero-section-slider .top-section-list li::marker {
  content: "*";
}
.en-ng .hero-section-slider .top-section-list li::before {
  content: "";
  padding: 0;
}
@media (min-width: 576px) {
  .en-ng .hero-section-slider .top-section .hero-section.cust-hero, .en-ng .hero-section-slider .top-panel-standard .hero-section.cust-hero,
  .en-ng .hero-section-fullscreen-bg .top-section .hero-section.cust-hero,
  .en-ng .hero-section-fullscreen-bg .top-panel-standard .hero-section.cust-hero {
    padding-top: 70px;
  }
}
.en-ng .suppot-text .support-channel-item .app-btn img {
  width: 100px;
}
.en-ng .tab-pane.hw-min-height.active {
  min-height: 0;
}
@media (max-width: 575px) {
  .en-ng .pt-sm-6 {
    padding-top: 60px;
  }
}
.en-ng .btn {
  text-transform: capitalize;
}
.en-ng .bg-wrap01:before {
  content: "";
  position: absolute;
  height: 35%;
  width: 100%;
  background: linear-gradient(180deg, #0a121d, rgba(10, 17, 28, 0.65));
}
.en-ng .constant-ml .btn + .btn {
  margin: unset;
}
@media (max-width: 550px) {
  .en-ng .map-canvas {
    height: 100vw;
  }
}
.en-ng .bg-stretch {
  background-size: cover;
}

body.en-ng .popup-backdrop.modal.show {
  margin-top: 0;
}

.en-ke .pricingOptionCarousel .pricing-card .card-body .value-holder > span {
  line-height: 1.5;
}
@media (max-width: 992px) {
  .en-ke .packagePrice.oneBtn .btn-holder {
    justify-content: flex-end;
  }
}
.en-ke .hardware .packages-carousel-gradient-bg {
  position: relative;
}
.en-ke .hardware .packages-carousel-gradient-bg::before {
  content: "";
  position: absolute;
  height: 265px;
  width: 100%;
  bottom: 0;
  background: linear-gradient(180deg, transparent, rgb(10, 18, 29));
}
@media (max-width: 1499px) {
  .en-ke .packages-carousel-gradient-bg .value-holder .h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 992px) {
  .en-ke .packages-carousel-gradient-bg .value-holder .h2 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  .en-ke .bg-wrap01 {
    background-position: bottom;
  }
  .en-ke .pricingOptionCarousel .list-info li span::before {
    top: -6px;
  }
}
@media (min-width: 768px) {
  .en-ke .pricing-card .value-holder .h1,
  .en-ke .decoders-card .value-holder .h1,
  .en-ke .chanel-card .value-holder .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .en-ke .protect-decoder .col-12:last-of-type .protect-decoder-item {
    padding: 60px 0.9375rem 0;
  }
}
.en-ke .decoders-card .slide .list-info {
  font-size: 0.675rem;
}
.en-ke .packages-hardware-top-section {
  padding-top: 100px;
  margin-bottom: 0;
}

.en-ke .list-info.product-text {
  font-size: 0.75rem;
}
@media (max-width: 558px) {
  .en-ke .app-list li {
    margin-bottom: 20px;
  }
}
@media (max-width: 360px) {
  .en-ke .app-list li {
    margin-bottom: 20px;
  }
}
.en-ke .list-info li {
  list-style: disc;
}
.en-ke .card-slide .list-two-col {
  column-count: 2;
  margin-left: 10px;
  padding: 0;
  column-gap: 60px;
}
@media (max-width: 1500px) {
  .en-ke .card-slide .list-two-col {
    column-gap: 30px;
  }
}
.en-ke .decoder-carousel-container .flickity-slider .carousel-sell .card .card-body strong {
  width: 75%;
  min-height: 4rem;
}
.en-ke .decoder-carousel-container .flickity-slider .carousel-sell .decoders-card .slide-link-p-absolute {
  right: 13px;
  bottom: 20px;
}
.en-ke .popup-backdrop.modal.show {
  margin-top: 0px;
  z-index: 100000;
}
.en-ke .decoders-card .card-body {
  padding: 1.1rem 1.4rem 1.1rem;
}
.en-ke .decoders-card .card-slide {
  flex-direction: row;
  padding: 1.1rem 1.4rem 1.1rem;
}
@media (max-width: 460px) {
  .en-ke .decoders-card .card-slide {
    padding: 0.9rem 0.9rem 0.9rem;
  }
}
.en-ke .pricing-card {
  border: none;
}
.en-ke .pricing-card .card-body {
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.en-ke .flickity-carousel .card.card-bg .text-bottom p.h1 {
  font-size: 1.5rem;
}
@media all and (min-width: 768px) {
  .en-ke .flickity-carousel .card.card-bg .text-bottom p.h1 {
    font-size: 1.625rem;
  }
}
@media all and (min-width: 992px) {
  .en-ke .flickity-carousel .card.card-bg .text-bottom p.h1 {
    font-size: 2.375rem !important;
  }
}
@media (min-width: 1500px) and (min-width: 992px) {
  .en-ke .pros-section h2,
  .en-ke .pros-section .h2 {
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 1499px) {
  .en-ke .tv-guide-header .drop-down-holder .package-select.select-block {
    min-width: 11rem;
    max-width: 11rem;
  }
}
@media (min-width: 768px) {
  .en-ke .tv-guide-header .drop-down-holder .package-select.select-block {
    min-width: 10rem;
    max-width: 10rem;
  }
  .en-ke .tv-guide-header .drop-down-holder .channel-select.select-block {
    min-width: 9rem;
    max-width: 9rem;
  }
  .en-ke .tv-guide-header .drop-down-holder .channel-select.select-block .tvg-custom-select {
    min-width: 90%;
  }
  .en-ke .tv-guide-header .drop-down-holder .select-block .select-item p {
    padding-right: 10px;
  }
}

.droplist.open {
  z-index: 2;
}

@media (min-width: 1500px) and (max-width: 768px) {
  .en-ke .hero-section.cust-hero .bg-holder.overlay-mobile.product-bg {
    padding-top: 32rem;
    margin-bottom: -9rem !important;
  }
  .en-ke .hero-section.cust-hero .bg-holder.overlay-mobile.product-bg .btn-holder {
    flex-wrap: wrap;
    min-width: 21rem;
  }
}
@media (min-width: 1500px) {
  .en-ke .hero-section-slider ul.top-section-list {
    padding: 0 0.5em;
  }
  .en-ke .hero-section-slider .top-section-list li {
    list-style-position: outside;
    padding: 0 1rem;
  }
  .en-ke .hero-section-slider .top-section-list li::marker {
    content: "*";
  }
  .en-ke .hero-section-slider .top-section-list li::before {
    content: "";
    padding: 0;
  }
}

@media (min-width: 992px) {
  .en-ke .pros-section h2,
  .en-ke .pros-section .h2 {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 992px) {
  .en-ke .top-section.packages-hardware-top-section, .en-ke .packages-hardware-top-section.top-panel-standard {
    padding-top: 75px;
    margin-bottom: 30px;
  }
  .en-ke .top-section.packages-hardware-top-section .container, .en-ke .packages-hardware-top-section.top-panel-standard .container {
    margin-top: 2.5rem;
  }
}
@media (min-width: 768px) {
  .en-ke .pricing-card .value-holder .h1,
  .en-ke .decoders-card .value-holder .h1,
  .en-ke .chanel-card .value-holder .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .en-ke .protect-decoder .col-12:last-of-type .protect-decoder-item {
    padding: 60px 0.9375rem 0;
  }
}
.en-ke .decoders-card .slide .list-info {
  font-size: 1rem;
}
@media (max-width: 768px) {
  .en-ke .decoders-card .slide .list-info {
    font-size: 0.9rem;
  }
}
@media (max-width: 991.98px) {
  .en-ke .pros-section .img-holder {
    margin-bottom: 0;
    margin-top: 2rem;
  }
}
.en-ke .constant-ml .btn + .btn {
  margin: unset;
}
@media (max-width: 550px) {
  .en-ke .map-canvas {
    height: 100vw;
  }
}
.en-ke .hero-section-slider ul.top-section-list {
  padding: 0 0.5em;
}
.en-ke .hero-section-slider .top-section-list li {
  list-style-position: outside;
  padding: 0 1rem;
}
.en-ke .hero-section-slider .top-section-list li::marker {
  content: "*";
}
.en-ke .hero-section-slider .top-section-list li::before {
  content: "";
  padding: 0;
}
@media (min-width: 576px) {
  .en-ke .hero-section-slider .top-section .hero-section.cust-hero, .en-ke .hero-section-slider .top-panel-standard .hero-section.cust-hero,
  .en-ke .hero-section-fullscreen-bg .top-section .hero-section.cust-hero,
  .en-ke .hero-section-fullscreen-bg .top-panel-standard .hero-section.cust-hero {
    padding-top: 70px;
  }
}
.en-ke .suppot-text .support-channel-item .app-btn img {
  width: 100px;
}
.en-ke .tab-pane.hw-min-height.active {
  min-height: 0;
}
@media (max-width: 575px) {
  .en-ke .pt-sm-6 {
    padding-top: 60px;
  }
}
.en-ke .btn {
  text-transform: capitalize;
}
.en-ke .bg-wrap01:before {
  content: "";
  position: absolute;
  height: 35%;
  width: 100%;
  background: linear-gradient(180deg, #0a121d, rgba(10, 17, 28, 0.65));
}
.en-ke .constant-ml .btn + .btn {
  margin: unset;
}
@media (max-width: 550px) {
  .en-ke .map-canvas {
    height: 100vw;
  }
}
.en-ke .bg-stretch {
  background-size: cover;
}

body.en-ke .popup-backdrop.modal.show {
  margin-top: 0;
}

.l-content-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.l-content-section .container > h1,
.l-content-section .container > h2,
.l-content-section .container > h3,
.l-content-section .container > h4,
.l-content-section .container > h5,
.l-content-section .container > p {
  margin-bottom: 30px;
}

.bg-light {
  background-color: white;
}
.bg-light .container .btn {
  background-color: black;
  color: white;
}

/* clears the 'X' from Internet Explorer */
input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

/* clears the 'X' from Chrome */
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  /* Remove default */
  -webkit-appearance: none;
}

.slick-arrow {
  outline: none;
  border: none;
}
.slick-arrow:active {
  outline: none;
  border: none;
}
.slick-arrow:focus {
  outline: none;
  border: none;
}

.banner-mb-0 .top-section, .banner-mb-0 .top-panel-standard {
  z-index: 0;
}
.banner-mb-0 .top-section .bg-holder, .banner-mb-0 .top-panel-standard .bg-holder {
  margin-bottom: 0;
  z-index: 1;
}

.decoder-carousel-container .flickity-slider .carousel-sell {
  min-height: 80%;
  height: 280px;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 575px) {
  .decoder-carousel-container .flickity-slider .carousel-sell {
    min-width: 450px;
    height: 280px;
  }
}
@media (min-width: 992px) {
  .decoder-carousel-container .flickity-slider .carousel-sell {
    min-width: 380px;
  }
}
@media (min-width: 1500px) {
  .decoder-carousel-container .flickity-slider .carousel-sell {
    min-width: 450px;
  }
}
.decoder-carousel-container .c-card--header h5 {
  font-size: 18px;
}
.decoder-carousel-container .c-card--footer {
  align-items: flex-end;
  line-height: 1;
}
.decoder-carousel-container .c-card--footer h3 {
  font-size: 1.6rem;
}
@media (min-width: 575px) {
  .decoder-carousel-container .c-card--footer h3 {
    font-size: 2.375rem;
  }
}
.decoder-carousel-container .front-panel .c-card--body {
  text-align: center;
}
.decoder-carousel-container .front-panel .c-card--body img {
  width: 450px;
}
@media (min-width: 768px) {
  .decoder-carousel-container .front-panel .c-card--body img {
    width: 630px;
  }
}
@media (min-width: 992px) {
  .decoder-carousel-container .front-panel .c-card--body img {
    width: 232px;
  }
}
@media (min-width: 1500px) {
  .decoder-carousel-container .front-panel .c-card--body img {
    width: 392px;
  }
}

.pricingOptionCarousel .flickity-slider .carousel-sell {
  min-height: 100%;
}

.articleCarousel {
  max-width: 650px;
  overflow: visible;
}
.articleCarousel .c-carousel {
  position: relative;
  min-width: 100%;
  padding-top: 1rem;
  padding-bottom: 20px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: visible;
}
.articleCarousel .c-carousel .flickity-page-dots {
  top: calc(56.2429696288vw + 7px);
  bottom: unset;
}
@media (min-width: 540px) and (max-width: 767px) {
  .articleCarousel .c-carousel .flickity-page-dots {
    top: 310px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articleCarousel .c-carousel .flickity-page-dots {
    top: 410px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .articleCarousel .c-carousel .flickity-page-dots {
    top: 300px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .articleCarousel .c-carousel .flickity-page-dots {
    top: 360px;
  }
}
@media (min-width: 1500px) {
  .articleCarousel .c-carousel .flickity-page-dots {
    top: 385px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .articleCarousel .c-carousel .flickity-button {
    top: 150px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .articleCarousel .c-carousel .flickity-button {
    top: 175px;
  }
}
@media (min-width: 1500px) {
  .articleCarousel .c-carousel .flickity-button {
    top: 190px;
  }
}
.articleCarousel .c-carousel .carousel-sell {
  min-height: 100%;
  min-width: 100%;
  margin-right: 15px;
  position: relative;
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-iframe {
  background-color: grey;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
  border-radius: 7px;
  max-height: 100%;
  min-height: 160px;
  width: 100%;
}
@media (min-width: 450px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-iframe {
    min-height: 200px;
  }
}
@media (min-width: 575px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-iframe {
    min-height: 250px;
  }
}
@media (min-width: 768px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-iframe {
    min-height: 380px;
  }
}
@media (min-width: 992px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-iframe {
    min-height: 250px;
  }
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img {
  text-align: center;
  box-shadow: -5px 25px 17px -20px rgba(0, 0, 0, 0.6);
  border-radius: 7px;
  background: #000;
  width: 100%;
  overflow: hidden;
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
  background-color: rgb(211, 211, 211);
  min-height: auto;
  height: auto;
  width: auto;
}
@media (min-width: 540px) and (max-width: 767px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
    min-height: 267px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
    min-height: 365px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
    min-height: 257px;
  }
}
@media (min-width: 1200px) and (max-width: 1499px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
    min-height: 315px;
  }
}
@media (min-width: 1500px) {
  .articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-img img {
    min-height: 338px;
  }
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-text {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 10px;
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-text p {
  margin-bottom: 10px;
}
.articleCarousel .c-carousel .carousel-sell .c-card .c-card--article-cta {
  margin-top: 10px;
  position: relative;
}

.article-news-holder {
  max-width: 100%;
}

@media (max-width: 390px) {
  .min-w-site-select-dropdowns {
    min-width: 170px;
  }
}
.article-image-caption {
  margin: 20px 0 0;
  font-size: 14px;
  color: black;
  font-weight: bold;
}

.articleCarousel .c-carousel .flickity-button:hover {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #0095da;
  cursor: pointer;
  color: #fff;
  background: none;
}
.articleCarousel .c-carousel .flickity-button:hover .flickity-button-icon {
  color: white;
  fill: white;
  border-radius: unset;
  background-color: unset;
}

@media (max-width: 660px) {
  #haptik-xdk-wrapper > div > iframe:nth-child(3) {
    /*bottom: 86px !important;*/
    right: unset !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 149px !important;
  }
}
@media (max-width: 415px) {
  #haptik-xdk-wrapper > div > iframe:nth-child(3) {
    /*bottom: 86px !important;*/
    right: -4px !important;
    left: unset !important;
    transform: none !important;
    margin-left: unset !important;
  }
}

@media (min-width: 1024px) {
  .text-holder.news-text-holder {
    position: absolute;
    top: 45%;
    transform: translate(0, -50%);
  }
}
@media (max-width: 992px) {
  iframe#haptik-xdk {
    /*bottom: 80px !important;*/
  }
}
@media (max-width: 660px) {
  iframe#haptik-xdk {
    /*bottom: 135px !important;*/
    right: unset !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-left: 69px !important;
  }
}
@media (max-width: 415px) {
  iframe#haptik-xdk {
    /*bottom: 135px !important;*/
    right: -13px !important;
    left: unset !important;
    transform: unset !important;
    margin-left: unset !important;
  }
}

@media (min-width: 415px) and (max-width: 660px) {
  .haptik-xdk-container:not(.fullscreen) iframe.xdk-iframe {
    /*bottom: 85px !important;*/
    left: calc(50% - 125px + 210px) !important;
  }
}
@media (max-width: 415px) {
  .haptik-xdk-container:not(.fullscreen) iframe.xdk-iframe {
    /*bottom: 85px !important;*/
    right: -5px !important;
  }
}

.en-ng .list-info li::before {
  content: "•";
  position: absolute;
  height: auto;
  width: auto;
  font-size: 1.3rem;
  top: 50%;
  transform: translateY(-65%);
  left: -15px;
  display: none;
}

.btn-holder {
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 575px) {
  .btn-holder {
    flex-wrap: wrap;
  }
}
.btn-holder .btn {
  margin-right: 30px;
  margin-bottom: 8px;
}
.btn-holder .btn:only-child {
  margin: 0;
}
.btn-holder .btn:last-child {
  margin: 0;
}
@media (max-width: 575px) {
  .btn-holder .btn:not(.umb-button__button):not(.umb-button--) {
    margin-right: 15px;
    min-width: 120px;
    padding: 9.6px 19.2px;
  }
  .btn-holder .btn:not(.umb-button__button):not(.umb-button--):last-child {
    margin-right: 0;
  }
}

.btn-holder .btn + .btn {
  margin-left: unset;
}

@media (min-width: 992px) {
  .btn-holder .btn + .btn {
    margin-left: unset;
  }
}
.chat-init {
  /* Alignment */
  display: table;
  position: fixed;
  right: 20px;
  bottom: 15px;
  z-index: 2;
  /* Dimensions */
  border-radius: 34px 8px 34px 34px;
  height: 60px;
  width: 60px;
  outline: none;
  border: none;
  /*Colors*/
  background-color: #0095da;
  box-shadow: 0 5px 4px 0 rgba(0, 0, 0, 0.26);
  color: #fff;
  /*Font*/
  font-size: 1.5rem;
  text-align: center;
  /*Misc*/
  cursor: pointer;
}
@media (max-width: 600px) {
  .chat-init {
    right: calc((100% - (75px + 0.2rem) * 5) / 2 - 0.5rem);
    bottom: 97px;
  }
}
@media (max-width: 420px) {
  .chat-init {
    right: 5px;
    bottom: 97px;
  }
}
.chat-init:focus {
  outline: none;
}
.chat-init:active {
  outline: none;
  background-color: rgb(0, 114.1422018349, 167);
}

.chat-select-body {
  display: flex;
  width: 100%;
}
.chat-select-body .chat-block {
  width: 50%;
  color: #141414;
  text-align: center;
  position: relative;
  padding: 30px 30px 60px;
}
.chat-select-body .chat-block .chat-icon {
  border-radius: 5px;
  height: 60px;
  width: 70px;
  margin: 30px auto 30px;
}
.chat-select-body .chat-block h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.chat-select-body .chat-block p {
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: #a2a2a2;
}
.chat-select-body .chat-block a.btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 150px;
}
.chat-select-body .chat-block a.btn.bg-black {
  background-color: black;
}
.chat-select-body .chat-block a.btn.bg-green {
  background-color: #56b45a;
}
.chat-select-body .chat-left .btn {
  background-color: #56b45a;
  border-radius: 25px;
}
.chat-select-body .chat-right {
  box-shadow: 0 0 9px 4px rgba(0, 0, 0, 0.1);
}
.chat-select-body .chat-right .btn {
  background-color: black;
  border-radius: 25px;
}
@media (max-width: 600px) {
  .chat-select-body {
    flex-wrap: wrap;
    height: 100%;
  }
  .chat-select-body .chat-block {
    width: 100%;
    height: 50%;
  }
  .chat-select-body .chat-block .chat-icon {
    display: inline-block;
    margin: 0 15px 0 0;
    vertical-align: top;
  }
  .chat-select-body .chat-block .text-block {
    display: inline-block;
    margin: 0;
    width: 70%;
    text-align: left;
  }
  .chat-select-body .chat-left {
    padding-top: 70px;
    box-shadow: 0 0 9px 4px rgba(0, 0, 0, 0.1);
  }
  .chat-select-body .chat-right {
    box-shadow: none;
    padding-top: 70px;
  }
}

.currencyswitch {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 120px;
  height: 47px;
  background-color: white;
  border-radius: 25px;
  box-shadow: inset 0 -1px white, inset 0 1px 1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #eeeeee, white 25px);
  background-image: -moz-linear-gradient(top, #eeeeee, white 25px);
  background-image: -o-linear-gradient(top, #eeeeee, white 25px);
  background-image: linear-gradient(to bottom, #eeeeee, white 25px);
}

.currencyswitch-input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.currencyswitch-label {
  position: relative;
  display: block;
  height: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  background: #4fb845;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.12), inset 0 0 2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.15s ease-out;
  -moz-transition: 0.15s ease-out;
  -o-transition: 0.15s ease-out;
  transition: 0.15s ease-out;
  -webkit-transition-property: opacity background;
  -moz-transition-property: opacity background;
  -o-transition-property: opacity background;
  transition-property: opacity background;
}

.currencyswitch-label:before, .currencyswitch-label:after {
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  line-height: 1;
  -webkit-transition: inherit;
  -moz-transition: inherit;
  -o-transition: inherit;
  transition: inherit;
}

.currencyswitch-label:before {
  content: attr(data-off);
  right: 31px;
  color: white;
  text-shadow: 0 1px rgba(255, 255, 255, 0.2);
}

.currencyswitch-label:after {
  content: attr(data-on);
  left: 31px;
  color: white;
  text-shadow: 0 1px rgba(0, 0, 0, 0.2);
  opacity: 0;
}

.currencyswitch-input:checked ~ .currencyswitch-label {
  background: #47a8d8;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 0 3px rgba(0, 0, 0, 0.2);
}

.currencyswitch-input:checked ~ .currencyswitch-label:before {
  opacity: 0;
}

.currencyswitch-input:checked ~ .currencyswitch-label:after {
  opacity: 1;
}

.currencyswitch-input:checked ~ .currencyswitch-currency {
  display: none;
}

.currencyswitch-input:checked ~ .currencyswitch-altercurrency {
  display: block;
}

.currencyswitch-handle {
  position: absolute;
  top: 1px;
  left: 2px;
  width: 46px;
  height: 46px;
  background: white;
  border-radius: 25px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  background-image: -webkit-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -moz-linear-gradient(top, white 40%, #f0f0f0);
  background-image: -o-linear-gradient(top, white 40%, #f0f0f0);
  background-image: linear-gradient(to bottom, white 40%, #f0f0f0);
  -webkit-transition: left 0.15s ease-out;
  -moz-transition: left 0.15s ease-out;
  -o-transition: left 0.15s ease-out;
  transition: left 0.15s ease-out;
}

.currencyswitch-handle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -6px 0 0 -6px;
  width: 12px;
  height: 12px;
  background: #f9f9f9;
  border-radius: 6px;
  box-shadow: inset 0 1px rgba(0, 0, 0, 0.02);
  background-image: -webkit-linear-gradient(top, #eeeeee, white);
  background-image: -moz-linear-gradient(top, #eeeeee, white);
  background-image: -o-linear-gradient(top, #eeeeee, white);
  background-image: linear-gradient(to bottom, #eeeeee, white);
}

.currencyswitch-input:checked ~ .currencyswitch-handle {
  left: 72px;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

.currencyswitch-green > .currencyswitch-input:not(:checked) ~ .currencyswitch-label {
  background: #4fb845;
}

.currencyswitch-text {
  line-height: 1.5em;
  overflow: hidden;
  text-align: center;
  width: 30%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media (max-width: 768px) {
  .currencyswitch {
    width: 90px;
    right: 0px;
    /*  margin: 1px 0 0 -2px;*/
  }
  .currencyswitch-label {
    font-size: 0.875rem !important;
  }
  .currencyswitch-handle {
    width: 47px;
  }
  .currencyswitch-label:before, .currencyswitch-label:after {
    font-size: 0.875rem !important;
  }
  .currencyswitch-label:before {
    right: 11px;
  }
  .currencyswitch-label:after {
    left: 10px;
  }
  .currencyswitch-handle:before {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
  .currencyswitch-input:checked ~ .currencyswitch-handle {
    left: 43px;
  }
  .currencyswitch-text {
    width: 30%;
    overflow: visible;
  }
  .switch-btn {
    font-size: 0.875rem !important;
    left: 0px;
    width: fit-content;
  }
  .package-compare-currency {
    display: flex;
    padding-bottom: 20px;
  }
  .switch-btn {
    padding-top: 9px;
  }
  .switch-btn.btn-outline-light {
    font-size: 0.875rem !important;
    width: fit-content;
    height: 42px;
    left: 5px;
  }
  .switch-btn .btn {
    font-size: 0.875rem !important;
  }
}
body {
  font-family: "Poppins", sans-serif;
  --grey-grey-800: #161e28;
  --grey-grey-200: #b7b9bc;
  --monotone-white-40: rgba(255, 255, 255, 0.4);
}
body .container.dvs-container {
  line-height: 150%;
}
body .container.dvs-container .cust-row {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
body .container.dvs-container .cust-col, body .container.dvs-container .asym-container .right-col, body .container.dvs-container .asym-container .left-col {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
body .container.dvs-container .text-small-bold {
  /* Global/Paragraph/Small SemiBold */
  font-size: 14px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
body .container.dvs-container .text-small-semi-bold {
  /* Global/Paragraph/Small SemiBold */
  font-size: 14px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
}
body .container.dvs-container h2 {
  /* Desktop/Headings/H2 */
  font-size: 38px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
body .container.dvs-container h2 sup,
body .container.dvs-container h2 sub {
  vertical-align: middle;
  padding: 0 2px;
  /* Desktop/Headings/H5 Bold */
  font-size: 18px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
}
body .container.dvs-container .h5-strikethough {
  /* Desktop/Headings/H5 Stikethrough */
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 23.4px */
  text-decoration-line: strikethrough;
}
body .container.dvs-container h6 {
  /* Mobile/Headings/H6 Bold */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%; /* 18.2px */
}
body .container.dvs-container .text-small-regular {
  /* Global/Paragraph/Small Regular */
  font-family: Poppins;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
body .container.dvs-container .text-x-small-regular {
  /* Global/Paragraph/XSmall Regular */
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
}
body .container.dvs-container .text-x-small-semi-bold {
  /* Global/Paragraph/XSmall SemiBold */
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 18px */
}
body .container.dvs-container .text-large-regular {
  /* Global/Paragraph/Large Regular */
  font-family: Poppins;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
body .container.dvs-container .text-large {
  font-family: Poppins;
  font-size: 42px;
  font-style: normal;
  font-weight: 800;
  line-height: 120%; /* 50.4px */
}
@media (min-width: 768px) {
  body .container.dvs-container .text-large {
    /* Desktop/Display/Large */
    font-family: Poppins;
    font-size: 64px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%; /* 76.8px */
  }
}
body .container.dvs-container button.btn {
  min-width: 150px;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  text-transform: capitalize;
}
body .container.dvs-container .text-grey {
  color: var(--grey-grey-200, #b7b9bc);
}
body .container.dvs-container section {
  margin: 100px 0;
}
body .container.dvs-container section .gradient {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: -1;
  --gradient-width: 2000px;
  --gradient-displacement: -0.77;
}
@media screen and (min-width: 992px) {
  body .container.dvs-container section .gradient {
    --gradient-width: 2000px;
    --gradient-displacement: -0.77;
  }
}
body .container.dvs-container section .gradient :first-child {
  position: absolute;
  width: var(--gradient-width);
  height: var(--gradient-width);
  background: var(--radial-background-gradient, radial-gradient(circle 1000px, #00ffeb 0%, #00ffeb 40%, rgba(255, 255, 255, 0)));
  filter: blur(200px);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
}
body .container.dvs-container section .gradient-center-top {
  justify-self: center;
}
body .container.dvs-container section .gradient-center-top .radial-gradient {
  top: calc(var(--gradient-width) * var(--gradient-displacement));
}
body .container.dvs-container section .gradient-center-bottom {
  justify-self: center;
}
body .container.dvs-container section .gradient-center-bottom .radial-gradient {
  bottom: calc(var(--gradient-width) * var(--gradient-displacement));
}
body .container.dvs-container section .gradient-right-bottom {
  justify-self: center;
}
body .container.dvs-container section .gradient-right-bottom .radial-gradient {
  bottom: calc(var(--gradient-width) * var(--gradient-displacement));
  right: calc(var(--gradient-width) * var(--gradient-displacement));
}

.compare-tab-container,
.compare-card-tab-container,
.ways-to-watch-tab-container {
  display: flex;
  justify-content: center;
}
.compare-tab-container-list,
.compare-card-tab-container-list,
.ways-to-watch-tab-container-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin-top: 30px;
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 100px;
}
.compare-tab-container-list-item,
.compare-card-tab-container-list-item,
.ways-to-watch-tab-container-list-item {
  min-width: 160px;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  padding: 10px 15px;
}
@media (min-width: 576px) {
  .compare-tab-container-list-item,
  .compare-card-tab-container-list-item,
  .ways-to-watch-tab-container-list-item {
    min-width: 190px;
    padding: 15px 25px 14px 25px;
  }
}
.compare-tab-container-list-item.selected,
.compare-card-tab-container-list-item.selected,
.ways-to-watch-tab-container-list-item.selected {
  border: 1px solid var(--monotone-white, #fff);
  background: var(--monotone-white-10, rgba(255, 255, 255, 0.1));
}

.product-card-list-container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  padding-right: 0;
}
.product-card-list-container .product-card {
  padding: 25px;
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .product-card-list-container .product-card .icon-text-rugby-pass,
  .product-card-list-container .product-card .icon-text-cricket-pass,
  .product-card-list-container .product-card .icon-text-combo-pass {
    font-size: 29px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card .icon-text-rugby-pass,
  .product-card-list-container .product-card .icon-text-cricket-pass,
  .product-card-list-container .product-card .icon-text-combo-pass {
    font-size: 29px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-card-list-container .product-card {
    width: calc(50% - 7.5px);
  }
}
@media screen and (min-width: 1200px) {
  .product-card-list-container .product-card {
    width: calc(33.333333% - 10px);
  }
}
.product-card-list-container .product-card-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
@media (min-width: 992px) {
  .product-card-list-container .product-card-header {
    margin-bottom: 45px;
  }
}
.product-card-list-container .product-card-header h2 {
  margin: 10px 0;
}
.product-card-list-container .product-card-header-logos {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  min-height: 36px;
}
.product-card-list-container .product-card-header-logos-logoimage {
  min-width: 75px;
}
.product-card-list-container .product-card-header-logos-devices {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-card-list-container .product-card-header-logos-devices i {
  font-size: 22px;
}
.product-card-list-container .product-card-header-logos-devices i.icon-decoder {
  font-size: 28px;
}
.product-card-list-container .product-card-body {
  margin-bottom: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-card-list-container .product-card-body-mb30 {
  margin-top: 30px;
}
@media (max-width: 500px) {
  .product-card-list-container .product-card-body-mb30 {
    flex-direction: row;
    justify-content: left;
    padding-right: unset;
    align-items: start !important;
  }
}
.product-card-list-container .product-card-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-card-list-container .product-card-body-price {
  margin-left: -25px;
  border-radius: 0px 100px 100px 0px;
  background: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
  display: flex;
  height: 85px;
  padding: 10px 30px 10px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.product-card-list-container .product-card-body-price-pretext h6 {
  margin: 0;
}
.product-card-list-container .product-card-body-price-main {
  display: flex;
}
.product-card-list-container .product-card-body-price-main h3 {
  margin: 0;
}
.product-card-list-container .product-card-body-miles-pretext {
  font-size: 10px;
}
.product-card-list-container .product-card-body-miles-gap {
  gap: 8px;
}
.product-card-list-container .product-card-body-miles-logo {
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .product-card-list-container .product-card-body-miles h2 {
    font-size: 22px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card-body-miles h2 {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card-body-miles span {
    font-size: 9px !important;
  }
}
.product-card-list-container .product-card-body-special {
  border-radius: 5px;
  border: 1px solid;
  opacity: 0.65;
  display: flex;
  padding: 5px 10px 5px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.product-card-list-container .product-card-body-special-pretext h6 {
  margin: 0;
}
.product-card-list-container .product-card-body-special-main {
  display: flex;
  color: white;
}
.product-card-list-container .product-card-body-special-main h2 {
  margin: 0;
}
.product-card-list-container .product-card-body-special-logo {
  width: 22px;
  height: 22px;
}
.product-card-list-container .product-card-body-special-border {
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-card-list-container .product-card-body-special-circled {
  background-color: var(--grey-grey-circle, rgba(45, 52, 61, 0.7490196078));
  border-radius: 50%;
  padding: 2px 4px 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: -5px;
  color: white;
}
.product-card-list-container .product-card-body-special-chevron {
  padding: 5px;
  margin-left: 2px;
}
.product-card-list-container .product-card-list {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}
.product-card-list-container .product-card-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .product-card-list-container .product-card-list li {
    padding-bottom: 25px;
  }
}
.product-card-list-container .product-card-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  background-color: var(--grey-grey-circle, #2d343d);
  border-radius: 50%;
  padding: 2px 4px 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.product-card-list-container .product-card-footer {
  display: flex;
  justify-content: center;
}
.product-card-list-container .product-card-footer a.btn {
  min-width: 148px;
}
.product-card-list-container .product-card-footer a.btn:first-child {
  margin-right: 15px;
}
.product-card-list-container .product-card-footer a.btn-wide {
  min-width: 100% !important;
}
.product-card-list-container .product-card-new {
  padding: 35px;
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  flex-direction: column;
  display: flex;
  width: 100%;
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .product-card-list-container .product-card-new .icon-text-rugby-pass,
  .product-card-list-container .product-card-new .icon-text-cricket-pass,
  .product-card-list-container .product-card-new .icon-text-combo-pass {
    font-size: 29px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card-new .icon-text-rugby-pass,
  .product-card-list-container .product-card-new .icon-text-cricket-pass,
  .product-card-list-container .product-card-new .icon-text-combo-pass {
    font-size: 29px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .product-card-list-container .product-card-new {
    width: calc(50% - 7.5px);
  }
}
@media screen and (min-width: 1200px) {
  .product-card-list-container .product-card-new {
    width: calc(33.333333% - 10px);
  }
}
@media screen and (max-width: 993px) {
  .product-card-list-container .product-card-new {
    padding-left: 25px;
  }
}
.product-card-list-container .product-card-new-header {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .product-card-list-container .product-card-new-header {
    margin-bottom: 15px;
  }
}
.product-card-list-container .product-card-new-header-logos {
  display: flex;
  justify-content: space-between;
  border-radius: 0px 100px 100px 0px;
  height: 45px;
  width: 85px;
  padding: 10px 30px 10px 15px;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 5px;
}
.product-card-list-container .product-card-new-header-logos-pretext h6 {
  margin: 0;
}
.product-card-list-container .product-card-new-header-logos-main {
  display: flex;
}
.product-card-list-container .product-card-new-header-logos-main h2 {
  margin: 5px;
}
.product-card-list-container .product-card-new-header-logos-logoimage {
  min-width: 48px;
}
.product-card-list-container .product-card-new-header-logos-logoimage img {
  width: 49px;
}
.product-card-list-container .product-card-new-header-streamlogo {
  display: flex;
  justify-content: space-between;
  border-radius: 3px 100px 100px 1px;
  height: 35px;
  width: 57px;
  padding: 4px 8px;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}
.product-card-list-container .product-card-new-header-streamlogo-pretext h6 {
  margin: 0;
}
.product-card-list-container .product-card-new-header-streamlogo-main {
  display: flex;
}
.product-card-list-container .product-card-new-header-streamlogo-main h2 {
  margin: 5px;
}
.product-card-list-container .product-card-new-header-streamlogo-logoimage {
  min-width: 41px;
}
.product-card-list-container .product-card-new-header-streamlogo-logoimage img {
  width: 41px;
}
.product-card-list-container .product-card-new-header-stream {
  display: flex;
  font-size: 10px;
  width: 57px;
  height: 10px;
}
.product-card-list-container .product-card-new-header-icon {
  font-size: 32px;
  padding: 20px 0 0 0;
}
.product-card-list-container .product-card-new-header-tag {
  border-radius: 5px;
  border: 1px solid rgba(0, 149, 218, 0.2);
  background: rgba(0, 149, 218, 0.25);
  height: 28px;
  display: flex;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 992px) {
  .product-card-list-container .product-card-new-header-tag {
    font-size: 10px;
    height: 25px;
  }
}
.product-card-list-container .product-card-new-header-logo {
  align-content: center;
  width: unset;
  height: unset;
}
.product-card-list-container .product-card-new-header-logo-text {
  font-size: 9px;
  padding: 2px 2px 2px 4px;
}
.product-card-list-container .product-card-new-header-border {
  padding: 20px 0px 20px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.product-card-list-container .product-card-new-header-circled {
  background-color: var(--grey-grey-circle, rgba(45, 52, 61, 0.7490196078));
  border-radius: 50%;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-left: -5px;
  color: white;
  align-content: center;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 993px) {
  .product-card-list-container .product-card-new-header-circled {
    width: 32px;
    height: 32px;
  }
}
.product-card-list-container .product-card-new-header-chevron {
  padding: 0px;
  margin-left: 2px;
  align-content: center;
}
.product-card-list-container .product-card-new-header-price {
  margin-left: -25px;
  border-radius: 0px 100px 100px 0px;
  background: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
  display: flex;
  height: 85px;
  padding: 10px 30px 10px 25px;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start;
  font-size: 28px;
}
.product-card-list-container .product-card-new-header-price-pretext h6 {
  margin: 0;
  opacity: 0.7;
}
.product-card-list-container .product-card-new-header-price-main {
  display: flex;
}
.product-card-list-container .product-card-new-header-price-main span {
  font-size: 28px;
  font-weight: 700;
  vertical-align: baseline;
  text-align: center;
}
@media screen and (max-width: 993px) {
  .product-card-list-container .product-card-new-header-price-main span {
    font-size: 24px;
  }
}
.product-card-list-container .product-card-new-header-price-main span sup {
  top: -0.3em;
}
.product-card-list-container .product-card-new-header-price-main span sub {
  bottom: 0.01em;
}
.product-card-list-container .product-card-new-header-price-main span sub, .product-card-list-container .product-card-new-header-price-main span sup {
  position: relative;
  font-size: 65%;
  line-height: 0;
}
.product-card-list-container .product-card-new-body {
  margin: 20px 0 0 0px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 993px) {
  .product-card-list-container .product-card-new-body {
    margin: 15px 0 0 0px;
  }
}
.product-card-list-container .product-card-new-body-mb30 {
  margin-top: 10px;
}
@media (max-width: 500px) {
  .product-card-list-container .product-card-new-body-mb30 {
    flex-direction: row;
    justify-content: left;
    padding-right: unset;
    align-items: start !important;
  }
}
.product-card-list-container .product-card-new-body-price {
  border-radius: 0px 100px 100px 0px;
  background: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
  display: flex;
  height: 85px;
  padding: 10px 30px 10px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.product-card-list-container .product-card-new-body-price-pretext h6 {
  margin: 0;
}
.product-card-list-container .product-card-new-body-price-main {
  display: flex;
}
.product-card-list-container .product-card-new-body-price-main h2 {
  margin: 0;
}
.product-card-list-container .product-card-new-body-title {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  .product-card-list-container .product-card-new-body-title {
    font-size: 12px;
  }
}
.product-card-list-container .product-card-new-body-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-top: 15px;
  flex-grow: 1;
  font-size: 14px;
  align-content: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .product-card-list-container .product-card-new-body-list {
    font-size: 12px;
  }
}
.product-card-list-container .product-card-new-body-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .product-card-list-container .product-card-new-body-list li {
    padding-bottom: 10px;
  }
}
.product-card-list-container .product-card-new-body-list li:before {
  content: url("/content/images/check.svg");
  background-color: var(--grey-grey-circle, #2d343d);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 20px;
  height: 20px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 2px;
}
.product-card-list-container .product-card-new-body-miles-pretext {
  font-size: 10px;
}
.product-card-list-container .product-card-new-body-miles-gap {
  gap: 8px;
}
.product-card-list-container .product-card-new-body-miles-logo {
  width: 36px;
  height: 36px;
}
@media screen and (min-width: 1200px) and (max-width: 1499px) {
  .product-card-list-container .product-card-new-body-miles h2 {
    font-size: 22px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card-new-body-miles h2 {
    font-size: 16px !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  .product-card-list-container .product-card-new-body-miles span {
    font-size: 9px !important;
  }
}
.product-card-list-container .product-card-new-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.product-card-list-container .product-card-new-footer a {
  padding: 2px;
  font-size: 14px;
}
.product-card-list-container .product-card-new-footer a.btn {
  min-width: 148px;
}
.product-card-list-container .product-card-new-footer a.btn:first-child {
  margin-right: 15px;
}
.product-card-list-container .product-card-new-footer a.btn-wide {
  min-width: 100% !important;
  align-content: center;
}
.product-card-list-container .product-card-new:hover {
  border: 1px solid rgba(255, 255, 235, 0.1);
}

.product-sidebar-container {
  height: 100vh;
  width: 100vw;
  position: fixed;
  backdrop-filter: brightness(0.25) blur(2px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: none;
}

.product-sidebar {
  height: 100%;
  width: 350px;
  position: fixed;
  z-index: 100050;
  top: 0px;
  right: 0;
  background-color: var(--white-sidebar, #fff);
  border-top-left-radius: 25px;
  padding-top: 25px;
}
.product-sidebar-toprow {
  display: flex;
  border: 1px;
  margin-left: 0px;
  height: 55px;
  width: 340px;
  color: black;
  position: sticky;
  z-index: 50;
}
.product-sidebar-toprow-logo {
  border-radius: 3px 100px 100px 1px;
  height: 45px;
  width: 85px;
  padding: 10px 30px 10px 15px;
  justify-content: center;
  align-items: flex-start;
  margin: 0 5px 0 15px;
}
.product-sidebar-toprow-logo img {
  width: 49px;
}
.product-sidebar-toprow-streamlogo {
  display: flex;
  justify-content: space-between;
  border-radius: 3px 100px 100px 1px;
  height: 35px;
  width: 57px;
  padding: 4px 8px;
  flex-direction: column;
  align-items: center;
  margin: 0 5px 5px 15px;
}
.product-sidebar-toprow-streamlogo-pretext h6 {
  margin: 0;
}
.product-sidebar-toprow-streamlogo-main {
  display: flex;
}
.product-sidebar-toprow-streamlogo-main h2 {
  margin: 5px;
}
.product-sidebar-toprow-streamlogo-logoimage {
  min-width: 41px;
}
.product-sidebar-toprow-streamlogo-logoimage img {
  width: 41px;
}
.product-sidebar-toprow-stream {
  display: flex;
  font-size: 10px;
  width: 57px;
  height: 10px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(0%) hue-rotate(324deg) brightness(98%) contrast(102%);
  margin-left: 8px;
}
.product-sidebar-toprow-text {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-left: 20px;
  margin-top: 0;
  height: 45px;
}
.product-sidebar-toprow-icon {
  top: 0;
  right: 25px;
  position: absolute;
}
.product-sidebar-list {
  list-style: none;
  scroll-margin-top: 100px;
  height: calc(100vh - 56px);
  overflow: auto;
  width: 340px;
}
@media screen and (max-width: 992px) {
  .product-sidebar-list {
    width: 100vw;
  }
}
.product-sidebar-list ul {
  margin: 50px;
  padding: 0;
}
.product-sidebar-list li {
  position: relative;
  color: black;
  border-bottom: 1px solid rgb(243, 243, 244);
}
.product-sidebar-list li h6 {
  padding-top: 25px;
  gap: 15px;
}
.product-sidebar-list li a {
  display: block;
  color: #000;
  padding: 4px 8px;
  text-decoration: none;
}
.product-sidebar-list li a.active {
  background-color: #04AA6D;
  color: white;
}
.product-sidebar-list li a:hover:not(.active) {
  /* background-color: #555;
  color: white;*/
}
.product-sidebar-list li a img {
  width: 48px;
  height: 48px;
  margin-right: 10px;
  margin-left: -10px;
}
.product-sidebar-list::-webkit-scrollbar {
  border-radius: 4px;
  width: 5px;
}
.product-sidebar-list::-webkit-scrollbar-thumb {
  background-color: rgb(154, 154, 154);
  border-radius: 4px;
}
.product-sidebar-list::-webkit-scrollbar-thumb:hover {
  opacity: 0.8;
}
@media screen and (max-height: 450px) {
  .product-sidebar .sidebar {
    padding-top: 15px;
  }
  .product-sidebar .sidebar a {
    font-size: 18px;
  }
}
@media screen and (max-width: 992px) {
  .product-sidebar {
    border-top-right-radius: 25px;
    align-content: center;
    top: 60px;
    width: 100vw;
  }
}

.dvs-container .breadcrumb-container {
  padding-top: 30px;
}
.dvs-container .breadcrumb-container ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
}
.dvs-container .breadcrumb-container ul li {
  cursor: pointer;
}
.dvs-container .breadcrumb-container ul li a {
  color: #fff;
}
.dvs-container .breadcrumb-container ul li a:hover {
  text-decoration: none;
}
.dvs-container .breadcrumb-container ul li::after {
  content: "/";
  margin-left: 10px;
}
.dvs-container .breadcrumb-container ul li:last-of-type {
  cursor: default;
  color: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
}
.dvs-container .breadcrumb-container ul li:last-of-type a {
  color: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
}
.dvs-container .breadcrumb-container ul li:last-of-type::after {
  content: "";
}
.dvs-container .header-container {
  margin-top: 60px;
}
.dvs-container .header-container .header-logo img {
  width: 200px;
  margin-bottom: 25px;
}

.dvs-container .dual-card-header {
  margin-top: 60px;
}
.dvs-container .dual-card-header .dual-card-bg {
  position: absolute;
  z-index: -1;
  max-width: 829px;
  width: 80%;
  top: 10%;
}
@media screen and (min-width: 1024px) {
  .dvs-container .dual-card-header .dual-card-bg {
    top: 6%;
  }
}
.dvs-container .dual-card-header-card-container {
  justify-content: center;
  margin-top: 10px !important;
}
.dvs-container .dual-card-header-card-container .cust-col:not(:first-child), .dvs-container .dual-card-header-card-container .asym-container .right-col:not(:first-child), .dvs-container .asym-container .dual-card-header-card-container .right-col:not(:first-child), .dvs-container .dual-card-header-card-container .asym-container .left-col:not(:first-child), .dvs-container .asym-container .dual-card-header-card-container .left-col:not(:first-child) {
  margin-top: 15px;
}
@media screen and (min-width: 578px) {
  .dvs-container .dual-card-header-card-container .cust-col:not(:first-child), .dvs-container .dual-card-header-card-container .asym-container .right-col:not(:first-child), .dvs-container .asym-container .dual-card-header-card-container .right-col:not(:first-child), .dvs-container .dual-card-header-card-container .asym-container .left-col:not(:first-child), .dvs-container .asym-container .dual-card-header-card-container .left-col:not(:first-child) {
    margin-top: 0;
  }
}
.dvs-container .dual-card-header-card {
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  height: 100%;
  padding: 25px 20px;
}
@media screen and (min-width: 1024px) {
  .dvs-container .dual-card-header-card {
    padding: 40px 50px;
  }
}
.dvs-container .dual-card-header-card .header-logo {
  display: flex;
  justify-content: center;
}
.dvs-container .dual-card-header-card .header-logo img {
  height: 45px;
  margin-bottom: 20px;
}
.dvs-container .dual-card-header-card .dual-card-image {
  height: 144px;
  max-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .dual-card-header-card .dual-card-image {
    height: 168px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .dual-card-header-card .dual-card-image {
    height: 260px;
  }
}
.dvs-container .dual-card-header-card .dual-card-heading {
  margin-top: 20px;
  margin-bottom: 10px;
}
.dvs-container .dual-card-header-card .dual-card-desc {
  margin-bottom: 25px;
}

.dvs-container .compare-card-container {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.dvs-container .compare-card-container .compare-card {
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  margin-bottom: 46px;
  height: 100%;
  max-width: 455px;
}
@media screen and (min-width: 1024px) {
  .dvs-container .compare-card-container .compare-card {
    padding: 50px;
  }
}
.dvs-container .compare-card-container .compare-card .header-logo {
  display: flex;
  justify-content: center;
}
.dvs-container .compare-card-container .compare-card .header-logo img {
  height: 45px;
  margin-bottom: 50px;
}
.dvs-container .compare-card-container .compare-card-heading {
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .dvs-container .compare-card-container .compare-card-heading {
    margin-bottom: 50px;
  }
}
.dvs-container .compare-card-container .compare-card-list {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}
.dvs-container .compare-card-container .compare-card-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .dvs-container .compare-card-container .compare-card-list li {
    padding-bottom: 25px;
  }
}
.dvs-container .compare-card-container .compare-card-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
}
.dvs-container .compare-card-container .compare-card a:hover {
  border: 1px solid rgba(0, 255, 235, 0.6);
  box-shadow: 0px 0px 22px 8px rgba(0, 255, 235, 0.2);
}
.dvs-container .compare-card-container .text-star {
  margin-top: -21px;
}

.gallery-list {
  width: 100vw;
  position: relative;
  left: -20%;
}
.gallery-list-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  animation-direction: alternate;
  transition: transform 10s;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .gallery-list-row {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.gallery-list-row.forward {
  transform: translateX(-200px);
}
.gallery-list-row.backward {
  transform: translateX(0);
}
.gallery-list .gallery-card, .gallery-list .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round, .dvs-container .featured-channels_centered .gallery-cards .gallery-list .gallery-card-round, .gallery-list .gallery-card-round {
  border-radius: 16px;
  width: 143px;
  height: 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .gallery-list .gallery-card, .gallery-list .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round, .dvs-container .featured-channels_centered .gallery-cards .gallery-list .gallery-card-round, .gallery-list .gallery-card-round {
    width: 197px;
    height: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .gallery-list .gallery-card, .gallery-list .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round, .dvs-container .featured-channels_centered .gallery-cards .gallery-list .gallery-card-round, .gallery-list .gallery-card-round {
    width: 267px;
    height: 149px;
  }
}
.gallery-list .gallery-card .bg-image, .gallery-list .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round .bg-image, .dvs-container .featured-channels_centered .gallery-cards .gallery-list .gallery-card-round .bg-image, .gallery-list .gallery-card-round .bg-image {
  width: 100%;
}
.gallery-list .gallery-card-round {
  position: relative;
}
.gallery-list .gallery-card-round .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53%;
}

.dvs-container .gallery-header {
  position: relative;
}
.dvs-container .gallery-header-img {
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
  overflow: hidden;
}
.dvs-container .gallery-header-img img {
  width: 100%;
}
.dvs-container .gallery-header .partner-logo {
  position: absolute;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 70%;
  width: 25vw;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  height: fit-content;
  filter: drop-shadow(7.3555407524px 7.3555407524px 14.7110815048px rgba(0, 0, 0, 0.3));
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card img {
  width: 100%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(1) {
  top: 2%;
  left: -3.5%;
  width: 6.7%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(2) {
  top: 14%;
  left: 4%;
  width: 17%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(3) {
  top: 19%;
  left: -13.5%;
  width: 13.7%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(4) {
  top: 34%;
  left: -5%;
  width: 23%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(5) {
  top: 59.5%;
  left: -17.9%;
  width: 17%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(6) {
  top: 63.2%;
  left: 3.6%;
  width: 18%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(7) {
  top: 84.5%;
  left: -2.3%;
  width: 10.5%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(8) {
  top: 84.5%;
  left: 18.8%;
  width: 10.2%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(9) {
  top: 3.8%;
  right: 6.8%;
  width: 7.6%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(10) {
  top: 10.7%;
  right: 15.4%;
  width: 13%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(11) {
  top: 15.6%;
  right: -4.6%;
  width: 12.9%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(12) {
  top: 29.8%;
  right: 5.7%;
  width: 18.5%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(13) {
  top: 38%;
  right: -13.6%;
  width: 18%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(14) {
  top: 54.9%;
  right: 5%;
  width: 19.4%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(15) {
  top: 69.5%;
  right: -5.6%;
  width: 8.3%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(16) {
  top: 76.8%;
  right: 20.6%;
  width: 10.2%;
}
.dvs-container .gallery-header .gallery-header-cards .gallery-header-card:nth-child(17) {
  top: 79.7%;
  right: 3%;
  width: 13.7%;
}
.dvs-container .scrollAnimation, .dvs-container .scrollAsymCardsDown, .dvs-container .scrollAsymCardsUp, .dvs-container .scrollGalleryHeaderDown, .dvs-container .scrollGalleryHeaderUp {
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.dvs-container .scrollGalleryHeaderUp {
  animation-name: gallery-move-up;
}
.dvs-container .scrollGalleryHeaderDown {
  animation-name: gallery-move-down;
}
@keyframes gallery-move-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}
@keyframes gallery-move-up {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.faq {
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
  background: var(--grey-grey-800, #161e28);
  margin-bottom: 0 !important;
}
@media screen and (min-width: 768px) {
  .faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  padding-bottom: 40px;
}
.faq-answer {
  margin-top: 25px;
}

.dvs-container .asym-container .asym-card {
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .asym-container .asym-card {
    width: 352px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .asym-container .asym-card {
    width: 455px;
  }
}
.dvs-container .asym-container .asym-card img {
  border-radius: 15px 15px 0 0;
  width: 167px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .asym-container .asym-card img {
    width: 373px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .asym-container .asym-card img {
    width: 455px;
  }
}
.dvs-container .asym-container .asym-card_body {
  padding: 15px 15px 25px 15px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .asym-container .asym-card_body {
    padding: 30px 25px 50px 25px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .asym-container .asym-card_body {
    padding: 50px 50px 100px 50px;
  }
}
.dvs-container .asym-container .cust-col, .dvs-container .asym-container .right-col, .dvs-container .asym-container .left-col {
  padding-left: 7.5px;
  padding-right: 7.5px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.dvs-container .asym-container .left-col {
  align-items: end;
}
.dvs-container .asym-container .right-col {
  align-items: start;
  padding-top: 50px;
}
.dvs-container .scrollAnimation, .dvs-container .scrollAsymCardsDown, .dvs-container .scrollAsymCardsUp, .dvs-container .scrollGalleryHeaderUp, .dvs-container .scrollGalleryHeaderDown {
  animation-duration: 1s;
  animation-direction: alternate;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.dvs-container .scrollAsymCardsUp {
  animation-name: asym-cards-move-up;
}
.dvs-container .scrollAsymCardsDown {
  animation-name: asym-cards-move-down;
}
@keyframes asym-cards-move-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(4vh);
  }
}
@keyframes asym-cards-move-up {
  0% {
    transform: translateY(4vh);
  }
  100% {
    transform: translateY(0px);
  }
}

.dvs-container .special-upsell_nav {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.dvs-container .special-upsell_nav .btn-round {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 0;
  cursor: pointer;
}
.dvs-container .special-upsell_container {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
  gap: 50px;
}
.dvs-container .special-upsell_container .special-slide {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-width: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .special-upsell_container .special-slide {
    gap: 15px;
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .special-upsell_container .special-slide {
    gap: 100px;
    flex-direction: row;
  }
}
.dvs-container .special-upsell_container .special-slide_body {
  display: flex;
  flex-direction: column;
}
.dvs-container .special-upsell_container .special-slide_buttons {
  display: flex;
  justify-content: start;
  gap: 15px;
  margin-top: 25px;
}
.dvs-container .special-upsell_container .special-slide_image {
  width: 330px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .special-upsell_container .special-slide_image {
    width: 360px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .special-upsell_container .special-slide_image {
    width: 549px;
  }
}
.dvs-container .special-upsell_container .special-slide:not(:first-child) {
  margin-left: -50px;
}

.dvs-container .video-container {
  position: relative;
}
.dvs-container .video-container .video {
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
}
.dvs-container .video-container .video-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dvs-container .video-container .video video {
  height: 600px;
}
@media screen and (min-width: 768px) {
  .dvs-container .video-container .video video {
    width: 100%;
    height: fit-content;
  }
}
.dvs-container .video-container .video img {
  height: 600px;
}
@media screen and (min-width: 768px) {
  .dvs-container .video-container .video img {
    width: 100%;
    height: fit-content;
  }
}

.dvs-container .featured-shows-container {
  width: 100%;
}
.dvs-container .featured-shows {
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
}
@media screen and (min-width: 2020px) {
  .dvs-container .featured-shows {
    left: auto;
  }
}
.dvs-container .featured-shows-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  width: 1870px;
}
@media screen and (min-width: 1024px) {
  .dvs-container .featured-shows-row {
    gap: 15px;
    margin-bottom: 15px;
  }
}
.dvs-container .featured-shows-row.forward, .dvs-container .featured-shows-row.backward {
  animation-play-state: paused;
  animation-timing-function: linear;
  animation-duration: 1s;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.dvs-container .featured-shows-row.forward {
  animation-name: move-forward;
}
.dvs-container .featured-shows-row.backward {
  animation-name: move-backward;
}
.dvs-container .featured-shows .feature-card {
  border-radius: 16px;
  width: 150px;
  height: 200px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .featured-shows .feature-card {
    width: 172.5px;
    height: 230px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .featured-shows .feature-card {
    width: 267px;
    height: auto;
  }
}
.dvs-container .featured-shows .feature-card .bg-image {
  width: 100%;
  border-radius: 16px;
}
@keyframes move-forward {
  0% {
    transform: translateX(-5%);
  }
  100% {
    transform: translateX(10%);
  }
}
@keyframes move-backward {
  0% {
    transform: translateX(5%);
  }
  100% {
    transform: translateX(-10%);
  }
}

.how-to {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}
.how-to-item {
  width: 150px;
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .how-to-item {
    width: 154px;
  }
}
@media screen and (min-width: 992px) {
  .how-to-item {
    width: 248px;
  }
}
.how-to-item_select {
  margin-top: 10px;
  margin-bottom: 10px;
}

.dvs-container .featured-channels {
  position: relative;
}
.dvs-container .featured-channels_container {
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
}
.dvs-container .featured-channels_container .featured-channels_image {
  height: 640px;
  transform: translate(-30%, 0%);
}
@media (min-width: 768px) {
  .dvs-container .featured-channels_container .featured-channels_image {
    width: 100%;
    /*	height: fit-content;*/
    transform: translate(0%, 0%);
  }
}
.dvs-container .featured-channels_container:after {
  content: "";
  background: linear-gradient(to right, #0a121d 0%, rgba(10, 18, 29, 0.6) 60%, rgba(10, 18, 29, 0) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.dvs-container .featured-channels_container .video-container {
  position: relative;
}
.dvs-container .featured-channels_container .video-container .video {
  overflow: unset !important;
  position: relative;
  width: 100vw;
  left: calc(-1 * (100vw - 100%) / 2);
}
.dvs-container .featured-channels_container .video-container .video-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dvs-container .featured-channels_container .video-container .video video {
  height: 600px;
  width: 100%;
  height: fit-content;
  /*@media screen and (min-width: 768px) {
  	width: 100%;
  	height: fit-content;
  }*/
}
.dvs-container .featured-channels_container .video-container .video img {
  height: 600px;
  width: 100%;
  height: fit-content;
  /*@media screen and (min-width: 768px) {
  	width: 100%;
  	height: fit-content;
  }*/
}
.dvs-container .featured-channels_selector {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  /*position: relative;*/
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.dvs-container .featured-channels_selector .featured-channels_catagories {
  padding-left: 0;
  list-style: none;
  overflow: hidden;
  width: 105%;
  height: 30px;
}
@media screen and (min-width: 575px) {
  .dvs-container .featured-channels_selector .featured-channels_catagories {
    width: 125%;
  }
}
@media screen and (max-width: 600px) {
  .dvs-container .featured-channels_selector .featured-channels_catagories-list-item {
    min-width: unset !important;
  }
}
.dvs-container .featured-channels_selector .featured-channels_catagories ul.featured-channels_tabs {
  /* Updated */
  list-style-type: none; /* Remove default markers */
  display: flex;
  gap: 30px;
  flex-direction: row;
  align-items: center;
  word-wrap: none;
  white-space: nowrap;
  cursor: pointer;
  overflow: auto;
  padding-bottom: 15px;
  padding-left: 0px;
  /*
  @media screen and (max-width: 520px) {
  	gap: 0px;
  }*/
}
.dvs-container .featured-channels_selector .featured-channels_catagories ul.featured-channels_tabs:last-child {
  padding-right: 16%;
}
.dvs-container .featured-channels_selector .featured-channels_catagories .active {
  color: var(--monotone-white, #fff);
  border-radius: 50px;
  padding: 5px 15px 4px 15px;
  background: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
}
.dvs-container .featured-channels_selector .featured-channels_content h2 {
  margin-bottom: 15px;
  margin-top: 50px;
}
.dvs-container .featured-channels_selector .featured-channels_content .channels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.dvs-container .featured-channels_selector .featured-channels_content .channels .channel {
  padding: 6.223px 4.978px 4.977px 6.222px;
  border-radius: 124.444px;
  background: var(--monotone-white, #fff);
  width: 56px;
  height: 56px;
}
.dvs-container .featured-channels_selector .featured-channels_content .channels .channel img {
  max-width: 100%;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .paymentTerm {
  font-size: 0.6em;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row {
  justify-content: center;
}
@media screen and (max-width: 450px) {
  .dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row {
    flex-direction: column;
    align-content: center;
  }
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row div h2 {
  margin-bottom: 0px !important;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .padding-15 {
  padding: 15px;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list {
  padding: 5px 10px 5px 10px;
  border-radius: 30px;
  max-width: fit-content;
  cursor: pointer;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list.channel-primary {
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.3));
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list.channel-primary .channel-list-number {
  border: 1px solid rgb(0, 255, 95);
  background: rgb(37, 211, 102);
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list.channel-secondary {
  border: 1px solid rgba(0, 133, 255, 0.3);
  background: radial-gradient(circle, rgba(0, 133, 255, 0.1), rgba(0, 133, 255, 0.3));
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list.channel-secondary .channel-list-number {
  border: 1px solid rgb(109, 140, 251);
  background: rgb(0, 178, 255);
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list.channel-inactive {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list .avatar img {
  height: 26px;
  width: 26px;
  margin-left: -5px;
  border: 1px solid rgb(88, 91, 96);
  background: rgb(255, 255, 255);
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list .avatar .channel-list-number {
  margin-left: -5px;
  display: inline-block;
  min-width: 26px;
  font-weight: 600;
  height: 26px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
}
.dvs-container .featured-channels_selector .featured-channels_content .select-package-info-container .select-package-info-button-row .channel-list .channel-description {
  font-size: 10px;
  line-height: 26px;
  font-weight: 600;
  margin-left: 7px;
}
@media screen and (max-width: 900px) {
  .dvs-container .featured-channels_centered {
    margin-bottom: 20vh;
  }
}
@media screen and (max-width: 550px) {
  .dvs-container .featured-channels_centered {
    margin-bottom: 25vh;
  }
}
.dvs-container .featured-channels_centered_container {
  color: red;
}
.dvs-container .featured-channels_centered_container .featured-channels_image {
  transform: unset !important;
}
.dvs-container .featured-channels_centered_selector {
  text-align: center;
  align-items: center;
  position: absolute;
  top: 20% !important;
  transform: unset !important;
  /*position: relative;*/
}
.dvs-container .featured-channels_centered_selector-body .featured-channels_header-contents {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 500px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_header-contents .featured-channels_header {
    width: 400px;
  }
}
@media screen and (max-width: 400px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_header-contents .featured-channels_header {
    width: 300px;
  }
}
.dvs-container .featured-channels_centered_selector-body .featured-channels_content {
  margin-top: 4vh;
}
.dvs-container .featured-channels_centered_selector-body .featured-channels_content gallery-title-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 400px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content gallery-title-container .gallery-title {
    width: 300px;
  }
}
@media screen and (max-width: 730px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .gallery-desktop {
    display: none;
  }
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .gallery-mobile {
    display: block;
  }
}
@media screen and (min-width: 731px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .gallery-desktop {
    display: block;
  }
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .gallery-mobile {
    display: none;
  }
}
.dvs-container .featured-channels_centered_selector-body .featured-channels_content .featured-text-body {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 600px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .featured-text-body .text-large-regular {
    width: 600px;
  }
}
@media screen and (min-width: 500px) and (max-width: 599px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .featured-text-body .text-large-regular {
    width: 500px;
  }
}
@media screen and (max-width: 499px) {
  .dvs-container .featured-channels_centered_selector-body .featured-channels_content .featured-text-body .text-large-regular {
    width: 375px;
  }
}
.dvs-container .featured-channels_centered_selector .featured-channels_catagories {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: 100px;
  width: 100% !important;
}
.dvs-container .featured-channels_centered_selector .featured-channels_catagories-list {
  list-style: none;
  display: flex;
  padding: 0 !important;
  margin-top: 30px;
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 100px;
}
.dvs-container .featured-channels_centered_selector .featured-channels_catagories-list-item {
  min-width: 160px;
  text-align: center;
  border-radius: 100px;
  cursor: pointer;
  padding: 10px 15px;
  font-size: 14px !important;
  font-family: Poppins !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 150% !important;
}
@media (min-width: 576px) {
  .dvs-container .featured-channels_centered_selector .featured-channels_catagories-list-item {
    min-width: 190px;
    padding: 15px 25px 14px 25px;
  }
}
.dvs-container .featured-channels_centered_selector .featured-channels_catagories .active {
  border: 1px solid var(--monotone-white, #fff);
  background: var(--monotone-white-10, rgba(255, 255, 255, 0.1));
  padding: 15px 15px 15px 15px;
}
.dvs-container .featured-channels_centered_selector .featured-channels_content {
  flex-direction: column;
}
.dvs-container .featured-channels_centered .gallery-cards {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.dvs-container .featured-channels_centered .gallery-cards .gallery-card, .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round {
  /*border-radius: 16px;*/
  width: 143px;
  height: 80px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .dvs-container .featured-channels_centered .gallery-cards .gallery-card, .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round {
    width: 197px;
    height: 110px;
  }
}
@media screen and (min-width: 1024px) {
  .dvs-container .featured-channels_centered .gallery-cards .gallery-card, .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round {
    width: 267px;
    height: 149px;
  }
}
.dvs-container .featured-channels_centered .gallery-cards .gallery-card .bg-image, .dvs-container .featured-channels_centered .gallery-cards .gallery-card-round .bg-image {
  width: 100%;
}
.dvs-container .featured-channels_centered .gallery-cards .gallery-card-round {
  position: relative;
}
.dvs-container .featured-channels_centered .gallery-cards .gallery-card-round .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53%;
}
.dvs-container .featured-channels_centered .gallery-cards .vertical-card {
  width: 160px !important;
  height: 200px !important;
}

.dvs-container .ways-to-watch-container {
  justify-content: center;
}
.dvs-container .ways-to-watch-hideable {
  max-width: 555px;
}
.dvs-container .ways-to-watch-card {
  background-color: var(--grey-grey-800, #161e28);
  border-radius: 15px;
  padding: 25px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
  height: 100%;
}
@media screen and (min-width: 1024px) {
  .dvs-container .ways-to-watch-card {
    padding: 50px 50px 25px 50px;
  }
}
.dvs-container .ways-to-watch-card .header-logo {
  display: flex;
  justify-content: center;
}
.dvs-container .ways-to-watch-card .header-logo img {
  height: 20px;
  margin-bottom: 50px;
}
.dvs-container .ways-to-watch-card-img-container {
  position: relative;
  width: 100%;
  height: 170px;
  margin-bottom: 25px;
}
.dvs-container .ways-to-watch-card-img-container .bg-gradient {
  width: 100%;
  height: 100%;
  border-radius: 397px;
  opacity: 0.3000000119;
  background: var(--grey-grey-200, #b7b9bc);
  filter: blur(50px);
  position: absolute;
  top: 0;
  left: 0;
}
.dvs-container .ways-to-watch-card-img-container img {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  max-width: 260px;
}
.dvs-container .ways-to-watch-card-heading {
  margin-bottom: 25px;
}
.dvs-container .ways-to-watch-card-list {
  list-style: none;
  padding-left: 0;
  flex-grow: 1;
}
.dvs-container .ways-to-watch-card-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .dvs-container .ways-to-watch-card-list li {
    padding-bottom: 25px;
  }
}
.dvs-container .ways-to-watch-card-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
}
.dvs-container .ways-to-watch-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.dvs-container .ways-to-watch-card-actions .product-card-body-price {
  margin-left: -20px;
  border-radius: 0px 100px 100px 0px;
  background: var(--monotone-white-40, rgba(255, 255, 255, 0.4));
  display: flex;
  height: 85px;
  padding: 10px 25px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 1024px) {
  .dvs-container .ways-to-watch-card-actions .product-card-body-price {
    margin-left: -50px;
    padding: 10px 30px 10px 25px;
  }
}
.dvs-container .ways-to-watch-card-actions .product-card-body-price-pretext h6 {
  margin: 0;
}
.dvs-container .ways-to-watch-card-actions .product-card-body-price-main {
  display: flex;
}
.dvs-container .ways-to-watch-card-actions .product-card-body-price-main .cust-h2 {
  margin: 0;
  font-size: 28px;
}
@media screen and (min-width: 1024px) {
  .dvs-container .ways-to-watch-card-actions .product-card-body-price-main .cust-h2 {
    font-size: 37px;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .dvs-container .ways-to-watch-card-actions .product-card-body-price-main .cust-h2 {
    font-size: 27px !important;
  }
}
.dvs-container .ways-to-watch .text-star {
  margin-top: -21px;
}

.dvs-container .addon {
  overflow: hidden;
}
.dvs-container .addon_heading {
  display: flex;
  justify-content: space-between;
}
.dvs-container .addon-nav-buttons {
  display: flex;
  gap: 20px;
}
.dvs-container .addon-nav-buttons .btn-round {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 0;
  cursor: pointer;
}
.dvs-container .addon-nav-buttons.bottom {
  margin-top: 25px;
}
.dvs-container .addon .addon_container {
  overflow: auto;
  padding-left: 10px;
  display: flex;
  justify-content: left;
  scrollbar-width: none; /* Firefox */
}
.dvs-container .addon .addon_container::-webkit-scrollbar {
  visibility: hidden;
}
.dvs-container .addon .addon_container .addon-list {
  display: flex;
  flex-direction: row;
  padding: 50px 0 25px;
  gap: 15px;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list {
    padding-bottom: 50px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide {
  width: 450px !important;
  height: 500px !important;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide {
    width: 300px !important;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide-img {
  height: 250px !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide-img img {
  max-height: 200px !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide-img .wide-bg {
  max-height: 200px !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide-img .wide-logo {
  position: absolute !important;
  top: 70% !important;
  left: 80% !important;
  max-width: 200px !important;
  translate: -50% -50% !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide-img .wide-package-logo {
  top: 55% !important;
  left: 75% !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-price-container {
  padding: 0 20px 20px 20px;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-description-container {
    padding: 15px;
  }
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-description-container .addon_card-body-wide-description {
    padding: 10px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide {
  display: flex;
  flex-direction: column;
  height: 350px !important;
  justify-content: space-between;
  padding: 0px;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card .addon_card-body-wide {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-description-container {
    flex-direction: column-reverse !important;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .textlogo-desktop {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-description-body {
    max-width: 240px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content {
  width: 140px;
  height: 80px;
  background-color: blue;
  border-radius: 0 100px 100px 0;
  padding: 10px 30px 10px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content .addon_card-body-wide-colorblock-text {
  display: flex;
  flex-direction: row;
  font-weight: bold;
  height: 30px;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content .addon_card-body-wide-colorblock-text .addon_card-body-wide-colorblock-text-primary {
  font-size: 35px;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content .addon_card-body-wide-colorblock-text .addon_card-body-wide-colorblock-text-secondary {
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content .addon_card-body-wide-colorblock-producttype {
    display: none;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content .addon_card-body-wide-colorblock-producttype .textlogo {
  max-width: 100px !important;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content p {
  margin: 0px !important;
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main {
    flex-direction: column;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-payment .h5-strikethough {
    text-decoration: line-through;
  }
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main {
    flex-direction: row;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-colorblock-content {
    border-radius: 0;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-payment {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-payment .h5-strikethough {
    text-decoration: line-through;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-payment h2 {
    margin-bottom: 0px;
  }
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-link {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main addon_card-body-wide-price-main-payment {
  display: flex;
  flex-direction: column;
  height: 350px !important;
  justify-content: end;
}
.dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-link {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-link a {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_wide .addon_card-body-wide-price-main .addon_card-body-wide-price-main-link a {
    width: 100%;
    align-content: center;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_card {
  background: var(--grey-grey-800, #161e28);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 220px;
  height: 307px;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_card {
    width: 267px;
    height: 375px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_card-img {
  position: relative;
  width: 100%;
  height: 123px;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_card-img {
    height: 149px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_card-img .bg {
  border-radius: 16px 16px 0 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 123px;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_card-img .bg {
    max-height: 149px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_card-img .logo {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 141px;
  translate: -50% -50%;
}
.dvs-container .addon .addon_container .addon-list .addon_card-img .extra {
  position: absolute;
  left: -5px;
  top: -5px;
  border-radius: 4px;
  background: var(--primary-blue, #0095da);
  padding: 4px 6px;
}
.dvs-container .addon .addon_container .addon-list .addon_card .addon_wide-body {
  padding: 15px 20px 0px 20px !important;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body {
  padding: 15px 20px 25px 20px;
  display: flex;
  flex-direction: column;
  height: 184px;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-desc-main {
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .dvs-container .addon .addon_container .addon-list .addon_card-body {
    height: 226px;
    padding: 25px;
  }
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main {
  display: flex;
  flex-direction: row;
  align-items: end;
  gap: 10px;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main h2 {
  margin: 0;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main .price-discount {
  margin-bottom: 0;
  text-decoration: line-through;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main-wide {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main-wide h2 {
  margin: 0;
}
.dvs-container .addon .addon_container .addon-list .addon_card-body-price-main-wide .price-discount {
  margin-bottom: 0;
  text-decoration: line-through;
}
.dvs-container .addon .addon_container .addon-list .addon_card:hover {
  border: 1px solid rgba(0, 255, 235, 0.6);
  box-shadow: 0px 0px 22px 8px rgba(0, 255, 235, 0.2);
}

.dvs-container .spotlight-container {
  position: relative;
  display: none;
}
.dvs-container .spotlight-container .spotlight-full-card .spotlight-image img {
  width: 100%;
  z-index: 0;
}
.dvs-container .spotlight-container .spotlight-full-card .spotlight-text-container {
  position: absolute;
  top: 50%;
  right: 90px;
  transform: translateY(-50%);
  text-align: center;
}
.dvs-container .spotlight-container .spotlight-full-card .spotlight-text-container-heading {
  padding-bottom: 20px;
}
.dvs-container .spotlight-container .spotlight-center-card-container {
  text-align: center;
}
.dvs-container .spotlight-container .spotlight-center-card-container .spotlight-text-container-heading {
  padding-bottom: 20px;
}
.dvs-container .spotlight-container .spotlight-center-card-container .spotlight-card {
  border: 2px solid #f5cb74;
  border-radius: 16px;
  padding-bottom: 5%;
}
.dvs-container .spotlight-container .spotlight-center-card-container .spotlight-card .spotlight-image-container .spotlight-image img {
  width: 100%;
  border-radius: 16px 16px 0px 0px;
}
.dvs-container .spotlight-container .spotlight-center-card-container .spotlight-card .spotlight-text-container {
  padding-top: 5%;
}
@media (min-width: 1024px) {
  .dvs-container .spotlight-mobile {
    display: none;
  }
  .dvs-container .spotlight-desktop {
    display: block; /* Show on desktop */
    /*border-radius: 16px;*/
  }
}
@media (max-width: 1023px) {
  .dvs-container .spotlight-mobile {
    display: flex; /* Show on mobile */
    justify-content: center;
    align-items: center;
  }
  .dvs-container .spotlight-desktop {
    display: none;
  }
}
.dvs-container .select-package-info-container .paymentTerm {
  font-size: 0.6em;
}
.dvs-container .select-package-info-container .select-package-info-button-row {
  justify-content: center;
}
.dvs-container .select-package-info-container .select-package-info-button-row div h2 {
  margin-bottom: 0px !important;
}
.dvs-container .select-package-info-container .select-package-info-button-row .padding-15 {
  padding: 15px;
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list {
  padding: 5px 10px 5px 10px;
  border-radius: 30px;
  max-width: fit-content;
  cursor: pointer;
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list.channel-primary {
  border: 1px solid rgba(37, 211, 102, 0.2);
  background: radial-gradient(circle, rgba(37, 211, 102, 0.1), rgba(37, 211, 102, 0.3));
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list.channel-primary .channel-list-number {
  border: 1px solid rgb(0, 255, 95);
  background: rgb(37, 211, 102);
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list.channel-secondary {
  border: 1px solid rgba(0, 133, 255, 0.3);
  background: radial-gradient(circle, rgba(0, 133, 255, 0.1), rgba(0, 133, 255, 0.3));
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list.channel-secondary .channel-list-number {
  border: 1px solid rgb(109, 140, 251);
  background: rgb(0, 178, 255);
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list.channel-inactive {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list .avatar img {
  height: 26px;
  width: 26px;
  margin-left: -5px;
  border: 1px solid rgb(88, 91, 96);
  background: rgb(255, 255, 255);
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list .avatar .channel-list-number {
  margin-left: -5px;
  display: inline-block;
  min-width: 26px;
  font-weight: 600;
  height: 26px;
  font-size: 10px;
  text-align: center;
  border-radius: 50%;
}
.dvs-container .select-package-info-container .select-package-info-button-row .channel-list .channel-description {
  font-size: 10px;
  line-height: 26px;
  font-weight: 600;
  margin-left: 7px;
}
.dvs-container .center-content {
  height: 100%;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dvs-container .center-content .question-container {
  text-align: center;
  margin-bottom: 20px;
  max-width: 600px;
  /* Styling for JCF dropdown container */
}
.dvs-container .center-content .question-container .question-label {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-size: 1.5em;
  font-family: Poppins;
  line-height: 150%;
}
.dvs-container .center-content .question-container .user-input {
  width: 300px;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 2px solid #55aae5;
  background-color: transparent;
  outline: none;
  color: #55aae5;
  text-align: center;
  font-size: 20px !important;
}
.dvs-container .center-content .question-container .user-input::placeholder {
  color: #55aae5;
  font-size: 20px !important;
}
.dvs-container .center-content .question-container .excerpt {
  color: grey;
}
.dvs-container .center-content .question-container .jcf-select {
  position: relative;
  width: 300px !important;
  margin-top: 30px;
  box-shadow: 0 1.5px 0 0 #55aae5;
  padding-bottom: 10px !important;
  margin-bottom: 15px;
  /* Styling for JCF dropdown arrow */
  /* Styling for JCF dropdown border on focus */
}
.dvs-container .center-content .question-container .jcf-select .jcf-select-opener::before {
  border-color: #55aae5;
}
.dvs-container .center-content .question-container .jcf-select .jcf-select-text {
  background-color: transparent; /* Background color */
  font-size: 20px !important !important;
  color: #55aae5 !important;
}
.dvs-container .center-content .question-container .jcf-select .jcf-list .jcf-option {
  color: white;
}
.dvs-container .center-content .question-container .jcf-select .jcf-list {
  background-color: transparent;
}
.dvs-container .center-content .question-container .jcf-select-focus .jcf-select-text {
  border-color: blue; /* Border color when focused */
}
.dvs-container .dvs-packages-module .packages-confirm {
  margin-top: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .dvs-container .dvs-packages-module .packages-confirm a {
    min-width: 380px;
  }
}
@media screen and (max-width: 767px) {
  .dvs-container .dvs-packages-module .packages-confirm a {
    width: 100%;
  }
}
.dvs-container .dvs-packages-module .packages-button-container {
  margin-top: 20px;
  text-align: center;
}

body {
  min-width: 320px;
}

.si-float-wrapper {
  position: absolute;
  width: 100%;
}

.si-float-wrapper,
.si-float-wrapper * {
  box-sizing: border-box;
}

[class*=si-wrapper] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  cursor: default;
}

.si-wrapper-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -40px;
  margin-left: 0px;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
}

.si-wrapper-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  margin-top: 0px;
  margin-left: 0px;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.si-wrapper-left {
  margin-top: -20px;
  margin-left: -11px;
  -webkit-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
}

.si-wrapper-right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  margin-top: -20px;
  margin-left: 11px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

[class*=si-shadow-wrapper] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.29804;
  z-index: 1;
}

.si-shadow-wrapper-top,
.si-shadow-wrapper-bottom {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.si-shadow-pointer-bottom,
.si-shadow-pointer-right {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.si-shadow-frame {
  box-shadow: 0 1px 3px 0 #000;
}

[class*=si-shadow-pointer] {
  position: relative;
  width: 15px;
  height: 15px;
  margin: auto;
}

[class*=si-shadow-inner-pointer] {
  position: absolute;
  width: 141%;
  height: 141%;
  box-shadow: -0.70711px 0.70711px 3px 0 #000;
}

.si-shadow-inner-pointer-top {
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.si-shadow-inner-pointer-bottom {
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%) rotate(-45deg);
  transform: translate(-50%, 50%) rotate(-45deg);
}

.si-shadow-inner-pointer-left {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.si-shadow-inner-pointer-right {
  top: 50%;
  right: 0;
  -webkit-transform: translate(50%, -50%) rotate(-45deg);
  transform: translate(50%, -50%) rotate(-45deg);
}

.si-frame {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  border-radius: 3px;
  overflow: hidden;
  z-index: 2;
}

.si-content-wrapper {
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  padding: 30px;
  background-color: #fff;
}

.si-has-border .si-content-wrapper {
  border: 1px solid #bbb;
}

.si-content {
  overflow: auto;
}

.si-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  outline: none;
  background-color: transparent;
  color: inherit;
  font-family: Arial, Baskerville, monospace;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.si-close-button:hover,
.si-close-button:focus {
  opacity: 0.7;
}

[class*=si-pointer-border] {
  position: absolute;
  border: 15px solid transparent;
  z-index: 3;
}

[class*=si-pointer-bg] {
  position: relative;
  border: 15px solid transparent;
  z-index: 4;
}

.si-has-border [class*=si-pointer-bg] {
  border-width: 15px;
}

.si-pointer-border-top,
.si-pointer-border-bottom {
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.si-pointer-border-left,
.si-pointer-border-right {
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.si-pointer-top {
  border-bottom: 0;
}

.si-pointer-border-top {
  bottom: 0;
  border-top-color: #bbb;
}

.si-pointer-bg-top {
  border-top-color: #fff;
}

.si-has-border .si-pointer-bg-top {
  top: -1px;
  margin-bottom: 0px;
}

.si-pointer-bottom {
  border-top: 0;
}

.si-pointer-border-bottom {
  top: 0;
  border-bottom-color: #bbb;
}

.si-pointer-bg-bottom {
  border-bottom-color: #fff;
}

.si-has-border .si-pointer-bg-bottom {
  bottom: -1px;
  margin-top: 0px;
}

.si-pointer-left {
  border-right: 0;
}

.si-pointer-border-left {
  right: 0;
  border-left-color: #bbb;
}

.si-pointer-bg-left {
  border-left-color: #fff;
}

.si-has-border .si-pointer-bg-left {
  left: -1px;
  margin-right: 0px;
}

.si-pointer-right {
  border-left: 0;
}

.si-pointer-border-right {
  left: 0;
  border-right-color: #bbb;
}

.si-pointer-bg-right {
  border-right-color: #fff;
}

.si-has-border .si-pointer-bg-right {
  right: -1px;
  margin-left: 0px;
}

.map-canvas {
  height: 483px;
  position: relative;
  margin-bottom: 28.125rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .map-canvas {
    height: 583px;
    margin-bottom: 0;
  }
}
.map-canvas:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(10, 18, 29, 0) 0%, rgb(10, 18, 29) 100%);
}
@media (min-width: 768px) {
  .map-canvas:after {
    bottom: 0;
    height: 250px;
  }
}
.map-canvas [href^="tel:"] {
  color: #FFFFFF;
  display: inline-block;
  margin-bottom: 5px;
}

.jcf-select {
  background-color: transparent;
  box-shadow: 0 1.5px 0 -1px #FFFFFF;
}

.jcf-text {
  color: #0a121d;
}

.jcf-select .jcf-select-opener:before {
  border-color: #FFFFFF;
}

.map-info {
  z-index: 10;
  position: absolute;
  left: 20px;
  left: 50%;
  max-width: 500px;
  width: calc(100% - 40px);
  height: auto;
  top: auto;
  background-color: transparent;
  background: rgba(10, 18, 29, 0.8);
  bottom: -400px;
  padding: 1.875rem 1.0625rem 1.875rem 1.875rem;
  border-radius: 0.4rem;
  transform: translateX(-50%);
}
@supports (backdrop-filter: blur(50px)) or (-webkit-backdrop-filter: blur(50px)) {
  .map-info {
    backdrop-filter: blur(50px);
    background: rgba(255, 255, 255, 0.1);
  }
}
@media (min-width: 768px) {
  .map-info {
    bottom: 45px;
    left: 20px;
    transform: rotateX(0);
  }
}
.map-info .btn-close {
  position: absolute;
  right: 15px;
  top: 0;
  font-size: 1.875rem;
  color: #d0dadf;
  font-weight: 100;
}
.map-info p {
  color: #d0dadf;
}
.map-info hr + strong {
  margin-bottom: 0.3125rem;
  display: block;
}

.map-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .map-box > div {
    top: 0 !important;
  }
}

.m-bottom {
  margin-bottom: 2.3125rem;
}

.scedule {
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
}

.scedule-item {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.map-info-subtitle {
  display: block;
  margin-bottom: 0.3125rem;
  color: #FFFFFF;
}

.product-header .text-holder h1 {
  margin: 2rem 0;
}
.product-header .text-holder > p {
  font-size: 1.125rem;
}
.product-header .text-secondary {
  margin-top: 0;
}
@media (min-width: 992px) {
  .product-header .text-secondary {
    margin-top: 1.8rem;
    margin-bottom: 0.5rem;
  }
}
.product-header .content-nav-holder {
  margin-bottom: 0.75rem;
}

@media (max-width: 450px) {
  .hardware-group a {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
}
ul.bullets {
  padding-left: 1rem;
}

.sign-in-span {
  width: 100%;
  white-space: nowrap;
  text-align: right;
}
@media (min-width: 768px) {
  .sign-in-span {
    font-size: 14px;
  }
}

.filter-title-list .pay-method-title {
  margin-bottom: 1.75rem;
  font-size: 1.75rem;
}

@media (max-width: 992px) {
  .top-section .text-holder .h2-sm, .top-panel-standard .text-holder .h2-sm {
    font-size: 1.75rem;
  }
  .btn-holder {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@supports (-moz-appearance: none) {
  .jcf-select {
    box-shadow: 0 1.5px 0 0px #fff;
  }
}
.standalone .top-section, .standalone .top-panel-standard {
  padding-top: 0;
}

.standalone .tvg-master-container {
  margin-top: 0;
}

.standalone .filtration-holder {
  display: none;
}

.standalone .wrapper {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background-size: 130%;
  background-repeat: no-repeat;
  background-position: 50% 90px;
}

@media (max-width: 575.98px) {
  body.modal-open #haptik-xdk-wrapper {
    z-index: -1 !important;
  }
}
@media (max-width: 992px) {
  .slick-hide {
    display: none !important;
  }
  .slick-show {
    display: block !important;
    left: 0 !important;
  }
  .slick-img {
    width: auto !important;
    max-width: unset;
    max-height: 200px;
  }
}
.hero-section .top-section .chanel-number > img, .hero-section .top-panel-standard .chanel-number > img {
  width: auto !important;
  height: 45px !important;
  Margin-bottom: 15px !important;
}

.hero-section-slider .bg-holder,
.hero-section-fullscreen-bg .bg-holder {
  position: absolute !important;
  min-height: 0px !important;
  padding-top: 0px !important;
  min-height: 50vh !important;
  top: 0px !important;
}

@media (min-width: 480px) {
  .hero-section-slider .bg-holder,
  .hero-section-fullscreen-bg .bg-holder {
    min-height: 40vh !important;
  }
}
@media (min-width: 576px) {
  .hero-section-slider .bg-holder,
  .hero-section-fullscreen-bg .bg-holder {
    min-height: 50vh !important;
  }
}
@media (min-width: 992px) {
  .hero-section-slider .bg-holder,
  .hero-section-fullscreen-bg .bg-holder {
    min-height: 80vh !important;
  }
}
.hero-section-slider .bg-holder {
  background-position: center !important;
}

@media (min-width: 992px) {
  .hero-section-slider .bg-holder {
    background-position: 20% top !important;
  }
}
@media (min-width: 1600px) {
  .hero-section-slider .bg-holder {
    background-position: 100% 0% !important;
  }
}
.hero-section-slider .top-section, .hero-section-slider .top-panel-standard,
.hero-section-fullscreen-bg .top-section,
.hero-section-fullscreen-bg .top-panel-standard {
  padding-top: 70px !important;
}

.hero-section.cust-hero {
  margin-top: 80px !important;
  padding-top: 0 !important;
}

.top-section .img-holder .slick-img, .top-panel-standard .img-holder .slick-img {
  width: auto !important;
  max-height: 200px;
}

@media (min-width: 992px) {
  .top-section .img-holder .slick-img, .top-panel-standard .img-holder .slick-img {
    width: 100% !important;
    max-height: unset !important;
  }
}
.hero-section-slider .bg-holder:after {
  background: linear-gradient(90deg, #0a121d 10%, rgba(10, 18, 29, 0) 100%) !important;
  top: 0 !important;
  height: 100% !important;
}

/*.hero-section.cust-hero {
    min-height: unset !important;
}*/
@media (min-width: 992px) {
  .hero-section-slider .bg-holder:after {
    background: -webkit-gradient(linear, left top, right top, color-stop(20%, #0a121d), color-stop(65%, rgba(10, 18, 29, 0))) !important;
    background: linear-gradient(90deg, #0a121d 20%, rgba(10, 18, 29, 0) 65%) !important;
  }
}
.hero-section-slider .slick-slide {
  height: 100% !important;
}

.hero-section .top-section .row, .hero-section .top-panel-standard .row {
  min-height: 40vh !important;
  align-items: center !important;
}

.hero-section .top-section .row .packagePrice, .hero-section .top-panel-standard .row .packagePrice {
  min-height: unset !important;
}

.hero-section.cust-hero .hero-section-fullscreen-bg .bg-holder .bg-holder-reverse-grad {
  top: unset !important;
  bottom: 0;
}

.c-card-header {
  min-height: 193px !important;
}

@media (min-width: 331px) and (max-width: 359px) {
  .c-card-header {
    min-height: 206px !important;
  }
}
@media (min-width: 360px) and (max-width: 450px) {
  .c-card-header {
    min-height: 221px !important;
  }
}
@media (min-width: 451px) and (max-width: 460px) {
  .c-card-header {
    min-height: 288px !important;
  }
}
@media (min-width: 461px) and (max-width: 479px) {
  .c-card-header {
    min-height: 304px !important;
  }
}
@media (min-width: 480px) and (max-width: 575px) {
  .c-card-header {
    min-height: 328px !important;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .c-card-header {
    min-height: 349px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .c-card-header {
    min-height: 203px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .c-card-header {
    min-height: 294px !important;
  }
}
@media (min-width: 1200px) and (max-width: 1480px) {
  .c-card-header {
    min-height: 224px !important;
  }
}
/*
@media (min-width: 1481px) {
    .c-card-header {
        min-height: 294px !important;
    }
}*/
.show-card-header {
  min-height: 90px !important;
}

@media (min-width: 380px) and (max-width: 480px) {
  .show-card-header {
    min-height: 119px !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .show-card-header {
    min-height: 159px !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .show-card-header {
    min-height: 228px !important;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .show-card-header {
    min-height: 181px !important;
  }
}
@media (min-width: 1430px) {
  .show-card-header {
    min-height: 294px !important;
  }
  .c-card-header {
    min-height: 294px !important;
  }
}
.show-card-footer {
  min-height: 29px !important;
}

@media (min-width: 380px) and (max-width: 410px) {
  .show-card-footer {
    min-height: 40px !important;
  }
}
@media (min-width: 411px) {
  .show-card-footer {
    min-height: 60px !important;
  }
}
.c-card-no-border {
  border: 0 !important;
}

#package-btns-holder .btn {
  padding: 8px 0px 0px 0px !important;
}

#dvPackage ul {
  font-size: 0.75rem !important;
}

#dvComparePackage p {
  margin-bottom: 0.3rem;
  padding-right: 0;
}

@media (min-width: 992px) {
  #dvComparePackage p {
    margin-top: 0;
    margin-bottom: 1rem;
  }
}
.card-back-dv ul,
.card-back-dv p {
  font-size: 14px;
  line-height: 17px;
}

.dvPackage-dv p {
  margin-bottom: 0;
}

#card-back {
  padding-top: 10px;
}
#card-back .package-heading {
  display: block;
  margin-top: 12px;
  font-size: 1.3rem;
  padding-bottom: 15px;
}
#card-back .logo-container {
  margin-bottom: 0px;
}
#card-back .value-holder {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0px;
  right: 0px;
}
#card-back .value-holder > p {
  text-align: center;
  width: 100%;
}
#card-back .value-holder .btn-small {
  margin: 10px auto auto auto;
  padding: 8px 25px;
  border-radius: 20px;
  text-align: center;
}
#card-back .h3 span {
  float: inherit !important;
}
#card-back .list-info li:before {
  content: inherit;
}

@media (max-width: 576px) {
  .faq-div {
    max-width: 75%;
  }
  .faq-div-mw {
    min-width: 20%;
  }
}
@media (max-width: 467px) {
  .faq-div {
    max-width: 65%;
  }
  .faq-div-mw {
    min-width: 28%;
  }
}
@media (max-width: 330px) {
  .faq-div {
    max-width: 55%;
  }
  .faq-div-mw {
    min-width: 30%;
  }
}
@media screen {
  .filtration-list,
  .smooth-scroll-nav-list,
  .content-nav-list,
  .filter-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: nowrap;
  }
}
.c-card--restricted-overlay {
  padding: 5px !important;
  min-height: 70px !important;
}

.currencycode {
  font-size: 0.8rem;
  float: left;
  margin-right: 0.2rem;
  margin-top: 0.3rem;
}

.unification-panel .card-list-container.cust-grid {
  gap: 0;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.unification-panel .card-list-container.cust-grid > [class*=col-] {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.unification-panel .card-list-container.cust-grid .card {
  width: 100%;
  border-color: #203f57 !important;
}

.purple-card {
  background-color: #1c1933;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.text-light-40 {
  color: rgba(255, 255, 255, 0.4) !important;
}

.gradient-text {
  background: linear-gradient(100deg, #F3196F 0%, #8C4CD4 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 900;
}

.gradient-card {
  background-size: cover;
  background-image: url("/content/images/purple-gradient-bg.jpg");
  display: inline-block;
  margin: 10px;
  border-radius: 10px;
  min-width: 332px;
}

.light-text {
  font-size: 20px;
  color: #fff;
}

.cust-px-8 {
  padding-left: 50px;
  padding-right: 50px;
}

.gradient-card-button {
  height: 50px;
  border-radius: 50px;
  background-color: #fff;
  color: #000;
  font-size: large;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 600;
}
.gradient-card-button:hover {
  text-decoration: none;
  color: #fff;
  background-color: #0095da;
}

.m-0 {
  margin: 0;
}

.font-size-28 {
  font-size: 28px;
}

@media (max-width: 767.98px) {
  .content-image-panel.mobile-align .row > div:first-child {
    order: 2 !important;
  }
  .content-image-panel.mobile-align .row > div:last-child {
    order: 1 !important;
  }
}

.home-cards-grid-module .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: 320px;
  display: flex;
  flex-direction: column;
}
.home-cards-grid-module .card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0px;
}
.home-cards-grid-module .card .card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 10px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  height: auto !important;
  border: none !important;
  border-radius: 0px !important;
}
.home-cards-grid-module .card .card-body h5 {
  color: #fff;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 19px;
}
.home-cards-grid-module .card .card-body .icon {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: auto;
}
.home-cards-grid-module .btn.btn-primary {
  font-family: "Poppins", sans-serif;
  border: none !important;
  border-bottom: solid 3px #0095da !important;
  background: transparent;
  text-align: left !important;
  margin: 0;
  padding: 10px 0 !important;
  font-weight: bold !important;
  font-size: 12px;
  border-radius: 0px;
}
.home-cards-grid-module .row.gx-2 + .home-cards-grid-module .row.gx-2, .home-cards-grid-module .row.gx-2.mt-2 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.home-cards-grid-module .row > * {
  padding-left: 5px;
  padding-right: 5px;
}
.home-cards-grid-module .row.gx-2.col-md-overwrite-padding-03 {
  margin-top: 0px !important;
}

.mobile-align img.lozad {
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.mobile-align img.lozad[data-loaded=true] {
  opacity: 1;
}

.home-cards-grid-module .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  height: 320px;
  display: flex;
  flex-direction: column;
}
.home-cards-grid-module .card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 0px;
}
.home-cards-grid-module .card .card-body {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 10px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  height: auto !important;
  border: none !important;
  border-radius: 0px !important;
}
.home-cards-grid-module .card .card-body h5 {
  color: #fff;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  margin: 0;
  font-size: 19px;
}
.home-cards-grid-module .card .card-body .icon {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 50px;
  height: auto;
}
.home-cards-grid-module .btn.btn-primary {
  font-family: "Poppins", sans-serif;
  border: none !important;
  border-bottom: solid 3px #0095da !important;
  background: transparent;
  text-align: left !important;
  margin: 0;
  padding: 10px 0 !important;
  font-weight: bold !important;
  font-size: 12px;
  border-radius: 0px;
}
.home-cards-grid-module .row.gx-2 + .home-cards-grid-module .row.gx-2, .home-cards-grid-module .row.gx-2.mt-2 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}
.home-cards-grid-module .row > * {
  padding-left: 5px;
  padding-right: 5px;
}
.home-cards-grid-module .row.gx-2.col-md-overwrite-padding-03 {
  margin-top: 0px !important;
}

@media (max-width: 767.98px) {
  .home-cards-grid-module .card {
    height: auto;
  }
  .home-cards-grid-module .row.gx-2 > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 8px;
  }
  .home-cards-grid-module .row.gx-2 > [class*=col-]:last-child {
    margin-bottom: 0;
  }
  .home-cards-grid-module .card img {
    height: auto;
  }
}
.container-overwrite {
  max-width: 1412px;
}

.col-md-overwrite-padding-01 {
  padding-right: 15px !important;
  padding-bottom: 10px !important;
}

.col-md-overwrite-padding-02 {
  padding-left: 7px !important;
}

.col-md-overwrite-padding-04 {
  padding-right: 15px !important;
}

.jarallax {
  position: relative;
  z-index: 0;
  height: 100vh !important;
  min-height: 100vh !important;
}
.jarallax .jarallax-img,
.jarallax picture.jarallax-img img {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.jarallax-overwrite {
  margin-top: 25px;
}
.jarallax-overwrite img {
  object-fit: contain !important;
}
