.slider-container {
    position: relative;
    width: 100%;
    height: 50px;
    margin-top: 10px
}

.slider-container-with-fields {
    margin-top: 20px !important;
}

input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 100%;
    height: 5px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 5px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 5px;
}

input[type="range"]::-ms-track {
    appearance: none;
    height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    background-color: #1579C6;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 5px lightslategray;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #1579C6;
    pointer-events: auto;
    box-shadow: 0 0 5px lightslategray;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.7em;
    width: 1.7em;
    cursor: pointer;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #1579C6;
    pointer-events: auto;
    box-shadow: 0 0 5px lightslategray;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #1579C6;
    border: 2px solid white;
    box-shadow: 0 0 5px lightslategray;
}

.values {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.range-divider {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.range-divider, .value-input {
    color: #9E9E9E
}

.input-pre-text-container {
    position: relative;
}

.input-pre-text {
    position: absolute;
    z-index: 1;
    font-size: 14px;
    line-height: 16px;
    font-style: normal;
    margin-top: 10px;
    margin-left: 5px;
}

.value-input {
    padding-left: 40px;
    height: 30px;
    width: 45px;
    border-radius: 4px;
    border: 1px solid #D5D5D5;
}

.value-input-large-width {
    width: 55px !important;
}

.slider-tooltip {
	background: #212121;
	border-radius: .4em;
    display: none;
    position: absolute;
    color: #ffffff;
    padding: var(--05, 4px) var(--2, 14px);
    font-size: 12px;
    white-space: nowrap;
    opacity: 1;
    top: -15px !important;
    left: 1px;
}

.slider-tooltip-upper {
    right: 1px;
    left: auto !important;
}

.slider-tooltip:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-top-color: #212121;
	border-bottom: 0;
	margin-left: -6px;
	margin-bottom: -6px;
}