/** Shopify CDN: Minification failed

Line 13:19 Expected identifier but found whitespace
Line 13:21 Unexpected "{"
Line 13:30 Expected ":"

**/


/* CSS from section stylesheet tags */
.collection-circle-slider {
  padding: 20px 0;
  background-color: {{ section.settings.background_color }};
}

.collection-circle-slider__wrapper {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  /* scroll-snap-type: x mandatory; */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  justify-content: center; /* default: center for desktop */
}

.collection-circle-slider__item {
  flex: 0 0 auto;
  text-align: center;
  scroll-snap-align: start;
}

.collection-circle-slider__circle {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--border-color, #5c1f1f);
  padding: var(--circle-padding, 5px);
  overflow: hidden;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.collection-circle-slider__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.collection-circle-slider__title {
  font-size: 14px;
  color: #555;
}

@media screen and (max-width: 768px) {
  .collection-circle-slider__wrapper {
    justify-content: flex-start;
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .collection-circle-slider__wrapper::-webkit-scrollbar {
    display: none;
  }

  .collection-circle-slider__circle {
    width: 75px;
    height: 75px;
  }

  .hide-on-mobile {
    display: none !important;
  }
}


/* DESKTOP */
@media screen and (min-width: 769px) {
  .hide-on-desktop {
    display: none !important;
  }
}