.breadcrumbs {
  display: flex;
  align-items: center;
  padding: 30px 6.25%;
}

.article-wrapper .breadcrumbs {
  max-width: 810px;
  padding-left: 0;
  padding-right: 0;  

  overflow: hidden;
}

.breadcrumbs__elem {
  position: relative;
  font-size: 15px;
}

.breadcrumbs__item {
  position: relative;
  color: rgba(31,31,34,.65);
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
}

.breadcrumbs__item:last-of-type {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumbs__item:not(:last-of-type) {
  margin-right: 38px;
}

.breadcrumbs__item:not(:last-of-type):after {
  content: "";
  height: 1px;
  width: 24px;
  background-color: #e0e0e0;
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}