/* RentGuarantor CSS: breadcrumbs.css (source: src/assets/scss/_breadcrumbs.scss) */
.breadcrumb-pill {
  background-color: #f3f7fd;
  border-radius: 20px;
  padding: 4px 20px;
  gap: 12px !important;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.4375;
  width: 100%;
}
.breadcrumb-pill .breadcrumb-home .icon-home {
  width: 24px;
  height: 24px;
  stroke: #232d5d;
  flex-shrink: 0;
}
.breadcrumb-pill .breadcrumb-home .icon-home path {
  stroke: #232d5d;
}
.breadcrumb-pill .breadcrumb-home:hover .icon-home {
  stroke: #5587e6;
}
.breadcrumb-pill .breadcrumb-home:hover .icon-home path {
  stroke: #5587e6;
}
.breadcrumb-pill .breadcrumb-separator {
  color: rgba(0, 0, 0, 0.8);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.444;
  flex-shrink: 0;
}
.breadcrumb-pill .breadcrumb-link {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.breadcrumb-pill .breadcrumb-link:hover {
  color: #5587e6;
}
.breadcrumb-pill .breadcrumb-current {
  color: rgba(0, 0, 0, 0.8);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .breadcrumb-pill {
    padding: 2px 14px;
    gap: 10px !important;
  }
}