.tco-row {
	margin: 5px 0;
}

.tco-basic .tco-row {
	display: flex;
}

.tco-basic .tco-row label {
	min-width: 0;
}

.tco-basic .tco-row input {
	width: 80%;
	font-size: 18px;
}

.tco-advanced .tco-row:after {
	content: "";
	display: table;
	clear: both;
}

.tco-advanced .tco-row label {
	width: 70%;
	display: inline-block;
	float: left;
	margin-top: 3px;
}

.tco-advanced .tco-row input,
.tco-advanced .tco-row select {
	width: 30%;
	display: inline-block;
}

.tco-basic .tco-row label > span {
	display: block;
}

.tco-results {
	padding: 15px;
}

/*.tco-advanced.disabled {*/
/*pointer-events: none;*/
/*opacity: 0.5;*/
/*}*/

.tco-graph {
	border-left: 1px solid #000;
	border-bottom: 1px solid #000;
	width: 100%;
	height: 150px;
	position: relative;
}

.tco-graph-bar {
	width: 20%;
	margin-left: 20%;
	height: 0;
	position: absolute;
	background: #0c5466;
	float: left;
	bottom: 0;
	-webkit-transition: height 500ms;
	-moz-transition: height 500ms;
	-ms-transition: height 500ms;
	-o-transition: height 500ms;
	transition: height 500ms;
}

.tco-graph-bar:nth-child(2) {
	left: 40%;
}

.tco-graph-bar.bar-red {
	background: #D12820;
}

.tco-graph-bar > span {
	bottom: 100%;
	font-weight: bold;
	position: absolute;
	white-space: pre;
	transform: translateX(-50%);
	margin-left: 50%;
}

.tco-graph-bar > span:before {
	content: "$ ";
}

.tco-graph-bar > label {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	text-align: center;
}

.savings-title {
	display: none;
	text-align: center;
}

.savings-title.show {
	display: block;
}

.tco-savings-percent {
	text-align: center;
	font-size: 100px;
	line-height: 1;
}

.tco-tooltip {
	position: relative;
	cursor: help;
	margin-right: 5px;
}

.tco-tooltip > span {
	position: absolute;
	right: 100%;
	margin-right: 10px;
	background: #262626;
	color: #fff;
	border-radius: 5px;
	top: 50%;
	transform: translateY(-50%);
	padding: 6px;
	min-width: 260px;
	text-align: center;
	display: none;
	font-family: "Raleway", sans-serif;
	line-height: 1.2;
	font-size: 14px;
}

.tco-tooltip > span:after {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent transparent #262626;
}

@media (max-width: 1540px) {
	.tco-tooltip > span {
		left: -10px;
		top: auto;
		right: 0;
		bottom: 24px;
		transform: none;
	}

	.tco-tooltip > span:after {
		right: auto;
		left: 11px;
		transform: rotate(90deg);
		top: 100%;
		margin-top: 0;
	}
}

.tco-tooltip:hover > span {
	display: block;
}

#tco-share-popup {
	visibility: hidden;
	z-index: 2000;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100vh;
	min-height: 100vh;
	background: rgba(0, 0, 0, 0.7);
	-webkit-transition-property: opacity;
	-webkit-transition-duration: 150ms;
	-webkit-transition-timing-function: linear;
	-moz-transition-property: opacity;
	-moz-transition-duration: 150ms;
	-moz-transition-timing-function: linear;
	-o-transition-property: opacity;
	-o-transition-duration: 150ms;
	-o-transition-timing-function: linear;
	transition-property: opacity;
	transition-duration: 150ms;
	transition-timing-function: linear;
	opacity: 0;
}

#tco-share-popup.visible {
	visibility: visible;
	opacity: 1;
}

#tco-share-popup .popup {
	position: relative;
	width: 400px;
	margin: 0 auto;
	padding: 35px;
	background: #fff;
	top: 50%;
	transform: translate(0, -50%);
	border-radius: 4px;
	-webkit-transition-property: all;
	-webkit-transition-duration: 5ms;
	-webkit-transition-timing-function: ease-in-out;
	-moz-transition-property: all;
	-moz-transition-duration: 5ms;
	-moz-transition-timing-function: ease-in-out;
	-o-transition-property: all;
	-o-transition-duration: 5ms;
	-o-transition-timing-function: ease-in-out;
	transition-property: all;
	transition-duration: 5ms;
	transition-timing-function: ease-in-out;
	overflow: hidden;
}

#tco-share-popup h4 {
	margin-top: 0;
}

#tco-share-popup .close-popup {
	float: right;
	margin-top: 20px;
}

.tco-calculator input, .tco-calculator select {
	display: block;
	width: 100%;
	height: 34px;
	padding: 6px 12px;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.tco-calculator input:focus {
	border-color: #0c5466;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(12, 84, 102, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(12, 84, 102, 0.6);
}

.input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	float: right;
	width: 30%;
}

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

.input-group-addon:last-child {
	border-left: 0;
}

.input-group-addon {
	padding: 6px 12px;
	font-size: 14px;
	font-weight: 400;
	line-height: 1;
	color: #555;
	text-align: center;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 4px;
	display: table-cell;
}

.input-group-addon, .input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
}

.input-group input {
	position: relative;
	z-index: 2;
	float: left;
	width: 100% !important;
	margin-bottom: 0;
	display: table-cell;
}

.input-group input:last-child,
.input-group .input-group-addon:last-child {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

.input-group input:first-child,
.input-group-addon:first-child {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.tco-advanced-title {
	height: 38px;
	line-height: 38px;
	border-top: 1px solid #d5d5d5;
	padding-top: 10px;
	padding-bottom: 10px;
	clear: both;
}

.tco-advanced {
	/*display: none;*/
	margin-top: 10px;
}

#tco_model_toggle, #tco_reset {
	float: right;
}

#tco_reset {
	margin: 10px 0;
}

#tco_model_toggle .disable,
#tco_model_toggle.active .enable {
	display: none;
}

#tco_model_toggle.active .disable {
	display: inline-block;
}

.tco-advanced p {
	display: none;
}
