/* Style the Formidable 'Processing' state */
.frm_loading_button {
    pointer-events: none;
    opacity: 0.8;
}

/* Create the spinning circle icon */
.frm_loading_button::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-left: 10px;
    vertical-align: middle;
    border:2px solid #555555;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: gl-spin 0.8s linear infinite;
}

/* The spinning animation */
@keyframes gl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}