/*======================
   01. Google fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:wght@400;500;600;700;800&display=swap');

/*======================
   02. Basic css
========================*/
html{
	font-size: 62.5%;
}
a,
button{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	text-align: center;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.357;
	font-family: 'Albert Sans', sans-serif;
	background-color: #fff;
	color: #5A502E;
	font-size: 2.2rem;
	font-weight: 400;
	overflow-x: hidden;
}

ol,
ul {
	list-style: none;
}

a:hover {
	text-decoration: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus{
	outline: none;
}

/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: #5A502E;
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	margin-left: 3rem;
}
.hamburger-menu span {
	background: #5A502E;
	width: 4.5rem;
	height: .45rem;
	display: block;
	margin: .8rem 0;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(245%) rotate(135deg);
	-ms-transform: translateY(245%) rotate(135deg);
	transform: translateY(245%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-325%) rotate(-135deg);
	-ms-transform: translateY(-325%) rotate(-135deg);
	transform: translateY(-325%) rotate(-135deg);
}

header {
	background-color: #fff;
	padding: 3rem 0;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
}
header .button{
	padding: 1.9rem 3rem 1.9rem 2.5rem;
	margin-right: 1.4rem;
}
header .button img{
	width: 2.8rem;
	margin-left: 1.6rem;
}
header .button .badge {
	height: 3.7rem;
	width: 3.7rem;
	border-radius: 50%;
	background-color: #5A502E;
	text-align: center;
	line-height: 2.9rem;
	font-weight: 700;
	font-size: 2rem;
	position: absolute;
	top: -1rem;
	right: -1.4rem;
}
.logo{
	display: inline-block;
	width: 100%;
	max-width: 37.5rem;
}
#menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
#menu li a {
	font-size: 2.8rem;
	color: #5A502E;
	padding: 0 3.8rem;
	font-weight: 700;
}
#menu>ul>li>a.active,
#menu>ul>li>a:hover {
	color: #CAB900;
}
li.active, li.active a, #menu li.active a{
	color:#CAB900 !important;
}
.dropdown_wrap{
	position: relative;
}
.dropdown_menu{
	position: absolute;
	top: 100%;
	left: 0;
	background-color: #fff;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
	padding: 1.2rem 0;
	transition: 0.3s;
	opacity: 0;
	pointer-events: none;
}
.dropdown_wrap:hover .dropdown_menu{
	opacity: 1;
	pointer-events: all;
}
#menu .dropdown_menu li a {
	font-size: 2.6rem;
	white-space: nowrap;
	padding: 1.2rem 3.8rem;
	display: block;
	text-align: left;
}
#menu .dropdown_menu li a:hover{
	background-color: #CAB900;
	color: #fff;
}

ol.c-steps-5 li.active a, ol.c-steps-5 li.active{
	color:#fff !important;
}

.button{
	background-color: #CAB900;
	border-radius: 18rem;
	font-size: 2.2rem;
	font-weight: 300;
	color: #fff !important;
	position: relative;
	z-index: 1;
	text-align: center;
	line-height: 1.23;
	padding: 1.9rem 4rem;
	border: none;
}
.button:hover{
	background-color: #5A502E;
}
.home_slider .item {
	padding: 10rem 10rem 16rem;
	color: #fff;
	position: relative;
	z-index: 1;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height:660px;
}
.home_slider .item::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 50%;
	z-index: -1;
	background: -webkit-gradient(linear, left top, right top, from(rgba(0,0,0,1)), to(transparent));
	background: -o-linear-gradient(left, rgba(0,0,0,1) 0%, transparent 100%);
	background: linear-gradient(90deg, rgba(0,0,0,1) 0%, transparent 100%);
}
.home_content{
	max-width: 53rem;
}
.home_content h2{
	font-size: 6rem;
	font-weight: 700;
	line-height: 1.22;
}
.home_content p{
	font-size:2.2rem;
	line-height:1.6;
}
.brand_img{
	width: 32.8rem;
	position: absolute;
	right: 6.5rem;
	bottom: 6.5rem;
}
.home_slider .owl-dots{
	position: absolute;
	left: 0;
	width: 100%;
	bottom: 5rem;
	text-align: center;
}
.home_slider .owl-dots button{
	height: 1.5rem;
	width: 1.5rem;
	border: 0.2rem solid #fff;
	border-radius: 50%;
	padding: .1rem;
	margin: 0 0.875rem;
	background-color: transparent;
}
.home_slider .owl-dots button.active{
	background-color: #fff;
}

.box{
	padding: 5rem 5rem 6.5rem 5rem;
	color: #fff;
	min-height: 56rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.background{
	height: 100%;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -2;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.box:hover .background{
	-webkit-transform: scale(1.2);
	    -ms-transform: scale(1.2);
	        transform: scale(1.2);
}
.box::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background: -o-linear-gradient(317deg, rgba(90,80,46,1) 0%, transparent 100%);
	background: linear-gradient(133deg, rgba(90,80,46,1) 0%, transparent 100%);
}
.box h4{
	font-size: 4.4rem;
	font-weight: 700;
}
.box p{
	font-size: 2.2rem;
	max-width: 40rem;
	line-height: 1.6;
}
.title_wrapper{
	margin-top: 13rem;
}
.title_wrapper h2{
	font-size: 4.4rem;
	font-weight: 700;
}
.link{
	font-size: 2.2rem;
	font-weight: 700;
	color: #5A502E;
}
.link img{
	margin-left: 1.8rem;
	width: 3.3rem;
}
.link:hover{
	color: #CAB900;
}
.link:hover img{
	-webkit-filter: invert(68%) sepia(68%) saturate(2097%) hue-rotate(17deg) brightness(99%) contrast(103%);
	        filter: invert(68%) sepia(68%) saturate(2097%) hue-rotate(17deg) brightness(99%) contrast(103%);
}
.product_img{
	height: 43.4rem;
	border: .1rem solid #707070;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	position: relative;
	overflow: hidden;
}
.product_img img{
	max-height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	   transition: 0.3s;
}
.product_box:hover .product_img img{
	transform: scale(1.1);
}
.product_content{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.product_content h4{
	font-size: 3.2rem;
	font-weight: 700;
	margin-top: 2.8rem;
}
.product_content p{
	text-align: center;
	max-width: 34rem;
	min-height: 8.4rem;
	margin-top: 2rem;
	font-size: 2.2rem;
	line-height:1.5;
}
.yellow{
	color: #CAB900;
}
.product_btn{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top:20px;
}
.cart_btn{
	width: 6.6rem;
	height: 6.6rem;
	border-radius: 50%;
	background-color: #CAB900;
	color: #EEEEEE;
	margin-right: 1rem;
	border:none !important;
	position:relative;
	display:inline-block;
}
.cart_btn:hover{
	background-color: #5A502E;
}

.cart_btn
{
    background-image:url('../img/cart.svg');
    background-repeat:no-repeat;
   background-position:center center;
}

.link_btn{
	width: 6.6rem;
	height: 6.6rem;
	border-radius: 50%;
	color: #EEEEEE;
	background-color: #5A502E;
	position:relative;
	display:inline-block;
	line-height:6.6rem;
}
.link_btn:hover{
	background-color: #CAB900;
}
.cart_btn img,
.link_btn img{
	max-width: 53%;
}
.daarom_wrap{
	padding-bottom: 13.5rem;
}
.daarom h2{
	text-align: center;
	font-size: 4.4rem;
	font-weight: 700;
	margin-top: 10rem;
	margin-bottom: 5rem;
}
.daarom span{
	color: #CAB900;
}

.daarom_box .daarom_img{
	height: 12rem;
}
.daarom_box h4{
	font-size: 2.8rem;
	font-weight: 700;
	margin-bottom: 2rem;
}
.daarom_box p{
	max-width: 46.8rem;
	font-size: 2.2rem;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	padding-bottom: 3.5rem;
}
.daarom_box p::before {
	position: absolute;
	content: '';
	bottom: 0;
	height: 0.1rem;
	width: 12.6rem;
	background-color: #CAB900;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
}
.box.v2{
	height: 53rem;
}
.box.v2::before{
	background: -o-linear-gradient(317deg, rgba(90,80,46,1) 0%, transparent 100%);
	background: linear-gradient(133deg, rgba(90,80,46,1) 0%, transparent 100%);
}
.footer_bg{
	background-color: #5A502E;
	color: #EEEEEE;
	padding-top: 10rem;
	padding-bottom: 9rem;
	line-height: 1.8;
}
.footer_bg h3{
	font-size: 3.4rem;
	font-weight: 700;
	margin-bottom: 2.6rem;
}
.footer_bg p{
	font-size: 1.8rem;
	margin-bottom: 3rem;
}
.footer_tel strong{
	color: #CAB900;
}
.footer_tel a{
	margin-left: 1rem;
}
.custom_input input{
	height: 8.4rem;
	font-size: 2.2rem;
	padding: 0 3rem;
	border-radius: 0;
	border: none;
	background-color: #fff;
	color: #5A502E;
}
.custom_input input::-webkit-input-placeholder{
	color: #5A502E;
	opacity: 1;
}
.custom_input input::-moz-placeholder{
	color: #5A502E;
	opacity: 1;
}
.custom_input input:-ms-input-placeholder{
	color: #5A502E;
	opacity: 1;
}
.custom_input input::-ms-input-placeholder{
	color: #5A502E;
	opacity: 1;
}
.custom_input input::placeholder{
	color: #5A502E;
	opacity: 1;
}
.custom_input input:focus{
	-webkit-box-shadow: none;
	        box-shadow: none;
}
.custom_input .button{
	border-radius: 0;
}
.custom_input .button:hover{
	background-color: #000;
}
.footer_bg a{
	color: #fff;
}
.footer_bg a:hover{
	color: #CAB900;
}
.oud_img{
	width: 9.6rem;
	margin-top: 5rem;
}
.footer_bg span, .contactpagina span{
	color: #CAB900;
	width: 5.1rem;
	margin-right: 3.4rem;
	display: inline-block;
}
.custom_sitemap li{
	padding-bottom: 0.8rem;
}
.footer_img_pay{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_main_img{
	width: 100%;
	max-width: 32rem;
	display: inline-block;
}
.social_icon{
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background-color: #FFFFFF;
	color: #CAB900;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-left: 1rem;
}
.social_icon:hover{
	opacity: 0.5;
}
.social_icon img{
	max-height: 55%;
}
.pay_img{
	height: 6.5rem;
	-webkit-filter: grayscale(90%);
	        filter: grayscale(90%);
}
.copyright{
	font-size: 2rem;
	margin-bottom: 0 !important;
}
.five_item>div{
	max-width: 20%;
	-webkit-box-flex: 0;
	    -ms-flex: 0 0 20%;
	        flex: 0 0 20%;
}
.row{
	margin-left: -2rem;
	margin-right: -2rem;
}
.row>div{
	padding-left: 2rem;
	padding-right: 2rem;
}

.breadcrumb{
	margin-bottom: 0;
	padding: 2.7rem 15px;
	text-align: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	background-color: #EEEEEE;
	border-radius: 0;
}
.breadcrumb li.active,
.breadcrumb li a,
.breadcrumb li{
	font-size: 1.6rem;
	color: #5A502E;
}
.breadcrumb li a:hover{
	color: #CAB900;
}
.breadcrumb-item + .breadcrumb-item::before {
   padding-right: 1.2rem;
}
.breadcrumb-item + .breadcrumb-item {
   padding-left: 1.2rem;
}
.inner_home{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 10rem 0;
	position: relative;
	z-index: 1;
}
.inner_home::before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #5A502E;
	opacity: 0.3;
	z-index: -1;
}
.inner_home h2{
	font-size: 7rem;
	color: #fff;
	line-height: 1.1;
	font-weight: 700;
}
.product_label{
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	position: absolute;
	top: 2.4rem;
	left: 2.4rem;
	z-index: 1;
	line-height: 1;
	padding: 1.5rem 2rem;
	border-radius: 7rem;
	text-transform: uppercase;
}
.product_label.discount{
	background-color: #CAB900;
}
.product_label.new{
	background-color: #5A502E;
}
.lg_product .product_img{
	height: 54.5rem;
}
.lg_product .product_content h4 {
   font-size: 3rem;
}
.lg_product .product_content p{
	max-width: 100%;
}
.lg_product{
	padding-top: 1.5rem;
	padding-bottom: 10rem;
}
.about_wrap{
	padding-bottom: 12rem;
	padding-top: 4rem;
}
.title, .subkop{
	font-size: 4.4rem;
	font-weight: 700;
	color: #5A502E;
	line-height: 1.2;
	position: relative;
	padding-top: 6.5rem;
}

.subkop{
	padding-bottom:30px;
}

.title::before{
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	        transform: translateX(-50%);
	content: '';
	width: 12.6rem;
	height: 0.1rem;
	background-color: #CAB900;
}
.about_wrap p, .about_wrap ul{
	max-width: 134.2rem;
	margin: 20px auto;
	line-height:1.6;
}

.about_wrap ul{
	list-style:none;
	/*! list-style-position: inside; */
	margin-bottom:30px;
}

.about_wrap ul li::before{
  content: "\2022";  
  color: #CAB900; 
  font-weight: bold; 
  display: inline-block; 
  width: 1em; 
}

.tab_area{
	padding-top: 8.5rem;
	padding-bottom: 8.5rem;
	font-size: 2.2rem;
	color: #5A502E;
}
.product_page{
	padding-left: 5rem;
	padding-right: 5rem;
}
.tab_area .nav.nav-pills{
	padding-bottom: 2.5rem;
}
.tab_area .nav.nav-pills li button{
	background-color: transparent;
	border: none;
	padding: 0;
	font-size: 3.2rem;
	font-weight: 700;
	color: #5A502E;
	opacity: 0.5;
}
.tab_area .nav.nav-pills li button.active{
	opacity: 1;
}
.tab_area .nav.nav-pills li:not(:last-child){
	margin-right: 12.7rem;
}
.tab_area .tab-pane ul li{
	position: relative;
	padding-left: 3rem;
	margin-top: 1.5rem;
}
.tab_area .tab-pane ul li::before{
	position: absolute;
	content: '';
	left: 0;
	top: 1rem;
	height: 1rem;
	width: 1rem;
	border-radius: 50%;
	background-color: #CAB900;
}
#sync1 .item{
	height: 98rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	border: 1px solid #707070;
	width: 100%;
}
#sync1 .item img{
	max-height: 75%;
	-o-object-fit: contain;
	   object-fit: contain;
}
#sync2 .item{
	height: 20rem;
	border: 1px solid #707070;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	cursor: pointer;
}
#sync2 .current .item{
	border-color: #CAB900;
}
#sync2{
	margin-top: 4rem;
}
#sync2 .item img{
	max-height: 70%;
	-o-object-fit: contain;
	   object-fit: contain;
}
.product_content_wrap{
	font-size: 2.2rem;
	padding-left: 6rem;
}
.product_content_wrap h3{
	font-size: 4.6rem;
	font-weight: 700;
	color: #CAB900;
}
.product_content_wrap h2{
	font-size: 4rem;
	font-weight: 700;
	color: #5A502E;
	line-height: 1.2;
	max-width: 58rem;
	margin-bottom:3rem;
}
.product_content_wrap h4{
	font-size: 2.6rem;
	font-weight: 700;
}
.product_content_wrap ul li{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin-top: 3rem;
}
.product_content_wrap ul li .icon{
	width: 4.6rem;
	margin-right: 3rem;
	-ms-flex-negative: 0;
	    flex-shrink: 0;
	text-align: center;
}
.brand_text{
	font-size: 2.0rem;
	line-height:1.6;
}
.brand_text img{
	width: 20rem;
	margin-right: 4.4rem;
}
.brand_text h5{
	font-size: 2.6rem;
	font-weight: 700;
	text-transform: uppercase;
}

.contactpagina p a, .contactpagina a, .winkelwagen-pagina p a, .winkelwagen-pagina a{
	color:#CAB900;
}

.productaantal > .nice-number{
	max-width:250px !important;
}

.nice-number {
	background-color: #EEEEEE;
	padding: 1.4rem 3rem;
	border-radius: 7rem;
	font-size: 2.4rem;
	font-weight: 700;
	color: #5A502E;
	line-height: 1;
	width:100%;
	text-align:center;
}
.nice-number button{
	background-color: transparent;
	padding: 0;
	border: none;
	font-weight: 700;
	color: #5A502E;
}
.nice-number input{
	border: none;
	background-color: transparent;
	color: #5A502E;
	font-weight: 700;
	padding: 0;
	text-align: center;
	min-width: 10rem;
}
.product-option{
	margin-bottom:2rem;
}

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    line-height: 25px;
    display: inline-block;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    border: 1px solid #5A502E;
    border-radius: 100%;
    background: #fff;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 15px;
    height: 15px;
    background: #CAB900;
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* commerce cart & checkout */
.winkelmandje-koptekst{
margin-bottom:2rem;
	display:inline-block;
	width:81%
}

.c-cart-message{
	background-color:#CAB900 !important;
	position:relative;
	display:inline-block;
	right:0;
}

.c-cart-item{
position:relative;
vertical-align:middle;
}

.c-cart-item-name, .c-cart-item-price, .c-cart-item-total, .c-cart-item-remove{
position:relative;
display:inline-block;
vertical-align:middle;
padding:20px 0px;
}

.c-cart-item-quantity{
position:relative;
display:inline-block;
padding:20px 0;
vertical-align:middle;
}

.c-cart-item-image{
position:relative;
display:inline-block;
vertical-align:middle;
padding-top:20px;
padding-bottom:20px;
}

.c-cart-item-price, .c-cart-item-total{
	text-align:center;
}

.c-cart-header{
float:left;
display:block;
}

#c-cart-header-image, #c-cart-header-product, #c-cart-header-price, #c-cart-header-quantity{
float:left;
display:block;
}

.c-cart-item-remove{
	text-align:right !important;
}

.c-checkout-account > div{
	padding:20px 40px;
}

.c-checkout-account > div > h2{
	margin-bottom:20px;
	font-family: 'Just Me Again Down Here', cursive;
    color: #d49f92;
	font-size: 42px;
	letter-spacing:1px;
	font-weight:300;
}

.c-checkout-account > div > p{
	margin-bottom:20px;
	font-size:16px;
}

.c-field > label{
	text-align:left;
	float:left;
	display:block;
	width:30%;
	padding:10px 0px 3px 0px;
	font-size:16px;
}

.c-field{
	margin: 0px !important;
}

.c-method-section{
	margin:5px 0;
}

.verzendadres, .jebestelling{
	margin-bottom:0px !important;
}

.factuuradres{
	margin-bottom:10px !important;
	margin-top:50px !important;
}

.no-padding {
  padding: 20px 0 0 0 !important;
}

.c-button{
	background-color:#5A502E !important;
	color:#fff;
}

.c-button:hover{
	background-color:#CAB900 !important;
	color:#5A502E;
}

code{
	color:#000;
	font-family: 'Quicksand', sans-serif;
}

.c-cart-summary-items{
	font-size:16px;
}

input#c-login-username, input#c-login-password{
	float:left;
	width:65%;
	display:block;
	background-color:#fff;
	border:1px solid #eee;
	border-radius:3px;
	padding:10px;
	margin-bottom:10px;
}

.c-cart-item-quantity-input{
	display:inline-block !important;
}

.c-checkout input[type="text"], .c-checkout input[type="url"], .c-checkout input[type="email"], .c-checkout input[type="number"], .c-checkout select{
	padding:0 !important;
	margin:0 !important;
	height: auto !important;
	text-align:center;
}

.c-checkout label {
  display: block;
  width: 100%;
  font-weight: bold;
}
.c-checkout input[type=text], .c-checkout input[type=url], .c-checkout input[type=email], .c-checkout input[type=number], .c-checkout select {
  display: block;
  width:100%;
}
.c-checkout .c-field {
  padding: 0;
  margin: 0.5em 0;
}

.c-field.error > input{
  border:1px solid #d8696b;
}

span.c-field-error{
	font-size:14px;
	color:#d8696b;
}

.c-step a{
 color:#000;
}

.c-step.active {
    color: #000 !important;
    background-color: #CAB900 !important;
}

.c-cart-coupon-form input[type="text"] {
    width: 100% !important;
    display: block !important;
    font-size: 18px !important;
    padding: 5px 10px !important;
    height: 40px !important;
}

.c-cart-actions .c-cart-totals-wrapper {
    width: 45% !important;
    margin-left: 55% !important;
}

.c-step.active::after {
    box-shadow: 6px -6px 0 3px #CAB900 !important;
    background: #f1f1f1 !important;
}

.c-step.active + .c-step::after {
    background: #CAB900 !important;
}

.c-field.error > input {
    border: 1px solid #d8696b !important;
}

span.c-field-error {
    font-size: 14px !important;
    color: #d8696b !important;
	background:none !important;
}

.c-checkout .c-field.error{
	border:1px solid #d8696b !important;
	background-color:#fff !important;
	color:#d8696b !important;
	border:none !important;
}

.c-method-radio:checked + .c-method-section {
    background: #CAB900 !important;
}

.c-checkout .c-payment-method-issuer__input:checked + .c-payment-method-issuer__label, .c-checkout .c-payment-method-issuer__input:checked + .c-payment-method-option__label, .c-checkout .c-payment-method-issuer__input:checked + .c-shipping-method-opt__label, .c-checkout .c-payment-method-issuer__input:checked + .c-shipping-method-option__label, .c-checkout .c-payment-method-option__input:checked + .c-payment-method-issuer__label, .c-checkout .c-payment-method-option__input:checked + .c-payment-method-option__label, .c-checkout .c-payment-method-option__input:checked + .c-shipping-method-opt__label, .c-checkout .c-payment-method-option__input:checked + .c-shipping-method-option__label, .c-checkout .c-shipping-method-opt__input:checked + .c-payment-method-issuer__label, .c-checkout .c-shipping-method-opt__input:checked + .c-payment-method-option__label, .c-checkout .c-shipping-method-opt__input:checked + .c-shipping-method-opt__label, .c-checkout .c-shipping-method-opt__input:checked + .c-shipping-method-option__label, .c-checkout .c-shipping-method-option__input:checked + .c-payment-method-issuer__label, .c-checkout .c-shipping-method-option__input:checked + .c-payment-method-option__label, .c-checkout .c-shipping-method-option__input:checked + .c-shipping-method-opt__label, .c-checkout .c-shipping-method-option__input:checked + .c-shipping-method-option__label{
border:none !important;
background:none !important;
}

.c-checkout .c-payment-method-options .c-payment-method-issuers__container, .c-checkout .c-payment-method-options .c-shipping-method-opts__container, .c-checkout .c-shipping-method-options .c-payment-method-issuers__container, .c-checkout .c-shipping-method-options .c-shipping-method-opts__container{
border-left:none !important;
border-right:none !important;
border-top:none !important;
border-bottom:none !important;
background:none !important;
}

.c-submit .c-button{
font-size:1em !important; 
}

textarea#address-shipping-address2{
	height:150px !important;
	width:100%;
	margin:5px 0 !important;
	padding:0.5em;
	display:block;
	border:1px solid #ced4da;
	border-radius:.25rem;
	line-height:16px;
	font-size:16px;
}


.c-checkout input[type="text"], .c-checkout input[type="url"], .c-checkout input[type="email"], .c-checkout input[type="number"], .c-checkout select{
margin: 5px 0 !important;
}

.c-step::after {
    border: solid #555 !important;
    box-shadow: 5px -5px 0 3px #f1f1f1;
}

.c-cart-message {
    border: none !important;
    background-color: #CAB900 !important;
    margin-bottom: 20px !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.nietinbeeld{
	display:none;
}

p.melding-blok{
	padding:25px;
	background-color:#CAB900 !important;
}

.c-checkout-account > div{
	padding:20px 40px;
}

.c-checkout-account > div > h2{
	margin-bottom:20px;
	font-family: 'Just Me Again Down Here', cursive;
    color: #d49f92;
	font-size: 42px;
	letter-spacing:1px;
	font-weight:300;
}

.c-checkout-account > div > p{
	margin-bottom:20px;
	font-size:16px;
}

.c-field > label{
	text-align:left;
	float:left;
	display:block;
	width:30%;
	padding:10px 0px 3px 0px;
	font-size:16px;
}

.c-field{
	margin: 0px !important;
}

.c-method-section{
	margin:5px 0;
}

.verzendadres, .jebestelling{
	margin-bottom:0px !important;
}

.factuuradres{
	margin-bottom:10px !important;
	margin-top:50px !important;
}

code{
	color:#000;
	font-family: 'Quicksand', sans-serif;
}

.c-cart-summary-items{
	font-size:16px;
}

input#c-login-username, input#c-login-password{
	float:left;
	width:65%;
	display:block;
	background-color:#fff;
	border:1px solid #eee;
	border-radius:3px;
	padding:10px;
	margin-bottom:10px;
}

span.niet-op-voorraad{
	background-color:#eee;
	color:#000;
	padding:10px;
	border-radius:3px;
	font-size:15px;
	display:block;
	position:absolute;
	margin-top:20px;
	line-height:22px;
}

img.maat-icon{
	max-width:30px;
	margin-right:10px;
}

.c-field > input{
	padding:3px 10px;
	height:calc(1.5em + .75rem + 2px);
	line-height:1.5;
	font-size:16px;
	border-radius:.25rem;
	border:1px solid #ced4da;
}

.c-checkout input[type="text"], .c-checkout input[type="url"], .c-checkout input[type="email"], .c-checkout input[type="number"], .c-checkout select{
	height:3em !important;
}

.c-checkout input[type="text"], .c-checkout input[type="url"], .c-checkout input[type="email"], .c-checkout input[type="number"], .c-checkout select{
	text-align:left !important;
	padding-left:10px !important;
}

input#add-quantity{
	text-align:center !important;
}
