/* SHOP INDEX START */

.five-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.three-gridbtn {
  height: 15px;
  width: 30px;
  background-image: linear-gradient(90deg, gray 7px, #c4c4c4 0, #fff 0, #fff 0);
  background-size: 10px 10px;
  cursor: pointer;
}
.five-gridbtn {
  height: 15px;
  width: 50px;
  background-image: linear-gradient(90deg, #c4c4c4 7px, #c4c4c4 0, #fff 0, #fff 0);
  background-size: 10px 10px;
  cursor: pointer;
}
.threegridbtn {
  border: 1px solid lightgrey;
  background-color: #fff;
  padding: 5px;
  max-width: 40px;
}
.fivegridbtn {
  border: 1px solid lightgrey;
  background-color: #fff;
  padding: 5px;
  max-width: 60px;
}
.product-top-panel {
  display: flex;
  flex-wrap: wrap;
  color: #151515;
  border-top: 1px solid #e5e3e3;
  border-bottom: 1px solid #e5e3e3;
  background-color: #f9f9f9;
}
.gridbtn-enable {
  background-image: linear-gradient(90deg, gray 7px, gray 0, #fff 0, #fff 0);
}
.gridbtn-disable {
  background-image: linear-gradient(90deg, lightgray 7px, lightgray 0, #fff 0, #fff 0);
}
.gridborder-enable {
  border: 1px solid gray;
}
.gridborder-disable {
  border: 1px solid lightgray;
}
.pagination {
  margin: 25px 0px 50px 0px;
  gap: 10px;
  font-size: medium;
}
@media screen and (min-width: 100px) and (max-width: 900px) {
  .grid-changer {
    display: none !important;
  }
}
#add-to-card{
  color: black !important;
}
#add-to-card:hover{
  color: white !important;
}
.list-shop-filter{
  max-height: 350px;
  overflow-y: auto;
}
/* SHOP INDEX END */

/* WHISHLIST START */
.no-product-found-container {
  margin-left: 400px;
  margin-bottom: 0px;
}

#delete-button {
    font-weight: bold;
    border: none !important;
    cursor: pointer;
    font-size: 14px !important;
    margin-bottom: 10px;
    background-color: red;
    float: right;
    margin-top: 20px;
}

#delete-button:hover{
    background-color:rgb(240, 153, 167);
}

#delete-all{
    height: 50px;
    margin-bottom: 20px;
}

#full-section{
    padding-top: 20px;
}

#cancel-icon {
    z-index: auto !important; 
}

/* WHISHLIST END */