.navigation-bar {
  width: 100%;
  margin-bottom: 0;
}

.navigation-bar-toggle {
  background: var(--navigation-bar-background-color);
  display: grid;
  gap: 1rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
  grid-auto-rows: auto;
  -webkit-transform-origin: top;
  -moz-animation: fadein 250ms; /* Firefox */
  -webkit-animation: fadein 250ms; /* Safari and Chrome */
  -o-animation: fadein 250ms; /* Opera */
}

.navigation-bar-ul {
  list-style-type: none;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--navigation-bar-background-color);
}

.navigation-bar-left-li {
  float: left;
  position: relative;
}
.navigation-bar-right-li {
  float: right;
  display: flex;
}

.department-list-button {
  height: 50px;
  width: 50px;
  margin: 1rem;
}

.checkout-button {
  height: 50px;
  width: 50px;
  margin: 1rem;
}

.department-list {
  color: white;
  opacity: 100%;
  cursor: pointer;
}

.navigation-bar-main-row {
  display: grid;
  padding-top: 1rem;
  gap: 1rem;
  font-size: 38px;
  font-weight: bold;
  grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  /*grid-template-columns: 50px 200px auto 70px;*/
}

.company-span {
  cursor: pointer;
  display: flex;
  align-content: end;
  /*grid-column: span 2 / auto;*/
}
.company-Logo {
  width: 150px;
  height: 30px;
  position: absolute;
  margin: 0;
  top: 10px;
  left: 15px;
  z-index: 3;
  overflow: hidden;
  background-image: url("images/WebLogo.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.navigation-bar-hamburger img {
  position: absolute;
  left: 5px;
  top: 5px;
}

.navigation-bar-hamburger {
  width: 40px;
  height: 40px;
  margin: 5px 15px 5px 10px;
  z-index: 3;
  overflow: hidden;
  background-image: url("svg/menu_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.navigation-bar-shopping-cart {
  display: block;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  margin: 10px 15px;
  z-index: 3;
  overflow: hidden;
  background-image: url("svg/shopping_cart_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.navigation-bar-customer-account {
  display: block;
  background-color: transparent;
  border: none;
  width: 30px;
  height: 30px;
  margin: 10px 15px;
  z-index: 3;
  overflow: hidden;
  background-image: url("svg/accountWhite.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 768px) {
  .company-Logo {
    width: 190px;
    height: 4rem;

    position: absolute;
    margin: 0;
    top: 10px;
    left: 15px;
    z-index: 3;
    overflow: hidden;
    background-image: url("images/WebLogo.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .navigation-bar-shopping-cart {
    display: block;
    background-color: transparent;
    width: 30px;
    height: 30px;
    margin: 15px;
    z-index: 3;
  }
  .navigation-bar-hamburger {
    width: 40px;
    height: 40px;
    margin: 10px 15px 10px 10px;
  }
}

.company-Name {
  visibility: hidden;
  color: white;
  font-size: 38px;
  margin: 1rem;
  font-weight: bold;
  cursor: pointer;
}
.navigation-bar-search {
  margin: 1rem;
  color: white;
  font-size: 20px;
}

@media screen and (max-width: 600px) {
  .company-Name {
    visibility: hidden;
  }
}

#nav-icon1 {
  margin: 1rem;
  width: 60px;
  height: 45px;
  position: relative;
  cursor: pointer;
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: white;
  border-radius: 9px;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
}

#nav-icon1 span:nth-child(2) {
  top: 18px;
}

#nav-icon1 span:nth-child(3) {
  top: 36px;
}

.nav-app-bar-v2 {
  background-color: #004B8C;
  padding: 10px;
  height: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.logo-menu {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}

.menu-v2 {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  z-index: 3;
  left: 0;
  width: 100%;
  background-color: black;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.menu-v2:not(.collapsed) {
  height: 100vh;
}

.menu-v2 a {
  text-decoration: none;
  color: white;
  margin-bottom: 5px;
  display: block;
}

.menu-v2-buttons {
  /*display: none;*/
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.2rem;
}
.menu-v2-buttons a {
  text-decoration: none;
  color: white;
  margin-bottom: 5px;
  display: block;
}

.menu-v2-link {
  padding-top: 50px;
  margin: 30px;
  font-family: Arial, sans-serif;
}

/*mobile*/
@media only screen and (max-width: 600px) {
  .nav-app-bar-v2 {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .menu-v2-button {
    display: block;
    margin: 5px;
    font-size: 30px;
  }

  .menu-v2-buttons {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .menu-v2 {
    display: flex;
    flex-direction: column;
    font-size: 32px;
    align-items: center;
    position: absolute;
  }
}

/*computer*/
@media only screen and (min-width: 601px) {
  .nav-app-bar-v2 {
    flex-direction: row;
    align-items: center;
  }

  .menu-v2-button {
    display: none;
  }

  .menu-v2-buttons {
    display: flex;
    align-items: center;
  }

  .logo {
    display: flex;
  }
}
