.sidebar {
    position: fixed;
    left: 0;
    bottom: 0;
    top: 55px;
    background-color: white;
    width: 72px;
    z-index: 200;
    padding-top: 5px;
}

.sidebar-link {
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
    transition: background-color 0.15s,opacity 0.15s,box-shadow 0.15s;
}

.sidebar-link:hover {
    background-color: rgb(235, 235, 235);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.sidebar-link:active {
    opacity: 0.6;
    box-shadow: none;
}

.sidebar-link img {
    height: 24px;
    margin-bottom: 4px;
}

.sidebar-link div {
    font-size: 10px; }