/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.rich[contenteditable="true"] {
  -webkit-user-modify: read-only;
  -moz-user-modify: read-only;
  user-modify: read-only;
}
/* Colors */
/* Фильтры для svg иконок https://codepen.io/sosuke/pen/Pjoqqp */
/* Breakpoints */
/* Base heading style */
/* Base button style */
/* old colors */
/* Fonts */
/* variables */
/* filters https://codepen.io/sosuke/pen/Pjoqqp */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes button-loading {
  0% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
  50% {
    background-color: #717171;
    border-color: #717171;
  }
  100% {
    background-color: #F2F2F2;
    border-color: #F2F2F2;
  }
}
.breadcrumbs {
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 20px;
  }
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  overflow-x: scroll;
  scrollbar-width: none;
}
.breadcrumbs__list::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.breadcrumbs__link {
  display: block;
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  white-space: nowrap;
  transition: all 0.35s;
}
.breadcrumbs__link:hover {
  color: #EF7D05;
}
@media (min-width: 1024px) {
  .breadcrumbs__link {
    font-size: 14px;
    line-height: 18px;
  }
}
.breadcrumbs__link_current {
  color: #9D9D9D;
}
.breadcrumbs__item {
  position: relative;
  margin-right: 15px;
}
.breadcrumbs__item:last-child {
  margin-right: 0;
}
.breadcrumbs__item:last-child::after {
  content: none;
}
.breadcrumbs__item::after {
  content: ".";
  position: absolute;
  right: -14px;
  top: -13px;
  width: 5px;
  height: 100%;
  color: #9D9D9D;
  font-size: 25px;
}
.cms-page-view .breadcrumbs__link {
  color: #9D9D9D;
}
.cms-page-view .breadcrumbs__item_cms_page {
  display: none;
}
.cms-page-view .breadcrumbs__item::after {
  content: none;
}

