@charset "utf-8";

.breadcrumb {
  position: relative;
  z-index: 5;
  padding: 16px 0;
  overflow: auto;
  background-color: #252f39;
}

.breadcrumb_container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  padding: 0 32px;
  margin: 0 auto;
}

.breadcrumb_list {
  display: flex;
  align-items: center;
  padding-right: 20px;
  margin-right: -20px;
}

.breadcrumb_item {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.breadcrumb_item::before {
  display: block;
  content: "";
}

.breadcrumb_item.home::before {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background: transparent url("../images/icon-home.svg") no-repeat top center /
    contain;
  transform: translateY(1px);
}

.breadcrumb_item:not(:first-child) {
  margin-left: 14px;
}

.breadcrumb_item:not(:first-child)::before {
  width: 6px;
  height: 8px;
  margin-right: 14px;
  background: transparent url("../images/icon-arrow-right.svg") no-repeat top
    center / contain;
  transform: translateY(1px);
}

.breadcrumb_link {
  color: inherit;
}

@media screen and (max-width: 760px) {
  .breadcrumb_container {
    padding: 0 24px;
  }
}
