.anchors {
  margin-top: var(--block-section-spacing-top, var(--section-spacing-top, 40px));
  margin-bottom: var(--block-section-spacing-bottom, var(--section-spacing-bottom, 40px));
  background: transparent;
}
.anchors > .container {
  position: relative;
  border: 2px solid var(--additional-c-elements);
  border-radius: var(--block-border-radius, 15px);
  background: var(--block-bg, transparent);
  padding: 20px var(--site-gutter, 15px);
}

.anchors__wrapper {
  position: relative;
}

.anchors__title {
  margin: 0;
  padding-right: 96px;
  font-size: var(--block-title-font-size, inherit);
}

.anchors__wrapper:has(.anchors__links:not(.is-hidden)) .anchors__title {
  margin-bottom: 20px;
}

.anchors__wrapper:has(.anchors-toggle--button) .anchors__title {
  padding-right: 140px;
}

.anchors-toggle {
  position: absolute;
  top: 0;
  right: 0;
  height: auto;
  cursor: pointer;
}

.anchors-toggle--text {
  width: auto;
  min-width: 65px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text-color, #fff);
  font-size: var(--block-body-font-size, 14px);
  line-height: var(--content-line-height, 1.5);
  text-align: right;
}

.anchors-toggle--button.button {
  width: auto;
  min-width: 0;
  padding: 8px 14px;
  background: var(--section-btn-bg, var(--button-bg));
  color: var(--button-text-color);
  border: 0;
  border-radius: var(--button-border-radius, 10px);
  font-size: var(--block-button-font-size, var(--button-font-size, 14px));
  line-height: 1.2;
}

.anchors__links {
  display: flex;
  flex-direction: column;
  max-height: 220px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 0 0 20px;
}
.anchors__links.is-hidden {
  display: none;
}
.anchors__links li {
  margin: 0 0 15px;
}
.anchors__links li a,
.anchors__links li .anchors__link {
  font-weight: 400;
  font-size: var(--block-body-font-size, 14px);
  color: var(--text-color);
  margin-bottom: 10px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.anchors__links li a:hover, .anchors__links li a:focus-visible,
.anchors__links li .anchors__link:hover,
.anchors__links li .anchors__link:focus-visible {
  color: var(--additional-c-elements, #fff);
  border-bottom-color: var(--additional-c-elements, #fff);
}

@media (max-width: 568px) {
  .anchors__links {
    max-height: none;
  }
}

/*# sourceMappingURL=anchor-navigation.css.map */
