
.cf7-range input[type=range] {
	-webkit-appearance: none;
	margin: 20px 0;
	width: 100%;
	position: relative;
}
.cf7-range  input[type=range]:focus {
	outline: none;
}
.cf7-range  input[type=range]::-webkit-slider-runnable-track {
	width: 100%;
	height: 15px;
	cursor: pointer;
	animate: 0.2s;
	background: #F36038;
	border-radius: 25px;
}

/* .cf7-range  input[type=range]::-ms-thumb ,
.cf7-range  input[type=range]::-moz-range-thumb  */
.cf7-range  input[type=range]::-webkit-slider-thumb {
	height: 25px;
	width: 25px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
	cursor: pointer;
	-webkit-appearance: none;
	margin-top: -6px;
	z-index: 2;
	position: relative;
}
/* .cf7-range input[type=range]:after {
    content: '';
    width: 50px;
    height: 100%;
    position: absolute;
	background: #000;
	border-radius: 25px;
	z-index: 1;

} */
.cf7-range  input[type=range]:focus::-webkit-slider-runnable-track {
	background: #F36038;
}
.cf7-range  input[type=range][class$=gradient]:focus::-webkit-slider-runnable-track ,
.cf7-range  input[type=range][class$=gradient]::-webkit-slider-runnable-track {
	background: rgb(234,225,228);
	background: linear-gradient(90deg, rgba(234,225,228,1) 0%, rgba(243,96,56,1) 100%);
}
.cf7-range .range-wrap{
	width: 80%;
	position: relative;
}
.cf7-range .range-value{
	position: absolute;
	top: -60%;
}
.cf7-range  .range-value span{
	height: 30px;
	line-height: 30px;
	text-align: center;
	background: #F36038;
	color: #fff;
	font-size: 15px;
	display: block;
	position: absolute;
	left: 50%;
	transform: translate(-50%, 0);
	border-radius: 6px;
	font-weight: bold;
	white-space: nowrap;
	padding: 0 15px;
}
.cf7-range  .range-value span:before{
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-top: 10px solid #F36038;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	margin-top: -1px;
}

input[type=range]::-webkit-slider-runnable-track,
input[type=range]::-moz-range-track,
input[type=range]::-ms-track,
input[type=range]::-ms-fill-lower,
input[type=range]::-ms-fill-upper,
input[type=range]:focus::-ms-fill-lower,
input[type=range]:focus::-ms-fill-upper,
input[type=range]:focus::-webkit-slider-runnable-track {
	background: #F36038;

}


/* image radio   */
.imgradio label input {
    position: absolute;
    opacity: 0;
}
.imgradio label img {
    height: 130px;
	object-fit: cover;
	cursor: pointer;
    border: 4px solid transparent;
	border-radius: 8px;
	display: block;
    margin: auto;
}
.imgradio label input:checked ~ img {
    border: 4px solid #F36038;
}
.imgradio-children>div{
	display: none;
	text-align: center;
}

.imgradio span,
.imgradio-children>div.active{
	display: block;
	text-align: center;

}


/* multi-select */
.multi-select input {
position: absolute;
opacity: 0;
}
.multi-select label {
position: relative;
margin: 10px;

}
.multi-select label span {
	display: inline-block;
	cursor: pointer;
	padding: 6px 18px;
border-radius: 50px;
background-color: rgba(234,225,228,1);
transition-duration: .6s;
}
.multi-select input + span:hover,
.multi-select input:checked + span {
color: #fff;
background-color: #000;
}
.multi-select span.wpcf7-list-item {
	margin: 0;
}