/********************
	Style général du breadcrumb
********************/
.breadcrumb__wrapper {
    margin     : 0;
}

.breadcrumb {
    border-radius : 0;
    padding       : 1rem 0 20px;
    background    : transparent;
    font-family: Urbanist,'sans-serif';
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.12px;
}

.breadcrumb[data-depth="1"] {
    display : none;
}

.breadcrumb ol {
    padding-left  : 0;
    margin-bottom : 0;
}

.breadcrumb li {
    display : inline;
    color: var(--color-primary);;
}

.breadcrumb li:not(:first-child):before {
    content : ">";
    color   : currentColor;
    margin  : .3125rem;
}

.breadcrumb li a {
    text-decoration : none;
    color           : currentColor;
    transition      : all 0.3s;
}

.breadcrumb li a:hover {
    color : var(--link-color-on-hover);
}


@media (max-width: 767px) {
  .breadcrumb {
    font-size: 15px;
  }
}
