/**
 *
 *
 *  Impact scrollbar
 *
 */

::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.25);
}

::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.40);
}

html {
    overflow: overlay;
}


/*
 *  Input Select/Dropdown Scrollbar
 */

.multiselect__content-wrapper::-webkit-scrollbar {
    width: 6px;
}

.multiselect__content-wrapper::-webkit-scrollbar-track {
    background: none;
}

.multiselect__content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.25);
    border-radius: 5px;
}

.multiselect__content-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0,0,0,0.40);
    border-radius: 5px;
}

/**
 *
 *
 *  Impact scrollbar Firefox
 *
 */

 @-moz-document url-prefix() {
    html {
        scrollbar-color: #85a095 #9ab79f;
        scrollbar-width: 14px;
     }
 }

