.breadcrumbs {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.9rem;
  padding: 0 2rem 1rem 2rem;
}
@media (max-width: 1200px) {
  .breadcrumbs {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 1rem;
  }
}
.breadcrumbs li {
  color: #A3A1A1;
  font-weight: 500;
}
@supports (--css: variables) {
  .breadcrumbs li {
    color: var(--text-medium);
  }
}
.breadcrumbs a {
  text-decoration: none;
  color: #A3A1A1;
}
@supports (--css: variables) {
  .breadcrumbs a {
    color: var(--text-medium);
  }
}
.breadcrumbs a:hover {
  color: #fff;
}
@supports (--css: variables) {
  .breadcrumbs a:hover {
    color: var(--text-white-both);
  }
}
.breadcrumbs li:not(:last-of-type)::after {
  content: " ";
  border-color: #A3A1A1;
  border-style: solid;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  margin-left: 7.5px;
  margin-right: 10px;
}
@supports (--css: variables) {
  .breadcrumbs li:not(:last-of-type)::after {
    border-color: var(--text-medium);
  }
}
.breadcrumbs li:last-of-type {
  color: #FF6D12;
}
@supports (--css: variables) {
  .breadcrumbs li:last-of-type {
    color: var(--orange-primary);
  }
}