#savings-calculator {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 20px;
	box-sizing: border-box;
}

#savings-calculator .col3 {
	display: inline-block;
	width: 33%;
	vertical-align: top;
}

#savings-calculator .col3 label {
	display: block;
	color: rgb(255,130,0);
	font-size: 24px;
	line-height: 1.2em;
	font-weight: bold;
	padding: 40px 0 0 40px;
	margin-bottom: 30px;
	
}	

#savings-calculator .col3 label#first {
	background: url("../img/no1.png") no-repeat left; 
	background-size: contain;
	
}

#savings-calculator .col3 label#second {
	background: url("../img/no2.png") no-repeat left; 
	background-size: contain;
	
}

#savings-calculator .col3 label#third {
	background: url("../img/no3.png") no-repeat left; 
	background-size: contain;
	
}

#savings-calculator .col3 select {
	display: block;
	font-size: 16px;
	padding: 10px;
	-webkit-border-radius: 5px;    
	border-radius: 5px; 
	-moz-border-radius:5px;
	-khtml-border-radius:5px;
	width: 85%;
	max-width: 250px;
	margin: 0 auto;
	border: solid #000000 1px;
}

#savings-calculator .col3 #result {
	height: 43px;
	color: rgb(255,130,0);
	text-align: center;
	font-size: 43px;
	line-height: 43px;
	font-weight: bold;
	
}

#savings-calculator .col3 a {
	display: none;
	width: 162px;
	margin: 20px auto 0 auto;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {

	#savings-calculator .col3 {
		width: 100%;
		margin-bottom: 30px;
	}

}