/*
 * Colors: Base
\* -------------------------------------------------------------------------- */
/*
 * Colors: System color
\* -------------------------------------------------------------------------- */
/*
 * Colors: Overrides
\* -------------------------------------------------------------------------- */
/*
 * Colors: ADN-club
\* -------------------------------------------------------------------------- */
/** System monospace */
/**
 * Returns a rem value from a number of pixels.
 * Its uses 16px as root font-size
 */
/* -- Not on redesign -- */
/* 1025 is used instead of 1024 because touch devices design is not specified */
/* Scrollbars customization */
/**
 * Returns an url encoded SVG with the given color
 * @param {String} $icon - SVG code
 * @param {String} $color - Final color
 * @return {String} URL encoded svg
 */
/* stylelint-disable function-parentheses-newline-inside */
/* stylelint-enable function-parentheses-newline-inside */
/*
 * https://allyjs.io/tutorials/hiding-elements.html#2017-edition-of-visuallyhidden
 */
/* Mixin to use if touch devices design is specified */
/** Vertical scrollbar with custom color & size
*     @include ad-scrollbars(color, size);
*/
/** Horizontal scrollbar with custom color & size
*     @include ad-scrollbars();
*     @include ad-scrollbars-horizontal(color, size);
*/
.pd-separator--small {
  padding-top: 1rem;
}
@media (min-width: 768px) {
  .pd-separator--small {
    padding-top: 2rem;
  }
}
@media (min-width: 1025px) {
  .pd-separator--small {
    padding-top: 3rem;
  }
}
.pd-separator--medium {
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .pd-separator--medium {
    padding-top: 5rem;
  }
}
@media (min-width: 1025px) {
  .pd-separator--medium {
    padding-top: 6.25rem;
  }
}
.pd-separator--big {
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .pd-separator--big {
    padding-top: 6.25rem;
  }
}
@media (min-width: 1025px) {
  .pd-separator--big {
    padding-top: 12.5rem;
  }
}

/*# sourceMappingURL=separator.css.map*/