/*
 *  STYLE 1
 */

.scrollbar-style-1::-webkit-scrollbar-track {
  /*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
  border-radius: 5px;
  background-color: white;
}

.scrollbar-style-1::-webkit-scrollbar {
  border-radius: 5px;
  background-color: white;
  height: 10px;
  width: 10px;
}

.scrollbar-style-1::-webkit-scrollbar-thumb {
  border-radius: 10px;
  width: 1px;
  background-color: #D3D3D3;
}