@media only screen and (min-width: 768px){
    .table__body{
        overflow-x: auto;
        padding-bottom: 20px;
        width:6100px;
    }
    .table{
        position: -webkit-sticky;
        position: sticky;
        left: 0
    }
    .table::-webkit-scrollbar {
        height: 9px
    }
    .table::-webkit-scrollbar-track {
        border-radius: 9px;
        background-color: #DFDFDF
    }
    .table::-webkit-scrollbar-thumb {
        border-radius: 9px;
        background-color: #005DBD
    }
}