@media (max-width: 1200px) {
    .sidebar{
        position: fixed;
        bottom: 0;
        left: 0;
        top: 55px;
        background-color: white;
        width: 72px;
        z-index: 200;
        padding-top: 5px;
    }
    .sidebar-link{
        height: 74px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    .sidebar-link:hover{
        background-color: rgb(235, 235, 235);
    }
    .sidebar-link img{
        object-fit: cover;
        height: 30px;
        margin-bottom: 4px;
    }
    .sidebar-link div{
        font-family: Roboto, Arial;
        font-size: 10px;
    }
}

@media (min-width: 1200.1px){
    .sidebar{
        position: fixed;
        bottom: 0;
        left: 0;
        top: 55px;
        background-color: white;
        width: 250px;
        z-index: 200;
        padding-top: 5px;
    }
    .sidebar-link{
        height: 30px;
        display: flex;
        flex-direction: row;
        align-items: center;
        cursor: pointer;
        padding: 20px 25px 10px 25px;
    }
    .sidebar-link:hover{
        background-color: rgb(235, 235, 235);
    }
    .sidebar-link img{
        object-fit: cover;
        height: 25px;
        margin-right: 20px;
    }
    .sidebar-link div{
        font-family: Roboto, Arial;
        font-size: 15px;
        white-space: nowrap;
    }
}