#mobile_column_buttons {
    display: none;
}

@media screen and (max-width:562px) {

    #mobile_column_buttons {
        display: block;
    }

    /* Mobile double column view */


    div.mobile_view_double .productCardContainer {
        width: 100%;
        height: fit-content;
    }
    div.mobile_view_double.productlist a {
        width: 47%;
        height: fit-content;
        margin-left: 1%;
        margin-right: 1%;
    }
    div.mobile_view_double .productImageContainer {
        width: 94%;
        height: fit-content;
        margin-left: 3%;
        padding-left: 0px;
        padding-top: 3%
    }
    div.mobile_view_double img.productImage {
        width: 100%;
        height: auto;
    }
    div.mobile_view_double .productInfoContainer {
        margin: 0px 2% 0px 2%;
    }

    div.mobile_view_double. productName {
        font-size: 16px;
    }

    div.mobile_view_double .productPrice {
        font-size: 20px;
        text-align: left;
    }

    /* Mobile single column view */

    .productCardContainer { 
        width: 100%;
        height: fit-content;
    }

    .productlist a {
        width: 80%;
        height: fit-content;
    }

    .productImageContainer {
        width: 96%;
        height: fit-content;
        margin-left: 2%;
        padding-left: 0px;
        padding-top: 2%
    }

    img.productImage {
        width: 100%;
        height: auto;
    }

    .productInfoContainer {
        margin: 0px 2% 0px 2%;
    }


}