.navbar-nav li {
    padding-right: 20px;
}

/* Clase para aplicar animación */
button.loading {
    position: relative;
    color: transparent;
    cursor: not-allowed;
}

/* Pseudoelemento para mostrar un indicador de carga */
button.loading::after {
    /*content: "• • •";*/
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    letter-spacing: 2px;
    animation: loadingAnimation 1s infinite;
}

/* Animación */
keyframes loadingAnimation {
    0% {
        content: "•";
    }

    33% {
        content: "• •";
    }

    66% {
        content: "• • •";
    }

    100% {
        content: "•";
    }
}