.wishlist-button-wrapper{
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-bottom: 1rem;
  width: 100%; 
}
.purefun_wishlist {
  z-index: 3;
  border-radius: 50%;
}
.wishlist-button-wrapper button {
  width: fit-content !important;

}
.wishlist-button-wrapper .purefun_wishlist{
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 3;
  border-radius: 50%;
}

.purefun_wishlist .heart{
  cursor: pointer;
  transform: scale(1)
}
.purefun_wishlist .heart path{
  transition: .3s fill cubic-bezier(.4,0,.2,1);
  fill: transparent !important;
}
.purefun_wishlist .heart.added path {
  transition: .3s fill cubic-bezier(0,0,.2,1);
  fill: #FF7979 !important;
  stroke: #FF7979 !important
}
#wishlist-items-container .remove-wishlist-item {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 10;
  cursor: pointer;

}
#wishlist-items-container .remove-wishlist-item::after {
  content: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='currentColor' stroke-width='1.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
  position: absolute;
  height: 24px;
  width: 24px;
  right: 10px;
  top: 10px;
}
.wishlist-share-modal {
  z-index: 21 !important;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  flex-direction: column;
  background-color: rgba(0,0,0,.5)
}
.share-wishlist {
  background-color: #9479F8 !important;
}
.share-wishlist:disabled {
  opacity: 0.2;
}
.share-wishlist:hover {
  background-color: #8166fa !important;

}
.share-wishlist, .empty-wishlist {
  max-height: 40px;
}
.empty-wishlist:disabled {
  opacity: 0.2;
}
.share-wishlist > svg, .empty-wishlist > svg {
  margin-left: 8px;
}
.wishlist-share-modal-content {
  padding: 3rem;
  max-width: 80%;
  box-shadow: 0 20px 38px rgba(0,0,0,.16);
  background-color: #FFF;
  display: flex;
  position: relative;
}
#main > div.wishlist-share-modal > div > div {
  gap: 16px;
}
#main > div.wishlist-share-modal > div > div > button.empty-wishlist-yes.primary-btn, #main > div.wishlist-share-modal > div > div > button.empty-wishlist-no.primary-btn {
  display: flex;
  justify-content: center;
}
#main > div.wishlist-share-modal > div > div > button.empty-wishlist-yes.primary-btn {
  color: #FFF;
}
#main > div.wishlist-share-modal > div > div > button.empty-wishlist-no.primary-btn {
  background-color: transparent;
  border: 1px solid #e2e2e2;
}
.wishlist-share-modal-content > pre {
  height: 100%;
  overflow-y: scroll;
}
.share-wishlist-url{
  max-width: 340px !important;
}
.copy-share-url-button.primary-btn{
  width: unset !important;
  height: 30px !important;
}
.copy-success {
  width: 100%;
  text-align: center;
  background-color: #00b67a;
  color: #FFF;
  padding: 6px;
}
.wishlist-share-close-modal{
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
}
.wishlist-share-modal-content h4 {
  text-align: center;
  margin-bottom: 1rem; 
}
body.less-index #masthead, body.less-index .col-full-nav {
  z-index: 3 !important
}
body.less-index #page ul.products:not(.purefun-recent-products) li.product {
  z-index: 0 !important
}

@media (max-width: 768px){
  .wishlist-button-wrapper{
    justify-content: space-between !important;
    width: calc(100% + 20px);
  }
  .wishlist-button-wrapper button {
    height: unset !important;
    padding: 8px !important; 
  }
  .wishlist-share-modal-content{
    padding: 1rem;
  }
  .wishlist-share-modal-content div:nth-child(1){
    max-width: 100%;
  }
}