.b2-breadcrumbs {
    width: 100%;
    background-color: #f6f6f6;
}

.b2-breadcrumbs .breadcrumbs__list {
    width: 100%;
    padding: 20px 32px;
    margin: 0 auto;
    display: flex;
    max-width: 1264px;
}

.b2-breadcrumbs .breadcrumbs__list .breadcrumbs__item {
    position: relative;
    z-index: 0;
    font-size: 14px;
    line-height: 22px;
    color: #11111170;
    padding-right: 18px;
}

li.breadcrumbs__item.breadcrumbs_home:before {
    content: "/";
    position: absolute;
    width: 10px;
    height: 100%;
    right: 4px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1113;
}

.b2-breadcrumbs .breadcrumbs__list .breadcrumbs__item a {
    color: #111;
}
theme-sticky-header {
  --theme-sticky-header-top: 0;

  position: relative;
  inset-block-start: 0;
  z-index: calc(var(--z-index-sticky) - 1);
  display: block;
}

.theme-sticky-header--sticky {
  display: contents;
}

.theme-sticky-header--sticky theme-sticky-header {
  position: sticky;
  inset-block-start: var(--theme-sticky-header-top);
  animation: animation-header-sticky 0.26s ease-out forwards;
}

.theme-sticky-header--sticky-collapse theme-sticky-header {
  animation-name: animation-header-sticky-collapse;
}

@keyframes animation-header-sticky {
  0% {
    transform: translateY(calc(-100% + var(--theme-sticky-header-top) * -1));
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes animation-header-sticky-collapse {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(calc(-100% + var(--theme-sticky-header-top) * -1));
  }
}