
/* range*/
.detailSet_box{
  margin-bottom:30px;
}
.loca{
  position:relative;
}
.range{
  width:calc(100% - 88px) !important;
  margin:20px 42px;
}
.range .slideValue{
  width:100%;
}
.range .slideValue p{
  color:#222;
  margin-bottom:30px;
  z-index:2;
}
.range .slideValue p input[type="radio"]{
  display:none;
}
.range .slideValue p input[type="radio"]+label{
  margin-left:-40px;
}
.range .field{
  position:relative;
  display:flex;
  align-items: center;
  justify-content: center;
  height:100%;;
}
.range .field .value{
  position:absolute;
  font-size:16px;
  font-weight: 400;
  color:var(--surfcolor);
}
.range .field .value.left{
  left:-40px;
}
.range .field .value.right{
  right:-40px;
}
.range .field input{
  appearance: none;
  height:3px;
  width:100%;
  background:#ddd;
  border-radius: 5px;
  outline: none;
  border:none
}
.range .field input::-webkit-slider-thumb{
  appearance: none;
  height:25px;
  width:25px;
  background:var(--surfcolor);
  border-radius: 50%;
  border:5px solid #f5e9e2;
  cursor: pointer;
  box-sizing: border-box;
}

.double_slider_box{
  width:100%;
  padding:0 40px;
}
.range_slider{
  position:relative;
  width:100%;
  height:3px;
  margin:50px auto 20px;
  background:#ddd;
  max-width:340px;
}
.slider-track{
  height:100%;
  position:absolute;
  background:#fe696a;
}
.range_slider input{
  position:absolute;
  width:100%;
  background:none;
  pointer-events: none;
  top:50%;
  transform: translateY(-50%);
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
  height:25px;
  width:25px;
  border-radius: 50%;
  border:5px solid #f5e9e2;
  background:var(--surfcolor);
  pointer-events: auto;
  appearance: none;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb{
  height:25px;
  width:25px;
  border-radius: 50%;
  border:5px solid #f5e9e2;
  background:var(--surfcolor);
  pointer-events: auto;
  -moz-appearance: none;
  cursor: pointer;
}
.tooltip{
  padding:.25rem .5rem;
  border:0;
  background:#373f50;
  color:#fff;
  font-size:11px;
  line-height: 1.2;
  border-radius: 10%;
  display:block;
  position:absolute;
  text-align: center;
  white-space: nowrap;
}
.min-tooltip{
  left:50%;
  transform: translate(-50%, -100%);
  top:-15px;
}
.max-tooltip{
  top:-15px;
  right:50%;
  z-index:2;
  transform: translate(-50%, -100%);
}
.input-box{
  display:flex;
  margin-bottom:10px;
  align-items: center;
  gap:3px;
  justify-content: center;
}
.input-box input[type="radio"]{
  display: none;;
}
.input-box input[type="radio"]+label{
  display:inline-block;
  background:url(../images/radio.svg) left center no-repeat;
  background-size:15px;
  font-size:14px;
  padding-left:18px;
  height:18px;
}
.input-box input[type="radio"]:checked+label{
  background:url(../images/radio_on.svg) left center no-repeat;
  background-size:15px;
}
.input-box label{
  width:75px;
  font-size:13px;
}
.min-box,
.max-box{
  width:40%;
  max-width:120px;
}
.min-box{
  padding-left:.5rem;
}
.input-wrap{
  position:relative;
  display:flex;
  flex-wrap:wrap;
  align-items: stretch;
  width:100%;;
}
.input-addon{
  display:flex;
  align-items: center;
  height: 33px;;
  padding:.4rem .3rem .4rem .5rem;
  font-size:.9375rem;
  font-weight: 400;
  line-height:1.5;
  color:#4b5465;
  text-align: center;
  white-space: nowrap;
  background:#fff;
  border:1px solid #ddd;
  border-radius:.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;;
  border-right:0;
}
.input-addon.on{
  background:#f1f1f1;
}
.input-field{
  margin-left:-1px;
  height: 33px;;
  padding:.25rem .5rem;
  font-size:0.8125rem;
  border-radius: .25rem;
  position:relative;
  flex:1 1 auto;
  width: 1%;
  min-width:0;
  color:#222;
  border:1px solid #ddd;
  background-clip:padding-box;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  border-left:0;
}
.input-field:focus{
  outline:none;
}
.input-field:disabled{
  background:#f1f1f1;
}
.range_slider input:read-only{
  background-color:transparent !important;
}


@media (width <= 580px){
  .double_slider_box{
    padding:0 10px;
  }
  .input-box label{
    width:85px;
    font-size:13px !important;
    letter-spacing: -1px;;
  }
}