.tc-seat-processing {
    animation: tc-seat-processing-pulse 0.9s ease-in-out infinite;
    cursor: wait !important;
}

@keyframes tc-seat-processing-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}
