.animate-spin {
    animation: spin 1s linear infinite;
}

#svp-code-submit-button {
    margin-left: -5px;
    border-radius: 0px 5px 5px 0px;
}

#svp-code-redemption .input-success {
    margin-top: .25rem;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: .5rem;
    text-align: left;
    font-size: 14px;
    line-height: 150%;
    font-weight: 400;
    line-height: 1rem;
    --tw-text-opacity: 1;
    color: green;
}

#svp-code-redemption .max-w-450{
    max-width: 450px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}