*, ::after, ::before {
    box-sizing: border-box;
}

.mobile_page {
    display: flex;
}

.desktop_page {
    display: none;
}


@media (min-width: 991px) {
    .mobile_page {
        display: none;
    }

    .desktop_page {
        display: block;
    }

    *, ::after, ::before {
        box-sizing: content-box;
    }
}

.mobile_product_list_page_product_list {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    align-content: flex-start;
    flex-wrap: wrap;
}

.mobile_product_list_page_product_list li {
    width: 50%;
    padding: 0.5rem;
}

.mobile_product_list_page_product_img {
    width: 100%;
}

.product_item_title {
    color: #006699;
    display: block;
}

.recommended_price {
    text-decoration: line-through;
    font-size: 0.7rem;
}

.online_price {
    color: #BF0000;
    font-weight: bold;
    font-size: 0.9rem;
}

.product_container {
    display: flex;
}

.price_info_container {
    flex-grow: 1;
}

.price_button_container {}

.price_button {
    width: 4.6rem;
    height: 2.3rem;
}

#mobile_put_into_cart_modal .modal-body {
    display: flex;
}

#mobile_put_into_cart_modal .message {
    flex-grow: 1;
    margin-right: 1rem;
}

#mobile_put_into_cart_modal .checkout_immediately {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 100px;
}