/**
 * ---------------------------------
 *               ULTRA              
 * ---------------------------------
 * Autor: Alexander Aceves <aaceves@ultrasolutions.com.mx>
 * Fecha:
 * Descripción:
 * 
 */
.loading {
    width: 48px;
    height: 48px;
    background: #60615C;
    display: inline-block;
    border-radius: 50%;
    box-sizing: border-box;
    animation: animloader 1s ease-in infinite;
}

@keyframes animloader {
    0% {
        transform: scale(0);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}