html, body {
    height: 100%;
    margin: 0;
}

.main-container {
    margin:0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.toolbar-container {
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0077BE;
    color: #fff;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);

    .btn {
        background-color: #0077BE;
        color: white;
        height: 50px;
        width: 50px;
        padding: 0;
        border: none;
        background-image: url('../img/file-txt.png'); 
        &:active {
            background-color: #00578b;
            border: none;
        }
        &:focus {
            border: none;
            outline: none;
        }
    }

    .left-button-container {

    }

    .right-button-container {

    }
}

.content-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: auto;
    color: #949494;
   
    .card {
        flex: 1;
        display: flex;
        align-items: center;
        min-height: 150px;
        margin: 6px;
        -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
        -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
        
        .card-text {
            padding: 20px;
        }
    }
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #d3d3d3;
    color: #949494
}


/*   
  side menu
*/
.overlay {
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    transition: 0.5s;

}


.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #06c; 
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
    border: solid 1px #0077BE;
    color: #FFF;
}


.elementosMenu{
    color: #FFF;
    font-size: 18px;
    border-bottom: 1px dotted #fff;
    margin: 5px;
    padding: 10px;
    width: 100%;

}

.elementosMenu:hover{
    color: #fff;
    cursor: pointer;
    background-color: #336699; 
}

@media(max-width:414px){
    .elementosMenu{
        color: #FFF;
        font-size: 12px;
        border-bottom: 1px dotted #fff;
        margin: 5px;
        padding: 5px;
        width: 100%;
    }
    
}


