/** Shopify CDN: Minification failed

Line 109:0 Expected "}" to go with "{"

**/


.product--thumbnail_slider .thumbnail-slider {
  position: absolute;
  left: 3rem;
  top: 0;
  height: 100vh;
  z-index: 1;
  justify-content: space-around;

}

.caption {
  display: none;
}

.thumbnail-slider .thumbnail-list.slider--tablet-up {
    flex-direction: column;
  position: absolute;
   height: 35%;
  overflow-y: auto;
  cursor: row-resize;
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  justify-content: center;
}

.product--thumbnail_slider .slider-mobile-gutter .slider-button {
  display: none;
  color: black;
}

.product--thumbnail_slider .slider-mobile-gutter .slider-button:first-child {
  border-top: 1px solid black;
}

.product--thumbnail_slider .slider-mobile-gutter .slider-button:last-child {
  border-bottom: 1px solid black;
}



/* Styles for the thumbnail circles */
.thumbnail-circle-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 10px; /* Adjust the size as needed */
  height: 10px;
}

.thumbnail-circle {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.5px solid black; /* White stroke */
  background-color: transparent; /* Empty fill for inactive */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.thumbnail-circle.is-active {

  background-color: black; /* Black fill for active */
  
}

.thumbnail-circle-button:focus .thumbnail-circle,
.thumbnail-circle-button:hover .thumbnail-circle {
  border-color: black; /* Change stroke color on hover/focus */
  background-color: #919191;
}

/* Adjust the spacing between thumbnails */
.thumbnail-list__item {
  margin: 0 5px; /* Adjust spacing between circles */
}

/* Ensure consistent spacing on mobile */
.slider.slider--mobile .thumbnail-list__item {
  margin: 0 5px;
}

/* Hide the default scrollbar for the slider */
.slider {
  scrollbar-width: none; /* Firefox */
}

.slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */


  @media screen and (max-width: 750px) {
            .product--thumbnail_slider .slider-mobile-gutter .slider-buttons {
            display: none;
            }

.thumbnail-slider .thumbnail-list.slider--tablet-up {
          display: flex;
          flex-direction: row !important;
        }
            }
