/*
 * 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-layout {
  overflow: hidden;
}
.pd-layout__row--no-margin {
  margin-right: 0;
  margin-left: 0;
}
.pd-layout__row--no-margin .pd-layout__column {
  padding-right: 0;
  padding-left: 0;
}
.pd-layout__row--small {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}
.pd-layout__row--small > .pd-layout__column {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.pd-layout__row--medium {
  margin-right: -1rem;
  margin-left: -1rem;
}
.pd-layout__row--medium > .pd-layout__column {
  padding-right: 1rem;
  padding-left: 1rem;
}
.pd-layout__row--big {
  margin-right: -1.5rem;
  margin-left: -1.5rem;
}
.pd-layout__row--big > .pd-layout__column {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.pd-layout__row--extra-big {
  margin-right: -2rem;
  margin-left: -2rem;
}
.pd-layout__row--extra-big > .pd-layout__column {
  padding-right: 2rem;
  padding-left: 2rem;
}
.pd-layout__column--limited {
  margin: auto;
}
.pd-layout__col-component + .pd-layout__col-component:not([style*="display: none"]):not(.first-active-col-component) {
  margin-top: 1rem;
}
.pd-layout--1r-2c:not(.same-distribution) > .pd-layout__row > .pd-layout-column {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pd-layout--1r-2c:not(.same-distribution) > .pd-layout__row > .pd-layout-column {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.pd-layout--1r-2c:not(.same-distribution) > .pd-layout__row > .pd-layout-column:first-child {
  margin-top: 0;
}
.pd-layout--1r-2c:not(.same-distribution) > .pd-layout__row > .pd-layout-column:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .col-indent.col-12 {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.col-indent--top-5 {
  padding-top: 5%;
}
.col-indent--top-10 {
  padding-top: 10%;
}
.col-indent--top-15 {
  padding-top: 15%;
}
.col-indent--top-20 {
  padding-top: 20%;
}
.col-indent--bottom-5 {
  padding-bottom: 5%;
}
.col-indent--bottom-10 {
  padding-bottom: 10%;
}
.col-indent--bottom-15 {
  padding-bottom: 15%;
}
.col-indent--bottom-20 {
  padding-bottom: 20%;
}

.col-content-width--25 {
  width: 25%;
}
.col-content-width--50 {
  width: 50%;
}
.col-content-width--75 {
  width: 75%;
}
.col-content-width--100 {
  width: -moz-fit-content;
  width: fit-content;
}

.adn-col {
  margin-right: auto;
  margin-left: auto;
}

/* stylelint-disable selector-max-id */
#live-events-list {
  padding-right: 18vw;
  padding-left: 18vw;
}
@media (max-width: 1549px) {
  #live-events-list {
    padding-right: 10vw;
    padding-left: 10vw;
  }
}
@media (max-width: 1279px) {
  #live-events-list {
    padding-right: 0;
    padding-left: 0;
  }
}

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