/*--- Scrollbars ---*/
::-webkit-scrollbar {
    width: 0.75em;
    height: 0.8em;
    background-color: rgba(70, 70, 71, 0);
}
/*--- Fond ---*/
::-webkit-scrollbar-track-piece {
    background: transparent none;
    border: solid 0.25em transparent;
    border-right-width: 0.5em;
    margin: 0.25em;
    -webkit-box-shadow: inset 0.063em 0.063em 0 0 #e1e1e1, inset -0.063em -0.063em 0 0 #e1e1e1;
    -moz-box-shadow: inset 0.063em 0.063em 0 0 #e1e1e1, inset -0.063em -0.063em 0 0 #e1e1e1;
}
/*--- Fond pour la barre du bas ---*/
::-webkit-scrollbar-track-piece:horizontal {
    border-right-width: 0.250em;
    border-bottom-width: 0.500em;
}
/*--- Barre ---*/
::-webkit-scrollbar-thumb {
    border: solid 0.1em white;
    border-right-width: 0.250em;
    -moz-border-radius: 0.313em;
    -moz-border-top-right-radius: 0.563em 0.313em;
    -moz-border-bottom-right-radius: 0.563em 0.313em;
    -moz-box-shadow: inset 0 0 0 0.063em #171717, inset 0 0 0 0.375em #171717;
    -webkit-border-radius: 0.313em;
    -webkit-border-top-right-radius: 0.563em 0.313em;
    -webkit-border-bottom-right-radius: 0.563em 0.313em;
    -webkit-box-shadow: inset 0 0 0 0.063em #171717, inset 0 0 0 0.375em #171717;
}
/*--- Barre ---*/
::-webkit-scrollbar-thumb:hover {
    -webkit-box-shadow: inset 0 0 0 0.063em #6c757d, inset 0 0 0 0.375em #6c757d;
}
/*--- Barre du bas ---*/
::-webkit-scrollbar-thumb:horizontal {
    border-right-width: 0;
    border-bottom-width: 0.250em;
    -webkit-border-top-right-radius: 0.313em;
    -webkit-border-bottom-right-radius: 50.313em 0.563em;
    -webkit-border-bottom-left-radius: 0.313em 0.563em;
    -moz-border-top-right-radius: 0.313em;
    -moz-border-bottom-left-radius: 0.313em 0.563em;
    -moz-border-bottom-right-radius: 50.313em 0.563em;
}
/*--- Boutons vertical et horizontaux ---*/
::-webkit-scrollbar-button, ::-webkit-scrollbar-button:horizontal, ::-webkit-scrollbar-corner  {
    height: 0.8em;
    background-color: rgba(70, 70, 71, 0);
}
/*--- Bouton pour descendre ---*/
::-webkit-scrollbar-button:increment {
    background-position: -1.188em 50%;
}
/*--- Bouton pour aller à droite ---*/
::-webkit-scrollbar-button:horizontal:increment {
    background-position: 50% -1.188em;
}