/**
 * @file
 * Styles for Levelplus's breadcrumbs.
 */

/*Breadcrumb*/
.breadcrumb {
  line-height: 1.5;
  font-size: 0.69em;
  text-transform: uppercase;
  background-color: rgba(231, 239, 245, 0.5);
  display: inline-block;
  padding: 11px 20px 9px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.breadcrumb li::before {
  content: "";
}
.breadcrumb a {
  text-decoration: none;
}
.breadcrumb a,
.breadcrumb .breadcrumb-separator {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  line-height: 1.5;
}
.breadcrumb .breadcrumb-separator {
  line-height: 1.5;
  padding: 0 14px 0 12px;
  font-weight: 400;
}
.breadcrumb li:nth-child(1) a {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  border: 0;
  bottom: 0;
  left: 15px;
  text-align: center;
}
.breadcrumb li:nth-child(1) a:after {
  font-family: "FontAwesome";
  content: "\f015";
  color: #2e3436;
  font-size: 11px;
  line-height: 1.5;
}
.breadcrumb li:nth-child(1) a:hover {
  text-decoration: none;
}

/* Reset bootstrab styling */
.breadcrumb {
  margin-bottom: 0;
  list-style: outside none none;
}
