/********************
	Style général du breadcrumb
********************/
.breadcrumb__wrapper {
    margin     : 0;
    background : var(--color-white-default);
}

.breadcrumb {
    border-radius : 0;
    padding       : 1rem 0;
    background    : transparent;
}

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

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

.breadcrumb li {
    color: #004B49;
    font-family: "Lexend Giga";
    font-size: 13px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: -0.78px;
    display : inline;

}

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

.breadcrumb__item--is-active a span {
  font-weight: 500;
}

.breadcrumb__list{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

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

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