.modal {
    position: absolute;
    background-color: white;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-radius: 15px;
    visibility: hidden;
}
.small-modal {
    position: absolute;
    background-color: white;
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    border-radius: 15px;
    visibility: hidden;
}
#shadow {
    position: absolute;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000030;
}

#shopModal {
    position: absolute;
    top: 3%;
    left: 3%;
    width: 74%;
    height: 94%;
    background-color: white;
    border-radius: 4%;
    padding: 0 10%;
}
#shopping-items-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-auto-rows: minmax(100px, auto); */
}
.shopping-item {
    border: 1px solid #e2e2e2;
    padding: 12px;
    border-radius: 14px;
    margin: 3px;
    box-shadow: 2px 1px 7px #bbb;
}