/**
 * @file
 * Page anchor style.
 */
/* stylelint-disable scss/at-import-partial-extension */
/* stylelint-disable scss/at-import-partial-extension */ /**
 * @file
 * Aspect ratio mixins.
 */
/**
 * @file
 * Centering mixin.
 *
 * Center an element orizontally, vertically or both, assuming the parent
 * element has relative or absolute position.
 * https://css-tricks.com/snippets/sass/centering-mixin/
 */
/**
 * @file
 * Globally used mixins and functions.
 *
 * Here you can add your custom SASS mixins or functions.
 */
/**
 * @file
 * Globally tools for images.
 */
/* stylelint-enable scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Global colors variables.
 */
/**
 * @file
 * Shadows variables.
 */
/**
 * @file
 * Animations elements.
 */
@keyframes slideOutRight {
  from {
    visibility: visible;
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(5px, 0, 0);
  }
}
@keyframes selectedElementOpacity {
  0% {
    opacity: 100%;
  }
  10% {
    opacity: 60%;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes opacityDecrease {
  from {
    opacity: 100%;
  }
  to {
    opacity: 60%;
  }
}
@keyframes selectedElementPaddingLeft {
  0% {
    padding-left: 0;
  }
  40% {
    padding-left: 0.75rem;
  }
  100% {
    padding-left: 0;
  }
}
@keyframes slideInFromRight {
  from {
    visibility: visible;
    transform: translate3d(32px, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
/**
 * @file
 * All stuff for typography.
 */
.internalnav__tagline {
  font-family: var(--heading-font);
  font-display: optional;
}

/* HEADING */
/* TEXT & CONTENT */
.page-anchor-label {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.internalnav__title {
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.5;
  letter-spacing: normal;
}

.page-anchor-label {
  font-size: 0.875rem;
  line-height: 1.14;
}

.internalnav__tagline {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: 3.5px;
}

.page-anchor select {
  font-family: var(--font-family-base);
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  line-height: 1.14;
  letter-spacing: normal;
}

/**
 * @file
 * Buttons elements.
 *
 * Style for buttons
 */
/**
 * @file
 * Variables for links style.
 */
/**
 * @file
 * Background elements style.
 */
/**
 * @file
 * Elements for Video.
 */
/**
 * @file
 * Cards variables element style.
 */
/**
 * @file
 * Forms variables element style.
 */
/* INLINE SEARCH FORM. */
/**
 * @file
 * Search, common elements style.
 */
/**
 * @file
 * Accordion elements variables.
 */
/* stylelint-enable scss/at-import-partial-extension */
/* stylelint-disable-line scss/at-import-partial-extension */
/**
 * @file
 * Internal nav variables element style.
 */
:root {
  --space-top-nav: 5.5rem;
}

.is-node-page--landing-page {
  --space-top-nav: 4rem;
}

.page-anchor-label {
  margin-bottom: 0.25rem;
}
@media (max-width: 767.98px) {
  .page-anchor-label {
    margin-top: 1.5rem;
  }
}

.page-anchor {
  position: relative;
}
.page-anchor * {
  position: relative;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.page-anchor select {
  width: 100%;
  padding: 1rem 2.5rem 1rem 1rem;
  font-weight: 700;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #d6d6d6;
  border-radius: 0.5rem;
  appearance: none;
}
.page-anchor select:active, .page-anchor select:focus {
  outline: none;
  box-shadow: none;
}
.page-anchor::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: url("../../../images/icons/icon-arrow-empty.svg");
  background-position: center;
}

.internalnav__content {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .internalnav__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (max-width: 767.98px) {
  .internalnav__head {
    margin-bottom: 1.5rem;
  }
}
.internalnav__tagline {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.internalnav__title {
  color: #008444;
}
@media (min-width: 768px) {
  .internalnav__navigation {
    width: 60%;
  }
}
@media (min-width: 1280px) {
  .internalnav__navigation {
    width: 45%;
  }
}

.catalog-tree__navigation-wr .internalnav__title {
  font-size: 1.375rem;
}

@media (max-width: 1023.98px) {
  body .main-content {
    padding-top: 0;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}
@media (max-width: 767.98px) {
  body.js-is_sticky .internalnav__head {
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  body.js-is_sticky .internalnav__tagline {
    font-size: 0.75rem;
  }
  body.js-is_sticky .internalnav__title {
    display: none;
  }
}
@media (max-width: 1023.98px) {
  body.js-is_sticky .site-header {
    box-shadow: none;
  }
  body.js-is_sticky .main-content {
    padding-top: var(--space-top-nav);
  }
  body.js-is_sticky .c-internalnav {
    position: fixed;
    top: var(--space-top-nav);
    right: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    background-color: #fff;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  body.js-is_sticky .internalnav__content {
    padding-top: 0;
    padding-bottom: 1rem;
    transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

/*# sourceMappingURL=components.pageanchor.css.map */
