*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: inherit;
}

html {
	font-size: 62.5%;
}

@media (max-width: 991px) {
	html {
		font-size: 55%;
	}
}

@media (max-width: 575px) {
	html {
		font-size: 40%;
	}
}

.row.white-bg {
	background: #fff;
	padding: 9px 0 20px 0;
}

body {
	padding: 0; margin:0px;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: rgb(90, 99, 114); background:#f7f7f7;
}

.heading-primary {
	color: rgb(140, 146, 157);
	font-weight: 400;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	text-align: center;
	font-size: 3rem;
}

.heading-secondary {
	font-size: 1.5rem;
	font-weight: 200;
	margin-bottom: 1.75rem;
	text-align: center;
}

main {
	max-width: 66rem;
	margin: 0 auto;
}

/* Layout */



/* CHART */
.chart-box {
	max-width: 100%;
	margin: 0 auto;
	padding: 3rem 0 0 0;
	display: flex;
	position: relative;
}

.chart {
	width: 35%;
	height: 50%;
	position: relative;
	margin-right: 3.5rem;
	margin-left:10%;
}

.tooltip {
	position: absolute;
	display: none;
	padding: 0.5rem;
	border-radius: 0.3rem;
	pointer-events: none;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	transition: 0.3s;
	z-index: 100;
	align-items: center;
}

.tooltip:after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-width: 0.6rem;
	border-style: solid;
}

.tooltip.north {
	transform: translate(-50%, 0.6rem);
	left: 0px;
}

.tooltip.north:after {
	border-color: transparent transparent rgba(0, 0, 0, 0.7) transparent;
	top: -1.2rem;
	left: calc(50% - 0.6rem);
}

.tooltip.west {
	transform: translate(calc(-100% - 0.6rem), -50%);
}

.tooltip.west:after {
	border-color: transparent transparent transparent rgba(0, 0, 0, 0.7);
	top: calc(50% - 0.6rem);
	left: 100%;
}

.tooltip.east {
	transform: translate(0.6rem, -50%);
}

.tooltip.east:after {
	border-color: transparent rgba(0, 0, 0, 0.7) transparent transparent;
	top: calc(50% - 0.6rem);
	left: -1.2rem;
}

.tooltip.south {
	transform: translate(-50%, calc(-100% - 0.6rem));
}

.tooltip.south:after {
	border-color: rgba(0, 0, 0, 0.7) transparent transparent transparent;
	top: 100%;
	left: calc(50% - 0.6rem);
}

.tooltip .color-icon {
	width: 1.5rem;
	height: 1.5rem;
	margin-right: 0.5rem;
	border: 2px solid #ccc;
	flex: 1 0 auto;
}

.tooltip .label {
	flex: 2 0 auto;
}

.chart path {
	opacity: 0.9;
	stroke-width: 2;
	stroke: #fff;
}

.chart path:hover {
	opacity: 1;
	stroke: #ccc;
	z-index: 50;
}

.estimate {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.estimate__heading {
	text-transform: uppercase;
	font-size: 1.5rem;
	color: #333;
	width: 100%;
	margin-bottom: 2rem;
}

@media (max-width: 677px) {
	.estimate__heading {
		margin-bottom: 0.5rem;
	}
}

@media (max-width: 400px) {
	.estimate__heading {
		margin-bottom: 0;
	}
}

.estimate__value {
	font-size: 5.5rem;
	color: #4098ff;
	font-weight: 100;
}

@media (max-width: 677px) {
	.estimate__value {
		font-size: 4rem;
	}
}

.estimate__value:before {
	content: "$";
	font-size: 2.5rem;
	vertical-align: top;
}

.info {
	display: inline-block;
	vertical-align: top;
	width: 2.5rem;
	height: 2.5rem;
	text-align: center;
}

.info__tooltip {
	position: absolute;
	min-width:28rem;
	width: auto;
	transform: translate(calc(-100% - 1rem), 3rem);
	display: none;
	background: #fff;
	z-index: 100;
	box-shadow: 0 1rem 4rem rgba(0, 0, 0, 0.15);
	border-radius: 3px;
	padding: 1.5rem;
	font-size: 1.5rem;
	pointer-events: none;
	text-align: left;
}

.info__tooltip.north {
	transform: translate(calc(-100% - 1rem), calc(-100% - 1rem));
}

.info__header {
	text-align: center;
	font-weight: 400;
}

.info__icon {
	background-image: url(../images/download.svg);
	width: 2rem;
	height: 2rem;
	background-size: 2rem;
	display: inline-block;
	cursor: pointer;
}

.info__icon:hover + .info__tooltip {
	display: inline-block;
}

.chart__description {
	font-size: 1.6rem;
	padding-left: 2.5rem;
	position: relative;
	justify-content: space-between;
	width: 50%;
}

.chart__legend {
	display: flex;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.chart__description-label {
	font-size: 1.8rem;
	font-weight: 400;
}

.chart__description-value {
	font-size: 3rem;
	font-weight: 400;
}

.label__colored + .chart__description-value {
	margin-left: 2.6rem;
}

.chart__description-value:before {
	content: "$";
}

.label__colored:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 1.6rem;
	height: 1.6rem;
	margin-right: 0.7rem;
	transform: translateY(0.2rem);
}

.label__colored-1:before {
	background: #f79082;
}

.label__colored-2:before {
	background: #dbefaf;
}

.label__colored-3:before {
	background: #5a6372;
}

.label__colored-4:before {
	background: #4098ff;
}

.label__colored-5:before {
	background: #88d2e0;
}

.label--sub {
	display: block;
	font-size: 1.4rem;
}

/* Controllers */
.controllers-box {
	margin-bottom: 5.5rem;
}

/* Range Slider */

.calc__slider {
	-webkit-appearance: none;
	width: 100%;
	height: 1rem;
	border-radius: 5px;
	outline: none;
	-webkit-transition: 0.2s;
	transition: opacity 0.2s;
	display: block;
	margin-top: 1.2rem;
	box-shadow: inset 0 0.1rem 0.3rem #555;
	background-image: linear-gradient(90deg, #4098ff 0%, #4098ff 50%, white 50%);
}

.calc__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #ddd;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.4);
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1;
}

.calc__slider::-moz-range-thumb {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: #4caf50;
	cursor: pointer;
}

/* input box */
.controller-row {
	flex-wrap: wrap;
	justify-content: space-between;
}

.controller-row:not(:last-child) {
	margin-bottom:2rem;
}

@media (max-width: 600px) {
	.controller-row {
		height: 10rem;
	}

	.controller-row [class^="col-"]:nth-child(2) {
		order: 1;
		flex: 0 1 100%;
	}

	.controller-row [class^="col-"]:nth-child(1),
	.controller-row [class^="col-"]:nth-child(3) {
		flex: 0 1 48%;
	}
}

.calc__input-group {
	width: 100%;
	position: relative;
	display: table;
	border-collapse: separate;
	color: #5a6372;
	font-size: 1.8rem;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
	padding-left: 0;
}

.calc__input-group-addon {
	display: table-cell;
	width: 4.5rem;
	height: 4.5rem;
	background-color: #fafafa;
	padding: 0;
	color: #5a6372;
	text-align: center;
	border: 1px solid #ccc;
	vertical-align: middle;
	border-radius: 0;
	font-weight: 300;
}

.calc__input-group-addon:first-child {
	border-right: 0;
}

.calc__input-group-addon:nth-child(2) {
	border-left: 0;
}

.calc__input {
	display: table-cell;
	position: relative;
	z-index: 2;
	width: 100%;
	padding: 0.6rem 1.2rem;
	color: #5a6372;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 0.4rem;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
	height: 4.5rem;
	font-size: 2rem;
	font-weight: 300;
}

.calc__input:focus {
	outline: 0;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.calc__input-group .calc__input:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.calc__input-group .calc__input:nth-child(2) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.info-box {
	display: table-cell;
	width: 3.5rem;
	text-align: right;
	vertical-align: top;
}

.section-chart-controllers__footer {
	display: flex;
	justify-content: space-between;
	padding: 0 2.5rem;
}


.btn-link {
	font-size: 1.7rem;
	padding: 0;
	text-decoration: none;
	color: #4098ff;
	border-color: transparent;
}

.btn-link:hover,
.btn-link:focus {
	background: transparent;
}

.btn-secondary {
	background-color: transparent;
	border-color: #4098ff;
	color: #4098ff;
	padding: 1rem 3.5rem;
	text-transform: uppercase;
}

.btn-secondary:hover,
.btn-secondary:focus {
	background-color: #4098ff;
	color: #fff;
}

/* DIALOG */
.dialog {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	min-height: 100%;
	overflow: auto;
}

.dialog.open {
	display: block;
}

.modal-backdrop {
	opacity: 0.75;
	background-color: #232933;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1040;
}

/*.modal {
	position: absolute;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
	border-radius: 0.5rem;
	top: 1rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1041;
	background-color: #fff;
	color: #5a6372;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 1.5rem 0;
	width: 90%;
}*/

@media (min-width: 992px) {
	.modal {
		/*width: 900px;*/
	}
}

@media (min-width: 768px) {
	.modal {
		/*width: 600px;*/
	}
}

.modal__header {
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	border-bottom: 1px solid rgb(229, 229, 229);
}

.modal__header__close {
	cursor: pointer;
	font-size: 2.1rem;
	font-weight: bold;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	transform: translateY(-0.5rem);
	opacity: 0.5;
	transition: opacity 0.15s;
}

.modal__header__close:hover {
	opacity: 0.7;
}

.modal__header__text {
	font-size: 1.4rem;
}

.modal__content {
	padding: 1rem 2rem;
	text-align: center;
	color: rgb(90, 99, 114);
	font-size: 1.4rem;
}

.modal__content p:not(:last-child) {
	margin-bottom: 2rem;
}

.modal__content-header {
	text-decoration: underline;
	font-size: 1.6rem;
	font-weight: 400;
}

.modal__footer {
	padding: 1rem 2rem;
}



.range-calc__slider input.calc__slider {  display:none;
}

.range-calc__slider {
	border-right: 1px #ddd solid;
	/*background: #007bff;*/
	background: #bbeaf3;
}

.range-calc__slider h3.float-left { color:#5a6372;
}

section.section-chart-controllers.mt-5.pt-5 h3 {
	font-size: 16px;
}




button.btn.btn-primary.btn-lg.btn-block, button.btn.btn-info.btn-lg.btn-block {
	font-size: 2.25rem;
}

.price-top-new input.calc__input {
	height: auto !important;
	border: none;
	box-shadow: none;
	font-size: 50px;
	font-weight: bold;
	line-height: normal;
	margin: 0px !important;
	padding: 0px !important;
	width:230px !important;
	box-sizing:content-box;
}

.price-top-new span.calc__input-group-addon {
	width: auto;
	vertical-align: top;
	margin-top: 20px;
	font-weight: bold;
	padding: 13px 0 0 0;
	font-size: 23px;
	line-height: normal !important;
	border: none !important;
	background: no-repeat;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
}

p.text-monthly {
	font-size: 20px;
	margin: 0;
	padding: 0;
	line-height: normal;
	float: left;
	margin: 9px 0 0 0;
}

.tab-content.white-bg {
	background: #fff; width:100%; float:left;
}

.project-tab {
	padding: 0;
	margin-top: 40px;
}

.project-tab #tabs {
	background: #007b5e;
	color: #eee;
}

.project-tab #tabs h6.section-title {
	color: #eee;
}

.project-tab #tabs .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
	color: #0062cc;
	background-color: transparent;
	border-color: transparent transparent #f3f3f3;
	border-bottom: 3px solid !important;
	font-size: 16px;
	font-weight: bold;
}

.project-tab .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	color: #0062cc;
	font-size: 16px;
	font-weight: 600;
}

.project-tab .nav-link:hover {
	border-color:transparent;
}

.project-tab thead {
	background: #f3f3f3;
	color: #333;
}

.project-tab a {
	text-decoration: none;
	color: #333;
	font-weight: 600;
}


.table.table h3.chart__description-label { white-space:nowrap;
}


table.table.borderless input.calc__input {
	border-left: none;
	padding: 0.6rem;
	height: 4rem;
	font-size: 1.5rem;
	text-align: right;
	font-weight: normal;
}
table.table.borderless .calc__input-group-addon {
	height: 3.5rem; width:30px; background-color:transparent;
}

table.table.borderless td {
	border: none;
	/* padding-left: 0; */ vertical-align:middle;
	padding-right: 0;
}

table.table.borderless span.calc__input-group { width:120px; float:right;
}


label {
	font-size: 16px;
}



button.btn.btn-primary.btn-lg.mt-2.apply-now {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 16px;
	padding: 10px 30px;
}

.bg-skyblue {
	background-color: #bbeaf3 !important;
}