.woocommerce-MyAccount-content_wishlist {
    .wishlist-items {
        display: flex;
        flex-direction: column;
        gap: 10px;

        .model {
            position: relative;

            .model-content {
                display: flex;
                gap: 10px;

                @media(max-width: 767px) {
                    flex-direction: column;
                }

                img {
                    width: 100px;
                    height: 100px;
                    object-fit: contain;

                    @media(max-width: 767px) {
                        width: 100%;
                        height: auto;
                        max-height: 200px;
                    }
                }

                .data {
                    display: flex;
                    flex-direction: column;
                    gap: 10px;

                    .actions {
                        display: flex;
                        gap: 10px;

                        a,
                        button {
                            color: #fff !important;
                        }

                        @media(max-width: 767px) {
                            flex-direction: column;

                            a,
                            button {
                                width: 100%;
                            }
                        }
                    }
                }
            }


            .product-wishlist {
                position: absolute;
                right: 10px;
                top: 10px;

                .total-wishlist-safes {
                    display: none;
                }

                .add-to-wishlist {


                    svg {
                        path {
                            stroke: #000 !important;
                        }
                    }

                    &.added {
                        svg {
                            path {
                                stroke: #000 !important;
                                fill: #000 !important;
                            }
                        }
                    }
                }

            }

        }
    }
}