.bread-crumbs {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.bread-crumbs__list {
  list-style: none;
  padding: 0 30px 0 0;
  font-size: 12px;
  position: relative;
}

.bread-crumbs__list::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    vertical-align: middle;
    width: 5px;
    height: 5px;
    border-top: 1px solid #999999;
    border-right: 1px solid #999999;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.bread-crumbs__list:last-child {
  padding: 0;
}

.bread-crumbs__list:last-child a {
  pointer-events: none;
}

.bread-crumbs__list:last-child::after {
  display: none;
}

.bread-crumbs__list a {
  color: #333;
	text-decoration: none;
  transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
}

.bread-crumbs__list a:hover {
  color: #178BCD;
}

@media screen and (max-width: 1235px) {
  .bread-crumbs__list {
    font-size: 8px;
  }
}