#calculator {
        
position: relative;
max-width: 800px;  
    font-family: 'TildaSans', Arial, sans-serif;
    font-weight: 400;
	line-height: 25px !important;
}
.calc-slider {
margin-top  : 20px;
margin-bottom: -10px;
}
.number-text,
.profit-text {
font-family: 'TildaSans', Arial, sans-serif;
  position: absolute;
  margin-left: 40px;
  font-size: 16px;
  font-weight: bold;
  top: 0;
}
.profit-text {
  right: 85px;
}
.number-text {
  content: '+';
  left: 40px;
}
.calc-bottom {
 display: flex;
 height: 40px; 
}

.calc-input__wrap {
  position: relative;
  height: 35px; 
  border: 1px solid #c5c5c5;
  display: flex;
  width: 110px;
  border-radius: 4px;
  overflow: hidden;

}
.calc-result__wrap {
  position: relative;
  height: 35px; 
  border: 1px solid #c5c5c5;
  display: flex;
  width: 130px;
  border-radius: 4px;
  overflow: hidden;

  margin-left: auto;
}

.calc-input__wrap span{
  margin-left: auto;
  width: 50px;
  line-height: 50px;
  background-color: #fff;
  border-left: 1px solid #c5c5c5;
  text-align: center;
    
}
.calc-result__wrap span{
  margin-left: auto;
  width: 50px;
  line-height: 50px;
  background-color: #fff;
  border-left: 1px solid #c5c5c5;
  text-align: center;
    
}

.calc-input {
font-family: 'TildaSans', Arial, sans-serif;
  height: 100%;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
  
  font-weight: 600;
  font-size: 16px;
    
      display: flex;
  justify-content: center;
  flex: 1;
 padding-top: 2px;    
    
  border: none;
  max-width: 65px;
}
.calc-result {
  height: 100%;
  line-height: 50px;
  text-align: center;
  background-color: #fff;
font-family: 'TildaSans', Arial, sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  justify-content: center;
  flex: 1;
  margin-left: auto;
  border: none;
  max-width: 85px;
   padding-top: 2px; 
   
}

.calc-input:focus {
  outline: none;
}

.ui-slider {
	position: relative;
	text-align: left;
  border-radius: 4px;
}
.ui-slider .ui-slider-handle {
  content: 'X';
	position: absolute;
	z-index: 2;
	width: 50px;
	height: 49px;
    cursor: grab;
	-ms-touch-action: none;
	touch-action: none;
  margin-left: -25px;
}
.ui-slider .ui-slider-range {
font-family: 'TildaSans', Arial, sans-serif;
	position: absolute;
	z-index: 1;
	font-size: .7em;
	display: block;
	border: 0;
	background-position: 0 0; 
}
.ui-slider-horizontal {
	height: 50px; 
}
.ui-slider-horizontal .ui-slider-range {
	top: 0;
	height: 29px;
}
.ui-slider-horizontal .ui-slider-range-min {
  height: 100%;
  background-image: linear-gradient(to left, rgb(37, 211, 102), #ff4719);
  left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  margin-right: -25px;
}
.ui-slider-horizontal .ui-slider-range-max {
	right: 0;
}
.ui-sortable-handle {
	-ms-touch-action: none;
	touch-action: none;
}
.ui-widget.ui-widget-content {
	border: 1px solid #4c4c4c; 
}
.ui-widget-content {
	border: 1px solid #dddddd;
	background: #383838;
	color: #333333;
}
.ui-state-default,
.ui-widget-content .ui-state-default {
	border: 1px solid #7c7c7c;
	background: #f6f6f6;
	font-weight: bold;
	font-family: 'TildaSans', Arial, sans-serif;
	color: #454545;
  border-radius: 8%;
  text-align: center;
  line-height: 50px;
  font-size: 1.6rem;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus {
font-family: 'TildaSans', Arial, sans-serif;
	border: 1px solid #7c7c7c;
	background: #ededed;
	font-weight: normal;
	color: #2b2b2b;
  outline: none;  
}
.ui-state-active,
.ui-widget-content .ui-state-active {
font-family: 'TildaSans', Arial, sans-serif;
	border: 1px solid #000;
	background: #fff;
	font-weight: normal;
	color: #000;
}