/* a{
  color: black;
  text-decoration: none;
} */

#nav {
  height: 172px;
}
#topDiv {
  display: flex;
  justify-content: space-between;
}
#toprightDiv {
  width: 70%;
}
#logoDiv {
  margin-top: 1%;
  width: 50%;
  float: right;
}
#topLeaftDiv {
  display: flex;
  justify-content: space-around;
  margin: 2%;
  width: 22%;
}
#singRegLink {
  padding-top: 4%;
}
#singRegLink a {
  font-size: larger;
  text-decoration: none;
  color: rgb(44, 41, 41);
}
#singRegLink a:hover {
  color: cadetblue;
}
#headerIcons {
  width: 30%;
}
.buttons {
  border: none;
  background-color: white;
}
#catList {
  margin-top: 10px;
}
#catDiv {
  width: 70%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.dropbtn {
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdownContent {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 200px;
  padding: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdownContent a {
  color: rgb(44, 44, 44);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdownContent a:hover {
  color: black;
}

.dropdown:hover .dropdownContent {
  display: block;
  background-color: white;
}

.dropdown:hover .dropbtn {
  color: #628791;
  border-bottom: 3px solid #628791;
}

/* side navbar cart */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
  transition: 0.5s;
}

#sideHeader {
  display: flex;
  justify-content: space-between;
  height: 50px;
}

#mpt {
  /* margin-top: 50%; */
  text-align: center;
  color: #b3ada7;
}

#total {
  display: flex;
  justify-content: space-between;
}
#checkout {
  text-align: center;
}
#cbtn {
  width: 100%;
  padding: 3%;
  margin: 2%;
  font-size: 1em;
  border: none;
  color: white;
  background-color: #5a5a5a;
}

#cDiv a {
  text-decoration: none;
  color: black;
  font-size: 1em;
}

#cDiv a:hover {
  color: #d88e5a;
}

/* search top navbar */
.searchnav {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #fff;
  overflow-x: hidden;
}

#searchHeader {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
}

#mySearchnav > div {
  margin-top: 2%;
  width: 90%;
  margin: auto;
  margin-top: 30px;
}

#searchProd {
  display: flex;
}

#searchProd input {
  width: 97%;
  padding: 1.5%;
  border: none;
  border-bottom: 1px solid;
  font-size: 1em;
  outline: none;
}
#searchProd input::placeholder {
  color: black;
  font-weight: bold;
  font-size: 1em;
}
