/***
Spectrum Colorpicker v2.0
https://github.com/seballot/spectrum
Author: Brian Grinstead
License: MIT
***/

/* stylelint-disable no-descending-specificity */

/* Don't allow text selection */
.epo.sp-container,
.sp-replacer.epo,
.epo .sp-preview,
.sp-dragger,
.sp-slider,
.sp-alpha,
.sp-clear,
.sp-alpha-handle,
.epo.sp-container.sp-dragging .sp-input,
.epo.sp-container button {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font: inherit;
}

.sp-original-input-container {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.sp-original-input-container input {
	margin: 0 !important;
}

.sp-original-input-container .sp-add-on {
	width: 40px;
	border-top-right-radius: 0 !important;
	border-bottom-right-radius: 0 !important;
}

input.spectrum.with-add-on {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	border-left: 0;
}

.sp-original-input-container .sp-add-on .sp-colorize {
	height: 100%;
	width: 100%;
	border-radius: inherit;
}

.sp-colorize-container {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.epo.sp-container.sp-flat {
	position: relative;
}

/* Fix for * { box-sizing: border-box; } */
.epo.sp-container,
.epo.sp-container * {


	-webkit-box-sizing: content-box;


	box-sizing: content-box;
}

/* http://ansciath.tumblr.com/post/7347495869/css-aspect-ratio */
.epo .sp-top {
	position: relative;
	width: 100%;
	display: inline-block;
	margin-bottom: 10px;
}

.epo .sp-top-inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.epo .sp-color {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 20px !important;
}

.epo .sp-hue {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 12px;
	height: 100%;
	left: initial !important;
	background: -webkit-gradient(linear, left top, left bottom, from(#f00), color-stop(17%, #f00), color-stop(33%, #0f0), color-stop(50%, #0ff), color-stop(67%, #00f), color-stop(83%, #f0f), to(#f00));
	background: linear-gradient(to bottom, #f00 0%, #f00 17%, #0f0 33%, #0ff 50%, #00f 67%, #f0f 83%, #f00 100%);
}

.epo .sp-clear-enabled .sp-hue {
	top: 15%;
	height: 85%;
}

.epo .sp-fill {
	padding-top: 80%;
}

.epo .sp-sat,
.epo .sp-val {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.epo .sp-alpha-enabled .sp-top {
	margin-bottom: 28px !important;
}

.epo .sp-alpha-handle {
	position: absolute;
	top: -3px;
	cursor: pointer;
	height: 16px;
	border-radius: 50%;
	width: 16px;
	margin-right: 5px;
	left: -2px;
	right: 0;
	background: #f9f9f9;
	-webkit-box-shadow: 0 0 2px 0 #3a3a3a;
	box-shadow: 0 0 2px 0 #3a3a3a;
}

.epo .sp-alpha {
	display: none;
	position: absolute;
	bottom: -18px;
	right: 0;
	left: 0;
	height: 10px;
}

.epo.sp-alpha-enabled .sp-alpha {
	display: block;
}

.epo.sp-alpha-enabled .sp-picker-container .sp-top {
	margin-bottom: 26px;
}

.epo .sp-alpha-inner {
	border-radius: 4px;
}

.epo .sp-clear {
	display: none;
}

.epo .sp-clear.sp-clear-display {
	background-position: center;
}

.epo .sp-clear-enabled .sp-clear {
	display: block;
	position: absolute;
	top: 3px;
	right: 0;
	bottom: 0;
	cursor: pointer;
	left: initial;
	height: 12px;
	width: 12px;
}

.epo.sp-container.sp-input-disabled .sp-input-container {
	display: none;
}

.epo.sp-container.sp-buttons-disabled .sp-button-container {
	display: none;
}

.epo.sp-container.sp-palette-buttons-disabled .sp-palette-button-container {
	display: none;
}

.sp-palette-only .sp-picker-container {
	display: none;
}

.sp-palette-disabled .sp-palette-container {
	display: none;
}

.sp-initial-disabled .sp-initial {
	display: none;
}


/* Gradients for hue, saturation and value instead of images.
   Not pretty... but it works
*/
.epo .sp-sat {
	background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(204, 154, 129, 0)));
	background-image: linear-gradient(to right, #fff, rgba(204, 154, 129, 0));

	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1, startColorstr="#FFFFFFFF", endColorstr="#00CC9A81");
}

.epo .sp-val {
	border-radius: 4px;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(204, 154, 129, 0)));
	background-image: linear-gradient(to top, #000, rgba(204, 154, 129, 0));

	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00CC9A81", endColorstr="#FF000000");
}

/* IE filters do not support multiple color stops.
   Generate 6 divs, line them up, and do two color gradients for each.
   Yes, really.
 */
.epo .sp-1 {
	height: 17%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000", endColorstr="#ffff00");
}

.epo .sp-2 {
	height: 16%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffff00", endColorstr="#00ff00");
}

.epo .sp-3 {
	height: 17%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ff00", endColorstr="#00ffff");
}

.epo .sp-4 {
	height: 17%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00ffff", endColorstr="#0000ff");
}

.epo .sp-5 {
	height: 16%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0000ff", endColorstr="#ff00ff");
}

.epo .sp-6 {
	height: 17%;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff00ff", endColorstr="#ff0000");
}

.sp-hidden {
	display: none !important;
}

/* Clearfix hack */
.epo .sp-cf::before,
.epo .sp-cf::after {
	content: "";
	display: table;
}

.epo .sp-cf::after {
	clear: both;
}

.epo .sp-cf {
	*zoom: 1;
}

/* Mobile devices, make hue slider bigger so it is easier to slide */
@media (max-width: 480px) {

	.epo .sp-color {
		right: 40%;
	}

	.epo .sp-hue {
		left: 63%;
	}

	.epo .sp-fill {
		padding-top: 60%;
	}
}

.epo .sp-dragger {
	border-radius: 5px;
	height: 10px;
	width: 10px;
	border: 1px solid #fff;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
	margin-left: 3px;
	margin-top: 3px;
	-webkit-box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
	background: none;
}

.epo .sp-slider {
	position: absolute;
	top: 0;
	cursor: pointer;
	height: 16px;
	border-radius: 50%;
	width: 16px;
	left: -2px;
	background: #f9f9f9;
	-webkit-box-shadow: 0 0 2px 0 #3a3a3a;
	box-shadow: 0 0 2px 0 #3a3a3a;
	margin-top: 8px;
	right: auto;
	border: 0;
	opacity: 1;
}


/*
Theme authors:
Here are the basic themeable display options (colors, fonts, global widths)
*/


.epo.sp-container {
	position: absolute;
	top: 0;
	left: 0;

	/* https://github.com/seballot/spectrum/issues/40 */
	z-index: 9999994;
	overflow: hidden;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	border: 0;
	background-color: #fff;
	padding: 0;
	border-radius: 4px;
	color: #000;
	-webkit-box-shadow: 0 0 0 1px rgba(99, 114, 130, 0.16), 0 8px 16px rgba(27, 39, 51, 0.08);
	box-shadow: 0 0 0 1px rgba(99, 114, 130, 0.16), 0 8px 16px rgba(27, 39, 51, 0.08);
}

.epo.sp-container,
.epo.sp-container button,
.epo.sp-container input,
.sp-color,
.sp-hue,
.sp-clear {
	font-size: 12px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.epo .sp-color,
.epo .sp-hue,
.epo .sp-clear,
.epo .sp-val,
.epo .sp-sat {
	border-radius: 3px;
	border: 0;
}

.epo .sp-input-container {
	margin-top: -5px;
	float: none;
	width: auto;
}

.epo .sp-input-container.sp-cf,
.sp-initial.sp-thumb.sp-cf,
.sp-button-container.sp-cf {
	height: 25px;
}

.epo .sp-picker-container .sp-cf {
	margin-bottom: 10px;
}

.sp-palette-row-initial > span:first-child {
	cursor: pointer;
}

/* Input */
.epo.sp-initial-disabled .sp-input-container {
	width: 100%;
}

.epo .sp-input {
	padding: 0 5px !important;
	margin: 0;
	width: 100%;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
	height: 100% !important;
	background: transparent;
	color: #3a3a3a;
	border-radius: 2px !important;
	border: 1px solid #e0e0e0 !important;
	text-align: center;
	font-family: monospace;
	font-size: inherit !important;
}

.sp-input:focus {
	border: 1px solid rgb(255, 166, 0);
}

.sp-input.sp-validation-error {
	border: 1px solid #f00;
	background: #fdd;
}

.epo .sp-picker-container,
.sp-palette-container {
	position: relative;
	padding: 10px;
}

.epo .sp-picker-container {
	width: 200px;
	padding-bottom: 0;
	border: 0;
	float: none;
	margin: 0;
}

/* Palettes */
.sp-palette-container {
	border-right: solid 1px #ccc;
}

.sp-palette-only .sp-palette-container {
	border: 0;
}

.sp-palette .sp-thumb-el {
	display: block;
	position: relative;
	float: left;
	width: 16px;
	height: 16px;
	margin: 3px;
	border: none;
	border-radius: 3px;
	cursor: pointer;
}

.sp-palette .sp-thumb-el:hover,
.sp-palette .sp-thumb-el.sp-thumb-active {
	border-color: rgb(255, 166, 0);
}

.sp-thumb-el {
	position: relative;
}

/* Initial */
.epo .sp-initial {
	float: left;
	border: 0;
}

.sp-initial span {
	width: 30px;
	height: 25px;
	border: none;
	display: block;
	float: left;
	margin: 0;

}

.sp-initial .spe-thumb-el.sp-thumb-active {
	border-radius: 0 5px 5px 0;
}

.sp-initial .spe-thumb-el {
	border-radius: 5px 0 0 5px;
}

.sp-initial .sp-clear-display {
	background-position: center;
}

/* Buttons */
.sp-button-container {
	float: right;
}

.sp-palette-button-container {
	margin-top: 10px;
}

/* Replacer (the little preview div that shows up instead of the <input>) */
.sp-replacer.epo {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	display: inline-block;
	border-radius: 3px;
	border: 1px solid #aaa;
	color: #666;
	-webkit-transition: border-color 0.3s;
	transition: border-color 0.3s;
	vertical-align: middle;
	width: 3.5rem;
	height: 2rem;
	margin: 0;
	padding: 3px;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.sp-replacer.epo.sp-disabled {
	cursor: default;
	border-color: rgb(192, 192, 192);
	color: rgb(192, 192, 192);
}

.epo .sp-dd {
	position: absolute;
	font-size: 10px;
	right: 0;
	top: 0;
	bottom: 0;
	padding: 3px;
	line-height: calc(2rem - 5px); /* stylelint-disable-line */
	background-color: #fff;
	height: auto;
	float: none;
}

.epo .sp-preview {
	position: relative;
	width: 100%;
	height: 100%;
	float: left;
	z-index: 0;
	border: 0;
	margin: 0;
	padding: 0;
}

.epo .sp-preview-inner {
	-webkit-transition: background-color 0.2s;
	transition: background-color 0.2s;
}

.epo .sp-preview-inner.sp-clear-display {
	display: none;
}

/* Buttons: http://hellohappy.org/css3-buttons/ */
.epo.sp-container button {
	border-radius: 3px;
	border: none;
	background: transparent;
	line-height: 1;
	padding: 0 8px;
	height: 25px;
	text-transform: capitalize;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	color: #606c72;
	font-weight: 700;
}

.epo.sp-container button.sp-choose {
	background-color: #3cab3b;
	color: #fff;
	margin-left: 5px;
}

.epo.sp-container button:hover {
	opacity: 0.8;
}

.epo.sp-container button.sp-palette-toggle {
	width: 100%;
	background-color: #f3f3f3;
	margin: 0;
}


.sp-palette span:hover,
.sp-palette span.sp-thumb-active {
	border-color: #000;
}

.epo .sp-preview,
.sp-alpha,
.sp-thumb-el {
	position: relative;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAIAAADZF8uwAAAAGUlEQVQYV2M4gwH+YwCGIasIUwhT25BVBADtzYNYrHvv4gAAAABJRU5ErkJggg==);
}

.epo .sp-preview-inner,
.sp-alpha-inner,
.sp-thumb-inner {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

.sp-palette .sp-thumb-inner {
	border-radius: 3px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}

.sp-palette .sp-thumb-light.sp-thumb-active .sp-thumb-inner {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIVJREFUeNpiYBhsgJFMffxAXABlN5JruT4Q3wfi/0DsT64h8UD8HmpIPCWG/KemIfOJCUB+Aoacx6EGBZyHBqI+WsDCwuQ9mhxeg2A210Ntfo8klk9sOMijaURm7yc1UP2RNCMbKE9ODK1HM6iegYLkfx8pligC9lCD7KmRof0ZhjQACDAAceovrtpVBRkAAAAASUVORK5CYII=);
}

.sp-palette .sp-thumb-dark.sp-thumb-active .sp-thumb-inner {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAAadEVYdFNvZnR3YXJlAFBhaW50Lk5FVCB2My41LjEwMPRyoQAAAMdJREFUOE+tkgsNwzAMRMugEAahEAahEAZhEAqlEAZhEAohEAYh81X2dIm8fKpEspLGvudPOsUYpxE2BIJCroJmEW9qJ+MKaBFhEMNabSy9oIcIPwrB+afvAUFoK4H0tMaQ3XtlrggDhOVVMuT4E5MMG0FBbCEYzjYT7OxLEvIHQLY2zWwQ3D+9luyOQTfKDiFD3iUIfPk8VqrKjgAiSfGFPecrg6HN6m/iBcwiDAo7WiBeawa+Kwh7tZoSCGLMqwlSAzVDhoK+6vH4G0P5wdkAAAAASUVORK5CYII=);
}

.sp-clear-display {
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAABe0lEQVQokYXSsUtcQRTF4d8Jj+VhHSxkEQuLsEUKK0nhTBFTmLSSUhBCMCAWsmgIwWrBLk0akfwLCaSQKBJmtrIIISwpRFKIhViETScphGMzysMtvOVwvpm5d0bGNCuGWAOPgYdl6S8wSDn9b+bUhDHEKWAdeAFMANg+l/TV9ofcz6cjMIbYBvaBMds7QCqZ58CmpBNgPuV0DvAAIMyFGugWtJr7eTv38xEwkPRPErY7QDeG2LqFkjrAgu0dSd/KDVqSNmxvAZ8lfbS9AHRuYemnLWkv5XRVBrQMbAI/gTXgEzAJtJuwBVS2L2OIle03QA/4Lmkl5XQBXEqqbFcAVYFDYChpFngiqWf7l6TXKaezMt2Zkhk24THwG+jZriX9AFZvUAyxLbRke2D75O5zPAO+ADXwEtizjaRHwDvbTyUtppwOmicCHAJvbXcl9YA1SQDjtseA97YPRz7ATcUQp2y/kjRdevsjaTfldNrMjcDGBjXA3T96L7yvrgFzP69+0Ao/HAAAAABJRU5ErkJggg==);
}
/* stylelint-disable no-descending-specificity */
/* stylelint-disable no-duplicate-selectors */

/*! nouislider - 15.7.1 - 6/14/2023 */

/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noui-target,
.noui-target * {
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-user-select: none;
	-ms-touch-action: none;
	touch-action: none;
	-ms-user-select: none;
	-moz-user-select: none;
	user-select: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.noui-target {
	position: relative;
}

.noui-base,
.noui-connects {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}

/* Wrapper for all connect elements.
  */
.noui-connects {
	overflow: hidden;
	z-index: 0;
}

.noui-connect,
.noui-origin {
	will-change: transform;
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	height: 100%;
	width: 100%;
	-ms-transform-origin: 0 0;
	-webkit-transform-origin: 0 0;
	transform-origin: 0 0;
	-webkit-transform-style: flat;
	transform-style: flat;
}

/* Offset direction
  */
.noui-txt-dir-rtl.noui-horizontal .noui-origin {
	left: 0;
	right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
  * connect elements.
  */
.noui-vertical .noui-origin {
	top: -100%;
	width: 0;
}

.noui-horizontal .noui-origin {
	height: 0;
}

.noui-handle {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	position: absolute;
}

.noui-touch-area {
	height: 100%;
	width: 100%;
}

.noui-state-tap .noui-connect,
.noui-state-tap .noui-origin {
	-webkit-transition: transform 0.3s;
	-webkit-transition: -webkit-transform 0.3s;
	transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	transition: transform 0.3s, -webkit-transform 0.3s;
}

.noui-state-drag * {
	cursor: inherit !important;
}

/* Slider size and handle placement;
  */
.noui-horizontal {
	height: 18px;
}

.noui-horizontal .noui-handle {
	width: 34px;
	height: 28px;
	right: -17px;
	top: -6px;
}

.noui-vertical {
	width: 18px;
}

.noui-vertical .noui-handle {
	width: 28px;
	height: 34px;
	right: -6px;
	bottom: -17px;
}

.noui-txt-dir-rtl.noui-horizontal .noui-handle {
	left: -17px;
	right: auto;
}

/* Styling;
  * Giving the connect element a border radius
  * causes issues with using transform: scale
  */
.noui-target {
	background: #fafafa;
	border-radius: 4px;
	border: 1px solid #d3d3d3;
	-webkit-box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
	box-shadow: inset 0 1px 1px #f0f0f0, 0 3px 6px -5px #bbb;
}

.noui-connects {
	border-radius: 3px;
}

.noui-connect {
	background: #3fb8af;
}

/* Handles and cursors;
  */
.noui-draggable {
	cursor: ew-resize;
}

.noui-vertical .noui-draggable {
	cursor: ns-resize;
}

.noui-handle {
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	cursor: default;
	-webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ebebeb, 0 3px 6px -3px #bbb;
}

.noui-active {
	-webkit-box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
	box-shadow: inset 0 0 1px #fff, inset 0 1px 7px #ddd, 0 3px 6px -3px #bbb;
}

/* Handle stripes;
  */
.noui-handle::before,
.noui-handle::after {
	content: "";
	display: block;
	position: absolute;
	height: 14px;
	width: 1px;
	background: #e8e7e6;
	left: 14px;
	top: 6px;
}

.noui-handle::after {
	left: 17px;
}

.noui-vertical .noui-handle::before,
.noui-vertical .noui-handle::after {
	width: 14px;
	height: 1px;
	left: 6px;
	top: 14px;
}

.noui-vertical .noui-handle::after {
	top: 17px;
}

/* Disabled state;
  */
[disabled] .noui-connect {
	background: #b8b8b8;
}

[disabled].noui-target,
[disabled].noui-handle,
[disabled] .noui-handle {
	cursor: not-allowed;
}

/* Base;
  *
  */
.noui-pips,
.noui-pips * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.noui-pips {
	position: absolute;
	color: #999;
}

/* Values;
  *
  */
.noui-value {
	position: absolute;
	white-space: nowrap;
	text-align: center;
}

.noui-value-sub {
	color: #ccc;
	font-size: 10px;
}

/* Markings;
  *
  */
.noui-marker {
	position: absolute;
	background: #ccc;
}

.noui-marker-sub {
	background: #aaa;
}

.noui-marker-large {
	background: #aaa;
}

/* Horizontal layout;
  *
  */
.noui-pips-horizontal {
	padding: 10px 0;
	height: 80px;
	top: 100%;
	left: 0;
	width: 100%;
}

.noui-value-horizontal {
	-webkit-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
}

.noui-rtl .noui-value-horizontal {
	-webkit-transform: translate(50%, 50%);
	transform: translate(50%, 50%);
}

.noui-marker-horizontal.noui-marker {
	margin-left: -1px;
	width: 2px;
	height: 5px;
}

.noui-marker-horizontal.noui-marker-sub {
	height: 10px;
}

.noui-marker-horizontal.noui-marker-large {
	height: 15px;
}

/* Vertical layout;
  *
  */
.noui-pips-vertical {
	padding: 0 10px;
	height: 100%;
	top: 0;
	left: 100%;
}

.noui-value-vertical {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	padding-left: 25px;
}

.noui-rtl .noui-value-vertical {
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}

.noui-marker-vertical.noui-marker {
	width: 5px;
	height: 2px;
	margin-top: -1px;
}

.noui-marker-vertical.noui-marker-sub {
	width: 10px;
}

.noui-marker-vertical.noui-marker-large {
	width: 15px;
}

.noui-tooltip {
	display: block;
	position: absolute;
	border: 1px solid #d9d9d9;
	border-radius: 3px;
	background: #fff;
	color: #000;
	padding: 5px;
	text-align: center;
	white-space: nowrap;
}

.noui-horizontal .noui-tooltip {
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	left: 50%;
	bottom: 120%;
}

.noui-vertical .noui-tooltip {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
	top: 50%;
	right: 120%;
}

.noui-horizontal .noui-origin > .noui-tooltip {
	-webkit-transform: translate(50%, 0);
	transform: translate(50%, 0);
	left: auto;
	bottom: 10px;
}

.noui-vertical .noui-origin > .noui-tooltip {
	-webkit-transform: translate(0, -18px);
	transform: translate(0, -18px);
	top: auto;
	right: 28px;
}

/* Styling;
 * Giving the connect element a border radius
 * causes issues with using transform: scale
 */
.tm-range-picker.noui-target {
	background: var(--slider-background);
	border-radius: 4px;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tm-range-picker .noui-connects {
	border-radius: 3px;
}

.tm-range-picker .noui-connect {
	background: var(--slider-active-background);
}

/* Style resets */
.tm-range-picker,
.tm-range-picker .noui-handle {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.tm-range-picker .noui-tooltip {
	background: #3fb8af;
	color: #fff;
	border: 2px solid #fff;
	padding: 0.4em;
	text-align: center;
	white-space: nowrap;
	border-radius: 3px;
	font-size: 1em;
}

.tm-range-picker .noui-active .noui-tooltip {
	display: block;
}

/* Hide markers on slider handles */
.tm-range-picker .noui-handle::before,
.tm-range-picker .noui-handle::after {
	display: none;
}

.noui-marker {
	background: var(--marker-color);
	opacity: 0.8;
}

.noui-marker-sub {
	opacity: 0.5;
	background: var(--marker-color);
}

.noui-marker-large {
	opacity: 1;
	background: var(--marker-color);
}

/* Style resets */


/* Styling the touch area */
.tm-range-picker .noui-handle .noui-touch-area::before {
	content: "";
	position: absolute;
	top: calc(-0.5 * var(--size) + 0.5 * 1em);
	left: calc(-0.5 * var(--size) + 0.5 * 1em);
	right: calc(-0.5 * var(--size) + 0.5 * 1em);
	bottom: calc(-0.5 * var(--size) + 0.5 * 1em);
	width: var(--size);
	height: var(--size);
	border-radius: 100%;
	background: var(--handle-background);
	z-index: -1;
	opacity: 0.2;
	will-change: transform;
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.1s ease-out, border-color 0.2s ease-out;
	transition: all 0.1s ease-out, border-color 0.2s ease-out;
	display: block;
	--size: calc(var(--handle-size) * 1.8);
}

/* Show a border when hovering the area the handle responds to */
.tm-range-picker .noui-handle:hover .noui-touch-area::before {
	border: 0;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
}

.tm-range-picker .noui-active.noui-handle:hover .noui-touch-area::before {
	border: 0;
	-webkit-transform: scale(1);
	transform: scale(1);
}

/* Styling the touch area */

/* Values */
.tm-range-picker .noui-value {
	position: absolute;
	white-space: nowrap;
	text-align: center;
	font-size: 0.8em;
	margin-top: 0.8em;
}

.tm-range-picker .noui-value-sub {
	color: inherit;
	font-size: 10px;
	margin-top: 0.6em;
	opacity: 0.5;
}

.tm-range-picker .noui-marker-horizontal.noui-marker {
	margin-left: -1px;
	width: 1px;
}

/* Values */

/* Styling round slider */
.tm-range-picker {
	--handle-size: 14px;
	--slider-height: 3px;
	--handle-radius: calc(var(--handle-size) / 2);
	--handle-background: #3fb8af;
	--slider-active-background: #3fb8af;
	--slider-background: #cdcdcd;
	--marker-color: #aaa;
	height: var(--slider-height);
}

.tm-range-picker .noui-handle {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border: 0;
	background: var(--handle-background);
	cursor: pointer;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none !important;

	height: var(--handle-size);
	width: var(--handle-size);
	top: calc((var(--handle-size) - var(--slider-height)) / -2);
	right: calc(var(--handle-size) / -2);

	/* half the width */
	border-radius: var(--handle-radius);
}

/* Styling round slider */