/**
 * Table of Contents
 *
 * 1.0 - General
 * -----------------------------------------------------------------------------
 */

/**
 * 1.0 - General
 * -----------------------------------------------------------------------------
 */

.h4a-loader {
    display: inline-flex;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #00a0d2;
    border-bottom: 2px solid #00a0d2;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}