<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Typography
*/
/*
    Media queries
*/
/*
    Screen visual height minus UI
*/
/*
    Screen - Top and bottom values
*/
/*
    Page mixins
*/
/*
    Hide scrollbars
*/
/*
    Borders
*/
/*
    Functions
*/
.header {
  position: sticky;
  position: -webkit-sticky;
  z-index: 101;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  min-height: 45px;
  justify-content: flex-end;
  box-shadow: inset 0 1px #f2f2f2, inset 0 -1px #f2f2f2;
}
.header:not([class*=bg--]) {
  background-color: #fff;
}
@media (min-width: 992px) {
  .header &gt; .link--main-nav + .link--main-nav:not(:nth-child(2)):not(.header__search-button) {
    margin-left: 5px;
  }
}
@media (min-width: 1280px) {
  .page:not(.page--no-logo) .header {
    min-height: 60px;
  }
}

.header button.link--main-nav,
.header a.link--main-nav,
.link--main-nav.account-btn,
.navigation-state-container .link--main-nav,
.category-state-container .link--main-nav {
  min-height: 45px;
  padding: 4px 9px 18px;
}
@media (min-width: 1280px) {
  .page:not(.page--no-logo) .header button.link--main-nav,
  .page:not(.page--no-logo) .header a.link--main-nav,
  .page:not(.page--no-logo) .link--main-nav.account-btn,
  .page:not(.page--no-logo) .navigation-state-container .link--main-nav,
  .page:not(.page--no-logo) .category-state-container .link--main-nav {
    min-height: 60px;
    padding: 4px 9px 33px;
  }
}

.header__icon-button {
  display: flex;
  width: 45px;
  min-width: -moz-fit-content;
  min-width: fit-content;
  max-height: 45px;
  flex-direction: row;
  align-items: center;
  color: #000;
}
@media (min-width: 992px) and (max-width: 1439px) {
  .header__icon-button {
    width: 40px;
  }
}
.header__icon-button:not([class*=justify-content--]) {
  justify-content: center;
}
.header__icon-button:hover, .is--tabbing .header__icon-button:focus {
  color: #6b6b6b;
}
.header__icon-button.link--main-nav::before {
  display: none;
}
.header__icon-button svg ~ * {
  margin-left: 10px;
}

@media (max-width: 991px) {
  .navigation-state-container {
    padding-bottom: 0;
  }
  @supports (padding-bottom: env(safe-area-inset-bottom)) {
    .navigation-state-container {
      --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
      padding-bottom: calc(0 + var(--safe-area-inset-bottom));
      transition: padding-bottom 0.15s ease;
      will-change: padding-bottom;
    }
  }
  .navigation-state-container {
    position: fixed;
    z-index: 109;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: column;
    background-color: #fff;
  }
  .navigation-state-container[aria-hidden=true] {
    display: none;
  }
}
.navigation-state-container button.as-cell {
  padding: 4px 9px 18px;
}

.header__icon-button [data-accountnav-component=accountNameWrapper] {
  max-width: 80px;
}

[data-component-id=account]:not(.account--from-menu) .state-close-trigger--navigation {
  display: none;
}

@media (max-width: 991px) {
  [data-component-id=mobileCustomerServiceMenu].state-container,
  [data-component-id=customerServiceDrawer].drawer,
  [data-component-id=account].drawer {
    top: 0;
    width: 100%;
    max-width: 100vw;
  }
  .layout--has-row-top:not(.layout--header-stuck) [data-component-id=mobileCustomerServiceMenu].state-container,
  .layout--has-row-top:not(.layout--header-stuck) [data-component-id=customerServiceDrawer].drawer,
  .layout--has-row-top:not(.layout--header-stuck) [data-component-id=account].drawer {
    top: 0;
  }
  [data-component-id=mobileCustomerServiceMenu].state-container .as-cell,
  [data-component-id=customerServiceDrawer].drawer .as-cell,
  [data-component-id=account].drawer .as-cell {
    min-height: 45px;
    padding: 4px 9px 18px;
  }
}

.header {
  height: 45px;
  justify-content: center;
}
@media (min-width: 1280px) {
  .header {
    height: 60px;
  }
}

.country-selector {
  padding-bottom: 0;
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .country-selector {
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0);
    padding-bottom: calc(0 + var(--safe-area-inset-bottom));
    transition: padding-bottom 0.15s ease;
    will-change: padding-bottom;
  }
}
.country-selector {
  position: fixed;
  z-index: 1;
  top: 90px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 360px;
  max-width: calc(100% - 20px);
  max-height: calc(100vh - 180px);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .country-selector {
    top: 15vh;
    max-height: 70vh;
  }
}

.country-selector--country-search {
  display: flex;
  flex-direction: column;
}
.country-selector--country-search .country-selector__region,
.country-selector--country-search input.country-selector__search-input--portal {
  height: 45px;
}
.country-selector--country-search .country-selector__region::after {
  left: 20px;
}

.country-selector__list {
  position: static;
}

.country-selector__list .country-selector__region {
  position: relative;
  width: 100%;
}

.country-selector__button {
  display: block;
  min-height: 30px;
}
@media (max-width: 767px) {
  .country-selector__button {
    min-height: 45px;
  }
}</pre></body></html>