/** Shopify CDN: Minification failed

Line 42:47 Unexpected ";"

**/
.product-finder__container {
  width: 100vw;
  margin: 0;
  position: relative;
  left: -15px;
}

.product-finder {
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
}

.product-finder.slick-initialized {
  opacity: 1;
  pointer-events: all;
}

.product-finder.content-slider .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}

.finder__item {
  position: relative;
  background-color: #f6f6f6;
  border-radius: 4px;
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: flex !important;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
}

.finder__item.hidden {display: none !important};

.finder__item:has(input:checked) {
  border: 1.5px solid #000;
}

.finder__item input {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  opacity: 0;
  width: 100%;
  height: 100%;
}

.finder__item.active {
  border: 1.5px solid #000;
}

.finder__item img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.product-finder .slick-list {
  padding: 0 15px 0;
}

.product-finder .slick-track {
  display: flex;
  margin-left: 0;
  height: 100%;
}

.product-finder .slick-slide {
  margin-right: 6px;
  height: auto;
}
.product-finder .slick-slide > div {
  height: 100%;
}

.finder__item__info {
  padding: 1.5rem;
  flex: 1;
}
.finder__item__info h3 {
  margin: 0 0 6px;
  line-height: 1;
  font-size: 16px;
}
.finder__item__info p {
  display: block;
  color: #595959;
  margin: 0;
  font-size: 12px;
  line-height: 1.25;
}

.product-finder__container {
  /* margin-bottom: 24px; */
}
.finder_title{
  font-size: 18px;
  padding: 16px 16px 8px;
  text-transform: uppercase;
}
@media (min-width: 750px) {
  .product-finder__container {
    width: auto;
    max-width: none;
    /* margin: 0 0 25px; */
    position: static;
    left: 0;
  }
  
  .product-finder .slick-list {
    padding: 0;
  }
  
  .product-finder .slick-slide:first-child {
    margin-left: 0;
  }
  .finder__item {
    border-radius: 6px;
  }
  .finder__item__info h3 {
    font-size: 18px;
  }
  .finder_title{
    padding: 16px 0 8px;
  }
}