.parent {
    width: 100%;
    -webkit-user-select: none;
    display: block;
    overflow-y: hidden;
    padding: 0;
    position: relative;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
}
  
.scroll {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
}

.child {
    display: inline-block;
    white-space: initial;
    vertical-align: top;
}

.scroll::-webkit-scrollbar {
    display: none;
}



.scroll::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}
.scroll::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
.scroll::-webkit-scrollbar-thumb {
    background: transparent;
    border: 0;
}
.scroll::-webkit-scrollbar-thumb:hover {
    background: transparent;
}
.scroll::-webkit-scrollbar-thumb:active {
    background: transparent;
}
.scroll::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none transparent;
    border-radius: 10px;
}
.scroll::-webkit-scrollbar-track:hover {
    background: transparent;
}
.scroll::-webkit-scrollbar-track:active {
    background: transparent;
}
.scroll::-webkit-scrollbar-corner {
    background: transparent;
}