﻿@media(max-width: 480px) {
    .table-lg {
        display: none;
    }

    .table-phone table tbody tr td {
        font-size: 12px;
    }
}

@media(min-width: 480px) and (max-width: 1100px) {
    .table-lg {
        display: none;
    }

    .table-phone table tbody tr td {
        font-size: 12px;
    }

}

@media(min-width: 480px) and (max-width: 800px) {
    .table-lg {
        display: none;
    }

    .table-phone table tbody tr td{
        font-size: 12px;
    }

}

@media(min-width: 1100px) {

    .table-phone {
        display: none;
    }
}
