/** Shopify CDN: Minification failed

Line 1514:6 Expected identifier but found whitespace
Line 1514:7 Unexpected "#000000"

**/
/* TABLE OF CONTENTS

_Global
outlet_badge_color
_Components
  _Outlet_badge
  _Sticky_add_to_cart
  _Modal
  _Learn_more_button
_Header
    _Navigation
_Aditional_checkout_buttons
_Sections
  _Advanced_promo
  _Rich_text
  _Footer
  _Image_with_text
  _Accordion
  _Slideshow
*/

/* _Global */

:root {
  --font-heading-scale: 0.6;
}

.text-blue {
  color: #25c1f4;
}

.new-badge {
  border: 1px solid #25c1f4;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 14px;
  color: #25c1f4 !important;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;
}

.home-section--content {
  margin-top: 0 !important;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  position: relative;
  overflow: hidden;
}

.media>img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 100%;
  height: 100%;
}

/* _Utilities */

.desktop-only {
  display: none !important;
}

.mobile-only {
  display: block !important;
}

@media screen and (min-width: 750px) {
  .desktop-only {
    display: block !important;
  }

  .mobile-only {
    display: none !important;
  }
}

.hidden {
  display: none !important;
}

.page-width {
  padding: 0 2rem;
  margin: 0 auto;
}

.hxxl {
  font-size: clamp(calc(var(--font-heading-scale) * 5.6rem), 14vw, calc(var(--font-heading-scale) * 7.2rem)) !important;
  line-height: 1.1;
}

.hxl {
  font-size: calc(var(--font-heading-scale) * 5rem) !important;
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-scale)));
}

@media only screen and (min-width: 750px) {
  .hxl {
    font-size: calc(var(--font-heading-scale) * 6.2rem) !important;
  }
}

.h0 {
  font-size: calc(var(--font-heading-scale) * 4rem) !important;
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: calc(var(--font-heading-scale) * 5.2rem) !important;
  }
}

.h1 {
  font-size: calc(var(--font-heading-scale) * 3rem) !important;
}

@media only screen and (min-width: 750px) {

  .h1 {
    font-size: calc(var(--font-heading-scale) * 4rem) !important;
  }
}

.h2 {
  font-size: calc(var(--font-heading-scale) * 2rem) !important;
}

@media only screen and (min-width: 750px) {

  .h2 {
    font-size: calc(var(--font-heading-scale) * 2.4rem) !important;
  }
}

.h3 {
  font-size: calc(var(--font-heading-scale) * 1.7rem) !important;
}

@media only screen and (min-width: 750px) {

  .h3 {
    font-size: calc(var(--font-heading-scale) * 1.8rem) !important;
  }
}

.h4 {
  font-size: calc(var(--font-heading-scale) * 1.5rem) !important;
}

.h5 {
  font-size: calc(var(--font-heading-scale) * 1.2rem) !important;
}

@media only screen and (min-width: 750px) {
  .h5 {
    font-size: calc(var(--font-heading-scale) * 1.3rem) !important;
  }
}

/* _Components */

/* _Outlet_badge */

.outlet-badge {
  background-color: #000000;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 1rem;

}

/* _Sticky_add_to_cart */

.sticky-add-to-cart-bar {
  position: fixed;
  width: 100%;
  background-color: #f8f8f8;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
  z-index: 1000;
  display: none;
  /* Hidden by default */
  opacity: 0;
  /* Set for fade-in effect */
  transition: opacity 0.5s ease-in-out;
}

.sticky-add-to-cart-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name {
  font-size: 18px;
  font-weight: bold;
}

.add-to-cart-button {
  background-color: #007BFF;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  white-space: nowrap;
}

/* Fade-in class */
.fade-in {
  opacity: 1 !important;
}

@media screen and (min-width: 768px) {
  .sticky-add-to-cart-bar {
    top: 0;
    bottom: auto;
  }
}

@media screen and (max-width: 767px) {
  .sticky-add-to-cart-bar {
    bottom: 0;
    top: auto;
  }
}

/* _Modal */

/* Modal default styling */
.custom-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  z-index: 1000;
  /* On top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black background with transparency */
  animation: fadeIn 0.5s;
  /* Fade in animation */
}

/* Modal content box */
.custom-modal-content {
  position: relative;
  margin: 10% auto;
  /* Center the modal content */
  padding: 0;
  width: 80%;
  max-width: 800px;
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  animation: zoomIn 0.5s;
  /* Zoom in animation */
}

/* Close button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.5);
  }

  to {
    transform: scale(1);
  }
}

/* Fullscreen iframe for the video */
#videoContainer iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Add some styling to anchor tags */
a {
  color: #00bfff;
  text-decoration: none;
}

/* _Learn_more_button */

.product-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

a.product-learn-more {
  padding: 10px;
  background: black;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1;
}

a.product-learn-more:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* _Header */

.custom-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: relative;
  box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
}

@media screen and (max-width: 719px) {
  .custom-site-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    position: relative;
    box-shadow: 0 1px 5px rgb(0 0 0 / 10%);
  }
}

@media screen and (min-width: 720px) {
  .site-header-main {
    align-items: center;
    padding-top: 0px;
    display: none;
    padding-right: 10px;
    padding-bottom: 0px;
    padding-left: 10px;
  }
}

.custom-site-header-cart {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-site-header-cart-icon.custom-site-header-cart-icon--svg {
  color: #1d1d1d;
}

.custom-site-header .show-search-live {
  display: none;
}

.site-header-actions__account-link {
  margin: 0;
}

a.custom-site-header-cart--button {
  margin-top: 5px;
}

li.site-header-mobile-search-button--button {
  margin-right: 7px;
}

/* _Navigation */

ul.custom-site-header__nav-list {
  display: flex;
  list-style: none;
  flex-direction: row;
  flex-wrap: nowrap;
  padding-inline-start: 0;
}

ul.custom-site-header__nav-list li {
  margin-right: 20px;
  padding: 10px 10px 8px 10px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.2s ease-in-out;
}

ul.custom-site-header__nav-list li:hover {
  border-bottom: 2px solid #1d1d1d;
}

ul.custom-site-header__nav-list li a {
  color: #1d1d1d;
  text-decoration: none;
  font-weight: 700;
  font-family: "Sohne-Extrafett" !important;
}

ul.custom-site-header__nav-list li:last-child {
  margin-right: 0;
}

ul.custom-site-header__dropdown {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-inline-start: 0;
  position: absolute;
  top: 55px;
  right: 0;
  left: 0;
  background: white;
  z-index: 501;
  padding: 30px;
  border-top: 1px solid #d1d1d1;
  box-shadow: 0 50px 50px rgba(27, 27, 31, 0.15);
}

li.custom-site-header__nav-list-item {
  max-width: 10%;
  margin-right: 20px;
}

li.custom-site-header__nav-list-item:last-child {
  margin-right: 0;
}

/*
li.custom-site-header__nav-list-item a {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #1d1d1d;
  text-align: center;
  text-decoration: none;
}
*/
li.custom-site-header__nav-list-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 100%;
  margin-top: 10px;
}

/*
img.custom-site-header__nav-list-item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}/*

/* _Aditional_checkout_buttons */

.additional-checkout-buttons {
  display: none;
}

/* .site-header-main {
  align-items: center;
  padding-top: 0px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}
 */
.ast-carousel-card-image {
  height: 100%;
  left: 0;
  -o-object-fit: cover;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.accordion summary {
  display: flex;
  position: relative;
  line-height: 1;
  padding: 1.5rem 0;
}

.accordion .summary__title {
  display: flex;
  flex: 1;
}

.accordion .summary__title+.icon-caret {
  height: calc(var(--font-heading-scale) * 0.6rem);
}

.accordion+.accordion {
  margin-top: 0;
  border-top: none;
}

.accordion {
  margin-top: 2.5rem;
  margin-bottom: 0;
  border-top: 0.1rem solid rgba(var(--color-foreground), 0.08);
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.accordion__title {
  display: inline-block;
  max-width: calc(100% - 6rem);
  width: 100%;
  min-height: 1.6rem;
  margin: 0;
  word-break: break-word;
}

.accordion .icon-accordion {
  align-self: center;
  fill: rgb(var(--color-foreground));
  height: calc(var(--font-heading-scale) * 2rem);
  margin-right: calc(var(--font-heading-scale) * 1rem);
  width: calc(var(--font-heading-scale) * 2rem);
}

.accordion details[open]>summary .icon-caret {
  transform: rotate(180deg);
}

.accordion__content {
  margin-bottom: 1.5rem;
  word-break: break-word;
  overflow-x: auto;
  padding: 0 0.6rem;
}

.accordion__content img {
  max-width: 100%;
}

.accordion svg {
  width: 20px;
  height: 20px;
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
  column-gap: var(--grid-mobile-horizontal-spacing);
  row-gap: var(--grid-mobile-vertical-spacing);
}

@media screen and (min-width: 750px) {
  .grid {
    column-gap: var(--grid-desktop-horizontal-spacing);
    row-gap: var(--grid-desktop-vertical-spacing);
  }
}

.grid:last-child {
  margin-bottom: 0;
}

.grid__item {
  width: calc(25% - var(--grid-mobile-horizontal-spacing) * 3 / 4);
  max-width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  flex-grow: 1;
  flex-shrink: 0;
}

@media screen and (min-width: 750px) {
  .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

.grid--gapless.grid {
  column-gap: 0;
  row-gap: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - var(--grid-mobile-horizontal-spacing) * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (max-width: 989px) {
  .grid--1-col-tablet-down .grid__item {
    width: 100%;
    max-width: 100%;
  }

  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }

  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
}

@media screen and (min-width: 990px) {
  .grid--6-col-desktop .grid__item {
    width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
    max-width: calc(16.66% - var(--grid-desktop-horizontal-spacing) * 5 / 6);
  }

  .grid--5-col-desktop .grid__item {
    width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
    max-width: calc(20% - var(--grid-desktop-horizontal-spacing) * 4 / 5);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
    max-width: calc(25% - var(--grid-desktop-horizontal-spacing) * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
    max-width: calc(33.33% - var(--grid-desktop-horizontal-spacing) * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
    max-width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }
}

@media screen and (min-width: 990px) {
  .grid--1-col-desktop {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
    max-width: 100%;
  }
}

@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .grid--peek .grid__item {
    min-width: 35%;
  }

  .grid--peek.slider .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  /* Fix to show some space at the end of our sliders in all browsers */
  .grid--peek.slider:after {
    margin-left: calc(-1 * var(--grid-mobile-horizontal-spacing));
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) / 2);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item,
  .grid--peek .grid__item {
    width: calc(50% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--1-col-tablet-down .grid__item,
  .slider--mobile.grid--peek.grid--1-col-tablet-down .grid__item {
    width: calc(100% - var(--grid-mobile-horizontal-spacing) - 3rem);
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item,
  .slider--tablet.grid--peek.grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }

  .slider--tablet.grid--peek .grid__item:first-of-type {
    margin-left: 1.5rem;
  }

  .grid--2-col-tablet-down .grid__item {
    width: calc(50% - var(--grid-desktop-horizontal-spacing) / 2);
  }

  .grid--1-col-tablet-down.grid--peek .grid__item {
    width: calc(100% - var(--grid-desktop-horizontal-spacing) - 3rem);
  }
}

.pxs-newsletter {
  padding: 30px 20px !important;
  margin-top: 0rem !important;
}

.pxs-newsletter-text {
  margin-bottom: 0;
}

.newsletter {
  width: 50%;
}

.form-field.newsletter-input {
  max-width: unset !important;
}

#shopify-section-template--16730735771864__89d0084a-2196-4129-8bd6-0622dd78db86.pxs-newsletter-section {
  margin-left: 0 !important;
  margin-right: 0 !important;
  max-width: unset !important;
}

@media screen and (max-width: 1100px) {
  #videoHero .video-hero__content h1 {
    font-size: 38px !important;
  }
}

@media screen and (max-width: 768px) {
  #videoHero .video-hero__content {
    text-align: center !important;
    margin-top: -241px;
    z-index: 1;
    position: relative;
  }

  #videoHero .video-hero__content h1 {
    font-size: 32px !important;
  }

  .form-fields-inline.pxs-newsletter-form-fields {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .form-field.newsletter-input {
    width: 100% !important;
  }

  .form-field.newsletter-submit {
    width: 100% !important;
    display: block !important;
    max-width: unset !important;
    margin-left: unset !important;
  }

  button.button-primary.mdc-ripple-surface.mdc-ripple-upgraded {
    width: 100% !important;
  }

  .newsletter {
    width: 100% !important;
  }
}

/* */
/* PRIMER PASO

 */
li.custom-site-header__nav-list-item {
  width: 32%;
}

/* SEGUNDO PASO
 */
img.custom-site-header__nav-list-item-image {
  width: 50%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

/* TERCER PASO 
*/
li.custom-site-header__nav-list-item a {
  display: flex;
  flex-flow: ROW NOWRAP;
  align-items: center;
  justify-content: flex-start;
  color: #1d1d1d;
  text-align: center;
  text-decoration: none;
}

/* CUARTO PASO ACOMODAR EL VER TODOS */
span.compatible-tags {
  background: black;
  color: white;
  padding: 8px;
  display: -webkit-inline-box;
  margin: 3px;
  font-size: 13px;
  border-radius: 8px;
}

/* _Advanced_promo */

.promos__wrapper {
  background: rgb(var(--color-background));
}

.promos {
  max-width: 1200px;
}

.promos__header {
  padding: 2rem 0;
}

.promos__title {
  margin: 0;
  padding: 20px;
  color: rgb(var(--color-foreground));
}

.promos__description {
  padding: 0 40px;
  color: rgb(var(--color-foreground));
}

.promos__wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-evenly;
  align-items: flex-start;
}

/* Advanced Promo */

.advanced-promo {
  text-decoration: none;
}

.advanced-promo__container {
  position: relative;
  width: 100%;
  max-height: 800px;
  overflow: hidden;
  border-radius: 20px;
}

.advanced-promo__container--framed .advanced-promo__content {
  border: 2px solid white;
}

.advanced-promo__container--boxed .advanced-promo__content {
  background-color: white;
  color: black !important;
}

.advanced-promo__media {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.advanced-promo__media img,
.advanced-promo__media video,
.advanced-promo__media iframe,
.advanced-promo__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advanced-promo__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.advanced-promo__content-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 2rem;
}

.advanced-promo__content-wrapper .advanced-promo__content {
  max-width: 90%;
}

.advanced-promo__content-wrapper h3,
.advanced-promo__content-wrapper h4,
.advanced-promo__content-wrapper p {
  color: inherit;
  text-align: inherit;
  font-size: inherit;
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1;
}

.advanced-promo__subheading {
  text-transform: uppercase;
}

.advanced-promo__heading {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 30px;
}

.advanced-promo__text {
  margin-bottom: 20px;
}

.advanced-promo__subheading,
.advanced-promo__heading,
.advanced-promo__text {
  color: rgb(var(--color-foreground)) !important;
}

.advanced-promo__actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.advanced-promo__actions .advanced-promo__link {
  width: 100%;
  min-width: 160px;
}

.advanced-promo__link {
  text-decoration: none;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .advanced-promo {
    min-width: 100% !important;
  }
}

@media (min-width: 768px) {
  .advanced-promo__content-wrapper .advanced-promo__content {
    max-width: 90%;
  }

  .advanced-promo__actions .advanced-promo__link {
    width: calc(100% - 20px);
  }
}

/* _Rich_text */

.rich-text {
  background-color: rgb(var(--color-background));
}

.rich-text-heading,
.rich-text-content {
  color: rgb(var(--color-foreground));
}

.rich-text .rich-text--container {
  margin: 0 auto;
  padding: 2rem 0;
}

.rich-text .rich-text-heading {
  margin-top: 0;
}

.rich-text .rich-text-content p {
  margin: 0;
}

/* _Footer */
.page-hero13-landing .site-footer-wrapper {
  margin-top: 0;
}

/* _Image_with_text */

.image-with-text__wrapper * {
  color: rgb(var(--color-foreground));
}

.image-with-text__wrapper .image-with-text__button {
  color: rgb(var(--color-button-text));
  background-color: rgb(var(--color-button));
}

.image-with-text__wrapper {
  background-color: rgb(var(--color-background));
}

.image-with-text__section-heading {
  margin: 0;
  padding-top: 3rem;
  padding-bottom: 1.5rem;
}

.image-with-text__image-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.image-with-text__image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* _Slideshow */

.slideshow-slide__image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slideshow-slide__content .slideshow-slide__content-background-link {
  color: inherit;
}

/* POV Promotional Banner Styles */
.pov-banner {
  color: white;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.pov-banner__content {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.pov-banner__headline {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
  text-align: left;
}

.pov-banner__features {
  flex: 1;
  max-width: 500px;
}

.pov-banner__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.pov-banner__features li {
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  text-transform: initial;
}

.pov-banner__features li:before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.2rem;
  color: white;
}

.pov-banner__features li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pov-banner {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1.5rem;
  }

  .pov-banner__headline {
    font-size: 2.5rem;
  }

  .pov-banner__features li {
    font-size: 1rem;
  }
}
/* Serie Mission - botones lado a lado */
#shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__button {
  width: auto;
  min-width: 130px;
  display: inline-flex;
  font-size: 0.95rem;
}

#shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__button--primary:first-of-type {
  background-color: #1e6fff;
  border-color: #1e6fff;
  color: #ffffff;
}

#shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__button--primary:last-of-type {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
#shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__content {
  flex-direction: row !important;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 8rem;
  height: 100%;

}

@media screen and (max-width: 749px) {
  #shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__content {
    padding-bottom: 5rem;
    height: auto;
  }
  
  #shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow {
    min-height: unset !important;
    height: auto !important;
  }

  #shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide__button {
    width: auto;
    min-width: 100px;
    display: inline-flex;
    font-size: 0.95rem;
  }
  #shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr pxs-slideshow,
  #shopify-section-template--22159165063384__dynamic_slideshow_gLdVEr .slideshow-slide {
  min-height: unset !important;
  height: auto !important;
  }
  
}
#shopify-section-template--22159165063384__1777601917b619c004 {
  padding-top: 45px;
  background-color: #000000;
}

@media screen and (max-width: 749px) {
  #shopify-section-template--22159165063384__1777601917b619c004 {
    padding-top: 32px;
    background-color: #000000;
  }
}

#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV .slideshow__slide,
#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV .slideshow-slide__media {
  height: 728px !important;
}
#shopify-section-template--22159165063384__slide_selector_buttons_XW6ypQ .slide-selector__description,
#shopify-section-template--22159165063384__slide_selector_buttons_XW6ypQ .slide-selector__text,
#shopify-section-template--22159165063384__slide_selector_buttons_XW6ypQ p {
  margin-top: 30px; 
}
#shopify-section-template--22159165063384__slide_selector_buttons_XW6ypQ {
  padding-bottom: 24px;
  background-color: #000000;
}
#shopify-section-template--22159165063384__dynamic_slideshow_yUtCXK {
  background-color: #000000;
}

#shopify-section-template--22159165063384__dynamic_slideshow_yUtCXK .slideshow {
  max-width: 80% !important;
  margin: 0 auto !important;
}

#shopify-section-template--22159165063384__dynamic_slideshow_yUtCXK .slideshow__slide,
#shopify-section-template--22159165063384__dynamic_slideshow_yUtCXK .slideshow-slide__media {
  height: 480px !important; /* 600px × 70% */
}

#shopify-section-template--22159165063384__dynamic_slideshow_yUtCXK video {
  object-fit: contain !important;
}
#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV {
  background-color: #000000;
}

#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV .slideshow {
  max-width: 90% !important;
  margin: 0 auto !important;
}

#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV .slideshow__slide,
#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV .slideshow-slide__media {
  height: 655px !important; /* 728px × 70% */
}

#shopify-section-template--22159165063384__dynamic_slideshow_myfyzV video {
  object-fit: contain !important;
}
#shopify-section-template--22159165063384__slide_selector_buttons_87nAQV .slide-selector__description,
#shopify-section-template--22159165063384__slide_selector_buttons_87nAQV .slide-selector__text,
#shopify-section-template--22159165063384__slide_selector_buttons_87nAQV p {
  margin-top: 25px;
}
#shopify-section-template--22159165063384__slide_selector_buttons_87nAQV {
  padding-bottom: 35px;
  background-color: #000000;
}
.ai-slideshow-slide-content-aq21yofzpr3ddbc9rbaigenblock6f1630blqnrei {
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
}
.ai-slideshow-slide-aq21yofzpr3ddbc9rbaigenblock6f1630blqnrei {
  padding-left: 0 !important;
}
#shopify-section-template--22159165063384__17780523432dfc7368 {
  background-color: #000000;
}

#shopify-section-template--22159165063384__17780523432dfc7368 video {
  display: block !important;
  max-width: 70% !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  height: 336px !important;
}
slideshow-component-aq21yofzpr3ddbc9rbaigenblock6f1630blqnrei {
  font-size: 0 !important;
  color: transparent !important;
}
#shopify-section-template--22159165063384__17780523432dfc7368 {
  background-color: #000000;
  padding-bottom: 0 !important;
}

#shopify-section-template--22159165063384__17780523432dfc7368 {
  background-color: #000000;
  padding-bottom: 0 !important;
}

#shopify-section-template--22159165063384__17780523432dfc7368 .slideshow__slide,
#shopify-section-template--22159165063384__17780523432dfc7368 [class*="ai-slideshow-slide"] {
  height: auto !important;
  min-height: unset !important;
}
.ai-slideshow-slide-content-amu95b1m5odc3rwivmaigenblock6f1630buanj8i {
  padding-left: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
}
.ai-slideshow-slide-amu95b1m5odc3rwivmaigenblock6f1630buanj8i {
  padding-left: 0 !important;
}
#shopify-section-template--22159165063384__blocks_hcFr8C video {
  display: block !important;
  max-width: 70% !important;
  margin: 0 auto !important;
  object-fit: contain !important;
  height: 336px !important;
}
#shopify-section-template--22159165063384__blocks_hcFr8C {
  background-color: #000000;
  padding-bottom: 0 !important;
}

#shopify-section-template--22159165063384__blocks_hcFr8C .slideshow__slide,
#shopify-section-template--22159165063384__blocks_hcFr8C [class*="ai-slideshow-slide"] {
  height: auto !important;
  min-height: unset !important;
}


body.page-serie-mission-landing .site-footer-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media screen and (min-width: 1024px) {
  body.page-serie-mission-landing .site-footer-wrapper {
    padding-top: 0 !important;
  }
}
@media (max-width: 749px) {
  .slider__video-wrapper.mobile-only video {
    filter: brightness(0.55);
  }
}
@media (max-width: 749px) {
  .slider__content {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 749px) {
  [class*="ai-slideshow-slide-content"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 749px) {
  [class*="ai-slideshow-header"] {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}
@media (max-width: 749px) {
  .rich-text-heading {
    padding-left: 16px !important;
    font-size: 0.9rem !important; /* ajusta a tu gusto */
  }
}
#shopify-section-template--22159165063384__blocks_hcFr8C {
  background-color: #000000 !important;
}

#shopify-section-template--22159165063384__advanced_promo_wnqa7R {
  background-color: #000000 !important;
}
#shopify-section-template--22159165063384__advanced_promo_wnqa7R .promos_wrapper {
  background-color: #000000 !important;
}

#shopify-section-template--22159165063384__advanced_promo_wnqa7R [class*="color-scheme"] {
  background-color: #000000 !important;
}

/* Slideshow serie-mission - imagen completa sin recorte */
#shopify-section-template--22159165063384__dynamic_slideshow_agcVPq .slideshow--height-large .slideshow-slide__image-wrapper {
  height: auto !important;
  aspect-ratio: 1024 / 576;
}

#shopify-section-template--22159165063384__dynamic_slideshow_agcVPq .slideshow--height-large .slideshow-slide__image--desktop {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}
/* Ocultar fondo blanco al lado del slideshow */
#shopify-section-template--22159165063384__dynamic_slideshow_agcVPq {
  background-color: #000000 !important;
}

/* Sticky Nav Serie - Fondo blanco, texto negro */
#shopify-section-template--22523991326936__sticky_nav_series_YWFCcr .sticky-nav-series {
  background-color: #ffffff !important;
  color: #000000 !important;
}

#shopify-section-template--22523991326936__sticky_nav_series_YWFCcr .sticky-nav-series a,
#shopify-section-template--22523991326936__sticky_nav_series_YWFCcr .sticky-nav-series span,
#shopify-section-template--22523991326936__sticky_nav_series_YWFCcr .sticky-nav-series p {
  color: #000000 !important;
}

/* Sticky Nav Serie - Texto del botón en blanco */
#shopify-section-template--22523991326936__sticky_nav_series_YWFCcr a.sticky-nav-series__btn {
  color: #ffffff !important;
}

#shopify-section-template--22523991326936__17780523432dfc7368 {
  background-color: #ffffff !important;
  color: #000000 !important;
}
#shopify-section-template--22523991326936__17780523432dfc7368 .ai-slideshow-header {
  background-color: #ffffff !important;
  color: #000000 !important;
}
#shopify-section-template--22523991326936__17780523432dfc7368 h2,
#shopify-section-template--22523991326936__17780523432dfc7368 h3,
#shopify-section-template--22523991326936__17780523432dfc7368 p {
  color: #000000 !important;
}
color: #000000 !important;
}








