/* 64ac15 */
*,
*:before,
*:after {
	box-sizing: border-box;
	margin : 0;
	padding : 0;
}

body {
	padding: 1em;
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #b9b9b9;
	background-color: #e3e3e3;
}

.jumbotron {
padding: 2rem 2rem;
}
.container {
	max-width: 95vw;
	padding: 2em;
	margin: 0em auto;
	background-color: #fff;
	border-radius: 4.2px;
	box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2);
}
.form-row {
	/*padding: 8px;*/
	/*border: 1px dotted #e7e4e4;*/
	margin: 0px 2px;
	border-radius: 5px;
}
.row {
	zoom: 1;
	padding: 8px;
	/*border: 1px dotted #e7e4e4;*/
	margin: 5px;
	border-radius: 5px;
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.row:before,
.row:after {
	content: "";
	display: table;
}
.row:after {
	clear: both;
}
.col-half {
	padding-right: 10px;
	float: left;
	width: 50%;
}
.col-half:last-of-type {
	padding-right: 0;
}
.col-third {
	padding-right: 10px;
	float: left;
	width: 33.33333333%;
}
.col-third:last-of-type {
	padding-right: 0;
}
@media only screen and (max-width: 540px) {
	.col-half {
		width: 100%;
		padding-right: 0;
	}
}
h4 {
	color: #f0a500;
}
input {
	width: 100%;
	border: 0.5px dotted black;
	border-radius: 4px;
}
input,
input[type="radio"] + label,
input[type="checkbox"] + label:before,
select option,
select {
	width: 100%;
	/*padding: 1em;
	line-height: 1.4;
	background-color: #f9f9f9;
	border: 1px solid #e5e5e5;
	border-radius: 3px;*/
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
input:focus {
	outline: 0;
	border-color: #bd8200;
}
input:focus + .input-icon i {
	color: #f0a500;
}
input:focus + .input-icon:after {
	border-right-color: #f0a500;
}
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	position: relative;
	display: block;
	/*padding-left: 1em;*/
	width: 100%;
	margin-bottom: 3px !important;
}
input:checked + label:after {
	opacity: 1;
}
select {
	height: 3.4em;
	line-height: 2;
}
select:first-of-type {
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
select:last-of-type {
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
}
select:focus,
select:active {
	outline: 0;
}
select option {
	background-color: #f0a500;
	color: #fff;
}
.input-group {
	margin-bottom: 1em;
	zoom: 1;
}
.input-group:before,
.input-group:after {
	content: "";
	display: table;
}
.input-group:after {
	clear: both;
}
.input-group-icon {
	position: relative;
}
.input-group-icon input {
	padding-left: 4.4em;
}
.input-group-icon .input-icon {
	position: absolute;
	top: 0;
	left: 0;
	width: 3.4em;
	height: 3.4em;
	line-height: 3.4em;
	text-align: center;
	pointer-events: none;
}
.input-group-icon .input-icon:after {
	position: absolute;
	top: 0.6em;
	bottom: 0.6em;
	left: 3.4em;
	display: block;
	border-right: 1px solid #e5e5e5;
	content: "";
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
.input-group-icon .input-icon i {
	-webkit-transition: 0.35s ease-in-out;
	-moz-transition: 0.35s ease-in-out;
	-o-transition: 0.35s ease-in-out;
	transition: 0.35s ease-in-out;
	transition: all 0.35s ease-in-out;
}
input[type=text] {
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	box-sizing: content-box;
	border-radius: 4px;
}

input[type="range"] {
	-webkit-appearance: none;
	/*-webkit-appearance: solid;*/
	/*margin-right: 15px;*/
	margin: 1px;
	width: 200px;
	/*height: 7px;*/
	height: auto;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 5px;
	/*background-image: linear-gradient(#ff4500, #ff4500);*/
	background-image: linear-gradient(white, silver);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.form-control-range {
	display: inline-block;
	margin: 10px;
}
/*
	input[type="range"]::-webkit-slider-thumb, input[type="range"]::-webkit-media-slider-thumb {
	-webkit-appearance: none;
	position: relative;
	top: -7px;
	height: 25px;
	width: 60px;
	border-radius: 16px;
	background: url('/html/welcome/pulsante_caratteri_noshadow.svg');
	cursor: ew-resize;
	box-shadow: 0 0 2px 0 #555;
	transition: background .3s ease-in-out;
}
*/
input[type="range"]::-webkit-slider-thumb, input[type="range"]::-webkit-media-slider-thumb {
	-webkit-appearance: none;
	position: relative;
	top: -7px;
	/*-webkit-appearance: solid;*/
	height: 21px;
	width: 21px;
	border-radius: 20px;
	cursor: ew-resize;
	box-shadow: 0 0 2px 0 #555;
	transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-runnable-track {
	-webkit-appearance: none;
	box-shadow: none;
	border: none;
	background: transparent;
	height: 8px !important;
}

small{
	position: relative;
	left: -36px;
	width: 100%;
	font-size: 0.6em;
}

input[type="range"]::-webkit-slider-container, input[type="range"]::slider-container {
	-webkit-appearance: none;
	appearance: none;
	width: 200px;
	height: 7px;
	border: 0;
	top: 10px;
	cursor: pointer;
}

.box-minmax{
	margin-top: 5px;
	/*width: 608px;*/
	display: flex;
	justify-content: space-between;
	font-size: 10px;
	/*color: #FFFFFF;*/
	span:first-child{
		margin-left: 10px;
	}
}

.range-slider {
		
}
.rs-range {
	margin-top: 29px;
	width: 600px;
	-webkit-appearance: none;
	&:focus {
		outline: none;
	}
	&::-webkit-slider-runnable-track {
		width: 100%;
		height: 1px;
		cursor: pointer;
		box-shadow: none;
		/*background: #ffffff;*/
		border-radius: 0px;
		border: 0px solid #010101;
	}
	&::-moz-range-track {
		width: 100%;
		height: 1px;
		cursor: pointer;
		box-shadow: none;
		/*background: #ffffff;*/
		border-radius: 0px;
		border: 0px solid #010101;
	}
	&::-webkit-slider-thumb {
		box-shadow: none;
		border: 0px solid /*#ffffff*/;
		box-shadow: 0px 10px 10px rgba(0,0,0,0.25);
		height: 42px;
		width: 22px;
		border-radius: 22px;
		background: rgba(255,255,255,1);
		cursor: pointer;
		-webkit-appearance: none;
	}
	&::-moz-range-thumb{
		box-shadow: none;
		border: 0px solid /*#ffffff*/;
		box-shadow: 0px 10px 10px rgba(0,0,0,0.25);
		height: 42px;
		width: 22px;
		border-radius: 22px;
		background: rgba(255,255,255,1);
		cursor: pointer;
		-webkit-appearance: none;
		margin-top: -20px;
	}
	&::-moz-focus-outer {
		border: 0;
	}
}
.rs-label {
	color: white;
	position: relative;
	transform-origin: center center;
	display: block;
	width: 24px;
	height: 24px;
	background: rgb( 3 112 250 / 80% );
	border-radius: 50%;
	text-align: center;
	border: 2px solid /*#fff*/;
	left: attr(value);
}
output{
	/*line-height: 30px !important;*/
	text-align: center;
	padding-top: 2px;
	/*margin-top: 20px;
	margin-left: -38px;*/
	/*color: #fff;*/
	/*font-style: bold;*/
	font-weight: 600;
	/*line-height: normal;*/
	font-size: 12px;
}