.wishlist_layout {
    align-items: start;
    padding: 0 20px;
    margin: 40px auto;
    max-width: 1640px;
    width: 100%;
    box-sizing: border-box;
    display: grid;
    text-align: center;
    grid-gap: 10px;
}
.wishlist_product_grid.product_grid .product .tools{pointer-events: auto;display: grid;margin: 0;}
.product_grid.wishlist_product_grid .product .tools > * {
    opacity: 1;
    margin-right: 40px;
}

@media screen and (max-width: 768px) {
    .product_grid .product .tools {
        position: relative;
        grid-row: 6;
        grid-auto-flow: column;
    }

    .product_grid.wishlist_product_grid .product .tools > * {
        margin: 0;
    }

    .btn_fav.added, .product_grid .product .tools > .btn_fav.added {
        background-color: var(--color-mono-3);
    }   
}