/** Shopify CDN: Minification failed

Line 120:12 Expected identifier but found whitespace
Line 120:14 Unexpected "{"
Line 120:23 Expected ":"
Line 120:48 Expected ":"

**/
.collection-list {
  margin-top: 0;
  margin-bottom: 0;
}

.collection-list-title {
  margin: 0;
}

@media screen and (max-width: 749px) {
  .collection-list:not(.slider) {
    padding-left: 0;
    padding-right: 0;
  }

  .section-collection-list .page-width {
    padding-left: 0;
    padding-right: 0;
  }

  .section-collection-list .collection-list:not(.slider) {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.collection-list__item:only-child {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 749px) {
  .slider.collection-list--1-items {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider.collection-list--1-items,
  .slider.collection-list--2-items,
  .slider.collection-list--3-items,
  .slider.collection-list--4-items {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 750px) {
  .collection-list__item a:hover {
    box-shadow: none;
  }
}

@media screen and (max-width: 989px) {
  .collection-list.slider .collection-list__item {
    max-width: 100%;
  }
}

.collection-list-view-all {
  margin-top: 2rem;
}

.collection-card-wrapper .card__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.collection-card-wrapper .card__media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.collection-card-wrapper .card__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: background-color 0.3s ease;
}

.collection-card-wrapper .card:hover .card__overlay {
  background: rgba(0, 0, 0, 0.3);
}

.collection-card-wrapper .card__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
  padding: 20px;
}

.collection-card-wrapper .card__heading {
  margin: 0;
  color: #ffffff;
  text-align: center;
  font-size: {{ section.settings.title_size }}px;
  font-weight: 500;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.collection-card-wrapper .card__heading a {
  color: inherit;
  text-decoration: none;
}

.collection-card-wrapper .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-card-wrapper .card__image {
  transition: transform 0.8s ease;
}

.collection-card-wrapper .card:hover .card__image {
  transform: scale(1.05);
}
