.breadcrumb,
.breadcrumb a {
  height: 33px;
  display: inline-block;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  border-radius: 3px;
  border-width: 1px;
  border-style: solid;
  overflow: hidden;
}

.breadcrumb a {
  text-rendering: optimizeLegibility;
  line-height: 33px;
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  padding: 0 10px 0 20px;
  position: relative;
}

.breadcrumb a:first-child {
  padding-left: 16px;
}

.breadcrumb a:last-child {
  padding-right: 16px;
  color: #fff;
  pointer-events: none;
  cursor: default;
}

.breadcrumb a:after,
.breadcrumb a:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  /* make left half the height */
  border-left: 10px solid transparent;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 100%;
  z-index: 2;
}

.breadcrumb a:before {
  margin-left: 1px;
  z-index: 1;
}


.breadcrumb a:last-child:after,
.breadcrumb a:last-child:before {
  border: none;
}

.breadcrumb input[type=text] {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  text-indent: 24px;
  padding: 0 16px;
  height: 33px;
  width: 10px;
  outline: 1px solid transparent;
  background-origin: content-box;
  background-position: left 50%;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  transition-property: all;
  transition-duration: .613s;
  transition-timing-function: cubic-bezier(0.455, 0.030, 0.515, 0.955);
}

.breadcrumb input[type=search]:hover,
.breadcrumb input[type=search]:focus {
  width: 100px;
}

/* DARK COLORS */
html[data-bs-theme="dark"] .breadcrumb {
  border-color: #2E3031;
}

html[data-bs-theme="dark"] .breadcrumb a {
  color: #c6c6c6;
  background-color: #595B5B;
  text-shadow: 0 -1px rgba(0, 0, 0, .7);
  box-shadow: inset 0 1px 0 #727373;
}

html[data-bs-theme="dark"] .breadcrumb a:after {
  border-left-color: #595B5B;
  border-bottom-color: #595B5B;
}

html[data-bs-theme="dark"] .breadcrumb a:before {
  border-left-color: #2E3031;
  border-bottom-color: #2E3031;
}

html[data-bs-theme="dark"] .breadcrumb a:hover {
  background: #646666;
}

html[data-bs-theme="dark"] .breadcrumb a:hover:after {
  border-left-color: #646666;
  border-bottom-color: #646666;
}

html[data-bs-theme="dark"] .breadcrumb a:active:before {
  border-left-color: #404141;
  border-bottom-color: #404141;
}

html[data-bs-theme="dark"] .breadcrumb a:last-child {
  background-color: #404141;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
}

/* LIGHT COLORS */
html[data-bs-theme="light"] .breadcrumb {
  border-color: #9C9E9E;
}

html[data-bs-theme="light"] .breadcrumb a {
  color: #454545;
  background-color: #e5e9e9;
  text-shadow: 0 -1px rgba(255, 255, 255, .7);
  box-shadow: inset 0 1px 0 #fff;
}

html[data-bs-theme="light"] .breadcrumb a:after {
  border-left-color: #e5e9e9;
  border-bottom-color: #e5e9e9;
}

html[data-bs-theme="light"] .breadcrumb a:before {
  border-left-color: #9C9E9E;
  border-bottom-color: #9C9E9E;
}

html[data-bs-theme="light"] .breadcrumb a:hover {
  background: #EDF1F1;
}

html[data-bs-theme="light"] .breadcrumb a:hover:after {
  border-left-color: #EDF1F1;
  border-bottom-color: #EDF1F1;
}

html[data-bs-theme="light"] .breadcrumb a:last-child {
  background-color: #d3d7d7;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
}