/* ---------------------------NAVIGATION---------------------------------- */

header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  top: 0px;
  position: fixed;
  background-color: white;
  width: 100%;
  z-index: 1;
}
/* ------------------------------------------------ LOGO------------------- */
.logo {
  display: flex;
  height: 70px;
  flex-basis: 40%;
  margin-left: 10px;
}
.logo img {
  height: 70px;
  width: 120px;
}

/* ------------------------------------------------ NAV_BAR------------------- */
.nav {
  display: flex;
  flex-basis: 100%;
  height: 40px;
  order: 3;
  border-top: 1px solid #d7d7d7;
  justify-content: center;
  margin: 0px 10px;
}
.nav ul {
  display: inline-block;
  padding: 0px;
  margin: 0px;
}
.nav li {
  list-style-type: none;
  padding: 0px;

  margin-bottom: 4px;
  display: inline-block;
  font-size: 17px;
  font-family: "Raleway";
  font-size: 14px;
  margin-top: 0px;
}
.nav li a {
  list-style: none;

  color: #e2574c;
  text-decoration: none;
  right: 0px;
  margin: 0 auto;
  line-height: 40px;
  padding: 0px 7px;
}
.nav li a:hover {
  color: #b64036;
}
/* ------------------------------------------------ CART------------------- */

.cart {
  display: flex;
  position: relative;
  height: 70px;
  flex-basis: 11%;
  padding-top: 10px;
  margin-right: 11px;
  align-items: center;
  padding-top: 0px;
}
.counter {
  height: 30px;
  width: 30px;
  background-color: #e2574c;
  position: absolute;
  border-radius: 15px;
  right: 0px;
  top: 0px;
  color: white;
  line-height: 30px;
  text-align: center;
}
.cart a img {
  display: flex;
  height: 50px;
  width: 50px;
}
/* ------------------------------------------------ media_queries------------------- */

@media screen and (min-width: 600px) {
  header {
    display: flex;
    justify-content: space-evenly;
    height: 70px;
  }
  .logo {
    flex-basis: 14%;
  }
  .logo img {
    width: 100px;
  }
  .nav {
    flex-basis: 58%;
    height: 70px;
    line-height: 70px;
  }
  .nav li a {
    padding: 0px 10px;
    font-size: 16px;
  }
  .cart {
    flex-basis: 12%;
    margin-right: 10px;
    justify-content: right;
    order: 3;
  }
}
