.slide_gallery_layout {
  max-height: 100vh;
  height: 100%;
}
.slide_gallery_layout .swiper-slide {
  transition: opacity 300ms;
  /*
  &.swiper-slide-prev {
      opacity: 0 !important;
  }*/
}
.slide_gallery_layout .swiper-slide:first-child {
  opacity: 1 !important;
}
.slide_gallery_layout .swiper-slide.slide_prev_active {
  opacity: 1 !important;
}
.slide_gallery_layout .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.slide_gallery_layout + .slide_gallery_layout_arrows {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}
.slide_gallery_layout + .slide_gallery_layout_arrows > div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination {
  margin: 0;
  display: flex;
  align-items: center;
  padding: 6px 8px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet {
  display: block;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  padding: 13px 25px;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  z-index: 1;
  position: relative;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  filter: url(#glass-distortion);
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet:hover:before {
  opacity: 1;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet:hover:after {
  opacity: 1;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: auto;
  border-radius: 50px;
  background: #fff;
  opacity: 1;
  color: #272a35;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:before {
  opacity: 0;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:hover:after {
  opacity: 0;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination:after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: 50px;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  filter: url(#lg-dist);
  overflow: hidden;
  isolation: isolate;
  transition: all 0.3s ease-in-out;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination:hover {
  padding: 9px 11px;
  /*&:before {
      transform: scale(1.05);
  }
  &:after {
      transform: scale(1.05);
  }*/
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_prev {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
}
.slide_gallery_layout + .slide_gallery_layout_arrows .gallery_next {
  width: 50px;
  height: 50px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f1f1f1;
}

.gallery_layout {
  position: relative;
}

@media screen and (max-width: 640px) {
  .slide_gallery_layout + .slide_gallery_layout_arrows .gallery_layout_pagination .swiper-pagination-bullet {
    padding: 6px 8px;
    font-size: 0.75rem;
  }
  .slide_gallery_layout {
    height: 360px;
  }
  .slide_gallery_layout + .slide_gallery_layout_arrows {
    bottom: 20px;
    width: calc(100% - 24px);
  }
}
