    table.pricetable {
        width: 100%;
        border-collapse: collapse;
        margin: 10px 0 20px;
    }

    table.pricetable th {
        background-color: #eee;
        font-weight: bold;
        text-align: center;
    }

    table.pricetable td {
        text-align: left;
    }

    table.pricetable th,
    table.pricetable td {
        border: 1px solid #ddd;
        padding: 10px;
    }

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

        table.pricetable,
        table.pricetable thead,
        table.pricetable tbody,
        table.pricetable th,
        table.pricetable td,
        table.pricetable tr {
            display: block;
            width: 100%;
        }

        table.pricetable thead {
            display: none;
        }

        table.pricetable tr {
            margin-bottom: 15px;
            border: 1px solid #ddd;
            padding: 10px;
        }

        table.pricetable td {
            text-align: left;
            padding-left: 50%;
            position: relative;
        }

        table.pricetable td::before {
            content: attr(data-label);
            position: absolute;
            left: 10px;
            top: 10px;
            font-weight: bold;
            white-space: nowrap;
        }
    }