.breadcrumbs {
  font-size: 0;
  line-height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  display: table;
  width: 100%;
  margin-bottom: 20px;
}

.breadcrumbs > span {
  font-family: 'Roboto_Light';
  font-size: 12px;
  line-height: 18px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: top;
  color: #fff;
}

.breadcrumbs > span:before {
  content: '|';
  display: inline-block;
  margin-right: 12px;
  vertical-align: top;
}

.breadcrumbs > span:first-child:before {
  display: none;
}

.breadcrumbs > span > a {
  transition: color .3s linear;
  text-decoration: underline;
  color: #859590;
}

.breadcrumbs > span > a:hover {
  color: #fff;
}

@media only screen and (max-width: 620px) {
  .breadcrumbs {
    display: block;
  }

  .breadcrumbs > span {
    display: none;
  }

  .breadcrumbs > span:before {
    display: none;
  }

  .breadcrumbs > span:nth-last-child(2) {
    display: block;
    overflow: hidden;
    max-width: 100%;
    margin: 0;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: none;
  }

  .breadcrumbs > span:nth-last-child(2):before {
    content: '<';
    display: inline-block;
    margin: 0 5px 0 3px;
  }
}
