.form_calculator {
	padding: 30px 20px;
	border-radius: 0px 30px 0px 30px;
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
	margin-bottom: 50px
}

@media screen and (min-width: 850px) {
	.form_calculator {
		padding: 60px 40px;
		border: 4px solid #66952e
	}
}

.form_calculator .title_form {
	font-size: 25px;
	font-weight: 800
}

.form_calculator .tabs_cap_section {
	width: 100%;
	overflow: auto
}

.form_calculator .tabs_cap_section::-webkit-scrollbar {
	opacity: 0;
	height: 0
}

.form_calculator .tabs_caption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 30px;
	overflow: auto;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content
}

.form_calculator .tabs_caption .tabs {
	cursor: pointer;
	padding-bottom: 10px;
	border-bottom: 1px solid #e3e3e3;
	color: #999
}

.form_calculator .tabs_caption .tabs+.tabs {
	margin-left: 20px
}

.form_calculator .tabs_caption .tabs.active_tabs {
	border-bottom: 1px solid #66952e;
	color: #222
}

.form_calculator .tabs_caption .tabs.disabled {
	pointer-events: none;
	opacity: 0.1;
	display: none
}

@media screen and (min-width: 850px) {
	.form_calculator .tabs_caption .tabs.disabled {
		display: block
	}
}

.tabs_content {
	margin-top: 40px
}

.tabs_content .title_sec {
	font-size: 20px
}

.tabs_content .grid_sec {
	margin-top: 20px;
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 20px
}

@media screen and (min-width: 850px) {
	.tabs_content .grid_sec {
		grid-template-columns: repeat(2, 1fr)
	}
}

.tabs_content .small_title {
	font-size: 13px;
	color: #999
}

.tabs_content .small_titles {
	font-size: 13px;
	margin-top:10px;
	color: #66952e;
}

.tabs_content .small_title sup {
	font-size: 9px;
	position: relative;
	top: -5px
}

.tabs_content .inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 10px;
	margin-bottom: 20px
}

.tabs_content .inputs .in_btn {
	width: 50px;
	height: 50px;
	border: 1px solid #e3e3e3;
	text-align: center;
	position: relative;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	cursor: pointer
}

.tabs_content .inputs .in_btn:before {
	content: "";
	width: 15px;
	background: #333;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	position: absolute;
	top: 50%;
	left: 50%;
	height: 2px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.tabs_content .inputs .in_btn.plus:after {
	content: "";
	width: 2px;
	background: #333;
	position: absolute;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	top: 50%;
	left: 50%;
	height: 15px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%)
}

.tabs_content .inputs .in_btn:hover {
	background: #67952e75
}

.tabs_content .inputs .in_btn:hover:before {
	background: #fff
}

.tabs_content .inputs .in_btn:hover:after {
	background: #fff
}

.tabs_content .inputs [type="number"] {
	height: 50px;
	border: 1px solid #e3e3e3;
	width: 100px;
	text-align: center;
	border-left: none;
	border-right: none
}

.tabs_content .title_colums {
	margin-bottom: 20px;
	font-weight: 600
}

.checkbox_cell+.checkbox_cell {
	margin-top: 15px
}

.checkbox_cell input {
	position: absolute;
	left: -7000px
}

.checkbox_cell label {
	font-size: 12px;
	line-height: 20px;
	padding-left: 30px;
	position: relative;
	cursor: pointer;
	display: block;
	white-space: pre-line
}

.checkbox_cell label sup {
	font-size: 9px;
	position: relative;
	top: -5px
}

.checkbox_cell label:before {
	height: 20px;
	width: 20px;
	position: absolute;
	border: 1px solid #e3e3e3;
	content: "";
	left: 0px;
	top: 0px
}

.checkbox_cell label:after {
	height: 12px;
	width: 12px;
	position: absolute;
	content: "";
	background: #66952e;
	left: 4px;
	top: 4px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	opacity: 0;
	-webkit-transform: scale(0);
	transform: scale(0)
}

.checkbox_cell [type="checkbox"]:checked+label:after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1)
}

.all_param {
	margin-top: 30px
}

.all_param .counter_all {
	margin-top: 5px;
	font-size: 35px;
	font-weight: 600
}

.all_param .submit {
	padding: 20px 35px;
	background: #66952e;
	display: inline-block;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-size: 14px;
	margin-top: 20px
}

.forms_calc_window .warningcalc{
    font-size:12px;
    margin-top:5px;
    color:red;
}


.forms_calc_window_shadow{
    position:fixed;
    top:0;
    left:0;
    display:none;
    width:100vw;
    height:100vh;
    z-index:6;
}

.forms_calc_window_shadow.opens{
    display:flex;
}

.forms_calc_window_shadow .shadows{
    position:absolute;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    z-index:1;
    background:#000;
    opacity:0.3;
}


.forms_calc_window_shadow .forms_calc_window{
    position:relative;
    z-index:2;
    padding:25px;
    margin:auto;
    background:#fff;
    width:600px;
}

.closeas{
   height:30px;
    content:"";
    width:30px;
    position:absolute;
    right:-35px;
    top:0px;
    background:url("../img/close_icon.svg");
    background-size:contain;
    cursor:pointer; 
}


.forms_calc_window .titlus{
    font-size: 30px;
    font-weight: 800;
    margin-bottom:30px;
}

.forms_calc_window .inputs{
    display:flex;
    justify-content: space-between;
}

.inputs input{
    border: 1px solid #cecece;
    height: 50px;
    width: 100%;
    display: block;
    padding:15px;
}

.inputs input + input{
    margin-left:15px;
}

.forms_calc_window .submits {
	padding: 13px 40px;
	background: #66952e;
	display: inline-block;
	color: #fff;
	cursor: pointer;
	font-weight: 600;
	letter-spacing: 0.04em;
	font-size: 14px;
	margin-top: 30px
}

.politicas{
    font-size: 13px;
	margin-top:10px;
	color: #66952e;
}


#qwertuio{
    height:250px;
    width:100%;
}


@media screen and (max-width: 650px) {
    .forms_calc_window_shadow .forms_calc_window{
        height:100%;
        width:100%;
        padding: 10px;
        padding-top: 50px;
    }
    .closeas{
        filter:invert(1);
        right:10px;
        top:10px;
    }
    .forms_calc_window .inputs{
        display:block;
    }
    .inputs input + input{
        margin-left:0px;
        margin-top:15px;
    }
    .form_calculator{
        padding-left:0px;
        padding-right:0px;
    }
}












