/* GENERAL STYLING */

html {
	overflow-x:hidden;
}

body {
	overflow-x:hidden;
	background-color:#fff;
	
	font-family: 'Lato', sans-serif;
	font-size:15px;
	line-height:26px;
	color:#000000;
	
	display: table;
    height: 100%;
    position: relative;
    width: 100%;
	
}

/* IMG */
img {
	max-width:100%;
	height:auto;
	image-rendering: -webkit-optimize-contrast;
}


/* TEXT GENERAL */

h1, h2, h3, h4, h5, h6 {
	font-weight:bolder;
	text-transform:uppercase;
	margin:0 0 30px 0;
}

h1 {
	font-size:36px;
	line-height:40px;
}

h2 {
	font-size:30px;
	line-height:35px;
}

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

h4 {
	font-size:24px;
	line-height:28px;
}

h5 {
	font-size:20px;
	line-height:24px;
}

h6 {
	font-size:18px;
	line-height:24px;
}

p {
	margin:0 0 30px 0;
}

address {
	margin:0 0 30px 0;
}

mark {
	background:none;
}





@media(max-width:767px){
	body {
		font-size:14px;
	}
	h1 {
		font-size:26px;
		line-height:30px;
	}

	h2 {
		font-size:22px;
		line-height:26px;
	}

	h3 {
		font-size:20px;
		line-height:24px;
	}

	h4 {
		font-size:18px;
		line-height:22px;
	}

	h5 {
		font-size:16px;
		line-height:20px;
	}

	h6 {
		font-size:14px;
		line-height:18px;
	}
	
	
}

@media(min-width:768px){
	
}

@media(min-width:992px){
	
}

@media(min-width:1200px){
	
}




/* LINKS GENERAL */

a {
	color:#3f3f3f;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

a:link {
	text-decoration:underline;
	color:#3f3f3f;
}
a:visited {
	text-decoration:underline;
	color:#3f3f3f;
}
a:hover {
	text-decoration:none;
	color:#3f3f3f;
}
a:active {
	text-decoration:none;
	color:#3f3f3f;
}


/* TABLE */
table {
	display:table;
	margin: 0 0 10px 0;
	font-weight:400;
	max-width:100%;
	vertical-align:middle;
	table-layout:fixed;
}

table label {
	width:auto;
}

table tr {
	display:table-row;
}

table tr td:first-child {
	padding:0 0 0 0;
}

table thead {
	padding: 0 0 30px 0;
}

table tr td {
	padding:0px 10px;
	display:table-cell;
}

table th {
	text-align:left;
	padding:0px 10px;
	display:table-cell;
	color: #3b67a6;
	font-weight:bold;
}
table th:first-child {
	padding:0 10px 0 0;
}



/* INVOERVELDEN */

input, select {
    height: 45px;
    padding: 0 45px 0 15px;
    background: #ffffff;
	border:2px solid #d3d3d3;
	min-width:190px;
	max-width:100%;
	border-radius:0px;
}

textarea {
    position: relative;
    float: left;
    height: 200px;
    padding: 15px;
    outline: none;
	width:100%;
	background: #ffffff;
	border:2px solid #d3d3d3;
}

input:focus, select:focus, textarea:focus {
    outline: none;
	border:2px solid #e30613;
}
button:focus {
	outline:none;
}


input[type="checkbox"], input[type="radio"] {
	position:relative;
	float:left;
	height:auto;
	width:auto;
	margin:7px 4px 4px 0;
	min-width:inherit;
}


button, html input[type="button"], input[type="reset"], input[type="submit"] {
	background-color: inherit;
    color: #000;
	border:2px solid #000;
    float: left;
	height:auto;
    padding: 13px 25px;
    font-size: 14px;
    line-height: 14px;
    font-weight: bolder;
    font-style: normal;
    text-transform: uppercase;
	
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

button:hover, html input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover {
	color: #fff;
	background-color: #000;
}


label {
    position: relative;
    float: left;
    width: auto;
	min-width: 200px;
	max-width:200px;
}

select {
        /*for firefox*/
        -moz-appearance: none;
        /*for chrome*/
        -webkit-appearance:none;
		background-image:url('../images/arrow-down-select-bg.png');
		background-repeat:no-repeat;
		background-position:center right;
		background-size:45px;
}

/*for IE10*/
select::-ms-expand {
    display: none;
}

/* BUTTONS ETC */
.button {
	background-color: inherit;
    color: #1d1d1b;
	border:3px solid #b9b2ab;
    float: left;
	height:auto;
    padding: 28px 28px;
    font-size: 18px;
    line-height: 18px;
    font-weight: bolder;
    font-style: normal;
    text-transform: uppercase;
	
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.button:link {
	background-color: inherit;
    color: #1d1d1b;
	text-decoration:none;
}
.button:visited {
	background-color: inherit;
    color: #1d1d1b;
	text-decoration:none;
}
.button:hover {
	background-color: #b9b2ab;
    color: #fff;
	text-decoration:none;
}
.button:active {
	background-color: #b9b2ab;
    color: #fff;
	text-decoration:none;
}




/* GRAVITY FORMS */
.gform_wrapper {
    position: relative;
    float:left;
    width: 100%;
}
.gform_wrapper form {
	position:relative;
	float:left;
	width: 100%;
}

.gform_body {
	position:relative;
	float:left;
	width: 100%;
}

.gform_wrapper ul {
    position: relative;
    float: left;
	width:100%;
    margin: 0;
    list-style-type: none;
}

.gform_wrapper ul li {
    position: relative;
    float: left;
	width:100%;
	line-height:30px;
	margin:0 0 10px 0;
}


.gform_wrapper ul li.half {
	width:50%;
	padding-right:20px;
}

.gform_wrapper ul li.half:nth-child(2n+2) {
	padding-right:0px;
}

.gform_wrapper ul li.half .gfield_label {
	width:100%;
}

.gform_wrapper ul li.half .instruction {
	display:none;
}
.gform_wrapper ul li.half .ginput_container {
	width:100%;
}

.gform_wrapper ul li.half  .gfield_description {
	position:relative;
	float:left;
	width:100%;
}

.gform_wrapper ul li.half  .validation_message {
	width:auto;
	left:0;
}

.gform_wrapper ul li.half .ginput_container input {
	width:100%;
	min-width:inherit;
}

.gfield_label {
    position: relative;
    float: left;
    min-width:inherit;
	max-width:inherit;
	width:30%;

	padding-right:10px;
    line-height: 45px;
    font-weight: 600;
}

.gform_wrapper .ginput_container {
    position: relative;
    float: left;
	width:70%;
}

.gform_wrapper .ginput_container_singleproduct {
	position:relative;
	float:left;
}

.gform_wrapper .ginput_container_singleproduct input {
	float:left;
}

.gform_wrapper input, .gform_wrapper select {
	width:100%;
}

.gform_wrapper input[type="checkbox"], .gform_wrapper input[type="radio"] {
	width:auto;
}

.gform_wrapper input[type="submit"] {
	width:auto;
	margin-left:30%;
}

.ginput_quantity_label {
	position:relative;
	float:left;
	margin: 0 10px 0 30px;
}
.ginput_product_price_label {
	position:relative;
	float:left;
}
.ginput_product_price {
	position:relative;
	float:left;
	font-weight:bold;
}

.gfield_required {
    color: red;
}

.gfield_radio {
	position:relative;
	float:left;
}

.gfield_radio li {

}

ul.gfield_checkbox li {
	margin:0 0 0 0;
}
ul.gfield_radio li {
	margin:0 0 0 0;
}





/* GRAVITY FORMS MELDINGEN */

.validation_error {
    position: relative;
    float: left;
    width: 100%;
    padding: 15px;
    background: #bb4646;
    color: #fff;
    margin: 0 0 20px 0;
}

.gform_wrapper .validation_message.gfield_description {
    background-color: #bb4646;
    clear: both;
    color: #FFF;
    float: left;
    left: 30%;
    padding: 0px 10px;
    position: relative;
    margin: 14px 0 0 0;
    font-size: 12px;
	line-height:24px;
    margin-top: 10px;
}

.gform_wrapper .validation_message.gfield_description:before {
    border: solid transparent;
    border-color: rgba(255,255,255,0);
    border-bottom-color: #bb4646;
    border-width: 7px;
    bottom: 100%;
    content: " ";
    left: 50%;
    margin-left: -7px;
    pointer-events: none;
    position: absolute;
    height: 0;
    width: 0;
}





@media(max-width:767px){
	.gfield_label {
		width:100%;
	}
	.gform_wrapper .ginput_container {
		width:100%;
	}
	.gform_wrapper input[type="submit"] {
		margin-left:0;
	}
	.gform_wrapper .validation_message.gfield_description {
		left:0;
	}
}


@media(min-width:768px){
	
}

@media(min-width:992px){
	
}

@media(min-width:1200px){
	
}

/* END GENERAL */



/* HEADER */

.header {
	position: relative;
	float: left;
	width: 100%;
	padding: 15px 0;
}


/* MAIN NAV */

.main-nav {
	position: relative;
	float: left;
}

.main-nav ul {
	padding: 33px 0;
	margin: 0;
	float: right;
}

.main-nav ul li {
	float:left;
	list-style-type: none;
	margin: 0 15px 0 0;
}

.main-nav ul li a {
	float: left;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
	padding: 15px 10px;
	font-weight: bolder;
}

.main-nav ul li a:link {
	color: #1d1d1b;
	text-decoration: none;
	border:3px solid #fff;
}

.main-nav ul li a:visited {
	color: #1d1d1b;
	text-decoration: none;
	border:3px solid #fff;
}

.main-nav ul li a:hover {
	color: #1d1d1b;
	text-decoration: none;
	border:3px solid #1d1d1b;
}

.main-nav ul li a:active {
	color: #1d1d1b;
	text-decoration: none;
	border:3px solid #1d1d1b;
}


.main-nav ul li.current_page_item a:link {
	border:3px solid #1d1d1b;
}
.main-nav ul li.current_page_item a:visited {
	border:3px solid #1d1d1b;
}


.main-nav ul li.current-page-ancestor a:link {
	border:3px solid #1d1d1b;
}
.main-nav ul li.current-page-ancestor a:visited {
	border:3px solid #1d1d1b;
}

@media(max-width:767px){
	.main-nav ul {
		width: 100%;
		padding:0;
	}
	.main-nav ul li {
		width: 100%;
		margin:0;
	}
	.main-nav ul li a {
		padding:3px 10px;
		font-size: 15px;
		line-height: 15px;
	}

}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}


/* HOMEPAGE SLIDESHOW */
.home-slideshow {
	position: relative;
	float: left;
	width: 100%;
}

.home-slideshow .slides {
	position: relative;
	float: left;
	width: 100%;
	margin:0;
}

.home-slideshow .slides li {
	position: relative;
	float: left;
	width: 100%;
	list-style-type: none;
}

.home-slideshow figure {
	position: relative;
	float: left;
	width: 100%;
	height: 775px;
	background-size: cover;
	background-position: center center;
}

.home-slideshow figure img {
	display: none;
}

.home-slideshow .overlay-text {
	position: absolute;
	width: 700px;
	max-width: 100%;
	top: 200px;
	left:50%; 
	margin-left: -350px;
	z-index: 777;
	padding: 60px 80px;
	background-color: rgba(255,255,255,0.89);
}





@media(max-width:767px){
	.home-slideshow figure {
		height: 400px;
	}
	.home-slideshow .overlay-text {
		position: relative;
		float: left;
		width: 100%;
		margin-left: 0px;
		left: 0;
		top: 0;
		padding: 0 0 20px 0;
	}
	.home-slideshow .overlay-text p {
		margin:0;
	}


}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}




/* USPS HOME */

.usp-home {
	position: relative;
	float: left;
	width: 100%;
	padding: 80px 0;
}

.usp-home h2 {
	text-align: center;
	margin: 0 0 80px 0;
}

.usps {
	position: relative;
	float: left;
	width: 100%;
	margin:0 0 40px 0;
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
	box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
}

.usp-home p {
	font-size:22px;
	line-height:32px;
	text-align:center;
	font-weight:bold;
}
.usps ul {
	position: relative;
	float: left;
	width: 50%;
	margin:0;
	padding: 60px;
}

.usps ul li {
	list-style-type: none;
	color: #fff;
	font-size: 18px;
	line-height: 24px;
	margin-bottom:20px;
	z-index: 5;
}

.usps ul li i {
	font-size: 24px;
	line-height: 24px;
}

.usps ul.red {
	width: 45%;
	background-color: #e30613;
}
.usps ul.red::before {
	content: '';
	background-color: #e30613;
	width: 200px;
	height: 100%;
	position: absolute;
	left: 76%;
	top: 0;
	z-index: 4;
	border-right: 6px solid #fff;

	-moz-transform: skewX(-30deg);
	-webkit-transform: skewX(-30deg);
	-o-transform: skewX(-30deg);
	-ms-transform: skewX(-30deg);
	transform: skewX(-30deg);

}


.usps ul.grey {
	width: 55%;
	background-color: #b9b2ab;
	padding-left: 150px;
}


@media(max-width:767px){
	.usp-home {
		padding:40px 0;
	}

	.usp-home h2 {
		margin: 0 0 40px 0;
	}

	.usps ul.red {
		width: 100%;
		padding:20px;
	}
	.usps ul.red::before {
		display: none;
	}
	.usps ul.grey {
		width: 100%;
		padding:20px;
	}
}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}




/* PRODUCTEN HOME */
.producten {
	position: relative;
	float: left;
	width: 100%;
}

.producten .row {
	margin-left: -40px;
    margin-right: -40px;
}

.product-wrap {
	position: relative;
	float: left;
	padding-left: 40px;
	padding-right: 40px;
	margin: 0 0 40px 0;
}

.titel-wrap {
	padding-left: 40px;
	padding-right: 40px;
	text-align: center;
	margin-bottom: 80px;
}

.product-foto {
	position: relative;
	float: left;
}

.product {
	position: relative;
	float: left;
	width: 100%;
	border:2px solid #b9b2ab;
}

.product-foto {
	position: relative;
	float: left;
	width: 100%;
	height: 260px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.product-foto img {
	display: none;
}

.product-content {
	float: left;
	padding:30px 20px;
}

.product-content p {
	margin:0 0 30px 0;
}

.product-content h4 {
	text-transform: inherit;
	font-size: 20px;
	margin:0 0 0 0;
}

.product .button {
	width: 100%;
	text-align: center;
}

@media(max-width:767px){
	.titel-wrap {
		margin-bottom: 40px;
	}
	.titel-wrap {
		margin-bottom: 0;
	}
}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}




/* CTA HOME */
.cta-home {
	position: relative;
	float: left;
	width: 100%;
	padding: 50px 0 80px 0;
}

.ctas {
	position: relative;
	float: left;
	width: 100%;
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
    box-shadow: 0px 0px 18px 0px rgba(0,0,0,0.35);
}

.cta-red {
	position: relative;
	float: left;
	width: 45%;
	color: #fff;
	background-color: #e30613;
	text-align: center;
	font-size: 21px;
	line-height: 21px;
	text-transform: uppercase;
	font-weight: bold;
	padding:50px 0;
}

.cta-red::before {
    content: '';
    background-color: #e30613;
    width: 200px;
    height: 100%;
    position: absolute;
    left: 76%;
    top: 0;
    z-index: 4;
    border-right: 6px solid #fff;
    -moz-transform: skewX(-30deg);
    -webkit-transform: skewX(-30deg);
    -o-transform: skewX(-30deg);
    -ms-transform: skewX(-30deg);
    transform: skewX(-30deg);

    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

}

.cta-red:link {
	color: #fff;
	background-color: #e30613;
	text-decoration: none;
}

.cta-red:visited {
	color: #fff;
	background-color: #e30613;
	text-decoration: none;
}

.cta-red:hover {
	color: #fff;
	background-color: #d20713;
	text-decoration: none;
}

.cta-red:hover::before {
	background-color: #d20713;
}	

.cta-red:active {
	color: #fff;
	background-color: #d20713;
	text-decoration: none;
}

.cta-red:active::before {

}

.cta-black {
	position: relative;
	float: left;
	width: 55%;
	color: #fff;
	background-color: #1d1d1b;
	text-align: center;
	font-size: 21px;
	line-height: 21px;
	text-transform: uppercase;
	font-weight: bold;
	padding:50px 0;
}


.cta-black:link {
	color: #fff;
	background-color: #1d1d1b;
	text-decoration: none;
}

.cta-black:visited {
	color: #fff;
	background-color: #1d1d1b;
	text-decoration: none;
}

.cta-black:hover {
	color: #fff;
	background-color: #000;
	text-decoration: none;
}
.cta-black:active {
	color: #fff;
	background-color: #000;
	text-decoration: none;
}


@media(max-width:767px){

	.cta-home {
		padding:0 0 30px 0;
	}

	.cta-red {
		width: 100%;
		padding:20px 0;
		font-size: 16px;
		line-height: 16px;
	}
	.cta-black {
		padding: 20px 0;
		font-size: 16px;
		line-height: 16px;
	}
	.cta-red::before {
		display: none;
	}
	.cta-black {
		width: 100%;
	}
}

@media(min-width:768px){

	.cta-red {
		width: 40%;
	}
	.cta-red::before {
		left:80%;
		width: 140px;

	}
	.cta-black {
		width: 60%;
	}

}

@media(min-width:992px){
	.cta-red {
		width: 45%;
	}
	.cta-red::before {
		left: 88%;
    	width: 100px;

	}
	.cta-black {
		width: 55%;
	}
}

@media(min-width:1200px){

}


/* FOOTER */

.footer {
	position: relative;
	float: left;
	width: 100%;
	color: #fff;
	background-color: #b9b2ab;
}

.footer a {
	color: #fff;
}

.footer p {
	color: #fff;
}

.footer .widget {
	position: relative;
	float: left;
	margin:60px 0;
}

.footer .widget h4 {
	position: relative;
	float: left;
	width: 100%;
	color: #fff;
	font-weight: bold;
	text-transform: inherit;
	font-size: 16px;
	line-height: 16px;
	margin:0 0 40px 0;
}

.footer .widget h4::after {
	content:'';
	position: absolute;
	top: 35px;
	left: 0px;
	width: 40px;
	height: 3px;
	background-color: #fff;
}

.footer .widget ul {
	position: relative;
	float: left;
	width: 100%;
	margin:0;
}

.footer .widget ul li {
	position: relative;
	float: left;
	width: 100%;
	list-style-type: none;
}

.footer .widget ul li a {
	color:#fff;
	text-decoration: none;
}

.footer .widget ul li a:link {
	color:#fff;
	text-decoration: none;
}

.footer .widget ul li a:visited {
	color:#fff;
	text-decoration: none;
}
.footer .widget ul li a:hover {
	color:#fff;
	text-decoration: underline;
}
.footer .widget ul li a:active {
	color:#fff;
	text-decoration: underline;
}


@media(max-width:767px){
	.footer .widget {
		margin:30px 0 0 0;
	}
}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}



/* PRODUCTEN PAGE */

.page-template-product-overview .producten {
	padding:70px 0 0 0;
}
.page-template-product-overview .titel-wrap {
	text-align: left;
}

/* PAGE WRAP */
.page-wrap {
	position: relative;
	float: left;
	width: 100%;
	padding:50px 0;
}



@media(max-width:767px){
	.page-wrap {
		padding:10px 0 30px 0;
	}
}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}

/* PRODUCTPAGINA */
.product-gallery {
	position: relative;
	float: left;
	margin:0 0 30px 0;
}

.product-gallery ul {
	position: relative;
	float: left;
	width: 100%;
	margin:0;
	list-style-type: none;
}

.product-gallery ul li {
	position: relative;
	float: left;
	width: 100%;
}
.product-gallery ul li figure {
	position: relative;;
	float: left;
	width: 100%;
	height: 555px;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.product-gallery ul li figure img {
	display: none;
}


/* CONTROLS */

.product-gallery .bx-controls {
	
}

.product-gallery .bx-controls-direction a {
	position: absolute;
    top: 50%;
    margin-top: -15px;
    outline: 0;
    width: 31px;
    height: 31px;
    z-index: 999;
}
.product-gallery .bx-controls-direction a:link {
	color:#fff;
	background-color:#e30613;
}
.product-gallery .bx-controls-direction a:visited {
	color:#fff;
	background-color:#e30613;
}
.product-gallery .bx-controls-direction a:hover {
	color:#fff;
	background-color:#d20511;
}
.product-gallery .bx-controls-direction a:active {
	color:#fff;
	background-color:#d20511;
}


.product-gallery .bx-controls-direction a i {
	position:relative;
	float:left;
	width:100%;
	font-size:23px;
	line-height:30px;
	text-align:center;
	
}

.product-gallery .bx-prev {
	left:15px;
}
.product-gallery .bx-next {
	right:15px;
}


@media(max-width:767px){
	.product-gallery ul li figure {
		height: 300px;
	}
}

@media(min-width:768px){

}

@media(min-width:992px){

}

@media(min-width:1200px){

}