@import "../../theme_fonts/theme.css";
.profileList {
  width: 26%;
}
.whishlistbox {
  width: 70%;
  margin-left: 2.4rem;
  margin-top: 2rem;
  background-color: var(--primary-background);
  text-align: center;
  padding: 2rem;
  min-height: 300px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  box-shadow: rgba(0,0,0,0.1) 0px 2px 8px;
  border-radius: 10px;
}

.whishlistbox.empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whishlistbox h4 {
  margin-top: 20px;
  color: var(--primary-text-black);
}

.whishlistbox h6 {
  color: var(--primary-text-black);
  opacity: 0.7;
}

/* Dark mode - stars and cross icons white */
.dark-mode .starsdiv img,
.dark-mode .rmvbtn img {
  filter: brightness(0) invert(1);
}
/* .whishlistbox button {
  padding: 0.7rem;
  background-color: white;
  border: none;
} */
/* .whishlistbox button:hover {
  background-color: rgb(239, 235, 235);
} */
.settingFlex {
  display: flex;
  gap: 10px;
  margin: 0;
  font-size: 12px;
}
.whishlistbox img {
  width: 100%;
  max-width: 120px;
}
.maindiv {
  width: 100%;
}
.parentdiv {
  width: 100%;
  padding: 10px;
  box-shadow: var(--box-shad) 0px 2px 8px 0px;
  border-radius: 10px;
  background: var(--primary-background);
}
.imgdiv {
  width: 100%;
  display: flex;
  justify-content: center;
}
.imgdiv > img {
  width: 100%;
  max-width: 120px;
  height: auto;
  padding-top: 10px;
}
.textdiv {
  width: 100%;
  padding: 5px;
}
.mrpdiv {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  width: 38%;
}

.movetobag {
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-style: solid;
  border-width: 1px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.1px;
  border-color: var(--btn-pink);
  background-color: var(--btn-pink);
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  width: 50%;
  height: 50px;
}
.buy {
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-style: solid;
  border-width: 1px;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.1px;
  border-color: var(--box-black);
  background-color: var(--box-black);
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  width: 50%;
  height: 50px;
}

.starsdiv {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 78%;
  align-items: center;
}
.starsdiv > img {
  width: 70%;
}
.font-product-item-MRP {
  width: 30%;
  font-size: 16px;
  margin-right: 5px;
}
.reviewdiv {
  display: flex;
  justify-content: space-between;
}

.bagdiv {
  display: flex;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .profile {
    display: block !important;
    flex-direction: column;
    width: 100%;
  }
  .profileList {
    width: 80%;
  }
  .whishlistbox {
    width: 80%;
    /* margin: auto; */
  }
}
.rmvbtn {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: var(--box-black); */
  border: 1px solid var(--box-black);
  color: var(--primary-text-black);
  font-size: large;
  float: right;
  margin-top: 20px;
  margin-right: 25px;
}
.rmvbtn > img {
  width: 100%;
}
.rmvbtn:hover {
  cursor: pointer;
  /* background-color: #fc2779; */
  /* border-color: #fc2779; */
  color: var(--btn-pink);
}

.pop-up-alert-view {
  display: flex;
  justify-content: center;
  font-family: inter, Roboto, Arial, sans-serif;
}
.pop-up-alert {
  position: fixed;
  height: 50px;
  width: 200px;
  bottom: 0;
  margin-bottom: -100px;
  border-radius: 10px;
  background-color: var(--btn-pink);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease;
  padding: 10px;
}
.pop-up-alert > p {
  padding: 10px;
}
.pop {
  animation-name: example;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
}

@keyframes example {
  0% {
    margin-bottom: -100px;
  }
  40% {
    margin-bottom: 100px;
  }
  60% {
    margin-bottom: 100px;
  }
  100% {
    margin-bottom: -100px;
  }
}
