.bread {
    margin: 0 auto;
    border-radius: 5px;
  }
  .bread:after {
    content: "";
    display: table;
    clear: both;
  }
  .bread li {
    display: inline-block;
    margin: 0.4em 0;
  }
  .bread li:last-of-type::after {
    display: none;
  }
  .bread li > * {
    display: inline-block;
    font-size: 1.1rem;
    color: #2c3f4c;
  }
  .bread li:hover a {
    color: #0157BF;
    border-bottom: 2px solid #0157BF;
  }
  .bread li.current > * {
    color: #0157BF;
    font-weight: 700;
  }
  .bread li::after {
    display: inline-block;
    color: #959fa5;
    text-align: center;
    content: '>';
/*     height: 16px; */
    width: 16px;
/*     background: url(../../img/cd-custom-separator.svg) no-repeat center center; */
    vertical-align: middle;
  }
  @media only screen and (min-width: 768px) {
    .bread li > * {
      font-size: 1.4rem;
    }
  }
