header {}

.header-top {
  background-color: #2a2a2a;
  color: #FFFFFF;
}

.header-top .social-share {
  display: flex;
  width: 100%;
  height: 36px;
  align-items: center;
  padding: 0 15px;
}

.header-top .social-share ul {}

.header-top .social-share ul li {
  display: inline-block;
  font-size: 10pt;
  font-weight: 100;
  letter-spacing: 1px;
}

.header-mid {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  position: relative;
  border-bottom: .1px solid #d8d8d8;
}

.header-mid .brand {}

.header-mid .brand img {
  width: 150px;
}

.shopping-card {
  position: absolute;
  right: 60px;
  top: 30px;
  display: flex;
  align-items: center;
  column-gap: 2px;
  cursor: pointer;
  /* background: #ee4d2d; */
  color: #FFF;
  /* width: 115px; */
  border-radius: 4px;
}

.shopping-card .icons {
  font-size: 30pt;
}

.shopting-items {
  display: flex;
  flex-direction: column;
}

.shopping-card img{
    width: 40px;
}

.shopting-items p {
  font-size: 10pt;
  font-weight: 500;
}

.shopting-items span {
  font-size: 8pt;
  font-weight: 100;
}

.nav-bar-menu {
  /* position: sticky;
  top: 0; */
}

.nav-bar-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: .1px solid #d8d8d8;
}

.nav-bar-menu ul li {
  display: inline-block;
}

.nav-bar-menu ul li a {
  display: inline-block;
  padding: 12px 20px;
  font-size: 10pt;
  font-weight: 500;
  transition: all .3s ease;
}

.nav-bar-menu ul li a:hover,
.nav-bar-menu ul li a.active {
  color: #FFF;
  background-color: #2a2a2a;
}

.menu-responsive {
  display: none;
}

@media screen and (max-width: 800px) {
  .header-mid {
    justify-content: space-between;
    padding: 4px;
    height: 50px;
  }

  .shopting-items p {
    display: none;
  }

  .shopping-card{
    top: 4px;
  }

  .shopping-card .icons {
    font-size: 26pt;
  }

  .header-mid .brand img {
    width: 130px;
    margin-top: 11px;
  }

  .shopting-items {
    background-color: #ff0000;
    color: #FFF;
    width: 20px;
    height: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    position: absolute;
    right: -3px;
    bottom: -4px;
  }

  .shopting-items span {
    display: none;
  }

  .shopting-items span.items {
    display: block;
    font-size: 8pt;
    font-weight: 500;
  }

  .menu-responsive {
    display: block;
    position: absolute;
    top: 40px;
    right: 12px;
  }

  .nav-bar-menu ul {
    display: block;
    position: fixed;
    width: 300px;
    top: 0;
    background-color: #353535;
    right: -330px;
    height: 100vh;
    padding: 15px 0px;
    transition: right 0.3s ease;
    z-index: 10001;
  }

  .menu-responsive .icons {
    font-size: 30pt;
    cursor: pointer;
    color: #000;
    position: absolute;
    top: -34px;
    right: 0;
  }

  .nav-bar-menu ul.open-menu {
    right: 0;
    z-index: 10001;
  }

  .nav-bar-menu ul li {
    display: block;
  }

  .nav-bar-menu ul li a {
    width: 100%;
    color: #FFFFFF;
    border-bottom: .1px solid #434343;
  }
}
