.price-table tr td {
    overflow: hidden;
    text-overflow: ellipsis;
}

.price-table tr td:first-child {
    text-align: left;
}

.price-table tr td:nth-child(2) {
    text-align: right;
}

.price-table tr td.price-cell {
    width: 35%;
}

@media (max-width: 600px) {
    .price-table tr {
        display: table-row;
        border-bottom: none;
    }

    .price-table td {
        display: table-cell;
    }
}