::-webkit-scrollbar {
    width: 6px;
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    border-radius: 0px;
    background-color: #fdfdfd;
}

::-webkit-scrollbar-thumb {
    border-radius: 0px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
    background-color: #dfdfdf;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(28, 114, 212);
}

.e1-hover-scrollbar-y {
    overflow: hidden;
    padding-right: 15px;
}

.e1-hover-scrollbar-y:hover {
    overflow-y: auto;
    padding-right: 0px;
}

/* scroll ngang */

.horizontalScrollBar {
    width: 100%;
    overflow-x: auto;
    min-height: 250px;
}

.horizontalScrollBarNoMinHeight {
    overflow-x: auto;
    /*min-height: 250px;*/
}