header nav.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background: #d1d1d1;
  padding: 10px 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Open Sans', sans-serif;
}

header .logo-container,
header .sticky-logo-container {
  margin-right: 72px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .logo {
  height: 50px;
  max-width: 100%;
  transform: translate(34px, 8px) scale(2.5);
  transform-origin: center center;
}

header nav.sticky ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: space-around;
}

header nav.sticky ul li {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

header nav.sticky ul li a {
  color: #030303;
  text-decoration: none;
  padding: 5px 5px;
  display: inline-block;
  font-weight: normal;
  font-size: 1rem;
  transition: none;
  transform: translateY(4px);
}

header nav.sticky ul li a b {
  font-weight: 600;
}

header nav.sticky ul li a:hover {
  color: red;
  font-weight: 600;
}

header nav.sticky ul li a::after {
  content: '';
  display: block;
  height: 2px;
  background: red;
  width: 0;
  transition: none;
}

header nav.sticky ul li a:hover::after {
  width: 100%;
}

header nav.sticky ul li.special a {
  border: 2px solid #FF0000;
  padding: 8px 20px;
  border-radius: 15px;
  background-color: #ff0000;
  color: #000;
  transition: none;
  font-size: 0.85rem;
  transform: none;
}

header nav.sticky ul li.special a:hover {
  background-color: #FF0000;
  color: #ffffff;
}

nav.sticky ul li a.active {
  position: relative;
}

nav.sticky ul li a.active::after,
nav.sticky ul li a.active:hover::after {
  content: none;
  display: none;
  width: 0;
}

#shared-topbar,
#shared-topbar *,
#shared-topbar *::before,
#shared-topbar *::after {
  animation: none !important;
  transition: none !important;
  scroll-behavior: auto !important;
}

@media only screen and (min-width: 769px) {
  header nav.sticky > ul > li.customer-login > a {
    border: 2px solid #111111;
    border-radius: 15px;
    padding: 8px 20px;
    color: #ffffff;
    background: #111111;
    font-size: 0.85rem;
    transform: none;
  }

  header nav.sticky > ul > li.customer-login > a:hover {
    color: #ffffff;
    background: #333333;
  }

  header nav.sticky > ul > li.customer-login > a::after,
  header nav.sticky > ul > li.customer-login > a:hover::after,
  header nav.sticky > ul > li.customer-login > a.active::after {
    content: none;
    display: none;
    width: 0;
    transition: none;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-content {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #c7c7c7;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1000;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: left;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    letter-spacing: 0.6px;
    line-height: 26px;
    transition: none;
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1;
  }

  .dropdown:hover .dropdown-content {
    display: flex !important;
  }
}

.dropdown-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dropdown-content svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  padding: 6px 42px;
  background: none;
  border: none;
  line-height: 1;
}

@media only screen and (max-width: 768px) {
  header nav.sticky {
    flex-wrap: wrap;
    padding: 8px 10px;
  }

  .menu-toggle {
    display: block;
  }

  header .logo {
    height: 32px;
    max-width: 100px;
    transform: translate(24px, 6px) scale(2.5);
  }

  header nav.sticky ul {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #d1d1d1;
    width: 100%;
    padding: 10px;
  }

  header nav.sticky ul.active {
    display: flex;
  }

  header nav.sticky ul li {
    width: 100%;
    text-align: left;
    padding: 8px 0;
  }

  header nav.sticky ul li a {
    font-size: 0.9rem;
    padding: 8px 0;
    width: 100%;
  }

  header nav.sticky ul li.special a {
    text-align: center;
    width: 80%;
    display: block;
  }

  header nav.sticky ul li.customer-login a {
    border: 2px solid #111111;
    border-radius: 15px;
    background: #111111;
    color: #ffffff;
    text-align: center;
    width: 80%;
    display: block;
    padding: 8px 20px;
    box-sizing: border-box;
  }

  header nav.sticky ul li.customer-login a::after,
  header nav.sticky ul li.customer-login a:hover::after,
  header nav.sticky ul li.customer-login a.active::after {
    content: none;
    display: none;
    width: 0;
    transition: none;
  }

  .dropdown-content {
    display: block !important;
    position: static;
    background: none;
    box-shadow: none;
    padding-left: 20px;
    margin-top: 4px;
    flex-direction: column;
  }

  .dropdown-content li {
    list-style: none;
  }

  .dropdown-content a {
    display: block;
    padding: 6px 0;
    font-size: 0.95rem;
    font-family: 'Open Sans', sans-serif;
    color: black;
    text-decoration: none;
    line-height: 1.4;
  }

  .dropdown:hover .dropdown-content {
    display: block !important;
  }
}
