/* Full Chain Breadcrumbs — базовый стиль */
.fcb-breadcrumbs ol{
  list-style: none;            /* убираем буллиты */
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
} 

.fcb-breadcrumbs li{
    color: #444444;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;       /* не рвём названия внутри звена */
}

/* разделитель-стрелка между звеньями */

.fcb-breadcrumbs li::marker {
  content: none !important;
  margin: 0;
}


.fcb-breadcrumbs li:not(:last-child)::after{
  content: "→";
  margin: 0 .5rem;
  opacity: .65;
}

/* зеленые ссылки */

.fcb-breadcrumbs a span {
    transition: ease all .3s !important;
}
.fcb-breadcrumbs a {
    color: #89CF76;
    text-decoration: none;
}
.fcb-breadcrumbs a:hover span{ 
    color: #444444;
    text-decoration: none;
}

/* белые ссылки */
.white .fcb-breadcrumbs a {
    color: #ffffff;
    text-decoration: none;
}
.white .fcb-breadcrumbs a:hover span{ 
    color: #444444;
    text-decoration: none;
}