/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

#rlcf_notifications.warning,
div.warning .notice {
    color: red;
}
div.warning input {
    border-color: red;
}

#rlcf_notifications.success {
    color: green;
}

#rlcf_spinner {
    display: none;
    border: 16px solid #e2e2e2;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 12px;
    height: 12px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

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