/**
 * MNA Tickets - Shared Styles
 *
 * Spinner used on checkout and visitor details pages.
 */

@keyframes wc-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.wc-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: wc-spin 1s infinite linear;
    vertical-align: text-bottom;
}
