﻿
/* width */
::-webkit-scrollbar {
  width: 10px;
    height: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #173471; 
   border-radius:30px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #66A846; 
  border-radius:30px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}