/*
 * 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-video {
  position: relative;
}
.pd-video--with-pointer {
  cursor: pointer;
}
.pd-video__video {
  display: block;
  max-width: 2400px;
  margin-right: auto;
  margin-left: auto;
  aspect-ratio: var(--aspect-ratio--mobile);
}
@media (min-width: 768px) {
  .pd-video__video {
    aspect-ratio: var(--aspect-ratio--desktop);
  }
}
.pd-video__video:focus {
  outline: none;
}
.pd-video__controls {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pd-video__playpause {
  width: 1.875rem;
  height: 1.875rem;
  padding: 0;
  background-color: transparent;
  background-image: url('data:image/svg+xml;utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22"><path d="M0 8V0l8 4-8 4z" fill-rule="evenodd" clip-rule="evenodd" fill="rgb(255, 255, 255)"/></svg>');
  background-size: 1.875rem;
  border-style: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .pd-video__playpause {
    width: 2.75rem;
    height: 2.75rem;
    background-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  #adn-video {
    margin-top: 1.3rem;
  }
}

#video-adn-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#video-adn-eco {
  position: absolute;
  left: 50%;
  min-width: 1600px;
  max-width: 1700px;
  padding-top: 2.4rem;
  transform: translate(-50%, 0%);
}
@media (max-width: 1359px) {
  #video-adn-eco {
    min-width: 1750px;
    max-width: 1800px;
    padding-top: 5rem;
  }
}
@media (max-width: 767px) {
  #video-adn-eco {
    min-width: 100%;
    padding-top: 6.5rem;
    padding-right: 0;
    padding-left: 0;
  }
}

/* stylelint-enable selector-max-id */

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