/** HEADINGS **/
/** LABELS **/
/** SPANS **/
/** PARAGRAPHS **/
/** CODE/CONSOLE **/
@property --rotation {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@keyframes rotate-border {
  to {
    --rotation: 360deg;
  }
}
:host {
  /**
   * @prop --breadcrumb-item-default-color: Breadcrumb's item default color.
   * @prop --breadcrumb-item-hover-color: Breadcrumb's item hover color.
   * @prop --breadcrumb-item-active-color: Breadcrumb's item active color.
   */
  --breadcrumb-item-default-color: var(--kv-neutral-4, #bebebe);
  --breadcrumb-item-hover-color: var(--kv-neutral-3, #ddd);
  --breadcrumb-item-active-color: var(--kv-neutral-2, #e5e5e5);
}

.breadcrumb-item {
  font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial");
  font-size: 14px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
  user-select: none;
  color: var(--breadcrumb-item-default-color);
  text-decoration: none;
}
.breadcrumb-item:hover {
  text-decoration: underline;
  color: var(--breadcrumb-item-hover-color);
}
.breadcrumb-item--active {
  font-family: var(--kv-primary-font, "proxima-nova", sans-serif, "Arial");
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 21px;
  letter-spacing: normal;
  text-transform: none;
  pointer-events: none;
  color: var(--breadcrumb-item-active-color);
}