html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 90px; /* Header-Höhe */
}


@font-face {
    font-display: swap;
    font-family: 'icons';
    src:
      url('/static-assets/fonts/icons.ttf?n2bcc7') format('truetype'),
      url('/static-assets/fonts/icons.woff?n2bcc7') format('woff'),
      url('/static-assets/fonts/icons.svg?n2bcc7#icons') format('svg');
    font-weight: normal;
    font-style: normal;
  }


@font-face{font-display:swap;font-family:'BeoSupreme';url('/fonts/beosupreme/beosupremeregular.woff2') format('woff2'),url('/fonts/beosupreme/beosupremeregular.woff') format('woff'),src:url('/fonts/beosupreme/BeoSupremeTT-Regular.ttf') format('truetype'),url("/fonts/beosupreme/BeoSupreme-Regular.otf") format("opentype");font-weight:normal;}/*!sc*/
@font-face{font-display:swap;font-family:'BeoSupreme';src:url('/fonts/beosupreme/beosupremelight.woff2') format('woff2'),url('/fonts/beosupreme/beosupremelight.woff') format('woff'),url('/fonts/beosupreme/BeoSupremeTT-Light.ttf') format('truetype'),url("/fonts/beosupreme/BeoSupreme-Light.otf") format("opentype");font-weight:normal;}/*!sc*/
@font-face{font-display:swap;font-family:'BeoSupreme';src:url('/fonts/beosupreme/beosuprememedium.woff2') format('woff2'),url('/fonts/beosupreme/beosuprememedium.woff') format('woff'),url('/fonts/beosupreme/BeoSupremeTT-Medium.ttf') format('truetype'),url("/fonts/beosupreme/BeoSupreme-Medium.otf") format("opentype");font-weight:normal;}/*!sc*/
@font-face{font-display:swap;font-family:'Fastpen';src:url('/fonts/beosupreme/BeoSupremeTT-Regular.ttf') format('truetype'),url("/fonts/beosupreme/BeoSupreme-Regular.otf") format("opentype");font-weight:400;}/*!sc*/
@font-face{font-display:swap;font-family:'Noto';src:url('/fonts/noto/notosansregular.woff2') format('woff2'),url('/fonts/noto/NotoSans-Regular.ttf') format('truetype');}/*!sc*/

.top-section {
  color:#555570;
  font-size:120%;
  margin:0;
  padding:0;
  width:95%;
}

.top-section a {
  color: #555570;
  text-decoration: underline;
}


#latest-video {
  color:#555570;
  font-size:120%;
  margin:0;
  padding:0;
}

#youtube-short-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: none;
  display: block;
}

#youtube-short-container {
  flex: 1;
  max-width: 600px;
}

#youtube-short-container iframe {
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Kleinere Bildschirme */
@media (max-width: 768px) {
#youtube-short-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: none;
  display: block;
}

#youtube-short-container {
  flex: 1;
  max-width: 95%;
}

  }

.youtube-fallback {
  display: none;
  text-align: center;
  margin-top: 20px;
}




#news {
  color:#555570;
  font-size:120%;
  margin:0;
  padding:0;
  
}

  
.bundle {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2rem;
  margin:0 0 20px 0;
  padding:0;
  position: relative;
}

.bundle:hover {
  z-index: 5;
}

.bundle-image {
  flex-shrink: 0;          /* verhindert Zusammendrücken */
  width: 20%;            /* Bild bewusst klein */
  position: relative;
  overflow: visible;       /* wichtig für Hover-Zoom */
}

.bundle-image img {
  width: 100%;
  height: auto;
  transition: 
    transform 0.35s ease,
    box-shadow 0.35s ease;
  transform-origin: center left; /* Zoom nach links */
  position: relative;
  z-index: 2;
}

.bundle-image img:hover {
  transform: scale(2.0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Kleinere Bildschirme */
@media (max-width: 768px) {
   .bundle-image img:hover {
    transform: none; /* kein Zoom mehr */
  }

  .bundle-text h4,
.bundle-text p {
  margin-top: 0;
}

.bundle-text {
  flex: unset;        /* oder: flex: 0 1 auto */
  width: 100%;            /* füllt ganze Breite */
  max-width: 100%;   /* optional, für schöne Zeilenlänge */
}

  .bundle {
    flex-direction: column; /* Bild über Text stapeln */
    align-items: stretch;   /* Text und Bild füllen die Breite */
  }

  .bundle-image {
    width: 100%;            /* Bild volle Breite */
    margin-bottom: 0.5rem;  /* optional: Abstand zum Text */
  }
  
}

.bundle-text {
  flex: unset;        /* oder: flex: 0 1 auto */
  max-width: 100%;   /* optional, für schöne Zeilenlänge */
}
}

.bundle-image img {
  filter: saturate(0.95);
}

.bundle-image img:hover {
  filter: saturate(1.1);
}

.bundle-text {
  flex: unset;        /* oder: flex: 0 1 auto */
  max-width: 100%;   /* optional, für schöne Zeilenlänge */
}


#team {
  color:#555570;
  font-size:120%;
  margin:0;
  padding:0;
  
}

p.memname {
  color:#000;
}

#team .guidance__slider {
  display: block !important;
}

/* Grid auf voller Breite */
#team .team-section {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

/* Verhindert Inline-/Flex-Zwang */
#team .team-member {
  min-width: 0 !important;
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  #team .team-section {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 640px) {
  #team .team-section {
    grid-template-columns: 1fr !important;
  }
}

#team {
  overflow: hidden;
}

.team-member {
  min-width: 0; /* extrem wichtig bei Grid + fremden Layouts */
}

.team-member p {
  margin: 0.25rem 0;
}

.team-member p:first-of-type {
  margin-bottom: 0;
  font-weight: 600;
}

.team-member p:last-of-type {
  margin-top: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

#team .team-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.team-section {
  justify-content: start;
}

/* Elterncontainer neutralisieren */
#kontakt .guidance__slider,
#kontakt .o-guidance__container,
#kontakt .o-guidance__wrapper {
  display: block !important;
  text-align: left !important;
}

/* Formular links ausrichten */
#kontakt .contact-form {
  text-align: left !important;
  max-width: 480px;
  width: 100%;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-sizing: border-box;
  padding: 0;
}

/* Inputs & Textareas */
.contact-form input,
.contact-form textarea {
  appearance: auto;
  -webkit-appearance: auto;
  width: 95%;
  box-sizing: border-box;
  padding: 0.5rem;
  font-size: 1rem;
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}

.contact-form textarea {
  height:100px;
}

/* Labels vertikal */
.contact-form label:not(.privacy) {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

/* DSGVO Checkbox nebeneinander */
.privacy-wrapper {
  text-align: left;
  margin-bottom: 1rem;
}

label.privacy {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: left !important;
  text-align: left;
  gap: 0.5rem;
  width:90%;
}

.contact-form label.privacy input[type="checkbox"] {
  margin-top: 0.2rem; /* optische Ausrichtung */
  margin-right: 5px;
  width:20px;
}

.contact-form label.privacy span {
  flex: 1;
  line-height: 1.4;
  font-size: 0.9rem;
  opacity: 0.85;
  display: inline !important;
  text-align: left;
}

.contact-form label.privacy a {
  text-decoration: underline;
}

/* Button */
.contact-form button {
  padding: 0.75rem;
  cursor: pointer;
  background-color: #191817;
  color: #fff;
  border: none;
  width: fit-content;
}

/* Honeypot */
.hp {
  display: none;
}

/* Kontakt-Sektion Layout */
.contact-section {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  color: #555570;
  font-size: 110%;
}

.contact-section a {
  color: #555570;
  text-decoration: underline;
}

.contact-content {
  flex: 1;
}

.contact-image {
  flex: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    width:95%;
  }

  .contact-image,
  .contact-form {
    width: 100%;
  }
}

.form-messages {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.form-messages .error {
  color: #c00;
  font-size:110%;
}

.form-messages .success {
  color: #090;
  font-size:110%;
}


#routenplaner {
  margin: 0 auto;
  padding: 0;
  color: #555570;
}

#routenplaner h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.route-inputs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.route-inputs input {
  flex: 1;
  padding: 0.5rem;
  font-size: 1rem;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 4px;
  outline: none;
}

.route-inputs input:focus {
  border-color: #191817;
}

.route-inputs button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  background-color: #191817;
  color: #fff;
  border: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.route-inputs button:hover {
  background-color: #333333;
}

/* Karte mit sanften Ecken */
#map {
  border-radius: 8px;
  overflow: hidden;
}

/* Responsive Anpassung */
@media (max-width: 600px) {
  .route-inputs {
    flex-direction: column;
  }

  .route-inputs button {
    width: 100%;
  }
}




h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6,.h7{margin:0 0 20px 0;color:#191817;}/*!sc*/
h1.-dark,h2.-dark,h3.-dark,h4.-dark,h5.-dark,h6.-dark,.h1.-dark,.h2.-dark,.h3.-dark,.h4.-dark,.h5.-dark,.h6.-dark,.h7.-dark{color:#191817;}/*!sc*/
h1.-light,h2.-light,h3.-light,h4.-light,h5.-light,h6.-light,.h1.-light,.h2.-light,.h3.-light,.h4.-light,.h5.-light,.h6.-light,.h7.-light{color:#FFF;}/*!sc*/
h1.-noMargin,h2.-noMargin,h3.-noMargin,h4.-noMargin,h5.-noMargin,h6.-noMargin,.h1.-noMargin,.h2.-noMargin,.h3.-noMargin,.h4.-noMargin,.h5.-noMargin,.h6.-noMargin,.h7.-noMargin{margin:0;}/*!sc*/
.-light{color:#FFF;}/*!sc*/

h1,.h1{font-size:200%;line-height:3rem;-webkit-letter-spacing:-0.5px;-moz-letter-spacing:-0.5px;-ms-letter-spacing:-0.5px;letter-spacing:-0.5px;font-weight:400;}/*!sc*/

h2,.h2{border-bottom: 2px solid #ccc; display: inline-block; padding-bottom: 8px; margin-top:40px;margin-bottom: 40px;font-size:150%;line-height:2.625rem;-webkit-letter-spacing:-0.5px;-moz-letter-spacing:-0.5px;-ms-letter-spacing:-0.5px;letter-spacing:-0.5px;font-weight:600;}/*!sc*/

h3,.h3{margin-top:25px;font-size:120%;line-height:2rem;-webkit-letter-spacing:-0.5px;-moz-letter-spacing:-0.5px;-ms-letter-spacing:-0.5px;letter-spacing:-0.5px;font-weight:600;}/*!sc*/

h4,.h4{margin-top:25px;font-size:100%;line-height:1.75rem;font-weight:600;-webkit-letter-spacing:0;-moz-letter-spacing:0;-ms-letter-spacing:0;letter-spacing:0;color:#191817;}/*!sc*/

h5,.h5{font-size:0.75rem;line-height:1.25rem;-webkit-letter-spacing:1.5px;-moz-letter-spacing:1.5px;-ms-letter-spacing:1.5px;letter-spacing:1.5px;font-weight:400;text-transform:uppercase;}/*!sc*/
@media (min-width:48rem){h5,.h5{font-size:0.75rem;line-height:1.25rem;-webkit-letter-spacing:1.7px;-moz-letter-spacing:1.7px;-ms-letter-spacing:1.7px;letter-spacing:1.7px;}}/*!sc*/
@media (min-width:64rem){h5,.h5{font-size:0.875rem;line-height:1.5rem;}}/*!sc*/
h6,.h6{font:0.625rem / 0.625rem BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;line-height:1.125rem;color:#555555;font-weight:400;}/*!sc*/
.b1{font-size:1rem;line-height:1.625rem;-webkit-letter-spacing:0.2px;-moz-letter-spacing:0.2px;-ms-letter-spacing:0.2px;letter-spacing:0.2px;font-weight:400;}/*!sc*/
.b1A{font-size:1rem;line-height:1.625rem;-webkit-letter-spacing:0.2px;-moz-letter-spacing:0.2px;-ms-letter-spacing:0.2px;letter-spacing:0.2px;font-weight:700;}/*!sc*/
.b2{font-size:1.125rem;line-height:1.75rem;-webkit-letter-spacing:0.2px;-moz-letter-spacing:0.2px;-ms-letter-spacing:0.2px;letter-spacing:0.2px;font-weight:400;}/*!sc*/
@media (min-width:48rem){.b2{font-size:1.25rem;line-height:2rem;}}/*!sc*/
@media (min-width:64rem){.b2{font-size:1.5rem;line-height:2.25rem;}}/*!sc*/
.b3{font-size:1rem;line-height:1.25rem;-webkit-letter-spacing:0.1px;-moz-letter-spacing:0.1px;-ms-letter-spacing:0.1px;letter-spacing:0.1px;font-weight:400;}/*!sc*/
.b3A{font-size:0.75rem;line-height:1.25rem;-webkit-letter-spacing:0.1px;-moz-letter-spacing:0.1px;-ms-letter-spacing:0.1px;letter-spacing:0.1px;font-weight:700;}/*!sc*/
@media (min-width:48rem){.b3A{font-size:0.875rem;line-height:1.5rem;}}/*!sc*/
.h1A{font-size:2rem;line-height:2.625rem;-webkit-letter-spacing:-0.5px;-moz-letter-spacing:-0.5px;-ms-letter-spacing:-0.5px;letter-spacing:-0.5px;font-weight:400;}/*!sc*/
@media (min-width:48rem){.h1A{font-size:3rem;line-height:3.5rem;}}/*!sc*/
@media (min-width:64rem){.h1A{font-size:5rem;line-height:6rem;}}/*!sc*/

p.mainlayout {font-size:100%;color:#555555;margin:0;}/*!sc*/
@media (min-width:64rem){p{font-size:100%;}}/*!sc*/

p + p{margin:0px;padding:0}/*!sc*/

a {
  color: #555570;
  text-decoration: underline;
  }

ul + p,ol + p{margin-top:15px;}/*!sc*/
p + .a-anchorButton{margin-top:25px;}/*!sc*/
p.-price{font-size:1.375rem;line-height:1;color:#191817;font-weight:300;}/*!sc*/
p.-download{font-size:0.875rem;line-height:1;color:#191817;font-weight:500;}/*!sc*/
p.-download + p{margin-top:5px;}/*!sc*/
p.-largePrice{font-size:1.375rem;line-height:1;color:#191817;font-weight:300;}/*!sc*/
@media (min-width:64rem){p.-largePrice{font-size:1.5rem;}}/*!sc*/
p.-secondary{font-size:1.125rem;line-height:1.3;color:#191817;}/*!sc*/
@media (min-width:64rem){p.-secondary{font-size:1.25rem;}}/*!sc*/
p.-tertiary{font-size:0.875rem;line-height:1.42;}/*!sc*/
@media (min-width:64rem){p.-tertiary{font-size:0.875rem;}}/*!sc*/
p.-quaternary{font-size:0.75rem;line-height:1.33;font-weight:500;color:#191817;}/*!sc*/
@media (min-width:64rem){p.-quaternary{font-size:0.875rem;}}/*!sc*/
p.-quinary{font-size:0.75rem;line-height:1.33;}/*!sc*/
p.-quinary + p{margin-top:8px;}/*!sc*/
@media (min-width:64rem){p.-quinary{font-size:0.75rem;}p.-quinary + p{margin-top:15px;}}/*!sc*/
p.-senary{font-size:1.5rem;line-height:1.33;color:#191817;}/*!sc*/
@media (min-width:64rem){p.-senary{font-size:1.5rem;}}/*!sc*/
p.-dark{color:#191817;}/*!sc*/
p.-light{color:#FFF;}/*!sc*/
p.-bold{font-weight:500;}/*!sc*/
small.-primary{font-size:0.75rem;font-weight:400;-webkit-letter-spacing:0.04em;-moz-letter-spacing:0.04em;-ms-letter-spacing:0.04em;letter-spacing:0.04em;line-height:1.3;color:#555555;}/*!sc*/
small.-secondary{font-size:0.625rem;font-weight:700;line-height:1;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;text-transform:uppercase;color:#555555;}/*!sc*/
a.-link.-primary{font-size:0.875rem;}/*!sc*/
@media (min-width:48rem){a.-link.-primary{font-size:1rem;line-height:1.15;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;}}/*!sc*/
a.-link.-secondary{font-size:0.875rem;-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
@media (min-width:48rem){a.-link.-secondary{font-size:1rem;line-height:1.15;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;}}/*!sc*/
a.-underline{display:inline-block;padding-bottom:7px;}/*!sc*/
a.-underline span{background-image:linear-gradient(to right,#555555 0%,#555555 100%);background-repeat:repeat-x;background-position:0 100%;background-size:100% 1px;padding-bottom:8px;}/*!sc*/
a.-small{font-size:0.875rem;}/*!sc*/
a.-small.-underline{padding-bottom:3px;}/*!sc*/
a.-small.-underline span{background-image:linear-gradient(to right,#555555 0%,#555555 100%);background-repeat:repeat-x;background-position:0 100%;background-size:100% 1px;padding-bottom:4px;}/*!sc*/
.-notify{margin-bottom:15px;display:inline-block;}/*!sc*/
a.-cta,button.-cta{font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;font-size:0.875rem;line-height:1.15;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;}/*!sc*/
.-fadeIn{-webkit-animation:jTBhup 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:jTBhup 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.-slideIn{-webkit-animation:kHDmOV 600ms forwards;animation:kHDmOV 600ms forwards;}/*!sc*/
.-slideOut{-webkit-animation:kVaNdd 600ms forwards;animation:kVaNdd 600ms forwards;}/*!sc*/
.-slideUp{-webkit-animation:berDwh 600ms forwards;animation:berDwh 600ms forwards;}/*!sc*/
.-slideDown{-webkit-animation:hkwfSp 600ms forwards;animation:hkwfSp 600ms forwards;}/*!sc*/
.-fadeInSlow{-webkit-animation:jTBhup 2000ms ease-in-out forwards;animation:jTBhup 2000ms ease-in-out forwards;}/*!sc*/
.-fadeInUp{-webkit-animation:cxjtGy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:cxjtGy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.-fadeInUpLong{-webkit-animation:gDibJC 800ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:gDibJC 800ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.-expand{-webkit-animation:dvfWVy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:dvfWVy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
@media (min-width:48rem){.-expand{-webkit-animation:czVaTc 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:czVaTc 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}}/*!sc*/
*{box-sizing:border-box;}/*!sc*/
#nprogress .bar{z-index:1040;background:#191817;height:4px;}/*!sc*/
#nprogress .spinner{display:none;}/*!sc*/
#nprogress .peg{box-shadow:none;}/*!sc*/
#nprogress .spinner-icon{border-top-color:#555555;border-left-color:#555555;margin-right:30px;margin-top:8px;}/*!sc*/
@media (min-width:64rem){#nprogress .spinner-icon{margin-right:170px;margin-top:6px;}}/*!sc*/
body{font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;overflow-x:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;min-width:320px;width:100%;}/*!sc*/
@media (min-width:64rem){body.modal-open{position:fixed;}}/*!sc*/
body.-scrollLocked{overflow:hidden !important;}/*!sc*/
body.-scrollLocked.-top{position:fixed;}/*!sc*/
body.-overflow-hidden{overflow:hidden;position:fixed;}/*!sc*/



main{position:relative;}/*!sc*/
.main-wrapper{-webkit-flex:1;-ms-flex:1;flex:1;padding-top:40px;}/*!sc*/
@media (min-width:64rem){.main-wrapper{padding-top:180px;}}/*!sc*/
.main-wrapper.isCategoryPage{padding-top:80px;}/*!sc*/


.non-supporting-nav-view{padding-top:60px;}/*!sc*/
.no-top-padding{padding-top:0px;}/*!sc*/
.no-header{padding-top:0;}/*!sc*/

.right{float:right;}/*!sc*/
.left{float:left;}/*!sc*/
.capitalize{text-transform:capitalize;}/*!sc*/
.zIndex{z-index:1;}/*!sc*/
.clearfix{clear:both;}/*!sc*/
.focus-styling:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;}/*!sc*/
.focus-styling:focus:not(.focus-visible){box-shadow:none;outline:none;}/*!sc*/
.break-word{word-break:break-word;}/*!sc*/
button,input,optgroup,select,textarea{font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;-webkit-letter-spacing:inherit;-moz-letter-spacing:inherit;-ms-letter-spacing:inherit;letter-spacing:inherit;}/*!sc*/
.is-hidden{display:none !important;}/*!sc*/
.is-visible{display:block;}/*!sc*/
.visually-hidden{position:absolute;white-space:nowrap;width:1px;height:1px;overflow:hidden;border:0;padding:0;-webkit-clip:rect(0 0 0 0);clip:rect(0 0 0 0);-webkit-clip-path:inset(50%);clip-path:inset(50%);}/*!sc*/
figure{margin:0;padding:0;}/*!sc*/
img{max-width:100%;}/*!sc*/
.full-bleed{width:100%;}/*!sc*/
.margin-none{margin:0;}/*!sc*/
.container{padding-left:16px;padding-right:16px;}/*!sc*/
.main-layout:focus{outline:none;}/*!sc*/
.main-layout.focus-visible{outline:1px dashed #0056b3;}/*!sc*/
button.add-cart{background-color:#555555;color:#FFF;text-align:center;cursor:pointer;padding:10px 35px;}/*!sc*/
.wide-mobile-view{position:relative;}/*!sc*/
.wide-mobile-view::before{content:'';position:absolute;height:100%;z-index:-1;top:0;left:-100vw;right:-100vw;background-color:#FAFAFA;}/*!sc*/
a.-cta,button.-cta{padding:12px 20px;border:0;cursor:pointer;}/*!sc*/
a.-cta.-primary,button.-cta.-primary{background-color:#BF2839;color:#FFF;}/*!sc*/
a.-cta.-primary:disabled,button.-cta.-primary:disabled,a.-cta.-primary.disabled,button.-cta.-primary.disabled{border:none;background-color:#8C8C8C !important;cursor:default;}/*!sc*/
a.-cta.-primary:active,button.-cta.-primary:active,a.-cta.-primary:focus,button.-cta.-primary:focus{background-color:#BF2839;}/*!sc*/
a.-cta.-secondary,button.-cta.-secondary{background-color:#FFF;color:#191817;border:1px solid #191817;line-height:1;}/*!sc*/
a.-cta.-secondary:focus,button.-cta.-secondary:focus,a.-cta.-secondary:hover,button.-cta.-secondary:hover,a.-cta.-secondary:active,button.-cta.-secondary:active{background-color:#191817;color:#FFF;border:0;}/*!sc*/
a.-cta.-tertiary,button.-cta.-tertiary{background-color:#191817;color:#FFF;border:1px solid #191817;font-weight:500;}/*!sc*/
a.-cta.-tertiary:focus,button.-cta.-tertiary:focus,a.-cta.-tertiary:active,button.-cta.-tertiary:active,a.-cta.-tertiary:hover,button.-cta.-tertiary:hover{background-color:#555555;color:#FFF;border:1px solid #191817;}/*!sc*/
a.-cta.-tertiary:disabled,button.-cta.-tertiary:disabled,a.-cta.-tertiary.disabled,button.-cta.-tertiary.disabled{border:none;background-color:#8C8C8C !important;cursor:default;}/*!sc*/
button,a,input{border:1px;}/*!sc*/
button:focus,a:focus,input:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;}/*!sc*/
button:focus:not(.focus-visible),a:focus:not(.focus-visible),input:focus:not(.focus-visible){box-shadow:none;outline:none;}/*!sc*/
ul.-noBullets:not(.row){list-style-type:none;margin:0;padding:0;}/*!sc*/
ul.-noBullets.row{list-style-type:none;margin-top:0;margin-bottom:0;padding:0;}/*!sc*/
ul.-inline li{display:inline-block;}/*!sc*/
.collapsible-section{margin-bottom:20px;max-height:250px;overflow-y:hidden;-webkit-transition:max-height 1.5s linear;transition:max-height 1.5s linear;box-shadow:0 0 4px 0 rgba(0,0,0,0.2);}/*!sc*/
.collapsible-section.is-expanded{overflow-y:auto;max-height:2000px;}/*!sc*/
.pac-container{max-height:240px;font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;background-color:#FAFAFA;overflow:scroll;overflow-x:hidden;box-shadow:none;border:1px solid #E5E5E5;border-top:none;}/*!sc*/
.pac-container::after{display:none;}/*!sc*/
.pac-container .pac-item{padding:1.25rem 1.5rem 1.25rem 0.5rem;color:#191817;font-size:1rem;line-height:1.15;-webkit-letter-spacing:normal;-moz-letter-spacing:normal;-ms-letter-spacing:normal;letter-spacing:normal;min-height:60px;border-top:1px solid #E5E5E5;border-right:1px solid #E5E5E5;border-right:none;}/*!sc*/
.pac-container .pac-item .pac-item-query{font-size:1rem;}/*!sc*/
.pac-container .pac-item .pac-item-query .pac-matched{font-weight:400;}/*!sc*/
.pac-container .pac-item.pac-item-selected,.pac-container .pac-item:hover{background-color:#FAFAFA;}/*!sc*/
.pac-container .pac-icon-marker{display:none;}/*!sc*/
.collapsible-container{font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;padding:1.25rem 1.25rem 2.5rem;border-top:2px solid #191817;background-color:#FFF;box-shadow:0 0 4px 0 rgba(0,0,0,0.2);overflow-x:hidden;}/*!sc*/
@media (min-width:64rem){.collapsible-container{padding:1.875rem 1.875rem 2.5rem;}}/*!sc*/
.collapsible-container .section-title{font-size:0.75rem;font-weight:500;line-height:1.5;-webkit-letter-spacing:1.4px;-moz-letter-spacing:1.4px;-ms-letter-spacing:1.4px;letter-spacing:1.4px;margin-bottom:40px;}/*!sc*/
.collapsible-container .user-message{padding-bottom:1.875rem;}/*!sc*/
.collapsible-container .valid-icon{float:right;color:#1B9636;font-size:0.75rem;}/*!sc*/
@media (min-width:64rem){.collapsible-container .section-title{font-size:0.875rem;line-height:1.29;-webkit-letter-spacing:1.6px;-moz-letter-spacing:1.6px;-ms-letter-spacing:1.6px;letter-spacing:1.6px;margin-bottom:30px;}}/*!sc*/
.overflow-hidden-x{overflow-x:hidden;}/*!sc*/
label.visible-dynamic-label .dynamic-placeholder{font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;font-size:0.875rem;color:#555555;cursor:default;}/*!sc*/
.dynamic-placeholder{color:#555555;position:absolute;z-index:1;top:20px;opacity:1;font-size:0.875rem;-webkit-letter-spacing:0.5px;-moz-letter-spacing:0.5px;-ms-letter-spacing:0.5px;letter-spacing:0.5px;font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;cursor:text;line-height:1.43;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:0.3s ease;transition:0.3s ease;}/*!sc*/
.visible-dynamic-label{margin-top:0;}/*!sc*/
.visible-dynamic-label.no-dynamic{margin-top:0;}/*!sc*/
.visible-dynamic-label .dynamic-placeholder{top:-10px;left:0;color:#555555;font-size:0.875rem;}/*!sc*/
.visible-dynamic-label .dynamic-placeholder.hide-on-top{display:none;}/*!sc*/
.app .custom-select-box{width:100%;margin-bottom:40px;position:relative;}/*!sc*/
.app .custom-select-box .dropdown-title{display:block;font-size:0.875rem;line-height:1.25rem;color:#555555;}/*!sc*/
.app .custom-select-box button.focus-styling{width:100%;padding:10px 6px 10px 11px;margin-top:6px;border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;font-size:1rem;background-position:98%;background-size:8px 10px;}/*!sc*/
.app .custom-select-box ul{width:100%;z-index:10;}/*!sc*/
.app .custom-select-box ul li.focus-styling{border:0;margin:0;}/*!sc*/
.app .custom-select-box .margin_left_10{margin-left:10px;}/*!sc*/
.app .custom-select-box .links{cursor:pointer;border-bottom:1px solid #555555;padding-bottom:1px;-webkit-text-decoration:none;text-decoration:none;color:#555555;}/*!sc*/
.grecaptcha-badge{visibility:hidden;}/*!sc*/
.captcha-error{text-align:center;margin:40px 0;color:#BF2839;display:block;}/*!sc*/
.captcha-error a{color:#BF2839;}/*!sc*/
.margin-top-10{margin-top:10px;}/*!sc*/
.margin-bottom-10{margin-bottom:10px;}/*!sc*/
.margin-bottom-20{margin-bottom:20px;}/*!sc*/
.no-pointer-events{pointer-events:none;}/*!sc*/
.isInDepthCPage{width:100%;}/*!sc*/
.isInDepthCPage .productComparison.a-container{max-width:1380px;}/*!sc*/
.isInDepthCPage .productComparison .compareBtnWrapper .ctaContainer{max-width:1380px;}/*!sc*/
@media (max-width:47.9375rem){.isInDepthCPage{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}}/*!sc*/
.heroSticky .hero-launcher-container{-webkit-transform:translateY(-75px) !important;-ms-transform:translateY(-75px) !important;transform:translateY(-75px) !important;}/*!sc*/
.heroSticky .hero-plugin-container,.heroSticky iframe.hero-shoppable-stories{bottom:158px !important;height:72vh !important;}/*!sc*/
a[target="_blank"] .externalLink-span{display:none;}/*!sc*/
a[target="_blank"] .externalLink-span .a-svgIcon{fill:currentColor;position:relative;top:0.125em;width:1em;height:1em;margin-left:calc(1em - 4px);}/*!sc*/
.relative{position:relative;}/*!sc*/
.w-full{width:100%;}/*!sc*/
.h-full{height:100%;}/*!sc*/
.h-inherit{height:inherit;}/*!sc*/
data-styled.g1[id="sc-global-etUkJZ1"]{content:"sc-global-etUkJZ1,"}/*!sc*/
.cnUYgB.contentful-banners{position:fixed;top:0px;left:0;right:0;z-index:1035;}/*!sc*/

/* 1. Header sichtbar, sticky */
.gxWDhC.o-header {
  position: fixed; /* oben fixiert */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: auto; /* Höhe wird über Kinder gesteuert */
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem; /* Abstand links/rechts */
}

/* 2. Scroll-Hintergrund */
.gxWDhC.o-header.-showHeader {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

/* 3. Mobile: immer weiß */

  .gxWDhC.o-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  }

  /* Optional: Button + Logo innen zentrieren / Abstand anpassen */
  .gxWDhC.o-header .a-headerLogo {
    margin-left: 1rem;
  }
  .gxWDhC.o-header .navMenu {
    margin-right: 1rem;
  }

/* Titelbanner Slider */

.custom-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.custom-hero::before {
  content: "";
  display: block;
  padding-top: 42.5%; /* 816 / 1920 = 0.425 */
}


.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;   /* statt absolute */
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  min-height: 816px; /* oder z.B. 500px */
    
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide::after {
  display: none;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Pfeile */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 5;
}

.hero-prev:hover,
.hero-next:hover {
  background: rgba(255,255,255,0.3);
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* Dots */
.hero-dots {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.hero-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s ease;
}

.hero-dot.active {
  background: #fff;
}

/* Mobile */
@media(max-width:768px){

  .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  min-height: 816px; /* oder z.B. 500px */
    
}
  
  .hero-slider {
    width:100%;
    height: 70vh;
    position: relative;   /* statt absolute */
    min-height: 300px;
    margin-top:130px;
  }

}

.slide1 { background-image: url('/titelbanner/bang-olufsen-muenster.jpg'); }
.slide2 { background-image: url('/titelbanner/bang-olufsen-atelier.jpg'); }
.slide3 { background-image: url('/titelbanner/beovisionharmony.jpg'); }
.slide4 { background-image: url('/titelbanner/beosound-theatre.jpg'); }

/* Mobile Bilder */
@media (max-width: 768px) {
.slide1 { background-image: url('/titelbanner/bang-olufsen-muenster-small.jpg'); }
.slide2 { background-image: url('/titelbanner/bang-olufsen-atelier-small.jpg'); }
.slide3 { background-image: url('/titelbanner/beovisionharmony-small.jpg'); }
.slide4 { background-image: url('/titelbanner/beosound-theatre-small.jpg'); }
}



/* ===============================
   Bang & Olufsen Mobile Menu
   =============================== */

:root {
  --bo-ease: cubic-bezier(0.85, 0, 0.15, 1);
}

/* Wrapper */
nav.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

/* Overlay */
.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.85,0,0.15,1);
  z-index: 999;           /* unter Panel */
  pointer-events: none;    /* nur Overlay klickbar, wenn sichtbar */
}

/* Panel */
.mobile-menu__panel {
  position: fixed;
  top: 0;
  left: 0;
  width: min(88vw, 360px);
  height: 100vh;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.85,0,0.15,1);
  z-index: 1000;          /* über Overlay */
  pointer-events: auto;    /* Links klickbar */
  padding: 64px 32px;
  overflow-y: auto;
}

.mobile-menu__header {
  display: flex;
  align-items: center;   /* vertikal mittig, falls Button höher ist */
  justify-content: flex-start; /* linksbündig */
  margin-bottom: 32px;   /* Abstand zu den Menülinks */
}

/* Schließen-Button SVG */
.mobile-menu__close svg {
  display: block;
  width: 16px;
  height: 16px;
}

.mobile-menu__close {
  display: inline-block;
  margin-bottom: 32px;
  font-size: 14px;
  font-weight: normal;
  text-decoration: none;
  color: #000;
  cursor: pointer;
}

.mobile-menu__close:hover {
  text-decoration: underline;
}

/* Geöffnet */
body.menu-open .mobile-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}


body.menu-open .mobile-menu__panel {
  transform: translateX(0);  /* Slide-In */
}

/* Hamburger ausblenden, wenn Menü offen */
body.menu-open .navMenu {
  opacity: 0;       /* unsichtbar */
  pointer-events: none; /* klickbar blockieren */
  transition: opacity 0.3s;
}

/* Menü-Items */
.menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-items li {
  margin-bottom: 32px;
}


/* Basis für Links im Menü */
.mobile-menu__panel ul.menu-items li a {
  position: relative;       /* wichtig für pseudo-element */
  text-decoration: none;    /* keine Standard-Unterstreichung */
  color: #000;
  font-size: 20px;
  display: inline-block;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

/* Pseudo-Element für Unterstreichung */
.mobile-menu__panel ul.menu-items li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #000;
  transition: width 0.3s ease; /* Animationsgeschwindigkeit */
}

/* Hover Effekt */
.mobile-menu__panel ul.menu-items li a:hover::after {
  width: 100%;              /* Linie fährt von links nach rechts */
}

.mobile-menu__panel ul.menu-items li a::after {
  transform-origin: left center; /* Startpunkt links */
}

.mobile-menu__panel ul.menu-items li a:hover::after {
  width: 100%;
}

/* Schließen-Link */
.mobile-menu__panel .mobile-menu__close {
  position: fixed;          /* fixiert im Viewport */
  top: 24px;                /* gleiche Höhe wie Hamburger-Button */
  left: auto;               /* nicht links */
  right: 24px;              /* Abstand vom rechten Rand */
  z-index: 1101;            /* über Panel & Overlay */
  text-decoration: none;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.gxWDhC.o-header.-is-fixed{position:relative;}/*!sc*/
.gxWDhC.o-header .onScrollHeader{height:60px;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .onScrollHeader{height:100px;}}/*!sc*/
.gxWDhC.o-header .onScrollHeader .o-header__container{height:60px;-webkit-transition:all 0.2s;transition:all 0.2s;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .onScrollHeader .o-header__container{height:100px;}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .onScrollHeader .a-headerLogo a{padding-top:0px;}}/*!sc*/
.gxWDhC.o-header.-showHeader{-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0);-webkit-transition:-webkit-transform 400ms ease-in-out;-webkit-transition:transform 400ms ease-in-out;transition:transform 400ms ease-in-out;}/*!sc*/
.gxWDhC.o-header.-showHeader.hideMainHeader{-webkit-transform:translateY(-60px);-ms-transform:translateY(-60px);transform:translateY(-60px);}/*!sc*/
.gxWDhC.o-header.-showHeader.hideMainHeader .popup-container{top:130px;}/*!sc*/
.gxWDhC.o-header.-open{background-image:none;}/*!sc*/
@-webkit-keyframes force-repaint{from{width:99.9%;}to{width:100%;}}/*!sc*/
@keyframes force-repaint{from{width:99.9%;}to{width:100%;}}/*!sc*/


.gxWDhC.o-header .o-header__primary .icon-store-cart{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-order:1;-ms-flex-order:1;order:1;margin-left:auto;}/*!sc*/
.gxWDhC.o-header .o-header__primary .icon-store-cart .store-icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__primary .icon-store-cart{margin-right:unset;}}/*!sc*/
.gxWDhC.o-header .o-header__primary .icon-store-cart .store-icn-link{height:32px;width:32px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.gxWDhC.o-header .o-header__primary .icon-store-cart .support-icn-link{height:44px;width:44px;padding:12px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.gxWDhC.o-header .o-header__primary .icon-store-cart .search-profile-cart-icons-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-items{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;list-style:none;padding:16px 10px 16px 0;font-weight:400;-webkit-transition:all 0.3s;transition:all 0.3s;margin:0;}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-items.-open .-active .header-listBtn::after{width:100%;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-listItem{text-align:center;margin:5px 20px;}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-listBtn{position:relative;background:transparent;text-transform:uppercase;color:#191817;cursor:pointer;padding:0;margin:initial;}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-listBtn::after{content:'';display:block;height:2px;width:100%;position:absolute;bottom:-2px;left:0;background-color:#191817;-webkit-transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0% 100%;-ms-transform-origin:0% 100%;transform-origin:0% 100%;}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-listBtn:hover::after,.gxWDhC.o-header .o-header__primary .header-listBtn:active::after,.gxWDhC.o-header .o-header__primary .header-listBtn:focus::after{width:100%;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);}/*!sc*/
.gxWDhC.o-header .o-header__primary .header-listLink{color:#191817;padding-bottom:3px;}/*!sc*/
.gxWDhC.o-header .o-header__primary .fnf-link{color:#BF2839;}/*!sc*/
.gxWDhC.o-header .o-header__primary .fnf-link::after{background-color:#BF2839;}/*!sc*/
.gxWDhC.o-header .o-header__primary.borderNone{border-bottom:transparent;}/*!sc*/

.gxWDhC.o-header .o-header__container{height:85px;width:100%;margin:0 auto;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 1rem;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:height 0.3s ease-in-out;transition:height 0.3s ease-in-out;}/*!sc*/

@media  (min-width:48rem) and (max-width:63.9375rem){.gxWDhC.o-header .o-header__container{height:82px;padding:0 44px;}}/*!sc*/

@media (min-width:64rem){.gxWDhC.o-header .o-header__container{padding:0 36px;height:116px;}}/*!sc*/

.gxWDhC.o-header .o-header__container:focus{outline:none;}/*!sc*/
.gxWDhC.o-header .o-header__container .a-headerLogo{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);left:50%;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container .a-headerLogo .header_image_logo{height:70px;}}/*!sc*/
.gxWDhC.o-header .o-header__container .a-headerLogo a{margin-top:20px;padding:0;}/*!sc*/
.gxWDhC.o-header .o-header__container .store-cart-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-order:1;-ms-flex-order:1;order:1;margin-right:-12px;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container .store-cart-wrapper{margin-right:unset;}}/*!sc*/
.gxWDhC.o-header .o-header__container .store-cart-wrapper .store-icn-link{display:none;height:32px;width:32px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (min-width:48rem){.gxWDhC.o-header .o-header__container .store-cart-wrapper .store-icn-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.gxWDhC.o-header .o-header__container .store-cart-wrapper .support-icn-link{display:none;height:44px;width:44px;padding:12px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (min-width:48rem){.gxWDhC.o-header .o-header__container .store-cart-wrapper .support-icn-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container.isSiteSeacrchVisible::before{bottom:-128px;}}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design{height:62px;width:100%;margin:0 auto;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding:0 1rem;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);-webkit-transition:height 0.3s ease-in-out;transition:height 0.3s ease-in-out;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.gxWDhC.o-header .o-header__container-new-design{padding:0 24px;}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container-new-design{padding:0 36px;height:100px;}}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design:focus{outline:none;}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design .a-headerLogo{position:absolute;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);left:50%;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container-new-design .a-headerLogo .header_image_logo{height:70px;}}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design .a-headerLogo a{padding:0;}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-order:1;-ms-flex-order:1;order:1;margin-right:-12px;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper{margin-right:unset;}}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper .store-icn-link{display:none;height:32px;width:32px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (min-width:48rem){.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper .store-icn-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper .support-icn-link{display:none;height:44px;width:44px;padding:12px;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (min-width:48rem){.gxWDhC.o-header .o-header__container-new-design .store-cart-wrapper .support-icn-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-header__container-new-design.isSiteSeacrchVisible::before{bottom:-128px;}}/*!sc*/


.gxWDhC.o-header .o-mainNav__header{height:60px;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;z-index:1;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-mainNav__header{padding:0 30px;}}/*!sc*/
.gxWDhC.o-header .o-mainNav__header .cart-num{background:#FFF;color:#191817;}/*!sc*/

@media (max-width:63.9375rem){.gxWDhC.o-header .o-mainNav.-open .o-mainNav__content{-webkit-clip-path:polygon(0 0,100% 0,100% 100%,0 100%);clip-path:polygon(0 0,100% 0,100% 100%,0 100%);}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .o-mainNav.-open .o-mainNav__content .onScrollHeader .a-headerLogo a{padding-top:0;}}/*!sc*/
.gxWDhC.o-header .-hideCart{visibility:hidden;}/*!sc*/
.gxWDhC.o-header.-hidden{pointer-events:none;}/*!sc*/
.gxWDhC.o-header.-hidden .o-header__primary{border:none;}/*!sc*/
.gxWDhC.o-header.-hidden .o-header__container,.gxWDhC.o-header.-hidden .o-header__primary::before{-webkit-transform:translate3d(0,-100%,0);-ms-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);}/*!sc*/
.gxWDhC.o-header.-timelineTransparent .o-header__primary{background-color:transparent;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled::after{opacity:1;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .o-header__primary{height:110px;background-color: #fff !important;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .header-listBtn,.gxWDhC.o-header.-transparencyEnabled .header-listLink{color:#FFF;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .header-listBtn::after,.gxWDhC.o-header.-transparencyEnabled .header-listLink::after{background-color:#FFF;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .fnf-link{color:#FFF;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .mainHeader-items .header-listBtn::after{background-color:#FFF;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .o-supportingNav ul.-right-gradient::after{display:none;}/*!sc*/
.gxWDhC.o-header.-transparencyEnabled .o-supportingNav ul.-left-gradient::before{display:none;}/*!sc*/
.gxWDhC.o-header.-darkMode .o-header__primary{background-color:#fff;border-bottom-color:#191817;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .loggedIn-label{font-size:10px;line-height:1.125rem;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;text-transform:uppercase;color:#191817;padding-right:18px;font-weight:500;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .loggedIn-label.btn-cta-profile-light{color:#FFF;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile{background:none;height:32px;min-width:32px;width:auto;padding:0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile{margin-right:8px;}}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile img{height:32px;width:32px;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile .btn-cta-profile-label{font-size:10px;font-weight:500;line-height:1rem;position:relative;color:#191817;display:none;padding-bottom:2px;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile .btn-cta-profile-label span{position:absolute;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile .btn-cta-profile-label span{top:-6px;}}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile .tranparentLabel{color:#FFF;}/*!sc*/
.gxWDhC.o-header .profile-btn-wrapper .btn-cta-profile:hover .btn-cta-profile-label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper{margin-left:32px;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search{background:none;height:32px;min-width:32px;width:auto;padding:0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;cursor:pointer;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .search-btn-wrapper .btn-cta-search{margin-right:8px;height:32px;width:32px;}}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search img{height:32px;width:32px;}/*!sc*/
@media (max-width:63.9375rem){.gxWDhC.o-header .search-btn-wrapper .btn-cta-search{margin-left:-6px;}.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .img-hoverText{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.gxWDhC.o-header .search-btn-wrapper .btn-cta-search img{width:32px;}}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .img-hoverText{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .btn-cta-search-label{font-size:10px;font-weight:500;line-height:1rem;position:relative;color:#191817;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;padding-bottom:2px;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .btn-cta-search-label span{position:relative;}/*!sc*/
@media (max-width:63.9375rem){.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .btn-cta-search-label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;color:#191817;}}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .isSmallLabel{position:relative;padding-left:6px;top:2px;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .isSmallLabel span{position:absolute;}/*!sc*/
.gxWDhC.o-header .search-btn-wrapper .btn-cta-search .tranparentLabel{color:#FFF;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .findStore-img-hoverText{width:32px;height:32px;}}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
@media (max-width:63.9375rem){.gxWDhC.o-header .store-locater-wrapper{-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;margin-left:-6px;}}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .store-locater-wrapper{margin-right:8px;}}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper .store-locater-label{padding-left:6px;color:#191817;}/*!sc*/
@media (max-width:63.9375rem){.gxWDhC.o-header .store-locater-wrapper .store-locater-label{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper .store-icn-link{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper .store-locater-hoverLabel{display:none;font-size:10px;font-weight:500;line-height:1rem;position:relative;bottom:0;color:#191817;padding-bottom:2px;}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper .store-locater-hoverLabel span{position:absolute;white-space:nowrap;}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .store-locater-wrapper .store-locater-hoverLabel span{top:-6px;}}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper .tranparentLabel{color:#FFF;}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper:hover .store-locater-hoverLabel{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.gxWDhC.o-header .store-locater-wrapper.storeIcon{margin-bottom:40px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container{bottom:auto;top:60px;right:36px;width:392px;padding:24px;padding-bottom:16px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;box-shadow:0 -2px 16px rgb(0 0 0 / 15%);}/*!sc*/
@media (min-width:64rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container{top:100px;}}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container{width:auto;padding:20px;right:16px;left:16px;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container{right:16px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content{width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content.isSingleLineItem .lineItems__wrapper{grid-template-columns:344px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper{display:grid;grid-template-columns:168px 168px;grid-gap:8px;overflow:hidden auto;}/*!sc*/
@media  (min-width:64rem) and (max-width:89.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper{max-height:220px;}}/*!sc*/
@media (min-width:90rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper{max-height:300px;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper{max-height:200px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem{background:#FAFAFA;text-align:center;min-height:168px;overflow:none;padding-bottom:20px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem:last-child,.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem:nth-last-child(2):nth-child(odd){margin-bottom:24px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .lineItem_img{margin-top:8px;width:88px;height:88px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .lineItem__name{font-size:0.875rem;line-height:1.25rem;color:#191817;margin-top:12px;padding-left:12px;padding-right:12px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .variant__title{font-size:0.75rem;line-height:1rem;color:#737373;margin-top:0;padding-left:12px;padding-right:12px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .gift-wrap{line-height:1rem;margin-top:0;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .gift-wrap .gift-wrapping-image{width:16px;height:16px;margin-right:4px;vertical-align:middle;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .lineItems__wrapper .lineItem .gift-wrap .gift-wrapping-text{font-weight:325;font-size:0.75rem;line-height:1rem;color:#555555;vertical-align:middle;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cartReminderPopup__content .basketButton__separator{margin-bottom:16px;border-top:1px solid #FAFAFA;width:392px;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cross-btn{right:8px;top:8px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cross-btn{right:12px;top:6px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cross-btn .close-icon{width:10px;height:10px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .cross-btn .close-icon{width:8px;height:8px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__icon{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:90px;padding-bottom:24px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__icon{display:none;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__title{font-size:0.75rem;line-height:1.125rem;text-transform:uppercase;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;padding-bottom:12px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__title{padding-bottom:20px;padding-top:8px;-webkit-letter-spacing:3px;-moz-letter-spacing:3px;-ms-letter-spacing:3px;letter-spacing:3px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__description{font-weight:325;font-size:0.875rem;line-height:1.25rem;text-align:center;color:#555555;padding-bottom:32px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__description{padding-bottom:24px;}}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__basketButton{width:100%;}/*!sc*/
.gxWDhC.o-header .cartReminderPopup__wrapper .popup-container .basketPopup__basketButton .a-anchorButton{padding:10px;width:100%;}/*!sc*/
.gxWDhC.o-header .mobile-mainNav .nav-level-1 .m-listItem,.gxWDhC.o-header .mobile-mainNav .nav-level-2 .m-listItem{padding-bottom:12px;}/*!sc*/
@media (max-width:47.9375rem){.gxWDhC.o-header .mobile-mainNav .nav-items{overflow-y:scroll;}}/*!sc*/
@media  (min-width:20rem) and (max-width:23.375rem){.gxWDhC.o-header .hasMultipleBanners .o-mainNav__container{height:65vh;}}/*!sc*/
.gxWDhC.o-header__observer{width:20px;position:absolute;top:0;}/*!sc*/
.gxWDhC.o-header__observer span{display:block;}/*!sc*/
.iQDRjs.a-navToggle{position:relative;background:none;height:18px;width:76px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;cursor:pointer;padding:0;}/*!sc*/
.iQDRjs.a-navToggle em{display:block;position:relative;text-indent:-999px;width:20px;height:1.5px;margin-top:-9px;margin-right:11px;background:#191817;}/*!sc*/
.iQDRjs.a-navToggle em::before{content:'';display:block;width:100%;height:100%;background:#191817;position:absolute;left:0;top:8px;}/*!sc*/
.iQDRjs.a-navToggle em::after{top:10px;}/*!sc*/
.iQDRjs.a-navToggle .close-icon{display:none;}/*!sc*/
.iQDRjs.a-navToggle .menu-label{color:#191817;}/*!sc*/
.iQDRjs.a-navToggle:focus{outline-offset:0;}/*!sc*/
.iQDRjs.a-navToggle.-isInverted em{background:#000;}/*!sc*/
.iQDRjs.a-navToggle.-isInverted em::before,.iQDRjs.a-navToggle.-isInverted em::after{background:#000;}/*!sc*/
.iQDRjs.a-navToggle.-isInverted .menu-label{color:#000;}/*!sc*/
.iQDRjs.a-navToggle.-alternate em::before,.iQDRjs.a-navToggle.-alternate em::after{-webkit-transform:translate3d(6px,0,0);-ms-transform:translate3d(6px,0,0);transform:translate3d(6px,0,0);}/*!sc*/
.iQDRjs.a-navToggle.-alternate.-navOpen{width:unset;}/*!sc*/
.iQDRjs.a-navToggle.-alternate.-navOpen em{display:none;}/*!sc*/
.iQDRjs.a-navToggle.-alternate.-navOpen .close-icon{display:block;width:16px;height:16px;margin-right:11px;}/*!sc*/
.htgDld.a-svgIcon{height:100%;width:100%;-webkit-transition:fill 400ms cubic-bezier(0.165,0.84,0.44,1);transition:fill 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.htgDld.a-svgIcon.-xSmall{width:8px;height:8px;}/*!sc*/
.htgDld.a-svgIcon.-small{width:12px;height:12px;}/*!sc*/
.htgDld.a-svgIcon.-invertColor{fill:#FFF;}/*!sc*/
.htgDld.a-svgIcon.-invertColor::before{background:#FFF;}/*!sc*/
.htgDld.a-svgIcon.-disabled{fill:#FFF;}/*!sc*/
.htgDld.a-svgIcon.-disabled::before{background:#E5E5E5;}/*!sc*/
.htgDld.a-svgIcon.-disabledArrowRight{fill:#FFF;}/*!sc*/
.htgDld.a-svgIcon.-disabledArrowRight::before{background:#FFF;}/*!sc*/
.htgDld.a-svgIcon.-arrowRight::before{content:'';position:relative;display:inline-block;width:40px;height:2px;margin-left:-12px;background:#191817;top:-4px;left:5px;-webkit-transform:scaleX(0.8);-ms-transform:scaleX(0.8);transform:scaleX(0.8);-webkit-transform-origin:100% 50%;-ms-transform-origin:100% 50%;transform-origin:100% 50%;-webkit-transition:-webkit-transform 200ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 200ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 200ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.htgDld.a-svgIcon.a-svgIcon-webGLConfig path:last-child{fill:#FFF;}/*!sc*/
.htgDld.a-svgIcon.a-svgIcon-starEmpty,.htgDld.a-svgIcon.a-svgIcon-halfFilled,.htgDld.a-svgIcon.a-svgIcon-starFilled{stroke:#555555;fill:none;}/*!sc*/
.htgDld.a-svgIcon.a-svgIcon-starEmpty.a-svgIcon-starFilled,.htgDld.a-svgIcon.a-svgIcon-halfFilled.a-svgIcon-starFilled,.htgDld.a-svgIcon.a-svgIcon-starFilled.a-svgIcon-starFilled{fill:#555555;}/*!sc*/

.jaSVxA.a-headerLogo{left:0;right:0;top:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:flex-end;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;z-index:-1;
  width:95%;
}/*!sc*/

@media (min-width: 48rem) {.jaSVxA.a-headerLogo {justify-content: center;}
}


.jaSVxA.a-headerLogo a{padding:0;display:block;}/*!sc*/

.jaSVxA.a-headerLogo .h2{margin:0;font-size:0rem;line-height:1;}/*!sc*/
.jaSVxA.a-headerLogo .trnsitionEffect{-webkit-transition:-webkit-transform 500ms cubic-bezier(0.85,0,0.15,1);-webkit-transition:transform 500ms cubic-bezier(0.85,0,0.15,1);transition:transform 500ms cubic-bezier(0.85,0,0.15,1);}/*!sc*/
.jaSVxA.a-headerLogo .scaleImage{width:32px;-webkit-transition:all 0.3s;transition:all 0.3s;}/*!sc*/
@media (min-width:64rem){.jaSVxA.a-headerLogo .scaleImage{-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;}}/*!sc*/
.jaSVxA.a-headerLogo .scaleImage .o-header__container{height:auto;}/*!sc*/

.jaSVxA.a-headerLogo img{width:32px;height:32px;-webkit-transition:all 0.3s ease-in;transition:all 0.3s ease-in;}/*!sc*/

@media (min-width:64rem){.jaSVxA.a-headerLogo img{-webkit-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;width:50px;}}/*!sc*/
.jaSVxA.a-headerLogo .logo-container-scrolled{-webkit-transform:translateY(5px);-ms-transform:translateY(5px);transform:translateY(5px);}/*!sc*/

@media (min-width:48rem){.jaSVxA.a-headerLogo .logo-container-scrolled{-webkit-transform:translateY(7px);-ms-transform:translateY(7px);transform:translateY(7px);}}/*!sc*/
.jaSVxA.a-headerLogo .logo{width:42px;height:42px;max-height:80px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;margin:auto;}/*!sc*/

@media (min-width:64rem){.jaSVxA.a-headerLogo .logo{width:50px;height:50px;max-height:80px;}}/*!sc*/


.jaSVxA.a-headerLogo .logo-small{width:32px;max-height:32px;}/*!sc*/
@media (min-width:64rem){.jaSVxA.a-headerLogo .logo-small{width:40px;max-height:40px;}}/*!sc*/
.jaSVxA.a-headerLogo .logo-scrolled{-webkit-filter:brightness(1.9);filter:brightness(1.9);}/*!sc*/
.jaSVxA.a-headerLogo .textContainer{width:42px;height:14px;font-size:9px;text-align:center;margin-top:4px;-webkit-transform:0.25s ease-in-out,opacity 0.25s ease-in-out;-ms-transform:0.25s ease-in-out,opacity 0.25s ease-in-out;transform:0.25s ease-in-out,opacity 0.25s ease-in-out;}/*!sc*/
@media (min-width:64rem){.jaSVxA.a-headerLogo .textContainer{width:50px;height:16px;}}/*!sc*/
.jaSVxA.a-headerLogo .hide{opacity:0;pointer-events:none;}/*!sc*/


.hDjgnE{cursor:pointer;-webkit-text-decoration:none;text-decoration:none;color:#555555;-webkit-transition:color 200ms cubic-bezier(0.165,0.84,0.44,1);transition:color 200ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.hDjgnE:hover{color:#191817;}/*!sc*/
.hDjgnE:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;}/*!sc*/
.hDjgnE:focus:not(.focus-visible){box-shadow:none;outline:none;}/*!sc*/
.gUaYhD.a-headerCart a{display:block;height:32px;width:32px;}/*!sc*/
@media (min-width:64rem){.gUaYhD.a-headerCart a{margin-right:8px;}}/*!sc*/
.gUaYhD.a-headerCart img{height:32px;width:32px;}/*!sc*/
.gUaYhD.a-headerCart .cart-num{position:absolute;font-size:0.75rem;line-height:1.4;top:-3px;right:0;width:20px;height:20px;border-radius:50%;padding-top:3px;display:block;font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;font-weight:bold;text-align:center;-webkit-font-smoothing:antialiased;background:#191817;color:#FFF;}/*!sc*/
.gUaYhD.a-headerCart .empty-cart:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;}/*!sc*/
.gUaYhD.a-headerCart .empty-cart:focus:not(.focus-visible){box-shadow:none;outline:none;}/*!sc*/
.gUaYhD.a-headerCart .ecomDisabledCart{display:block;height:32px;width:32px;}/*!sc*/
.czzJlK.o-hero{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.czzJlK.o-hero + div .o-productDetail{margin-top:0;padding-top:16px;padding-bottom:24px;}/*!sc*/
@media (max-width:47.9375rem){.czzJlK.o-hero.-isHeroSixteenNine{padding-left:16px;padding-right:16px;}}/*!sc*/

.czzJlK.o-hero .o-hero__wrapper{position:relative;margin:0 auto;padding:0;width:100%;min-height:calc(75vh - 0px);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;overflow:hidden;}/*!sc*/


.czzJlK.o-hero .o-hero__wrapper .o-hero__bg,.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg,.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImmersive,.czzJlK.o-hero .o-hero__wrapper .o-hero__bgVideo,.czzJlK.o-hero .o-hero__wrapper .o-hero__fullVideo,.czzJlK.o-hero .o-hero__wrapper .a-responsiveImage{position:absolute;width:100%;height:100%;top:0;left:0;}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper.-isHeroSplit{margin-top:0px;}}/*!sc*/

.czzJlK.o-hero .o-hero__wrapper.-productheader{top:0;height:50svh;min-height:500px;width:100vw;}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper.-productheader{height:100dvh;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-isHeroSplit,.czzJlK.o-hero .o-hero__wrapper.-isHeroV4,.czzJlK.o-hero .o-hero__wrapper.-isHeroSplitV2{min-height:auto;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-isHeroSplit,.czzJlK.o-hero .o-hero__wrapper.-isHeroSplitV2{padding:0 16px;}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper.-isHeroSplit,.czzJlK.o-hero .o-hero__wrapper.-isHeroSplitV2{padding:0;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-isHeroV4{padding:0 16px 24px;}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper.-isHeroV4{padding:0;padding-bottom:24px;}}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper.-isHeroV4{padding-bottom:32px;}}/*!sc*/


.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg .a-responsiveImage{width:100%;height:100%;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg .a-parallaxImage{position:absolute;inset:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg .a-parallaxImage .parallax-inner{-webkit-transform:translate3d(0%,6.6103%,0);-ms-transform:translate3d(0%,6.6103%,0);transform:translate3d(0%,6.6103%,0);position:absolute;inset:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg .a-parallaxImage .parallax-inner > div{width:100%;height:100%;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgImg img{width:100%;height:100%;object-fit:cover;object-position:center;font-family:'object-fit: cover; object-position: center;';}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgVideo{background:#191817;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__bgVideo .vjs-poster,.czzJlK.o-hero .o-hero__wrapper .o-hero__bgVideo .vjs-big-play-button{display:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__fullVideo{opacity:0;-webkit-transition:opacity 500ms ease-in-out;transition:opacity 500ms ease-in-out;background:#191817;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__fullVideo.-playing{opacity:1;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__closeBtn{position:absolute;top:15px;right:15px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content{position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1;-ms-flex:1;flex:1;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;height:100%;min-height:100vh;background:rgb(0 0 0 / 50%);}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent{background:linear-gradient(360deg,rgb(25 24 23 / 70%) 0%,rgb(25 24 23 / 0%) 94.69%);-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media{.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent{-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;text-align:center;}}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent{text-align:left;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus{background-color:#191817;color:#FFF;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-animatedIcon,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-animatedIcon,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-animatedIcon,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-svgIcon,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-svgIcon,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-svgIcon{fill:#FFF;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-animatedIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-animatedIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-animatedIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-svgIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-svgIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-svgIcon.-arrowRight.-left::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-animatedIcon.-arrowRight.-right::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-animatedIcon.-arrowRight.-right::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-animatedIcon.-arrowRight.-right::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:hover .a-svgIcon.-arrowRight.-right::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:active .a-svgIcon.-arrowRight.-right::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper .a-anchorButton:focus .a-svgIcon.-arrowRight.-right::before{background-color:#FFF;}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .cta_wrapper{margin-top:40px;}}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section{-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;}}/*!sc*/
@media (max-width:47.9375rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .lower-section .o-hero__description{margin-bottom:36px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container{width:auto;}/*!sc*/
@media{.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container{margin-bottom:57px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a{width:auto;min-width:140px;background-color:#FFF;color:#191817;border:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a:hover{background-color:#E5E5E5;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a .a-animatedIcon svg{fill:#191817;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a .a-animatedIcon.-arrowRight.-left::before{background-color:#191817;}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container{max-width:initial;}.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a{width:228px;min-width:140px;}.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container p{margin-bottom:0;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container{margin-bottom:66px;}}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container{margin-bottom:20px;}.czzJlK.o-hero .o-hero__wrapper .o-hero__content.-isReVampContent .a-container a{width:auto;min-width:140px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-anchorButton{display:inline-block;margin:0 auto 20px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-anchorButton:last-child{margin:0 auto;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-anchorButton.-primary{width:220px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container{width:100%;opacity:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container .a-anchorButton.secondary-cta{margin-top:15px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent{max-width:1512px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent .o-hero__title{margin-bottom:20px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent .o-hero__subtitle{font-size:2.5rem;-webkit-letter-spacing:-0.5px;-moz-letter-spacing:-0.5px;-ms-letter-spacing:-0.5px;letter-spacing:-0.5px;line-height:3rem;font-weight:500;margin-bottom:0;padding-bottom:28px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent .o-hero__subtitle{font-size:3rem;line-height:3.5rem;}}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent .o-hero__subtitle{font-size:4rem;line-height:1.12;line-height:4.5rem;}}/*!sc*/
@media (max-width:47.9375rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content .o-hero__container.-isReVampContent .o-hero__subtitle{margin-bottom:16px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container{position:relative;height:100%;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;max-width:664px;-webkit-animation-delay:500ms;animation-delay:500ms;-webkit-transition:opacity 400ms cubic-bezier(0.165,0.84,0.44,1);transition:opacity 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
@media (min-width:48rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container{width:80%;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container.-isFaded{-webkit-animation:none;animation:none;opacity:0.4;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container h5,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .h5,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container h2,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container span.h1,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .h2,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container p,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container div.o-hero__description_f1{color:#FFF;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container h5.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .h5.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container h2.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container span.h1.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .h2.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container p.-reVampContent,.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container div.o-hero__description_f1.-reVampContent{font-weight:400;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .-titleSubtitleContainer{margin-bottom:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .-titleSubtitleContainer span{display:block;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .-titleSubtitleContainer span.o-hero__subtitle{text-transform:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .a-markdownContent a.-underline span{background-image: padding-bottom:0px;color:#FFF;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container .a-markdownContent a.-underline span span{background-image:linear-gradient(to right,#FFF 0%,#FFF 100%);background-repeat:repeat-x;background-position:0 100%;background-size:100% 1px;padding-bottom:1px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container p{margin-bottom:35px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container p:last-child{margin-bottom:0;}/*!sc*/
@media (max-width:30rem){.czzJlK.o-hero .o-hero__wrapper .o-hero__content .a-container p:last-child{margin-bottom:35px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.sale-hero .a-container{max-width:950px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.sale-hero .a-container::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.sale-hero .a-container::after{display:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__content.hideVerticalLines .a-container::before,.czzJlK.o-hero .o-hero__wrapper .o-hero__content.hideVerticalLines .a-container::after{display:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper .o-hero__icon{position:relative;margin:0 auto 10px;width:30px;height:30px;fill:white;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-overlap{margin-top:-60px;z-index:1;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-overlap.-playing{z-index:99;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-overlap .o-hero__content{padding-top:60px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-overlap .o-hero__fullVideo{z-index:99;}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper.-overlap{margin-top:-101px;}}/*!sc*/
@media (min-width:90rem){.czzJlK.o-hero .o-hero__wrapper.-overlap .o-hero__content{margin-top:-101px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-anchor .o-hero__content{margin-top:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide{max-width:1510px;min-height:36vw;}/*!sc*/
@media (min-width:90rem){.czzJlK.o-hero .o-hero__wrapper.-wide{min-height:520px;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide .pause-button-wrapper{right:50px;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__bg,.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__content,.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__fullVideo{width:calc(100% - 2rem);height:100%;min-height:auto;top:0;left:1rem;}/*!sc*/
@media (min-width:64rem){.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__bg,.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__content,.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__fullVideo{width:calc(100% - 4.5rem);left:2.25rem;}}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__content{background:none;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__content .a-anchorButton{margin:0 auto;border:0;}/*!sc*/
.czzJlK.o-hero .o-hero__wrapper.-wide .o-hero__content .a-anchorButton .a-animatedIcon{right:0;}/*!sc*/
@media (width <= 1920px){.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2{-webkit-letter-spacing:9px;-moz-letter-spacing:9px;-ms-letter-spacing:9px;letter-spacing:9px;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:first-child{margin-right:7%;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:last-child{margin-left:6%;}}/*!sc*/
@media (width <= 1200px){.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2{-webkit-letter-spacing:7px;-moz-letter-spacing:7px;-ms-letter-spacing:7px;letter-spacing:7px;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:first-child{margin-right:11%;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:last-child{margin-left:7%;}}/*!sc*/
@media (width <= 720px){.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2{font-size:0.9375rem;margin-right:0;width:100%;text-align:center;-webkit-letter-spacing:6px;-moz-letter-spacing:6px;-ms-letter-spacing:6px;letter-spacing:6px;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:first-child{margin-right:0;right:0;top:35%;}.czzJlK.o-hero .-immersiveHarmony1 #visible-title h2:last-child{margin-left:0;left:0;top:41%;}}/*!sc*/
.kCwnwR.a-observer{height:100%;}/*!sc*/
.kCwnwR.a-observer.-placeholder{object-fit:contain;}/*!sc*/
.kCwnwR.a-observer .-staggerIn,.kCwnwR.a-observer .-staggerInUp,.kCwnwR.a-observer .-staggerInUpLong{opacity:0;}/*!sc*/
.kCwnwR.a-observer.-inView .-staggerIn{-webkit-animation:jTBhup 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:jTBhup 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.kCwnwR.a-observer.-inView .-staggerInLong{-webkit-animation:jTBhup 2000ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:jTBhup 2000ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.kCwnwR.a-observer.-inView .-staggerInUp{-webkit-animation:cxjtGy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:cxjtGy 1200ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.kCwnwR.a-observer.-inView .-staggerInUpLong{-webkit-animation:gDibJC 800ms cubic-bezier(0.165,0.84,0.44,1) forwards;animation:gDibJC 800ms cubic-bezier(0.165,0.84,0.44,1) forwards;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger0{-webkit-animation-delay:0ms;animation-delay:0ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger1{-webkit-animation-delay:500ms;animation-delay:500ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger2{-webkit-animation-delay:550ms;animation-delay:550ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger3{-webkit-animation-delay:600ms;animation-delay:600ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger4{-webkit-animation-delay:650ms;animation-delay:650ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger5{-webkit-animation-delay:700ms;animation-delay:700ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger6{-webkit-animation-delay:750ms;animation-delay:750ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger7{-webkit-animation-delay:800ms;animation-delay:800ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger8{-webkit-animation-delay:850ms;animation-delay:850ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger9{-webkit-animation-delay:900ms;animation-delay:900ms;}/*!sc*/
.kCwnwR.a-observer.-inView .-stagger10{-webkit-animation-delay:950ms;animation-delay:950ms;}/*!sc*/

.ibyToJ.m-heroV4{margin-top:20px;  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 816;
  max-height: 816px;}/*!sc*/

@media (min-width:48rem)
{.ibyToJ.m-heroV4{height:calc(40vh - 0px);background:#FAFAFA;}}/*!sc*/

@media (min-width:64rem)
{.ibyToJ.m-heroV4{height:calc(60vh - 0px);}}/*!sc*/


.ibyToJ.m-heroV4 .heroV4__content{position:absolute;bottom:0;width:100%;z-index:2;text-align:center;}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content.-hasBanner .heroV4-banner{padding:0px;background-color:rgb(0 0 0 / 40%);}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content.-hasBanner .heroV4-banner .description{margin:0;width:100%;text-align:center;color:#FCFAEE;}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content.-hasBanner .heroV4__contentWrapper{padding-bottom:32px;}/*!sc*/
@media (min-width:48rem){.ibyToJ.m-heroV4 .heroV4__content.-hasBanner .heroV4__contentWrapper{padding-bottom:40px;}}/*!sc*/
@media (min-width:64rem){.ibyToJ.m-heroV4 .heroV4__content.-hasBanner .heroV4__contentWrapper{padding-bottom:40px;}}/*!sc*/
@media (min-width:48rem){.ibyToJ.m-heroV4 .heroV4__content{text-align:left;}}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper{padding:0 16px 32px;}/*!sc*/
@media (min-width:48rem){.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper{padding:0 36px 40px;}}/*!sc*/
@media (min-width:64rem){.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper{padding:0 88px 60px;}}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper::after{content:'';position:absolute;width:100%;height:100%;bottom:0;left:0;background:linear-gradient(0deg,rgb(0 0 0 / 75%) 0%,rgb(0 0 0 / 0%) 100%);-webkit-transition:all 0.3s;transition:all 0.3s;z-index:-1;}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper .heroV4__title{color:#FCFAEE;margin-bottom:0;}/*!sc*/
@media (min-width:64rem){.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper .heroV4__title{text-align:center;width:850px;}}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper .heroV4__description{color:#FCFAEE;margin-top:16px;}/*!sc*/
@media (min-width:64rem){.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper .heroV4__description{width:500px;}}/*!sc*/
.ibyToJ.m-heroV4 .heroV4__content .heroV4__contentWrapper .heroV4__ctaWrapper{margin-top:24px;}/*!sc*/
.enldzb.a-anchorButton{display:inline-block;position:relative;padding:8px 32px;font-size:1rem;min-width:140px;text-transform:none;text-align:center;-webkit-text-decoration:none;text-decoration:none;font-weight:500;-webkit-letter-spacing:0.1px;-moz-letter-spacing:0.1px;-ms-letter-spacing:0.1px;letter-spacing:0.1px;line-height:24px;border:2px solid transparent;cursor:pointer;color:#191817;-webkit-transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.enldzb.a-anchorButton.disabled{cursor:default;}/*!sc*/
.enldzb.a-anchorButton .a-animatedIcon{position:absolute;right:20px;height:10px;line-height:0.625rem;}/*!sc*/
.enldzb.a-anchorButton.-center{text-align:center;padding:10px 20px;}/*!sc*/
.enldzb.a-anchorButton.-small{font-size:0.75rem;line-height:1.125rem;border-radius:24px;text-align:center;padding:8px 20px;min-width:56px;border:1.5px solid transparent;}/*!sc*/
.enldzb.a-anchorButton.-small .a-animatedIcon{right:9px;}/*!sc*/
.enldzb.a-anchorButton .-loader,.enldzb.a-anchorButton .-addRelatedProductsLoader{border:2px solid #191817;border-radius:50%;border-top:2px solid #FCFAEE;width:15px;height:15px;-webkit-animation:spin 2s linear infinite;-webkit-animation:spin 2s linear infinite;animation:spin 2s linear infinite;position:absolute;right:48%;top:30%;}/*!sc*/
.enldzb.a-anchorButton .hideLabel{opacity:0;}/*!sc*/
.enldzb.a-anchorButton .-addRelatedProductsLoader{border:2px solid #555555;border-top:2px solid #191817;}/*!sc*/
@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);}}/*!sc*/
@keyframes spin{0%{-webkit-transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);}}/*!sc*/
@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
@keyframes spin{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
.ldERZO.o-guidance__wrapper{background-color:#ffffff;margin:auto;position:relative;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container{padding-right:0;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider{padding:30px 0 30px 0;}/*!sc*/
@media (min-width:48rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider{padding:42px 0 42px 20px;}}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider{padding:12px 0 12px 48px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .carouselTitle{width:64%;color:#191817;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .carouselTitle.space-bottom{margin-bottom:32px;}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .carouselTitle{width:100%;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .guidance-card-wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;overflow-x:auto;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .guidance-card-wrapper::-webkit-scrollbar{display:none;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-slider{height:100%;width:100%;margin:0 auto;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:transparent;position:relative;display:block;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-track{top:0;left:0;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list{position:relative;overflow:hidden;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list .slick-slide{margin-right:12px;}/*!sc*/
@media (min-width:48rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list .slick-slide{margin-right:22px;}}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list .slick-slide{margin-right:32px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list .slick-slide.slick-center{-webkit-transform:scale(1.02);-ms-transform:scale(1.02);transform:scale(1.02);}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-list .slick-slide > div{height:100%;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow{position:absolute;bottom:0;display:block;text-indent:-9999px;-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-transition:opacity 150ms ease-in-out;transition:opacity 150ms ease-in-out;z-index:2;top:-72px;border:2px solid #191817;height:32px;width:32px;border-radius:50%;background:url("/static-assets/images/common/carousel_next_active.svg") 50% 50% no-repeat;padding:1px 6px;}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow{top:-80px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow.slick-prev{right:76px;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg);}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow.slick-prev{right:128px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow.slick-next{right:36px;}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow.slick-next{right:88px;bottom:48px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow.slick-disabled{opacity:0.1;pointer-events:none;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidance__slider .slick-arrow:hover{cursor:pointer;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-flow:column wrap;-ms-flex-flow:column wrap;flex-flow:column wrap;}/*!sc*/
@media (min-width:48rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List{-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item{margin-right:34px;display:block;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item button{color:#766E68;position:relative;padding:0;background-color:transparent;cursor:pointer;padding-bottom:2px;background-image:linear-gradient( #191817,#191817 );background-position:bottom left;background-size:0% 2px;background-repeat:no-repeat;-webkit-transition:background-size 400ms;transition:background-size 400ms;}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item button:hover,.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item button:active,.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item button:focus{background-size:100% 2px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .guidanceFilter__list-item.-active button{color:#191817;}/*!sc*/
@media (min-width:48rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List .-active button{background-size:100% 2px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List_native{margin-bottom:24px;width:100%;font-size:1rem;line-height:1.625rem;-webkit-letter-spacing:0.2px;-moz-letter-spacing:0.2px;-ms-letter-spacing:0.2px;letter-spacing:0.2px;font-weight:400;border:none;background-color:#ffffff;color:#191817;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .guidanceFilter__List_native:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .a-filterButton{position:relative;width:100%;padding:4px 0 8px;margin:0;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;text-align:left;cursor:pointer;background:transparent;text-transform:none;border-bottom:1px solid #E5E5E5;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .a-filterButton .a-animatedIcon{position:absolute;right:7px;top:2%;bottom:10px;height:100%;-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg);fill:#737373;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .a-filterButton .a-animatedIcon.-chevronDropDown{width:12px;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .a-filterButton .-isAnimating{bottom:15px;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .filter__title{color:#555555;margin-bottom:4px;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .filter_dropdown{color:#191817;}/*!sc*/
@media (max-width:47.9375rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper{margin-right:36px;overflow:hidden;}.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .guidanceFilter__list-item{padding:12px 0;margin-right:0;}.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .list__wrapper .guidanceFilter__list-item button{color:#555555;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slider-btn-wrapper{position:relative;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slider-btn-wrapper .buttons-container{display:none;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slider-btn-wrapper:hover .buttons-container{display:block;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .next-btn-container{position:absolute;right:0;top:0;width:7%;height:100%;z-index:1;border:1px solid transparent;cursor:pointer;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .next-btn-container:hover .next-btn{background:url("/static-assets/images/common/chevron-black-right-white-bg.svg") 50% 50% no-repeat;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .next-btn-container .next-btn{position:absolute;cursor:pointer;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;right:56px;top:31%;background:url("/static-assets/images/common/chevron-white-right-black-bg.svg") 50% 50% no-repeat;border-radius:50%;height:60px;width:60px;}/*!sc*/
@media (max-width:63.9375rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .next-btn-container .next-btn{display:none;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .next-btn-container .next-btn:hover{background:url("/static-assets/images/common/chevron-black-right-white-bg.svg") 50% 50% no-repeat;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .previous-btn-container{position:absolute;left:0;top:0;width:7%;height:100%;z-index:1;border:1px solid transparent;cursor:pointer;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .previous-btn-container:hover .previous-btn{background:url("/static-assets/images/common/chevron-black-left-white-bg.svg") 50% 50% no-repeat;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .previous-btn-container .previous-btn{position:absolute;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;top:31%;background:url("/static-assets/images/common/chevron-white-left-black-bg.svg") 50% 50% no-repeat;border-radius:50%;height:60px;width:60px;left:56px;}/*!sc*/
@media (max-width:63.9375rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .previous-btn-container .previous-btn{display:none;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .previous-btn-container .previous-btn:hover{background:url("/static-assets/images/common/chevron-black-left-white-bg.svg") 50% 50% no-repeat;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-slider{margin-top:28px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-slider{margin-top:38px;}}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-slider{margin-top:42px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-arrow{top:-166px;}/*!sc*/
@media (min-width:48rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-arrow{top:-136px;}}/*!sc*/
@media (min-width:64rem){.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two .slick-arrow{top:-144px;}}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two.-isExpanded .slick-arrow{top:-263px;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two.-isExpanded .list__wrapper{max-height:500px;}/*!sc*/
.ldERZO.o-guidance__wrapper .o-guidance__container .guidanceVersion__two.-isExpanded .list__wrapper .guidanceFilter__List{border-bottom:1px solid #E5E5E5;}/*!sc*/
@media (min-width:64rem){.lMFkE{padding-left:36px;padding-right:36px;}}/*!sc*/
.lMFkE.a-container{width:100%;max-width:1512px;margin-left:auto;margin-right:auto;}/*!sc*/
.lMFkE.a-container.-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.lMFkE.a-container.-disable-horizontal-padding{padding-left:0;padding-right:0;}/*!sc*/
.lMFkE.a-container.-large{width:100%;max-width:1992px;margin-left:auto;margin-right:auto;}/*!sc*/
.lMFkE.a-container.-padded{padding-top:30px;padding-bottom:30px;}/*!sc*/
@media (min-width:64rem){.lMFkE.a-container.-padded{padding-top:60px;padding-bottom:60px;}}/*!sc*/
.lMFkE.a-container.-use-margin{margin-top:30px;margin-bottom:30px;}/*!sc*/
@media (min-width:64rem){.lMFkE.a-container.-use-margin{margin-top:60px;margin-bottom:60px;}}/*!sc*/
@media (max-width:47.9375rem){.bbiOe.guidanceCard__wrapper{margin-right:12px;}}/*!sc*/
.bbiOe.guidanceCard__wrapper .guidanceCard__img,.bbiOe.guidanceCard__wrapper .m-productCard__image{-webkit-transition:all 0.3s;transition:all 0.3s;}/*!sc*/
.bbiOe.guidanceCard__wrapper .guidanceCard__img img,.bbiOe.guidanceCard__wrapper .m-productCard__image img{height:100%;object-fit:cover;background:transparent;}/*!sc*/
.bbiOe.guidanceCard__wrapper .guidanceCard__img .a-observer,.bbiOe.guidanceCard__wrapper .m-productCard__image .a-observer{overflow:hidden;isolation:isolate;}/*!sc*/
.bbiOe.guidanceCard__wrapper .guidanceCard__img{border-radius:10px;}/*!sc*/
@media (max-width:47.9375rem){.bbiOe.guidanceCard__wrapper .guidanceCard__img{height:255px;width:170px;}}/*!sc*/
.bbiOe.guidanceCard__wrapper .slideTitle{margin-top:16px;color:#191817;}/*!sc*/
.bbiOe.guidanceCard__wrapper .slideTitle span{position:relative;}/*!sc*/
.bbiOe.guidanceCard__wrapper .slideTitle span::after{content:'';display:block;height:3px;width:10%;position:absolute;left:0;background-color:#191817;-webkit-transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0% 100%;-ms-transform-origin:0% 100%;transform-origin:0% 100%;}/*!sc*/
@media (min-width:64rem){.bbiOe.guidanceCard__wrapper .versionOne__anchor:hover .guidanceCard__img,.bbiOe.guidanceCard__wrapper .versionOne__anchor:active .guidanceCard__img,.bbiOe.guidanceCard__wrapper .versionOne__anchor:focus .guidanceCard__img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}.bbiOe.guidanceCard__wrapper .versionOne__anchor:hover .slideTitle span::after,.bbiOe.guidanceCard__wrapper .versionOne__anchor:active .slideTitle span::after,.bbiOe.guidanceCard__wrapper .versionOne__anchor:focus .slideTitle span::after{width:100%;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);}}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container{-webkit-box-flex:1;-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .m-productCard__name{margin-bottom:12px;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .m-productCard__desc{margin-bottom:8px;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .product-card-info{padding-top:16px;}/*!sc*/
@media (max-width:47.9375rem){.bbiOe.guidanceCard__wrapper .m-productCard__container .product-card-info{padding-top:12px;}}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .product-description{width:95%;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .productCardPrice{color:#191817;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .original-price{position:relative;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .original-price.-strikePrice{-webkit-text-decoration:line-through;text-decoration:line-through;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .discounted-price{color:#191817;}/*!sc*/
.bbiOe.guidanceCard__wrapper .m-productCard__container .product-tags{position:absolute;top:30px;z-index:1;}/*!sc*/
@media (max-width:47.9375rem){.bbiOe.guidanceCard__wrapper .m-productCard__container .product-tags{top:20px;}}/*!sc*/
@media (max-width:47.9375rem){.bbiOe.guidanceCard__wrapper .m-productCard__container .imageWrapper{height:182px;width:146px;}}/*!sc*/
@media (min-width:48rem){.bbiOe.guidanceCard__wrapper .m-productCard__container .imageWrapper{box-sizing:content-box;}}/*!sc*/
.bbiOe.guidanceCard__wrapper .versionTwo__anchor .m-productCard__name{color:#191817;}/*!sc*/
.bbiOe.guidanceCard__wrapper .versionTwo__anchor .m-productCard__name span{position:relative;}/*!sc*/
.bbiOe.guidanceCard__wrapper .versionTwo__anchor .m-productCard__name span::after{content:'';display:block;height:3px;width:10%;position:absolute;left:0;background-color:#191817;-webkit-transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transform:scaleX(0);-ms-transform:scaleX(0);transform:scaleX(0);-webkit-transform-origin:0% 100%;-ms-transform-origin:0% 100%;transform-origin:0% 100%;}/*!sc*/
.bbiOe.guidanceCard__wrapper .versionTwo__anchor .imageWrapper{padding:21% 8.5%;position:relative;background-color:#FFF;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;aspect-ratio:1;}/*!sc*/
.bbiOe.guidanceCard__wrapper .versionTwo__anchor .imageWrapper .a-responsiveImage{background-color:white;}/*!sc*/
@media (min-width:64rem){.bbiOe.guidanceCard__wrapper .versionTwo__anchor:hover .m-productCard__image,.bbiOe.guidanceCard__wrapper .versionTwo__anchor:active .m-productCard__image,.bbiOe.guidanceCard__wrapper .versionTwo__anchor:focus .m-productCard__image{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}.bbiOe.guidanceCard__wrapper .versionTwo__anchor:hover .m-productCard__name span::after,.bbiOe.guidanceCard__wrapper .versionTwo__anchor:active .m-productCard__name span::after,.bbiOe.guidanceCard__wrapper .versionTwo__anchor:focus .m-productCard__name span::after{width:100%;-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1);}}/*!sc*/
.gxsYAR.o-productCardTags{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}/*!sc*/
.gxsYAR.o-productCardTags .product-card-tag{display:inline-block;-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;height:24px;border-radius:2px;font-size:0.75rem;line-height:1rem;padding:4px 8px;background:#FFF;color:#191817;font-weight:500;}/*!sc*/
.gxsYAR.o-productCardTags .product-card-tag.light{color:#191817;background:#FFF;}/*!sc*/
.gxsYAR.o-productCardTags .product-card-tag.discounted{padding:4px 8px;background:#191817;color:#FFF;}/*!sc*/
.gxsYAR.o-productCardTags .alignment{height:auto;text-align:right;}/*!sc*/
.foMmVl.-loader{border:2px solid #FAFAFA;border-radius:50%;border-top:4px solid #555555;width:50px;height:50px;-webkit-animation:spin 2s linear infinite;-webkit-animation:eUsvCl 2s linear infinite;animation:eUsvCl 2s linear infinite;position:absolute;padding:auto 20px;left:45%;}/*!sc*/
.foMmVl.-place-holder{position:absolute;top:0;left:0;width:100%;height:100%;background-color:#FAFAFA;}/*!sc*/
.foMmVl.imgBx.-showPlaceholder{opacity:1;-webkit-transition:opacity 400ms ease-in-out;transition:opacity 400ms ease-in-out;}/*!sc*/
.foMmVl.imgBx.-showPlaceholder.-isLoading{opacity:0;}/*!sc*/
.foMmVl.imgBx.add-shimmer{background:#f6f7f8;background-image:linear-gradient( to right,#f6f7f8 0%,#edeef1 20%,#f6f7f8 40%,#f6f7f8 100% );background-repeat:no-repeat;background-size:800px 150px;display:inline-block;position:relative;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:forwards;animation-fill-mode:forwards;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:placeholder-shimmer;animation-name:placeholder-shimmer;-webkit-animation-timing-function:linear;animation-timing-function:linear;}/*!sc*/
@-webkit-keyframes placeholder-shimmer{0%{background-position:-468px 0;}100%{background-position:468px 0;}}/*!sc*/
@keyframes placeholder-shimmer{0%{background-position:-468px 0;}100%{background-position:468px 0;}}/*!sc*/
@-webkit-keyframes placeholder-shimmer{0%{background-position:-468px 0;}100%{background-position:468px 0;}}/*!sc*/
@keyframes placeholder-shimmer{0%{background-position:-468px 0;}100%{background-position:468px 0;}}/*!sc*/
.fIYdyW.m-textAndImage{display:block;height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper{height:100%;width:100%;position:relative;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:30px;overflow:hidden;background-color:#FAFAFA;-webkit-transition:background-color 200ms ease-in-out;transition:background-color 200ms ease-in-out;min-height:341px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper{min-height:376px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper{min-height:307px;}}/*!sc*/
@media (min-width:90rem){.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper{min-height:396px;}}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper .a-animatedIcon{position:absolute;right:0;margin-top:1px;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper .m-textAndImage__background{height:100%;width:100%;position:absolute;top:0;left:0;background-size:cover;background-position:center;-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:hover,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:active,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:focus{background-color:#FAFAFA;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:hover .a-animatedIcon::before,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:active .a-animatedIcon::before,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:focus .a-animatedIcon::before{width:26px;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:hover .m-textAndImage__background,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:active .m-textAndImage__background,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__wrapper:focus .m-textAndImage__background{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .category-tile-link{display:block;height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__content,.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__link{z-index:1;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__content{position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__content .-secondary{float:left;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__image .img-wrapper{position:relative;width:80%;aspect-ratio:1;margin:0 auto;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__image{padding:8% 0;}}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__link{position:relative;text-align:right;padding-right:40px;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-categoryTile .m-textAndImage__image + .m-textAndImage__link{margin-top:10px;}}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile p{margin:0;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__wrapper{background:transparent;-webkit-transition:none;transition:none;padding:30px;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__wrapper{padding:40px;}}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__wrapper::after{content:'';display:block;width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(25,24,23,0.3);}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__content{position:relative;text-align:center;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__content .category-tile-link{height:initial;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__content,.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__image{-webkit-flex:1;-ms-flex:1;flex:1;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-hasBackgroundImage .m-textAndImage__link{margin-top:150px;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-light .m-textAndImage__wrapper::after{display:none;}/*!sc*/
.fIYdyW.m-textAndImage.-categoryTile.-dark .m-textAndImage__wrapper .m-textAndImage__content .title{color:#FFF;}/*!sc*/
.fIYdyW.m-textAndImage.-background{width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-background .m-textAndImage__wrapper{position:relative;padding:20% 5%;background-size:cover;min-height:380px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;text-align:center;overflow:hidden;-webkit-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-background .m-textAndImage__wrapper{padding:0;}.fIYdyW.m-textAndImage.-background .m-textAndImage__wrapper::before{content:'';display:block;padding-top:56.25%;}}/*!sc*/
.fIYdyW.m-textAndImage.-background .m-textAndImage__background{position:absolute;inset:0;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-background .m-textAndImage__background .parallax-inner{height:100%;}.fIYdyW.m-textAndImage.-background .m-textAndImage__background .parallax-inner > div{height:100%;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important;}.fIYdyW.m-textAndImage.-background .m-textAndImage__background .parallax-inner .a-responsiveImage{height:100%;}.fIYdyW.m-textAndImage.-background .m-textAndImage__background .parallax-inner .a-responsiveImage img{width:100%;height:100%;object-fit:cover;object-position:center;font-family:'object-fit: cover; object-position: center;';}}/*!sc*/
.fIYdyW.m-textAndImage.-background .container{height:100%;width:100%;z-index:1;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-background .container{position:absolute;top:0;left:0;padding-top:30px;padding-bottom:30px;}}/*!sc*/
.fIYdyW.m-textAndImage.-background .row{height:100%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-background .row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;text-align:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}}/*!sc*/
.fIYdyW.m-textAndImage.-background .a-anchorButton{margin-top:30px;}/*!sc*/
.fIYdyW.m-textAndImage.-background.-lightTheme .m-textAndImage__wrapper::after{content:'';display:block;width:100%;height:100%;position:absolute;top:0;left:0;background-color:rgba(25,24,23,0.5);}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty{width:100%;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty{margin-top:50px;}}/*!sc*/
@media  (min-width:23.375rem) and (max-width:30rem){.fIYdyW.m-textAndImage.-fiftyFifty .-padded{padding-top:54px;padding-bottom:54px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty.-withBackground{background:#FFF;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty.-withBackground .m-textAndImage__wrapper{background-color:#FFF;margin:-1rem;padding:1rem;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFifty.-withBackground .m-textAndImage__wrapper{margin:0;padding:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__columnLeft{-webkit-order:0;-ms-flex-order:0;order:0;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__columnLeft{-webkit-order:0;-ms-flex-order:0;order:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__image{height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__image .parallax-inner{height:inherit;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__image .parallax-inner > div{height:100%;-webkit-transform:scale(1) !important;-ms-transform:scale(1) !important;transform:scale(1) !important;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty picture{width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty img{display:block;width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__title{margin-bottom:8px;padding:0;line-height:1.6;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__title{margin-bottom:16px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper{height:100%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper{padding-top:60px;padding-bottom:60px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy{height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage_Logo{margin-top:30px;max-width:160px;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text{margin-top:32px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text .h4{margin-bottom:16px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text .h4{margin-bottom:32px;margin-top:unset;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text p{color:#191817;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text .m-readMore{color:#555555;-webkit-text-decoration:underline;text-decoration:underline;cursor:pointer;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .textAndImageTextWrapper .m-textAndImage__copy .textAndImage-text .richTextWrapper p{margin-bottom:20px;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .cta-buttons{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .cta-buttons .a-anchorButton{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:1 1 0;-ms-flex:1 1 0;flex:1 1 0;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .first-cta a{line-height:1.25rem;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .first-cta a{text-align:center;}.fIYdyW.m-textAndImage.-fiftyFifty .first-cta a em{display:none;}}/*!sc*/
@media  (min-width:23.375rem) and (max-width:30rem){.fIYdyW.m-textAndImage.-fiftyFifty .first-cta a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .second-cta a{margin-top:20px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .second-cta a{text-align:center;}.fIYdyW.m-textAndImage.-fiftyFifty .second-cta a em{display:none;}}/*!sc*/
@media  (min-width:23.375rem) and (max-width:30rem){.fIYdyW.m-textAndImage.-fiftyFifty .second-cta a{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__anchor{display:block;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__anchor:hover .a-animatedIcon::before,.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__anchor:active .a-animatedIcon::before,.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__anchor:focus .a-animatedIcon::before{-webkit-transform:scaleX(1.5);-ms-transform:scaleX(1.5);transform:scaleX(1.5);}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .m-textAndImage__video{width:100%;height:100%;background:transparent;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;aspect-ratio:1/1;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFifty .a-anchorButton{margin-top:28px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-fiftyFifty .a-anchorButton{padding:10px;min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;}}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFifty .a-anchorButton{margin-top:32px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-fiftyFifty .a-anchorButton{margin-top:40px;}}/*!sc*/
@media (min-width:90rem){.fIYdyW.m-textAndImage.-fiftyFifty .a-anchorButton{margin-top:48px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird{position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper{background:#FAFAFA;color:#191817;margin-left:0;margin-right:0;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__imageWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;padding-right:0;padding-left:0;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__imageWrapper{padding:16px;}}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__imageWrapper.-imageRight{-webkit-order:2;-ms-flex-order:2;order:2;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding-left:40px;padding-right:40px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper{padding:16px;}}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper{padding-left:16px;padding-right:16px;}}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper .fiftyFiftyTwoThird_title{color:#555555;margin-bottom:0;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper .fiftyFiftyTwoThird_description{color:#555555;margin-top:16px;}/*!sc*/
.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper .textAndImage__cta{margin-top:30px;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-fiftyFiftyTwoThird .m-textAndImage__wrapper .textAndImage__textWrapper .textAndImage__cta{margin-top:30px;margin-bottom:32px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature{position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature.-versionTwo{background:#FAFAFA;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .a-container{background:#FAFAFA;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory{width:100%;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory{padding-top:8px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .a-container{padding-bottom:0;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .a-container{padding-left:0;padding-right:0;}}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .a-container{padding-left:0;padding-right:0;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .a-container .m-textAndImage__wrapper .textContainer .textWrapper__v2{padding-bottom:32px;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .imageWrapper .imageContainer{padding:0;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .imageWrapper .imageContainer{padding-left:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .textWrapper__v2 .container{padding:0;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .textWrapper__v2 .container .oneFeature__title,.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .textWrapper__v2 .container .oneFeature_subtitle,.fIYdyW.m-textAndImage.-oneFeature.-isFeaturedStory .m-textAndImage__wrapper .textWrapper__v2 .container .oneFeature__description{padding:0;}}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-oneFeature .textAndImage__wrapper_version_two{padding-top:2px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .textAndImage__wrapper_version_two{padding:0 48px;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature .textAndImage__wrapper_version_two{padding-top:18px;}}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper{background:#FAFAFA;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper{background:#FAFAFA;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .imageContainer{height:100%;background:#FAFAFA;}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .imageContainer{padding:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .imageContainer .row{height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .image_columns{height:100%;width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .image_columns.-isHover .oneFeature__image .a-observer img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image{height:100%;background:transparent;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image .a-observer{overflow:hidden;isolation:isolate;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image img{height:100%;width:100%;object-fit:cover;-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);background:transparent;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image img:hover,.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image img:active,.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .imageWrapper .oneFeature__image img:focus{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);background:transparent;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-btn-wrapper{position:relative;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-btn-wrapper{padding-right:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .pause-button-wrapper{position:absolute;width:32px;height:32px;right:16px;bottom:16px;background-color:#19181766;z-index:3;border-radius:50%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .pause-button-wrapper{bottom:20px;right:20px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .pause-button-wrapper{bottom:24px;right:24px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .-playPauseA11yButton{z-index:99;position:absolute;bottom:50%;right:50%;display:block;width:32px;height:32px;cursor:pointer;background-color:transparent;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);border-radius:50%;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .-playPauseA11yButton.-pause{background-image:url('/static-assets/images/common/video-pause-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .-playPauseA11yButton.-play{background-image:url('/static-assets/images/common/video-play-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .-playPauseA11yButton .vjs-control-text{font-size:0.6875rem;display:none;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-wrapper{aspect-ratio:4 / 5;width:100%;height:100%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-wrapper{aspect-ratio:1 / 1;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-wrapper .m-videoPlayer.-responsive{margin-top:initial;height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-wrapper .vjs-big-play-button{display:none;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .video-wrapper{margin-bottom:0;padding-right:0;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer{background:#FAFAFA;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2{height:100%;background:#FAFAFA;color:#191817;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;padding:20px 0 32px;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .container{padding:0;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2{padding:48px 0;padding-bottom:18px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2{padding:0;padding-left:48px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__title{margin-bottom:8px;text-align:center;padding:0 20px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__title{padding:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature_subtitle{margin-bottom:16px;text-align:center;padding:0 20px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature_subtitle{margin-bottom:20px;padding:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__description{margin-top:initial;color:#191817;text-align:center;padding:0 20px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__description{padding:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__cta{margin-top:24px;text-align:center;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textContainer .textWrapper__v2 .oneFeature__cta{margin-top:40px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper{height:100%;background:#FAFAFA;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;padding:48px 4px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper{padding:64px 0;padding-bottom:72px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper{padding:64px 0 64px 32px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper{margin-left:initial;padding-bottom:60px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper{width:100%;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper .oneFeature__title{padding-bottom:32px;margin:0;}/*!sc*/
@media (max-width:63.9375rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper .oneFeature__title{padding-bottom:16px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper .oneFeature_subtitle{margin:0;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .upperSection__wrapper{padding-bottom:80px;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .lowerSection__wrapper .cta_wrapper{padding-top:32px;display:block;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .lowerSection__wrapper .cta_wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;-webkit-box-pack:end;-webkit-justify-content:end;-ms-flex-pack:end;justify-content:end;}}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .lowerSection__wrapper .cta_wrapper .textAndImage__cta .a-anchorButton{min-width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-oneFeature .m-textAndImage__wrapper .textWrapper .lowerSection__wrapper .cta_wrapper .textAndImage__cta a em{display:none;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature{background:#F5F4F3;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .a-container{padding-top:0;padding-bottom:0;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .text-color{color:#191817;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-align-items:stretch;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper{padding-top:32px;padding-bottom:32px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper{padding:40px 64px;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper{padding:60px 52px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .wrapper-image{margin-bottom:16px;overflow:hidden;isolation:isolate;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .wrapper-image{margin-bottom:24px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .wrapper-image .image__twoFeature img{-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .wrapper-image.zoomin .image__twoFeature img{-webkit-transform:scale(1.1);-ms-transform:scale(1.1);transform:scale(1.1);}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper{position:relative;margin-bottom:16px;width:100%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper{margin-bottom:24px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .vjs-control-text{font-size:0.6875rem;display:none;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .vjs-big-play-button{display:none;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .pause-button-wrapper{position:absolute;width:32px;height:32px;right:16px;bottom:16px;background-color:#19181766;z-index:3;border-radius:50%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .pause-button-wrapper{bottom:24px;right:24px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .-playPauseA11yButton{z-index:99;position:absolute;bottom:50%;right:50%;display:block;width:32px;height:32px;cursor:pointer;background-color:transparent;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);border-radius:50%;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .-playPauseA11yButton.-pause{background-image:url("/static-assets/images/common/video-pause-button.svg");background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .-playPauseA11yButton.-play{background-image:url("/static-assets/images/common/video-play-button.svg");background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .video-btn-wrapper .m-videoPlayer.-responsive{margin-top:initial;height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper{padding:0 20px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper{padding:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-flex:2;-ms-flex:2;flex:2;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .title{margin-bottom:8px;}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .sub_title{margin-bottom:16px;padding:0;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .sub_title{margin-bottom:20px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .description{margin:0 0 40px;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .description{margin:0 0 32px;}}/*!sc*/
@media (max-width:30rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .description{margin:0 0 24px;}}/*!sc*/
.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .textAndImage__cta{display:inline-block;-webkit-align-self:flex-start;-ms-flex-item-align:start;align-self:flex-start;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .textAndImage__cta{margin:auto 0 0;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .textAndImage__cta.cta-margin{margin-bottom:60px;}}/*!sc*/
@media (max-width:30rem){.fIYdyW.m-textAndImage.-twoFeature .m-textAndImage__wrapper .text__wrapper .textAndImage__cta.cta-margin{margin-bottom:48px;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday{position:relative;background:#FFF;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .a-container{max-width:1920px;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-holiday .a-container{padding-left:0;padding-right:0;}}/*!sc*/
@media (max-width:47.9375rem){.fIYdyW.m-textAndImage.-holiday .rows-class{margin:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .columns{background:#FCFAEE;padding:0;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-holiday .columns.-imageRight{-webkit-order:2;-ms-flex-order:2;order:2;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .media-section-wrapper{position:relative;height:inherit;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .media-section-wrapper .product-tags{position:absolute;top:16px;left:16px;z-index:1;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .media-section-wrapper .holiday__image{background:#FCFAEE;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .media-section-wrapper .video-wrapper{width:100%;height:100%;aspect-ratio:1 / 1;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .media-section-wrapper .video-wrapper .m-videoPlayer{margin-top:0;height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .text-section-row{height:100%;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;height:100%;width:100%;text-align:left;background:#FCFAEE;padding:72px 20px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-holiday .textWrapper{padding:72px 0;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.-holiday .textWrapper{padding:0;border-radius:0;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .title{color:#191817;margin-bottom:0;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-holiday .textWrapper .title{margin-bottom:8px;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .subtitle{margin-bottom:0;color:#191817;position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .subtitle.-isUnderlined::after{content:'';position:absolute;bottom:0;left:5%;width:90%;height:1px;border-bottom:1.5px solid #191817;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .subtitle.-isFastpen{font-family:Fastpen;font-weight:400;font-size:42px;line-height:50px;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-holiday .textWrapper .subtitle.-isFastpen{font-size:64px;line-height:77px;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .subtitle.-isFastpen.-isUnderlined::after{bottom:6px;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .description{color:#191817;margin-top:16px;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .holiday__ctaWrapper{margin-top:24px;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .textWrapper .m-readMore{color:#191817;cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;margin-top:20px;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .pause-button-wrapper{position:absolute;width:32px;height:32px;right:16px;bottom:16px;background-color:#19181766;z-index:3;border-radius:50%;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.-holiday .pause-button-wrapper{right:36px;bottom:36px;}}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .-playPauseA11yButton{z-index:99;position:absolute;bottom:50%;right:50%;display:block;width:32px;height:32px;cursor:pointer;background-color:transparent;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);border-radius:50%;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .-playPauseA11yButton.-pause{background-image:url('/static-assets/images/common/video-pause-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .-playPauseA11yButton.-play{background-image:url('/static-assets/images/common/video-play-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIYdyW.m-textAndImage.-holiday .-playPauseA11yButton .vjs-control-text{font-size:0.6875rem;display:none;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper{position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper{position:relative;height:120vh;width:100%;}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper{height:100vw;}}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.is-compact{height:55vw;}/*!sc*/
@media (max-width:63.9375rem){.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.is-compact{height:100vh;}}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper::after{content:'';position:absolute;background:linear-gradient(180deg,rgb(0 0 0 / 0%) 0%,rgb(0 0 0 / 70%) 100%);-webkit-transition:all 0.3s;transition:all 0.3s;z-index:1;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.no-content::after{display:none;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--top::after{width:100%;height:50%;top:0;background:linear-gradient(0deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--compactTop::after{width:100%;height:75%;top:0;background:linear-gradient(0deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--left::after{width:75%;height:100%;left:0;top:0;background:linear-gradient(-90deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--bottom::after{width:100%;height:50%;bottom:0;background:linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--compactBottom::after{width:100%;height:75%;bottom:0;background:linear-gradient(180deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--right::after{width:75%;height:100%;right:0;top:0;background:linear-gradient(90deg,rgba(0,0,0,0.00) 0%,rgba(0,0,0,0.75) 100%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .backgroundImageWrapper.--full::after{width:100%;height:100%;top:0;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .content_container{position:absolute;top:0;height:100%;width:100%;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container{height:100%;padding:0;position:relative;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container.a-container{max-width:1700px;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content{position:absolute;width:100%;z-index:1;padding:48px 32px;text-align:right;}/*!sc*/
@media (min-width:48rem){.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content{padding:80px 86px;text-align:left;}}/*!sc*/
@media (min-width:64rem){.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content{max-width:600px;}}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content .overlay_immersive__title{color:#FFF;margin-bottom:24px;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content .overlay_immersive__description{color:#FFF;margin-bottom:24px;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.top_left{top:0;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.bottom_left{bottom:0;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.center_left{top:50%;left:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.top_center{top:0;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.bottom_center{bottom:0;left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.center_right{top:50%;right:0;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.bottom_right{bottom:0;right:0;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.top_right{top:0;right:0;}/*!sc*/
.fIYdyW.m-textAndImage.o-overlayImmersive-wrapper .o-overlay_immersive_container .overlay_immersive_content.center_center{top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);}/*!sc*/
.fIYdyW.m-textAndImage .image-clickable{width:100%;height:100%;}/*!sc*/
.fIRVTh .richMediaWrapper{padding-top:30px;padding-bottom:30px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-start;-webkit-box-align:flex-start;-ms-flex-align:flex-start;align-items:flex-start;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;margin:0;}/*!sc*/
@media (max-width:30rem){.fIRVTh .richMediaWrapper{display:block;margin:0;}}/*!sc*/
@media (min-width:64rem){.fIRVTh .richMediaWrapper{padding-top:60px;padding-bottom:60px;}}/*!sc*/
.fIRVTh .richMediaWrapper h1,.fIRVTh .richMediaWrapper h2,.fIRVTh .richMediaWrapper h3,.fIRVTh .richMediaWrapper h4,.fIRVTh .richMediaWrapper h5,.fIRVTh .richMediaWrapper p,.fIRVTh .richMediaWrapper a{color:#191817;}/*!sc*/
.fIRVTh .textWrapper{padding-top:72px;}/*!sc*/
@media (min-width:48rem){.fIRVTh .textWrapper{padding-top:60px;padding-bottom:60px;}}/*!sc*/
.fIRVTh .textWrapper .richMediaTitle{text-align:center;}/*!sc*/
.fIRVTh .textWrapper .richTextDescriptionWrapper{margin-top:24px;text-align:center;}/*!sc*/
.fIRVTh .textWrapper p{color:#191817;}/*!sc*/
.fIRVTh .textWrapper h1,.fIRVTh .textWrapper h2,.fIRVTh .textWrapper h3,.fIRVTh .textWrapper h4,.fIRVTh .textWrapper h5,.fIRVTh .textWrapper a{color:#191817;}/*!sc*/
@media (max-width:30rem){.fIRVTh .listWrap{padding-top:72px;}}/*!sc*/
.fIRVTh .richMediaCta{padding-top:24px;}/*!sc*/
.fIRVTh .-title{margin-bottom:2px;padding-bottom:0;}/*!sc*/
@media (min-width:64rem){.fIRVTh .-title{margin-bottom:4px;}}/*!sc*/
.fIRVTh .center{text-align:center;}/*!sc*/
@media (min-width:64rem){.fIRVTh .-centerAligned{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}}/*!sc*/
.fIRVTh .pause-button-wrapper{position:absolute;width:32px;height:32px;right:16px;bottom:16px;background-color:#19181766;z-index:3;border-radius:50%;}/*!sc*/
@media (min-width:64rem){.fIRVTh .pause-button-wrapper{width:45px;height:45px;}}/*!sc*/
.fIRVTh .-playPauseA11yButton{z-index:99;position:absolute;bottom:50%;right:50%;display:block;width:32px;height:32px;cursor:pointer;background-color:transparent;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);}/*!sc*/
@media (min-width:64rem){.fIRVTh .-playPauseA11yButton{width:45px;height:45px;}}/*!sc*/
.fIRVTh .-playPauseA11yButton.-pause{background-image:url("/static-assets/images/common/video-pause-button.svg");background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIRVTh .-playPauseA11yButton.-play{background-image:url("/static-assets/images/common/video-play-button.svg");background-position:center;background-repeat:no-repeat;}/*!sc*/
.fIRVTh .-playPauseA11yButton .vjs-control-text{font-size:0.6875rem;display:none;}/*!sc*/
.fIRVTh .-richMedia__bg{background-color:#191817;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;position:relative;height:1px;}/*!sc*/
.fIRVTh .-minhir{min-height:30px;padding-top:14px;}/*!sc*/
.fIRVTh .-richMediaDescription{display:none;margin-top:20px;}/*!sc*/
.fIRVTh .-richMediaDescription p,.fIRVTh .-richMediaDescription a{color:#191817;}/*!sc*/
.fIRVTh .-richMediaDescription a{margin-top:0;}/*!sc*/
@media (min-width:48rem){.fIRVTh .-richMediaDescription{display:block;}}/*!sc*/
.fIRVTh .-richMediaDescription.showDesc{display:block;}/*!sc*/
.fIRVTh .-richMediaDescription p{margin:0;}/*!sc*/
.fIRVTh .-richMedia__subtitle{margin-bottom:0;}/*!sc*/
.fIRVTh .-listAligned:first-child{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%;margin-bottom:60px;}/*!sc*/
.fIRVTh .-listAligned:first-child .-richMedia__bg{min-height:400px;}/*!sc*/
.chUjjz.a-responsiveImage{position:relative;width:100%;background:#FAFAFA;}/*!sc*/
.chUjjz.a-responsiveImage .ar-anchor{height:100%;width:100%;}/*!sc*/
.chUjjz.a-responsiveImage img{display:block;position:absolute;width:100%;top:0;left:0;opacity:0;-webkit-transition:opacity 400ms ease-in-out;transition:opacity 400ms ease-in-out;}/*!sc*/
.chUjjz.a-responsiveImage img.-loaded{position:relative;opacity:1;}/*!sc*/
.chUjjz.a-responsiveImage img.-serverside{-webkit-transition:none;transition:none;}/*!sc*/
.chUjjz.a-responsiveImage .a-responsiveImage__dummy{position:relative;width:100%;}/*!sc*/
.chUjjz.a-responsiveImage .a-responsiveImage__dummy img{opacity:1;}/*!sc*/
.chUjjz.a-responsiveImage.-transparent{background:none;}/*!sc*/
.jAVMrb.a-markdownContent h1,.jAVMrb.a-markdownContent h2,.jAVMrb.a-markdownContent h3,.jAVMrb.a-markdownContent h4,.jAVMrb.a-markdownContent h5{margin:25px 0 20px;}/*!sc*/
.jAVMrb.a-markdownContent h4::after{content:none;}/*!sc*/
.jAVMrb.a-markdownContent h4 del{-webkit-text-decoration:none;text-decoration:none;}/*!sc*/
.jAVMrb.a-markdownContent h4 del::after{content:'';display:block;height:2px;width:20px;margin-top:8px;background-color:#191817;}/*!sc*/
.jAVMrb.a-markdownContent h1:first-child,.jAVMrb.a-markdownContent h2:first-child,.jAVMrb.a-markdownContent h3:first-child,.jAVMrb.a-markdownContent h4:first-child,.jAVMrb.a-markdownContent h5:first-child{margin-top:0;}/*!sc*/
.jAVMrb.a-markdownContent li{font-size:1rem;line-height:1.625;-webkit-letter-spacing:0.4px;-moz-letter-spacing:0.4px;-ms-letter-spacing:0.4px;letter-spacing:0.4px;color:#555555;margin:0;white-space:pre-wrap;}/*!sc*/
.jAVMrb.a-markdownContent ul{list-style-type:none;padding-left:0;}/*!sc*/
.jAVMrb.a-markdownContent ul li{position:relative;padding-left:20px;}/*!sc*/
.jAVMrb.a-markdownContent ul li::before{position:absolute;left:0;top:0;content:'—';}/*!sc*/
.jAVMrb.a-markdownContent ol{padding-left:20px;}/*!sc*/
.jAVMrb.a-markdownContent ul,.jAVMrb.a-markdownContent ol{margin:10px 0 0;color:#555555;}/*!sc*/
.jAVMrb.a-markdownContent ul li::before,.jAVMrb.a-markdownContent ol li::before{width:8px;}/*!sc*/
.jAVMrb.a-markdownContent ul li + li,.jAVMrb.a-markdownContent ol li + li{margin-top:5px;}/*!sc*/
.jAVMrb.a-markdownContent table{width:100%;border-collapse:collapse;margin-bottom:30px;}/*!sc*/
.jAVMrb.a-markdownContent tr:nth-child(odd){background-color:#555555;}/*!sc*/
.jAVMrb.a-markdownContent th{background-color:#191817;color:#FFF;}/*!sc*/
.jAVMrb.a-markdownContent th,.jAVMrb.a-markdownContent td{text-align:left;padding:0.7em 1em;}/*!sc*/
.jAVMrb.a-markdownContent .a-markdownContent__link{display:inline-block;}/*!sc*/
.jAVMrb.a-markdownContent p{color:#555555;}/*!sc*/
.jAVMrb.a-markdownContent p .a-anchorButton{-webkit-transition:color 200ms ease-in-out;transition:color 200ms ease-in-out;}/*!sc*/
.jAVMrb.a-markdownContent p .a-anchorButton:focus{border-radius:1px;box-shadow:0px 0px 0px 1px #3082fd, 0px 0px 0px 3px #bfdefb;outline:none;border-radius:24px;}/*!sc*/
.jAVMrb.a-markdownContent p .a-anchorButton:focus:not(.focus-visible){box-shadow:none;outline:none;border-radius:24px;}/*!sc*/
.jAVMrb.a-markdownContent a.-underline{display:inline-block;padding-bottom:0px;}/*!sc*/
.jAVMrb.a-markdownContent a.-underline span{background-image:linear-gradient(to right,#555555 0%,#555555 100%);background-repeat:repeat-x;background-position:0 100%;background-size:100% 1px;padding-bottom:1px;}/*!sc*/
.cMrqcU.a-animatedIcon{cursor:pointer;display:inline-block;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);}/*!sc*/
.cMrqcU.a-animatedIcon.-download{position:relative;height:25px;width:20px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-align-items:flex-end;-webkit-box-align:flex-end;-ms-flex-align:flex-end;align-items:flex-end;}/*!sc*/
.cMrqcU.a-animatedIcon.-download:hover::before,.cMrqcU.a-animatedIcon.-download:active::before,.cMrqcU.a-animatedIcon.-download:focus::before{-webkit-transform:scaleY(1.5);-ms-transform:scaleY(1.5);transform:scaleY(1.5);}/*!sc*/
.cMrqcU.a-animatedIcon.-download::before{content:'';height:calc(100% - 10px);width:2px;position:absolute;bottom:2px;left:50%;margin-left:-1px;background-color:#191817;-webkit-transform-origin:bottom;-ms-transform-origin:bottom;transform-origin:bottom;-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.cMrqcU.a-animatedIcon.-download svg{height:8px;width:10px;margin-left:5px;}/*!sc*/
.cMrqcU.a-animatedIcon.-download span{height:2px;width:100%;display:block;position:absolute;bottom:-5px;left:0;background-color:#191817;}/*!sc*/
.cMrqcU.a-animatedIcon.-download span::before,.cMrqcU.a-animatedIcon.-download span::after{content:'';height:4px;width:2px;display:block;position:absolute;bottom:0;background-color:#191817;}/*!sc*/
.cMrqcU.a-animatedIcon.-download span::before{left:0;}/*!sc*/
.cMrqcU.a-animatedIcon.-download span::after{right:0;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight{width:30px;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight svg{height:10px;width:8px;margin-left:-5px;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-left{text-align:right;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-left::before{content:'';position:absolute;top:4px;right:2px;display:inline-block;width:20px;height:2px;background-color:#191817;-webkit-transform-origin:right;-ms-transform-origin:right;transform-origin:right;-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1),background-color 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1),background-color 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1),background-color 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-left.-disabled{cursor:default;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-left:not(.-disabled):hover::before,.cMrqcU.a-animatedIcon.-arrowRight.-left:not(.-disabled):active::before,.cMrqcU.a-animatedIcon.-arrowRight.-left:not(.-disabled):focus::before{-webkit-transform:scaleX(1.5);-ms-transform:scaleX(1.5);transform:scaleX(1.5);}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-right::before{content:'';position:relative;display:inline-block;width:20px;height:2px;background:#191817;top:-4px;-webkit-transition:width 400ms cubic-bezier(0.165,0.84,0.44,1);transition:width 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowRight.-right:hover::before,.cMrqcU.a-animatedIcon.-arrowRight.-right:active::before,.cMrqcU.a-animatedIcon.-arrowRight.-right:focus::before{width:26px;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowThinDown,.cMrqcU.a-animatedIcon.-chevronDropDown{width:10px;}/*!sc*/
.cMrqcU.a-animatedIcon.-arrowThinDown svg,.cMrqcU.a-animatedIcon.-chevronDropDown svg{-webkit-transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);transition:all 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.cMrqcU.a-animatedIcon.-plus{height:10px;width:10px;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:-webkit-transform 400ms cubic-bezier(0.165,0.84,0.44,1);-webkit-transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);transition:transform 400ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.cMrqcU.a-animatedIcon.-plus:hover,.cMrqcU.a-animatedIcon.-plus:active,.cMrqcU.a-animatedIcon.-plus:focus{-webkit-transform:rotate(90deg) translateX(-50%);-ms-transform:rotate(90deg) translateX(-50%);transform:rotate(90deg) translateX(-50%);}/*!sc*/
.cMrqcU.a-animatedIcon.-plus svg{display:block;}/*!sc*/
.cMrqcU.a-animatedIcon.-playPause{top:auto;-webkit-transform:none;-ms-transform:none;transform:none;}/*!sc*/
.cMrqcU.a-animatedIcon.-playPause span{display:block;box-sizing:border-box;width:10px;height:14px;padding:0;position:relative;border-color:transparent transparent transparent #FFF;-webkit-transition:border-width 400ms cubic-bezier(0.895,0.030,0.685,0.220);transition:border-width 400ms cubic-bezier(0.895,0.030,0.685,0.220);border-style:solid;border-width:8px 0 8px 10px;}/*!sc*/
.cMrqcU.a-animatedIcon.-playPause span::before{content:'';height:100%;width:4px;display:block;top:0;left:-7px;background-color:#FFF;position:absolute;-webkit-transform-origin:left;-ms-transform-origin:left;transform-origin:left;-webkit-transition:background-color 400ms cubic-bezier(0.895,0.030,0.685,0.220);transition:background-color 400ms cubic-bezier(0.895,0.030,0.685,0.220);}/*!sc*/
.cMrqcU.a-animatedIcon.-playPause.-animate span{border-width:0 0 0 10px;-webkit-transition-delay:0s;transition-delay:0s;}/*!sc*/
.cMrqcU.a-animatedIcon.-playPause.-animate span::before{background-color:#555555;}/*!sc*/
.gKyhcW.a-richMediaVideo{position:relative;width:100%;height:100%;}/*!sc*/
.gKyhcW.a-richMediaVideo.setRatio{aspect-ratio:1/1;}/*!sc*/
.gKyhcW.a-richMediaVideo .pause-button-wrapper{position:absolute;width:32px;height:32px;right:16px;bottom:16px;background-color:#19181766;z-index:3;border-radius:50%;}/*!sc*/
@media (min-width:64rem){.gKyhcW.a-richMediaVideo .pause-button-wrapper{width:45px;height:45px;}}/*!sc*/
.gKyhcW.a-richMediaVideo .pause-button-wrapper.show-btn{visibility:visible;}/*!sc*/
.gKyhcW.a-richMediaVideo .pause-button-wrapper.hide-btn{visibility:hidden;}/*!sc*/
.gKyhcW.a-richMediaVideo .pause-button-wrapper.-isSmallBtn{width:32px;height:32px;}/*!sc*/
.gKyhcW.a-richMediaVideo .pause-button-wrapper.-isSmallBtn .-playPauseA11yButton{width:32px;height:32px;}/*!sc*/
@media (min-width:48rem){.gKyhcW.a-richMediaVideo.isCarouselVideo .pause-button-wrapper{bottom:36px;}}/*!sc*/
@media (min-width:64rem){.gKyhcW.a-richMediaVideo.isCarouselVideo .pause-button-wrapper{bottom:8.5%;}}/*!sc*/
.gKyhcW.a-richMediaVideo .-playPauseA11yButton{z-index:99;position:absolute;bottom:50%;right:50%;display:block;width:32px;height:32px;cursor:pointer;background-color:transparent;-webkit-transform:translate(50%,50%);-ms-transform:translate(50%,50%);transform:translate(50%,50%);border-radius:50%;}/*!sc*/
@media (min-width:64rem){.gKyhcW.a-richMediaVideo .-playPauseA11yButton{width:45px;height:45px;}}/*!sc*/
.gKyhcW.a-richMediaVideo .-playPauseA11yButton.-pause{background-image:url('/static-assets/images/common/video-pause-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.gKyhcW.a-richMediaVideo .-playPauseA11yButton.-play{background-image:url('/static-assets/images/common/video-play-button.svg');background-position:center;background-repeat:no-repeat;}/*!sc*/
.gKyhcW.a-richMediaVideo .-playPauseA11yButton .vjs-control-text{visibility:hidden;}/*!sc*/
.jDVoKd.a-parallaxImage{width:100%;overflow:hidden;}/*!sc*/
.hzwJjQ.nl__signup_wrapper{background-color:#191817;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.hzwJjQ.nl__signup_wrapper{padding-left:16px;padding-right:16px;}}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper{background-color:#191817;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .closeBtn__wrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;}/*!sc*/
@media (min-width:64rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .closeBtn__wrapper{padding-top:5px;}}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .closeBtn__wrapper{position:absolute;top:2px;right:5px;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .closeBtn__wrapper .icn-close-small{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;border:none;background:url('/static-assets/images/common/icon_close_small.svg') no-repeat;padding:0;width:32px;height:32px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .closeBtn__wrapper .icn-close-small em{display:none;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container{background-color:#FFF;}/*!sc*/
@media (max-width:63.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container{padding-top:0;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container input{background-color:#FFF;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .select__menu{background-color:#FFF;padding-top:10px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .select__control{background-color:#FFF;border:unset;border-bottom:1px solid #E5E5E5;}/*!sc*/
@media (min-width:64rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .select__control{width:50%;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper{position:relative;margin-top:16px;}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper{padding-right:0;padding-left:0;}}/*!sc*/
@media (max-width:63.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper{margin-top:0;}}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper{padding-right:0;padding-left:0;}}/*!sc*/
@media (min-width:64rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper{padding-left:0;margin-top:0;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image{height:100%;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image img{object-fit:cover;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image .a-responsiveImage{height:100%;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image .a-responsiveImage img{height:100%;object-fit:cover;}/*!sc*/
@media  (min-width:48rem) and (max-width:63.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image .a-responsiveImage img{max-height:295px;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_image_wrapper .hero-image > div{height:100%;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form{padding-top:40px;padding-bottom:40px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form{padding:20px 20px 32px;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .title{font-size:0.875rem;line-height:1.25rem;-webkit-letter-spacing:2px;-moz-letter-spacing:2px;-ms-letter-spacing:2px;letter-spacing:2px;text-transform:uppercase;padding:0;margin-bottom:8px;color:#191817;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .subTitle{font-size:1.5rem;line-height:1.875rem;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;margin-bottom:24px;color:#191817;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .descriptionTxt{font-size:1rem;line-height:2.1875rem;-webkit-letter-spacing:0.4px;-moz-letter-spacing:0.4px;-ms-letter-spacing:0.4px;letter-spacing:0.4px;margin-bottom:24px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .descriptionTxt ul{padding-left:25px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .descriptionTxt ul li{list-style:url("/static-assets/images/common/tick_mark.svg");padding-left:14px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .descriptionTxt p{color:#555555;line-height:2.1875rem;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .input-email{margin-top:10px;position:relative;}/*!sc*/
@media (min-width:48rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form div.input-firstName{display:inline-block;width:48%;float:left;margin-right:2%;position:relative;}.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form div.input-lastName{display:inline-block;width:50%;position:relative;}.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form p.error{position:absolute;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .select__single-value{color:#555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .checkboxgroup{min-width:-webkit-fit-content;min-width:-moz-fit-content;min-width:fit-content;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .label-and-checkbox{margin-bottom:20px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .readMoreLink{background:none;padding-left:0;color:#555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .readMoreLink i{font-style:normal;font-size:0.75rem;cursor:pointer;-webkit-text-decoration:underline;text-decoration:underline;line-height:1rem;display:inline-block;text-underline-position:under;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .text_agreement_label{font-size:0.75rem;line-height:1rem;color:#555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .text_agreement_label a{color:#555555;-webkit-text-decoration:none;text-decoration:none;display:inline-block;position:relative;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .text_agreement_label a::after{content:'';position:absolute;width:100%;top:75%;left:0;padding-bottom:4px;border-bottom:1px solid #555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .text_agreement_label p{font-size:0.75rem;line-height:1rem;color:#555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .captcha{color:#555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .captcha a{color:#555555;-webkit-text-decoration:none;text-decoration:none;padding-bottom:1px;display:inline-block;position:relative;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .captcha a::after{content:'';position:absolute;width:100%;top:80%;left:0;padding-bottom:4px;border-bottom:1px solid #555555;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .button-wrapper{margin-top:24px;}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .nl_form .button-wrapper button{width:100%;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper{padding-bottom:20px;padding-top:20px;height:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;outline:none;}/*!sc*/
@media (max-width:47.9375rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper{padding-top:4px;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper .thankyou-title{font-size:1.5rem;line-height:1.875rem;-webkit-letter-spacing:1px;-moz-letter-spacing:1px;-ms-letter-spacing:1px;letter-spacing:1px;color:#191817;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper .thankyou-description{font-size:1rem;line-height:1.625rem;-webkit-letter-spacing:0.4px;-moz-letter-spacing:0.4px;-ms-letter-spacing:0.4px;letter-spacing:0.4px;color:#191817;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper .thankyou-description p{white-space:initial;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .thankyou__wrapper .thankyou-cta{font-size:0.875rem;line-height:1.25rem;margin-top:60px;border-bottom:1px solid #191817;width:-webkit-max-content;width:-moz-max-content;width:max-content;padding:0;background-color:unset;cursor:pointer;color:#191817;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .nl-container .error-message{font-size:14px;line-height:1.25rem;color:#BF2839;padding:10px 0;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .saleTimer_wrapper{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;-webkit-align-items:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center;width:100%;padding:20px;}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .saleTimer_wrapper .saleStarts-ends-Label{color:#FFF;margin-bottom:8px;}/*!sc*/
@media (min-width:48rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .saleTimer_wrapper .saleStarts-ends-Label{margin-bottom:4px;}}/*!sc*/
@media (min-width:64rem){.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper .saleTimer_wrapper .saleStarts-ends-Label{margin-bottom:0;}}/*!sc*/
.hzwJjQ.nl__signup_wrapper .newsLetter__wrapper.-isExternalCampaign.a-container{margin:0;padding:0;max-width:unset;width:unset;}/*!sc*/
.hzwJjQ.nl__signup_wrapper.nl-with-saletimer .hero-image .a-responsiveImage img{-webkit-filter:brightness(50%);filter:brightness(50%);}/*!sc*/
.hzwJjQ.-dark .nl_form .formInput:focus{border-bottom:1px solid #555555;}/*!sc*/
.hzwJjQ.-dark .nl_form.error input{border-bottom:1px solid solid 1px #BF2839;}/*!sc*/
.hzwJjQ.-dark .nl_form.error input.formInput:focus{border-bottom:1px solid solid 1px #BF2839;}/*!sc*/
.hzwJjQ.-dark .nl_form input,.hzwJjQ.-dark .nl_form .title,.hzwJjQ.-dark .nl_form .subTitle,.hzwJjQ.-dark .nl_form .thankyou-title,.hzwJjQ.-dark .nl_form .descriptionTxt{color:#FFF;}/*!sc*/
.hzwJjQ.-dark .nl_form input p,.hzwJjQ.-dark .nl_form .title p,.hzwJjQ.-dark .nl_form .subTitle p,.hzwJjQ.-dark .nl_form .thankyou-title p,.hzwJjQ.-dark .nl_form .descriptionTxt p{color:#FFF;}/*!sc*/
.hzwJjQ.-dark .nl_form .button-wrapper button{background-color:#FFF;}/*!sc*/
.hzwJjQ.-dark .nl_form .button-wrapper button span{color:#191817;}/*!sc*/
.hzwJjQ.-dark .nl_form .button-wrapper button svg{fill:#191817;}/*!sc*/
.hzwJjQ.-dark .nl_form .button-wrapper button.disabled{background-color:#E5E5E5;}/*!sc*/
.hzwJjQ.-dark .nl_form .thankyou-cta{color:#FFF;border-bottom:1px solid #FFF;}/*!sc*/
.eKmbVX.richTextWrapper a{color:inherit;}/*!sc*/
.brcUyk .is-dual-field{margin-bottom:48px;}/*!sc*/
@media (min-width:64rem){.brcUyk .is-dual-field{margin-bottom:0;}}/*!sc*/
.brcUyk fieldset{border:none;padding:0;}/*!sc*/
.brcUyk .required-label{opacity:0.7;}/*!sc*/
.brcUyk .rowAlign{padding:0;}/*!sc*/
.brcUyk .birthday-label{margin-bottom:40px;display:block;color:#555555;}/*!sc*/
.brcUyk .dateWrapper{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;gap:10px;width:75%;}/*!sc*/
.brcUyk .dateWrapper .error{position:unset !important;}/*!sc*/
.brcUyk .country{color:#555555;text-transform:capitalize;margin-top:-20px;}/*!sc*/
@media (min-width:64rem){.brcUyk .country{text-align:left;margin-top:-6px;}.brcUyk .country .country-name{padding-right:0;}}/*!sc*/
.brcUyk .country .country-image{max-width:40px;}/*!sc*/
.brcUyk .country .country-name{line-height:1.63;}/*!sc*/
.brcUyk .country .flag-select{width:40px;height:26px;}/*!sc*/
.brcUyk .country .flag-select .country-flag{font-size:0rem;}/*!sc*/
.brcUyk .country .flag-select .country-flag img{border-radius:2px;}/*!sc*/
.brcUyk .dropdown-title{font-size:0.875rem;line-height:1.375rem;color:#555555;padding-bottom:6px;display:block;text-align:left;}/*!sc*/
.brcUyk .captcha{font-size:0.75rem;color:#555555;margin-top:30px;padding-left:30px;}/*!sc*/
.brcUyk .captcha a{color:#555555;}/*!sc*/
.brcUyk .captcha a:hover{color:#191817;}/*!sc*/
.brcUyk.newsletter-form .captcha{color:#555555;padding-left:0;}/*!sc*/
.brcUyk .checkbox-error{color:#BF2839;margin:8px 0;}/*!sc*/
.brcUyk .label-and-checkbox{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}/*!sc*/
.brcUyk .input-salutation .select__control{border:none;border-bottom:1px solid #E5E5E5;}/*!sc*/
.brcUyk .input-salutation .select__value-container{padding-left:0;}/*!sc*/
.brcUyk .input-salutation .select__single-value,.brcUyk .input-salutation .select__placeholder{margin-left:0;}/*!sc*/
.iRKZpZ.o-footer{background-color:#191817;}/*!sc*/
.iRKZpZ.o-footer h1,.iRKZpZ.o-footer h2,.iRKZpZ.o-footer h3,.iRKZpZ.o-footer h4,.iRKZpZ.o-footer h5,.iRKZpZ.o-footer h6,.iRKZpZ.o-footer .h1,.iRKZpZ.o-footer .h2,.iRKZpZ.o-footer .h3,.iRKZpZ.o-footer .h4,.iRKZpZ.o-footer .h5,.iRKZpZ.o-footer .h6,.iRKZpZ.o-footer .h7{color:#FFF;}/*!sc*/
.iRKZpZ.o-footer .-padded{padding-top:30px;padding-bottom:60px;}/*!sc*/
.iRKZpZ.o-footer .o-footer__container{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;padding:0 20px;}/*!sc*/
@media (min-width:48rem){.iRKZpZ.o-footer .o-footer__container{padding:0 16px;}}/*!sc*/
@media (min-width:64rem){.iRKZpZ.o-footer .o-footer__container{padding:0 48px;}}/*!sc*/
.iRKZpZ.o-footer .o-footer__container {color:#ACA69F;margin-top:24px;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;width:100%;}/*!sc*/
.iRKZpZ.o-footer .o-footer__container a{color: #fff;text-decoration:none;line-height:1.8em}/*!sc*/
.iRKZpZ.o-footer .o-footer__container p{color:#ACA69F;line-height:1.5em}/*!sc*/
.iRKZpZ.o-footer .o-footer__logo .a-responsiveImage{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;background-color:#191817;}/*!sc*/
.iRKZpZ.o-footer .o-footer__logo .a-responsiveImage .a-observer{width:-webkit-fit-content;width:-moz-fit-content;width:fit-content;}/*!sc*/
.iRKZpZ.o-footer .o-footer__logo img{width:205px;height:17px;}/*!sc*/
.eELJJn.m-footerLinks .footerlinks-col{-webkit-order:2;-ms-flex-order:2;order:2;}/*!sc*/
@media only screen and (width >= 75em){.eELJJn.m-footerLinks .footerlinks-col{-webkit-order:unset;-ms-flex-order:unset;order:unset;}}/*!sc*/
.eELJJn.m-footerLinks .lang-locale-selector-wrapper{margin:48px 0;}/*!sc*/
@media only screen and (width >= 75em){.eELJJn.m-footerLinks .lang-locale-selector-wrapper{margin-bottom:unset;}}/*!sc*/
@media (max-width:30rem){.eELJJn.m-footerLinks .lang-locale-selector-wrapper{margin-bottom:0;}}/*!sc*/
.eELJJn.m-footerLinks .externalLink-span .a-svgIcon{position:absolute;top:initial;}/*!sc*/
.futqvh.m-footerLinksInternalList{margin-top:48px;}/*!sc*/
@media (min-width:48rem){.futqvh.m-footerLinksInternalList{margin-right:30px;}}/*!sc*/
@media only screen and (width >= 75em){.futqvh.m-footerLinksInternalList{margin-right:8.8rem;}}/*!sc*/
.futqvh.m-footerLinksInternalList .countrySelector,.futqvh.m-footerLinksInternalList .languageSelector{margin-bottom:20px;}/*!sc*/
@media (min-width:48rem){.futqvh.m-footerLinksInternalList .countrySelector,.futqvh.m-footerLinksInternalList .languageSelector{margin-bottom:36px;}}/*!sc*/
@media (min-width:64rem){.futqvh.m-footerLinksInternalList .countrySelector,.futqvh.m-footerLinksInternalList .languageSelector{margin-bottom:38px;}}/*!sc*/
.futqvh.m-footerLinksInternalList .countrySelector::after,.futqvh.m-footerLinksInternalList .languageSelector::after{display:none;}/*!sc*/
.futqvh.m-footerLinksInternalList .languageSelector{margin-bottom:8.5px;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__title{margin-bottom:20px;}/*!sc*/
@media (min-width:48rem){.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__title{margin-bottom:36px;}}/*!sc*/
@media (min-width:64rem){.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__title{margin-bottom:38px;}}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__title::after{display:none;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors{margin:0;font-size:0.75rem;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors a,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors button,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .arrow-down,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country-flag-label{-webkit-transition:color 200ms cubic-bezier(0.165,0.84,0.44,1);transition:color 200ms cubic-bezier(0.165,0.84,0.44,1);}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors:hover{color:#191817;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors:hover a,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors:hover button,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors:hover .arrow-down,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors:hover .country-flag-label{color:#191817;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .language,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country{margin:0;cursor:default;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .language > button,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country > button{font-size:inherit;height:initial;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .language select,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country select{height:auto;width:auto;border:none;font-family:BeoSupreme,Lexend Deca,Arial,Helvetica,sans-serif;font-size:0.875rem;-webkit-letter-spacing:0;-moz-letter-spacing:0;-ms-letter-spacing:0;letter-spacing:0;line-height:1;color:#555555;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0 20px 0 0;background:url('/static-assets/images/common/chevron-down.svg') 100% 50% no-repeat;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .language select::-ms-expand,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country select::-ms-expand{display:none;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .language select:focus,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__selectors .country select:focus{outline:none;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li + li{margin-top:8px;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li .btn-cta-login{background-color:transparent;padding:0;cursor:pointer;text-align:left;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li .m-footerLinksInternalList__link,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li .btn-cta-login{color:#FCFAEE;}/*!sc*/
.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li .m-footerLinksInternalList__link:hover,.futqvh.m-footerLinksInternalList .m-footerLinksInternalList__links li .btn-cta-login:hover{color:#FCFAEE;}/*!sc*/
.eLkmJQ .head-icon{cursor:pointer;border:none;}/*!sc*/
.eLkmJQ .head{position:relative;margin:0;padding:6px 0;}/*!sc*/
.eLkmJQ .active::after{content:'+';position:absolute;right:0;top:9px;}/*!sc*/
.eLkmJQ .inactive::after{content:'-';position:absolute;right:3px;top:7px;}/*!sc*/
.eLkmJQ.-isFooter .head{padding:6px 0 1.5rem;-webkit-transition:0.2s ease-in-out;transition:0.2s ease-in-out;}/*!sc*/
.eLkmJQ.-isFooter .inactive{padding:6px 0 24px;}/*!sc*/
.eLkmJQ.-isFooter .active::after{content:'';position:absolute;left:99%;top:15px;background:url('/static-assets/images/common/chevron-down-white.svg') 50% 50% no-repeat;width:9px;height:6px;}/*!sc*/
.eLkmJQ.-isFooter .inactive::after{content:'';position:absolute;left:99%;top:15px;background:url('/static-assets/images/common/chevron-up-white.svg') 50% 50% no-repeat;width:9px;height:6px;}/*!sc*/
.eLkmJQ.-isFooter button.accordian-btn{background-color:transparent;width:100%;text-align:left;padding:0;}/*!sc*/
.eLkmJQ.-isFooter .cursor-pointer{cursor:pointer;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector{background-color:transparent;cursor:pointer;padding:0;width:100%;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .flag-country-locale{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;position:relative;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .flag-country-locale::after{content:'';position:relative;left:10%;top:8px;background:url("/static-assets/images/common/chevron-down-white.svg") 50% 50% no-repeat;width:9px;height:6px;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .flag-symbol{width:43px;height:32px;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .flag-symbol .country-flag-label{display:none;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .flag-symbol .country-flag img{width:43px;height:32px;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .lang-locale-display{margin-left:8px;color:#FCFAEE;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .lang-locale-display .country-display{text-align:left;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector .lang-locale-display .locale-display{text-align:left;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .country-lang-selector:hover .lang-locale-display{color:#FCFAEE;}/*!sc*/
.cvWVYB.country-lang-display-wrapper .popup-container{margin:0;padding:0;inset:0;width:100%;height:100%;max-width:unset;}/*!sc*/
@media (min-width:90rem){.cvWVYB.country-lang-display-wrapper .popup-container{width:1440px;height:838px;margin:auto;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;z-index:999;-webkit-transform:translate(-50%,-50%);-ms-transform:translate(-50%,-50%);transform:translate(-50%,-50%);box-shadow:0 4px 16px rgb(0 0 0 / 25%);}}/*!sc*/
.ezErUS.a-footerCopyright{margin-top:120px;color:#FCFAEE;}/*!sc*/
data-styled.g2[id="sc-182o2pm-0"]{content:"cnUYgB,gxWDhC,iQDRjs,htgDld,jaSVxA,hDjgnE,gUaYhD,JkDQa,czzJlK,kCwnwR,ibyToJ,folSNP,enldzb,ldERZO,lMFkE,bbiOe,gxsYAR,foMmVl,fIYdyW,fIRVTh,chUjjz,jAVMrb,cMrqcU,gKyhcW,exVKHx,jDVoKd,iQKvLM,hzwJjQ,eKmbVX,brcUyk,iRKZpZ,eELJJn,VYogE,futqvh,eLkmJQ,cvWVYB,ezErUS,"}/*!sc*/
.cNdZCy h1,.cNdZCy h2,.cNdZCy h3,.cNdZCy h4,.cNdZCy h5,.cNdZCy h6,.cNdZCy .h1,.cNdZCy .h2,.cNdZCy .h3,.cNdZCy .h4,.cNdZCy .h5,.cNdZCy .h6,.cNdZCy .h7{color:#191817;}/*!sc*/
.cNdZCy h1.-light,.cNdZCy h2.-light,.cNdZCy h3.-light,.cNdZCy h4.-light,.cNdZCy h5.-light,.cNdZCy h6.-light,.cNdZCy .h1.-light,.cNdZCy .h2.-light,.cNdZCy .h3.-light,.cNdZCy .h4.-light,.cNdZCy .h5.-light,.cNdZCy .h6.-light,.cNdZCy .h7.-light{color:#FFF;}/*!sc*/
.cNdZCy p{color:#555555;font-size:120%;}/*!sc*/

.cNdZCy .main-wrapper{background-color:#FFF;margin-top:100px;}/*!sc*/
.cNdZCy .main-wrapper.-isHeaderFixed{padding-top:0;}/*!sc*/
.cNdZCy .main-wrapper.adjustBannerTop{margin-top:0;}/*!sc*/


.cNdZCy h4::after,.cNdZCy .h4::after{background-color:#191817;}/*!sc*/
.cNdZCy .h7{color:#555555;}/*!sc*/
.cNdZCy .has-express-banner{margin-top:0px;}/*!sc*/
.cNdZCy .has-express-banner .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .has-country-notification{margin-top:0px;}/*!sc*/
.cNdZCy .has-country-notification .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .has-voucher-notification{margin-top:40px;}/*!sc*/
.cNdZCy .has-voucher-notification .o-header.-showHeader{top:40px;}/*!sc*/
.cNdZCy .unsupported-browser-promo{margin-top:0px;}/*!sc*/
.cNdZCy .unsupported-browser-promo .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .express-country-promo{margin-top:0px;}/*!sc*/
.cNdZCy .express-country-promo .express-notification .promo-banner__display{top:0px;}/*!sc*/
.cNdZCy .express-country-promo .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .express-country-promo .o-header.-showHeader .o-mainNav__content .o-mainNav__container .o-mainNav .o-mainNav__logInOut{margin-bottom:0px;}/*!sc*/
.cNdZCy .express-country-promo .country-notification .promo-banner__display{border-bottom:none;}/*!sc*/
.cNdZCy .express-browser-promo{margin-top:0px;}/*!sc*/
.cNdZCy .express-browser-promo .express-notification .promo-banner__display{top:0px;}/*!sc*/
.cNdZCy .express-browser-promo .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .express-browser-promo .country-notification .promo-banner__display{border-bottom:none;}/*!sc*/
.cNdZCy .country-browser-promo{margin-top:0px;}/*!sc*/
.cNdZCy .country-browser-promo .unsupported-browser-notification .promo-banner__display{top:0px;}/*!sc*/
.cNdZCy .country-browser-promo .o-header.-showHeader{top:0px;}/*!sc*/
.cNdZCy .country-browser-promo .country-notification .promo-banner__display{border-bottom:none;}/*!sc*/
.cNdZCy .-no-margin{margin-top:0;}/*!sc*/
.cNdZCy .no-footer-margin .o-footer{margin-top:0;}/*!sc*/
.cNdZCy .skip-link-section{margin:auto;max-width:1512px;opacity:0;height:0;}/*!sc*/
.cNdZCy .skip-link-section .skip-links-list{margin:0;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;}/*!sc*/
@media (max-width:47.9375rem){.cNdZCy .skip-link-section .skip-links-list{-webkit-flex-direction:column;-ms-flex-direction:column;flex-direction:column;}}/*!sc*/
.cNdZCy .skip-link-section .skip-links-list li{list-style:none;}/*!sc*/
.cNdZCy .skip-link-section .skip-links-list .skip-link{-webkit-text-decoration:none;text-decoration:none;color:#191817;}/*!sc*/
.cNdZCy .skip-link-section:focus-within{opacity:1;height:auto;}/*!sc*/
@media (max-width:47.9375rem){.cNdZCy .skip-link-section:focus-within{padding-bottom:17px;padding-left:16px;}}/*!sc*/
@media (max-width:47.9375rem){.cNdZCy .skip-link-section:focus-within ul{padding-inline-start:0;}}/*!sc*/
.cNdZCy .skip-link-section:focus-within ul li{padding-top:16px;padding-bottom:19px;padding-right:24px;}/*!sc*/
@media (max-width:47.9375rem){.cNdZCy .skip-link-section:focus-within ul li{padding:0;padding-top:10px;}}/*!sc*/
.cNdZCy .skip-link-section:focus-within ul li .skip-link:focus{-webkit-text-decoration:underline;text-decoration:underline;}/*!sc*/
data-styled.g3[id="sc-1o2ivmc-0"]{content:"cNdZCy,"}/*!sc*/
@-webkit-keyframes eUsvCl{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
@keyframes eUsvCl{0%{-webkit-transform:rotate(0deg);-ms-transform:rotate(0deg);transform:rotate(0deg);}100%{-webkit-transform:rotate(360deg);-ms-transform:rotate(360deg);transform:rotate(360deg);}}/*!sc*/
data-styled.g14[id="sc-keyframes-eUsvCl"]{content:"eUsvCl,"}/*!sc*/
@-webkit-keyframes jTBhup{0%{opacity:0;}10%{opacity:0;}100%{opacity:1;}}/*!sc*/
@keyframes jTBhup{0%{opacity:0;}10%{opacity:0;}100%{opacity:1;}}/*!sc*/
data-styled.g17[id="sc-keyframes-jTBhup"]{content:"jTBhup,"}/*!sc*/
@-webkit-keyframes fWssMT{0%{opacity:1;}100%{opacity:0;}}/*!sc*/
@keyframes fWssMT{0%{opacity:1;}100%{opacity:0;}}/*!sc*/
data-styled.g18[id="sc-keyframes-fWssMT"]{content:"fWssMT,"}/*!sc*/
@-webkit-keyframes hxLFzb{0%{opacity:0;}100%{opacity:1;}}/*!sc*/
@keyframes hxLFzb{0%{opacity:0;}100%{opacity:1;}}/*!sc*/
data-styled.g19[id="sc-keyframes-hxLFzb"]{content:"hxLFzb,"}/*!sc*/
@-webkit-keyframes fRrRNF{0%{opacity:1;}5%{opacity:1;}10%{opacity:0.6;}25%{opacity:1;}27%{opacity:0.8;}32%{opacity:1;}45%{opacity:1;}55%{opacity:0.6;}60%{opacity:1;}67%{opacity:0.8;}73%{opacity:1;}85%{opacity:1;}87%{opacity:0.6;}89%{opacity:0.7;}91%{opacity:1;}100%{opacity:1;}}/*!sc*/
@keyframes fRrRNF{0%{opacity:1;}5%{opacity:1;}10%{opacity:0.6;}25%{opacity:1;}27%{opacity:0.8;}32%{opacity:1;}45%{opacity:1;}55%{opacity:0.6;}60%{opacity:1;}67%{opacity:0.8;}73%{opacity:1;}85%{opacity:1;}87%{opacity:0.6;}89%{opacity:0.7;}91%{opacity:1;}100%{opacity:1;}}/*!sc*/
data-styled.g20[id="sc-keyframes-fRrRNF"]{content:"fRrRNF,"}/*!sc*/
@-webkit-keyframes cxjtGy{0%{opacity:0;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);}10%{opacity:0;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);}100%{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}/*!sc*/
@keyframes cxjtGy{0%{opacity:0;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);}10%{opacity:0;-webkit-transform:translate3d(0,20px,0);-ms-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0);}100%{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}/*!sc*/
data-styled.g21[id="sc-keyframes-cxjtGy"]{content:"cxjtGy,"}/*!sc*/
@-webkit-keyframes gDibJC{0%{opacity:0;-webkit-transform:translate3d(0,80px,0);-ms-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);}10%{opacity:0;-webkit-transform:translate3d(0,80px,0);-ms-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);}100%{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}/*!sc*/
@keyframes gDibJC{0%{opacity:0;-webkit-transform:translate3d(0,80px,0);-ms-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);}10%{opacity:0;-webkit-transform:translate3d(0,80px,0);-ms-transform:translate3d(0,80px,0);transform:translate3d(0,80px,0);}100%{opacity:1;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}}/*!sc*/
data-styled.g22[id="sc-keyframes-gDibJC"]{content:"gDibJC,"}/*!sc*/
@-webkit-keyframes kHDmOV{0%{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%);}}/*!sc*/
@keyframes kHDmOV{0%{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);}100%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%);}}/*!sc*/
data-styled.g23[id="sc-keyframes-kHDmOV"]{content:"kHDmOV,"}/*!sc*/
@-webkit-keyframes kVaNdd{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%);}100%{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);}}/*!sc*/
@keyframes kVaNdd{0%{-webkit-transform:translateX(0%);-ms-transform:translateX(0%);transform:translateX(0%);}100%{-webkit-transform:translateX(100%);-ms-transform:translateX(100%);transform:translateX(100%);}}/*!sc*/
data-styled.g24[id="sc-keyframes-kVaNdd"]{content:"kVaNdd,"}/*!sc*/
@-webkit-keyframes berDwh{0%{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);}100%{-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}/*!sc*/
@keyframes berDwh{0%{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);}100%{-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}}/*!sc*/
data-styled.g25[id="sc-keyframes-berDwh"]{content:"berDwh,"}/*!sc*/
@-webkit-keyframes hkwfSp{0%{-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}100%{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);}}/*!sc*/
@keyframes hkwfSp{0%{-webkit-transform:translateY(0%);-ms-transform:translateY(0%);transform:translateY(0%);}100%{-webkit-transform:translateY(100%);-ms-transform:translateY(100%);transform:translateY(100%);}}/*!sc*/
data-styled.g26[id="sc-keyframes-hkwfSp"]{content:"hkwfSp,"}/*!sc*/
@-webkit-keyframes dvfWVy{0%{opacity:0;-webkit-letter-spacing:4px;-moz-letter-spacing:4px;-ms-letter-spacing:4px;letter-spacing:4px;}70%{opacity:1;}100%{opacity:1;-webkit-letter-spacing:8px;-moz-letter-spacing:8px;-ms-letter-spacing:8px;letter-spacing:8px;}}/*!sc*/
@keyframes dvfWVy{0%{opacity:0;-webkit-letter-spacing:4px;-moz-letter-spacing:4px;-ms-letter-spacing:4px;letter-spacing:4px;}70%{opacity:1;}100%{opacity:1;-webkit-letter-spacing:8px;-moz-letter-spacing:8px;-ms-letter-spacing:8px;letter-spacing:8px;}}/*!sc*/
data-styled.g27[id="sc-keyframes-dvfWVy"]{content:"dvfWVy,"}/*!sc*/
@-webkit-keyframes czVaTc{0%{opacity:0;-webkit-letter-spacing:16px;-moz-letter-spacing:16px;-ms-letter-spacing:16px;letter-spacing:16px;}70%{opacity:1;}100%{opacity:1;-webkit-letter-spacing:18px;-moz-letter-spacing:18px;-ms-letter-spacing:18px;letter-spacing:18px;}}/*!sc*/
@keyframes czVaTc{0%{opacity:0;-webkit-letter-spacing:16px;-moz-letter-spacing:16px;-ms-letter-spacing:16px;letter-spacing:16px;}70%{opacity:1;}100%{opacity:1;-webkit-letter-spacing:18px;-moz-letter-spacing:18px;-ms-letter-spacing:18px;letter-spacing:18px;}}/*!sc*/
data-styled.g28[id="sc-keyframes-czVaTc"]{content:"czVaTc,"}/*!sc*/


.o-hero__wrapper,
.kCwnwR,
.czzJlK,
.m-heroV4 {
  height: auto !important;
  max-height: none !important;
}

.m-heroV4 {
  aspect-ratio: 1920 / 816;
  position: relative;
}