I saw in your CSS you had width: width: 0; which would have caused some issues. Try the code below. That should cover any possible scrollbar not showing. I haven’t tested it on a live site, but try publishing your site and testing.
<style>
.cs-3up-phoneRow::-webkit-scrollbar {
display: none;
width: 0;
height: 0;
background: transparent;
}
.cs-3up-phoneRow {
overflow: -moz-scrollbars-none;
-ms-overflow-style: none; }
</style>