@import '../default/var';

.#{$prefix} {
    &-scrollbar {
        position: relative;
        overflow: hidden;
        &-thumb {
            background: #d2d2d2;
            border-radius: 4px;
            position: absolute;
            z-index: 9999;
            cursor: pointer;
        }
        &--horizontal,
        &--vertical {
            position: absolute;
            box-sizing: border-box;
        }
        &--horizontal {
            bottom: 0;
            left: 0;
            height: 8px;
            width: 100%;
            &-thumb {
                height: 100%;
                height: 6px;
                bottom: 1px;
            }
        }
        &--vertical {
            top: 0;
            right: 0;
            width: 8px;
            height: 100%;
            padding: 0 1px 10px;
            &-thumb {
                width: 6px;
                right: 1px;
            }
        }
    }
}