@charset "UTF-8";
.breadcrumbs {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .breadcrumbs {
    margin-top: 34px;
    margin-bottom: 60px;
  }
}
.breadcrumbs__back-link {
  display: none;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  width: 19px;
  height: 11px;
  margin-right: 4px;
  color: #3f4041;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.breadcrumbs__back-link:hover {
  color: #ff7100;
}
.breadcrumbs__back-link-icon {
  display: block;
  width: 100%;
  height: 100%;
}
.breadcrumbs__list-box {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.breadcrumbs__list-box::before, .breadcrumbs__list-box::after {
  position: absolute;
  z-index: 1;
  top: 0;
  width: 50px;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  content: "";
  transition: opacity 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
}
.breadcrumbs__list-box::before {
  left: 0;
  background-image: linear-gradient(to right, #fff, transparent);
}
.breadcrumbs__list-box::after {
  right: 0;
  background-image: linear-gradient(to left, #fff, transparent);
}
.breadcrumbs--has-right-overflow .breadcrumbs__list-box::after {
  opacity: 1;
}
.breadcrumbs--has-left-overflow .breadcrumbs__list-box::before {
  opacity: 1;
}
.breadcrumbs__list {
  position: relative;
  z-index: 0;
  display: flex;
  list-style-type: none;
  font-size: 12px;
  line-height: 1.24;
  color: #959595;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.breadcrumbs__list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .breadcrumbs__list {
    font-size: 13px;
  }
}
.breadcrumbs__item {
  display: flex;
}
.breadcrumbs__link {
  color: inherit;
  transition: color 0.3s cubic-bezier(0.3, 0.1, 0.26, 1);
  white-space: nowrap;
}
.breadcrumbs__link:hover {
  color: #ff7100;
}
.breadcrumbs__current {
  color: #c6c6c6;
  white-space: nowrap;
}
.breadcrumbs__devider {
  margin: 0 12px;
}
.breadcrumbs__devider::before {
  content: "—";
}