.fakeScroll {
    overflow: visible !important;
}
.fakeScroll__wrap {
    overflow: hidden;
    height: 100%;
    position: relative;
    z-index: 1;
}
.fakeScroll__content {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: auto;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    scrollbar-width: none;
}
.fakeScroll__content::-webkit-scrollbar {
    display: none;
}
.fakeScroll__track {
    position: absolute;
    right: 8px;
    top: 24px;
    bottom: 24px;
    width: 8px;
    cursor: default;
}
.fakeScroll__bar {
    position: relative;
    background: #E0E0E0;
    width: 50%;
    border-radius: 4px;
    right: -2px;
    top: 0;
    z-index: 0;
    transition: background 0.1s;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}
.fakeScroll__bar:hover {
    background: #E0E0E0;
}
.fakeScroll__bar.fakeScroll--grabbed {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    background: white;
}
body.fakeScroll--grabbed {
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
    -moz-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
