.icon-modal{
    font-size: 2em;
    color: #d32f2f;
    animation: infinite 2s zoom;
}

.stripe-checkout-btn {
    background: #673AB7;
    color: #fafafa;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
}


@keyframes zoom{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(2);
    }
    100%{
        transform: scale(1);
    }
}