#header {
    width: 100%;
    height: 50px;
    font-family: "Helvetica", "Open Sans";
    font-size: 1em;
    color: #000000;
    background-color: #00509E;
    text-align:center;
}

#footer {
    width: 100%;
    height: 40px;
    font-family: "Helvetica", "Open Sans";
    font-size: 0.8em;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #00509E;
    padding: 14px 20px;
    text-align: right;
}

#site-content {
    width: 100%;
    height: calc(100vh - 50px - 40px); /* viewport completo menos header, menu y footer*/
    overflow: auto;
    background-color: #FFFFFF;
}

.content-with-filter {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    height: 100%;
}

.content-filter {
    width: 400px;
    background-color: #F7F7F7;
    transition: ease 0.4s;
    position: relative;
}

.filtro-ocultar {
    position: absolute;
    bottom: 0;
    text-align: right;
    width: calc(100% - 40px);
    padding: 1.5rem 1rem;
    border-top: 1px solid lightgray;
    margin: 0 20px;
}

.filtro-titulo,
#tituloFiltro {
    text-align: center;
    border-bottom: 1px solid lightgray;
    margin: 0 20px 15px;
    width: calc(100% - 40px);
    padding: 1.5rem 1rem;
    font-size: 15px;
    color: #3e3e3e;
}

.filtro-campos,
#filtroCampos {
    max-height: calc(100% - 225px);
    overflow: auto;
}

.filtro-label,
.label-filtro {
    color: #0071BC;
    font-weight: bold;
    font-size: 14px;
}

.filtro-campos .row,
.rowFiltro {
    padding-top: 15px;
    padding-bottom: 15px;
}

.filtro-campos.filtro-campos-sm .row {
    padding-top: 0;
    padding-bottom: 0;
}



.content-filter-hidden {
    transition: ease 0.4s;
    width: 0px;
    opacity: 0;
}

.content-filter-hidden div {
    white-space: nowrap;
}

.content-main {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
    padding: 20px;
    padding-top:0px;
}

.content-with-filter .content-main {
    width: 100%;
    background-color: white;
}

.toolbar {
    margin: 1.5rem 0 0;
    text-align: right;
}
