/** Shopify CDN: Minification failed

Line 35:2 Unexpected "{"
Line 35:3 Expected identifier but found "%"
Line 44:2 Unexpected "{"
Line 44:3 Expected identifier but found "%"

**/
@media screen and (min-width: 1200px){
  .breadcrumbs.page-width{
    max-width: 100%;
    padding-left: 8rem;
    padding-right: 8rem;
  }
}
.breadcrumbs{
  padding-top: 15px;
  padding-bottom: 35px;
  letter-spacing: 0px;
  color: #777777;
  text-transform: capitalize;
  font-size: 12px;
  line-height: 15px;
}
a.breadcrumbs__link {
  color: #777777;
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .breadcrumbs {
    text-align: center;
    margin: 1em 10px;
  }
}
  {% if template == 'product' %}
    @media screen and (max-width: 768px){
      .breadcrumbs {
        text-align: left;
        margin: 0;
        padding-left: 30px;
        padding-right: 30px;
      }
    }
  {% endif %}
  .breadcrumbs__list {
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  .breadcrumbs__item {
    display: inline-block;
  }
  li.breadcrumbs__item {
    font-size: calc(var(--base-text-font-size)*0.9);
  }
  .breadcrumbs__item:not(:last-child):after {
    border-style: solid;
    border-width: 0 0.1em 0 0;
    content: '';
    display: inline-block;
    height: 0.85em;
    margin: 0 0.6em 0 0.4em;
    position: relative;
    bottom: 0.1em;
    transform: rotate(15deg);
    vertical-align: middle;
  }
   .breadcrumbs__item:hover,
  .breadcrumbs__link:hover {
    text-decoration: underline;
  }
  .breadcrumbs__link[aria-current="page"] {
    color: inherit;
    font-weight: normal;
    text-decoration: none;
  }
  .breadcrumbs__link[aria-current="page"]:hover,
  .breadcrumbs__link[aria-current="page"]:focus {
    text-decoration: underline;
  }