/** Shopify CDN: Minification failed

Line 24:5 Cannot use type selector "-prev" directly after nesting selector "&"
Line 41:5 Cannot use type selector "-prev" directly after nesting selector "&"
Line 77:5 Cannot use type selector "-active" directly after nesting selector "&"
Line 81:5 Cannot use type selector "-thumb-active" directly after nesting selector "&"

**/
.gallery-container {
  position: relative;
  width: 730px;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.gallery-main {
  width: 600px;
  height: 300px;
  box-shadow: 0 50px 75px 50px rgba(#1e1e1e, 0.18);
  border: 1px solid #e9e9e9;

  .swiper-button {
    &-prev,
    &-next {
      position: absolute;
      bottom: 0;
      right: 0;
      top: auto;
      left: auto;
      height: 75px;
      width: 40px;
      color: #e9e9e9;
      background: #1e1e1e;

      &::after {
        font-size: 12px;
      }
    }

    &-prev {
      right: 40px;
      border-right: 1px solid #e9e9e9;
    }
  }
}

.gallery-title {
  position: absolute;
  top: 15px;
  right: 15px;
  font-family: "Epilogue", sans-serif;
  font-size: 50px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(#000, 0.3);
  color: #ffffff;

  .swiper-slide-active & {
    animation: slide-in 0.3s ease-in both;
  }
}

.gallery-thumbs {
  order: -1;
  width: 100px;
  height: 300px;
  margin-right: 15px;
  padding-left: 15px;

  .swiper-slide {
    img {
      transition: 0.3s;
    }

    &-active {
      opacity: 0.9;
    }

    &-thumb-active {
      opacity: 1;

      img {
        margin-left: -15px;
      }
    }
  }
}

