.wpcb-configurator-range-slider {

	.wpcb-input-content {
		position: relative;
		box-sizing: border-box;
		-webkit-appearance: none;
		appearance: none;
		border: 1px solid $template_border;
		background-color: $option_background;
		border-radius: 6px;
		padding: $spacing_input_field $spacing_input_field_side;
		display: flex;
		width: 100%;

		.wpcb-input-suffix {
			padding-right: 0;
		}
	}

	input[type="range"] {
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		background: $template_border;
		width: 100%;
		height: 3px;
		border-radius: 3px;
		outline: 0;
		border: 0;
		margin: 0;
		padding: 0;
		box-shadow: unset;
		cursor: pointer;
	}
	input[type="range"]::-webkit-slider-runnable-track {
		box-sizing: border-box;
		background: $template_border;
		box-shadow: unset;
		border: none;
		height: 3px;
	}
	input[type="range"]::-moz-range-track {
		box-sizing: border-box;
		background: $template_border;
		box-shadow: unset;
		border: none;
		height: 3px;
	}
	input[type="range"]::-ms-track {
		box-sizing: border-box;
		background: $template_border;
		box-shadow: unset;
		border: none;
		height: 3px;
	}

	input[type="range"]:focus {
		outline: 0;
	}

	input[type="range"]::-webkit-slider-thumb {
		content: var(--val);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		border-radius: 6px;
		border: 1px solid $button_border;
		box-shadow: 0 0 4px rgba(0,0,0,0.14);
		margin-top: -10px;
		background-color: $button_background;
		height: 24px;
		width: 24px;
		outline: 0;
	}
	input[type="range"]::-moz-range-thumb {
		content: var(--val);
		-webkit-appearance: none;
		appearance: none;
		border: none;
		border-radius: 6px;
		border: 1px solid $button_border;
		box-shadow: 0 0 4px rgba(0,0,0,0.14);
		background-color: $button_background;
		height: 24px;
		width: 24px;
		outline: 0;
	}
	input[type="range"]::-ms-thumb {
		content: var(--val);
		margin-top: 0;
		border: none;
		border-radius: 6px;
		border: 1px solid $button_border;
		box-shadow: 0 0 4px rgba(0,0,0,0.14);
		background-color: $button_background;
		height: 24px;
		width: 24px;
		outline: 0;
	}
	input[type="range"]::-ms-tooltip {
		display: none
	}

	.wpcb-input-range-value {
		padding-left: $spacing_input_field_side;
	}
}