/*
 * Widget Style
*/
.loanCalcWidget {
	margin: 0;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,
		"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji",
		"Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff;
	box-sizing: border-box;
	margin-bottom: 40px;
}
.loanCalcWidget * {
	box-sizing: border-box;
}
.loanCalcWidget .text-right {
	text-align: right !important;
}
.loanCalcWidget .widgetContainer {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
/* @media (min-width: 576px) {
	.loanCalcWidget .widgetContainer {max-width: 540px;}
} */
.loanCalcWidget.smView .widgetContainer {max-width: 540px;}

/* @media (min-width: 768px) {
	.loanCalcWidget .widgetContainer {max-width: 720px;}
} */
.loanCalcWidget.mdView .widgetContainer {max-width: 960px;}

/* @media (min-width: 992px) {
	.loanCalcWidget .widgetContainer {max-width: 960px;}
} */
.loanCalcWidget.lgView .widgetContainer {max-width: 960px;}

/* @media (min-width: 1200px) {
	.loanCalcWidget .widgetContainer {max-width: 1140px;}
} */
.loanCalcWidget.xlView .widgetContainer {max-width: 1140px;}

.loanCalcWidget .calcWidgetForm {
	padding: 1.5rem;
	border-radius: .25rem;
	border: 1px solid #dee2e6;
	background-color: #f8f9fa;
}

.loanCalcWidget .calcWidgetForm button,
.loanCalcWidget .calcWidgetForm input {
	overflow: visible;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

.loanCalcWidget .calcWidgetForm .formFieldsWrap {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}
.loanCalcWidget .calcWidgetForm .formFieldsWrap .formGroup {
	-ms-flex: 0 0 100%;
	flex: 0 0 100%;
	max-width: 100%;
	margin-bottom: 1rem;
	position: relative;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
}
.loanCalcWidget .calcWidgetForm .formGroup label {
	display: inline-block;
	margin-bottom: .5rem;
}
.loanCalcWidget .calcWidgetForm .formGroup .inputGroup {
	position: relative;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-align: stretch;
	align-items: stretch;
	width: 100%;
}
.loanCalcWidget .calcWidgetForm .inputGroup .inputGroupAppend,
.loanCalcWidget .calcWidgetForm .inputGroup .inputGroupPrepend {
	display: -ms-flexbox;
	display: flex;
}
.loanCalcWidget .calcWidgetForm .inputGroup .inputGroupPrepend {
	margin-right: -1px;
}
.loanCalcWidget .calcWidgetForm .inputGroup .inputGroupAppend {
	margin-left: -1px;
}
.loanCalcWidget .calcWidgetForm .inputGroup .inputGroupText {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-align: center;
	align-items: center;
	padding: .375rem .75rem;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	text-align: center;
	white-space: nowrap;
	background-color: #e9ecef;
	border: 1px solid #ced4da;
	border-radius: .25rem;
}
.loanCalcWidget .calcWidgetForm .inputGroup > .inputGroupPrepend > .inputGroupText {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.loanCalcWidget .calcWidgetForm .inputGroup > .inputGroupAppend > .inputGroupText {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.loanCalcWidget .calcWidgetForm .formControl {
	display: block;
	width: 100%;
	height: calc(1.5em + .75rem + 2px);
	padding: .375rem .75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.loanCalcWidget .calcWidgetForm .formControl:focus {
	color: #495057;
	background-color: #fff;
	border-color: #80bdff;
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.loanCalcWidget .calcWidgetForm .formControl:disabled,
.loanCalcWidget .calcWidgetForm .formControl[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}
.loanCalcWidget .calcWidgetForm .inputGroup > .formControl {
	position: relative;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	width: 1%;
	min-width: 0;
	margin-bottom: 0;
}
.loanCalcWidget .calcWidgetForm .inputGroup > .formControl:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
.loanCalcWidget .calcWidgetForm .inputGroup > .formControl:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
/* @media (min-width: 768px) {
	.loanCalcWidget .calcWidgetForm .formFieldsWrap .formGroup {
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
} */
.loanCalcWidget.mdView .calcWidgetForm .formFieldsWrap .formGroup {
	-ms-flex: 0 0 50%;
	flex: 0 0 50%;
	max-width: 50%;
}
/* @media (min-width: 992px) {
	.loanCalcWidget .calcWidgetForm .formFieldsWrap .formGroup {
		-ms-flex: 0 0 25%;
		flex: 0 0 25%;
		max-width: 25%;
	}
} */
.loanCalcWidget.xlView .calcWidgetForm .formFieldsWrap .formGroup,
.loanCalcWidget.lgView .calcWidgetForm .formFieldsWrap .formGroup {
	-ms-flex: 0 0 25%;
	flex: 0 0 25%;
	max-width: 25%;
}

.loanCalcWidget .calcWidgetForm .btnWrap {
	margin-top: 1rem;
}

.loanCalcWidget .calcWidgetForm .btn {
	display: inline-block;
	font-weight: 400;
	color: #212529;
	text-align: center;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: .375rem .75rem;
	font-size: 1rem;
	line-height: 1.5;
	border-radius: .25rem;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,
		border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.loanCalcWidget .calcWidgetForm .btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}
.loanCalcWidget .calcWidgetForm .btn {
	text-decoration: none;
}
.loanCalcWidget .calcWidgetForm .btn.focus,
.loanCalcWidget .calcWidgetForm .btn:focus {
	outline: 0;
	box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
.loanCalcWidget .calcWidgetForm .btnPrimary {
	color: #fff;
	background-color: #007bff;
	border-color: #007bff;
}
.loanCalcWidget .calcWidgetForm .btnPrimary:hover {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
}
.loanCalcWidget .calcWidgetForm .btnPrimary.focus,
.loanCalcWidget .calcWidgetForm .btnPrimary:focus {
	color: #fff;
	background-color: #0069d9;
	border-color: #0062cc;
	box-shadow: 0 0 0 0.2rem rgba(38,143,255,.5);
}

.loanCalcWidget .resultContainer {
	margin-top: 1.5rem;
}
.loanCalcWidget .resultBoxWrap {
	padding: 1.5rem;
	border-radius: .25rem;
	border: 1px solid #dee2e6;
	background-color: #f8f9fa;
}

.loanCalcWidget .statbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 1rem;
	border: 1px solid #dee2e6;
}
.loanCalcWidget .statbox .dataBox {
	flex: 1 auto;
	padding: 1rem;
	text-align: center;
	min-width: 33.33%;
}
.loanCalcWidget .statbox .dataBox.monthlyData {
	flex: 0 100%;
	font-size: 1.3rem;
	border-bottom: 1px solid #dee2e6!important;
}
/* @media (max-width: 767px) {
	.loanCalcWidget .statbox .dataBox {
		flex: 0 100%;
	}
} */
.loanCalcWidget.xsView .statbox .dataBox,
.loanCalcWidget.smView .statbox .dataBox {
	flex: 0 100%;
}

.loanCalcWidget .chartBox {
	position: relative;
	padding: 1rem;
	margin-bottom: 1rem;
	margin-top: 1rem;
	border: 1px solid #dee2e6;
	/* width: 100%;
	height: 200px; */
}
.loanCalcWidget .chartBox .chartContentWrap {
	position: relative;
}
.loanCalcWidget .chartBox .chartContentWrap.hide {
	display: none;
}
.loanCalcWidget .chartBox canvas {
	/* max-height: 300px; */
}

.loanCalcWidget .amortizTableBox {
	margin-bottom: 1rem;
	margin-top: 1rem;
}

.loanCalcWidget .widgetTabWrap {}
.loanCalcWidget .widgetTabWrap .widgetNavTabs {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: left;
	border-bottom: #165d2c 4px solid;
}
.loanCalcWidget .widgetTabWrap .widgetNavTabs li {

}
.loanCalcWidget .widgetTabWrap .widgetNavTabs li a,
.loanCalcWidget .widgetTabWrap .widgetNavTabs li a:hover {
	text-decoration: none;
}
.loanCalcWidget .widgetTabWrap .widgetNavTabs li a {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-right: 2px;
	line-height: 1.42857143;
	border: 1px solid transparent;
	border-radius: 4px 4px 0 0;
	background-color: #74cc8f;
	color: #000;
	border-bottom: 1px solid #74cc8f;
	font-size: 14px;
}
.loanCalcWidget .widgetTabWrap .widgetNavTabs li.active a {
	background-color:#165d2c;
	border-bottom-color:#165d2c;
	color: #ffffff;
}

.loanCalcWidget .widgetTabWrap .tabContent {
	border: 1px solid #dee2e6;
	border-top: none;
}
.loanCalcWidget .widgetTabWrap .tabContent .tabPane {
	display: none;
}
.loanCalcWidget .widgetTabWrap .tabContent .tabPane.active {
	display: block;
}

.loanCalcWidget .tableResponsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}
.loanCalcWidget .table {
	width: 100%;
	margin-bottom: 1rem;
	color: #212529;
	border-collapse: collapse;
}
.loanCalcWidget .table td,
.loanCalcWidget .table th {
	padding: .75rem;
	vertical-align: top;
	border-top: 1px solid #dee2e6;
}
.loanCalcWidget .table thead th {
	vertical-align: bottom;
	border-bottom: 2px solid #dee2e6;
}
.loanCalcWidget .table.tableStriped tbody tr:nth-of-type(odd) {
	background-color: rgba(0,0,0,.05);
}
.loanCalcWidget .tableHover tbody tr:hover {
	color: #212529;
	background-color: rgba(0,0,0,.075);
}

.loanCalcWidget .widgetTabWrap .dataTableWrap {}
.loanCalcWidget .widgetTabWrap .dataTableWrap table {}
.loanCalcWidget .widgetTabWrap .dataTableWrap table tr {}
.loanCalcWidget .widgetTabWrap .dataTableWrap table th {
	font-size: 14px;
}
.loanCalcWidget .widgetTabWrap .dataTableWrap table td {
	font-size: 14px;
}

.dropdown-menu {
	margin: 0;
	font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,
		"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji",
		"Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: left;
	background-color: #fff;

	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 10rem;
	padding: .5rem 0;
	margin: .125rem 0 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	list-style: none;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: .25rem;
}
.datepicker-dropdown {
	margin-top: 23px;
}

.loanCalcWidget .switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 24px;
}

.loanCalcWidget .switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.loanCalcWidget .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.loanCalcWidget .slider:before {
	position: absolute;
	content: "";
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

.loanCalcWidget input:checked + .slider {
	background-color: #2196F3;
}

.loanCalcWidget input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

.loanCalcWidget input:checked + .slider:before {
	-webkit-transform: translateX(16px);
	-ms-transform: translateX(16px);
	transform: translateX(16px);
}

/* Rounded sliders */
.loanCalcWidget .slider.round {
	border-radius: 24px;
}

.loanCalcWidget .slider.round:before {
	border-radius: 50%;
}
.loanCalcWidget .infoText {
	color: black;
}
.loanCalcWidget .notesTextBox {
	font-size: 12px;
	color: #6c757d;
}

.loanCalcWidget .notesTextBox a {
	font-size: 12px;
	color: #6c757d;
}