.calc_number_blocks {
  color: #ff3d17;
  display: inline-block;
    width: 24px;
    text-align: center;
}

.calc_title_number {
 
}

.calc_choice {
  flex: 1;
  
}

.calc_price {
  color: #fff;
  background-color: #363636;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  padding: 16px 24px;
  display: flex;
  flex: 0.5;
}

.calc_price_figure {
  

}

.calc_slider {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  position: relative;
}


.checkbox {
  width: 16px;
  height: 16px;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
}

.checkbox.w--redirected-checked {
  background-color: #ff3d17;
  background-image: url("../images/check_icon.svg");
  background-size: auto;
  border-color: #ff3d17;
  background-repeat: no-repeat;
  background-position: 50%;
}

.calc_label {
  display: inline-block;
  cursor: pointer;
  font-weight: normal;
  margin-bottom: 0;
  line-height: 26px;
}

.checkbox.w--redirected-focus {
  box-shadow: none;
}

.calc_checkbox {
   margin-bottom: 0;
   padding-left: 24px;
   font-weight: 300;
   line-height: 1.1em;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}




/* Customize the label (the container) */
.calc_checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: var(--_color---sub-text);
    font-size: var(--_text---ex-small);
    line-height: var(--height-large);
}

/* Hide the browser's default checkbox */
.calc_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1px solid var(--_color---border);
    border-radius: 4px;
    
}


/* When the checkbox is checked, add a blue background */
.calc_checkbox input:checked ~ .checkmark {
  background-color: #ff3d17;
  border-color: #ff3d17;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.calc_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.calc_checkbox .checkmark:after {
   left: 4px;
    top: 2px;
    width: 4px;
    height: 5px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}






input[type=range].styled-slider {
  height: 28px;
  width: 100%;
  -webkit-appearance: none;
   background: transparent;
}

/*progress support*/
input[type=range].styled-slider.slider-progress {
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--value) - var(--min)) / var(--range));
  --sx: calc(0.5 * 28px + var(--ratio) * (100% - 28px));
}

input[type=range].styled-slider:focus {
  outline: none;
}

/*webkit*/
input[type=range].styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 1em;
  background: url(../images/slider.svg) no-repeat;
  border: none;
  cursor: pointer;
  margin-top: calc(max((8px - 1px - 1px) * 0.5,0px) - 28px * 0.5);
}
/*mozilla*/
input[type=range].styled-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 1em;
  cursor: pointer;
  background: url(../images/slider.svg) no-repeat;
  border: none;
}
/*ms*/
input[type=range].styled-slider::-ms-thumb {
  width: 28px;
  height: 28px;
  border-radius: 1em;
  cursor: pointer;
  background: url(../images/slider.svg) no-repeat;
  border: none;
  margin-top: 0;
  box-sizing: border-box;
}

input[type=range].styled-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 0.5em;
  background: #363636;
  box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-webkit-slider-runnable-track {
  background: linear-gradient(#FF3D17,#FF3D17) 0/var(--sx) 100% no-repeat, #363636;
}



input[type=range].styled-slider::-moz-range-track {
  height: max(calc(8px - 1px - 1px),0px);
  border-radius: 0.5em;
  background: #363636;
  box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-moz-range-track {
  background: linear-gradient(#FF3D17,#FF3D17) 0/var(--sx) 100% no-repeat, #363636;
}

/*ms*/
input[type=range].styled-slider::-ms-fill-upper {
  background: transparent;
  border-color: transparent;
}

input[type=range].styled-slider::-ms-fill-lower {
  background: transparent;
  border-color: transparent;
}



input[type=range].styled-slider::-ms-track {
  height: 8px;
  border-radius: 0.5em;
  background: #363636;
  box-shadow: none;
  box-sizing: border-box;
}

input[type=range].styled-slider.slider-progress::-ms-fill-lower {
  height: max(calc(8px - 1px - 1px),0px);
  border-radius: 0.5em 0 0 0.5em;
  margin: -1px 0 -1px -1px;
  background: #FF3D17;
  border-right-width: 0;
}

.price-stat {
    color: var(--_color---sub-text);
    font-size: var(--_text---ex-small);
    line-height: var(--height-large);
    flex: 1;
    display: flex;}





