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

#block-ikw-breadcrumbs {
	margin-left: 30px;
}

.breadcrumb {
  padding-bottom: 0.5em;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
}

[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;
  font-family: "Noto Sans";
  color: #4F4F4F;
}

/* IE8 does not support :not() and :last-child. */
.breadcrumb li::before {
  content: " \/ ";
}

.breadcrumb li:first-child::before {
	content:url('../../../../libraries/fontawesome/svgs/solid/house-chimney.svg');
	position: relative;
	left: -30px;
    top: 17px;
    width: 16px;
    height: 16px;
    display: block;
}

.breadcrumb li a {
	text-decoration: underline !important;
	font-weight: bold;
	color: #4F4F4F;
}