.breadcrumb__wrapper {
  --breadcrumb-background-color: var(--white);
  background-color: var(--breadcrumb-background-color);
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper {
    background-color: var(--white);
    padding: 1.5rem 1.6rem;
  }
}
.breadcrumb__wrapper--color-gray {
  --breadcrumb-background-color: #f0f1f1;
}
.breadcrumb__wrapper--color-orange {
  --breadcrumb-background-color: #FAA71A;
}
.breadcrumb__wrapper--color-blue {
  --breadcrumb-background-color: #003764;
}
.breadcrumb__wrapper--color-green {
  --breadcrumb-background-color: #438489;
}
.breadcrumb__wrapper--color-blue,
.breadcrumb__wrapper--color-blue .bread.bread .separator,
.breadcrumb__wrapper--color-blue .bread.bread li a, .breadcrumb__wrapper--color-green,
.breadcrumb__wrapper--color-green .bread.bread .separator,
.breadcrumb__wrapper--color-green .bread.bread li a {
  color: var(--white);
  fill: var(--white);
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .bread, .breadcrumb__wrapper--color-gray .bread {
    background: var(--light-bg);
  }
  .breadcrumb__wrapper .bread::after, .breadcrumb__wrapper--color-gray .bread::after {
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, var(--light-bg) 100%);
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper--color-orange .bread, .breadcrumb__wrapper--color-blue .bread, .breadcrumb__wrapper--color-green .bread {
    background: var(--breadcrumb-background-color);
  }
  .breadcrumb__wrapper--color-orange .bread::after, .breadcrumb__wrapper--color-blue .bread::after, .breadcrumb__wrapper--color-green .bread::after {
    background: linear-gradient(to right, lch(from var(--breadcrumb-background-color) l c h/0) 0%, var(--breadcrumb-background-color) 100%);
  }
}
.breadcrumb__wrapper .bread {
  margin: 0;
  padding: 5.17rem 1.5rem 0.5rem;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 1.5rem;
  overflow: hidden;
  list-style: none;
  position: relative;
}
@media screen and (max-width: 767px) {
  .breadcrumb__wrapper .bread {
    padding: 1.5rem 1rem;
    border-radius: 1rem;
    top: 0;
    justify-content: start;
  }
  .breadcrumb__wrapper .bread::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 10rem;
    height: 100%;
    pointer-events: none;
  }
}
.breadcrumb__wrapper .bread li {
  line-height: 1.4;
  white-space: nowrap;
  font-family: Quicksand, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
}
.breadcrumb__wrapper .bread li::before {
  display: none;
}
.breadcrumb__wrapper .bread li .first {
  display: block;
  border-bottom: 1px solid transparent;
}
.breadcrumb__wrapper .bread li a {
  color: var(--host-text);
  font-family: Quicksand, sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  overflow: visible;
  white-space: nowrap;
}
.breadcrumb__wrapper .bread li:nth-last-child(2):not(.separator) {
  font-weight: 700;
}
.breadcrumb__wrapper .bread .separator {
  color: var(--host-text);
  font-family: Quicksand, sans-serif;
  font-weight: 500;
}
.breadcrumb__wrapper .bread .separator:last-of-type {
  display: none;
}
/*# sourceMappingURL=breadcrumb.css.map */
