input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}

.flt-table {
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    border: none;
    border-collapse: collapse;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    background-color: white;
}

.flt-table td,
.flt-table th {
    text-align: center;
    padding: 8px;
}

.flt-table td {
    border-right: 1px solid #faf4f4;
    font-size: 11px;
}

.flt-table thead th {
    color: #ffffff;
    background:  #130270;;
}

.flt-table thead th:nth-child(odd) {
    color: #ffffff;
    background: #130270;
}

.flt-table tr:nth-child(even) {
    background: #dbdbdb;
}

/* Responsive */

@media (max-width: 767px) {
    .flt-table {
        display: block;
        width: 100%;
    }
    .table-wrapper:before {
        content: "Scroll horizontally >";
        display: block;
        text-align: right;
        font-size: 11px;
        color: white;
        padding: 0 0 10px;
    }
    .flt-table thead,
    .flt-table tbody,
    .flt-table thead th {
        display: block;
    }
    .flt-table thead th:last-child {
        border-bottom: none;
    }
    .flt-table thead {
        float: left;
    }
    .flt-table tbody {
        width: auto;
        position: relative;
        overflow-x: auto;
    }
    .flt-table td,
    .flt-table th {
        padding: 20px 0.625em 0.625em 0.625em;
        height: 60px;
        vertical-align: middle;
        box-sizing: border-box;
        overflow-x: hidden;
        overflow-y: auto;
        width: 120px;
        font-size: 13px;
        text-overflow: ellipsis;
    }
    .flt-table thead th {
        text-align: left;
        border-bottom: 1px solid #f7f7f9;
    }
   
    .flt-table tbody td {
        display: block;
        text-align: center;
    }
}