@charset "UTF-8";
/*--»»————-————　      ♔♕      —————————-—««-->
<--◄███▓▒░░       ® Micro Box        ░░▒▓███►-->
<--◄███▓▒░░    PHONE 0410 167 857    ░░▒▓███►-->
<--◄███▓▒░░   www.microbox.com.au    ░░▒▓███►-->
<--◄███▓▒░░       © FROM 2018        ░░▒▓███►-->
<--◄███▓▒░░   All Rights Reserved    ░░▒▓███►-->
<--◄███▓▒░░  Powered By Paul Henley  ░░▒▓███►-->
<--»»————-————　      ♔♕      —————————-—««--*/

/* Width of the entire scrollbar */
::-webkit-scrollbar {
  width: 10px; /* horizontal: height */
  height: 12px;
}

/* The track (background) */
::-webkit-scrollbar-track {
  background: #c5c5c5; 
  border-radius: 0px;
}

/* The draggable thumb */
::-webkit-scrollbar-thumb {
  background-color: #4CAF50;
  border-radius: 0px;
  /* border: 3px solid #f0f0f0; */ /* space around thumb */
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #45a049;
}

/* Optional: scrollbar corner (for both horizontal and vertical) */
::-webkit-scrollbar-corner {
  background: #f0f0f0;
}
/* Thumb while being dragged */
::-webkit-scrollbar-thumb:active {
  background-color: #3e8e41;
}


::-webkit-scrollbar-button {
  background-color: #4CAF50; /* button color */
  border: 1px solid #333;    /* optional border */
  height: 12px;               /* button size (vertical scroll) */
  width: 12px;                /* button size (horizontal scroll) */
}

/* Hover effect for buttons */
::-webkit-scrollbar-button:hover {
  background-color: #45a049;
}

/* Single button (top/left or bottom/right) */
::-webkit-scrollbar-button:single-button:vertical:decrement {
  /* top arrow */
}

::-webkit-scrollbar-button:single-button:vertical:increment {
  /* bottom arrow */
}

::-webkit-scrollbar-button:single-button:horizontal:decrement {
  /* left arrow */
}

::-webkit-scrollbar-button:single-button:horizontal:increment {
  /* right arrow */
}