/*postage calculator for bootstrap 3 stylesheet*/



/*---------------------
CALCULATOR SECTION CSS 
----------------------*/

.section-content.calculator {
	background-color:transparent;
	border:none;
	padding-top: 0px;
}

.calculatorPageTitle {
	margin: 30px 0px;
	padding: 0px;
	font-size: 40px;
	line-height: 44px;
	text-align: center;
	color: #a05858;
}

.calculator input[type=text],
.calculator input[type=number] {
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	width: 100%;
	background-color: #fff;
	border: 1px solid #34495e;
	font-size: 35px;
	padding: 10px 0px;
	text-align: center;
	color: #34495e;
	
	-webkit-box-shadow: inset 0px 0px 16px 0px rgba(0, 0, 0, 0.075);
	-moz-box-shadow:    inset 0px 0px 16px 0px rgba(0, 0, 0, 0.075);
	box-shadow:         inset 0px 0px 16px 0px rgba(0, 0, 0, 0.075);
}

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

.calculator hr {
	margin: 20px 0px 15px;
	border: 1px dashed #34495e;
}

.calculatorWrapper {
	width: 100%;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	border: 2px solid #34495e;
	
	background: #f9f9f9; /* Old browsers */
	background: -moz-linear-gradient(top,  #f9f9f9 0%, #dbdbdb 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f9f9f9), color-stop(100%,#dbdbdb)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f9f9f9 0%,#dbdbdb 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f9f9f9 0%,#dbdbdb 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f9f9f9 0%,#dbdbdb 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f9f9f9 0%,#dbdbdb 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9f9f9', endColorstr='#dbdbdb',GradientType=0 ); /* IE6-9 */

	
	-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0px 3px 5px 0px rgba(0, 0, 0, 0.5);
	box-shadow:         0px 3px 5px 0px rgba(0, 0, 0, 0.5);
}

.calculatorResultWrapper {
	width: 100%;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
}

.calculatorTitle {
	background-color: #34495e;
	color: #f8f8f8;
	font-size: 24px;
	font-weight: 700;
	line-height: 24px;
	padding: 20px 0px;
	text-align: center;
	text-transform: uppercase;
	border: 2px solid #34495e;
	
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 1);
	
	-webkit-border-top-left-radius: 9px;
	-webkit-border-top-right-radius: 9px;
	-moz-border-radius-topleft: 9px;
	-moz-border-radius-topright: 9px;
	border-top-left-radius: 9px;
	border-top-right-radius: 9px;
	
	-webkit-box-shadow: 0px 3px 5px -2px rgba(0, 0, 0, 0.33);
	-moz-box-shadow:    0px 3px 5px -2px rgba(0, 0, 0, 0.33);
	box-shadow:         0px 3px 5px -2px rgba(0, 0, 0, 0.33);
}

.calculatorInputBox {
	margin-top: 15px;
	padding: 0px 25px;
}

.calculatorInputLabel {
	color: #34495e;
	font-size: 18px;
	line-height: 18px;
	font-weight: 500;
	text-transform: uppercase;
	padding-bottom: 5px;
}

.dimensionsInputSection {
	margin-top: 7px;
	text-align: center;
}

.zipInputSection {
	text-align: left;
}

.dimensionsInputSection .fa, .dimensionInputBox, .weightText {
	margin-right: 10px;
	text-shadow: 0px 1px 1px #fff;
}

.dimensionsInputSection .fa.fa-arrow-right {
	margin-right: -4px;
}

.dimensionsInputSection .fa, .weightText {
	font-size: 30px;
	color: #7D8B92;
}

.dimensionInputBox {
	width: 60px;
	display: inline-block;
}

.zipInputSection .dimensionInputBox {
	width: 100%;
	text-align: left;
}

.button.large, .button .fa {
	height: 55px;
	line-height: 55px;
	font-size: 20px;
	color: #fff;
}

.resultsTitle {
	text-align: center;
	font-size: 30px;
	line-height: 30px;
	font-weight: 900;
	color: #666666;
	text-transform: uppercase;
	margin-top: 25px;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 1);
}

.resultsSavings {
	text-align: center;
	font-size: 110px;
	line-height: 110px;
	font-weight: 900;
	color: #3b9652;
	text-transform: uppercase;
	margin: 20px 0px 25px;
	text-shadow: 0px 1px 0px rgba(0, 0, 0, 1);
}

.resultsDisclaimer {
	text-align: center;
	font-size: 13px;
	font-style: italic;
	padding-bottom: 5px;
}

.competitorBox {
	width: 100%;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	padding: 15px 5px;
}

.competitorTitle {
	text-align: center;
	font-weight: 700;
	font-size: 14px;
	padding-bottom: 10px;
}

.competitorPrice {
	text-align: center;
	font-weight: 700;
	font-size: 24px;
	color: #a05858;
}

.competitorVertLine {
	text-align: center;
	height: 75px;
	width: 1px;
	border-right: 1px dashed #34495e;
}

.competitorPriceText {
	text-align: center;
	font-weight: 300;
	font-size: 12px;
	font-style: italic;
	color: #a05858;
}

.button .fa {
	text-shadow: none;
}

.calculator .button, .calculator input[type="submit"], .calculator input[type="button"], .calculator button.button-main {
    background-color: #723b3f;
    border-bottom-color: #71383b;
    border-left-color-ltr-source: physical;
    border-left-color-rtl-source: physical;
    border-left-color-value: #71383b;
    border-right-color-ltr-source: physical;
    border-right-color-rtl-source: physical;
    border-right-color-value: #71383b;
    border-top-color: #71383b;
    color: #f8f8f8 !important;
    text-shadow: none;
}
.calculator .button:hover, .calculator input[type="submit"]:hover, .calculator input[type="button"]:hover, .calculator button.button-main:hover, .calculator .button:active, .calculator input[type="submit"]:active, .calculator input[type="button"]:active, .calculator button.button-main:active {
    background-color: #a05858;
    color: #f8f8f8 !important;
    text-shadow: none;
}

.savingsBannerBox {
	background-color: #daf7e0;
	color: #3b9652;
	font-size: 20px;
	line-height: 24px;
	padding: 20px 25px;
	margin-top: 30px;
	text-shadow: 0 1px 0 #447a56;
}

.competitorPrice .fa.fa-plus {
	margin-right: 7px;
	font-size: 16px;
	position: relative;
	top: -2px;
}

















/*-------------------------
CALCULATOR RESPONSIVE CSS 
--------------------------*/


/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.calculatorInputLabel {
		font-size: 18px;
		line-height: 18px;
	}
	.calculatorTitle {
		font-size: 24px;
		line-height: 24px;
	}
	.dimensionsInputSection .fa, .weightText {
		font-size: 30px;
	}
	.dimensionInputBox {
		width: 60px;
	}
	.calculator input[type="text"], .calculator input[type="number"] {
		font-size: 35px;
		padding: 10px 0px;
	}
	.button.large, .button .fa {
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.calculatorPageTitle {
		font-size: 40px;
		line-height: 44px;
	}
	.resultsTitle {
		font-size: 30px;
		line-height: 30px;
	}
	.resultsSavings {
		font-size: 110px;
		line-height: 110px;
	}
	.competitorPrice {
		font-size: 24px;
	}
	.competitorPrice .fa.fa-plus {
		font-size: 16px;
		top: -2px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.calculatorInputLabel {
		font-size: 15px;
		line-height: 15px;
	}
	.calculatorTitle {
		font-size: 22px;
		line-height: 22px;
	}
	.dimensionsInputSection .fa, .weightText {
		font-size: 28px;
	}
	.dimensionInputBox {
		width: 50px;
	}
	.calculator input[type="text"], .calculator input[type="number"] {
		font-size: 30px;
		padding: 10px 0px;
	}
	.button.large, .button .fa {
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.calculatorPageTitle {
		font-size: 36px;
		line-height: 40px;
	}
	.resultsTitle {
		font-size: 26px;
		line-height: 26px;
	}
	.resultsSavings {
		font-size: 90px;
		line-height: 90px;
	}
	.competitorPrice {
		font-size: 20px;
	}
	.competitorPrice .fa.fa-plus {
		font-size: 12px;
		top: -2px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.calculatorInputLabel {
		font-size: 18px;
		line-height: 18px;
	}
	.calculatorTitle {
		font-size: 24px;
		line-height: 24px;
	}
	.dimensionsInputSection .fa, .weightText {
		font-size: 28px;
	}
	.dimensionInputBox {
		width: 60px;
	}
	.calculator input[type="text"], .calculator input[type="number"] {
		font-size: 35px;
		padding: 10px 0px;
	}
	.button.large, .button .fa {
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.calculatorPageTitle {
		font-size: 34px;
		line-height: 38px;
	}
	.resultsTitle {
		font-size: 30px;
		line-height: 30px;
	}
	.resultsSavings {
		font-size: 100px;
		line-height: 100px;
	}
	.competitorPrice {
		font-size: 22px;
	}
	.competitorPrice .fa.fa-plus {
		font-size: 14px;
		top: -1px;
	}
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
	.calculatorInputLabel {
		font-size: 14px;
		line-height: 14px;
	}
	.calculatorTitle {
		font-size: 18px;
		line-height: 18px;
	}
	.dimensionsInputSection .fa, .weightText {
		font-size: 18px;
	}
	.dimensionInputBox {
		width: 45px;
	}
	.calculator input[type="text"], .calculator input[type="number"] {
		font-size: 25px;
		padding: 8px 0px;
	}
	.button.large, .button .fa {
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.calculatorPageTitle {
		font-size: 30px;
		line-height: 34px;
	}
	.resultsTitle {
		font-size: 24px;
		line-height: 24px;
	}
	.resultsSavings {
		font-size: 80px;
		line-height: 80px;
	}
	.competitorPrice {
		font-size: 18px;
	}
	.competitorPrice .fa.fa-plus {
		font-size: 13px;
		top: -2px;
	}
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
	.calculatorInputLabel {
		font-size: 12px;
		line-height: 12px;
	}
	.calculatorTitle {
		font-size: 16px;
		line-height: 16px;
	}
	.dimensionsInputSection .fa, .weightText {
		font-size: 18px;
	}
	.dimensionInputBox {
		width: 45px;
	}
	.calculator input[type="text"], .calculator input[type="number"] {
		font-size: 20px;
		padding: 5px 0px:
	}
	.button.large, .button .fa {
		height: 55px;
		line-height: 55px;
		font-size: 20px;
	}
	.calculatorPageTitle {
		font-size: 34px;
		line-height: 38px;
	}
	.resultsTitle {
		font-size: 22px;
		line-height: 22px;
	}
	.resultsSavings {
		font-size: 80px;
		line-height: 80px;
	}
	.competitorPrice {
		font-size: 18px;
	}
	.competitorPrice .fa.fa-plus {
		font-size: 10px;
		top: -2px;
	}
}








/*---------------------
GLOBAL CALCULATOR CSS 
----------------------*/

.last {
	margin-right: 0px;
}
