/* Holyhead Modern Breadcrumbs v1.0.0 */
.hmb-breadcrumb {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 18px 0 26px !important;
  padding: 12px 16px !important;
  background: #ffffff !important;
  border: 1px solid #e7edf2 !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 18px rgba(18, 52, 77, .06) !important;
  color: #4c5965 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
}

.hmb-breadcrumb a {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 34px !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
  color: #177fa8 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  transition: background-color .18s ease, color .18s ease, transform .18s ease !important;
}

.hmb-breadcrumb a:hover,
.hmb-breadcrumb a:focus-visible {
  background: #edf8fc !important;
  color: #0f6889 !important;
  transform: translateY(-1px) !important;
  outline: none !important;
}

.hmb-breadcrumb .hmb-current {
  color: #263746 !important;
  font-weight: 650 !important;
}

.hmb-breadcrumb .hmb-separator {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #9aa8b3 !important;
  font-size: 0 !important;
  width: 18px !important;
  height: 18px !important;
}

.hmb-breadcrumb .hmb-separator::before {
  content: "" !important;
  width: 7px !important;
  height: 7px !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  transform: rotate(45deg) !important;
}

@media (max-width: 700px) {
  .hmb-breadcrumb {
    gap: 5px !important;
    margin: 12px 0 20px !important;
    padding: 10px 12px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }

  .hmb-breadcrumb a {
    min-height: 32px !important;
    padding: 5px 8px !important;
  }
}
