html{
  font-size: calc(var(--font-body-scale) * 62.5%);
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('/fonts/SFProText-Regular.woff2') format('woff2'),
  url('/fonts/SFProText-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('/fonts/SFProText-Medium.woff2') format('woff2'),
  url('/fonts/SFProText-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('/fonts/SFProText-Semibold.woff2') format('woff2'),
  url('/fonts/SFProText-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Pro Text';
  src: url('/fonts/SFProText-Bold.woff2') format('woff2'),
  url('/fonts/SFProText-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('/fonts/fa-solid-900.woff2') format('woff2');}

:root {
  --color-bg: #ffffff;
  --color-border: #e6e6e6;
  --color-text: #1d1d1f;
  --color-muted: #666;
  --color-primary: #0a84ff;
  --color-primary-10: rgba(10,132,255,0.08);

  --font-body: "SF Pro Text", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container-max: 1200px;
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;

  --radius-1: 6px;
  --radius-2: 10px;

  --z-header: 1000;
}
 

* { box-sizing: border-box; }
html, body { height: 100%; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
  letter-spacing: 0.06rem;
}

a { color: inherit; text-decoration: none; }
/*a:hover { color: var(--color-primary); }*/

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  /*padding: 0 var(--sp-4);*/
}

/* Header */
/*.header {*/
/*  position: sticky;*/
/*  top: 0;*/
/*  z-index: var(--z-header);*/
/*  background: var(--color-bg);*/
/* }*/

/* Top bar (volitelný message) */
.header__top {
  display: none; /* zapnout dle potřeby */
  background: var(--color-primary);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: var(--sp-2) 0;
}

/* Main row */
.header__row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  height: 106px;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 28px 0 38px; 
  justify-content: space-between;
}

/* Brand */
.header__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  min-width: 120px;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  height: 28px;
}
.header__logo img, .header__logo svg {
  display: block;
  height: 40px;
}

/* Nav */
.header__nav {
  flex: 1 1 auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: var(--radius-1);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text);
}
.nav__link:hover {
  background: var(--color-primary-10);
}

/* Dropdown (hover desktop) */
.dropdown__toggle::after {
  content: "";
  margin-left: 6px;
  border: 5px solid transparent;
  border-top-color: currentColor;
}
.dropdown {
  position: relative;
}
.dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 6px;
  display: none;
}
.dropdown:hover .dropdown__menu {
  display: block;
}
.dropdown__list {
  list-style: none;
  margin: 0;
  padding: 4px;
}
.dropdown__item a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-1);
  font-size: 14px;
  color: var(--color-text);
}
.dropdown__item a:hover { background: var(--color-primary-10); }

/* Actions (search, account, cart) */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-1);
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}
.action-btn:hover { background: var(--color-primary-10); }
.action-btn svg { width: 18px; height: 18px; }

/* Burger (mobile) */
.header__burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-1);
  border: 1px solid var(--color-border);
  background: transparent;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.burger-lines, .burger-lines::before, .burger-lines::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--color-text);
  position: relative;
}
.burger-lines::before { position: absolute; top: -6px; }
.burger-lines::after { position: absolute; top: 6px; }

/* Mobile menu */
.mnav {
  position: fixed;
  inset: 0 0 0 auto;
  width: 88%;
  max-width: 360px;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: calc(var(--z-header) + 1);
  display: flex;
  flex-direction: column;
}
.mnav--open { transform: translateX(0); }
.mnav__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--sp-4); border-bottom: 1px solid var(--color-border);
}
.mnav__title { font-weight: 700; }
.mnav__close {
  width: 36px; height: 36px; border-radius: var(--radius-1);
  border: 1px solid var(--color-border); background: transparent; cursor: pointer;
}
.mnav__body { padding: var(--sp-2) var(--sp-2) var(--sp-5); overflow: auto; }
.mnav__list { list-style: none; margin: 0; padding: 0; }
.mnav__item { border-bottom: 1px solid var(--color-border); }
.mnav__link {
  display: block; padding: 12px; font-weight: 600;
}
.mnav__sub {
  padding: 6px 12px 12px 12px;
}
.mnav__sub a { display: block; padding: 10px 8px; border-radius: var(--radius-1); }
.mnav__sub a:hover { background: var(--color-primary-10); }

/* Overlay */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease;
  z-index: var(--z-header);
}
.overlay--show { opacity: 1; visibility: visible; }

/* Responsive */
@media (max-width: 1024px) {
  .search { display: none; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .header__burger { display: inline-flex; }
}


:root,
.color-background-1 {
  --color-background: 255,255,255;

  --gradient-background: #ffffff;

  --color-foreground: 0,0,0;
  --color-shadow: 0,0,0;
  --color-button: 0,113,227;
  --color-button-text: 255,255,255;
  --color-secondary-button: 255,255,255;
  --color-secondary-button-text: 0,0,0;
  --color-link: 0,0,0;
  --color-badge-foreground: 0,0,0;
  --color-badge-background: 255,255,255;
  --color-badge-border: 0,0,0;
  --payment-terms-background-color: rgb(255 255 255);
}


.color-background-2 {
  --color-background: 243,243,243;

  --gradient-background: #f3f3f3;

  --color-foreground: 0,0,0;
  --color-shadow: 0,0,0;
  --color-button: 0,0,0;
  --color-button-text: 243,243,243;
  --color-secondary-button: 243,243,243;
  --color-secondary-button-text: 0,0,0;
  --color-link: 0,0,0;
  --color-badge-foreground: 0,0,0;
  --color-badge-background: 243,243,243;
  --color-badge-border: 0,0,0;
  --payment-terms-background-color: rgb(243 243 243);
}


.color-inverse {
  --color-background: 0,0,0;

  --gradient-background: #000000;

  --color-foreground: 255,255,255;
  --color-shadow: 0,0,0;
  --color-button: 255,255,255;
  --color-button-text: 0,0,0;
  --color-secondary-button: 0,0,0;
  --color-secondary-button-text: 255,255,255;
  --color-link: 255,255,255;
  --color-badge-foreground: 255,255,255;
  --color-badge-background: 0,0,0;
  --color-badge-border: 255,255,255;
  --payment-terms-background-color: rgb(0 0 0);
}


.color-accent-1 {
  --color-background: 0,0,0;

  --gradient-background: #000000;

  --color-foreground: 255,255,255;
  --color-shadow: 0,0,0;
  --color-button: 255,255,255;
  --color-button-text: 0,0,0;
  --color-secondary-button: 0,0,0;
  --color-secondary-button-text: 255,255,255;
  --color-link: 255,255,255;
  --color-badge-foreground: 255,255,255;
  --color-badge-background: 0,0,0;
  --color-badge-border: 255,255,255;
  --payment-terms-background-color: rgb(0 0 0);
}


.color-accent-2 {
  --color-background: 51,79,180;

  --gradient-background: #334fb4;

  --color-foreground: 255,255,255;
  --color-shadow: 0,0,0;
  --color-button: 255,255,255;
  --color-button-text: 51,79,180;
  --color-secondary-button: 51,79,180;
  --color-secondary-button-text: 255,255,255;
  --color-link: 255,255,255;
  --color-badge-foreground: 255,255,255;
  --color-badge-background: 51,79,180;
  --color-badge-border: 255,255,255;
  --payment-terms-background-color: rgb(51 79 180);
}


body, .color-background-1, .color-background-2, .color-inverse, .color-accent-1, .color-accent-2 {
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-background));
}


:root {
  --font-body-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont;
  --font-body-style: normal;
  --font-body-weight: 400;
  --font-body-weight-bold: 700;

  --font-heading-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont;
  --font-heading-style: normal;
  --font-heading-weight: 400;

  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;

  --media-padding: px;
  --media-border-opacity: 0.05;
  --media-border-width: 1px;
  --media-radius: 0px;
  --media-shadow-opacity: 0.0;
  --media-shadow-horizontal-offset: 0px;
  --media-shadow-vertical-offset: 0px;
  --media-shadow-blur-radius: 0px;
  --media-shadow-visible: 0;

  --page-width: 122rem;
  --page-width-margin: 0rem;

  --product-card-image-padding: 0.0rem;
  --product-card-corner-radius: 0.0rem;
  --product-card-text-alignment: left;
  --product-card-border-width: 0.0rem;
  --product-card-border-opacity: 0.0;
  --product-card-shadow-opacity: 0.1;
  --product-card-shadow-visible: 1;
  --product-card-shadow-horizontal-offset: 0.0rem;
  --product-card-shadow-vertical-offset: 0.0rem;
  --product-card-shadow-blur-radius: 0.0rem;

  --collection-card-image-padding: 0.0rem;
  --collection-card-corner-radius: 0.0rem;
  --collection-card-text-alignment: left;
  --collection-card-border-width: 0.0rem;
  --collection-card-border-opacity: 0.0;
  --collection-card-shadow-opacity: 0.1;
  --collection-card-shadow-visible: 1;
  --collection-card-shadow-horizontal-offset: 0.0rem;
  --collection-card-shadow-vertical-offset: 0.0rem;
  --collection-card-shadow-blur-radius: 0.0rem;

  --blog-card-image-padding: 0.0rem;
  --blog-card-corner-radius: 0.0rem;
  --blog-card-text-alignment: left;
  --blog-card-border-width: 0.0rem;
  --blog-card-border-opacity: 0.1;
  --blog-card-shadow-opacity: 0.0;
  --blog-card-shadow-visible: 0;
  --blog-card-shadow-horizontal-offset: 0.0rem;
  --blog-card-shadow-vertical-offset: 0.4rem;
  --blog-card-shadow-blur-radius: 0.5rem;

  --badge-corner-radius: 4.0rem;

  --popup-border-width: 1px;
  --popup-border-opacity: 0.1;
  --popup-corner-radius: 0px;
  --popup-shadow-opacity: 0.0;
  --popup-shadow-horizontal-offset: 0px;
  --popup-shadow-vertical-offset: 0px;
  --popup-shadow-blur-radius: 0px;

  --drawer-border-width: 1px;
  --drawer-border-opacity: 0.1;
  --drawer-shadow-opacity: 0.0;
  --drawer-shadow-horizontal-offset: 0px;
  --drawer-shadow-vertical-offset: 0px;
  --drawer-shadow-blur-radius: 0px;

  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;

  --grid-desktop-vertical-spacing: 8px;
  --grid-desktop-horizontal-spacing: 8px;
  --grid-mobile-vertical-spacing: 4px;
  --grid-mobile-horizontal-spacing: 4px;

  --text-boxes-border-opacity: 0.0;
  --text-boxes-border-width: 0px;
  --text-boxes-radius: 0px;
  --text-boxes-shadow-opacity: 0.0;
  --text-boxes-shadow-visible: 0;
  --text-boxes-shadow-horizontal-offset: 0px;
  --text-boxes-shadow-vertical-offset: 0px;
  --text-boxes-shadow-blur-radius: 0px;

  --buttons-radius: 40px;
  --buttons-radius-outset: 42px;
  --buttons-border-width: 2px;
  --buttons-border-opacity: 0.4;
  --buttons-shadow-opacity: 0.0;
  --buttons-shadow-visible: 0;
  --buttons-shadow-horizontal-offset: 0px;
  --buttons-shadow-vertical-offset: 0px;
  --buttons-shadow-blur-radius: 0px;
  --buttons-border-offset: 0.3px;

  --inputs-radius: 4px;
  --inputs-border-width: 1px;
  --inputs-border-opacity: 0.55;
  --inputs-shadow-opacity: 0.0;
  --inputs-shadow-horizontal-offset: 0px;
  --inputs-margin-offset: 0px;
  --inputs-shadow-vertical-offset: 0px;
  --inputs-shadow-blur-radius: 0px;
  --inputs-radius-outset: 5px;

  --variant-pills-radius: 6px;
  --variant-pills-border-width: 1px;
  --variant-pills-border-opacity: 0.2;
  --variant-pills-shadow-opacity: 0.0;
  --variant-pills-shadow-horizontal-offset: -4px;
  --variant-pills-shadow-vertical-offset: 0px;
  --variant-pills-shadow-blur-radius: 0px;


  --font-body-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont;
  --font-body-style: normal;
  --font-body-weight: 400;

  --font-heading-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont;
  --font-heading-style: normal;
  --font-heading-weight: 400;
  --font-body-scale: 1.0;
  --font-heading-scale: 1.0;

  --color-base-text: 0, 0, 0;
  --color-shadow: 0, 0, 0;
  --color-base-background-1: 255, 255, 255;
  --color-base-background-2: 255, 255, 255;
  --color-base-solid-button-labels: 255, 255, 255;
  --color-base-outline-button-labels: 0, 0, 0;
  --color-base-accent-1: 0, 113, 227;
  --color-base-accent-2: 51, 79, 180;
  --payment-terms-background-color: #FFFFFF;

  --gradient-base-background-1: #FFFFFF;
  --gradient-base-background-2: #FFFFFF;
  --gradient-base-accent-1: #0071e3;
  --gradient-base-accent-2: #334FB4;

  --media-padding: px;
  --media-border-opacity: 0.05;
  --media-border-width: 1px;
  --media-radius: 0px;
  --media-shadow-opacity: 0.0;
  --media-shadow-horizontal-offset: 0px;
  --media-shadow-vertical-offset: 0px;
  --media-shadow-blur-radius: 0px;

  --page-width: 122rem;
  --page-width-margin: 0rem;

  --card-image-padding: 0.0rem;
  --card-corner-radius: 0.0rem;
  --card-text-alignment: left;
  --card-border-width: 0.0rem;
  --card-border-opacity: 0.0;
  --card-shadow-opacity: 0.1;
  --card-shadow-horizontal-offset: 0.0rem;
  --card-shadow-vertical-offset: 0.0rem;
  --card-shadow-blur-radius: 0.0rem;

  --badge-corner-radius: 4.0rem;

  --popup-border-width: 1px;
  --popup-border-opacity: 0.1;
  --popup-corner-radius: 0px;
  --popup-shadow-opacity: 0.0;
  --popup-shadow-horizontal-offset: 0px;
  --popup-shadow-vertical-offset: 0px;
  --popup-shadow-blur-radius: 0px;

  --drawer-border-width: 1px;
  --drawer-border-opacity: 0.1;
  --drawer-shadow-opacity: 0.0;
  --drawer-shadow-horizontal-offset: 0px;
  --drawer-shadow-vertical-offset: 0px;
  --drawer-shadow-blur-radius: 0px;

  --spacing-sections-desktop: 0px;
  --spacing-sections-mobile: 0px;

  --grid-desktop-vertical-spacing: 8px;
  --grid-desktop-horizontal-spacing: 8px;
  --grid-mobile-vertical-spacing: 4px;
  --grid-mobile-horizontal-spacing: 4px;

  --text-boxes-border-opacity: 0.0;
  --text-boxes-border-width: 0px;
  --text-boxes-radius: 0px;
  --text-boxes-shadow-opacity: 0.0;
  --text-boxes-shadow-horizontal-offset: 0px;
  --text-boxes-shadow-vertical-offset: 0px;
  --text-boxes-shadow-blur-radius: 0px;

  --buttons-radius: 40px;
  --buttons-radius-outset: 42px;
  --buttons-border-width: 2px;
  --buttons-border-opacity: 0.4;
  --buttons-shadow-opacity: 0.0;
  --buttons-shadow-horizontal-offset: 0px;
  --buttons-shadow-vertical-offset: 0px;
  --buttons-shadow-blur-radius: 0px;
  --buttons-border-offset: 0.3px;

  --inputs-radius: 4px;
  --inputs-border-width: 1px;
  --inputs-border-opacity: 0.55;
  --inputs-shadow-opacity: 0.0;
  --inputs-shadow-horizontal-offset: 0px;
  --inputs-margin-offset: 0px;
  --inputs-shadow-vertical-offset: 0px;
  --inputs-shadow-blur-radius: 0px;
  --inputs-radius-outset: 5px;

  --variant-pills-radius: 6px;
  --variant-pills-border-width: 1px;
  --variant-pills-border-opacity: 0.2;
  --variant-pills-shadow-opacity: 0.0;
  --variant-pills-shadow-horizontal-offset: -4px;
  --variant-pills-shadow-vertical-offset: 0px;
  --variant-pills-shadow-blur-radius: 0px;

  --color-primary-bt-bg: #0071e3;
  --color-primary-bt-label: #FFFFFF;
  --color-primary-bt-outline: #0071e3;
  --color-primary-bt-hover: #0054a8;
  --color-secondary-bt-bg: transparent;
  --color-secondary-bt-label: #0071e3;
  --color-secondary-bt-outline: #0071e3;
  --color-secondary-bt-hover: #0054a8;


  --color-link-dynamic-label: #0071e3;
  --color-link-dynamic-hover: #0054a8;


  --color-tertiary-dynamic-label: #0071e3;
  --color-tertiary-dynamic-hover: #0054a8;

}


/* LOB Stripe - Complete styles from styles.css */
.lob_cards a {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  margin: 5.5px 0;
}
.lob_pagewidth {
  /*        padding-left: 7.7%; */
  /* margin-top: 24px; */
  border-bottom: 1px solid #d9d9d9;
}
.lob_main_container {
  display: flex;
  flex-direction: column;
}
.lob_heading {
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: -0.02em;
  color: #000000;
  max-height: 72px;
  overflow: hidden;
  margin-top: 32px;
  padding: 0 0 0 calc((100% - 1220px) / 2);
}
.lob_class {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  vertical-align: middle;
}
.lob_cards {
  justify-content: center;
  display: flex !important;
  min-width: 120px !important;
  height: 120px !important;
  background: #ffffff;
}
.lob_image {
  display: flex;
  height: 60px;
  width: 100px;
  justify-content: center;
  margin: auto;
}
.lob_title {
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #000000;
  height: 20px;
  overflow: hidden;
}
.lob_price {
  font-family: var(--font-body-family);
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #000000;
  white-space: nowrap;
}
.lobDiv {
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  min-width: 120px;
}
#lob_stripe_slider_box {
  display: flex;
  align-items: center;
  width: 100%;
  background: #fff;
  height: auto;
}
.lob_lob_slider {
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0 0 0 calc((100% - 1220px) / 2 - 0px);
}
.lob_lob_slider .slick-track,
.lob_lob_slider:not(.slick-initialized) {
  display: flex;
  /*        align-items: center; */
  min-width: 822px;
  column-gap: 40px;
  margin-top: 24px;
  margin-bottom: 32px;
  margin-left: 2px;
  position: relative;
}
.lob_lob_slider:not(.slick-initialized) {
  justify-content: flex-start;
}
.lob_lob_slider button.slick-prev.slick-arrow {
  width: 36px;
  height: 88px;
  background: #fff;
  top: 51px;
}
.lob_lob_slider .slick-next.slick-arrow {
  right: 0;
  width: 36px;
  height: 88px;
  background: #fff;
  top: 51px;
}
.lobstripe-right-arrow:before {
  content: url(https://cdn.shopify.com/s/files/1/0606/7771/8177/files/right-arrow-line.png?v=1651738448);
}
.lobstripe-left-arrow:before {
  content: url(https://cdn.shopify.com/s/files/1/0606/7771/8177/files/left-arrow-line.png?v=1651738432);
}
.lob_lob_slider .slick-next:before {
  content: url(https://cdn.shopify.com/s/files/1/0606/7771/8177/files/right-arrow-line.png?v=1651738448);
}
.lob_lob_slider .slick-prev:before {
  content: url(https://cdn.shopify.com/s/files/1/0606/7771/8177/files/left-arrow-line.png?v=1651738432);
}
.lob_lob_slider .lob_cards img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 100%;
  max-height: 60px;
}
.lob_lob_slider button.slick-prev.slick-arrow {
  display: none !important;
}
.lob_lob_slider .lob_cards img {
  max-width: 100px;
  padding-left: 0;
}
.lob_lob_slider .slick-next.slick-arrow {
  right: 0;
}
.lobstripe-left-arrow,
.lobstripe-right-arrow {
  display: block;
  right: 0;
  min-width: 36px !important;
  width: 36px !important;
  background: #fff;
  cursor: pointer;
  padding-top: 12px;
  padding-bottom: 12px;
  z-index: 2;
  border: none;
  appearance: none;
}
.lobstripe-left-arrow {
  position: absolute;
  left: 0;
}
.lobstripe-right-arrow {
  position: absolute;
}
@media screen and (max-width: 767px) {
  #lob_stripe_slider_box {
    margin-right: -16px;
    width: auto;
  }
  .lobstripe-left-arrow {
    display: none !important;
  }
  .lob_heading {
    max-height: 64px;
    font-size: 24px;
    line-height: 32px;
    overflow: hidden;
    margin-top: 16px;
  }
  .lobDiv {
    min-width: 120px;
  }
  .lob_pagewidth {
    padding-left: 4px;
    padding-right: 4px;
    margin-top: 16px;
  }
  .lob_lob_slider .slick-track {
    margin-top: 16px !important;
  }
  .lob_lob_slider:not(.slick-initialized) {
    margin-top: 16px;
    column-gap: 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1252px) {
  .lob_heading,
  .lob_class {
    padding-left: 16px;
    padding-right: 16px;
  }
}

header-drawer,
.header-drawer-lazyload {
  justify-self: start;
  height:48px;
  width:48px;
  margin-left:0
}@media screen and (min-width: 1024px) {
  header-drawer,
  .header-drawer-lazyload {
    display: none;
  }
}@media only screen and (width:375px){
  input[type=search]::placeholder{
    color:rgba(18,18,18,.75);
    position:relative;
    width:51px;
    left:5px;
    top:2px;
    font-style:normal;
    font-weight:500;
    font-size:15px;
    line-height:15px;
    opacity:.75
  }
}

.menu-drawer-container {
  display: flex;
}

.list-menu {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.list-menu--inline {
  display: inline-flex;
  flex-wrap: wrap;
}

summary.list-menu__item {
  padding-right: 2.7rem;
}

.list-menu__item {
  align-items: center;
  line-height: calc(1 + 0.3 / var(--font-body-scale));
}

.list-menu__item--link {
  text-decoration: none;
  padding-bottom: 1rem;
  padding-top: 1rem;
  line-height: calc(1 + 0.8 / var(--font-body-scale));
}

@media screen and (min-width: 750px) {
  .list-menu__item--link {
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
}

.my-store-locator {
  display: none;
}

.header {
  padding: 10px 3rem 10px 3rem;
}

.section-header {
  position: sticky; /* This is for fixing a Safari z-index issue. PR #2147 */
  margin-bottom: 0px;
  z-index: 99;
}

@media screen and (min-width: 750px) {
  .section-header {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 990px) {
  .header {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media  screen and (min-width: 1024px) {
  .header-menu-wrapper {
    min-height: 140px;
  }
}


.menu-drawer__menu li {--color-foreground: #000000;color: #000000;}


#right_menu_items {justify-content: space-between;list-style: none;display: contents;flex-direction: row;}
#right_menu_items li a{color:#383131}
#right_menu_mobile_items li a{color:#383131}
.right_menu_divider { }
/*#right_menu_items li:nth-child(2) {background: ;}*/
/*#right_menu_items li:nth-child(3) {background: ;}*/
/*#right_menu_items li:nth-child(4) {background: ;}*/
/*#right_menu_items li:nth-child(5) {background: ;}*/
/*#right_menu_items li:nth-child(6) {background: ;}*/
/*#right_menu_items li:nth-child(7) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(1) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(2) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(3) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(4) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(5) {background: ;}*/
/*#right_menu_mobile_items li:nth-child(6) {background: ;}*/
.list-menu__item{
  align-items: center;
}