.wishlist-toggle:not(#wishButton) {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  pointer-events: auto;
  border: none;
  outline: none;
  padding: 0;
}
.wishlist-toggle:not(#wishButton) svg {
  width: 20px;
  height: 20px;
}
.wishlist-toggle.active svg path {
  fill: #640000;
}
.wishlist-toggle:hover .wishlist-icon-outline {
  display: none !important;
}
.wishlist-toggle:hover .wishlist-icon-filled {
  display: block !important;
}
.products {
  position: relative;
}
.products .wishlist-tooltip {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background-color: #212121;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 999;
  animation: fadeInTooltip 0.3s ease;
  pointer-events: auto;
}
.products .wishlist-tooltip.show {
  display: block !important;
  opacity: 1 !important;
}
.products .wishlist-tooltip a {
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}
@keyframes fadeInTooltip {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  to {
    opacity: 1;
    transform: translate(-50%);
  }
}
@media (max-width: 768px) {
  .wishlist-toggle:not(#wishButton) {
    width: 20px;
    height: 20px;
  }
  .wishlist-toggle:not(#wishButton) svg {
    width: 12px;
    height: 12px;
  }
}
/*# sourceMappingURL=/cdn/shop/t/138/assets/wishlist-styles.css.map */
