.filter-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    padding-left: 3rem;
    padding-right: 3rem;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
}

.filter-list-row{
    min-height: 56px;
    max-height: 56px;
    position: relative;
    z-index: 1;
}

.filter-list select{
    width: 100%;
    height: 56px;
    padding: 1rem;
    background: transparent;
    border: 0;
    color: white;
    border: 1px solid white;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

.filter-list-row:after{
    content: '\f0ab';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    z-index: -1;
}

.filter-list-row:last-of-type::after{
    display: none;
}

.filter-list select option{
    color: black;
}

.filter-list input{
    width: 100%;
    height: 56px;
    background: transparent;
    border: 1px solid white;
    color: white;
    border-radius: 0;
}

.inventory-container{
    display: grid;
    grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
    grid-row-gap: 2rem;
    grid-column-gap: 1rem;
    transition: all .7s ease;
}

.artists .inventory_row:last-of-type{
    position: initial;
}

.inventoryPager{
    margin-top: 3rem;
    text-align: center;
}

.inventoryPager .r-white-transparent-btn{
    padding: 5px 10px;
}

.inventoryPager .r-white-transparent-btn:disabled{
    color: rgba(256,256,256, .3);
    border-color: rgba(256,256,256, .3) !important;
    border-radius: 0;
}

.inventory_box{
    position: relative;
    transition: all .7s ease;
    max-width: 600px;
}

.inventory_row{
    margin-bottom: 1rem;
}

.inventory_row .r-white-transparent-btn{
    padding: 5px 10px 5px 10px;
}

.inventory_row:last-of-type{
    position: absolute;
    bottom: 0;
    right: 0;
}

.inventory_row:last-of-type a{
    padding: 5px 10px 5px 10px;
    border: 1px solid white;
    font-size: .9em;
}

.inventory_like{
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    z-index: 10;
}

.art-item-btn{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.soldTagOverlay {
    font-size:3em;
    background-color:rgba(0,0,0,0.9);
    color:white;
    text-align:center;
    z-index:5;
    width:100%;
    bottom:0;
    position:absolute;
}

@media screen and (min-width: 1280px){
}

@media screen and (max-width: 360px){
    .inventory-container{
        grid-template-columns: 1fr;
        width: 100%;
    }
}