.gridItem img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    background: white;
}

.gridItem {
    cursor: pointer;
    font-size: 14px;
    margin: 10px;
    margin-left: 0px;
    background: white;
    padding: 8px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 5px;
    box-shadow: 1px 3px 9px -6px black;
    width: 155px;
}

.gridList .itemGroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.toggleBtn>div {
    font-size: 20px;
    padding: 10px;
    height: 25px;
    border-radius: 4px;
}

.toggleBtn {
    display: flex;
    height: 45px;
    margin: 15px 0px;
    border: 1px solid #9c9c9c;
    border-radius: 5px;
}

.toggleBtn>div.selected {
    background: linear-gradient(90deg, rgba(128,221,66,1) 0%, rgba(22,200,60,1) 100%);
    color: white;
}

.gridList .hide+.itemGroup {
    display: none
}

.gridList h4 {
    cursor: pointer;
}