@keyframes animate-bgcolor-overlay {
    from {background-color: rgba(0,0,0,0)}
    to {background-color: rgba(0,0,0,0.5)}
}

@media only screen and (max-width: 768px) {
    /*form mobile*/
    .sidebar-overlay{
        position:fixed;
        top:0px;
        bottom:0px;
        left:0px;
        right:0px;
        background-color: rgba(0,0,0,0.5);
        display:none;
        animation-name: animate-bgcolor-overlay;
        animation-duration: 250ms;
        z-index:1000;
    }
    .sidebar{
        background-color: #f4f5f7;
        overflow-x: hidden;
        position: fixed;
        width: 0px;
        top:0;
        bottom:0;
        left:0;
        transition: 0.5s;
        z-index:1001;
    }
    .sidebar-compact{
        
    }

}
@media only screen and (min-width: 768px) {
    /*for desktop*/
    .sidebar-overlay{
        display:none;
    }
    .sidebar{
        background-color: #f4f5f7;
        min-width: 300px;
        position: fixed;
        width: 300px;
        top:0;
        bottom:0;
        left:0;
        z-index:1001;
    }
    .sidebar-compact{
        min-width: 64px !important;
        width: 64px !important;
    }
    
}

.sidebar-container{
    width:300px;
    position: absolute;
    top:0px;
    left:0px;
    bottom:0px;
}
.sidebar-left{
    float:left;
    background-color:#0747a6;
    width: 64px;
    height: 100%;
    color: white;
    position:relative;
}
.sidebar-right{
    margin-left: 65px;
    height: 100%;
    position:relative;
}
.sidebar .align-bottom{
    position: absolute;
    bottom: 20px;
    width:100%;
    
}
.sidebar-left .sidebar-button{
    width:100%;
    height: 64px;
    box-sizing:border-box;
    padding:10px;
}
.sidebar-left .sidebar-button .content{
    width:100%;
    height:100%;
    border-radius: 40px;
    text-align: center;
    line-height: 44px;
    color: white;
    text-decoration: none;
    
}

.sidebar-left .sidebar-button .content:hover{
    background-color: #08367c;
    cursor: pointer;
}

.sidebar-left .sidebar-button .content-fullsize{
    width:100%;
    height:100%;
    border-radius: 40px;
    text-align: center;
    color: white;
    text-decoration: none;
}
.sidebar-left .sidebar-button .content-fullsize:hover{
    background-color: #08367c;
    cursor: pointer;
}

.sidebar-right .sidebar-button{
    width:100%;
    height: 44px;
    box-sizing:border-box;
    padding:2px 15px 2px 15px;
}
.sidebar-right .sidebar-button .content{
    width:100%;
    height:100%;
    border-radius: 6px;
    line-height: 30px;
    padding:5px;
    color: #08367c;
}
.sidebar-right .sidebar-button .content:hover{
    background-color: #eaecf0;
    cursor: pointer;
    
}
.sidebar-right .sidebar-button .selected{
    background-color: #eaecf0 !important;
    color: #0052cc !important;
}

.sidebar-right .sidebar-button a {
    text-decoration:none !important;
}

.sidebar-right .title-box{
    width:100%;
    height: 100px;
    box-sizing:border-box;
    padding:10px;
}
.sidebar-right .title-box .content{
    width:100%;
    height:100%;
    
    line-height: 80px;
    font-weight: bolder;
    color: #42526e;
}

.sidebar .logo-big{
    font-size: 120%;
}

.sidebar .logo-fullsize{
    font-size: 40px;
    padding-top:2px;
}

.sidebar .align-middle{
    vertical-align: middle;
}