.well-calc-cf:before, .well-calc-cf:after { content: ''; display: table; }
.well-calc-cf:after { clear: both; }

.well-calc {
	position: relative;
	
	box-sizing: border-box;
	width: 100%; max-width: 1000px; min-width: 300px;
	margin: 30px auto;
	padding: 20px 20px !important;
	
	color: #777; background-color: #fff;
	
	border-radius: 4px;
	box-shadow: 2px 2px 8px -2px rgba(0, 0, 0, .3);
	
	overflow: hidden;
	
	font-family: 'Montserrat', sans-serif;
}

.well-calc-img {
	display: block;
    position: absolute;
    top: -210px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: url('calc.jpg') no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.well-calc-hand {
	display: block;
	box-sizing: border-box;
	position: absolute;
	
	right: -90px; bottom: -60px;
	width: 200px; height: 180px;
	
	background: url('hand.png') no-repeat;
    background-position: top left;
	background-size: contain;
	
	opacity: 0.8;
}

.well-calc-col {
	box-sizing: border-box;
	width: 50%;
	float: left;
	padding: 10px 10px;
}

.well-calc-mobile .well-calc-col {
	width: 100%;
	float: none;
	padding-right: 10px;
}

.well-calc-resultcol {
	position: relative;
	padding-left: 20px; padding-right: 75px;
	
	font-family: 'Caveat', cursive;
	font-size: 20px;
	line-height: 1;
}

.well-calc-formcol {
	position: relative;
	padding-right: 30px;
	border-right: 2px solid #eee;
}

.well-calc-mobile .well-calc-formcol {
	border-right: none;
	border-bottom: 2px solid #eee;
}

.well-calc-resultrow {
	display: none;
	box-sizing: border-box;
	position: relative;
	border-bottom: 2px dotted #777;
	margin-bottom: 7px;
}

.well-calc-resultrow div {
	box-sizing: border-box;
	display: inline-block;
	position: absolute;
	background: #fff;
	line-height: 1.2;
}

.well-calc-resultrow div:first-child {
	padding: 2px 2px 2px 0;
}
.well-calc-resultrow div:last-child {
	right: 0;
	padding: 2px 0 2px 2px;
}

.well-calc-result {
	display: none;
	box-sizing: border-box;
	text-align: center;
	font-size: 26px;
	padding-top: 15px;
}

.well-calc-button {
	display: block;
	box-sizing: border-box;
	width: 200px;
	padding: 10px 20px;
	margin: 0 auto;
	margin-top: 15px;
	
	border: 1px solid #ccc;
	background: #10519a;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	
	transition: all .5s ease;
}

.well-calc-button:hover {
	box-shadow: 0 0 6px #000;
	color: #fff;
	text-decoration: none;
}

.well-calc-result-title {
	font-size: 32px;
	text-align: center;
	color: #10519a;
}

.well-calc-frow {
	box-sizing: border-box;
	padding-bottom: 5px;
}

.well-calc-frow.well-calc-sliderfrow {
	padding-bottom: 35px;
}

.well-calc-frow.well-calc-sliderfrow:nth-child(2) {
	padding-bottom: 50px;
}

.well-calc-frow-title {
	box-sizing: border-box;
	font-size: 20px;
	padding-bottom: 10px;
	color: #10519a;
}

.well-calc-fcol {
	box-sizing: border-box;
	width: 50%;
	float: left;
}

.well-calc .noUi-tooltip {
	display: none;
}
.well-calc .noUi-active .noUi-tooltip {
	display: block;
}

.well-calc .noUi-connect {
	background: #10519a;
}

.well-calc .noUi-marker-horizontal.noUi-marker {
	width: 1px;
}

.well-calc .noUi-marker-horizontal.noUi-marker-large {
    height: 10px;
}

.well-calc .noUi-value-horizontal {
	font-size: 12px;
	margin-top: -5px;
}

.well-calc .noUi-pips-horizontal {
	height: 30px;
}

/* checkbox */
.well-calc-checkbox {
	vertical-align: top;
	width: 17px;
	height: 17px;
	margin: 0 3px 0 0;
}
.well-calc-checkbox + label {
	cursor: pointer;
}
.well-calc-checkbox:not(checked) {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 20px;
}
.well-calc-checkbox:not(checked) + label {
	position: relative;
	padding: 0 0 0 56px;
	font-size: 16px;
	color: #10519a;
	line-height: 19px;
}
.well-calc-checkbox:not(checked) + label:before {
	content: '';
	position: absolute;
	top: -2px;
	left: 0;
	width: 50px;
	height: 21px;
	border-radius: 4px;
	background: #FAFAFA;
	box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
	transition: .2s;
}
.well-calc-checkbox:not(checked) + label:after {
	content: '';
	position: absolute;
	top: 0px;
	left: 2px;
	width: 22px;
	height: 17px;
	border-radius: 4px;
	background: #FFF;
	box-shadow: 0 2px 5px rgba(0,0,0,.3);
	transition: .2s;
}
.well-calc-checkbox:checked + label:before {
	background: #10519a;
}
.well-calc-checkbox:checked + label:after {
	left: 26px;
}
.well-calc-checkbox:focus + label:before {
	box-shadow: inset 0 2px 3px rgba(0,0,0,.2);
}
/* end checkbox */

@media all and (max-width: 420px) {
	.well-calc-resultcol { padding: 10px 0; }
}

#well-calc-callback-form {
	display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999999;
}
.well-calc-callback-form-substrate {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}
.well-calc-callback-form-box {
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    width: 280px;
    background: transparent;
    margin-left: -140px;
    color: #fff;
    text-align: center;
}
.well-calc-callback-form-box .fa-spinner { font-size: 40px; color: #10519a; }
.well-calc-callback-form-close {
    display: none;
    box-sizing: border-box;
    width: 32px;
    height: 32px;
    font-size: 32px;
    line-height: 32px;
    color: #10519a;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: 140px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
	opacity: 1;
	transition: all .5s ease;
}
.well-calc-callback-form-close:hover {
	opacity: 0.7;
}

.well-calc-callback-form-send {
    display: block;
    box-sizing: border-box;
    cursor: pointer;
    margin: 0 auto 0 auto;
    background: #10519a;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
    font-size: 20px;
}

.well-calc-callback-form-input {
    display: block;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    background: rgba(255,255,255,0.7);
    color: #777;
    border: 2px solid #fff;
    padding: 10px 15px;
    border-radius: 5px;
	margin-bottom: 10px;
	font-size: 20px;
}