﻿.layout-bi {
    width: 100%;
    height: calc(100vh - 58px);
}

/* Container */
.container-bi {
    display: flex;
    gap: 10px;
    width: 100%;
    height: 100%;
}

/* Menu lateral */
#bi-menu-nav {
    height: calc(100vh - 60px);
    background-color: whitesmoke;
    width: 60px;
    position: absolute;
    z-index: 1;
    top: 50px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: var(--fonte);
}

/* Imagem logo empresa DS */
.bi-menu-logo {
    border-bottom: 1px solid black;
}

/* Box onde contem os acesso rapido a outros paineis */
.bi-menu-acesso-paineis {    
    display: flex;
    flex-direction: column;
}

/* Titulo container */
.bi-menu-titulo-container-paineis {
    font-size: 1.2em;
    font-weight: 100;
    color: gray;
    margin-left: 10px;
    opacity: 0;
}

/* Button de acesso para outro painel BI */
.bi-menu-acesso-rapido-painel button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    margin: 0px 10px;
    width: 90%;
    border-radius: 4px;
}

.bi-menu-acesso-rapido-painel button:hover {
    background-color: lightgray;
}

.bi-menu-acesso-rapido-painel button i {
    font-size: 1.8em;
    color: gray;
}

.bi-menu-acesso-rapido-painel button h3 {
    color: gray;
    font-size: 1em;
    font-weight: 100;
    margin-left: 15px;
}

/* Conteudo */
.bi-conteudo {
    width: 100%;
    height: 100%;
}

/* Iframe do painel */
.bi-conteudo iframe {
    height: 100%;
    width: 100%;
    border: none;
}
