body {
  margin: 0px;
  max-width: 100vw;
  width: 100vw;
  margin: auto;
  height: 100vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  background-color: #000000;
  overflow-y: auto;
}

body h1 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: white;
  font-family: Poppins;
  margin: 30px 20px;
}

.fake-content {
  width: 320px;
  height: 427px;
  top: -178px;
  margin: auto;

  background: #24242d;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}

.viewport {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding: 15px;
  margin: auto;
  width: 360px;
  height: 800px;
  background-color: #202029;
  overflow: auto;
}

@media (max-width: 410px) {
  .viewport {
    width: 100%;
    border-radius: 0px;
    padding: 0px;
/*     overflow-x: hidden; */
  }
  body > div.carousel-section > div > div.carousel-cards-container > div > div:nth-child(1){
    margin-left: 0px;
    width: 90vw;
  }
}

.lightbox {
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transition: transform 0.33s, opacity 0.33s, visibility 0.33s;
}

.lightbox.closed {
  transform: scale3d(0.5, 0.5, 1) !important;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  /* Dismissal has faster duration. */
  transition: transform 0.2s, opacity 0.2s, visibility 0.2s;
  pointer-events: none;
}

/* No transitions when dragging, it creates a laggy effect. */
.dragging {
  transition: none;
}

body:before {
  content: "";
  z-index: 2;
    pointer-events: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s, visibility 0.2s;
  visibility: hidden;
}

body.lightbox-open:before {
  opacity: 1;
  visibility: visible;
}

amp-story-player.my-player {
/*   width: 360px;
  height: 600px;
  margin: 70px auto; */
  width: 100%;
  height: 100%;
  
}

::-webkit-scrollbar {
  display: none;
}

.page-indicators > * {
  width: 8px;
  height: 8px;
  margin: 10px 5px;
  border-radius: 100px;
  background-color: white;
}

.page-indicator-right {
  opacity: 0.3;
}

.page-indicators {
  width: 100%;
  justify-content: center;
  margin: 0;
  display: flex;
  position: absolute;
}

body {
  margin: 0px;
  max-width: 100vw;
  margin: auto;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  scroll-snap-align: start;
}


@media only screen and (min-width: 600px) {
  
  
  
  .custom-nav {
    position: absolute;
    top: 50%;
    margin-top: -22px;
    margin-top: -22px;
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    left: 50%;
    width: 95vw;
    max-width: 98%;
    transform: translate(-50%);
    z-index: 9999999;
    justify-content: space-between;
    flex-wrap: wrap;
}
  
  .cust-swiper-button-next, .cust-swiper-button-prev {
    position: absolute;
    
    width: 40px;
    height: 40px;
    
    
    cursor: pointer;
    
    background-position: center;
    background-repeat: no-repeat;
    background-color: #353535;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
    border-radius: 100%;
  }
  
  .cust-swiper-button-next{
    
    right: 0;
    
  }
  
  .cust-swiper-button-prev:hover {
    background-color: #07ee07;
  }
  
  .cust-swiper-button-prev{
    
    left: 0;
  }
  
  .cust-swiper-button-next:hover {
    background-color: #07ee07;
  }
  
  }
  
  @media only screen and (max-width: 480px) {
  
    .custom-nav{
      display: none;
    }
  
    .cust-swiper-button-next, .cust-swiper-button-prev {
      position: relative;
      
      width: 40px;
      height: 40px;
      
      
      cursor: pointer;
      
      background-position: center;
      background-repeat: no-repeat;
      background-color: rgba(0,0,0,0.7);
      display: flex;
      justify-content: center;
      flex-wrap: nowrap;
      flex-direction: row;
      align-content: center;
      align-items: center;
      border-radius: 100%;
    }
  
    .cust-swiper-button-prev {
      position: relative;
      
      transform:rotate(90deg);
    }
  
    .cust-swiper-button-next {
      position: relative;
      
      transform:rotate(90deg);
    }
  
    .cust-swiper-button-next:hover {
      background-color: #07ee07;
      
    }
  
    
  
  
  
    .cust-swiper-button-prev:hover {
      background-color: #07ee07;
    }
  
    #custNext > img, #custPrev > img {
      opacity: 0.5
    }
  
  }