body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 14px;
}

.with-sidebar{
  margin-left: 255px;
}

.sidebar{
  width: 255px;
}

.nav-link .collapse-icon {
  transition: transform 0.22s ease;
}

/* roteer als open */
.nav-link[aria-expanded="true"] .collapse-icon {
  transform: rotate(90deg);
}

.submenu{
  margin-left: 23px;
}

/** Breadcrumb modifications */
.breadcrumb{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb-item{
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before{
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin: 0 0.5em;
  background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="m9 18 6-6-6-6"/%3E%3C/svg%3E') no-repeat center;
  background-size: contain;
  vertical-align: middle;
}