::root {
    --e-global-color-primary: #B19248;
    --e-global-color-secondary: #BBBBBD;
    --e-global-color-text: #09202D;
    --e-global-color-accent: #D6D1C4;
    --e-global-color-4d3b7bf5: #000;
    --e-global-color-10100222: #FFF;
    --e-global-color-f705333: #EEEEEF;
    --e-global-color-0af6851: #707070;
    --e-global-color-8dbb684: #A7873D;
    --e-global-color-ca3ee80: #FFFFFFBA;
    --e-global-color-f075e2e: #D6D1C487;
    --e-global-color-4c5e802: #737070;
}

body{
    overflow-y: scroll;
	padding: 0;
	margin: 0;
	background-color: #fff;
	background-attachment: fixed;
	/* height: 100vh; */
	/* font-family: 'Roboto', sans-serif; */

	font-size: 16px;
    font-family: "Assistant", Sans-serif;
	font-weight: 400;
	
    line-height: 1.7em;
    letter-spacing: 0.25px;
    background-image: url("../img/bg-icon.svg");
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: 55vw auto;
	padding-top: 100px;
}

@media (min-width: 1400px) {
	.container {
		width: 1370px;
	}
}


a {
	color: #B19248;
}	
a:hover, a:focus {
    color: #B19248;
    text-decoration: underline;
}
img {
	max-width: 100%;
	height: auto !important;
}

header *{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

header{
	height: 100px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: white;
	box-shadow: 0px 2px 5px rgba(0,0,0,.4);
	z-index: 999;
}


	
.head{
	position: absolute;
	/* top: 25px; */
	top: 15px;
	right: 50px;
}
.head .tile{
	display: inline-block;
	height: 50px;
	width: 50px;
	margin-left: 5px;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.head .tile.socialmedia{
	color: #979300;
	font-size: 50px;
	text-align: center;
	line-height: 50px;
	position: relative;
	top: -6px;
}
header.clicked .head .tile.socialmedia{
	color: white;
}
.head .burger{
	margin-left: 25px;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
}
.meat{
	height: 40px;
	width: 40px;
	position: relative;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
header.clicked .head .burger .meat{
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
}
.meat .line{
	height: 2px;
	width: 40px;
	/* background-color: #222; */
	background-color: #B19248;
	border-radius: 3px;
	position: absolute;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
}
.meat .line.one{top: 5px; left: 0px;}
.meat .line.two{top: 18px; left: 0px;}
.meat .line.three{top: 31px; left: 0px;}

header.clicked .burger .line{
	background-color: white;
}
header.clicked .burger .line.one{
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	top: 18px;
}
header.clicked .burger .line.two{
	transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	top: 18px;
}
header.clicked .burger .line.three{
	opacity: 0;
}
header.clicked .burger:hover .meat{
	transform: rotate(270deg);
	-webkit-transform: rotate(270deg);
}
.mtext {
	margin-top: -5px;
	color: #B19248;
	font-weight: 700;
}

header.clicked .head .burger .mtext{
	color: transparent;
}
.nav-modal{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	pointer-events: none;
	
	
	height: 100vh;
	height: -moz-available;
	height: -webkit-fill-available;
	height: fill-available;
	height: stretch; /* Latest specification */

	
}
header.clicked .nav-modal{
	visibility: visible;
	opacity: 1;
	pointer-events: initial;
}

.nav-modal .blob{
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	margin: 0 auto;
	/* background-color: #B19248ee; */
	background-color: #b8afa2ee;
	position: relative;
	/* top: 50%; */
	/* transform: translateY(-50%); */
	/* -webkit-transform: translateY(-50%); */
	transition: all .3s ease-in;
}
header.clicked .nav-modal .blob{
	width: 100vw;
	height: 100vh;
	border-radius: 0px;
}

nav {
	position: fixed;
	left: 20%;
	top: 10vh;
	color: white;
}
nav a {
	/* color: white; */
	text-decoration: none;

	font-size: 34px;
	font-weight: 200;
	line-height:1.5;
	
	color: #000;
	font-weight: 300;
}
nav a:focus,
nav a:hover {
	/* color: white; */
	color: #000;
	text-decoration: none;
}

nav ul li{
	list-style: none;
	text-align: right;
	/* border-right: 2px solid white; */
	border-right: 2px solid #000;
	padding-bottom: 5px;
	padding-right: 20px;
	/* position: relative; */
	text-transform: none;
}
nav{
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3s ease-in;
	-webkit-transition-delay: .3s;
	-moz-transition-delay: .3s;
	-o-transition-delay: .3s;
	transition-delay: .3s;
}
header.clicked nav{
	opacity: 1;
}

nav ul li ul{
	position: absolute;
	right: -400px;
	top: -4px;
	display: none;
}
nav ul li ul li{
	border: none;
	padding-bottom: 0px;
	padding-left: 10px;
	/* height: 45px; */
	width: 400px;
	/* text-transform: lowercase; */
}
nav ul li ul li a{
	display: block;
	/* height: 50px; */
	font-size: 24px;
	font-weight: 400;
	text-align: left;
	padding: 0 0 0 10px;
}

nav ul li.selected:after {
    content: "─";
    margin-right: -20px;
    color: #000;
    font-size: 20px;
}

nav ul li.selected ul{
	display: block;
}

nav ul li.notselected a{
	opacity: .5;
}
nav ul li.selected ul li a{
	opacity: 1;
}





@media screen and (max-width:1024px){
	nav {
		left: 5%;
	}
	nav ul li ul{
		top: 15px;
	}

}
@media screen and (max-width:580px){
	nav {
		left: 5%;
	}
	nav ul li {
		padding-bottom: 15px;
	}
	nav ul li a{
		font-size: 15px;
		font-weight: 600;
		
	}
	nav ul li ul{
		top: 15px;
	}
	nav ul li ul li{
		height: 30px;
	}
	nav ul li ul li a{
		font-size: 15px;
		height: 30px;
	}
}
@media screen and (max-width:320px){
	header .head .tile.socialmedia{
		display: none;
	}
}

#body ul {
	padding: 0 0 0 15px;
}
.block1 {
	margin-top: 30px;
}
.wicol ,
.wcol ,
.hcol {
	display: none;
}
.wcol {
	position: relative;
	/* display: none; */
	/* background: #fff; */
	padding: 30px 40px 20px;
	/* padding: 40px; */
	margin: 10px 10px 20px;
	border-radius: 0px;
	/* box-shadow: 0px 2px 5px rgba(0,0,0,.4);  */
	/* filter: drop-shadow(0px 10px 5px rgba(0,0,0,0.5)); */
}


.wcol svg {
	position: absolute;
	left: 0;
	top: 0;
	z-index:-1;
}

@media screen and (max-width:580px){
	.wcol {
		padding: 20px 20px;
	}	

}
.footer {
	color: #B19248;
	background: #fff;
	z-index: -1;
}
.footer .wcol {
	/* display: block; */
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	background: #fff;
}
.footer .swcol {
	margin-top: -40px;
	margin-bottom: 30px;
	text-align: center;
	background: #fff;
}

.button ,
.knop {
	display: inline-block;
	padding: 6px 20px;
	background: #b19248 !important;
	color: #fff !important;
	text-decoration: none !important;
	border-radius: 500px;
	font-size: 17px;
	text-transform: initial !important;
}
.button:hover,
.knop:hover {
	background: #a7873d;
	color: #fff;
	text-decoration: none;
}

.button.grijs ,
.knop.grijs {
	background: #bbb !important;
	color: #000 !important;
}
.button.grijs:hover ,
.knop.grijs:hover {
	background: #aaa;
	color: #000;
}

.button.wide {
	display:block;
	text-align: center;
}

.knop.pdf:after {
    font-family: 'FontAwesome';
    content: '\f1c1';
    padding-left: 15px;
    position: relative;
    font-size: 110%;
}

.vid {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
}
  
.vid iframe,
.vid object,
.vid embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.minigal2 div {
	text-align: center;
}

#servicelinks {
	line-height: 10px;
}

/* #Sec10 .swiper-wrapper { */
.minislides .swiper-wrapper {
	height: calc(70vh - 10px) !important;
}
.minislides  .swiper-slide video, .minislides .swiper-slide img {
    height: 100% !important;
}


.contact {
    padding: 15px 30px;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
	border-top:2px solid #fff;
    /* background: #B19248; */
    background: #a29b90;
	text-align:center;
	color: #fff;
	opacity: 0;
	transition: all .3s ease-in;
	-webkit-transition: all .3 ease-in;
	-webkit-transition-delay: .5s;
	-moz-transition-delay: .5s;
	-o-transition-delay: .5s;
	transition-delay: .5s;
  
}
header.clicked .contact{
	opacity: 1;
}

.btcolumn-row {
	/* display: flex; */
}
.panelform {
  padding: 10px;
  margin: 20px 0;
  background: none repeat scroll 0 0 #f2f2f2;
  border-color: #d9d9d9;
  border-style: solid;
  border-width: 1px;
}


.tlink .logo{ 
	margin-left: 20px;
	margin-top: 15px;

}

.tlink {
	/* display:none; */
	position: absolute;
	top: 0;
	transition: all .63s ease-in;
	-webkit-transition: all .63s ease-in;
}
#p1 .tlink {
	opacity: 0;
}

.tlink, 
#p1 .scrolled .tlink {
	/* display:block; */
	opacity: 1;
}

.mlink {
	/* display:none; */
	display:block;
	width: 330px;
	margin: 15px auto;
	margin-top: -152px;
}
#p1 .mlink  {
	margin-top: 15px;
	transition: all .63s ease-in;
	-webkit-transition: all .63s ease-in;

}
#p1 .scrolled .mlink {
	margin-top: -152px;
}

.block4 {
	background: #b8afa244;
}
#p1 .wide3 {
	background: #b8afa211;
}

@media screen and (max-width:580px){
	header .mlink,
	#p1 header .mlink {
		width: 120px;
		margin: 10px 0 0 15px;
	}	
	.mlink,
	.scrolled .mlink,
	#p1 .scrolled .mlink {
		display:block;
		margin-top: 10px;
	}
	.tlink, 
	.scrolled .tlink, 
	#p1 .scrolled .tlink {
		display:none;
	}

	.swiper-caption {
		font-size: 175% !important;
	}

}




table.excerpt_thumb td {padding-right:20px; vertical-align: top; min-width:250px;}
.tdslink { padding:10px 15px;}
.slink { font-size: 20px; font-weight:700; display:block;}
.searchicon {
    position: absolute;
    bottom: 120px;
    right: 40px;
}
.search img {
    max-width: 45px;
}
.stitle {
	font-weight: 600;
}


@-webkit-keyframes floatleft {
    0% {margin-left: auto;}
    100% {margin-left: 140px;}
}
@keyframes floatleft {
    0% {margin-left: auto;}
    100% {margin-left: 140px;}
}

.reveal {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

/* #p1 .reveal.block2, */
.reveal.active{
  transform: translateY(0);
  opacity: 1;
}

a.yt {
    position: relative;
    display: block;
    margin: -20px -20px 0 -20px;
}

a.yt:before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    z-index: 10;
    background: transparent url(../img/play1.png) center center no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-size: 70px;
}
.btcolumn p {
    min-height: 60px;
}


a.yt {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding-top: 55.25%;
    position: relative;
}

a.yt img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%, -50%);
	box-shadow: 2px 2px 2px #000;
}


.product-mainimg,
.element .image {
	position: relative;
	overflow: hidden;
}

.banner {
    width: 230px;
    font-size: 16px;
    padding: 16px;
    text-align: center;
    color: #f0f0f0;
    position: absolute;
    top: 30px;
    left: -55px;
    transform: rotate(-45deg);
    background-color: #eb2f06;
    z-index: 9;
    border-radius: 0;
    font-weight: 700;
}

#mod_producten_wrapper_f .banner {
	top: 24px;
}
.banner.Afgeprijsd,
.banner.Aanbieding {
	background-color: #38ada9;
	color: #222;
}
.banner.Nieuwe,
.banner.Nieuw {
	background-color: #CCBB81;
	color: #222;
}
.banner.Showmodel {
	background: #f7b731;
	color: #222;
}
.banner.Sterk {
	background: #ffde00;
	color: #000;
}
.banner.Laatste {
	background: #FF9900;
	color: #fff;
}
.banner.SALE {
	/* background: #b49a77; */
    background-color: #eb2f06;
	color: #fff;
}
.banner.Actie {
	color: #fff;
	background-color: #FF9900;
}
.banner.Black {
	color: #fff;
	background-color: #000;
}
/* afbeeldingen in verhouding */
.product-thumbs {
	display: block !important;
}
.product-thumbs a {
    display: inline-block !important;
    width: 32.33%;
    margin: 0 0.5% 1% 0.5% !important;
    float: left; 
    overflow: hidden;
    padding-top: 23%;
    position: relative;
}

.product-thumbs a img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140%;
    max-width: none;
    transform: translate(-50%, -50%);
}

#callwhatsapp {
		line-height:1.2;
}
#callwhatsapp.floating-wpp .floating-wpp-popup.active {
    width: 330px;
}
#callwhatsapp.floating-wpp .floating-wpp-input-message textarea {
    height: 75px;
}
#callwhatsapp.floating-wpp .floating-wpp-popup .floating-wpp-head .close{
    color: #fff !important;
	opacity: 1;
}

#callwhatsapp.floating-wpp .floating-wpp-button img,
#callwhatsapp.floating-wpp .floating-wpp-button {
	border-radius: 10px;
}
#callwhatsapp.floating-wpp .floating-wpp-popup .floating-wpp-head {
	text-align: left;
}


div#lightcase-case:after {
    content: "© Driehoekmeubelen";
    color: #000;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 5px;
    background: #fff4;
}


.upright {
    background: #00000050;
    padding: 10px;
    border-radius: 10px;
    width: fit-content;
    position: absolute;
    top: 130px;
    right: 40px;
    z-index: 998;
	font-size: 130%;
}
.upright p,
.upright a,
.upright h3,
.upright h2,
.upright h1 {
	color: #fff;
	line-height: 1.4;
	margin: 5px 0;
}
.upright h3,
.upright h2,
.upright h1 {
	margin: 0;
}
