/*
* Author: Mastering-Web
*/

::-webkit-scrollbar {
  width: 8px;
  height: 7px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(141, 141, 141, 0.3);
}

::-webkit-scrollbar-thumb {
  background-color: rgb(239, 154, 0);
}

::-webkit-scrollbar-track, ::-webkit-scrollbar {
  background-color: rgb(255, 255, 255);
}

::-webkit-scrollbar {
  width: 10px;
  background-color: white;
}

::-webkit-scrollbar-thumb {
  background-image: -webkit-linear-gradient(45deg,
      rgba(255, 255, 255, .2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, .2) 50%,
      rgba(255, 255, 255, .2) 75%,
      transparent 75%,
      transparent)
}