#calc_place {
	display: block;
	background: #ffffff;
	z-index: 2;
	position: relative;
	width: 100%;
	position: sticky;
	top: 80px;
}
#calculator {
	display: block;
	max-width: 400px;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
	font-size: 12px;
	padding-bottom: 5px;
	min-height: unset;
	margin-bottom: 30px;
	border-radius: 4px;
	box-shadow: 0px 0px 8px 0px rgba(49, 49, 49, 0.48);
	overflow:hidden;
	margin:0;
	margin-bottom: 65px;
	background-color: #fff;
}
#calculator h2 {
	background: #00569c;
	color: #fff;
	margin: 0;
	font-weight:normal;
	padding: 20px 10px;
	font-size: 18px;
	height: auto;
	line-height: 1.3;
}
.c-step {
	position: relative;
	margin: 15px 0 0;
	overflow: hidden;
	padding-left:20px;
	padding-right:20px;
	width: 100%;
}
.c-step.phone-step {
	margin-top: 5px;
}
.c-first-steps {
	display: flex;
	flex-wrap: wrap;
	padding: 5px 15px 15px;
	justify-content: center;
}
.calc-label {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 15px;
	color: #333;
	padding-left: 5px;
	padding-right: 5px;
}
.calc-label__success {
	margin-top: 20px;
	font-weight: normal;
	color: #333;
	text-align: left;
}
#calculator .agreement-label {
	font-size: 9px;
	line-height: 12px;
	vertical-align: middle;
	display: inline-flex;
}
#calculator .agreement-label input[type="checkbox"] {
	line-height: 1;
	vertical-align: text-bottom;
	margin: 0 6px 0 0;
}
.calc-buttons {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -3px -5px;
	justify-content: center;
	overflow: hidden;
}
.calc_btn {
	background-color: #00569c;
	font-size: 14px;
	margin: 0 3px 5px !important;
	font-weight: 400;
}
.calc_btn:not(.calc-active) {
	background-color: transparent !important;
	color: #666 !important;
}
.calc_btn.calc-active {
	color: #ffffff  !important;
}
.calc-buttons.three {
	flex-wrap: nowrap;
	justify-content: space-between;
}
.calc-buttons.three .calc_btn{
	text-align:center;
	width: 32%;
	padding: 4px 0;
	font-size: 11.67px;
}
.wrapper_navigation_calc .calc-nav:nth-child(1) {
	margin-top: 13px;
}
.wrapper_navigation_calc .calc-nav {
	position: relative;
	display: block;
	width: 100%;
	margin: 9px auto;
}
#calc-input-phone {
	font-size: 18px;
	text-align:center;
	border-radius: 19px;
}
.wrapper_navigation_calc .btn.btn-default {
	display: inline-flex;
	cursor: pointer;
	font-size: 14px;
	font-weight: 300;
	border-radius: 8px;
	margin: 1px auto;
	width: 217px;
	height: 32px;
	background: #F4CB0B;
	border: 1px solid #f4cb0b;
	color: #000;
	padding: 0;
}
.wrapper_navigation_calc .btn.btn-default .title_text {
	display: inline-flex;
	margin: auto;
	align-items: center;
	justify-content: center;
}
#calc-next:hover, #calc-next:active {
	background: #fed61c;
	border:1px solid #fed61c;
}
.calc-step {
	color: #666;
	font-size: 18px;
	margin: 10px auto;
}
.calc-input {
	padding: 5px 10px;
	border: 1px solid #00569c;
	margin: 0 auto ;
	width: 220px;
}
#calc-note {
	font-size: 12px;
	margin: 10px auto;
	line-height:1.2;
}
#err-phone {
	color: #d00;
}
#calc-note .success_timer {
	font-size: 14px;
	color: #03ab1d;
	font-weight: bold;
}
.calc-good {
	background: #efe;
	border-color: #03ab1d;
}
#calculator .calc-bad {
	border: solid 2px #d00;
}
.calc_back {
	cursor: pointer;
}
#change_phone {
	cursor: pointer;
	color: #2A0505;
	margin: 15px auto;
	text-decoration: underline;
	font-weight: 500;
}
#change_phone:hover, .calc_back:hover {
	color: #800;
}
.licenseCalculator {
	font-size: 11px;
	color: #058e79;
	text-align: center;
	margin-top: 10px;
}
#calc-installment {
	transition: all 0.6s ease-out;
}
#calc-installment.__loading {
	background-color: #ccc;
	border: 1px solid #ccc;
	cursor: not-allowed;
	opacity: 0.2;
}
@media (max-width: 768px) { /*phones*/
	#calc_place {
		float: none

	}
	#calculator {
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 40px;
	}
}
@media (max-width: 576px) { /*phones*/
	.calc-label {
		font-size: 13px;
	}
	.calc_btn {
		font-size: 13px;
	}
}