/* Webkit (Chrome, Safari) */
::-webkit-scrollbar {
  width: 11px;
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #714566, #40263a);
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.8);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #4e2f47, #7b4d70);
}

/* Firefox */
scrollbar, scrollbar* {
  width: 11px!important;
  border-radius: 3px!important;
}

scrollbar-track {
  background: rgba(0, 0, 0, 0.1)!important;
  border-radius: 3px!important;
}

scrollbar-thumb {
  background: linear-gradient(to bottom, #714566, #40263a)!important;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.8)!important;
  border-radius: 3px!important;
}

scrollbar-thumb:hover {
  background: linear-gradient(to bottom, #4e2f47, #7b4d70)!important;
}

::-webkit-scrollbar-corner { background: rgb(0, 0, 0); }

/* IE */
body {
  scrollbar-face-color: #714566;
  scrollbar-track-color: rgba(0, 0, 0, 0.1);
  scrollbar-shadow-color: rgba(0, 0, 0, 0.8);
  scrollbar-highlight-color: #40263a;
}