From my developer… just an FYI.
Works fine now.
Or you could just add a media query for smaller screens to adjust the column width to 100% and have it resize correctly for mobile.
/* ——————————————–
iPAD/TABLET PORTRAIT
——————————————– */
@media only screen and (max-width: 991px) {
.columns-5 .pricing-table-column {
width: 100%;
}
}