:host {
    display: block;
    width: 100%; // fill parent
}

.range-slider-container {
    .range-slider {
        &-input {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;

            &::-webkit-slider-thumb {
                -webkit-appearance: none;
                visibility: hidden;
                width: 0;
                height: 0;
            }

            &::-moz-range-thumb,
            &::-ms-thumb {
                visibility: hidden;
                width: 0;
                height: 0;
            }
        }
    }
}
