.leyes {
    padding: 0px 10px;
}

.leyes .cabecera {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: auto;
    margin: auto;
    flex-wrap: wrap;
}

.leyes .secciones {
    min-height: 500px;
}

.leyes .listas {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border-top: 1px solid #d3d3d3;
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 15px;
}

.leyes .listas .item {
    padding: 10px 0px;
    font-size: 12pt;
    cursor: pointer;
}

.leyes .listas .selected {
    font-weight: 700;
    border-bottom: 2px solid #000;
}

.leyes .cabecera .tabla {
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 230px;
    flex-grow: 1;
}

.tabla .nuevo {
    background-color: gray;
    text-align: center;
    position: sticky;
    top: 0;
}

.leyes .cabecera .tabla table td {
    border: none;
    font-size: 1rem;
}

/**************************************************************************************/
.leyes .drop-docs {
    display: flex;
    flex-direction: row;
    gap: 25px;
    padding-bottom: 15px;
}

.leyes .drop-docs .contenedor {
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.leyes .drop-docs select {
    appearance: none;
    box-shadow: none;
    flex: 1;
    border: 0;
    padding: 0 1em;
    color: #000;
    background-image: none;
    cursor: pointer;
    font-size: 0.9rem;
    outline: none;
    background-color: #ffff;
}


.leyes .drop-docs select::-ms-expand {
    display: none;
}


.leyes .drop-docs .select {
    position: relative;
    display: flex;
    width: 13em;
    height: 2.5em;
    border: 1px solid #000;
    overflow: hidden;
}

.leyes .drop-docs .select::after {
    content: '\25BC';
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.5em 1em 0.5em 1em;
    transition: .25s all ease;
    pointer-events: none;
    padding: 0.5em 1em 0.5em 1em;
    background-color: #ffff;
}

.leyes .drop-docs .select:hover::after,
.leyes .drop-docs .select:focus::after {
    color: #eee;
    background-color: #000;
}

.hidden-table {
    display: none;
}

.show-table {
    display: block;
}

#periodo_container {
    display: none;
}


@media (max-width: 858px) {
    .leyes .drop-docs {
        flex-direction: column;
    }

    .leyes .drop-docs .select {
        margin: auto;
    }

    .leyes .drop-docs .select {
        width: 100%;
    }
}