/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.retirement-calculator {
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 15px 30px;
    flex-wrap: wrap;
}

.retirement-calculator form {
	width: 60%;
	background: #0a406b;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	align-items: flex-start;
	height: fit-content;
}

.right_result {
	width: calc(40% - 30px);
	height: fit-content;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.results {
	position: sticky;
	top: 30px;
	background: #fff;
	padding: 30px;
	width: 100%;
	box-shadow: 2px 2px 11px 5px #dddddd85;
}

.newsletter {
	background: #bb9f64;
	padding: 50px;
	margin: 0 auto;
	max-width: 767px;
	width: 100%;
	box-shadow: 2px 2px 11px 5px #dddddd85;
	margin-top: 20px;
}

.newsletter h3 {
	color: #0a406b;
	font-size: 28px;
	margin: 0 0 20px;
	text-align: center;
}

.retirement-calculator form .col-6 {
	width: calc(50% - 10px);
}

.retirement-calculator form label {
	color: #fff;
	margin-bottom: 10px;
	font-weight: 500;
}

.retirement-calculator form .col-6 {
	width: calc(50% - 10px);
}

.retirement-calculator form .col-12 {
	width: calc(100% - 0px);
}

.retirement-calculator form input,
.retirement-calculator form select {
	padding: 14px 20px;
	border-radius: 0;
	border: 0;
}

.newsletter input {
	padding: 14px 20px;
	border-radius: 0;
	border: 1px solid #ddd;
}

.submit_input {
	display: flex;
}

.retirement-calculator form select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	width: 100%;
	background-color: #fff;
	background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
	background-repeat: no-repeat;
	background-position: right 10px center;
	cursor: pointer;
}

.submit_btn_div button {
	background: #bb9f64;
	border: 1px solid #bb9f64;
	border-radius: 0;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 14px 80px;
	margin-top: 10px;
	transition: all .3s ease;
}

.submit_btn_div button:hover {
	background: transparent;
	color: #bb9f64;
	transition: all .3s ease;
}

.newsletter button {
	background: #0a406b;
	border: 1px solid #0a406b;
	border-radius: 0;
	font-size: 16px;
	color: #fff;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 14px 80px;
	transition: all .3s ease;
}

.newsletter button:hover {
	background: transparent;
	color: #0a406b;
	border: 1px solid #0a406b;
	transition: all .3s ease;
}


.results th {
	width: 65%;
	text-align: left;
	color: #333;
	font-size: 16px;
	line-height: 1.3;
}

.results table,
.results table td,
.results table th {
	border-color: #333;
}

.results td {
	width: 35%;
	text-align: right;
	color: #333;
	font-size: 18px;
	line-height: 1.2;
	vertical-align: middle;
}

.result_bottom_content {
	background: #fff;
	box-shadow: 2px 2px 11px 5px #dddddd85;
	padding: 30px;
	margin-top: 20px;
}

@media only screen and (max-width:550px) {
	.retirement-calculator form .col-6 {
		width: calc(100% - 0px);
	}

	.submit_input {
		flex-wrap: wrap;
		gap: 20px;
	}
}

@media only screen and (max-width:767px) {

	.retirement-calculator form,
	.right_result {
		width: 100%;
	}

	.retirement-calculator form,
	.results,
	.result_bottom_content {
		padding: 20px;
	}

	.newsletter {
		padding: 50px 30px;
	}

	.newsletter button {
		padding: 14px 50px;
	}
}

@media only screen and (min-width:768px) and (max-width:991px) {
	.retirement-calculator form {
		width: 100%;
	}

	.right_result {
		width: calc(80% - 00px);
	}
}
.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-actions button {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.result-actions button:hover {
    transform: scale(1.2);
}
.main_calc_heading {
    font-size: 34px;
    font-weight: 500;
    margin: 0;
    width: 100%;
    text-align: center;
}
.main_calc_subheading {
    max-width: 700px;
    text-align: center;
    margin: 0 auto 30px;
}
.result-actions {
    display: flex;
    gap: 10px;
}
.result-actions button {
    background: #bb9f64;
    color: #fff;
    padding: 12px;
    margin: 0;
    line-height: 1;
    font-weight: 100;
    transition: all .3s ease;
}
.result-actions button:hover {
    background: #0a406b;
    color: #fff;
    padding: 12px;
    margin: 0;
    line-height: 1;
    font-weight: 100;
    transition: all .3s ease;
}

.result-actions {
    display: flex;
    gap: 10px;
}
.result-header h2 {
    font-size: 24px;
    font-weight: 600;
}