
.calcWrap {}
.calcWrap .fieldGroup {
	margin-bottom: 34px;
	padding: 30px 35px;
}
.calcWrap .fieldGroup .lblWrp {}
.calcWrap .fieldGroup .headline {
	font-weight: 500;
	color: black;
	font-size: 16px;
	line-height: 26.24px;
	margin-bottom: 5px;
}
.calcWrap .fieldGroup .desc {
	font-weight: 300;
	color: black;
	font-size: 14px;
	line-height: 19.04px;
}
.calcWrap .fieldGroup .fieldWrap {}
.calcWrap .fieldGroup .fieldWrap {}
.calcWrap .numFieldWrap {}
.calcWrap .numFieldWrap .outputWrap {
	width: 100%;
	position: relative;

	color: #000;
	background-clip: padding-box; /* !importanté */
	border: solid 2px transparent; /* !importanté */
	border-radius: 10px;
	z-index: 1;

	background: #FFFBF9;
	box-shadow: 10px 0px 40px rgba(243, 115, 53, 0.08);
	border-radius: 10px;
}
.calcWrap .numFieldWrap .outputWrap::before {
	content: '';
	position: absolute;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 0;
	margin: -2px;
	border-radius: inherit;
	background-image: linear-gradient(-10deg, #f37336,#face2f);
}
.calcWrap .numFieldWrap .outputWrap .inner {
	position: relative;
	background: #FFF;
	border-radius: inherit;
	z-index: 1;
	display: flex;
	padding: 10px 15px;
	align-items: center;
}
.calcWrap .numFieldWrap .outputWrap .inner .amountWrap {
	flex: 1;
	font-size: 28px;
	font-weight: 600;
	color: black;
}
.calcWrap .numFieldWrap .outputWrap .inner button {
	background: black;
	border-radius: 50%;
	color: white;
	font-weight: bold;
	border: none;
	width: 24px;
	height: 24px;
}

.calcWrap .sliderFieldWrap {}
.calcWrap .sliderFieldWrap .outputWrap {
	margin-bottom: 20px;
	font-weight: 500;
	font-size: 36px;
	margin-top: 30px;
}
.calcWrap .sliderFieldWrap .sliderField {
	position: relative;
}
.calcWrap .sliderFieldWrap .sliderField .pre {
	position: absolute;
	font-size: 14px;
	font-weight: 300;
	left: -10px;
	top: calc(50% - 8px);
}
.calcWrap .sliderFieldWrap .sliderField .post {
	position: absolute;
	font-size: 14px;
	font-weight: 300;
	right: -20px;
	top: calc(50% - 8px);
}
.calcWrap .sliderFieldWrap .sliderField .iwrap {
	width: 100%;
}
.calcWrap .sliderFieldWrap .sliderField .slider {
	width: 85%;
	margin: auto;

	height: 18px;
	border-radius: 18px;
	-webkit-appearance: none;  /* Override default CSS styles */
	appearance: none;
	background: #d3d3d3;
	/* background-image: linear-gradient(-10deg, #f37336,#face2f); */
	outline: none;
	overflow: hidden;
	box-shadow: 0 0 black;
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #FFF;
	box-shadow: calc(100vw + 9px) 0 0 100vw #D8D9DD;
	cursor: pointer;
	border: 1px solid grey

}
.slider::-webkit-slider-runnable-track {
	background-image: linear-gradient(45deg, #f37336,#face2f);
}
.slider::-moz-range-thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: #04AA6D;
	cursor: pointer;
}
.yearFieldWrap {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 10px;
}
.yearFieldWrap .checkboxWrap {}
.yearFieldWrap .checkboxWrap label {}
.yearFieldWrap .checkboxWrap input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.yearFieldWrap .checkboxWrap span {
	background: #FCFCFC;
	border: 1px solid #F0EFEF;
	color: #B9B9B9;
	font-weight: 500;
	font-size: 16px;
	line-height: 26.24px;
	padding: 6px;
	border-radius: 10px;
	display: block;
}
.yearFieldWrap .checkboxWrap input:checked ~ span {
	background: #FFFBF9;
	color: black;
	border-color: #f7a332;
}

.calenderFieldWrap {}
.calenderFieldWrap .outputWrap {}
.calenderFieldWrap .outputWrap input {
	border: 1px solid #f0efef;
	font-weight: 500;
	font-size: 16px;
	padding: 10px;
	border-radius: 6px;
	display: block;
	background: #fffbf9;
	color: black;
	border-color: #f7a332;
	width: 100%;
}

.calcWrap .resultWrap {
	display: none;
}

main.calcResult .calcWrap .calcWidgetForm,
main.calcResult > section.head {
	display: none;
}
main.calcResult .calcWrap .resultWrap {
	display: block;
}

.tabWrap {}
.tabWrap .tabLinks {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 22px;
}
.tabWrap .tabLinks .link {
	color: #848484;
	text-decoration: none;
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	padding-bottom: 6px;
	position: relative;
}
.tabWrap .tabLinks .link.active {
	background: linear-gradient(180deg, rgba(250, 209, 38, 0.96) 0%, #F37335 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tabWrap .tabLinks .link.active::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 1px;
	background: linear-gradient(180deg, rgba(250, 209, 38, 0.96) 0%, #F37335 100%);
}
.tabWrap .tabPanels {
	padding: 30px 0px;
}
.tabWrap .tabPanels .tabPanel{
	display: none;
}
.tabWrap .tabPanels .tabPanel.active {
	display: block;
}
.statbox {
	padding: 30px 25px;
	background: #2AB479;
	box-shadow: 0px 10px 40px rgba(42, 180, 121, 0.25);
	border-radius: 10px;
	color: #FFFFFF;
	text-align: left;
}
.statbox .dataBox {
	border-bottom: 1px solid #EFEFEF;
	padding-bottom: 30px;
	margin-bottom: 30px;
}
.statbox .dataBox .label {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
	margin-bottom: 10px;
}
.statbox .dataBox .numWrap {
	font-size: 46px;
	font-weight: 500;
}

.statbox p.disclaimerTxt{
	font-weight: 300;
	font-size: 12px;
	line-height: 16.32px;
	color: #EFEFEF;
}
.amortizTableBox {}
.amortizTableBox .dataTableWrap {
	border-radius: 5px;
	overflow: hidden;
}
.amortizTableBox .dataTableWrap table {
	text-align: center;
	width: 100%;
	border-collapse: collapse;
}
.amortizTableBox .dataTableWrap table thead {
	border-bottom: 2px solid #FFFFFF;
	box-shadow: 0px 2px 2px rgba(50, 50, 71, 0.06), 0px 2px 4px rgba(50, 50, 71, 0.06);
	background: #F7F7FA;
}
.amortizTableBox .dataTableWrap table th {
	font-weight: 400;
	font-size: 13px;
	line-height: 18px;
	color: #9A99A2;
	padding: 10px 5px;
}
.amortizTableBox .dataTableWrap table td {
	color: #232326;
	font-size: 13px;
	line-height: 20px;
	font-weight: 400;
	padding: 10px 5px;
}
.amortizTableBox .dataTableWrap table tbody tr  {
	background: #FFFFFF;
}
.amortizTableBox .dataTableWrap table tbody tr:nth-child(odd) {
	background: #F7F7FA;
}
.amortizTableBox .dataTableWrap table tr.footerRow {display: none;}