.priceTable {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    color: #222;
    font-size: 14px;
    line-height: 1.35;
}

.priceTable th,
.priceTable td {
    padding: 10px 14px;
    border: 2px solid #111;
    text-align: left;
    vertical-align: top;
}

.priceTable thead th {
    padding: 14px;
    border-color: #fff;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.priceTable thead th:first-child {
    border-left-color: #000;
}

.priceTable thead th:last-child {
    border-right-color: #000;
}

.priceTable tbody th {
    width: 38%;
    background-color: transparent;
    font-weight: 400;
}

.priceTable tbody td {
    width: 31%;
}

.priceTable tbody tr:nth-child(even) {
    background-color: #e8e8e8;
}

@media screen and (max-width: 750px) {
    .priceTable {
        font-size: 24px;
    }

    .priceTable th,
    .priceTable td {
        padding: 8px;
        border-width: 1px;
    }

    .priceTable tbody th {
        width: 50%;
    }

    .priceTable tbody td {
        width: 25%;
    }
}