.rw-wishlist-button {
    background-color: transparent;
    color: black;
    font-size: 32px;
    animation: beat_off 400ms forwards;
}

.rw-wishlist-button[data-active] {
    animation: beat_on 400ms forwards;
}

.rw-wishlist-button[data-active] svg path {
    fill: #DA2573;
    stroke: #DA2573;
}

@keyframes beat_on {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.5);
    }

    80% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes beat_off {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    80% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.rw-toast-notification {
    position: fixed;
    inset: 0;
    background-color: rgb(0 0 0 / 50%);
}
.rw-toast-notification > div{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    margin-inline: 20px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
    border: 1px solid rgb(0 0 0 / 15%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: scale 150ms ease-out;
    min-width: 150px;
    max-width: 400px;
}
@keyframes scale {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
    }

}
.rw-toast-notification p {
    text-align: center;
}

.rw-toast-notification>div>div {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    gap: 20px;

    transition: all 300ms ease-out;
}

.rw-toast-notification button {
    color: #DA2573;
    background-color: transparent;
    padding: 15px 20px;
    border-radius: 99px;
    border: 1px solid currentColor;
    min-width: 100px;
    text-align: center;
    font-weight: 500;
}

.rw-toast-notification .rw-toast-notification-undobtn {
    background-color: #DA2573;
    color: white;
}


.rw-wishlist-toast {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    bottom: 40px;
    left: 20px;
    max-width: 400px;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px;
    padding-right: 20px;
    box-shadow: 0 6px 20px rgb(0 0 0 / 20%);
    opacity: 0;
    animation: 300ms fade;
    white-space: wrap;
}

.rw-wishlist-toast img {
    width: 50px;
    border-radius: 7px;

}
@keyframes fade {
    0% {
        opacity: 0;
    }

}
