﻿:root {
    /*COLORES*/
    --color_fondo_icono: whitesmoke;
    --color_1: black;
    --color_2: #333;
    /*COLORES DE FONDO*/
    --color_fondo_1: #ebebeb;
    --color_fondo_2: #f5f5f5;
    /*COLORES*/
    --color_fondo_cabecera: #d5d5d5;
    --color_fondo_cuerpoPagina: white;
    --color_verde_1: #00a65a;
    --c_btn_fondo_1: var(--color_verde_1);
    --c_btn_texto_1: white;
    /*FONS*/
    --fuenteTipo_Base: Arial, Helvetica, sans-serif;
    --fuenteSize_Base: 1.2rem;
    --fuenteSize_Titulo: 2rem;
    --fuenteSize_Info: 1.6rem;
    --fuenteSize_Menu: 1.2rem;
    --fuenteSize_MenuIcon: calc(var(--fuenteSize_Menu) + 0.1rem);
    --fuenteSize_SubMenu: 1.1rem;
    --fuenteSize_SubMenuIcon: calc(var(--fuenteSize_SubMenu) - 0.2rem);
    --fuenteSize_Input: 1.3rem;
    --fuenteSize_Button: 1.8rem;
    --fuenteSize_iconoFiltros: 17px;
    --fuenteSize_TablaGridTd: 1.1rem;
    --fuenteSize_TablaGridTh: 1rem;
    /*TAMAÑOS*/
    --border-radius_1: 5px;
    --border-radius_2: 10px;
    /*Variables Tracking*/
    --colorLineaCompletada: #4848e5;
    --colorLineaActual: var(--colorLineaCompletada);
    --colorLinea: gray;
}

html {
    font-size: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fuenteTipo_Base);
    color: var(--color_1);
    font-size: var(--fuenteSize_Base);
}

a {
    color: #3c8dbc;
    text-decoration: none;
    cursor: pointer;
}

/*#region Tablas*/

table > thead {
    background-color: #dce9f9;
}

    table > thead > tr {
    }

        table > thead > tr > th {
            height: 20px;
            padding: 2px;
        }

table > tbody {
    background-color: white;
}

    table > tbody > tr {
    }

        table > tbody > tr > td {
            height: 20px;
            padding: 2px;
        }

        table > tbody > tr:nth-child(odd) {
            background-color: white;
        }

        table > tbody > tr:nth-child(even) {
            background-color: white;
        }

        table > tbody > tr:hover {
            background-color: lightyellow;
            cursor: pointer;
        }
        /*Paginacion*/
        table > tbody > tr.tr_Paginacion {
            background-color: white;
        }

            table > tbody > tr.tr_Paginacion > td {
                background-color: white;
            }

                table > tbody > tr.tr_Paginacion > td > table {
                    background-color: white;
                    width: 100%;
                    text-align: center;
                    display: flex;
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                    align-content: center;
                    flex-wrap: wrap;
                }

                    table > tbody > tr.tr_Paginacion > td > table > tbody {
                        background-color: white;
                        width: 100%;
                        text-align: center;
                        display: flex;
                        flex-direction: row;
                        justify-content: center;
                        align-items: center;
                        align-content: center;
                        flex-wrap: wrap;
                    }

                        table > tbody > tr.tr_Paginacion > td > table > tbody > tr {
                            background-color: white;
                            width: 100%;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            align-content: center;
                            column-gap: 5px;
                            height: 25px;
                        }

                            table > tbody > tr.tr_Paginacion > td > table > tbody > tr:nth-child(odd) {
                            }

                            table > tbody > tr.tr_Paginacion > td > table > tbody > tr:nth-child(even) {
                            }

                            table > tbody > tr.tr_Paginacion > td > table > tbody > tr > td {
                                background-color: white;
                                border-radius: 10px;
                                border: 1px solid gray;
                                display: flex;
                                justify-content: center;
                                align-items: center;
                                align-content: center;
                                height: 20px;
                                width: 20px;
                                padding: 0;
                            }

                                table > tbody > tr.tr_Paginacion > td > table > tbody > tr > td > span {
                                    background-color: white;
                                    color: black;
                                    font-weight: bold;
                                }

                                table > tbody > tr.tr_Paginacion > td > table > tbody > tr > td > a {
                                    color: gray;
                                }

                                    table > tbody > tr.tr_Paginacion > td > table > tbody > tr > td > a:hover {
                                        color: black;
                                    }

/*Iconos de tablas Codificaciones*/
.btn_grd_eliminar {
    color: red;
}

.btn_grd_modificar {
    color: dimgray;
}

/*#endregion Tablas*/

/*#region BAR TRACKING*/
/*#region horizontal*/
.bar_tracking {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 100%;
}

    .bar_tracking.Desactivada {
        opacity: 0.4;
    }

    .bar_tracking .Fase {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 200px;
    }

        .bar_tracking .Fase .nombreFase {
        }
        /*Primer Tramo redondeado*/
        .bar_tracking .Fase:first-child .linea .before {
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
        }

        /*Ultimo Tramo redondeado*/
        .bar_tracking .Fase:last-child .linea .after {
            border-top-right-radius: 10px;
            border-bottom-right-radius: 10px;
        }

        .bar_tracking .Fase .linea {
            display: grid;
            width: 100%;
            grid-template-columns: 49% 2% 49%;
            align-items: center;
            padding-top: 10px;
            padding-bottom: 10px;
        }

            .bar_tracking .Fase .linea .after {
                height: 10px;
                width: 100%;
                background-color: #bebebe;
            }

            .bar_tracking .Fase .linea .texto {
                color: black;
                border: 1px solid black;
                background-color: var(--colorLinea);
                border-radius: 50%;
                width: 20px;
                height: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                justify-self: center;
                z-index:1;
            }

            .bar_tracking .Fase .linea .before {
                height: 10px;
                width: 100%;
                background-color: #bebebe;
            }

/*COMPLETADA*/
.Fase.Completada > .linea > .before {
    background-color: var(--colorLineaCompletada);
}

.Fase.Completada > .linea > .texto {
    background-color: var(--colorLineaCompletada);
}

.Fase.Completada > .linea > .after {
    background-color: var(--colorLineaCompletada);
}
/*Actual*/
.Fase.Actual > .linea > .before {
    background-color: var(--colorLineaActual);
}

.Fase.Actual > .linea > .texto {
    background-color: var(--colorLineaActual);
}

.Fase.Actual > .linea > .after {
    background-color: var(--colorLineaActual);
}
/*#endregion horizontal*/

/*#region VERTICAL*/

.bar_tracking.vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

    .bar_tracking.vertical .Fase {
        display: grid;
        grid-template-columns: 50% 50%;
        height: 200px;
        width: 200px;
    }
        /*Primer Tramo redondeado*/
        .bar_tracking.vertical .Fase:first-child .linea .before {
            border-radius: 0;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }
        /*Ultimo Tramo redondeado*/
        .bar_tracking.vertical .Fase:last-child .linea .after {
            border-radius: 0;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

.bar_tracking .Fase .nombreFase {
}

.bar_tracking.vertical .Fase .linea {
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: auto;
    align-items: center;
    padding-top: 0px;
    padding-bottom: 0px;
    height: 100%;
    justify-items: center;
}

    .bar_tracking.vertical .Fase .linea .after {
        height: 100%;
        width: 10px;
    }

    .bar_tracking.vertical .Fase .linea .texto {
        color: black;
        border: 1px solid black;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        justify-self: center;
    }

    .bar_tracking.vertical .Fase .linea .before {
        height: 100%;
        width: 10px;
    }

/*#endregion VERTICAL*/

/*#endregion BAR TRACKING*/

/*#region Modal*/
/*Estilos generales de modal (es posible que un modal sobrescriba
estos estilos en algun caso especial )*/
dialog.Modal {
    position: absolute;
    margin: auto;
    box-shadow: 0 2rem 4rem black;
    border: 1px solid gray;
    border-radius: var(--border-radius_2);
    padding: 1rem;
    width: fit-content;
    max-width: 90vw;
    max-height: 90vh;
}

    dialog.Modal::backdrop {
        background-color: rgba(0,0,0,0.6);
    }

.dialog-content > hr {
    width: 100%;
    size: 1;
    color: silver;
}

.Modal_Header {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.4rem;
}

    .Modal_Header > h1 {
        font-size: 1.6rem;
    }

.Modal_Body {
    padding: 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.Modal_Footer {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 0.4rem;
}

/*#endregion Modal*/

/*#region Botones4i*/
.botonRedondo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #e0e0e0c7;
    color: #666;
    font-size: var(--fuenteSize_Button);
}

    .botonRedondo:hover {
        color: black;
        background-color: #e7e7e7;
        border-color: gray;
    }


    .botonRedondo > i {
        color: inherit;
        font-size: inherit;
    }

.boton {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius_1);
    border: 1px solid #e0e0e0c7;
    color: #666;
    font-size: var(--fuenteSize_Button);
    padding: 5px;
}

    .boton:hover {
        color: black;
        background-color: #e7e7e7;
        border-color: gray;
    }


/*#endregion*/

/*#region Fieldset*/

fieldset {
    border: 1px solid #000000;
    padding: 0.5rem;
    border: 0;
    border-top: 1px solid #727171;
    width: calc(100% - 1rem);
    min-width: calc(100% - 1rem);
}

legend {
    width: auto;
    border: 0;
    margin: 0;
    font-size: 12px;
    margin: 0;
    font-weight: normal;
    width: auto;
    height: 1.4rem;
    color: gray;
}

.lbl_legend {
    width: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: black;
    border-radius: var(--border-radius_2);
    font-size:12px;
    font-weight:bold;
}
/*#endregion*/

/*#region TABS*/
.div_Pestañas {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    border-bottom: 1px solid gray;
    gap: 5px;
}

.a_Pestañas {
    color: black;
    border: 1px solid gray;
    border-bottom: 1px solid transparent;
    border-radius: var(--border-radius_1);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 5px;
    background-color: #f9f9f9;
}

    .a_Pestañas.active {
        font-weight: bold;
        margin-bottom: -2px;
        background-color: white;
    }


/*#endregion */

/*#region Textarea */

.divTextarea {
    display: grid;
    grid-template:
        "etiqueta" auto
        "textarea" auto /
        100%;
    justify-items: center;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: calc(100% - 2rem);
    margin-bottom: 0.8rem;
}

.etiqueta {
    grid-area: etiqueta;
    width: fit-content;
    min-width: max-content;
    font-size: 12px;
    margin: 0;
    font-weight: normal;
    width: 100%;
    float: left;
    height: 14px;
    color: gray;
}

.textarea {
    grid-area: textarea;
    width: 100%;
    font-weight: bold;
    color: black;
    padding-left: 5px;
    padding-top: 1px;
    font-size: var(--fuenteSize_Input);
    border: 1px solid rgba(118,118,118,0.3);
    border-radius: 3px;
}


.divInput > .textarea:focus-visible {
    border: 2px solid black;
}

textarea {
    border: 1px solid rgba(118,118,118,0.3);
    border-radius: 3px;
}

    textarea:focus-visible {
        border: 1px solid black;
    }


/*#endregion Textarea  */

/*#region Inputs */
.divInput {
    display: grid;
    grid-template:
        "etiqueta" 30%
        "input" 70% / 100%;
    height: 3.5rem;
    align-items: center;
    margin-left: 1rem;
    margin-right: 1rem;
    max-width: calc(100% - 2rem);
    margin-bottom: 0.8rem;
    width: fit-content;
    min-width: min-content;
}

.etiqueta {
    grid-area: etiqueta;
    width: fit-content;
    min-width: max-content;
    font-size: 12px;
    margin: 0;
    font-weight: normal;
    width: 100%;
    float: left;
    height: 14px;
    color: gray;
}

.input {
    grid-area: input;
    height: 25px;
    width: 100%;
    font-weight: bold;
    color: black;
    padding-left: 3px;
    padding-top: 1px;
    font-size: var(--fuenteSize_Input);
    border: 1px solid rgba(118,118,118,0.3);
    border-radius: 3px;
}


.divInput > .input:focus-visible {
    border: 2px solid black;
}

input {
    border: 1px solid rgba(118,118,118,0.3);
    border-radius: 3px;
}

    input:focus-visible {
        border: 1px solid black;
    }

    input:read-only {
        background-color: #ffffeb;
    }
/*#endregion*/

/*#region Input file */
.div_input_file {
    position: relative;
    width: 150px;
    max-width: 100%;
    height: 40px;
    border: 1px solid #b5b3b3;
    border-radius: var(--border-radius_1);
}

    .div_input_file > span {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 0;
        width: 100%;
        cursor: pointer;
        color: #666666;
        height: 100%;
        text-align: center;
    }

    .div_input_file > .input_file {
        display: inline-block;
        position: absolute;
        z-index: 1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        cursor: pointer;
    }
/*#endregion */

/*#region DIV para filtros de busqueda con descripcion y 2º icono de accion*/
.div_inputBusquedaLUPA {
    display: grid;
    grid-template:
        "Info_Busqueda  Info_Busqueda   Info_Busqueda   Info_Busqueda" 30%
        "codBusq        lupa            descBusq        2nIcono" 70% /
        calc(30% - 2rem) 2rem calc(70% - 2rem) 2rem;
    height: 3.5rem;
    justify-items: center;
    align-items: center;
}
    .div_inputBusquedaLUPA > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_inputBusquedaLUPA > .input_codBusqueda {
        grid-area: codBusq;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 5px;
        padding-top: 1px;
        font-weight: bold;
        font-size: var(--fuenteSize_Input);
    }

    .div_inputBusquedaLUPA > .icon_lupa {
        grid-area: lupa;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }
        .div_inputBusquedaLUPA > .icon_lupa:hover, .icon_lupa:active, .icon_lupa:focus {
            color: black;
            cursor: pointer;
        }

    .div_inputBusquedaLUPA > .input_descBusqueda {
        grid-area: descBusq;
        width: 100%;
        height: 90%;
        border-radius: 3px;
        padding-left: 3px;
    }

    .div_inputBusquedaLUPA > .Icono2 {
        grid-area: 2nIcono;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }

        .div_inputBusquedaLUPA > .Icono2:hover, .Icono2:active, .Icono2:focus {
            color: black;
        }
/*#endregion */

/*#region DIV para filtros de busqueda con descripcion y 2º icono de accion*/
.div_inputBusquedaLUPATituloDesc {
    display: grid;
    grid-template:
        "Info_Busqueda  Info_Busqueda   Info_DescBusqueda   Info_DescBusqueda" 30%
        "codBusq        lupa            descBusq        2nIcono" 70% /
        calc(30% - 2rem) 2rem calc(70% - 2rem) 2rem;
    height: 3.5rem;
    justify-items: center;
    align-items: center;
}


    .div_inputBusquedaLUPATituloDesc > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_inputBusquedaLUPATituloDesc > .lbl_infoDescBusqueda {
        width: 100%;
        grid-area: Info_DescBusqueda;
    }

    .div_inputBusquedaLUPATituloDesc > .input_codBusqueda {
        grid-area: codBusq;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 5px;
        padding-top: 1px;
        font-weight: bold;
        font-size: var(--fuenteSize_Input);
    }

    .div_inputBusquedaLUPATituloDesc > .icon_lupa {
        grid-area: lupa;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }

        .div_inputBusquedaLUPATituloDesc > .icon_lupa:hover, .icon_lupa:active, .icon_lupa:focus {
            color: black;
            cursor: pointer;
        }

    .div_inputBusquedaLUPATituloDesc > .input_descBusqueda {
        grid-area: descBusq;
        width: 100%;
        height: 90%;
        border-radius: 3px;
        padding-left: 3px;
    }

    .div_inputBusquedaLUPATituloDesc > .Icono2 {
        grid-area: 2nIcono;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }

.div_inputBusquedaLUPA > .Icono2:hover, .Icono2:active, .Icono2:focus {
    color: black;
}
/*#endregion */

/*#region DIV para filtros de busqueda SIN descripcion y 2º icono de accion */

.div_inputBusquedaLupaSinDesc {
    display: grid;
    grid-template:
        "Info_Busqueda  Info_Busqueda   Info_Busqueda" 30%
        "codBusq        lupa            2nIcono" 70% /
        calc(100% - 40px) 20px 20px;
    width: auto;
    height: 3.5rem;
    justify-items: center;
    align-items: center;
    width: 300px;
}


    .div_inputBusquedaLupaSinDesc > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_inputBusquedaLupaSinDesc > .input_codBusqueda {
        grid-area: codBusq;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 5px;
        padding-top: 1px;
        font-weight: bold;
        font-size: var(--fuenteSize_Input);
    }

    .div_inputBusquedaLupaSinDesc > .icon_lupa {
        grid-area: lupa;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }

        .div_inputBusquedaLupaSinDesc > .icon_lupa:hover, .icon_lupa:active, .icon_lupa:focus {
            color: black;
            cursor: pointer;
        }

    .div_inputBusquedaLupaSinDesc > .input_descBusqueda {
        grid-area: descBusq;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 3px;
    }

    .div_inputBusquedaLupaSinDesc > .Icono2 {
        grid-area: 2nIcono;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }

        .div_inputBusquedaLupaSinDesc > .Icono2:hover, .Icono2:active, .Icono2:focus {
            color: black;
        }
/*#endregion */

/*#region DIV para filtros de CAMPO (LIKE) con limpieza de campo*/

.div_filtroLIKE {
    display: grid;
    grid-template:
        "Info_Busqueda  Info_Busqueda" 30%
        "codBusq        limpiar" 70% /
        calc(100% - 20px) 20px;
    height: 3.5rem;
    justify-items: center;
    align-items: center;
    max-width: 100%;
}

    .div_filtroLIKE > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_filtroLIKE > .input_codBusqueda {
        width: 100%;
        grid-area: codBusq;
        height: 25px;
        border-radius: 3px;
        padding-left: 3px;
    }

    .div_filtroLIKE > .icon_limpiar {
        grid-area: limpiar;
        color: #666666;
        font-size: var(--fuenteSize_iconoFiltros);
        cursor: pointer;
    }
/*#endregion */

/*#region DIV para filtros de periodo*/
.div_filtroPeriodo {
    display: grid;
    grid-template:
        "Info_Busqueda  Info_Busqueda   Info_Busqueda" 30%
        "periodo1       simbolo         periodo2" 70% /
        calc(50% - 10px) 20px calc(50% - 10px);
    height: 3.5rem;
    justify-items: flex-start;
    align-items: center;
}

    .div_filtroPeriodo > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_filtroPeriodo > .periodo1 {
        grid-area: periodo1;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 5px;
        padding-top: 1px;
        font-weight: bold;
        font-size: var(--fuenteSize_Input);
    }

    .div_filtroPeriodo > .simboloSepradaror {
        grid-area: simbolo;
        width: 100%;
        text-align: center;
        vertical-align: central;
    }

    .div_filtroPeriodo > .periodo2 {
        grid-area: periodo2;
        width: 100%;
        height: 25px;
        border-radius: 3px;
        padding-left: 5px;
        padding-top: 1px;
        font-weight: bold;
        font-size: var(--fuenteSize_Input);
    }

/*#endregion */

/*#region DIV filtro para check */

.div_check {
    display: grid;
    grid-template:
        "Info_Busqueda" 30%
        "check " 70% / 100%;
    height: 3.5rem;
    justify-content: start;
    justify-items: start;
    align-items: center;
}

    .div_check > .lbl_infoBusqueda {
        width: 100%;
        grid-area: Info_Busqueda;
    }

    .div_check > .check {
        grid-area: check;
        height: 25px;
        width: 25px;
        max-width: 100%;
    }
/*#endregion DIV para filtros de periodo*/

/*#region DIV GRID (Tabla) */

.div_GRD {
    overflow: auto;
    margin: 0.5rem 1rem 0.5rem 1rem;
}



.tGrid {
    width: 100%;
    margin-top: 0.5rem;
}

    .tGrid td {
        padding: 5px;
        font-size: var(--fuenteSize_TablaGridTd);
    }

    .tGrid th {
        padding: 5px;
        font-size: var(--fuenteSize_TablaGridTh);
    }


/*#endregion DIV GRID (Tabla) */

/*#region Selector multiple*/

.selectMultiple {
    /*display:grid;*/
    --anchoDesplegable: 300px;
    --anchoIcono: 20px;
    --anchoCheck: 20px;
    position: relative;
    width: var(--anchoDesplegable);
}

    .selectMultiple > .Cabecera {
        display: grid;
        grid-template:
            "Descripcion    Lupa" auto
            "Valores    Valores" auto /
            calc(100% - var(--anchoIcono)) var(--anchoIcono);
        padding: 10px;
        background-color: white;
        border: 1px solid;
        border-radius: var(--border-radius_2);
        width: var(--anchoDesplegable);
        row-gap: 5px;
    }

        .selectMultiple > .Cabecera > .Descripcion {
            grid-area: Descripcion;
            font-size: var(--fuenteSize_SubMenu);
        }

        .selectMultiple > .Cabecera > .IconoDesplegable {
            grid-area: Lupa;
        }

        .selectMultiple > .Cabecera > .Valores {
            display: flex;
            grid-area: Valores;
            max-width: 100%;
            flex-wrap: wrap;
            overflow: auto;
            gap: 3px;
            height: 50px;
            align-items: flex-start;
            justify-content: flex-start;
        }

            .selectMultiple > .Cabecera > .Valores::-webkit-scrollbar {
                width: 5px;
                height: 300px;
            }
            /* Track */
            .selectMultiple > .Cabecera > .Valores::-webkit-scrollbar-track {
                border-radius: 10px;
                margin-top: 5px;
                margin-bottom: 5px;
            }
            /* Handle */
            .selectMultiple > .Cabecera > .Valores::-webkit-scrollbar-thumb {
                background: gray;
                border-radius: 10px;
            }
                /* Handle on hover */
                .selectMultiple > .Cabecera > .Valores::-webkit-scrollbar-thumb:hover {
                    background: #6b6b6b;
                }

            .selectMultiple > .Cabecera > .Valores > .Valor {
                padding: 5px;
                background-color: lightgray;
                border-radius: 10px;
            }

                .selectMultiple > .Cabecera > .Valores > .Valor > .lbl_Valor {
                    font-size: var(--fuenteSize_SubMenu);
                }

    .selectMultiple > ul.Opciones {
        position: absolute;
        display: none;
        height: auto;
        width: auto;
        background-color: white;
        border-radius: 10px;
        flex-direction: column;
        padding-left: 10px;
        overflow: auto;
        border: 1px solid black;
        margin-top: -1px;
        box-shadow: 6px 9px 17px 9px gray;
        padding-right: 18px;
        right: 0;
        max-height: 200px;
    }

        .selectMultiple > ul.Opciones.Abiertas {
            display: flex;
        }

        .selectMultiple > ul.Opciones.Abiertas {
            list-style: none;
        }

            .selectMultiple > ul.Opciones.Abiertas::-webkit-scrollbar {
                width: 5px;
                height: 300px;
            }
            /* Track */
            .selectMultiple > ul.Opciones.Abiertas::-webkit-scrollbar-track {
                border-radius: 10px;
                margin-top: 5px;
                margin-bottom: 5px;
            }
            /* Handle */
            .selectMultiple > ul.Opciones.Abiertas::-webkit-scrollbar-thumb {
                background: gray;
                border-radius: 10px;
            }
                /* Handle on hover */
                .selectMultiple > ul.Opciones.Abiertas::-webkit-scrollbar-thumb:hover {
                    background: #6b6b6b;
                }


    .selectMultiple > .Opciones.Abiertas > li {
        display: grid;
        list-style: none;
        grid-template:
            "check lbl_desc" 100% /
            var(--anchoCheck) calc(100% - var(--anchoCheck));
        padding-bottom: 5px;
        padding-top: 5px;
        gap: 4px;
        border-radius: 5px;
    }

        .selectMultiple > .Opciones.Abiertas > li:hover {
            background: rgba(0,122,255,.15);
        }

        .selectMultiple > .Opciones.Abiertas > li > .chk_Opcion {
            display: none;
            grid-area: check;
            align-self: center;
            text-align: center;
        }

        .selectMultiple > .Opciones.Abiertas > li > .lbl_Opcion {
            grid-area: lbl_desc;
        }

        .selectMultiple > .Opciones.Abiertas > li.Activo {
            color: #007aff;
        }

            .selectMultiple > .Opciones.Abiertas > li.Activo > .chk_Opcion {
                display: block;
                color: inherit;
            }

            .selectMultiple > .Opciones.Abiertas > li.Activo > .lbl_Opcion {
                display: block;
                color: inherit;
            }
/*#endregion Selector multiple*/