#wishlist {
  width: 100%;
}

.wishlist-button1 {
  width: 100%;
  height: 46px;
  color: Black;
  background-color: rgb(192, 190, 190);
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
}

.wishlist-button2 {
  width: 100%;
  height: 46px;
  color: white;
  background-color: maroon;
  border: 1px solid black;
  cursor: pointer;
  text-align: center;
  line-height: 46px;
}

.wishlist-text {
  width: 100%;
  color: black;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
}

#heartIcon1 {
  width: 35px;
  height: 35px;
  background-image: url("heartBlank.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

#heartIcon2 {
  width: 35px;
  height: 35px;
  background-image: url("heartBlackNew.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.icon-text {
  display: flex;
  text-align: center;
}

.outer-icon-text-button-div {
  text-align: center;
  background-color: rgb(185, 183, 183);
  color: black;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
  border: 1px solid black;
}

.outer-icon-text-div {
  text-align: center;
  background-color: transparent;
  color: black;
  cursor: pointer;
}

/* .wishlist-modal-all {
  grid-row-gap: 15px;
  display: grid;
  grid-column-gap: 15px;
} */

.inside-button-div-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin-right: 0px;
}

.deleteICON {
  background-image: url(delete.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

.heartICON {
  background-image: url(heart_empty_.svg);
  /* background-size: 20px; */
  background-repeat: no-repeat;
}

.starICON {
  background-image: url(starBlank.svg);
  /* background-size: 20px; */
  background-repeat: no-repeat;
}

.saveICON {
  background-image: url(saveBlank.svg);
  /* background-size: 20px; */
  background-repeat: no-repeat;
}


.heartICON2 {
  background-image: url(heart_fill_.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

.starICON2 {
  background-image: url(starBlack.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}

.saveICON2 {
  background-image: url(saveBlack.svg);
  background-size: 20px;
  background-repeat: no-repeat;
}


.icon-shake-side {
  animation-name: shaker;
  animation-duration: 0.2s;
  transform-origin: 50% 50%;
  animation-timing-function: linear;
}

.icon-shake-up {
  animation-name: shakerVerticle;
  animation-duration: 0.2s;
  transform-origin: 50% 50%;
  animation-timing-function: linear;
}

.icon-rotate {
  animation-name: spinner;
  animation-duration: 500ms;
  animation-timing-function: linear;
}

.icon-fade_in {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.icon-fade_out {
  animation: fadeInAnimation1 ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.animation-fade_in {
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

.animation-fade_in:active {
  box-shadow: 0 5px #c4c3c3;
  transform: translateY(4px);
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animation-fade_out {
  animation: fadeInAnimation1 ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes fadeInAnimation1 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.animation-shake-side {
  animation-name: shaker;
  animation-duration: 0.2s;
  transform-origin: 50% 50%;
  animation-timing-function: linear;
}

.animation-shake-side:hover {
  opacity: 1
}

@keyframes shaker {
  0% {
    transform: translate(20px, 0);
  }

  25% {
    transform: translate(-20px, 0);
  }

  50% {
    transform: translate(20px, 0);
  }

  75% {
    transform: translate(-20px, 0);
  }

  100% {
    transform: translate(20px, 0);
  }
}

.animation-shake-up {
  animation-name: shakerVerticle;
  animation-duration: 0.2s;
  transform-origin: 50% 50%;
  animation-timing-function: linear;
}

.animation-shake-up:hover {
  opacity: 0.8;
}

@keyframes shakerVerticle {
  0% {
    transform: translate(0, 20px);
  }

  25% {
    transform: translate(0, -20px);
  }

  50% {
    transform: translate(0, 20px);
  }

  75% {
    transform: translate(0, -20px);
  }

  100% {
    transform: translate(0, 20px);
  }
}

.animation-rotate {
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  overflow: hidden;
  animation-name: spinner;
  animation-duration: 500ms;
  animation-timing-function: linear;
}

@keyframes spinner {
  from {
    transform: rotateZ(0) rotateX(360deg);
  }

  to {
    transform: rotateZ(360deg) rotateX(-360deg);
  }
}