#header {
  z-index: 16;
  font-family: YekanBakh;
  background-color: #00a7e3;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1);
}
#header .menu-mobile > button {
  all: unset;
  cursor: pointer;
}
#header .menu-mobile > button > img {
  width: 30px;
}
#header .menu-mobile > .background {
  visibility: hidden;
  position: fixed;
  inset: 0;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s;
}
#header .menu-mobile > .background.active {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}
#header .menu-mobile > .menu {
  z-index: 11;
  right: -280px;
  max-width: 280px;
  width: 80%;
  height: 100vh;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transition: 0.4s;
  overflow-y: scroll;
}
#header .menu-mobile > .menu::-webkit-scrollbar {
  width: 8px;
}
#header .menu-mobile > .menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
#header .menu-mobile > .menu::-webkit-scrollbar-thumb {
  background: #888;
}
#header .menu-mobile > .menu::-webkit-scrollbar-thumb:hover {
  background: #676767;
}
#header .menu-mobile > .menu.active {
  right: 0;
}
#header .menu-mobile > .menu .input-search2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ececec;
  padding: 8px 14px;
  border-radius: 200px;
}
#header .menu-mobile > .menu .input-search2 > input {
  width: 100%;
  padding-left: 10px;
  background-color: transparent;
  font-size: 15px;
  border: none;
  outline: none;
}
#header .menu-mobile > .menu .input-search2 > button {
  all: unset;
  display: inline-flex;
  cursor: pointer;
}
#header .menu-mobile > .menu .input-search2 > button > img {
  width: 18px;
  opacity: 0.9;
}
#header .menu-mobile > .menu nav > a,
#header .menu-mobile > .menu nav > span {
  font-size: 15px;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.7;
  cursor: pointer;
}
#header .menu-mobile > .menu nav .accordion {
  width: 100%;
  max-width: 400px;
  margin: auto;
}
#header .menu-mobile > .menu nav .accordion-item {
  border-bottom: 1px solid #ddd;
}
#header .menu-mobile > .menu nav .accordion-header {
  display: block;
  background-color: #f9f9f9;
  padding: 10px;
  cursor: pointer;
  color: #3c3c3c;
  text-decoration: none;
  font-weight: 500;
}
#header .menu-mobile > .menu nav .accordion-content {
  display: none;
  padding: 10px;
  background-color: #fff;
}
#header .menu-mobile > .menu nav .sub-accordion .accordion-header {
  font-size: 15px;
  background-color: #f9f9f9;
}
#header .menu-mobile > .menu nav .sub-sub-accordion .accordion-header {
  font-size: 14px;
  background-color: #f9f9f9;
}
#header .logo {
  width: 150px;
}
#header .button-search {
  all: unset;
  margin-right: 1px;
  cursor: pointer;
}
#header .button-search > img {
  width: 23px;
  filter: invert(100);
}
#header .input-search {
  display: flex;
  align-items: center;
  background-color: #ffffff;
  padding: 10px 17px;
  border-radius: 200px;
}
#header .input-search > input {
  width: 300px;
  padding-left: 10px;
  border: none;
  outline: none;
}
#header .input-search > button {
  all: unset;
  display: inline-flex;
  cursor: pointer;
}
#header .input-search > button > img {
  width: 20px;
  opacity: 0.9;
}
#header .button-login {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  padding: 10px 13px;
  border: none;
  border-radius: 7px;
  outline: none;
}
#header .button-login > span {
  margin-top: 3px;
  color: #00a7e3;
  font-weight: bold;
}
#header .button-login > img {
  height: 27px;
}
#header .button-cart {
  all: unset;
  position: relative;
  padding-top: 2px;
  cursor: pointer;
}
#header .button-cart > img {
  width: 30px;
}
#header .button-cart > .count {
  position: absolute;
  top: 2px;
  left: -22px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 20px;
  height: 20px;
  padding-top: 3px;
  color: #00a7e3;
  font-size: 13px;
  font-weight: 600;
  background-color: #ffffff;
  border-radius: 200px;
}
#header .navbar {
  border-bottom: solid 2px #00a7e3;
}
#header .navbar .links > a,
#header .navbar .links > span {
  color: #3c3c3c;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
#header .navbar .links > a img,
#header .navbar .links > span img {
  width: 16px;
  margin-right: 4px;
}
#header .navbar .links .dropdown {
  position: relative;
  display: inline-block;
}
#header .navbar .links .dropdown-container {
  display: none;
  position: absolute;
  padding-top: 7px;
}
#header .navbar .links .dropdown-content {
  display: block;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#header .navbar .links .dropdown-content a {
  color: #3c3c3c;
  font-family: YekanBakh;
  font-size: 15px;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}
#header .navbar .links .dropdown-content a:hover {
  background-color: #ddd;
}
#header .navbar .links .dropdown:hover .dropdown-container {
  display: block;
}
#header .navbar .links .sub-dropdown {
  position: relative;
}
#header .navbar .links .sub-dropdown-content {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#header .navbar .links .sub-dropdown:hover .sub-dropdown-content {
  display: block;
}
#header .navbar .links .sub-sub-dropdown {
  position: relative;
}
#header .navbar .links .sub-sub-dropdown-content {
  display: none;
  position: absolute;
  right: 100%;
  top: 0;
  background-color: #ffffff;
  min-width: 160px;
  box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
#header .navbar .links .sub-sub-dropdown:hover .sub-sub-dropdown-content {
  display: block;
}
#header .navbar .social-networks > a > img {
  width: 22px;
}
@media (max-width: 992px) {
  #header .button-login {
    background-color: transparent;
  }
  #header .button-login > img {
    width: 30px;
  }
  #header .input-search input {
    width: 260px;
  }
  #header .navbar .links > a,
  #header .navbar .links > span {
    font-size: 15px;
  }
  #header .navbar .links > a img,
  #header .navbar .links > span img {
    width: 15px;
  }
}
@media (max-width: 768px) {
  #header > .container {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem !important;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
  }
  #header > .container > :nth-child(1) {
    justify-content: flex-start;
  }
  #header > .container > :nth-child(2) {
    justify-self: center;
  }
  #header > .container > :nth-child(4) {
    justify-content: flex-end;
  }
  #header .input-search > input {
    width: 200px;
    font-size: 14px;
  }
  #header .input-search > button img {
    width: 17px;
  }
  #header .logo {
    width: 100px;
  }
}
@media (max-width: 575px) {
  #header .menu-mobile > button {
    all: unset;
    cursor: pointer;
  }
  #header .menu-mobile > button > img {
    width: 28px;
  }
  #header .input-search {
    padding: 8px 13px;
  }
  #header .input-search > input {
    width: 130px;
    font-size: 13px;
  }
  #header .input-search > button img {
    width: 14px;
  }
  #header .button-login {
    padding: 7px 10px;
  }
  #header .button-login > span {
    font-size: 13px;
    font-weight: 600;
  }
  #header .button-login > img {
    width: 28px;
  }
  #header .button-cart > img {
    width: 22px;
    margin-left: 15px;
  }
  #header .button-cart > .count {
    left: 0;
    min-width: 15px;
    height: 15px;
    font-size: 11px;
  }
}
@media (max-width: 355px) {
  #header .button-login > span {
    font-size: 12px;
  }
}/*# sourceMappingURL=header.css.map */