@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    font: 400 14px Roboto, sans-serif;
    background: #f0f0f5;
    -webkit-font-smoothing: antialiased;
}

#Index {
    display: flex;
    flex-direction: row;
    position: absolute;
    left: 0;
    right: 0;
}

.mainContent { 
    width: 100%;
    height: 100%;
    display:flex;
    flex-direction: row; 
}

.filterContainer { 
    width: 317px;
}

.processMainContent {
    display: flex;
    width: 75%;
    padding-bottom:15px;
    flex-direction: column;
}

.processContainer { 
    width: 100%; 
    display: flex;
    justify-content: center;
    margin: 5px 5px 5px 12px;
}

#containnerProcessos {
    display: flex;
    flex-direction: column;
    width: 77%;
}
#partialDadosProcesso{
    height:100%;
}
#partialFiltro {
    width: 19%;
    min-width: 30vh;
    height: 100%;
}

.componentesMain {
    display: flex;
    flex-direction: row;
    margin-bottom: 15vh;
}

.Tabela {
    margin: 0 10px 0px 10px;
}


.processosContainer label { 
    margin: 15px;
}

.processosContainer text { 
    font-size: 20px;
    font-weight: 400;
}

.protocoloContainer {
    margin: 5px 3px 0 5px;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 0 6px 0.3px #304b66;

}
.dadosProcessosContainer {
    margin: 5px 3px 0 5px;
    background-color: #F4F4F4;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 0 6px 0.3px #304b66;
}


.TituloPartial {
    font-size: 16px;
    padding-left: 15px;
    padding-top: 15px;
}
.TituloPartial > text{
    padding-left:20px;
}

#idComponentesProtocolo, #dadosProcesso, #idComponentesProcessos {
    display: none;
}
.componentesMain > .componentesProcessos {
    width: 100%;
}
#tabela-processo,
#tabela-protocolos {
    max-height: 65vh;
    display: block;
    overflow-y: scroll;
    white-space: nowrap;
    padding-bottom: 20px;
}



@media(max-width:660px) {
    #Index {
        flex-direction: column;
    }
    #partialFiltro, #containnerProcessos {
        width: 95%;
    }
    #dadosProcesso{
        height:auto;
    }
}