.table-scrollable__icon-swipe { display: none; }

.table-bordered { border: 0; }

@media (max-width: 768px) {

    .table-scrollable__container { overflow: hidden; }

    .table-scrollable__container.is-ready {
        padding: 0;
        position: relative;
    }

    .table-scrollable__container.is-ready:before,
    .table-scrollable__container.is-ready:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        width: 60px;
        pointer-events: none;
        z-index: 1;
        opacity: 1;
        transition: opacity 100ms;
    }

	.table-scrollable__container.is-ready:before {
       left: 0px;
       background: linear-gradient(to right,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
   }

   .table-scrollable__container.is-ready:after {
       right: 0px;
       background: linear-gradient(to right,  rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
   }

    .table-scrollable__container.is-ready.is-scrolled-left:before { opacity: 0; }
    .table-scrollable__container.is-ready.is-scrolled-right:after { opacity: 0; }

    .table-scrollable__scroller {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table-scrollable__scroller-padding {
        display: inline-block;
        padding: 0 15px;
    }
}
