.calc-page h1{
	margin-bottom:35px;
}
.calc-page .calc-text,
.calc-page .calc-text p{
	line-height: 2em;
	font-size: 16px;
	color:#242424;
}
.calc-page .calc-text h2,
.calc-page .calc-text h3{
	margin:20px 0;
}
.calc-page .calc-text ul,
.calc-page .calc-text ol{
	list-style:disc;
	padding-left:35px;
	margin:15px 0;
}
.calc-page .calc-text ol{
	list-style:number;
}
.calc-page .calc-text{
	margin-bottom:35px;
}

.calc-page #calculation select,
.calc-page #calculation input {
    -webkit-appearance: none;
}

.calc-page #calculation > div{
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom:35px;
}
.calc-page #calculation > div > div{
	margin-right:15px;
	margin-bottom:15px;
	display:flex;
	flex-direction:column;
}
.calc-page #calculation > div select,
.calc-page #calculation > div input{
	border: 1px solid #C2B59B;
	padding: 5px 10px;
}
.calc-page #calculation > div input{
	width:100px;
}

.calculation-manage--save,
.calculation-manage--clear,
.calc-page #calculation > button,
#select_calc #add_calc {
	border: 1px solid #C2B59B;
	padding: 5px 20px;
	color:#fff;
	background-color:#242424 !important;
	border-radius:100px;
	margin: 0 5px;
}
.calc-page #calculation > div button[disabled]{
	opacity: 0.6;
	pointer-events:none;
}
.calc-page #calcpricetable{
	width:100%;
	margin-bottom:20px;
}
.calc-page #calcpricetable th,
.calc-page #calcpricetable td{
	font-size:14px;
	border: 1px solid #C2B59B;
	text-align:center;
	padding: 5px 10px;
	vertical-align:middle;
}
.calc-page #calcpricetable th{
	background:#757575;
	color:#fff;
	font-weight:bold;
	font-size:12px;
}
.calc-page #calcpricetable tfoot td{
	font-weight:bold;
}
.section-contact-us .section-contact-us__title{
	max-width:auto;
}
.calc-page #calcpricetable button{
	background:none;
}
.calc-page #calcpricetable button svg path{
	fill:#C2B59B;
}
.calculation-manage{
	text-align:center;
}
.section-why-we{
	border:none;
}

.calc-popup {
    display: flex;
    position: fixed;
    padding: 20px;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background-color: #fff;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.2s ease;
}

.calc-popup.popup-opened {
    z-index: 100000000;
    opacity: 1;
    visibility: visible;
}

.calc-popup__inner {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

body.popup-opened {
    overflow-y: hidden;
}
