.breadcrumbs {
  padding: 24px 0;
  overflow: hidden;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -12px;
}
@media (max-width: 992px) {
  .breadcrumbs__list {
    padding-bottom: 7px;
  }
}
.breadcrumbs__item {
  position: relative;
  margin: 0px 12px;
  font-weight: 300;
  font-size: 12px;
  line-height: 140%;
  color: rgba(21, 24, 31, 0.4);
}
.breadcrumbs__item a {
  color: #15181f;
}
.breadcrumbs__item::after {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  display: block;
  width: 8px;
  height: 8px;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  background-image: url('data:image/svg+xml,%3Csvg width=%274%27 height=%277%27 viewBox=%270 0 4 7%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath d=%27M1.33301 1.5L3.09731 3.2643C3.22748 3.39447 3.22748 3.60553 3.09731 3.7357L1.33301 5.5%27 stroke=%27%2315181F%27 stroke-width=%271.2%27 stroke-linecap=%27round%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-position: center;
  content: '';
}
.breadcrumbs__item:last-child::after {
  content: none;
}
