

::-webkit-scrollbar {
  width: 0;  /* Remove scrollbar space */
  background: transparent;  /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
  /* background: #FF0000; */
}
.MenuNavbarWrapper.fixed {
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  z-index: 1000;
  border-top: 1px solid #C4BFB5;
}
.MenuNavbarCategories {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  width: 100%;
  height: 100%;
  /* display: flex; */
  /* scroll-behavior: smooth; */
}
.MenuNavbarCategories::-webkit-scrollbar {
	display:none;
}
.MenuNavbar {
  width: 100%;
  /* 56px is the line box of a 0.95em label; the item's 11px bottom padding is
     deliberately clipped by .MenuNavbarCategories. A larger category font makes
     that line box taller, and then it is the glyphs that get clipped — so
     Application.js measures the rendered items and publishes the height here.
     The fallback keeps the bar at 56px if the measurement never runs. */
  height: var(--tmo-online-navbar-h, 56px);
  /* background-color: #212121; */
  vertical-align: middle;
  position: relative;
  /* box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.4); */
  white-space: nowrap;
  z-index: 1000;
}
#MenuNavbarList {
  /* min-width: 100%; */
  display: flex;
  /* justify-content: center; */
}
.MenuNavbar ul li {
  padding: 0 5px 0px 10px;
}
.MenuNavbar ul li a, .MenuNavbar ul li button {
  color: #FFFFFF !important;
  height: 56px;
  display: flex;
  align-items: center;
  justify-items: center;
}
/*.MenuNavbarItem a:focus {
  color: #92D27F;
  border-bottom: 3px solid #92D27F;
}*/
.MenuNavbar-lg ul li:first-child {
  padding: 0 10px 12px 22px;
}
.MenuNavbar-lg ul li:last-child span {
  margin-left: 6px;
}
.MenuNavbar ul li.selected {
  border-bottom: 3px solid #92D27F;
}
.MenuNavbar ul li.selected a {
  color: #92D27F;
}
.category-name {
  padding: 6px 0 2px 0;
}

.MenuSubnav {
  width: 100%;
  height: 56px;
  padding: 20px 0;
  background-color: #F2EDE9;
  vertical-align: middle;
  z-index: 99999;
  border-bottom: 1px solid #E0D7D0;
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  margin-bottom: 10px;
  white-space: nowrap;
  z-index: 99999;
}
.MenuSubnav.hidden {
  display: none;
}
.MenuSubnav ul {
  min-width: 100%;
  display: table;
  overflow-x: auto;
}
.MenuNavbarItem {
  /* display: inline-block; */
  position: relative;
  padding: 0 7px 11px 7px;
  margin-right: 5px;
  /* color: #212121; */
  line-height: 56px;
  cursor: pointer;
}
.MenuNavbarItem.active {
  text-decoration: underline;
  text-decoration-color: #212121;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
.MenuNavbarItem:first-child {
  margin-left: auto;
}

.MenuNavbarItem:last-child {
    margin-right: auto;
}
/* The category bar carries the same category / subcategory names as the in-page
   headings, so it follows the online_font_heading_* settings. Size and weight go
   through -navbar- tokens instead of the heading ones because the heading tokens
   always hold their own defaults (19px / 900) — reading them directly would move
   this bar from 0.95em to 19px on every store that never touched the settings.
   Application.js writes the -navbar- tokens only for a non-Default value. */
.MenuNavbarItem a {
  font-family: var(--tmo-online-font-heading-family, inherit);
  font-size: var(--tmo-online-font-navbar-size, 0.95em);
  font-weight: var(--tmo-online-font-navbar-weight, inherit);
  letter-spacing: var(--tmo-online-font-heading-spacing, inherit);
  color: #212121;
  padding: 10px 5px;
}

.MenuNavbarDialogWrapper {
  position: fixed;
  /* width: 100%; */
  z-index: 1000;
  /* 112px = the 56px TopBar + the category bar. Only the second one moves. */
  height: calc(100% - 56px - var(--tmo-online-navbar-h, 56px));
}
.MenuNavbarDialog {
  /* width: 100%; */
  height: 100%;
}
.MenuNavbarListDialog {
  width: 100%;
  height: 100%;
}
.MenuNavbarItemDialog {
  position: absolute;
  min-width: 200px;
  transform: translateX(-50%);
  /* -webkit-transform: translate(-50%); */
  left: 50vw;
  max-height: calc(100% - 15px);
  overflow-y: auto;
}
.MenuNavbarItemDialogItem {
  padding: 5px 10px 5px 10px;
  /* Grows with the font instead of clipping it, but never below the old 40px so
     a store on Default keeps the exact same row height. */
  line-height: max(40px, calc(var(--tmo-online-font-navbar-size, 0.95em) * 1.4));
  cursor: pointer;
}
/* The subcategory list opened from the bar shows the same names as the bar. */
.MenuNavbarItemDialogItem a {
  font-family: var(--tmo-online-font-heading-family, inherit);
  font-size: var(--tmo-online-font-navbar-size, inherit);
  font-weight: var(--tmo-online-font-navbar-weight, inherit);
  letter-spacing: var(--tmo-online-font-heading-spacing, inherit);
}






/* .MenuNavbarItem a:hover {
  position: relative;
  top: -3px;
} */
@media (hover:hover) {
  .MenuNavbarItem a:hover {
    position: relative;
    top: -3px;
  }
}
.MenuNavbarItem:first-child {
  padding-left: 23px;
}

/*--- Tablet and Mobile ---*/
@media (max-width: 992px) {
  .MenuNavbarWrapper {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    z-index: 1000;
    border-top: 1px solid #C4BFB5;
  }
  .Menu {
    padding-top: var(--tmo-online-navbar-h, 56px);
  }
  .MenuSubnav {
    margin-top: -8px;
    text-align: center;
  }
}

/* Mobile Landscape and Portrait */
@media (max-width: 767px) {
  .MenuNavbar {
  }
}
