/* STORE */
.pconly{
    display:none;
}
.base-top{
    grid-template-columns: 1fr 6rem 6rem;
}

.cartbutton {
    background-color: skyblue;
    height: 6rem;
    border-right: .5rem solid black;
    width: 5.5rem;
    border-bottom: .5rem solid black;
}
.cartbuttonimg{
    user-select: none;  
}

.store-left {
    position: fixed;
    left: 0;
    top: 6.5rem;
    width: 7.5rem;
    border-right: .25rem solid black;
    border-top: .5rem solid black;
    height: 100vh;    
    background-color: white;
}
.store-left .item{
    padding: .5rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: .25rem solid black;
}
.store-left .picked{
    background-color: pink;
}

.store {
    margin-left: 8.25rem;
    margin-right: .25rem;
    column-count: 2;
    column-gap: 0;
}
.store .item {
    text-align: center;
    margin: .5rem auto 0;
    width: 83%;
    border: .25rem solid black;
    border-radius: .25rem;
    background-color: white;
    padding: .5rem;
    height: auto;
    display: inline-block;
}

.store .item .image {
    height: 9.5rem;
}
.store .item .image img{
    object-fit: contain;
    height: 100%;
    width: 100%;
}

@media screen and (min-width: 700px) {
    .base-top {
        grid-template-columns: 1fr 0 0;
    }
    .store {
        column-count: 4;
        margin-left: 8.5rem;
    }
    .store-left {
        position: fixed;
        left: 0;
        top: 4.5rem;
    }
    .cartbutton {
        background-color: skyblue;
        width: 7.5rem;
        height: 7.5rem;
        position:fixed;
        bottom: 2rem;
        right: 2rem;
        border: .5rem solid black;
        border-radius: .5rem;
    }
    .cartbutton h1{
        font-size: 5rem; 
        text-align: center;
        user-select: none; 
        border-right: none;
        border-bottom: none;
    }
    .pconly{
        display:block;
        text-align: center;
    }
    .pconly img{
        padding-top: 15%;
        width: 70%;
        height: 70%;
        margin: auto;
    }
}

@media screen and (min-width: 1200px) {
    .store {
        column-count: 5;
    }
    .store .item .image {
        height: 12rem;
    }
    .store .item {
        width: 87%;
    }
}