.mob-hide {
  display: block;

  @media (max-width: 768px) {
    display: none;
  }
}


.mob-visible {
  display: none;

  @media (max-width: 768px) {
    display: block;
  }
}

.masterPlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
  z-index: 9;
}

.masterImage {
  width: 100%;
  position: relative;
  line-height: 0;
  border-radius: 8px;
  overflow: hidden;
}

.content {
  display: none;

  &.active {
    display: block;
  }
}

/* swiper css */
.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none;
}

.prev,
.next {
  cursor: pointer;
  line-height: 0;
}

.prev img {
  transform: rotate(180deg);
}

/* swiper css end*/

.container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;

  @media (max-width: 768px) {

    max-width: 100%;
    width: 100%;
    padding: 0 16px;

  }
}

.popupBody {
  max-height: calc(100vh - 100px);
  max-width: calc(100vw - 100px);
  height: 100%;
  width: 100%;
  margin: 0 auto;
  position: relative;
  top: 8px;

  @media (max-width: 767px) {

    max-height: calc(100dvh - 50px); 
    max-width: calc(100vw - 50px);
    height: auto;
    min-height: 350px;

    .iframeHero {
      min-height: 350px;
    }

  }
}


/* Hide scrollbar for all browsers */

/* Chrome, Safari, Edge */
::-webkit-scrollbar {
  display: none;
}

/* Firefox */
* {
  scrollbar-width: none;
}

/* IE/Edge legacy */
* {
  -ms-overflow-style: none;
}

@media (max-width: 767px) {
  html {
    zoom: 85%;
  }
}