/*--------------------------------------------------------------------------------------------*/
.side-bar{
    position: fixed;
    top: 55px;
    left: 0px;
    bottom: 0px;
    width: 100px;
    background-color: white;
    z-index: 200;
    padding-top: 5px;
}
/*--------------------------------------------------------------------------------------------*/
/*Each-Icon*/
.block{
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.block:hover{
    background-color: rgb(230, 228, 228);
    cursor: pointer;
}
/*Icon-Image*/
.block img{
    height: 30px; 
    margin-bottom: 4px;
}
/*Icon-Content*/
.block div{
    font-size: 12px;
}
/*--------------------------------------------------------------------------------------------*/
@media (min-width: 1200px) {
    .side-bar{
        position: fixed;
        top: 55px;
        left: 0px;
        bottom: 0px;
        width: 200px;
        background-color: white;
        z-index: 200;
        padding-top: 5px;
        display: flex;
        flex-direction: column;
        flex-shrink: 0;
    }
    .block{
        height: 50px;
        display: flex;
        justify-content: space-between;
        flex-direction: row;
        flex-shrink: 0;
    }
    .block:hover{
        background-color: rgb(230, 228, 228);
        cursor: pointer;
        
    }
    .block img{
        height: 30px;
        margin-bottom: 0px;
    }
    .block div{
        font-size: 16px;
    }
    .full{
        margin-left: 20px;
        margin-right: 20px;
    }
    .name{
        flex: 1;
    }
}
/*--------------------------------------------------------------------------------------------*/