
/*Slider*/
/*Slider*/
/*Slider*/
.story__slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  -webkit-user-select: none;
}

.story__slide {
  position: relative;
}

.story__slide video,
.story__slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  background-color: white;
}

.story__slide.contain video,
.story__slide.contain img {
  object-fit: contain;
}

.story__pagination {
  bottom: unset !important;
  top: 18px !important;
  display: flex;
  padding: 0 34px;
  width: calc(100% - 68px) !important;
}

@media all and (max-width: 1000px){
  .story__pagination {
      top: 13px !important;
      padding: 0 24px;
      width: calc(100% - 48px) !important;
  }
}

.story__pagination .swiper-pagination-bullet {
  flex-grow: 1;
  border-radius: 0vh;
  height: 1.7px;
  margin: 0 2px !important;
  background-color: rgba(140, 140, 140, 0.4);
  /*background-color: rgba(247, 247, 245, 0.4);*/
  opacity: 1;
}

@media all and (max-width: 800px){
  .story__pagination .swiper-pagination-bullet {
    height: 1.7px;
    margin: 0 1px !important;
    border-radius: 100vh;
    background-color: rgba(140, 140, 140, 0.4);
    opacity: 1;
  }
}

.story__pagination .swiper-pagination-bullet .swiper-pagination-progress {
  height: 100%;
  width: 0%;
  border-radius: 0vh;
  background-color: rgba(100, 100, 100, 1);
}

@media all and (max-width: 800px){
  .story__pagination .swiper-pagination-bullet .swiper-pagination-progress {
    border-radius: 100vh;
    background-color: rgba(0, 0, 0, 1);
  }
}

.story__prev, .story__next {
  height: 100%;
  width: 50%;
  top: 0;
  margin-top: 0;
  -webkit-user-select:none;
}

.story__prev::after, .story__next::after {
  content: none;
}

.story__prev {
  left: 0;
}

.story__next {
  right: 0;
}


