@media (max-width: 1200px)

{
.sidebar {
    position: fixed;
    background-color: white;
    top: 55px;
    bottom: 0;
    left: 0;
    width: 72px;
    z-index: 200;
    padding-top: 5px;
    padding-left: 1px;
}



.sidebar-link {
    background-color: white;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.sidebar-link:hover {
    background-color: rgb(235, 235, 235);

}

.sidebar-link img {
    height: 25px;
}

.sidebar-link div {
    font-size: 10px;
    margin-top: 6px;    
}

}

@media (min-width: 1200.1px) {
    .sidebar {
        position: fixed;
        background-color: white;
        top: 55px;
        bottom: 0;
        left: 0;
        width: 200px;
        z-index: 200;
        padding-top: 5px;
        padding-left: 1px;
    }

    .sidebar-link:hover {
        background-color: rgb(235, 235, 235);
    }

    .sidebar-link {
        display: flex;
        align-items: center;
        padding: 24px 24px 24px 10px;
    
    }

    .sidebar-link img {
        height: 30px;
        cursor: pointer;
        margin-right: 15px;
    }

    .sidebar-link div {
        font-size: 15px;
        margin-top: 0px;
        cursor: pointer;
    }
}