.rs-breadcrumbs {
  position: relative;
  margin-top: 23px;
	margin-bottom: 26px;
}
@media (max-width: 1920px) {
  .rs-breadcrumbs {
    margin-top: calc(30px + -7 * (100vw - 320px) / 1600);
    margin-bottom: calc(30px + -4 * (100vw - 320px) / 1600);
  }
}
.rs-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.rs-breadcrumbs__item {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #415674;
}
.rs-breadcrumbs__link {
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  color: #a6a6a6;
}
.rs-breadcrumbs__link::after {
  display: inline-block;
  content: "/";
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  margin: 0 3px;
  color: #a6a6a6;
}
@media (any-hover: hover) {
  .rs-breadcrumbs__link:hover {
    color: #415674;
  }
}