/********************
	Style général du breadcrumb
********************/
.breadcrumb__wrapper {
    margin     : 0;
    background : #F6F6F6;
    position: relative;
}

.breadcrumb {
    border-radius : 0;
    padding       : 17px 0;
    background    : transparent;
}

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

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

.breadcrumb li {
    display : inline;
    color   : #959595;
    font-size: 11px;
    line-height: 1;
}

.breadcrumb__item.swiper-slide{
  width: auto;
}

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

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

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

.breadcrumb__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 10%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(246, 246, 246, 1));
  z-index: 1;
}
