.subheader {
    font-size: 14px !important;
	z-index: 3;
}

.subheader a {
	color:#fff;
}

.subheader a:hover {
	color:#6b6b6b;
}

.thb-subheader-menu {
     font-size: 14px !important;
}

.header {
    height: 62px;
    display: flex;
    align-items: center;
	border-bottom: 0 !important;
    background: rgba(255, 255, 255, 0.6) !important;
        backdrop-filter: blur(10px) saturate(180%);
        -webkit-backdrop-filter: blur(10px) saturate(180%);
}

.header .header-logo-row {
    height: 62px;
    display: flex;
    align-items: center;
    padding: 0;
}

.header .row {
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.logo-holder,
.thb-navbar,
.thb-secondary-area {
    display: flex;
    align-items: center;
    height: 62px;
}

.logo-holder {
    margin-left: -2px;
}

@media only screen and (min-width: 1068px) {
    .logo-holder {
        margin-right: 27px !important;
    }
}

.thb-navbar ul {
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.thb-navbar .menu-item {
  display: flex;
  align-items: center;
  height: 62px;
  flex-shrink: 0;
}

.thb-navbar {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.catalog-pricing-badge {
  background-color: #C8102E;
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
  padding: 0.2em 0.4em;
  border-radius: 4px;
  margin-left: 0.5em;
  text-transform: uppercase;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
}

/* Always use the same arrow icon (down arrow, \e800) */
.thb-full-menu .menu-item.menu-item-has-children > a:after {
    display: inline-flex;
    content: "\e800"; /* arrow down */
    margin-left: 8px;
    transition: transform 0.3s ease;
    /* Rotate 180deg by default so it appears as up */
    transform: rotate(180deg);
}

/* On hover or when active, rotate back to 0deg (down arrow) */
.thb-full-menu .menu-item.menu-item-has-children:hover > a:after,
.thb-full-menu .menu-item.menu-item-has-children.active > a:after {
    transform: rotate(0deg);
}

.no-js .thb-full-menu .menu-item.menu-item-has-children > a:after {
  display: none !important;
}

.no-js #menu-item-414 > ul.sub-menu {
  display: none !important;
  max-height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

.floating-submenu {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);

  z-index: 9999;
  padding: 0;
  margin: 0;
  border: 2px solid #090909;
  box-shadow: 0 4px 8px -2px rgba(0, 0, 0, 0.12),
              0 2px 4px -1px rgba(0, 0, 0, 0.2);
  grid-auto-rows: min-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;

  will-change: transform, opacity, filter;
  transform: translate3d(0, 0, 0);
  isolation: isolate;
}

.floating-submenu.visible {
  opacity: 1;
  visibility: visible;
}

.floating-submenu > li {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.2s ease-in-out;
}

.floating-submenu > li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.floating-submenu > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: #090909;
  padding: 1em;
  line-height: 16px;
  cursor: pointer;
}

.floating-submenu > li > a:hover {
  color: #090909 !important;
}

.thb-secondary-area {
        margin-left: 25px;
}