/*
 Theme Name:   Bricks Child Theme
 Theme URI:    https://bricksbuilder.io/
 Description:  Use this child theme to extend Bricks.
 Author:       Bricks
 Author URI:   https://bricksbuilder.io/
 Template:     bricks
 Version:      1.1
 Text Domain:  bricks
*/


html {
    overflow: -moz-scrollbars-vertical; 
    overflow-y: scroll;
}



/* Change the scroll bar width // Scroll bar width */
::-webkit-scrollbar {
width: 10px; 
}

/* Change the background of the scroll bar track // Background color */
::-webkit-scrollbar-track {
background-color: #EFEFF1; 
}

/* Change the background of the scroll bar thumb (the draggable part) /// Thumb color / Corner radius */
::-webkit-scrollbar-thumb {
background-color: #304258; 
border-radius: 1px; 
}

/* Change the color and shape of the scroll bar thumb on hover // Hover color */
::-webkit-scrollbar-thumb:hover {
background-color: #6686B9; 
}

/* Change the shape of the scroll bar thumb when it’s in focus // Focus color */
::-webkit-scrollbar-thumb:focus {
background-color: #4D7D3D; 
}