.sb-container {
    position: relative;
    overflow: hidden;
    padding-right: 10px;
}

.sb-content {
    height: 100%;
    width: 120%;
    padding-right: 20%;
    overflow-y: scroll;
    box-sizing: border-box;
}

.sb-scrollbar-container {
    position: absolute;
    right: 5px;
    bottom: 5px;
    top: 5px;
    width: 10px;
    background: #000;
}

.sb-container-noscroll .sb-scrollbar-container {
    right: -20px;
}

.sb-scrollbar {
    position: absolute;
    right: 0;
    height: 30px;
    width: 10px;
    background: #8e8e8e;
}

.sb-scrollbar:hover {
    background: rgba(0, 0, 0, 0.5);
}

.container-example1 {
    height: 250px;
    width: 100%;
    max-width: 100%;
    padding: 5px 10px;
    padding-right: 10px;
    margin: auto;
    color: #FFF;
}