#apps-drawer-button {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    cursor: pointer;
}

#apps-drawer {
    max-height: 600px;
    overflow-y: auto;
    
    border-radius: 25px;
    margin-top: 25px !important;
    background-color: #252525;
    color: white;
    box-shadow: 0px 0px 20px black;
    display: none;
    position: absolute;
    width: 400px;
    right: 10px;
    top: 65px;
    z-index: 100;
}

@media (max-width: 500px) {
    #apps-drawer {
        right: 0px;
        width: 100%;
        top: 50px;
    }
}

.apps-drawer-item {
    height: 100px;
    width: 100px; 
}

.apps-drawer-item img {
    height: 50px;
    width: 50px; 
}

.apps-drawer-button:hover {
    background-color: #252525;
}