.mt-1 {
        margin-top: 1rem;
    }
.mt-2 {
        margin-top: 2rem;
    }
.mt-3 {
        margin-top: 3rem;
    }
.mt-4 {
        margin-top: 4rem;
    }
.mt-5 {
        margin-top: 5rem;
    }

.base-table table{
    width: 100%;
}
.base-table table th{
    background-color: #8ce2e0;
    text-align: center;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    line-height: 1.2;
    padding: 1rem 0;
}
/*
.base-table table th:last-child{
    border-right: 0px ;
}
*/
.base-table table td{
    background-color: #fff;
    border-right: 2px solid #8ce2e0;
}
.base-table table tr{
    border-bottom: 2px solid #8ce2e0;
}
.base-table table td:last-child{
    border-right: 0px ;
}
.base-table table tr:last-child{
    border-bottom: 0px ;
}

@media print,
screen and (max-width: 768px) {
    .base-table {
        overflow: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}