/**
 * @file
 * Share 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.
 */
/* HEADING */
/* TEXT & CONTENT */
/**
 * @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 */
.share-wrapper {
  position: relative;
}
@media (min-width: 576px) {
  .share-wrapper {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .download-share {
    position: relative;
  }
  .download-share .share-wrapper {
    position: static;
  }
  .slider-common-wr__elements {
    padding-bottom: 0;
    transition: padding-bottom 0.3s ease-in-out;
  }
  .slider-common-wr__elements.js-transform {
    padding-bottom: 13rem;
  }
  .share-wrapper--box {
    position: absolute;
    top: 130%;
    right: 0;
    z-index: 999;
    min-width: 100%;
    max-width: 100vw;
    padding: 1rem;
    background: #fff;
    border: 1px solid #001a0e;
    border-radius: 0.25rem;
  }
  .share-wrapper--box-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    cursor: pointer;
  }
  .share-wrapper--box-title {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .share-wrapper--box-links {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0.5rem 0;
    list-style: none;
  }
  .share-wrapper--box-links img {
    width: 2.5rem;
    height: auto;
  }
  .share-wrapper--box-links li {
    margin: auto 1rem;
  }
  .share-wrapper--box-copy {
    text-align: center;
  }
  .share-wrapper--box-copy .copy-btn {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}

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