.list-group-item input,
.list-group-item label {
    cursor: pointer;
}

.imagen-titulo {
    margin-left: 2%;
}

ul.sub-menu li a {
    text-decoration: none;
}
.contenedor-imagen {
    width: 200px;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-spinner {
    width: 30px;
    height: 30px;
    border: 2px solid indigo;
    border-radius: 50%;
    border-top-color: #0001;
    display: inline-block;
    animation: loadingspinner .7s linear infinite;
}

@keyframes loadingspinner {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


*,
*::after,
*::before {
    box-sizing: border-box;
}


:root {
    --l1: hsla(0, 0%, 100%, 1);
    --l2: hsla(223, 13%, 87%, 1);
    --l3: hsla(0, 0%, 77%, 1);
    --d1: hsla(0, 0%, 20%, 1);
    --d2: #555;
    --p1: #FFC324;
    --g1: #FFB714;
    --g2: #FFE579;
}


#loader-chido {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*change these sizes to fit into your project*/
    width: 100px;
    height: 100px;
}

    #loader-chido hr {
        border: 0;
        margin: 0;
        width: 40%;
        height: 40%;
        position: absolute;
        border-radius: 50%;
        animation: spin 2s ease infinite
    }

    #loader-chido :first-child {
        background: #19A68C;
        animation-delay: -1.5s
    }

    #loader-chido :nth-child(2) {
        background: #F63D3A;
        animation-delay: -1s
    }

    #loader-chido :nth-child(3) {
        background: #FDA543;
        animation-delay: -0.5s
    }

    #loader-chido :last-child {
        background: #193B48
    }

@keyframes spin {
    0%,100% {
        transform: translate(0)
    }

    25% {
        transform: translate(160%)
    }

    50% {
        transform: translate(160%, 160%)
    }

    75% {
        transform: translate(0, 160%)
    }
}

