
@media screen and (max-width: 992px) {
  .has-breadcrumbs {
    position: relative;
  }
  .has-breadcrumbs .component-breadcrumbs li:not(:nth-last-child(2)) {
    display: none;
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) {
    flex-flow: row-reverse;
    justify-content: flex-end;
    background: var(--color-web-white);
    padding-left: 12px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-box-shadow: 0 3px 6px var(--color-shadow);
    -moz-box-shadow: 0 3px 6px var(--color-shadow);
    -ms-box-shadow: 0 3px 6px var(--color-shadow);
    -o-box-shadow: 0 3px 6px var(--color-shadow);
    box-shadow: 0 3px 6px var(--color-shadow);
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) a {
    color: var(--color-corporate-dark);
    padding-top: 3px;
    padding-bottom: 4px;
    padding-left: 0;
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) svg  {
    width: 4px;
    height: 8px;
    -webkit-transition: transform: rotate(180deg);
    -moz-transition: transform: rotate(180deg);
    -ms-transition: transform: rotate(180deg);
    -o-transition: transform: rotate(180deg);
    transform: rotate(180deg);
  }
  .has-breadcrumbs .component-breadcrumbs li:nth-last-child(2) svg path {
    fill: var(--color-corporate-dark);
  }
}

div.component-breadcrumbs ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-flow: wrap;
  align-items: center;
}
div.component-breadcrumbs li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
div.component-breadcrumbs a {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 3px;
  padding-right: 3px;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.body-container--pro div.component-breadcrumbs ul a:focus,
.body-container--pro div.component-breadcrumbs ul li:last-child a {
  background: transparent;
  border-bottom: 2px solid var(--color-pro-orange);
  border-radius: 2px;
}
.body-container--particulier div.component-breadcrumbs ul a:focus,
.body-container--particulier div.component-breadcrumbs ul li:last-child a {
  background: transparent;
  border-bottom: 2px solid var(--color-web-pink);
  border-radius: 2px;
}

@media (hover: hover) {
  div.component-breadcrumbs li:not(:last-child) a:hover {
    text-decoration: underline;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
  }
}

div.component-breadcrumbs svg {
  height: 10px;
  width: 10px;
  margin-left: 5px;
  margin-right: 5px;
  z-index: 1;
}
div.component-breadcrumbs svg path {
  -webkit-transition: fill .2s ease;
  -moz-transition: fill .2s ease;
  -ms-transition: fill .2s ease;
  -o-transition: fill .2s ease;
  transition: fill .2s ease;
}

/* Style Default */
div.component-breadcrumbs ul.default svg path {
  fill: var(--color-corporate-dark);
}
div.component-breadcrumbs ul.default a {
  color: var(--color-corporate-dark);
}
div.component-breadcrumbs ul.default a:focus,
div.component-breadcrumbs ul.default li:last-child a {
  color: var(--color-corporate-dark);
  text-decoration: none;
}

/* Style Light */
div.component-breadcrumbs ul.light svg path {
  fill: var(--color-web-white);
}
div.component-breadcrumbs ul.light li a {
  color: var(--color-web-white);
}
div.component-breadcrumbs ul.light a:focus,
div.component-breadcrumbs ul.light li:last-child a {
  color: var(--color-web-white);
  text-decoration: none;
}

.ASSET-right.lp-devis-asset {
  transform: rotate(90deg);
}