*{
    margin: 0;
    font-family: 'Open Sans', sans-serif;
}


body{
    display: flex;
}

.barra-lateral{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 20vw;
    background-color: #0568a5;
}

.botao-lateral{
    display: flex;
    border: none;
    background: none;
    cursor: pointer;
    align-items: center;
    padding: 10px;
}

.texto-botao{
    color:white;
}

.imagem-botao-lateral{
    height: 20px;
    width: auto;
    margin-right: 10px;
}

.opcao-cliente{
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    margin:3px 0px 3px 50px;
    padding:10px;

}
.opcao-cliente:hover{
    background-color: #023250;
    transition: 0.25s ease;
    
}

.logo-barra-lateral{
    filter: invert(100%);
    height: auto;
    width: 12vw;
    margin: 35px 0px 7px 50px;
}

.linha{
    background-color: black;
    height: 1px;
    width: 97%;
    border:none;
    opacity: 0.2;
}

.topico-itens{
    margin:5px 0px 3px 60px;
    color: white;
}

.conteudo-principal{
    display: flex;
    margin: 8px ;
    flex-direction: column;
}
.opcao-cliente.ativo {
    border-left: 6px solid #023250;
}