/** Shopify CDN: Minification failed

Line 59:0 Unexpected "{"
Line 59:1 Expected identifier but found "%"
Line 61:27 Expected ")" to end URL token
Line 68:0 Unexpected "{"
Line 68:1 Expected identifier but found "%"
Line 70:0 Unexpected "{"
Line 70:1 Expected identifier but found "%"
Line 73:29 Expected ")" to end URL token
Line 81:0 Unexpected "{"
Line 81:1 Expected identifier but found "%"

**/
.breadcrumbs {
  padding: 15px 0;
  margin-bottom: 20px;
  font-size: 14px;
}
.breadcrumbs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  margin-right: -15px !important;
}
.breadcrumbs__link {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: #000;
  text-decoration: underline;
}
.breadcrumbs__link--active {
  color: #000;
  font-weight: 600;
  pointer-events: none;
}
.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #ccc;
  font-weight: normal;
}

h2.ff-heading.fs-heading-2-base {
  text-align: left;
}

{% if collection.metafields.custom.banner_escritorio.value %}
#banner-collection {
  background-image: url({{ collection.metafields.custom.banner_escritorio.value | img_url: 'master' }});
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  width: 100%;
}
{% endif %}

{% if collection.metafields.custom.banner_movil.value %}
@media (max-width: 600px) {
  #banner-collection {
    background-image: url({{ collection.metafields.custom.banner_movil.value | img_url: 'master' }});
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 400px;
    width: 100%;
  }
}
{% endif %}

.boost-pfs-filter-collection-header-wrapper.boost-pfs-filter-collection-image {
  display: none;
}
