

/* Start:/include/breadcrumbs/style.css?17652942481007*/
.eos-breadcrumbs {
  padding: 0;
  list-style: none;
  display: flex;
}
.eos-section.eos-breadcrumbs-section {
  padding-bottom: 0;
}
.eos-breadcrumbs__item:not(:last-child) {
  margin-right: .5em;
}
.eos-breadcrumbs__link {
  --icon-width: calc(var(--rem) * 14);
  position: relative;
  color: #6a6464;
  font-weight: 600;
  font-size: calc(var(--rem) * 12);
  transition: color .2s ease-in-out;
  padding-right: calc(var(--icon-width) + .5em);
  text-decoration: none;
}
.eos-breadcrumbs__item:not(:last-child) .eos-breadcrumbs__link:after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: var(--icon-width);
  height: calc(var(--rem) * 15);
  background: url(/include/breadcrumbs/img/breadcrumb_arrow.svg) no-repeat center / contain;
}
.eos-breadcrumbs__link:hover {
  color: var(--brand-color);
  transition: color .2s ease-in-out;
}

@media (max-width: 768px) {
  .eos-breadcrumbs {
    display: none;
  }
}

/* End */


/* Start:/include/dropdown_list/style.css?16837997581492*/
.eos-dropdown__label {
  font-weight: 700;
  padding: 1em;
  display: block;
  background-color: var(--bg-color);
  border-radius: calc(var(--rem) * 10);
  transition: background-color .2s ease-in-out;
  cursor: pointer;
  position: relative;
}
.eos-dropdown__label::after {
  content: '';
  position: absolute;
  right: 1em;
  top: 10%;
  transform: translateY(50%);
  will-change: transform;
  transform-origin: center;
  background: url(/include/dropdown_list/img/accordion_arrow.svg) no-repeat center / contain;
  width: 20px;
  height: 20px;
}
.eos-dropdown__checkbox:checked + .eos-dropdown__label::after {
  transform: translateY(-50%) rotate(180deg);
  top: 50%;
}
.eos-dropdown__label:not(:last-child) {
  margin-bottom: calc(var(--rem) * 10);
}
.eos-dropdown__label:hover {
  background-color: #fff;
  transition: background-color .2s ease-in-out;
}
.eos-dropdown__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in-out;
}
.eos-dropdown__checkbox:checked ~ .eos-dropdown__content {
  max-height: 100vh;
  transition: max-height .3s ease-in-out;
  margin-bottom: calc(var(--rem) * 10);
}
.eos-dropdown__checkbox:checked + .eos-dropdown__label {
  text-decoration: underline;
  text-underline-offset: .1em;
}
.eos-dropdown__content {
  background: #fff;
  box-shadow: 0 0 10px rgb(125 51 40 / 10%);
  border-radius: calc(var(--rem) * 10);
}
.eos-dropdown__content-wrapper {
  padding: 1em;
  
}

/* End */
/* /include/breadcrumbs/style.css?17652942481007 */
/* /include/dropdown_list/style.css?16837997581492 */
