/*Mozilla scrollbar*/

body {
  scrollbar-color : rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width : thin;
}

body::-webkit-scrollbar {
  -webkit-appearance : none;
}

body::-webkit-scrollbar:vertical {
  width : 10px;
}

body::-webkit-scrollbar-button:increment, body::-webkit-scrollbar-button {
  display : none;
}

body::-webkit-scrollbar:horizontal {
  height : 10px;
}

body::-webkit-scrollbar-thumb {
  background-color : #797979;
  border-radius    : 20px;
  border           : 2px solid #f1f2f3;
}

body::-webkit-scrollbar-track {
  border-radius : 10px;
}

.fashion-scrollbar {
  scrollbar-color : rgba(0, 0, 0, .5) rgba(0, 0, 0, 0);
  scrollbar-width : thin;
}

/*Google scrollbar*/

.fashion-scrollbar::-webkit-scrollbar {
  -webkit-appearance : none;
}

.fashion-scrollbar::-webkit-scrollbar:vertical {
  width : 10px;
}

.fashion-scrollbar::-webkit-scrollbar-button:increment,
.fashion-scrollbar::-webkit-scrollbar-button {
  display : none;
}

.fashion-scrollbar::-webkit-scrollbar:horizontal {
  height : 10px;
}

.fashion-scrollbar::-webkit-scrollbar-thumb {
  background-color : #797979;
  border-radius    : 20px;
  border           : 2px solid #f1f2f3;
}

.fashion-scrollbar::-webkit-scrollbar-track {
  border-radius : 50%;
}
