@media only screen and (max-width: 480px) {
    ::-webkit-scrollbar {
        display: none;
        background-image: url(https://imgur.com/rwmYdPk);
        background-repeat: no-repeat;
      }
}
/* @media only screen and (min-width: 500px) {
  ::-webkit-scrollbar { 
    display: block;  
    background-image: url(http://i.imgur.com/rwmYdPk.png);
  }
} */

  ::-webkit-scrollbar {
  width: 8px;
  height: 17px;
  }

  ::-webkit-scrollbar-track {
  background:#eee;
  border: thin solid lightgray;
  box-shadow: 0px 0px 3px #dfdfdf inset;
  border-radius:10px;
  }
  ::-webkit-scrollbar-thumb:horizontal {
  background:#23B570;
  border: thin solid #23B570;
  border-radius:10px;
  height: 8px;
  }
  ::-webkit-scrollbar-thumb:vertical {
  background:#A1A7AC;
  border: thin solid #dfdfdf;
  border-radius:10px;
  }
  ::-webkit-scrollbar-thumb:hover {
  background:#23B570;
  }
  ::-webkit-scrollbar-button:horizontal:end:increment {
  background-image: url(https://imgur.com/rwmYdPk);
  background-repeat: no-repeat;
  }
  ::-webkit-scrollbar-button:horizontal:start:decrement {
  background-image: url(https://imgur.com/VAvOauT);
  background-repeat: no-repeat;
  }
  ::-webkit-scrollbar-button:horizontal:end:increment,
  ::-webkit-scrollbar-button:horizontal:start:decrement {
  display: block;
  }