
.calculator .clear {
	clear: both;
	display: block;
	overflow: hidden;
	visibility: hidden;
	height: 0px;
	width: 100%;
}

.calculator .break {
  flex-basis: 100%;
  flex-grow: 1;
  height: 0;
  width: 100%;
}
  
.calculator .btn {
    width: 100%;
    max-width: 350px;
    padding: 20px 0;
    display: inline-block;
    font-size: 23px;
    float: initial;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin: 20px 0 0;
    font-weight: normal;
    line-height: 1;
    -webkit-appearance: none;
    animation: pulse-calc-btn 6s infinite;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.calculator .btn i {
 font-style:normal;
}

.calculator form {
	display: none;
}


@keyframes pulse-calc-btn {
	0% { box-shadow: 0 0 0 0 #75cd1e; }
	15% { box-shadow: 0 0 0 25px #75cd1e00; }
	100% { box-shadow: 0 0 0 0 #75cd1e00; }
}

.calculator {
	float: left;
	width: 100%;
	min-height: 250px;
	position: relative;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	transition: all 0.5s;
}

.calculator.visible {
	visibility: visible;
	opacity: 1;
}
 
 .calculator > .content {
	width: 100%;
	max-width: 330px;
	padding: 0 3%;
	box-sizing: border-box;
	flex-grow: 1;
	position: relative;
	z-index: 1;
	}
 
 .calculator .slider-box {
	float: left;
	width: 100%;
	margin: 10px 0 15px;
 }

.calculator .slider-box > label {
 	float: left;
 	display: block;
 	font-size: 15px;
 	padding-top: 21px;
 	color: #333;
}
 
.calculator .value-box {
	float: right;
	border-bottom: 1px solid #999;
	color: #333;
	display: flex;
	align-items: end;
	min-width: 50px;
	text-align: center;
	justify-content: center;
	}

 .calculator .value-box label {
	font-size: 20px;
   padding-bottom:2px;
 }

 .calculator .value-box p {
	float: left;
	width: 10px;
 }
 
 .calculator .value-box .calculator-value {
	float: right;
	font-size: 40px;
	line-height: 1;
	display: block;
	text-align: center;
	border: none;
	padding: 0 4px 0 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow:ellipsis;
	font-weight: bold;
}

.calculator .value-box .calculator-value div {
	display: inline;
	white-space: nowrap;
	padding: 0;
	margin: 0;
}

.calculator .value-box .calculator-value br {
	display:none;
}

 .calculator .value-box .calculator-value.amount {
  max-width: 170px;
}

.calculator .value-box .calculator-value.term {
 max-width: 99px;
}

 .calculator .range-slider {
	float: left;
	width: 100%;
	height: 10px;
	background: #5b5b5b1c;
	font-weight: bold;
	border-radius: 3px;
	margin: 15px 0 0;
	position: relative;
	box-sizing: border-box;
	}
 
 .calculator .range-slider-fill {
	float: left;
	width: 0;
	height: 100%;
	background: #666;
	border-radius: 90px;
	}
 
 .calculator .range-slider .ui-slider-handle {
	width: 36px;
	height: 36px;
	background: #75cd1e;
	border: none;
	margin-top: -5px;
	border-radius: 0;
	outline: none;
	float: left;
	margin-top: -13px;
	margin-left: -13px;
	position: absolute;
	cursor:pointer;
	border-radius: 18px;
 }
 
 .calculator .range-slider .ui-slider-handle:hover {
 	filter: brightness(0.8);
 }

 .calculator .range-slider.amount .ui-slider-handle {
 }
 
 .calculator .range-slider.term .ui-slider-handle {
 }

 .calculator .amount-monthly {
	width: 100%;
	max-width: 250px;
	box-sizing: border-box;
	padding: 20px 0 0;
	position: relative;
	}
 
.calculator .amount-monthly > .bg {
	position: absolute;
	z-index: 0;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 200px;
	height: 200px;
	rotate: 10deg;
	background: #0035ff12;
	border-radius: 150px;
}

 .calculator .amount-monthly .info {
	position:relative;
	float: left;
	width: 100%;
	font-size: 15px;
	color: #333;
	text-align: center;
	line-height: 1.5;
	margin: 0;
	}
 
 .calculator .amount-monthly .info a {
	text-decoration: underline;
 }

.calculator .amount-monthly .payment {
	position:relative;
	float: left;
	width: 100%;
	text-align: center;
	font-weight: bold;
	white-space: nowrap;
	line-height: 1;
	margin-bottom: 10px;
	padding-left: 54px;
	box-sizing: border-box;
}

.calculator .amount-monthly .payment > span {
	display: inline-block;
	position:relative;
	z-index:1;
}

.calculator .amount-monthly .payment > span:nth-child(1) {
	font-size: 55px;
}
 
.calculator .amount-monthly .payment > span:nth-child(2) {
	font-size: 30px;
	margin-top: 10px;
}
 
.calculator .amount-monthly .payment > span.attribute {
	font-size: 50px;
}


 .calculator a[href="#calculation-example"] {
	color: #000;
	text-decoration: underline;
	font-size: 12px;
 }

 @media screen and (min-width: 600px) {
	.calculator {
	}
	.calculator .btn {
		width: unset;
		max-width: unset;
		padding: 20px 50px;
		margin-top: 20px;
	}

	.calculator .amount-monthly .payment > span:nth-child(1) {
		font-size: 65px;
	}
 }
 
 @media screen and (min-width: 900px) {
	

 }
 
 @media screen and (min-width: 1200px) {

 }
 