/*fonts*/
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-extralight.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-extralightit.woff') format('woff');
    font-weight: 100;
    font-style: italic;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-light.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-lightit.woff') format('woff');
    font-weight: 200;
    font-style: italic;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-it.woff') format('woff');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-semibold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-semiboldit.woff') format('woff');
    font-weight: 600;
    font-style: italic;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-boldit.woff') format('woff');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-black.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'source_sans_pro';
    src: url('fonts/sourcesanspro-blackit.woff') format('woff');
    font-weight: 800;
    font-style: italic;
}
/* Font: Hand of Sean */
@font-face {
    font-family: 'hand_of_sean_demoregular';
    src: url('fonts/handofseandemo.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*css reset*/

html, body, main, aside, article, section, header, footer, nav, h1, h2, h3, h4, h5, h6, p, img, a, .inputTitle, .p {
	margin: 0;
	padding: 0;
	border: 0;
}

a {
	text-decoration: none;
	cursor: pointer;
	color: black;
	border-color: transparent;
}



/*mainElements*/

html {

	margin: 0;
	padding: 0;
	border: 0;

}

body {
	margin: 0%;
	padding: 0;
	border: 0;
	font-family: "source_sans_pro","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
	font-weight: normal;
	font-size: 16px;
	line-height: 24px;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	margin-bottom: 0.5em;
	font-weight: normal;
}

h1 {
	font-size: 54px;
	line-height: 60px;
	z-index: 100;
}

h2 {
	font-size: 36px;
	line-height: 60px;
}

h3 {
	font-size: 26px;
	line-height: 36px;
}

p, h4 {
	font-size: 16px;
	line-height: 24px;
}

h4 {
	padding-bottom: 0;
}

.clickable {
	cursor: pointer;
}

textarea {
	font-family: "source_sans_pro","Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;
	overflow:hidden;
	overflow-y: hidden;
	overflow-x: hidden;
	padding: 0;
	width: 100%;
	background: none;
}

.bold {
	font-weight: bold;
}










/*flex*/

.flexRow,
.flexColumn {
	display: flex;
}

.flexColumn {
	flex-direction: column;
}

.flexWrap {
	flex-wrap: wrap;
}

.flexEnd {
	justify-content: flex-end;
}

.flexFull {
	justify-content: space-between;
}

.flexCenter {
	justify-content: center;
}

.flexAlignCenter {
	align-items: center;
}

.flex1 {
	flex: 1;
}

.flex2 {
	flex: 2;
}

.flex3em {
	flex-basis: 3em;
}






/*img*/

img {
	border: hidden;
}

.bgImage {
	-moz-background-size: contain;
	-o-background-size: contain;
	-webkit-background-size: 100% 100%;
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='path_relative_to_the_HTML_file', sizingMethod='scale')";
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	position: absolute;
}




/*header*/

header {
	position: relative;
	display: flex;
    width: 100%;
    height: 24px;
    padding: 18px 0 0;
    background: #3e3d40;
    z-index: 8000;
    transition: all 0.3s ease-out;
}

header .logo-shield {
	height: 166px;
    width: 149px;
    position: absolute;
    top: 22px;
    left: calc(50% - 75px);
    background: url("../images/svg/logo-shield.svg") top left/contain no-repeat;
    transition: transform 0.3s ease-out;
}

header .logo-shield:hover {
	transform: scale(1.05, 1.05);
}


/*content*/

main {
	position: relative;
	display: flex;
	flex-direction: column;
}

.grid {
	position: relative;
	padding-left: 3em;
	padding-right: 3em;
	padding-bottom: 3em;
}

.gridRow {
	position: relative;
	display: flex;
}

.gridUnit {
	padding: 1.5em 3em 0px;
}

.gridUnit h1 {
	margin: 20px 0 40px;
}

.content {
	position: relative;
	padding: 9.375em 0px;
	max-width: 90em;
	margin: 0 auto;
}

.grey {
	position: relative;
	background: #efeff0;
}

.grey > .content {
	z-index: 30;
	padding: 0px 0px 0px 0px;
}

.blueBG {
	background-color: #00b4b9;
}

.blueBG > .content {
	padding: 13em 0px 5em 0px;
}

.whiteBG {
	background-color: #ffffff;
}

.whiteBG > .content {
	padding: 4.675em 0px 6em 0px;
}

.whiteBG > .content h3 {
	margin: 0;
}

.whiteBG a.button {
	margin-top: 45px;
}

#ComparisonPageViewCalculationBtn {
	position: relative;
}

#ComparisonPageInfoPricesPictures {
	font-size: 16px;
	color: white;
	display: block;
	position: absolute;
}











/*btns*/

.transparentBtn {
	margin: 0;
	padding: 2em 1.5em 0em 1.5em;
}

.button {
	background-color: #3e3d40;
    border-color: #323133;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.125rem;
    padding: 0.9rem 3rem 0.8rem 1.5rem;
    background-image: url("../images/site/arrow-blue.png");
    background-position: center right 20px;
    background-repeat: no-repeat;
    transition: all 0.3s ease-out;
}

.button:hover {
	background-position: center right 10px;
}

#ComparisonPageContactUs {
	margin-top: 45px;
}








/*input (leaseplan documentation module contact-form)*/

.inputArea {
	position: relative;
	margin-bottom: 2em;
	width: 100%;
}

.inputArea h3 {
	margin: 10px 0 30px;
}

.inputTitle {
	position: relative;
	margin-bottom: 0.25em;
	font-weight: normal;
	pointer-events:none;
}

select {
	width: 100%;
	height: 3em;
	background-color: #E5E5E5;
	border: none;
	outline: none;
	margin: 0;
	padding: 0;
	padding-left: 3px;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	font-size: 1.2rem;
}

.selectField {
	position: relative;
	display: block;
	margin: 0;
	padding: 0;
	height: 2.5em;
	font-size: 1.4375rem;
}

.selectField:after {
	content: "";
	background: url("../images/site/drop-down-arrow.png") no-repeat;
	background-position: 22px 27px;
	position: absolute;
	top: 0;
	right: 0;
	width: 2.5em;
	height: 2.5em;
	background-color: #00b4b9;
	color: white;
	line-height: 2.5em;
	text-align: center;
	pointer-events: none;
	font-family: meta-normal-roman-regular;
}

option {
	position: relative;
	padding: 10px;
	height: 20px;
	box-sizing: unset;
}

input {
	line-height: normal;
}

input[type=text] {
	position: relative;
	width: 90%;
	width: calc(100% - 1em);
	height: 1.7em;
	padding: 0.5em;
	display: block;
	border: none;
	outline: none;
	-moz-appearance: none;
	background-color: #E5E5E5;
	box-shadow: 0px 0.2em 0px rgba(0, 0, 0, 0.2) inset;
	color: rgba(0, 0, 0, 0.7);
}


@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {  
  .selectField select::-ms-expand {
    display: none;
  }
  .selectField select:focus::-ms-value {
    background: transparent;
    color: #222;
  }
}  



.whiteArea,
.orangeArea,
.grayArea,
.borderArea {
	position: relative;
	background-color: white;
	padding: 1.5em;
}

.orangeArea {
	background-color: #F5821E;
}

.grayArea {
	background-color: #E5E5E5;
}

.borderArea {
	border: 1px solid #E5E5E5;
	border-top: none;
	border-bottom: none;
}

.borderArea h2,
.borderArea h3 {
	margin-bottom: 0;
}

.borderArea:first-child {
	padding-bottom: 0;
	padding-top: 0;
}

.borderArea:first-child {
	border-bottom: 1px solid #E5E5E5;
}

.borderArea:nth-child(odd) {
	background-color: #cbcccc;
}

.noPadding {
	padding: 0;
}

.orangeArea p {
	color: white;
}

.amount {
	position: relative;
	display: flex;
}

.compare * {
	margin-bottom: 0;
}













/*details*/

.summary,
.details {
	margin-right: 40px;
}

.summary {
	height: 50px;
	align-items: center;
}

.details {
	display: none;
	margin-top: 3em;
	transition: all 1.5s;
}

.icon {
	height: 100%;
}

.section {
	flex-basis: 20%;
	align-items: center;
}

.sectionTitle {
	margin-left: 30px;
}

.whiteTxt {
	color: white;
}

.centerTxt {
	text-align: center;
}

.sectionAmount {
	flex: 1;
	padding-left: 3em;
	padding-right: 3em;
}

.summary .sectionAmount {
	padding-right: 0;
}

.marginRight,
.textMarginRight {
	margin-right: 0.5em;
}










/*diamond*/

#diamondArea {
	position: absolute;
	top: -20px;
	right: 0;
	opacity: 0;
}

.diamondText {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	margin: 20px;
	margin-top: 25px;
	color: white;
	margin-bottom: 40px;
	
}

.diamondText h3 {
	font-size: 16px;
	line-height: 18px;
	width: 70%;
	margin-left: 15%;
	margin-bottom: 0;
	color: white;
}

.diamondText h2 {
	font-size: 22px;
	line-height: 24px;
	margin-bottom: 10px;
	margin-top: 10px;
	color: white;
}

.diamond {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	padding-bottom: 100%;
	background: #3d3e40;
	border-radius: 90px;
}




/*iconRadioBtn*/

.radioArea,
.checkboxArea  {
	position: relative;
	width: 100%;
	min-height: 33px;
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.radioBG,
.checkboxArea,
.checkboxBG {
	width: 100%;
	min-height: 33px;
	display: flex;
}

.radioBG {
	flex-direction: column;
}




/*checkbox*/

.hide {
	display: none;
}

.radioInactive,
.radioLabel,
.checkboxInactive,
.checkboxLabel,
.showboxInactive,
.showboxLabel {
	position: absolute;
	width: 33px;
	height: 33px;
}

.radioInactive,
.radioLabel {
	top: 0;
	left: 0;
}

.checkboxInactive,
.checkboxLabel,
.showboxInactive,
.showboxLabel {
	top: 1.5em;
	right: 1.5em;
}

.showboxInactive,
.showboxLabel {
	top: 35px;
	right: 1.5em;
	font-weight: bold;
}

.radioLabel,
.checkboxLabel,
.showboxLabel {
	cursor: pointer;
}

.radioInactive,
.checkboxInactive {
	background-image: url(../images/site/inactive.png);
}

.radioLabel,
.checkboxLabel {
	background: url("../images/svg/radio-blue.svg") no-repeat;
	background-size: contain;
	opacity: 0;
	height: 33px;
	width: 33px;
	background-position: 9px -7px;
}

.showboxLabel {
	opacity: 0;
	transition: opacity .5s;
}

.radioBG input[type=radio]:checked + label,
.showbox:checked ~ label {
	opacity: 1;
	margin-left: 0;
}

.showbox:checked ~ .showboxInactive {
	opacity: 0;
}

.showbox:checked ~ .details {
	display: flex;
}

.radioArea h4,
.radioArea p,
.checkboxBG h4,
.checkboxBG p,
.radioArea .bigInputBlock,
.checkboxBG .bigInputBlock {
	position: relative;
	margin: 0;
	padding: 0;
	margin-left: 40px;
	margin-top: 5px;
}


/*footer*/

footer .logo-shield {
	height: 166px;
    width: 149px;
    position: absolute;
    top: -70px;
    left: calc(50% - 75px);
    background: url("../images/svg/logo-shield.svg") top left/contain no-repeat;
    transition: transform 0.3s ease-out;	
}

footer .logo-shield:hover {
	transform: scale(1.05, 1.05);
}

footer ul {
	list-style: none;
	text-align: center;
}

footer li.title {
	margin-bottom: 1.7rem;
}

footer ul li {
	color: #fff;
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1.45rem;
}

footer ul li a {
	color: #fff;
    font-size: 1.25rem;
    font-weight: 300;
    transition: all 0.3s ease-out;
}

footer ul li a:hover {
	color: #00b4b9;
}

footer .flex1 {
	padding: 3em;
	flex-basis: 25%;
}

.hide {
	display: none !important;
}


@media only screen and (max-width: 1024px) {

	h1 {
		font-size: 3.375em;
		/*line-height: 4em;*/
	}

	h2 {
		font-size: 1.625em;
		/*line-height: 2em;*/
	}

	h3 {
		font-size: 1.1em;
		/*line-height: 1.2em;*/
	}

	p, h4 {
		font-size: 1em;
		/*line-height: 1.1em;*/
	}

	.gridRow {
		flex-direction: column;
		margin-bottom: 10px;
	}

	.gridRow > .flex1 {
		flex: none;
	}

	.selectedImg {
		position: relative;
		height: 200px;
		width: 100%;
		flex: none;
	}

	.selectField:after {
		background-position: 17px 22px;
	}

	#breakdown > .gridUnit,
	#breakdown > .grid {
		padding-left: 0;
		padding-right: 0;
	}

}

@media only screen and (max-width: 768px) {

	h1 {
		font-size: 2.875em;
		/*line-height: 4em;*/
	}

	h2 {
		font-size: 1.5em;
		/*line-height: 2em;*/
	}

	h3 {
		font-size: 1.1em;
		/*line-height: 1.2em;*/
	}

	.sectionAmount h3 {
		font-size: 1em;
		line-height: 1.2em;
	}

	p, h4 {
		font-size: 1em;
		/*line-height: 1.1em;*/
	}

	.showboxInactive,
	.showboxLabel {
		display: none;
	}

	.selectField:after {
		background-position: 17px 22px;
	}

	.section {
		flex-basis: 30%;
	}

	.sectionTitle {
		margin-left: 15px;
		font-size: 1em;
		line-height: 1.2em;
	}

	.summary {
		margin-right: 5px;
	}

	#YearsMileage {
		flex-direction: column;
	}

	#YearsMileage > .flex1 {
		flex: none;
	}

	#YearsMileage > .flex3em {
		display: none;
	}

	#financeMethod {
		flex-direction: column;
	}

	#compareBtn {
		justify-content: flex-end;
	}

	.whiteBG > .content {
		padding: 0 0 40px 0;
	}

	footer {
		display: none;
	}

}


@media only screen and (max-width: 640px) {
	.grid {
		padding: 0;
	}

	.gridUnit {
		padding: 1.5em 1.5em 0px;
	}

	.blueBG > .content {
		padding: 3em 0px 1em 0px;
	}

	.grey .gridUnit h2 {
		text-align: center;
	}

	.whiteBG {
		text-align: center;
	}

	.borderArea {
		padding: 1.5em 0px 1.5em 0px;
	}

	.sectionTitle {
		font-size: 0.875em;
	}

	.sectionAmount h3 {
		font-size: 0.875em;
	}

	.sectionAmount .amount h2 {
		font-size: 1.2em;
	}

	.sectionAmount {
		padding-left: 1.4em;
	}

	.icon {
		display: none;
	}

	header .logo-shield {
		height: 78px;
	    width: 70px;
	    top: 10px;
	    left: calc(50% - 35px);
	}

	#ComparisonPageViewCalculationBtn {
		margin-bottom: 60px;
	}
}

