/**
* CSS File for layout liveShoppingHeader
*/
/*
 * 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);
*/
/*
 <button class="btn btn-primary btn--inverted"></button>
*/
.btn {
  font-family: "AdFont", sans-serif;
  font-style: normal;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-decoration: none;
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1rem;
  border-style: solid;
  border-width: 1px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.keyfocus .btn:focus, .keyfocus .btn:focus-visible {
  outline: 1px solid rgb(117, 117, 117);
  outline-offset: 4px;
}
.btn:hover {
  transition: all 0.3s ease-in-out;
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.btn:focus {
  outline: none;
  box-shadow: none;
}
.btn.disabled, .btn:disabled {
  cursor: default;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
.btn--small {
  padding: 0.5rem 1rem;
}
.btn.btn-large {
  padding: 1rem 4rem;
}

/*
* Buttons inherited from SFRA and bootstrap naming
*/
.btn-primary,
.btn--primary {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border-color: rgb(0, 0, 0);
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn--primary:hover,
.btn--primary:active,
.btn--primary:focus {
  color: rgb(255, 255, 255);
  background-color: rgb(33, 33, 33);
  border-color: rgb(33, 33, 33);
}
.btn-primary.adn-general,
.btn--primary.adn-general {
  border-color: rgb(255, 255, 255);
}
.btn-primary.adn-general-inicio,
.btn--primary.adn-general-inicio {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(0, 0, 0);
}
.btn-primary.adn-general-inicio:hover, .btn-primary.adn-general-inicio:active, .btn-primary.adn-general-inicio:focus,
.btn--primary.adn-general-inicio:hover,
.btn--primary.adn-general-inicio:active,
.btn--primary.adn-general-inicio:focus {
  color: rgb(42, 43, 46);
  background-color: rgb(0, 0, 0);
  border-color: rgb(42, 43, 46);
}
.btn-primary.adn-general-inicio.disabled, .btn-primary.adn-general-inicio:disabled,
.btn--primary.adn-general-inicio.disabled,
.btn--primary.adn-general-inicio:disabled {
  color: rgb(42, 43, 46);
  background-color: rgb(0, 0, 0);
  border-color: rgb(42, 43, 46);
}
.btn-primary.disabled, .btn-primary:disabled,
.btn--primary.disabled,
.btn--primary:disabled {
  background-color: rgb(158, 158, 158);
  border-color: rgb(158, 158, 158);
}

.btn--primary.btn--inverted,
.btn-primary.btn--inverted {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.btn--primary.btn--inverted.adn-general,
.btn-primary.btn--inverted.adn-general {
  filter: invert(100%);
}
.btn--primary.btn--inverted:hover,
.btn-primary.btn--inverted:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(224, 224, 224);
  border-color: rgb(224, 224, 224);
}
.btn--primary.btn--inverted.disabled, .btn--primary.btn--inverted:disabled,
.btn-primary.btn--inverted.disabled,
.btn-primary.btn--inverted:disabled {
  background-color: rgb(42, 43, 46);
  border-color: rgb(42, 43, 46);
}

.btn-secondary,
.btn--secondary,
.btn-outline-primary {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(0, 0, 0);
}
.btn-secondary.adn-general,
.btn--secondary.adn-general,
.btn-outline-primary.adn-general {
  filter: invert(100%);
}
.btn-secondary.disabled, .btn-secondary:disabled,
.btn--secondary.disabled,
.btn--secondary:disabled,
.btn-outline-primary.disabled,
.btn-outline-primary:disabled {
  color: rgb(117, 117, 117);
  border-color: rgb(158, 158, 158);
}
.btn-secondary:hover, .btn-secondary:active, .btn-secondary:focus,
.btn--secondary:hover,
.btn--secondary:active,
.btn--secondary:focus,
.btn-outline-primary:hover,
.btn-outline-primary:active,
.btn-outline-primary:focus {
  color: rgb(33, 33, 33);
  border-color: rgb(33, 33, 33);
}
.btn-secondary--filter,
.btn--secondary--filter,
.btn-outline-primary--filter {
  padding: 0.375rem 0.5rem;
  background-color: transparent;
}
.btn-secondary--small,
.btn--secondary--small,
.btn-outline-primary--small {
  padding: 0.375rem 0.5rem;
}

.btn-secondary.btn--inverted,
.btn--secondary.btn--inverted {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  border-color: rgb(255, 255, 255);
}
.btn-secondary.btn--inverted:hover,
.btn--secondary.btn--inverted:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.btn-secondary.btn--inverted.disabled, .btn-secondary.btn--inverted:disabled,
.btn--secondary.btn--inverted.disabled,
.btn--secondary.btn--inverted:disabled {
  color: rgb(42, 43, 46);
  border-color: rgb(42, 43, 46);
}

.remove-btn {
  background-color: transparent;
  border: 0;
}

.btn-tertiary {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}
.btn-tertiary:hover, .btn-tertiary:active, .btn-tertiary:focus {
  color: rgb(33, 33, 33);
}
.btn-tertiary:disabled {
  color: rgb(117, 117, 117);
}

.btn-fab {
  font-family: "AdFont", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 600;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-style: none;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.btn-fab:hover, .btn-fab:active, .btn-fab:focus {
  color: rgb(33, 33, 33);
}
.btn-fab:disabled {
  color: rgb(117, 117, 117);
}
.btn-fab--mini {
  font-family: "AdFont", sans-serif;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.btn-add-to-cart {
  padding: 0.5rem;
  text-align: inherit;
  background-color: inherit;
  border-style: none;
  display: inline-flex;
  align-items: center;
  color: rgb(0, 0, 0);
  cursor: pointer;
}
.keyfocus .btn-add-to-cart:focus, .keyfocus .btn-add-to-cart:focus-visible {
  outline: 1px solid rgb(117, 117, 117);
  outline-offset: 0px;
}
.btn-add-to-cart:disabled {
  color: rgb(158, 158, 158);
}
.btn-add-to-cart:hover, .btn-add-to-cart:active, .keyfocus .btn-add-to-cart:focus {
  color: rgb(33, 33, 33);
}
.btn-add-to-cart svg {
  z-index: 1;
  width: 1.125rem;
  height: 1.125rem;
}
.btn-add-to-cart::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.375rem;
  height: 1.375rem;
  margin: auto;
  background-color: rgb(245, 245, 245);
  border-radius: 50%;
  content: "";
}

.btn-simple {
  width: auto;
  padding: 0;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-style: none;
}
.btn-simple:hover, .btn-simple:active, .btn-simple:focus {
  color: rgb(33, 33, 33);
}
.btn-simple:disabled {
  color: rgb(117, 117, 117);
}
.btn-simple--medium {
  font-family: "AdFont", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  color: rgb(0, 0, 0);
  font-weight: 600;
}
.btn-simple--big {
  font-family: "AdFont", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.37;
  color: rgb(0, 0, 0);
  font-weight: 600;
}

.btn-icon {
  align-items: center;
}
.btn-icon .btn-icon__icon {
  width: 1.375rem;
  height: 1.375rem;
}
.btn-icon > * {
  vertical-align: middle;
}
.btn-icon .btn-icon__text {
  line-height: 1;
}

.pd-adn-live-header .pd-section__wrapper {
  margin-right: auto;
  margin-left: auto;
}
.pd-adn-live-header .pd-sls-header + .pd-button-container {
  margin-top: 1.5rem;
  text-align: left;
}
.pd-adn-live-header .dropdown-button {
  font-weight: 300;
  font-size: 0.625rem;
}
@media (min-width: 1025px) {
  .pd-adn-live-header .dropdown-button {
    font-size: 0.875rem;
  }
}
.pd-adn-live-header__wrapper {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__wrapper {
    flex-direction: row;
    padding-bottom: 6.25rem;
  }
}
.pd-adn-live-header__banner-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 707px;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__banner-wrapper {
    justify-content: flex-start;
    height: auto;
    padding-top: 6.25rem;
  }
}
.pd-adn-live-header__info {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3rem;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__info {
    width: 50%;
  }
}
.pd-adn-live-header__top-section {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__top-section {
    margin-top: 0;
  }
}
.pd-adn-live-header__top-section > *:not(:last-child)::after {
  margin: 0 0.5625rem 0 0.3125rem;
  content: "|";
}
.pd-adn-live-header__video {
  position: absolute;
  width: 100%;
  height: 707px;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__video {
    position: relative;
    width: 50%;
    height: 900px;
  }
}
.pd-adn-live-header__banner-image {
  display: block;
  width: 100%;
  height: 707px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__banner-image {
    height: 900px;
  }
}
.pd-adn-live-header__title {
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 3.125rem;
  letter-spacing: 0.299375rem;
  text-align: center;
  text-transform: uppercase;
  word-spacing: 100vw;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__title {
    margin-top: 3rem;
    color: rgb(0, 0, 0);
    font-size: 87px;
  }
}
.pd-adn-live-header__featured-title {
  margin: 0;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 0.875rem;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__featured-title {
    color: rgb(0, 0, 0);
    font-size: 1.1875rem;
  }
}
.pd-adn-live-header__date-text {
  display: inline;
  color: rgb(255, 255, 255);
  font-weight: 600;
  font-size: 0.875rem;
  text-align: right;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__date-text {
    color: rgb(0, 0, 0);
    font-size: 1.1875rem;
  }
}
.pd-adn-live-header__description {
  padding: 4rem 1.5rem;
  font-weight: 300;
  font-size: 0.75rem;
  font-family: "AdFont", sans-serif;
  line-height: 1.0625rem;
  text-align: center;
}
@media (min-width: 1025px) {
  .pd-adn-live-header__description {
    max-width: 34.375rem;
    margin-top: 3.125rem;
    padding: 0;
    font-size: 1.1875rem;
    line-height: 2.25rem;
  }
}
.pd-adn-live-header__description strong {
  font-weight: 600;
}
.pd-adn-live-header__button {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
  width: auto;
  margin-top: 3rem;
  padding-right: 2.1875rem;
  padding-left: 2.1875rem;
  font-weight: 400;
  line-height: 1;
}
.pd-adn-live-header__button.adn-general {
  filter: invert(100%);
}
.pd-adn-live-header__button:hover {
  color: rgb(0, 0, 0);
  background-color: rgb(224, 224, 224);
  border-color: rgb(224, 224, 224);
}
.pd-adn-live-header__button.disabled, .pd-adn-live-header__button:disabled {
  background-color: rgb(42, 43, 46);
  border-color: rgb(42, 43, 46);
}
@media (min-width: 1025px) {
  .pd-adn-live-header__button {
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border-color: rgb(0, 0, 0);
    padding: 0.75rem 3.5rem;
    font-size: 1rem;
  }
  .pd-adn-live-header__button:hover, .pd-adn-live-header__button:active, .pd-adn-live-header__button:focus {
    color: rgb(255, 255, 255);
    background-color: rgb(33, 33, 33);
    border-color: rgb(33, 33, 33);
  }
  .pd-adn-live-header__button.adn-general {
    border-color: rgb(255, 255, 255);
  }
  .pd-adn-live-header__button.adn-general-inicio {
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    border-color: rgb(0, 0, 0);
  }
  .pd-adn-live-header__button.adn-general-inicio:hover, .pd-adn-live-header__button.adn-general-inicio:active, .pd-adn-live-header__button.adn-general-inicio:focus {
    color: rgb(42, 43, 46);
    background-color: rgb(0, 0, 0);
    border-color: rgb(42, 43, 46);
  }
  .pd-adn-live-header__button.adn-general-inicio.disabled, .pd-adn-live-header__button.adn-general-inicio:disabled {
    color: rgb(42, 43, 46);
    background-color: rgb(0, 0, 0);
    border-color: rgb(42, 43, 46);
  }
  .pd-adn-live-header__button.disabled, .pd-adn-live-header__button:disabled {
    background-color: rgb(158, 158, 158);
    border-color: rgb(158, 158, 158);
  }
}
.pd-adn-live-header__play-button {
  width: 100%;
  padding: 0;
  background: transparent none repeat 0 0 / auto auto padding-box border-box scroll;
  background: initial;
  border: medium none currentcolor;
  border: initial;
  cursor: pointer;
}
.pd-adn-live-header .play-button__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  width: 5rem;
  transform: translate(-50%, -50%);
}
@media (min-width: 1025px) {
  .pd-adn-live-header .play-button__icon.show-play-icon {
    display: block;
  }
}

.pd-section__wrapper .pd-adn-live-header {
  margin-top: 3.375rem;
  padding-top: 0;
}
@media (min-width: 1025px) {
  .pd-section__wrapper .pd-adn-live-header {
    flex-direction: row;
    margin-top: 0;
  }
}

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