.wfwl-wish-btn {
  display: block;
  font-size: 1.2em;
  line-height: 2em;
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px !important;
  outline: none !important;
}
.wfwl-wish-btn:before {
  content: "\f487";
  font-family: dashicons;
  vertical-align: bottom;
  margin-right: 0.5em;
  transition: all .2s ease;
}
.wfwl-wish-btn:hover:before,
.wfwl-wish-btn:active:before {
  color: red;
}

.single-product .wfwl-wish-btn,
form.cart .wfwl-wish-btn {
  display: inline-block;
}

.wfwl-wishlist-cont * {
  -webkit-appearance: none !important;
  -webkit-border-radius: 0px !important;
  outline: none !important;
}

.wfwl-wishlist-cont {
  display: flex;
  position: fixed;
  background: #f9f9f9;
  right: 0;
  top: 50%;
  width: 4em;
  transform: translate(0, -50%);
  overflow: hidden;
  z-index: 99999;
  flex-direction: column;
  padding: 0.5em;
  border-radius: 0.5em 0 0 0.5em;
  box-shadow: -0.05em 0 0.5em rgba(0, 0, 0, 0.25);
  transition: all .2s ease;
}

.wfwl-wishlist-cont.hidden {
  right: -5em;
}

.wfwl-wishlist-cont:before {
  display: flex;
  font-size: 1.5em;
  line-height: 2em;
  content: "\f487";
  font-family: dashicons;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.wfwl-wishlist-cont.heartbeat:before {
  color: red;
  transform: scale(1.5);
}

/* .wfwl-wishlist-cont:after {
  display: flex;
  font-size: 1em;
  line-height: 1.5em;
  content: "\f182";
  font-family: dashicons;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
} */

.wfwl-wishlist-cont .wfwl-wishlist-close {
  text-align: center;
  cursor: pointer;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.5em;
  padding-top: 0.5em;
}
.wfwl-wishlist-cont .wfwl-wishlist-close:before {
  content: "\f158";
  font-family: dashicons;
  vertical-align: bottom;
  font-size: 1.2em;
}
/*
.wfwl-wishlist-cont .wfwl-wishlist-close:after {
  content: "\f158";
  font-family: dashicons;
  vertical-align: bottom;
} */

.wfwl-wishlist-cont .wish-one-product {
  width: 3em;
  height: 3em;
  display: flex;
  margin: 0.2em 0;
  align-items: center;
  justify-content: center;
  /* animation-name: grow-up;
  animation-iteration-count: 1;
  animation-duration: 200ms; */
}

.wfwl-wishlist-cont .wish-one-product .wish-link-btn {
  border-radius: 0.25em;
  overflow: hidden;
  transition: transform .1s ease;
}

.wfwl-wishlist-cont .wish-one-product .wish-link-btn:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
  transform: scale(1.1);
}

.wfwl-wishlist-cont .wish-one-product .wish-link-btn:focus,
.wfwl-wishlist-cont .wish-one-product .wish-link-btn:active {
  transform: scale(1);
}

.wfwl-wishlist-cont .wish-one-product.loading:before {
  content: "\f463";
  font-size: 2em;
  font-family: dashicons;
  opacity: 0.5;
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.wfwl-wishlist-cont .wish-one-product .wish-link-btn .wish-thumb {
  animation-name: fade-in;
  animation-iteration-count: 1;
  animation-duration: 500ms;
}


@keyframes spin {
  from { transform:rotate(0deg); }
  to { transform:rotate(360deg); }
}

@keyframes fade-in{
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes grow-up{
  from {transform: scale(0.1);}
  to {transform: scale(1);}
}
