/** Shopify CDN: Minification failed

Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:24 Expected ":"
Line 17:56 Expected ":"
Line 18:16 Expected identifier but found whitespace
Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 18:62 Expected ":"
Line 23:15 Expected identifier but found whitespace
Line 23:17 Unexpected "{"
... and 6 more hidden warnings

**/
.collection-banner {
  margin-top: {{ section.settings.margin_top_mobile }}px;
  margin-bottom: {{ section.settings.margin_bottom_mobile }}px;
}

@media screen and (min-width: 750px) {
  .collection-banner {
    margin-top: {{ section.settings.margin_top_desktop }}px;
    margin-bottom: {{ section.settings.margin_bottom_desktop }}px;
  }
}

.collection-banner {
  position: relative;
  text-align: center;
  color: rgb(var(--color-foreground));
  overflow: hidden;
}

.collection-banner__bg img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.collection-banner__content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: rgb(var(--color-foreground));
}

.collection-banner__title {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 40px;
  color: rgb(var(--color-foreground));
  line-height: 36px;
  text-transform: uppercase;
}

.collection-banner .breadcrumbs__link {
  color: rgb(var(--color-foreground));
  text-decoration:none;
}