/*-------------------------------------WISHLIST START-------------------------------------*/
.custom_wishlist_button {
    position: relative;
    display: flex;
    cursor: pointer;
    border: 1px solid var(--wp--preset--color--background-dark-gray);
    width: 56px;
    height: 56px;
    background-color: var(--wp--preset--color--background-primary);
}

.single_variation_wrap .custom_wishlist_button {
    margin-left: 0 !important;
}

.custom_wishlist_button_alone {
    display: none;
    margin-left: 5% !important;
    margin-top: 20px;
}

body .alg-wc-wl-btn-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

body .products .alg-wc-wl-btn-wrapper, 
body .custom-product-item .alg-wc-wl-btn-wrapper,
body .custom-products-grid > .product .alg-wc-wl-btn-wrapper {
    position: absolute;
    top: 3%;
    right: 6%;
    z-index: 10;
    height: 8%;
    width: 12%;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button {
    background-color: transparent !important;
    color: transparent !important;
    border-color: transparent !important;
    margin: 0;
    padding: 0;
    font-size: 0px !important;
    height: 100%;
    width: 100%;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state {
    height: 100%;
    width: 100%;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state span.alg-wc-wl-btn-text {
    display: none;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state i {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0;
    padding: 0;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button i.loading {
    display: none !important;
    z-index: -10;
}

body .custom_wishlist_button .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state i.custom-wishlist-added-button {
    background-image: url('/wp-content/themes/custom/assets/icons/Favoris-Noir_plein.png') !important;
    display: flex;
}

body .custom_wishlist_button .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state i.custom-wishlist-add-button {
    background-image: url('/wp-content/themes/custom/assets/icons/Favoris-Noir_contour.png') !important;
    display: flex;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state i.custom-wishlist-added-button {
    background-image: url('/wp-content/themes/custom/assets/icons/Favoris-Blanc_plein.png') !important;
    display: flex;
}

body .alg-wc-wl-btn-wrapper button.alg-wc-wl-btn.button .alg-wc-wl-view-state i.custom-wishlist-add-button {
    background-image: url('/wp-content/themes/custom/assets/icons/Favoris-Blanc.png') !important;
    display: flex;
}

.rotanimation {
    animation: rotate360 1s infinite linear;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/*-------------------------------------WISHLIST END-------------------------------------*/