button.wishlist-button {
    all: unset;
	width: 32px;
	height: 32px;
	background: var(--m1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 17px;
    right: 17px;
    opacity:1;
    transition:all 300ms;
	cursor: pointer;
}

button.wishlist-button svg {
    display: block;
}
button.wishlist-button.added-to-wishlist  svg path {
    fill: #000;
}
.woocommerce-LoopProduct-link {
    position: relative;
    display: block;
}
 
.wislist_empty {
	text-align:center;
	padding:10px 25px;
}
p.wishlist_empty {
    text-align: CENTER;
}
span.wtooltip {
    position: absolute;
    width: 160px;
    background-color: #fff;
    margin-top: 0;
    border-radius: 15px;
    padding-top: 4px;
    padding-bottom: 2px;
    box-shadow: 1px 2px 10px -3px rgba(0,0,0,0.75);
    -webkit-box-shadow: 1px 2px 10px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 1px 2px 10px -3px rgba(0,0,0,0.75);
    padding-left: 5px;
    padding-right: 5px;
    text-align: center;
    font-size: 12px;
    left: 37px;
    z-index: 2;
    background-color: var(--m1);
    color: #000;
    display:none;
}

span.wtooltip:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 10px 5px 0;
    border-color: transparent var(--m1) transparent transparent;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 991px) {
	span.wtooltip {
		left: -176px;
	}

	span.wtooltip:after {
		left: unset;
		right: -9px;
		margin: 0 auto;
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 5px 0 5px 10px;
		border-color: transparent transparent transparent #369ECD;
	}
	.product_information_content button.wishlist-button span.wtooltip {
		left: -127px;
		margin-top: 75px;
	}

	.product_information_content button.wishlist-button span.wtooltip:after {
		border-width: 0 5px 10px 5px;
		border-color: transparent transparent #369ECD transparent;
		top: -4px;
		left: unset;
		right: 15px;
	}
}