.header {
  border-bottom: 1px solid #e2e8f0;
  background: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1; }

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  height: 3rem;
  margin-left: 200px; }
  .navbar .button {
    padding: 5px 10px;
    border-radius: 5px; }
  .navbar .login-button {
    background: #fdc900;
    border: thin solid #fdc900;
    color: #222; }
  .navbar .request-button {
    background: white;
    color: #222; }

.hamburger {
  display: none; }

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #101010; }

.nav-info {
  display: flex;
  height: 3rem;
  line-height: 3rem;
  justify-content: space-between;
  width: 100%;
  column-width: 2fr 1fr; }

.desktop-customer-name {
  display: block; }

.mobile-customer-name {
  display: none; }

.desktop-delivery-date {
  display: block; }

.mobile-delivery-date {
  display: none; }

.desktop-only {
  display: block; }

.mobile-only {
  display: none; }

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000; }

.nav-info-item {
  font-size: 1.1rem;
  color: #444; }
  .nav-info-item:last-child {
    text-align: right;
    font-weight: normal;
    font-size: 1rem;
    margin-right: 10px; }

.nav-item {
  margin-left: 1rem;
  min-width: 100px;
  white-space: nowrap;
  height: 3rem;
  line-height: 3rem; }

.nav-item-label {
  text-align: left;
  padding: 5px;
  font-weight: bold;
  color: #444; }

.nav-link {
  font-weight: 400;
  color: #475569; }

.nav-logo {
  font-size: 1.5rem;
  font-weight: 500; }
  .nav-logo img.main-logo {
    position: absolute;
    margin: 2px 10px;
    top: 0;
    left: 0;
    width: 190px;
    background: white; }
  .nav-logo img.mobile-logo {
    display: none; }

.mobile-logo-box {
  display: none; }

.user-menu {
  color: #444; }
  .user-menu span {
    margin-right: 0.5rem; }

#cart-subtotal {
  font-size: 1.1rem; }

.system-menu-outer {
  border: thin solid red;
  display: inline; }
  .system-menu-outer > ul {
    margin: 0; }
    .system-menu-outer > ul > li {
      list-style-type: none; }
      .system-menu-outer > ul > li > a {
        padding: 0 10px;
        height: 50px;
        line-height: 50px; }

.dropdown a, .dropdown button {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
  padding: 7px 15px;
  text-decoration: none;
  width: 100%;
  white-space: nowrap; }

.pulldown-user-info {
  padding: 0 10px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.8rem; }

.dropdown .dropdown-menu {
  border-radius: 4px;
  box-shadow: none;
  margin-top: 5px; }
  .dropdown .dropdown-menu:before {
    content: "";
    border-bottom: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    position: absolute;
    top: -10px;
    right: 16px;
    z-index: 10; }
  .dropdown .dropdown-menu:after {
    content: "";
    border-bottom: 12px solid #ccc;
    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    position: absolute;
    top: -12px;
    right: 14px;
    z-index: 9; }
  .dropdown .dropdown-menu li a:hover {
    background: #bbb;
    opacity: 1; }
  .dropdown .dropdown-menu li a.active {
    background: #aaa;
    opacity: 1; }

@media only screen and (max-width: 568px) {
  .navbar {
    margin-left: 0; }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 3.2rem;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05); }
  .desktop-customer-name {
    display: none; }
  .mobile-customer-name {
    display: block; }
  .desktop-delivery-date {
    display: none; }
  .mobile-delivery-date {
    display: block; }
  .desktop-only {
    display: none; }
  .mobile-only {
    display: block; }
  .nav-controls {
    margin-left: 0;
    font-size: 0.9rem; }
  .nav-menu.active {
    left: 0; }
  .nav-item {
    width: 100%;
    min-height: 4rem;
    line-height: 4rem;
    margin: 0; }
  .hamburger {
    display: block;
    cursor: pointer;
    margin-left: 10px; }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0; }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg); }
  img.main-logo {
    display: none;
    margin: 2px 25%; }
  .mobile-logo-box {
    text-align: center;
    display: block;
    position: absolute;
    top: 115px;
    left: 0;
    right: 0;
    z-index: -1; }
    .mobile-logo-box img.mobile-logo {
      position: relative;
      top: -65px;
      height: 150px;
      width: 165px; } }
