/* Global Button Cursor and Processing State */
button,
input[type='submit'],
input[type='button'],
.blusmoon-Button,
.button {
    cursor: pointer !important;
    transition: all 0.3s ease;
}

.btn-processing {
    opacity: 0.7 !important;
    pointer-events: none !important;
    position: relative !important;
}

.btn-processing.btn-spinning {
    color: transparent !important;
}

.btn-processing.btn-spinning::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

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