

.sub_container_row {
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}





.item_wrap {
    width: calc(100% - 2rem);
    margin-top: 2rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}


.item_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15vw;
    margin: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 0 0.5rem #ccc;
    padding-bottom: 0;

}


.item_title {
    font-size: 1.5rem;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    text-align: center;
    background-color: #fff;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgb(51, 154, 223);
    padding-top: 1rem;
    margin: .2rem;
    padding-bottom: 1rem;


}


.item_thumb {
    width: calc(100% - 2rem);
    aspect-ratio: 1;
    padding: 1rem;

}


.item_price {
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem;
    padding: 0.5rem;
    border-top: 1px solid #ccc;
    text-align: center;
    background-color: #fff;
    margin-top: 1rem;
    padding-bottom: 0;
}

.item_price_tax {
    text-shadow: 1px 1px 3px rgb(51, 154, 223);
    font-size: .75rem;
    padding-top: .5rem;
    font-weight: lighter;
}






@media screen and (max-width: 1200px) {

    .item_card {
        width: 33%;
    }
}

.item_title {
    font-size: 1rem;
}


@media screen and (max-width: 500px) {

    .item_card {
        margin: .5rem;
        width: calc(49% - 1rem);
    }
    
}