/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

/* width */
::-webkit-scrollbar {
    width: 6px;
  }
  /* Track */
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    border-radius: 10px;
    -webkit-border-radius: 10px;
    /*background: transparent; */
  }
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #a3a3a3; 
    border-radius: 10px;
    -webkit-border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2); 
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.2); 
  }
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(66, 66, 66); 
  }
  /* Handle on window-inactive */
  ::-webkit-scrollbar-thumb:window-inactive{
    background: #e1e2e1; 
  }
  