.wrapper_form_outer{
    padding: 20px 20px 5px 20px;
    border-radius:15px;
    background-color: #fff;
    box-shadow: 0px 12px 18px -6px rgba(0,0,0,0.3);
}
.wrapper_form_outer form .wrapper_form_inside{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wrapper_form_outer form .wrapper_form_inside select,
.wrapper_form_outer form .wrapper_form_inside input,
.wrapper_form_outer form .wrapper_form_inside .range_container
{
    width: 100%;
    height: 45px;
    border: none;
    margin-bottom: 15px;
}

@media screen and ( max-width:425px ){
  .wrapper_form_outer form .wrapper_form_inside select,
  .wrapper_form_outer form .wrapper_form_inside input[type=text],
  .wrapper_form_outer form .wrapper_form_inside input[type=submit]{
    font-size: 14px;
  }
}

.wrapper_form_outer form .custom_input_container:has(span.et-pb-icon) {
    margin-bottom: 15px;
}


.wrapper_form_outer form .wrapper_form_inside select,
.wrapper_form_outer form .wrapper_form_inside input[type=text]{
    margin-right: 15px;
    background-color: #f6f6f6;
    padding: 8px;
    border-radius: 10px;
    border-right: 10px solid transparent;
}


.wrapper_form_outer form .custom_input_container {
    position: relative;
    background-color: #0e1a1c;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.wrapper_form_outer form .custom_input_container:hover {
    background-color: #407587;
}

.wrapper_form_outer form .custom_input_container .et-pb-icon {
    font-size: 21px;
    color: #fff;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 0;
}

.wrapper_form_outer form .custom_input_container input[type="submit"] {
    width: 17px;
    height: 17px;
    background: none;
    color: #fff0;
    opacity: 1;
    z-index: 100;
    position: relative;
    padding: 14px;
    cursor: pointer;
    box-sizing: initial;
    margin-bottom: 0;
}


/********** Range Input Styles **********/

/* .range-slider {
  margin: 0;
}
.range-slider {
  width: 25%;
  margin-right: 15px;
  position: relative;
}
.range-slider__range {
  -webkit-appearance: none;
  width: 100% !important;
  height: 10px !important;
  border-radius: 5px;
  background: #d7dcdf;
  outline: none;
  padding: 0;
  margin: 0;
}
.range-slider__range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-webkit-slider-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-webkit-slider-thumb {
  background: #1abc9c;
}
.range-slider__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  background: #2c3e50;
  cursor: pointer;
  transition: background 0.15s ease-in-out;
}
.range-slider__range::-moz-range-thumb:hover {
  background: #1abc9c;
}
.range-slider__range:active::-moz-range-thumb {
  background: #1abc9c;
}
.range-slider__range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px #1abc9c;
}
.range-slider__value {
    display: inline-block;
    position: relative;
    width: auto;
    color: #2c3e50;
    text-align: center;
    border-radius: 3px;
    font-size: 16px;
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
}
.range-slider__value:after {
  position: absolute;
  top: 8px;
  left: -7px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 7px solid #2c3e50;
  border-bottom: 7px solid transparent;
/*  content: '';*/
/* }
::-moz-range-track {
  background: #d7dcdf;
  border: 0;
}
input::-moz-focus-inner, input::-moz-focus-outer {
  border: 0;
} */

.wrapper_form_outer form .range_container {
  display: flex;
  flex-direction: column;
  min-width: 245px;
  margin-right: 15px;
}

.wrapper_form_outer form .sliders_control {
  position: relative;
  /* min-height: 50px; */
}

.wrapper_form_outer form .form_control_container{
  display: flex;
}
@media screen and (max-width:375px){
  .wrapper_form_outer form .form_control_container{
    font-size: 11px;
  }
}

.wrapper_form_outer form .form_control_container:first-child{
  margin-right: 20px;
}

.wrapper_form_outer form .form_control {
  position: relative;
  top:20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #000;
}

.wrapper_form_outer form input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
}

.wrapper_form_outer form input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;  
}

.wrapper_form_outer form input[type=range]::-webkit-slider-thumb:hover {
  background: #f7f7f7;
}

.wrapper_form_outer .form_control_container__time{
  font-size: 10px;
}

.wrapper_form_outer form input[type=range]::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
}

.wrapper_form_outer form input[type="number"] {
  color: #000;
  width: 75px;
  height: 30px;
  font-size: 14px;
  border: none;
}

.wrapper_form_outer form input[type=number]::-webkit-inner-spin-button, 
.wrapper_form_outer form input[type=number]::-webkit-outer-spin-button {  
   opacity: 1;
}

.wrapper_form_outer form input[type="range"] {
  -webkit-appearance: none; 
  appearance: none;
  height: 5px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
}

.wrapper_form_outer form #fromSlider {
  height: 0;
  z-index: 1;
}

@media screen and (max-width:980px) {
  .wrapper_form_outer form .wrapper_form_inside{
      flex-wrap: wrap;
  }
  .wrapper_form_outer form .wrapper_form_inside select, 
  .wrapper_form_outer form .wrapper_form_inside input, 
  .wrapper_form_outer form .wrapper_form_inside .range_container {
    margin-right: 0;
  }

  .wrapper_form_outer form .range_container {
    min-width: inherit;
  }

  .wrapper_form_outer form .custom_input_container:has(span.et-pb-icon) {
    width: 100%;
  }

  .wrapper_form_outer form .custom_input_container input[type="submit"] {
    color: #fff;
    display: block;
    width: 100%;
    text-align: left;
  }
  .wrapper_form_outer form .custom_input_container .et-pb-icon {
    right: 12px;
    left: inherit;
  }
}