/**
 * @file
 * Styles for breadcrumbs.
 */

.path-taxonomy .breadcrumb {
  display: none;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  line-height: 1.1;
}

[dir='rtl'] .breadcrumb ol {
  /* This is required to win over specificity of [dir="rtl"] ol */
  margin-right: 0;
}

.breadcrumb li {
  display: inline;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.breadcrumb li::before {
  content: '>';
  font-weight: bold;
}
.breadcrumb li:first-child::before {
  content: none;
}
