/* Evitar desbordamiento horizontal en móviles */
html, body {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
}

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

@media (max-width: 600px) {
    #contOpciones {
        padding-left: 5px;
        padding-right: 5px;
    }
    .contenedor {
        padding-left: 0;
        padding-right: 0;
        margin-left: 0;
        margin-right: 0;
    }
    table {
        width: 100%;
        min-width: 320px;
    }
}

.controladores{
    justify-content: space-between;
}

.c-c-3{
    display: flex;
    justify-content: end;
}

.c-c-4{
    display: flex;
    justify-content: start;
}


@media (max-width: 992px){

    .cont-titulo{
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }

    .c-c-1{
        display: flex;
        justify-content: end;
    }

    .c-c-2{
        display: flex;
        justify-content: start;
    }

    .c-c-3{
        display: flex;
        justify-content: end;
    }

    .c-c-4{
        display: flex;
        justify-content: start;
    }

    .c-buscador{
        max-width: 200px;
    }
}
@media (max-width: 768px){
    .cont-titulo{
        display: flex;
        justify-content: center;
        padding-bottom: 20px;
    }

    .c-c-1{
        display: flex;
        justify-content: center;
    }

    .c-c-2{
        display: flex;
        justify-content: center;
    }

    .c-c-3{
        display: flex;
        justify-content: center;
    }

    .c-c-4{
        display: flex;
        justify-content: center;
    }

    .c-buscador{
        max-width: 200px;
    }
}
