/*  Header and Navigation */
header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

nav.navbar {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

#search-bar {
  background-color: white;
  padding-bottom: 10px;
}

#header-logo {
  padding-left: 20px;
  color: green;
  padding-top: 10px;
  margin-bottom: 0;
}

#search-bar h5 {
  padding-left: 8px;
  position: relative;
  margin-bottom: 0;
  /*top: 40%;
  transform: translateY(40%);*/
}

.navbar {
  display: flex;
  flex-wrap: nowrap;
  height: 50px;
  justify-content: space-between;
  /*align-items: left; */
  width: 100%;
  background-color: green;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: left;
  margin-left: 10%;
  margin-bottom: 0px;
  /*gap: 20px; */
}

.nav-menu-right, .search {
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right: 20px;
  margin-bottom: 0px;
}

.search form {
  /*  position: relative; */
  margin-bottom: 0;
  top: 40%;
  transform: translateY(40%);
}

.search form button, .search form input {
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: lighter;
  background-color: rgba(220, 220, 220, 0.8);
}

#shopping-cart {
  width: 45px;
  height: auto;
  padding-left: 10px;
  position: relative;
  margin-bottom: 0;
  /* top: 40%;
  transform: translateY(35%);*/
}

.nav-link {
  transition: 0.7s ease;
}

.nav-link:hover {
  color: dodgerblue;
}

.navbar li {
  display: inline;
  text-transform: uppercase;
  margin: 10px;
  padding-left: 10px;
  text-decoration: none;
}

.navbar a {
  text-decoration: none;
  color: white;
}

.hamburger {
  display: none;
  cursor: pointer;
}

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

@media (max-width: 768px) {
  .hamburger {
    display: block;
    padding-right: 5%;
    padding-top: 5px;
  }
  .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);
  }
  .hamburger.active .bar:nth-child(4) {
    display: none;
  }
  #search-bar {
    padding-bottom: 20px;
  }
  #header-logo {
    text-align: center;
  }
  #storefront {
    margin-top: 80px;
  }
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    margin-left: 0px;
    gap: 0;
    flex-direction: column;
    background-color: green;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }
  .nav-menu-right {
    justify-content: center;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu-right {
    width: 250px;
  }
}/*# sourceMappingURL=nav-vanilla.css.map */