/* Big Menu with store */
.megamenu {
  position: absolute;
  left: 0;
  top: 17px;
  z-index: 100;
  width: 100%;
  height: 400px;
  display: flex;
  opacity: 0;
  padding-top: 40px;
  flex-direction: row;
  visibility: hidden;
  
}

.megamenu .megamenu-content {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid rgb(242, 231, 231);
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.megamenu .megamenu-content .cats-content {
  display: flex;
  list-style: none;
}

.megamenu .megamenu-content .cats-content > li {
  margin-top: 50px;
  margin-right: 150px;
}

.dropdown:hover .megamenu {
  color: rgb(218, 218, 245);
  visibility: visible;
  transition: all 0.3s ease;
  opacity: 1;
}

.nav__item:hover .dropdown__icon {
  transform: rotate(180deg);
  transition: all 0.3s ease;
}

/* Megamenu categories */

.cats-content {
  display: flex;
  flex-direction: column;
  background-color: rgb(251, 249, 246);
  padding-left: 50px;
  padding-right: 50px;
}

.all-cats {
  padding-bottom: 10px;
  margin-bottom: 10px;
  width: 100%;
  border: none;
  border-bottom: 1px solid rgb(11, 11, 11, 0.5);
}

.all-cats > a {
 color: black;
}
.category-and-subcategory-elements {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  margin-right: 15px;
}

.category-and-subcategory-elements .category-and-subcategory {
  list-style: none;
}
.category-and-subcategory-items {
  margin-right: 25px;
  margin-bottom: 10px;
}

/* children style */
.children {
  margin-top: 15px;
  font-size: 0.9em;
  opacity: 0.5;
}

/* End children style */

/* End big Menu with store */

/* Megamenu cat images */
.header-cat-image {
  display: flex;
  width: 600px;
  height: 100%;
  padding: 30px 60px 0px 0px;
}

.header-cat-image > li {
  width: 50%;
  height: 100%;
  margin-right: 15px;
}

.header-cat-image > li > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
