/* Works on IE */
<!--
body,html{
scrollbar-face-color:#FFFFFF;
scrollbar-3dlight-color:#000000;
scrollbar-darkshadow-color:#000000;
scrollbar-track-color:#FF9F71;
scrollbar-arrow-color:#000000;
scrollbar-highlight-color:#000000;
}
-->


/* Works on Firefox */
* {
  scrollbar-width: auto;
  scrollbar-color: #FFFFFF #FF9F71;
}


/* Works on Chrome, Edge, and Safari */

::-webkit-scrollbar{
width: 25px;
height: 30px;
}
::-webkit-scrollbar-thumb{
background: #FFFFFF;
border: 3px solid #000000;
border-radius: 30px;
}
::-webkit-scrollbar-thumb:hover{
background: #FFFFFF;
}
::-webkit-scrollbar-track{
background: #FF9F71;
border: 3px solid #000000;
border-radius: 18px;
box-shadow: inset 3.5px 10px 5px 3px #FFD8C4;
}