@charset "UTF-8";
/*
nav.sem.breadcrumb ol {
  list-style: none;
  padding:0;
  margin:0;
}
nav.sem.breadcrumb ol li {
  list-style: none;
  display: inline;
  padding:0;
  margin:0;
  font-size:0.8rem;
  font-weight:500;
  &:not(:last-child):after {
    content:"▸";
    color:#999;
    display:inline-block;
    margin: 0 0.5em;
  }
}
*/
/* BREABDCRUMBS */
.sem.breadcrumb {
  display: block;
  line-height: 1.2;
  font-size: 1.4rem;
  padding: 0;
  font-family: "Roboto Condensed";
  background-color: transparent;
}
.sem.breadcrumb * {
  vertical-align: baseline;
}
.sem.breadcrumb ol {
  margin: 0;
  padding: 0;
}
.sem.breadcrumb li {
  display: inline-block;
  white-space: nowrap;
  max-width: 16em;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sem.breadcrumb li:last-child {
  max-width: initial;
}
@media (min-width: 768px) {
  .sem.breadcrumb li + li:before {
    /* color: #9e854c; */
    content: ">";
    padding: 0 0.7em;
    font-size: 0.7em;
    position: relative;
    top: -2px;
  }
  .sem.breadcrumb li:last-child a {
    /* color: #82522B; */
    font-weight: bold;
  }
}
@media (max-width: 767px) {
  .sem.breadcrumb {
    font-size: 1.4rem;
  }
  .sem.breadcrumb li:has(+ li + li) {
    display: none;
  }
  .sem.breadcrumb li:last-child {
    display: none;
  }
  .sem.breadcrumb li:before {
    /* color: #9e854c; */
    display: inline-block;
    white-space: pre;
    content: "< ";
    font-size: 1em;
    position: relative;
    top: -2px;
  }
}