
/* ------------------- Calc ------------------- */
.form {
	max-width: 1200px;
}
.calc-wrapper {
    margin-top: 70px;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
} 

.calc-section {
	padding: 40px 50px;
}

.calc-section:nth-child(odd) {
	padding: 40px 50px;
	background-color: #fff;
}

.radio-wrapper {
	display: flex;
	/* align-items: center; */
}

.radio-wrapper .radio {
	margin-top: 9px;
}

.radio-wrapper:not(:last-child) {
	margin-bottom: 30px;
}

.radio-wrapper .radio {
	margin-right: 15px;
	margin-top: 6px;
}

.section-title {
	margin-bottom: 20px;
}

.title-bold {
	font-size: 24px;
	font-weight: 700;
}

.title-lite {
	font-size: 20px;
	font-weight: 300;
}

.note {
	display: block;
	font-weight: 300;
	font-style: italic;
	padding-top: 10px;
	font-size: 16px;
	color: #969696;
}

/* ------------ Forms ------------ */

.checkbox-wrapper {
	display: flex;
	margin-bottom: 20px;
}

.checkbox-wrapper .checkbox {
	margin-right: 15px;
}

/* ------------ Price ------------ */
.calc-price {
	padding: 30px 50px;
	background-color: rgb(218, 243, 255);
	background-color: white;
	box-shadow: -10px 0px 25px rgba(143, 179, 195, 0.685);
	text-align: center;
	margin: 20px 0;
}

.calc-price-title {
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 10px;
}

.calc-price-value {
	font-size: 26px;
	font-weight: 300;
}


