/*
Force scrollbars on OSX
*/

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
    height: 7px;
}
::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(153, 153, 153,.5);
    box-shadow: 0 0 1px rgba(34, 39, 41,.5);
}