#navbar {
  height: auto;
  height: fit-content;
  background-color: #1073fe;
  color: white;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  position: sticky;
  top: 0px;
  z-index: 3000;
}
#logoNav {
  cursor: pointer;
}

#topOfTheNav {
  display: flex;
  justify-content: end;
  padding: 8px;
  border: 2px solid #66a5fc;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
}
#topOfTheNav > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-right: 30px;
  font-weight: bold;
}
#topOfTheNav > div > :nth-child(n) {
  padding-left: 5px;
}
#topOfTheNav span {
  opacity: 0.9;
}
#topOfTheNav img {
  height: 20px;
}

/* // drop down ============================== */
/* // drop down ============================== */
#saveBigWithApp {
  position: relative;
}

#saveBigWithAppDropDown {
  display: none;
  position: absolute;
  height: fit-content;
  background-color: white;
  width: 300px;
  top: 30px;
  right: 0px;
  border-radius: 10px;
  color: black;
  border: 10px solid transparent;
  font-weight: normal;
  z-index: 2;
}
#saveBigWithAppDropDown > div {
  display: flex;
  justify-content: space-around;
}
#saveBigWithAppDropDown > div img {
  display: block;
  /* width: 50%; */
}
#saveBigWithAppDropDown > div > :first-child img {
  height: 120px;
  margin-top: 10px;
}
#saveBigWithAppDropDown > div > :last-child img {
  height: 40px;
  padding: 5px;
}

#saveBigWithApp:hover #saveBigWithAppDropDown {
  display: block;
}

#language {
  position: relative;
}

#langdropdown {
  position: absolute;
  height: 300px;
  width: 150px;
  background-color: white;
  top: 25px;
  right: 0px;
  display: none;
  z-index: 2;
  border-radius: 10px;
  color: black;
  font-weight: normal;
  border: 10px solid transparent;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 1.1rem;
}
#language span:hover {
  background-color: rgb(225, 225, 225);
}

#language:hover #langdropdown {
  display: flex;
  flex-direction: column;
}

/* // drop support  */
#supportCenter {
  position: relative;
}

#supportDropDown {
  position: absolute;
  height: fit-content;
  width: 150px;
  background-color: white;
  top: 30px;
  right: 0px;
  display: none;
  z-index: 2;
  border-radius: 10px;
  color: rgb(42, 42, 42);
  font-weight: normal;
  border: 15px solid transparent;
  font-size: 1.1rem;
}
#supportDropDown > div {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
#supportDropDown > div > :nth-child(n) {
  opacity: 0.8;
}
#supportDropDown img {
  margin-right: 10px;
}

#supportCenter:hover #supportDropDown {
  display: block;
}

/* // top shelf end here==================================  */

/* // middle nav  */
#middleOfTheNav {
  display: flex;
  width: 100%;
  /* border: 10px solid transparent; */
  align-items: center;
}
#middleOfTheNavIn {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
  justify-content: space-between;
  align-items: center;
}
#middleOfTheNavIn img {
  height: 30px;
}
#logoNav > img {
  height: 60px;
}

/* // search bar  */

#searchBar {
  /* height: 50px; */
  width: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  border-radius: 5px;
  position: relative;
}

#searchBar img {
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
}
#searchNav {
  width: 72%;
  padding: 10px 20px;
  font-size: 1rem;
  outline: none;
  border: none;
}
#searchDwonPop {
  height: 450px;
  width: 500px;
  position: absolute;
  left: 200px;
  top: 45px;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 2;
  background-color: white;
  border: 25px solid transparent;
  display: none;
}
#searchBar:hover #searchDwonPop {
  display: block;
}
.br {
  color: rgb(66, 65, 65);
}
#searchDwonPop > div {
  display: flex;
  color: black;
  border: 20px solid transparent;
  box-shadow: #a8caf9 0px 1px 8px 1px;
}
#searchDwonPop img {
  height: 60px;
}
#searchDwonPop span + span {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: rgb(98, 97, 97);
  margin-top: 5px;
}
#searchDwonPop > div > div {
  display: grid;
  grid-template-columns: 1fr;
  border: 10px solid transparent;
}

#allCatNavDropDown {
  color: rgb(66, 65, 65);
  position: relative;
  width: 200px;
  display: flex;
  align-items: center;
}

#allCatTitleMiddle {
  font-size: 0.7rem;
  color: rgb(92, 92, 92);
}
#allCatNavDropDown img {
  height: 10px;
  padding-left: 5px;
  opacity: 0.8;
}

#allCatNavDropDown:hover #allcatDropDownDown {
  display: grid;
}
#allcatDropDownDown {
  display: none;
  width: 500px;
  /* height: 500px; */
  position: absolute;
  top: 30px;
  background-color: white;
  border: 15px solid transparent;
  grid-template-columns: repeat(2, 1fr);
  z-index: 2;
  border-radius: 2px;
}
#allCatNavDropDown > span {
  padding-left: 15px;
  font-size: 1.1rem;
}
.allCatDropDownOptions:hover {
  background-color: rgb(242, 242, 242);
  border-left: 2px;
  border: 5px solid #1073fe;
  border-top: 0px;
  border-bottom: 0px;
  border-right: 0px;
  border-color: #1073fe;
}

#allcatDropDownDown > div {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  border: 15px solid transparent;
  cursor: pointer;
}

#signbarNav {
  width: 20%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

#shipToNavdown {
  display: flex;
  position: relative;
}

#currencyDropDown {
  height: 250px;
  width: 350px;
  background-color: white;
  border-radius: 10px;
  position: absolute;
  top: 22px;
  right: 0px;
  z-index: 2;
  display: none;
  color: black;
  border: 30px solid transparent;
}
#currencyDropDown > h3 {
  font-size: 1.2rem;
  color: black;
}
#currencyDropDown > span {
  color: grey;
  font-size: 1.1rem;
}

#shipToNavdown:hover #currencyDropDown {
  display: grid;
  grid-gap: 5px;
}

#signInUpNav {
  position: relative;
}

#signInUpNav:hover #signInDropDownNav {
  display: grid;
}

#signInDropDownNav {
  height: 200px;
  width: 300px;
  position: absolute;
  right: -100px;
  top: 30px;
  background-color: white;
  z-index: 2;
  border-radius: 10px;
  display: none;
  grid-template-columns: 70%;
  grid-template-rows: 20% 30% 30%;
  justify-content: center;
  grid-gap: 10px;
  color: black;
}
#signInDropDownNav > :first-child {
  font-size: 1rem;
  padding: 10px;
}
#signInDropDownNav span + span {
  /* display: block;/ */
  background-color: #1073fe;
  color: white;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  border: 1px solid #1073fe;
}
/* #signInDropDownNav span + span:hover {
  color: #1073fe;
  background-color: transparent;
} */

#signInDropDownNav span + span + span {
  color: #1073fe;
  background-color: transparent;
}
/* #signInDropDownNav span + span + span:hover {
  background-color: #1073fe;
  color: white;
} */
#signInDropDownNav span a {
  color: white;
  text-decoration: none;
}
#signInDropDownNav span + span + span a {
  color: #1073fe;
}

/* // cart button navbar  */

#AddToCartOnNav {
  position: relative;
  cursor: pointer;
}

/* #AddToCartOnNav:hover #indivCartNav {
  display: block;
} */

#indivCartNav {
  height: 300px;
  width: 350px;
  background-color: white;
  position: absolute;
  top: 40px;
  right: -20px;
  border-radius: 10px;
  display: none;
  z-index: 2;
}

#cartCount {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 100%;
  font-size: 1rem;
}

#addToFavouriteNav {
  position: relative;
}

#wishlistCountNav {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: red;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 100%;
  font-size: 1rem;
}

#addToFavouriteNav:hover #wishlistDropDownNav {
  display: block;
}

#wishlistDropDownNav {
  height: 300px;
  width: 350px;
  background-color: white;
  position: absolute;
  top: 40px;
  right: -20px;
  border-radius: 10px;
  display: none;
  z-index: 2;
}

/* // tail nav  */

#tailOfTheNav {
  display: flex;
  width: 80%;
  /* justify-content: space-around; */
  align-items: center;
  font-size: 0.9rem;
  font-weight: bold;
  margin: auto;
  /* position: relative; */
}
#tailOfTheNav > :nth-child(n) {
  margin-right: 30px;
  padding: 10px;
}
#catagoriesNavTailDiv {
  position: relative;
  border-radius: 5px;
  background-color: #2a7ff7;
}
#catagoriesNavTailDiv > img {
  height: 25px;
  width: 25px;
}
#catagoriesNavTailDropDown {
  height: max-content;
  width: 300px;
  background-color: white;
  position: absolute;
  top: 45px;
  color: rgb(83, 82, 82);
  font-weight: 100;
  font-size: 1.1rem;
  display: none;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  /* font-weight: bold; */
  z-index: 2;
  border: 15px solid transparent;
}
#catagoriesNavTailDropDown > div {
  border: 10px solid transparent;
  cursor: pointer;
}
#catagoriesNavTailDropDown > div:hover {
  background-color: rgb(232, 232, 232);
}

#catagoriesNavTailDiv:hover #catagoriesNavTailDropDown {
  display: block;
}
#catagoriesNavTailDiv:focus-within #navbar {
  background-color: grey;
  z-index: 1;
  opacity: 0.2;
}

#tailOfTheNav a {
  text-decoration: none;
  color: white;
  cursor: pointer;
}
#catagoriesNavTailDiv {
  display: flex;
  align-items: center;
}

/* /// big menu sider  */

.parentside {
  height: 500px;
  /* width: 600px; */
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 280px;
  background-color: white;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, auto);
  display: none;
}
.parentside > div {
  display: grid;
  grid-template-columns: 1fr;
  border: 15px solid transparent;
}
.child3,
.child2,
.child1 {
  width: 300px;
}
/* // big slide hover  */
.child3 {
  position: relative;
}

#localwarehouseNav:hover #localwarehouseOptions {
  display: grid;
  z-index: 3;
}
#localwarehouseOptions img {
  height: 350px;
  position: absolute;
  left: -10px;
  bottom: -40px;
}

#sportsHoverNav:hover #sportsHoverInsideNav {
  display: grid;
  z-index: 3;
}

#sportsHoverInsideNav img {
  height: 320px;
  position: absolute;
  bottom: -10px;
  left: 20px;
}
#smartHomeandgardenNavParent:hover #smartHomeGardenchildNav {
  display: grid;
  z-index: 3;
}

#consumerElectronicsNavSlide:hover #consumersElectronicsInNav {
  display: grid;
  z-index: 3;
}
#consumersElectronicsInNav img {
  height: 320px;
  position: absolute;
  bottom: -30px;
  left: 20px;
}
#tvBoxMiniPcNavInSlide:hover #tvboxMiniPcNavIn {
  display: grid;
  z-index: 3;
}
#tvboxMiniPcNavIn img {
  position: absolute;
  height: 330px;
  left: 0px;
  bottom: 0px;
}
#computerTabletnavSlideIn:hover #computerTabletNavSlideParent {
  display: grid;
  z-index: 3;
}
#computerTabletNavSlideParent img {
  position: absolute;
  height: 330px;
  bottom: -10px;
  left: 0px;
}

#toysHobbiesNavInSlide:hover #toysHobbiesNavInParentSlide {
  display: grid;
  z-index: 3;
}
#toysHobbiesNavInParentSlide img {
  position: absolute;
  height: 340px;
  bottom: -10px;
  left: 0px;
}
#phoneAccessoriesNavSlide:hover #phoneAccessoriesNavParent {
  display: grid;
  z-index: 3;
}
#phoneAccessoriesNavParent img {
  position: absolute;
  height: 330px;
  bottom: -10px;
  left: 0px;
}
#autoMobileNavSlide:hover #automibileNavParentIn {
  display: grid;
  z-index: 3;
}
#automibileNavParentIn img {
  position: absolute;
  height: 330px;
  left: 0px;
  bottom: -20px;
}
#wearableDevicenavSlide:hover #wearableDeviceNaveParentSlide {
  display: grid;
  z-index: 3;
}
#wearableDeviceNaveParentSlide img {
  position: absolute;
  height: 330px;
  left: 0px;
  bottom: -20px;
}
#securityCheckNavSlide:hover #securityCheckNavParentIn {
  display: grid;
  z-index: 3;
}
#securityCheckNavParentIn img {
  position: absolute;
  height: 330px;
  left: 0px;
  bottom: -30px;
}
#fashionNavSlide:hover #fashionNavParentIn {
  display: grid;
  z-index: 3;
}
#fashionNavParentIn img {
  position: absolute;
  height: 330px;
  left: 0px;
  bottom: -30px;
}

/* // ship to   nav*/
#shipToNavdown {
  display: flex;
  width: 70px;
  align-items: center;
  justify-content: space-around;
}
#shipToNavdown > img {
  height: 12px;
  margin-left: 8px;
}
#shipToNavOptionMain {
  color: black;
}
#shipToNavOptionMain img {
  width: 30px;
  height: 20px;
}

#shipToNavOptionMain:hover #shipToDropDown {
  display: block;
}
#shipToDropDown {
  background-color: white;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
  overflow-x: hidden;
  position: absolute;
  top: 40px;
  display: none;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px,
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}
#shipToDropDown > div {
  display: flex;
  align-items: center;
  border: 10px solid transparent;
}
#currencyDropDown {
  border: 20px solid transparent;
  grid-template-columns: 1fr;
}
#shipToNavOptionMain {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(192, 190, 190);
  align-items: center;
  position: relative;
}
#shipToUpdateText {
  padding: 5px;
  display: flex;
}

/* // currency  */
#currencyToNavMain {
  display: flex;
  justify-content: space-between;
  border: 1px solid rgb(192, 190, 190);
  align-items: center;
  position: relative;
}

#currencyToNavMain:hover #currencyNavDropIn {
  display: flex;
}
#currencyNavDropIn {
  display: none;
  height: 200px;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100%;
  position: absolute;
  top: 50px;
  background-color: white;
  justify-content: space-around;
  border: 10px solid transparent;
  z-index: 2;
}

#currencyNavDropIn > div > div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
  margin: 10px;
}
#currencyNavDropIn > div > div:hover {
  background-color: #a8caf9;
}
#shipToUpdateText,
#currencyNavIn {
  margin-left: 10px;
}

br {
  color: gray;
}

#allProductBoxOuter {
  cursor: pointer;
}

@media all and (min-width: 200px) and (max-width: 900px) {
  #topOfTheNav {
    font-size: 0.5rem;
  }
  #topOfTheNav img {
    height: 10px;
  }
  #middleOfTheNavIn img {
    height: 30px;
  }

  #allCatNavDropDown {
    display: none;
  }
  #searchBar img {
    height: 20px;
  }

  #searchNav {
    width: 72%;
    padding: 2px 5px;
    font-size: 0.6rem;
  }
  #signbarNav {
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-around;
  }
  #shipToNab {
    font-size: 0.8rem;
    text-align: center;
    display: flex;
  }

  #signInDropDownNav {
    height: 150px;
    width: 210px;
    right: -20px;
    top: 30px;
    grid-template-columns: 60%;
    border-radius: 5px;
  }
  #signInDropDownNav span + span {
    font-size: 0.8rem;
  }
  #AddToCartOnNav img {
    height: 15px;
  }
  #AddToCartOnNav span {
    font-size: 0.6rem;
    right: inherit;
  }
  #shipToNab img {
    height: 10px;
  }
  #signInUpNav {
    display: flex;
    align-items: center;
  }
  #signInUpNav {
    font-size: 0.8rem;
  }
  #signInUpNav img {
    height: 15px;
    margin-right: 5px;
  }
  #currencyDropDown {
    height: 230px;
    width: 260px;
    right: -190px;
    font-size: 0.8rem;
  }
  #currencyDropDown > h3 {
    font-size: 0.7rem;
  }
  #currencyDropDown img {
    height: 20px;
    margin-right: 10px;
  }
  #currencyNavDropIn {
    display: none;
    height: 300px;
    justify-content: space-around;
    padding: 10px;
  }
  #middleOfTheNavIn > :nth-child(n) {
    padding-top: 10px;
  }
  #catagoriesNavTailDiv {
    font-size: 0.7rem;
  }
  #tailOfNav {
    width: 98%;
  }
  #tailOfTheNav > :nth-child(n + 1) {
    display: none;
  }

  #tailOfTheNav > :nth-child(2),
  #tailOfTheNav > :nth-child(3),
  #tailOfTheNav > :nth-child(4),
  #tailOfTheNav > :nth-child(5),
  #tailOfTheNav > :nth-child(6),
  #tailOfTheNav > :nth-child(7) {
    display: flex;
    font-size: 0.8rem;
    margin: 5px;
    padding: 3px;
  }
  #searchBar:hover #searchDwonPop {
    display: block;
  }
  .im{
    max-width: 102px;
  }
}
