/* Basis */
body {
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: url('img/leaf-left.png'), url('img/leaf-right.png'), url('img/main_bg.jpg');
    background-repeat: no-repeat;
    background-size:114px 350px, 1000px 220px,  cover;
    background-position: top left, top right, top center;
}
body.bodybd {
	background: url('img/confetti-bd.png'), url('img/leaf-left.png'), url('img/leaf-right.png'), url('img/main_bg.jpg');
    background-repeat: no-repeat;
    background-size:1090px 770px, 114px 350px, 1000px 220px,  cover;
    background-position: top right, top left, top right, top center;
}
h1,h2,h3,h4,h5,h6,p{
	margin: 0;
	padding: 0;
}

.no-p{padding: 0;}
.highlight{color: #d80808;font-weight: 800;}

.cta {
    background-color: #78c729;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    width: 100%;
    display: block;
    font-size: 22px;
    line-height: 22px;
    font-weight: 800;
    padding-top: 16px;
    padding-bottom: 20px;
    border: 0;
    outline: none;
    outline-style: none;
    border-bottom: 2px solid #538d19;
    border-radius: 4px;
    margin-bottom: 17px;
}
.cta:visited, .cta:link {
	color: #ffffff;
	text-decoration: none;
	border: 0;
	outline : 0;
}
.cta:active {
	transform: scale(0.9);
	border: 0;
	outline : 0;
}
.nudge {
	font-size: 14px;
}

/* ============= FORMULIER CSS ================= */	
input-placeholder {
 	color:#8B8B8B;
 	font-size: 14px;
 	font-style: italic;
}
.errorbox, #postcodeError {
	float: left;
}
@media (max-width: 767px) {
 	.errorbox, #postcodeError {
 		width:100%;
	}
}
.errormachtiging {
 	float:left;
 	padding-left:30px;
}
li.error {
 	color:#EB8283;
 	font-size:14px;
 	list-style-type:none;
}
li.valid {
 	height:0;
 	color:#EB8283;
 	font-size:11px;
 	list-style-type:none;
}

/* ============= GESLACHT BUTTONS ================= */	
.geslachtlabel {
 	color: #999;
 	font-size: 14px;
 	font-weight: normal;
 	padding-left: 20px;
}
.form-geslacht input[type=radio] {
 	visibility: hidden;
 	width: 1px;
 	height: 1px;
 	cursor: pointer;
 	padding: 0px;
 	float:left;
 	margin-left:1px;
 	-moz-appearance: none; 
 	-webkit-appearance:none;
 	appearance:none;
}
.form-geslacht input[type=radio] + label {
 	color:#000000;
 	font-size:14px;
 	background-image: url(img/bullet_unchecked.png);
 	background-repeat:no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 5px;
 	padding-top: 10px;
 	padding-bottom: 10px;
    padding-left: 25px;
 	width: 100%;
 	max-width: 75px;
 	cursor: pointer;
 	-webkit-transition: all 0.2s ease-in-out;
 	-moz-transition: all 0.2s ease-in-out;
 	-o-transition: all 0.2s ease-in-out;
 	transition: all 0.2s ease-in-out;
}
.form-geslacht input[type=radio]:hover + label {
 	background-image: url(img/bullet.png);
}
.form-geslacht input[type=radio]:checked + label {
 	background: url(img/bullet.png) no-repeat;
 	background-size: 30px;
 	background-position: left -5px top 5px;
 	transition: 0.5s;
}

/* ============= CHECKBOX ================= */	
.form-checkbox input[type=checkbox] {
	visibility:hidden;
}
.form-checkbox .check-box {
 	width: 100%;
 	padding:1px 0 0 30px;
 	background-color: transparent;
 	position: relative;
 	display: inline-block;
 	-moz-box-sizing: border-box;
 	-webkit-box-sizing: border-box;
 	box-sizing: border-box;
 	background:url(img/checkbox.png) no-repeat left top;
 	background-size:17px 17px;
 	font-size:14px;
 	line-height:20px;
 	cursor: pointer;
}
.form-checkbox .check-box::before, .check-box::after {
 	-moz-box-sizing: border-box;
 	-webkit-box-sizing: border-box;
 	box-sizing: border-box;
 	position: absolute;
 	height: 0;
 	width: 3px;
 	background-color: #3399FF;
 	display: inline-block;
 	-moz-transform-origin: left top;
 	-ms-transform-origin: left top;
 	-o-transform-origin: left top;
 	-webkit-transform-origin: left top;
 	transform-origin: left top;
 	border-radius: 1px;
 	content: ' ';
 	-webkit-transition: opacity ease .5;
 	-moz-transition: opacity ease .5;
 	transition: opacity ease .5;
}
.form-checkbox .check-box::before {
 	top: 15px;
 	left: 9px;
 	box-shadow: 0 0 0 0px #ffffff;
 	-moz-transform: rotate(-135deg);
 	-ms-transform: rotate(-135deg);
 	-o-transform: rotate(-135deg);
 	-webkit-transform: rotate(-135deg);
 	transform: rotate(-135deg);
}
.form-checkbox .check-box::after {
 	top: 8px;
 	left: 0px;
 	-moz-transform: rotate(-45deg);
 	-ms-transform: rotate(-45deg);
 	-o-transform: rotate(-45deg);
 	-webkit-transform: rotate(-45deg);
 	transform: rotate(-45deg);
}
.form-checkbox input[type=checkbox]:checked + .check-box, .check-box.checked {
	border-color: #3399FF;
}
.form-checkbox input[type=checkbox]:checked + .check-box::after, .check-box.checked::after {
 	height: 12px;
 	-moz-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-o-animation: dothabottomcheck 0.2s ease 0s forwards;
 	-webkit-animation: dothabottomcheck 0.2s ease 0s forwards;
 	animation: dothabottomcheck 0.2s ease 0s forwards;
}
.form-checkbox input[type=checkbox]:checked + .check-box::before, .check-box.checked::before {
 	height: 30px;
 	-moz-animation: dothatopcheck 0.4s ease 0s forwards;
 	-o-animation: dothatopcheck 0.4s ease 0s forwards;
 	-webkit-animation: dothatopcheck 0.4s ease 0s forwards;
 	animation: dothatopcheck 0.4s ease 0s forwards;
}

/* ============= INPUT VELDEN ================= */	
.form-field input {
 	font-size:16px;
 	display:block;
 	width:100%;
 	border:none;
 	border:1px solid #d3d5d6;
 	height:45px;
 	margin:30px 0 5px 0;
 	padding:10px;
 	transition:0.4s ease all;
 	-moz-transition:0.4s ease all;
 	-webkit-transition:0.4s ease all;
 	-webkit-appearance:none;
}
.form-field input:focus, input.form-geboorte, input.form-datum {
	outline:none;
	border:1px solid #3399FF;
}
.form-field input.valid, input.form-geboorte, input.form-datum {
	border:1px solid #58c143;
}
.form-field input.error, input.form-geboorte, input.form-datum {
	border:1px solid #EB8283;
}
.adressconfirm {
 	font-size: 14px;
 	color: #6B6B6B;
}

/* ============= LABELS ================= */	
.form-field label {
 	color:#000000;
 	font-size:14px;
 	font-weight:normal;
 	position:absolute;
 	top:10px;
 	left:20px;
 	cursor: text;
}
.form-field input:required {
 	box-shadow:none;
}
@media(max-width: 767px){
	.mob-top{
		top: -20px!important;
	}
}

/* =============== VOORWAARDEN =================== */
.modal-container{
 	position: fixed;
 	background-color: rgba(0, 0, 0, 0.8);
 	background: rgba(0, 0, 0, 0.8);
 	color: rgba(0, 0, 0, 0.8);
 	z-index: 99999;
 	width: 100%;
 	height: 100%;
 	display: none;
}
.modal-block{
 	background-color: #ffffff;
 	width:50%;
 	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	display: block;
 	height: 50vh;
 	margin:auto;
 	padding:50px 50px 50px 50px;
 	font-family: 'Open Sans', Helvetica, Arial, sans-serif;
 	margin: auto;
 	position: absolute;
 	overflow: scroll;
}
.modal-close {
    position: fixed;
    color: #ffffff;
    padding-top: 8px;
    font-size: 30px;
    font-weight: 900;
    cursor: pointer;
    right: 24%;
    top: 23%;
    width: 60px;
    height: 60px;
    background-color: #3399FF;
    border-radius: 50px;
    text-align: center;
    z-index: 999999;
}
.form-open {
 	width: 90%;
 	transition:1s ease all;
 	-moz-transition:1s ease all;
 	-webkit-transition:1s ease all;
 	opacity:1;
}
.popuptitle {
 	font-weight:900;
 	font-size:30px;
 	margin-bottom:20px;
}
.fillvoorw{
	font-size: 14px;
	color: #000000;
}
@media(max-width: 992px){
	.modal-block{
		width: 70%;
	}
	.modal-close {
	    right: 11%;
    	top: 19%;
	}
}
@media(max-width: 767px){
	.modal-block{
		width: 100%;
	}
	.modal-close{
		top:15px;
		right:15px;
	}
	.modal-close {
	    right: 5%;
	    top: 20%;
	}
}

/*Keyframes Checkbox*/
@-moz-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@-webkit-keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothabottomcheck {
	0% {height: 0;}
 	100% {height: 11px;}
}
@keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-webkit-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}
@-moz-keyframes dothatopcheck {
	0% {height: 0;}
 	50% {height: 0;}
 	100% {height: 24px;}
}







header{

}
header img.logo{
    padding-top: 30px;
    position: relative;
    left: -25px;
    max-width: 290px;
}
header img.flag{
	width: 100%;
	height: auto;
	max-width: 310px;
}
@media(max-width: 767px){
	header img.logo{
		width: 100%;
		height: auto;
		max-width: 240px;
		left: 0;
	    padding-top: 15px;
	}
}

.w0{width: 0px!important;}
.w80{width: 80%!important;height: auto!important;}

.main-block{
	padding-bottom: 150px;
	height: 73vh;
}
.main-block .main{
	margin-top: 25px;
	background-color:#ffffff;
	height: 445px;
	width: 100%;
	transition: 2s all;
}
.main-block.bedankt .main{
	height: auto;
}
.main-block.bedankt .main p.sluiten{
	color: #0692d6;
}
.main-block .main .intro{
	padding: 45px;
}
.main-block.bedankt .intro a{
	background-color: #78c729;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	width: 100%;
	max-width: 320px;
	display: block;
	font-size: 22px;
	line-height: 22px;
	font-weight: 800;
	padding-top: 16px;
	padding-bottom: 20px;
	border-bottom: 2px solid #538d19;
	border-radius: 4px;
	margin-bottom: 17px;
}
.main-block .main h1{
	font-size: 42px;
	font-weight: 800;
	color: #000000;
	line-height: 56px;
	padding-bottom: 15px;
}
.main-block .main p{
	font-size:20px;
	color:#000000;
	line-height: 30px;
	padding-bottom:0px;
}
.main-block .main .button-container{
	width: 330px;
}
.main-block .main .button-container a{
	background-color: #78c729;
	color: #ffffff;
	text-align: center;
	text-decoration: none;
	width: 100%;
	display: block;
	font-size: 22px;
	line-height: 22px;
	font-weight: 800;
	padding-top: 16px;
	padding-bottom: 20px;
	border-bottom: 2px solid #538d19;
	border-radius: 4px;
	margin-bottom: 17px;
}
.main-block .main .button-container p{
	font-size:22px;
	color:#000000;
	line-height: 30px;
	font-weight: 800;
	text-align: center;
	padding-bottom: 0px;
}
.main-block .prijzen-container{
	position: relative;
}
.main-block .prijzen-container img.incentive{
    width: 740px;
    height: auto;
    position: absolute;
    bottom: -95px;
    left: -315px;
}
.main-block .prijzen-container img.centerparcs{
    width: 300px;
    height: auto;
    position: absolute;
    bottom: -95px;
    left: -315px;
}
.main-block .prijzen-container .philips3000{
	position: absolute;
    /*top: 60px;*/
    top: 495px;
    left: -15px;
    width: 470px;
    height: auto;
    z-index: 9;
    transition: 2s all;
}
.main-block .prijzen-container .sonosplay{
	position: absolute;
    /*top: 60px;*/
    top: 495px;
    left: -15px;
    width: 470px;
    height: auto;
    z-index: 9;
    transition: 2s all;
}
.main-block .prijzen-container .euro{
	position: absolute;
    left: -15px;
    width: 470px;
    height: auto;
    z-index: 9;
    transition: 2s all;
}
.main-block .bedankt-container{
	position: relative;
}
.main-block .bedankt-container img{
	width: 240px;
    height: auto;
    position: relative;
    left: -45px;
    top: 70px;
}
@media(max-width: 1450px){
	.main-block .prijzen-container img.incentive{
	    bottom: -95px;
	    width: 615px;
	}
	.main-block{
		padding-bottom: 150px;
		height: auto;
	}
}
@media(max-width: 1200px){
	.main-block .main h1 {
	    font-size: 32px;
	    line-height: 40px;
	}
	.main-block .main .intro{
		padding-right: 150px;
	}
	.main-block .prijzen-container img.incentive {
	    width: 565px;
	}
}
@media(max-width: 992px){
	header img.logo {
		padding-top: 25px;
	}
	.main-block .prijzen-container img.incentive {
	    width: 585px;
	    display: block;
	    margin: 0 auto;
	    left: 0;
	    right: 0;
	    bottom: -80px;
	}
	.main-block .bedankt-container img{
		display: block;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
	.w0{width: 100%!important;height: 0!important;}
	.w80{width: 100%!important;height: 100%!important;}
}
@media(max-width: 767px){
	body{
		background: url('img/main_bg.jpg');
	    background-repeat: no-repeat;
	    background-size: cover;
	    background-position: top center;
    }
	.main-block .main{
		margin-top: 15px;
	}
	.main-block .main .intro{
		padding-left: 15px;
		padding-right: 15px;
		padding-top: 30px;
	}
	.main-block .main h1 {
	    font-size: 26px;
	    line-height: 30px;
	}
	.main-block .main p {
	    font-size: 17px;
	    line-height: 25px;
	    padding-bottom: 15px;
	}
	.main-block .main .button-container{
		width: 100%;
	}
	.main-block .main .button-container p{
		font-size: 17px;
	    line-height: 25px;	
	}
	.main-block .prijzen-container img.incentive{
		width: 100%;
		height: auto;
		max-width: 585px;
	}
	.main-block .prijzen-container .sonosplay{
		width: 335px;
	}
}



.main-block .form-section{
	padding-top: 40px;
	padding-bottom: 40px;
	padding-left: 60px;
	padding-right: 50px;
	transition: 2s all;
}
.main-block .form-section h2{
	font-size:36px;
	color:#000000;
	line-height: 46px;
	padding-bottom: 20px;
	font-weight: 800;
}
.main-block .form-section h2 span{
	color: #d80808;
}
.main-block .form-section h3{
	font-size:26px;
	color:#000000;
	line-height: 32px;
	padding-bottom: 20px;
}
.main-block .form-section h4{
	font-size:20px;
	color:#000000;
	line-height: 26px;
	padding-bottom: 25px;
}
.main-block .form-section .cadeaus{
    margin-top: 35px;
    border: 1px solid #7c7c7c;
    border-radius: 5px;
    background-color: #fdfdfd;
    display: block;
    height: 180px;
    margin-bottom: 25px;
	padding-top: 25px;
    padding-bottom: 20px;
    position: relative;
}
.main-block .form-section .cadeaus h2 {
    font-size: 20px;
    line-height: 26px;
    font-weight: 700;
    padding-bottom: 5px;
}
.main-block .form-section .cadeaus h2 span{
    color: #74c624;
}
.main-block .form-section .cadeaus p{
    font-size: 14px;
    line-height: 18px;
}
.main-block .form-section .cadeaus p a{
	color: #000000;
	text-decoration: underline;
}
.main-block .form-section .cadeaus img.cadeau1 {
    position: absolute;
    width: 195px;
    height: auto;
    top: -23px;
    left: -40px;
}
.main-block .form-section .cadeaus img.cadeau1.cadeau2 {
    top: 5px;
}
.main-block .form-section .cadeaus img.cadeau1.cadeau3 {
    top: -5px;
    width: 155px;
}
.main-block .form-section .cadeaus .cCheckbox {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    content: '';
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 33px;
    height: 33px;
    background: #fcfcfc;
    border: 1px solid #a1a1a1;
    cursor: pointer;
    outline: none;
}
.main-block .form-section .cadeaus .cCheckbox:checked:after {
    content: '&nbsp;';
    background-repeat: no-repeat;
    color: rgba(0,0,0,0);
    content: '';
    position: absolute;
    left: 5px;
    top: -2px;
    background-image: url(img/check.png);
    background-size: 31px 32px;
    width: 31px;
    height: 32px;
}
.main-block .form-section .error-submit p{
	color: #EB8283;
	font-size: 14px;
}
.main-block .form-section .actievoorw p{
	font-size: 12px;
	color: #000000;
}

@media(max-width: 1200px){
	.main-block .form-section{
		padding-left: 25px;
		padding-right: 25px;
	}
	.main-block .form-section h2 {
	    font-size: 34px;
	}
}

@media (max-width: 767px){
	.main-block .form-section .cadeaus{
		padding-top: 10px;
	}
	.cadeaus {
	    height: inherit!important;
	    text-align: center;
	}
	.cadeaus img.cadeau1 {
		position: relative!important;
	    display: block;
	    margin: 0 auto;
	    top: -15px!important;
	    left: 10px!important;
	}
	.main-block .prijzen-container .philips3000{
		width: 340px;
	}
	.main-block .prijzen-container .sonos{
		width: 340px;
	}
	.main-block .prijzen-container .euro{
		width: 340px;
	}
	.main-block .form-section h2{
		font-size: 26px;
		line-height: 34px;	
	}
	.main-block .form-section h3{
		font-size: 19px;
		line-height: 26px;
	}
	.main-block .form-section h4{
		font-size: 19px;
		line-height: 26px;
	}
	.main-block .form-section{
		padding-left: 15px;
		padding-right: 15px;
	}
	.main-block .form-section .cadeaus img.cadeau1{
		left: 0!important;
		right: 0!important;
	}
}










footer{
	background-color:#ffffff;
	padding-top: 60px;
	padding-bottom: 70px;
}


