.brtheme-wishlist-button {
cursor: pointer;
}
.brtheme-wishlist-button.loading {
position: relative;
}
@keyframes loading {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.brtheme-wishlist-button.loading::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 20px;
height: 20px;
border-radius: 50px;
border: 2px solid currentColor;
border-top-color: white;
animation: loading 2s linear infinite;
z-index: 2;
}
.brtheme-wishlist-button.added .brtheme-wishlist-icon.default-icon {
display: none;
}
.brtheme-wishlist-button:not(.added) .brtheme-wishlist-icon.active-icon {
display: none;
}