/*---------------------------------------------------------------------------------

	Theme Name: Anthonia.studio
  	Text Domain: anthonia
	Theme URI: https://anthonia.studio
	Version: 1.0.0
	Description: Een WordPress website voor Anthonia.
	Author: Anthonia
	Author URI: https://anthonia.studio

-----------------------------------------------------------------------------------

	0.	CSS Reset & Clearfix
	1.	Document Setup
	2.  Structure
	3.	Header
	4.	Blog
	5.	Post Formats
	6.  Single Post
	7.	Post Content
	8.	Comments
	9.	Respond
	10.	Pagination
	11.	Page & Page Templates
	12. Footer
	13. Responsive

----------------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------------- */
/*	-1. Import fonts
/* -------------------------------------------------------------------------------- */

@import url("//hello.myfonts.net/count/37ac57");

  
@font-face {
	font-family: 'Altissimo-Light';
	src: url('assets/fonts/37AC57_0_0.eot');
	src: url('assets/fonts/37AC57_0_0.eot?#iefix') format('embedded-opentype'),
		url('assets/fonts/37AC57_0_0.woff2') format('woff2'),
		url('assets/fonts/37AC57_0_0.woff') format('woff'),
		url('assets/fonts/37AC57_0_0.ttf') format('truetype'),
		url('assets/fonts/37AC57_0_0.svg#wf') format('svg');
}


/* -------------------------------------------------------------------------------- */
/*	0. CSS Reset
/* -------------------------------------------------------------------------------- */

html, body { margin:0; padding:0;}

h1, h2, h3, h4, h5, h6, p, blockquote, address, big, cite, code, em, font, img, small, strike, sub, sup, li, ol, ul, fieldset, form, label, legend, button, table, caption, tr, th, td {
	margin:0;
	padding:0;
	border:0;
	font-weight: 200;
	font-style:normal;
	font-size:100%;
	line-height:1;
	font-family:inherit;
	text-align:left;
}

table {
	border-collapse:collapse;
	border-spacing:0;
}

ol, ul {
	list-style:none;
}

blockquote:before, blockquote:after {
	content:"";
}

a { outline:none; }

input[type=search] {
   -moz-appearance:none;
   -webkit-appearance:none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

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

/* -------------------------------------------------------------------------------- */
/*	1. Document setup
/* -------------------------------------------------------------------------------- */


html { -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	padding: 0;
	border: none;
	color: #666666; 
	font-family:  "ff-basic-gothic-pro",'Inconsolata', 'Libre Franklin', 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 16px;
	background: #fff;
}

body * { -webkit-font-smoothing: subpixel-antialiased; }


body a {
	color: #f16334;
	text-decoration: none;
}

body a:hover {
	color: #c04f29;
	text-decoration: none;
}

* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/* section {
    padding: 60px 0;
} */

.section-inner {
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
}

img {
	max-width: 100%;
	height: auto;
}

.hidden { display: none; }
.clear { clear: both; }
.fleft { float: left; }
.fright { float: right; }

::selection {
	background: #444;
	color: #FFF;
}

::-webkit-input-placeholder { color: #999; }
:-ms-input-placeholder { color: #999; }


/* -------------------------------------------------------------------------------- */
/*	X.	Site Header
/* -------------------------------------------------------------------------------- */


.woocommerce-store-notice {
	color: #fff;
	font-family: 'Charis SIL', Georgia, serif;
	font-size: 14px;
	font-style: italic;
	line-height: 1.25;
	margin: 0 auto;
	max-width: 1280px;
	padding: 13px 44px 14px;
	position: relative;
	text-align: center;
	width: 90%;
}

.woocommerce-store-notice__dismiss-link {
	background: url( ./assets/svg/cross-white.svg ) no-repeat center;
	background-size: 16px;
	display: block;
	height: 44px;
	position: absolute;
		right: 0;
		top: calc( 50% - 22px );
	text-indent: -99999px;
	width: 44px;
}

.site-header { 
	background: #fff;
    margin: 0 auto;
	position: relative;
}

.site-header .section-inner {
	padding: 30px 0;
	position: relative;
	transition: padding .15s linear;
}

.site-header .header-titles {
	margin: 0 auto;
	max-width: calc( 100% - 600px );
	text-align: center;
}

.site-header .site-title,
.site-header .site-description {
	text-align: inherit;
}

.site-header .site-title {
	font-size: 47px;
	margin: 0;
	font-family: 'Altissimo-Light';
}

.site-header .site-description {
	margin-top: 18px;
}

.site-header .custom-logo-link {
	display: block;
}

.site-header .custom-logo-link img {
	margin: 0 auto;
	object-fit: contain;
	display: block;
}

.site-header .site-title a:hover {
/*	color: rgba( 0, 0, 0, .35 );*/
	text-decoration: none;
}


/* -------------------------------------------------------------------------------- */
/*	X.	Header Modals
/* -------------------------------------------------------------------------------- */


/* Modal Base ----------------------------- */


.modal {
	background: #fff;
	border: 1px solid #e1e1e5;
	font-size: 14px;
	opacity: 0;
	position: absolute;
		top: calc( 100% + 15px );
	transform: translateY( 5px );
	transition: opacity .15s linear, transform .15s linear, left .0s .15s, right 0s .15s;
	width: 300px;
	z-index: 100;
}

.modal.active {
	opacity: 1;
	transform: translateY( 0 );
}

.modal:before,
.modal:after {
	border: 10px solid transparent;
	content: "";
	display: block;
	position: absolute;
		bottom: 100%;
}

.modal.arrow-left {
	left: -9999px;
}

.modal.arrow-right {
	right: 9999px;
}

.modal.arrow-left.active {
	left: -23px;
	transition: opacity .15s linear, transform .15s linear;
}

.modal.arrow-right.active {
	right: -23px;
	transition: opacity .15s linear, transform .15s linear;
}

.modal.arrow-left:before,
.modal.arrow-left:after {
	left: 26px;
}

.modal.arrow-right:before,
.modal.arrow-right:after {
	right: 26px;
}

.modal:before {
	border-bottom-color: #e1e1e5;
}

.modal:after {
	border-bottom-color: #fff;
	bottom: calc( 100% - 1.5px );
}


/* Header Search ----------------------------- */

.header-search {
	position: absolute;
		left: 0;
		top: 50%;
	transform: translateY( -50% );
	z-index: 100;
}

.header-search label {
	background: url( ./assets/svg/spyglass-black.svg ) no-repeat center;
	background-size: 29px auto;
	cursor: text;
	margin: 0;
	position: absolute;
		bottom: 0;
		left: 0;
		top: 0;
	width: 30px;
}

.header-search input[type="search"] {
	border: none;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	padding: 10px 0 10px 44px;
}

.header-search input[type="search"]::-webkit-input-placeholder { color: inherit; }
.header-search input[type="search"]:-ms-input-placeholder { color: inherit; }
.header-search input[type="search"]::-moz-placeholder { color: inherit; }

/* COMPACT RESULTS */

.compact-search-results {
	font-size: 14px;
}

.compact-search-results ul {
	padding: 21px 16px;
}

.compact-search-results ul li {
	margin-bottom: 12px;
}

.compact-search-results li img,
.compact-search-results li .post-image {
	height: 50px;
	width: 50px;
}

.compact-search-results li a .title {
	font-family: Archivo, 'Helvetica Neue', Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 500;
}

.compact-search-results .show-all {
	background-color: #F5F5F7;
	display: block;
	font-weight: 500;
	padding: 21px 5%;
	text-align: center;
}

.compact-search-results .show-all span {
	padding-right: 22px;
	position: relative;
}

.compact-search-results .show-all span:after {
	background: url( ./assets/svg/arrow-right-black.svg ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 11px;
	position: absolute;
		right: 0;
		top: calc( 50% - 5px );
	width: 16px;
}

.compact-search-results .no-results-message {
	line-height: 1.3;
	padding: 19px 16px 20px;
	text-align: center;
}


/* Header Social ----------------------------- */


.social-menu.header {
	position: absolute;
		right: 0;
		top: 50%;
	transform: translateY( -50% );
}

.social-menu.header li {
	display: inline-block;
}

.social-menu.header a {
	display: block;
	padding: 10px;
}

.social-menu.header a:hover {
	opacity: .5;
	text-decoration: none;
}

.social-menu.header a:before {
	font-size: 24px;
}


/* Header Toggle Base ----------------------------- */


.site-header .toggle {
	align-items: center;
	cursor: pointer;
	display: flex;
	height: 28px;
	padding-right: 43px;
}

.site-header .toggle:hover {
	text-decoration: none;
}

.site-header .toggle:before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	content: "";
	display: block;
	height: 28px;
	position: absolute;
		right: 0;
		top: calc( 50% - 14px );
	width: 28px;
}

.site-header .toggle p {
	font-size: 16px;
	font-weight: 500;
}


/* Header Account Modal ----------------------------- */


.header-account {
	position: absolute;
		top: 50%;
		right: 145px;
	transform: translateY( -50% );
	z-index: 5;
}

.account-toggle:before {
	background-image: url( ./assets/svg/account-black.svg );
}

/* NOT LOGGED IN */

.account-modal form {
	padding: 20px;
}

.account-modal .form-row-first label,
.account-modal .form-row-last label {
	display: block;
	font-size: 14px;
	margin-bottom: 5px;
}

.account-modal form .input-text {
	padding: 13px 15px;
}

.account-modal form input[type="submit"] {
	margin-right: 10px;
	min-width: 0;
	padding: 12px 25px;
}

.account-modal form > .lost_password {
	display: none;
}

.account-modal .login-registration-form-links {
	background: #F5F5F7;
	margin: 20px -20px -20px;
	padding: 20px 20px;
	text-align: center;
}

.account-modal .login-registration-form-links p {
	display: inline;
}

.account-modal .login-registration-form-links .sep {
	color: #99999E;
	margin: 0 7px 0 5px;
}

/* LOGGED IN */

.account-modal header,
.account-modal nav,
.account-modal footer {
	display: block;
	text-align: left;
}

.account-modal header {
	padding: 20px 20px;
}

.account-modal header strong {
	display: block;
	font-weight: 500;
}

.account-modal header span {
	display: block;
	margin-top: 5px;
}

.account-modal nav,
.account-modal footer {
	border-top: 1px solid #e1e1e5;
	padding: 10px 0;
}

.account-modal.logged-in a {
	background: #fff;
	display: block;
	font-weight: 500;
	padding: 14px 20px 16px 54px;
	position: relative;
}

.account-modal.logged-in a:hover {
	background-color: #F5F5F7;
	text-decoration: none;
}

.account-modal.logged-in a:before {
	background: no-repeat center;
	content: "";
	display: block;
	height: 22px;
	position: absolute;
		left: 16px;
		top: calc( 50% - 11px );
	width: 22px;
}

.account-modal.logged-in a.edit-account:before { background-image: url( ./assets/svg/cog-black.svg ); background-size: 17px auto; }
.account-modal.logged-in a.edit-address:before { background-image: url( ./assets/svg/location-black.svg ); background-size: auto 19px; }
.account-modal.logged-in a.orders:before { background-image: url( ./assets/svg/orders-black.svg ); background-size: auto 21px; }
.account-modal.logged-in a.log-out:before { background-image: url( ./assets/svg/sign-out-arrow-black.svg ); background-size: 16px auto; }


/* Header Cart Modal ----------------------------- */

.header-cart {
	position: absolute;
		top: 43%;
		right: 81px;
	transform: translateY( -50% );
	z-index: 5;
}

.cart-toggle:before {
	background-image: url( ./assets/svg/shopping-bag.svg );
	/* content: "\f290";
    font-family: 'Font Awesome\ 5 Free';
    font-weight: 900;	
    font-size: 2rem; */
}

.cart-count {
	align-items: center;
	background: #666;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 11px;
	font-weight: 500;
	height: 24px;
	justify-content: center;
	padding-bottom: 1px;
	position: absolute;
		right: -10px;
		top: -11px;
	width: 24px;
}

.header-cart .widget_shopping_cart_content {
	padding: 16px;
}

.gform_wrapper .field_sublabel_below .ginput_complex.ginput_container label {
	display: none !important;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
	width: 100%;
    padding: 14px 16px !important;
    font-size: 0.9em;
    border: none;
    color: #333;
    background: #f2f2f2;
    border-radius: 3px;
    font-weight: 200;
    -webkit-appearance: none;
}

.gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
	border-radius: 3px !important;
}

.gform_wrapper textarea.medium {
	border-radius: 3px;
}

/* -------------------------------------------------------------------------------- */
/*	X.	Site Navigation
/* -------------------------------------------------------------------------------- */


/* Mobile Menu ----------------------------- */


.nav-toggle,
.mobile-menu-wrapper,
.mobile-nav-content-overlay {
	display: none;
}


/* Primary Menu ----------------------------- */


.site-nav {
	background: #fff;
	position: relative;
	text-align: center;
	z-index: 1;
	font-family: 'Altissimo-Light';
	font-size: 19px;
}

.make-sticky {
	box-shadow: 0 2px 10px rgba( 0, 0, 0, 0.075 );
	position: fixed;
		left: 0;
		right: 0;
		top: 0;
	z-index: 999;
}

.site-nav.make-sticky {
	top: -1px;
}

.site-nav li {
	position: relative;
}

.site-nav > li {
	display: inline-block;
	border-bottom: 1px solid #ccc;
	margin-left: -6px;
}

.site-nav a {
	display: block;
	padding: 24px 25px;
	color: #999999;
}

.site-nav .current-menu-item > a,
.site-nav a:hover {
	border-bottom: 2px solid #f16334;
	color: #f16334;
}

.site-nav li.menu-item-has-children > a {
	padding-right: 42px;
}

.site-nav li.menu-item-has-children > a:after {
	background: url( ./assets/svg/chevron-down-black.svg ) no-repeat center;
	background-size: contain;
	content: "";
	display: block;
	height: 12px;
	position: absolute;
		right: 20px;
		top: calc( 50% - 5px );
	transition: transform .15s linear;
	width: 12px;
}

.site-nav li.menu-item-has-children:hover > a:after {
	transform: translateY( 1px );
}

/* DEEP DOWN */


.site-nav ul {
	background: #fff;
	border: 1px solid #e1e1e5;
	opacity: 0;
	padding: 10px 0;
	position: absolute;
		left: -9999px;
		top: calc( 100% - 5px );
	transform: translateY( 3px );
	transition: opacity .1s linear, transform .1s linear, left 0s .1s;
	width: 220px;
}

.site-nav ul:after {
	background: #fff;
	border: 1px solid #e1e1e5;
	content: "";
	display: block;
	height: 10px;
	position: absolute;
		left: 20px;
		top: -5px;
	transform: rotate(45deg);
	width: 10px;
	z-index: 1;
}

.site-nav ul li:first-child:before {
	background: #fff;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
		left: 0;
		right: 0;
		top: -10px;
	z-index: 2;
}

.site-nav ul li.menu-item-has-children > a {
	padding-right: 37px;
}

.site-nav ul li.menu-item-has-children > a:after {
	right: 15px;
	transform: rotate( -90deg );
	top: calc( 50% - 6px );
}

.site-nav ul li.menu-item-has-children:hover > a:after {
	transform: rotate( -90deg ) translateY( 2px );
}

.site-nav ul li.menu-item-has-children > a:before {
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		right: -1px;
		top: 0;
	width: 2px;
}

.site-nav li:hover > ul {
	left: 25px;
	opacity: 1;
	transform: translateY( 0 );
	transition: opacity .1s linear, transform .1s linear;
}

.site-nav ul a {
	background: #fff;
	display: block;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 20px;
	position: relative;
	z-index: 2;
}

.site-nav ul ul {
	top: -10px;
}

.site-nav ul ul:before {
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		left: -12px;
		top: 0;
	width: 12px;
}

.site-nav ul ul:after {
	top: 23px;
	left: -5px;
}

.site-nav ul li:hover > ul {
	left: calc( 100% + 12px );
	top: -10px;
}


.dark-overlay {
	position: relative;
}

.dark-overlay:before {
	background: rgba( 17, 17, 17, 0.5 );
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		top: 0;
}


/* -------------------------------------------------------------------------------- */
/*	2.	Header
/* -------------------------------------------------------------------------------- */

/* .top-container {
  background-color: #f1f1f1;
  margin-top: 20px;
}

header {
	width: 100%;
    margin: 0;
    background: #fff;
    font-size: 1em;
    top: 0;
    left: 0;
	z-index: 999;
}

.make-sticky {
	position: fixed;
		left: 0;
		right: 0;
		top: 0;
	z-index: 999;
	border-bottom: 1px solid #ccc;
}

header.make-sticky {
	top: -1px;
}

.header-inner {
	/* padding: 0px 5% 10px; */
	width: 1200px;
    max-width: 86%;
    margin: 0px auto;
}

.header-right {
	margin-left: -112px;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
      -webkit-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  -moz-box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
  box-shadow: 0 3px 5px rgba(57, 63, 72, 0.3);
}

.sticky + .wrapper {
  padding-top: 102px;
}

.progress-container {
  width: 100%;
  height: 3px;
  background: #fff;
}

.progress-bar {
  height: 3px;
  background: #ccc;
  width: 0%;
}

.content {
	width: 1200px;
	max-width: 86%;
	margin: 0px auto 50px;
}

.content.thin {
	width: 973px;
	margin-top: 0px;
}

button, .button, input[type="button"], input[type="submit"] {
	background: #f16334;
    border: none;
    /* border-radius: 6px; */
    color: #fff;
    display: inline-block;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.7px;
    font-weight: 200;
    line-height: 1.15;
    margin: 0;
    /* min-width: 115px; */
    padding: 14px 21px 14px;
    text-align: center;
    transition: opacity .15s linear;
    -moz-appearance: none;
    -webkit-appearance: none;
} 

button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover {
    cursor: pointer;
    background: #903b1f;
}



/* -------------------------------------------------------------------------------- */
/*	X.	Header Modals
/* -------------------------------------------------------------------------------- */
/* 
header .toggle {
    align-items: center;
    cursor: pointer;
    display: flex;
    height: 30px;
}


.modal {
	background: #fff;
	border: 1px solid #e1e1e5;
	font-size: 14px;
	opacity: 0;
	position: absolute;
		top: calc( 100% + 15px );
	transform: translateY( 5px );
	transition: opacity .15s linear, transform .15s linear, left .0s .15s, right 0s .15s;
	width: 300px;
	z-index: 100;
}

.modal.active {
	opacity: 1;
	transform: translateY( 0 );
}

.modal:before,
.modal:after {
	border: 10px solid transparent;
	content: "";
	display: block;
	position: absolute;
		bottom: 100%;
}

.modal.arrow-left {
	left: -9999px;
}

.modal.arrow-right {
	right: 9999px;
}

.modal.arrow-left.active {
	left: -23px;
	transition: opacity .15s linear, transform .15s linear;
}

.modal.arrow-right.active {
	right: -23px;
	transition: opacity .15s linear, transform .15s linear;
}

.modal.arrow-left:before,
.modal.arrow-left:after {
	left: 26px;
}

.modal.arrow-right:before,
.modal.arrow-right:after {
	right: 26px;
}

.modal:before {
	border-bottom-color: #e1e1e5;
}

.modal:after {
	border-bottom-color: #fff;
	bottom: calc( 100% - 1.5px );
}



.header-cart {
	position: absolute;
	right: 226px;
	transform: translateY( -149% );
	z-index: 999;
}

.cart-toggle:before {
    content: "\f290";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 1.2rem;
}

.cart-count {
	align-items: center;
	background: #f1f1f1;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-radius: 50%;
	color: #333;
	display: flex;
	font-size: 11px;
	font-weight: 500;
	height: 24px;
	justify-content: center;
	padding-bottom: 1px;
	position: absolute;
		right: -10px;
		top: -11px;
	width: 24px;
}

.header-cart .widget_shopping_cart_content {
	padding: 16px;
} */



/* Columns --------------------------------------- */


.one-fourth { width: 21.5%; margin-left: 5%; float: left; }
.one-third { width: 30%; margin-left: 5%; float: left; }
.one-half { width: 47.5%; margin-left: 5%; float: left; }
.two-thirds { width: 65%; margin-left: 5%; float: left; }

.one-fourth:first-child,
.one-third:first-child,
.one-half:first-child,
.two-thirds:first-child { margin-left: 0; }


/* Transitions --------------------------------------- */


body a,
.widget_fukasawa_recent_posts a:hover .title,
.widget_fukasawa_recent_comments a:hover .title {
	-webkit-transition: all 0.1s ease-in-out;
	 -moz-transition: all 0.1s ease-in-out;
	 -ms-transition: all 0.1s ease-in-out;
	 -o-transition: all 0.1s ease-in-out;
	 transition: all 0.1s ease-in-out;
}

.post-title a,
.flex-direction-nav a,
.comment-form input[type="submit"],
.post-content input[type="submit"],
.post-content input[type="reset"],
.post-content input[type="button"],
.archive-nav a {
	-webkit-transition: all 0.2s ease-in-out;
	 -moz-transition: all 0.2s ease-in-out;
	 -ms-transition: all 0.2s ease-in-out;
	 -o-transition: all 0.2s ease-in-out;
	 transition: all 0.2s ease-in-out;
}

.blog-title a {
	-webkit-transition: all 0.3s ease-in-out;
	 -moz-transition: all 0.3s ease-in-out;
	 -ms-transition: all 0.3s ease-in-out;
	 -o-transition: all 0.3s ease-in-out;
	 transition: all 0.3s ease-in-out;
}

.posts .post .featured-media img,
.posts .post .post-overlay,
.post-navigation a,
.post-navigation a p {
	-webkit-transition: all 0.4s ease-in-out;
	 -moz-transition: all 0.4s ease-in-out;
	 -ms-transition: all 0.4s ease-in-out;
	 -o-transition: all 0.4s ease-in-out;
	 transition: all 0.4s ease-in-out;
}


/* Screen Reader Text --------------------------------------- */


.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* -------------------------------------------------------------------------------- */
/*	3. Template parts
/* -------------------------------------------------------------------------------- */

.subscribe-form {
	margin: 20px 0;
}

.mc-field-group {
	flex-grow: 1; 
	flex-basis: auto;
} 

.mc-field-group input {
	width: 97% !important;
}

.subscribe-form form {
	max-width: 843px;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
  	display: -moz-box;
  	display: -ms-flexbox;
	display: -webkit-flex;
	-webkit-flex-flow: row wrap;
	justify-content: center;
}

/* -------------------------------------------------------------------------------- */
/*	3. Sidebar
/* -------------------------------------------------------------------------------- */


.blog-title a {
	display: inline-block;
	padding: 9px 13px;
	border: 3px solid #333;
	font-size: 17px;
	line-height: 150%;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #333;
}

.blog-title a:hover {
	background: #333;
	color: #fff;
}

.blog-logo,
.blog-logo img { 
	display: block; 
	width:  41%;
	margin: -5px 0 12px;
}

.blog-logo:hover {
	opacity: 0.6;
	-moz-opacity: 0.6;
	-webkit-opacity: 0.6;
}

.ondertitel {
	color: #999999;
	font-weight: 200;
	padding-top: 10px;
}

.minder-bottom {
	margin-bottom: -10px;
}

.over-wit {
	color: #fff !important;
}

.meer-top {
	/* align-items: center;  */
	margin-top: 110px  !important;
}

.width333 {
	width: 33.333%;
}

.over-beeld {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -5rem;
    padding: 5rem 0;
    width: calc( 100% + 3rem );
}

.over-beeld-item {
	width: 33.333%;
	padding-right: 20px;
}

.over-beeld-item h3 {
	padding-bottom: 20px;
	letter-spacing: 1px;
	font-family: 'Altissimo-Light';
	font-size: 19px;
}

.over-beelden {
	height: 300px;
}

.over-beeld-item p {
	line-height: 20px;
	font-weight: 200;
	font-size: 16px;
}

.over-cv {
   /* position: relative;
    width: 120% !important;
    float: left;
    margin-right: 27px;
    margin-top: 15px; */
    
    position: relative;
    width: 100% !important;
    float: left;
    font-size: 14px;
    font-weight: 200;
    margin-right: -228px;
    margin-top: 30px;
    padding: 30px;
}

.over-cv-rechts {
	/* background: rgba(255,255,255,0.8);
    margin-left: -147px;
    z-index: 999;
	padding: 30px;
	font-size: 14px;
	font-weight: 200; */

    margin-left: -407px;
    padding: 30px;
    font-size: 14px;
    font-weight: 200;
}

.over-start-links {
	/* background: rgba(255,255,255,0.8); */
    margin-right: -326px !important;
    z-index: 999;
	padding: 30px;
}

.over-cv h3 {
	text-transform: uppercase;
	padding: 20px 0 10px 0;
}


.over-cv div {
	display: block;
	padding-bottom: 10px;
}

.woocommerce-product-gallery__wrapper img {
    border-radius: 3px;
}

/* Navigation --------------------------------------- */


.main-menu {
    display: block;
    padding: 12px 33px 10px;
    margin-top: -59px;
    float: right;
    position: relative;
}

.main-menu li {
	margin-top: 13px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-right: 20px;
	font-size: 15px;
}

.main-menu li,
.lang-menu li {
	position: relative;
}

.main-menu > li,
.lang-menu > li,
.lang-menu-mobile > li {
	display: inline-block;
}

.lang-menu {
	position: absolute;
    top: 40%;
    right: 10px;
    transform: translateY( -50% );
    z-index: 5;
}

.lang-menu-mobile {
	padding: 0 5vw;
	margin-top: -20px;
}

.lang-menu li,
.lang-menu-mobile li {
	margin-top: 13px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-right: 0px;
	font-size: 15px;
}

.lang-menu li.current-lang a,
.lang-menu-mobile li.current-lang a {
	color: #f16334;
}

.lang-menu li:first-child:after,
.lang-menu-mobile li:first-child:after {
	content: ' | ';
}

.sub-menu li {
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-right: 0;
	margin-top: 0;
}

.sub-menu li a:hover {
	border-bottom: 0!important;
}

.main-menu > li:first-child { margin-top: 0; }

/*.main-menu ul { margin-left: 20px; }
*/
.main-menu a,
.lang-menu a,
.lang-menu-mobile a { color: #666; }

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current_page_item > a {
	color: #666;
	border-bottom: 1px solid #ccc;
}

.main-menu li.menu-item-has-children > a {
	padding-right: 20px;
}

.main-menu li.menu-item-has-children > a:after {
	content: "\f078";
	display: block;
	font-family: Font Awesome\ 5 Free;
  	font-weight: 900;
	height: 12px;
	position: absolute;
		right: 20px;
		top: calc( 50% - 8px );
	transition: transform .15s linear;
	width: 12px;
	color: #ccc;
}

.smain-menu li.menu-item-has-children:hover > a:after {
	transform: translateY( 1px );
}

/* DEEP DOWN */

.main-menu ul {
	background: #fff;
	border: 1px solid #e1e1e5;
	opacity: 0;
	padding: 10px 0;
	position: absolute;
		left: -9999px;
		top: calc( 100% - -11px );
	transform: translateY( 3px );
	transition: opacity .1s linear, transform .1s linear, left 0s .1s;
	width: 220px;
}

.main-menu ul:after {
	background: #fff;
	border: 1px solid #e1e1e5;
	content: "";
	display: block;
	height: 10px;
	position: absolute;
		left: 20px;
		top: -5px;
	transform: rotate(45deg);
	width: 10px;
	z-index: 1;
}

.main-menu ul li:first-child:before {
	background: #fff;
	content: "";
	display: block;
	height: 20px;
	position: absolute;
		left: 0;
		right: 0;
		top: -10px;
	z-index: 2;
}

.main-menu ul li.menu-item-has-children > a {
	padding-right: 37px;
}

.main-menu ul li.menu-item-has-children > a:after {
	right: 15px;
	transform: rotate( -90deg );
	top: calc( 50% - 6px );
}

.main-menu ul li.menu-item-has-children:hover > a:after {
	transform: rotate( -90deg ) translateY( 2px );
}

.main-menu ul li.menu-item-has-children > a:before {
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		right: -1px;
		top: 0;
	width: 2px;
}

.main-menu li:hover > ul {
	left: 25px;
	opacity: 1;
	transform: translateY( 0 );
	transition: opacity .1s linear, transform .1s linear;
}

.main-menu ul a {
	background: #fff;
	display: block;
	font-size: 13px;
	padding: 12px 20px;
	position: relative;
	z-index: 2;
}

.main-menu ul ul {
	top: -10px;
}

.main-menu ul ul:before {
	content: "";
	display: block;
	position: absolute;
		bottom: 0;
		left: -12px;
		top: 0;
	width: 12px;
}

.main-menu ul ul:after {
	top: 23px;
	left: -5px;
}

.main-menu ul li:hover > ul {
	left: calc( 100% + 12px );
	top: -10px;
	border-bottom: 0;
}

/* -------------------------------------------------------------------------------- */
/*	4. Widgets
/* -------------------------------------------------------------------------------- */


.widget-title {
	margin-bottom: 15px;
	font-weight: normal;
	color: #333;
}

/*  Widget content  ----------------------------------------- */


.widget-content { color: #555; }

.widget-content .textwidget a:hover { text-decoration: underline; }

.widget-content p {
	line-height: 150%;
	margin-top: 1em;
}

.widget-content p:first-child { margin-top: 0; }

.widget-content li {
	line-height: 140%;
	padding: 10px 0;
	border-bottom: 1px solid #eee;
}

.widget-content ul ul { margin-left: 1em; }

.widget-content ul ul li:first-child {
	margin-top: 0.5em;
	border-top: 1px solid #eee;
}

.widget-content > ul > li:first-child { padding-top: 0; }

.widget-content li:last-child {
	padding-bottom: 0;
	border-bottom: none;
}


/* Widget text --------------------------------------- */


.widget-content .textwidget { line-height: 150%; }

.widget-content .textwidget a { color: #999; }
.widget-content .textwidget a:hover { color: #adadad; text-decoration: none; }


/* Widget icons --------------------------------------- */


.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_nav_menu li,
.widget_pages { color: #999; }

.widget_archive li a,
.widget_categories li a,
.widget_meta li a,
.widget_nav_menu li a,
.widget_pages li a { color: #333; }

.widget_archive li a:hover,
.widget_categories li a:hover,
.widget_meta li a:hover,
.widget_nav_menu li a:hover,
.widget_pagaes li a:hover {
	color: #adadad;
	text-decoration: none;
}

.widget_archive li:before,
.widget_categories li:before,
.widget_meta li:before,
.widget_nav_menu li:before {
	font: 16px/1 'Genericons';
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	color: #999;
	margin-right: 8px;
	position: relative;
	top: -1px;
}

.widget_archive li:before { content: '\f307'; }
.widget_categories li:before { content: '\f301'; }
.widget_meta li:before { content: '\f445'; }
.widget_nav_menu li:before { content: '\f429'; }


/* Widget RSS --------------------------------------- */


.widget_rss .widget-title a { vertical-align: middle; }

.widget_rss .widget-content ul a.rsswidget {
	display: block;
	line-height: 120%;
	font-weight: normal;
	color: #444;
}

.widget_rss .widget-content ul a.rsswidget:hover { color: #adadad; }

.rss-date {
	display: block;
	margin-top: 2px;
	font-size: 0.85em;
	font-style: italic;
	color: #999;
}

.rssSummary {
	margin-top: 5px;
	color: #666;
}

.widget_rss cite {
	display: block;
	margin-top: 5px;
	font-size: 0.8em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

.widget_rss cite:before { content: "— "; }


/* Widget search --------------------------------------- */


.widget_search .search-field {
	padding: 15px 49px 15px 15px;
	font-size: 14px;
}

.widget_search .search-button {
	width: 24px;
	height: 24px;
	margin-top: -12px;
	right: 13px;
}

.widget_search .search-button .genericon {
	font-size: 24px;
}


/* Widget calendar --------------------------------------- */


#wp-calendar {
	width: 100%;
	max-width: 100%;
	color: #888;
	text-align: center;
}

#wp-calendar,
#wp-calendar caption,
#wp-calendar tr,
#wp-calendar td,
#wp-calendar th {
	text-align: center;
}

#wp-calendar th,
#wp-calendar td {
	padding: 4% 2%;
}

#wp-calendar caption,
#wp-calendar thead {
	color: #666;
	border-bottom: 1px solid #eee;
}

#wp-calendar caption {
	font-style: italic;
	text-transform: capitalize;
	color: #999;
	padding-bottom: 4%;
}

#wp-calendar thead {
	color: #adadad;
}

#wp-calendar thead th {
	font-weight: normal;
	text-transform: uppercase;
	font-size: 0.9em;
}

#wp-calendar tfoot { border-top: 1px solid #EEE; }
#wp-calendar tfoot td { padding: 0; }
#wp-calendar tfoot #prev { text-align: left; }
#wp-calendar tfoot #next { text-align: right; }

#wp-calendar tfoot a {
	display: block;
	margin-top: 10px;
	font-size: 0.9em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

#wp-calendar tfoot a:hover {
	text-decoration: none;
	color: #666;
}


/* Widget Dribbble & Flickr --------------------------------------- */


.dribbble-shot,
.flickr_badge_image {
	display: inline-block;
	width: 55px;
	height: auto;
	margin: 3px 9px 3px 0;
}

.dribbble-shot { margin-bottom: 7px; }

.dribbble-shot img,
.flickr_badge_image a,
.flickr_badge_image img {
	display: block;
	border-radius: 3px;
}

.dribbble-shot:hover,
.flickr_badge_image a:hover {
	opacity: 0.7;
	-moz-opacity: 0.7;
	-webkit-opacity: 0.7;
}


/* Widget recent posts & recent comments --------------------------------------- */


.widget_fukasawa_recent_posts a,
.widget_fukasawa_recent_comments a { display: block; }

.widget_fukasawa_recent_posts .post-icon,
.widget_fukasawa_recent_comments .post-icon {
	display: block;
	float: left;
	width: 44px;
	height: 44px;
	background: #eee;
	border-radius: 999px;
	position: relative;
}

.widget_fukasawa_recent_posts img,
.widget_fukasawa_recent_comments img {
	display: block;
	border-radius: 999px;
	width: 100%;
	height: auto;
}

.widget_fukasawa_recent_posts .inner,
.widget_fukasawa_recent_comments .inner {
	padding-top: 4px;
	margin-left: 54px;
}

.widget_fukasawa_recent_posts .post-icon .genericon {
	font-size: 32px;
	height: 32px;
	width: 32px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -16px;
	margin-left: -16px;
	color: #bbb;
}

.widget_fukasawa_recent_posts .title,
.widget_fukasawa_recent_comments .title {
	line-height: 120%;
	font-weight: normal;
	color: #333;
	word-break: break-word;
	-ms-word-break: break-word;
}

.widget_fukasawa_recent_posts .meta {
	margin-top: 2px;
	color: #999;
}

.widget_fukasawa_recent_comments .excerpt {
	margin-top: 3px;
	font-size: 0.9em;
	line-height: 150%;
	color: #999;
}

.widget_fukasawa_recent_posts a:hover .title,
.widget_fukasawa_recent_comments a:hover .title { color: #adadad; }


/* Widget tag cloud --------------------------------------- */


.widget_tag_cloud a {
	display: inline-block;
	padding: 6px 8px;
	margin: 0 1px 4px 0;
	border-radius: 2px;
	background: #eee;
	font-size: 11px !important;
	line-height: 1;
	color: #444;
}

.widget_tag_cloud a:hover {
	background: #adadad;
	color: #fff;
}



/* -------------------------------------------------------------------------------- */
/*	4. Navigation
/* -------------------------------------------------------------------------------- */


.mobile-navigation,
.nav-toggle {
	display: none;
}


/* -------------------------------------------------------------------------------- */
/*	5. Blog
/* -------------------------------------------------------------------------------- */

h1.product_title.entry-title {
    font-size: 31px;
    margin: 0;
    letter-spacing: 1px;
    font-family: 'Altissimo-Light';
}

.product_title.entry-title {
	padding-top: 20px;
}

.posts {
	overflow: visible !important;
	position: relative;
	/* border-top: 1px solid #ccc; */
}

.page-template-page-shop .posts {
	border-top: 0px solid #ccc;	
}

.posts .post-container {
	width: 33.33333%;
	padding: 10px;
	overflow: hidden;/*
	border: 1px solid #ccc;*/
	margin: -1px -1px 0 0;
	/* border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc; */
}

.page-template-page-shop .posts .post-container {
	width: 33.33333%;
	padding: 10px;
	overflow: hidden;/*
	border: 1px solid #ccc;*/
	margin: -1px -1px 0 0;
	/* border-left: 0px solid #ccc;
    border-right: 0px solid #ccc;
    border-bottom: 0px solid #ccc; */
}

/* .posts .post,
.posts .page {
	width: 100%;
	padding: 16px;
	background: #fff;
	position: relative;
} */

.posts .post.sticky .is-sticky { display: inline; }

.featured-media {
	display: block;
	overflow: hidden;
	position: relative;
}

.featured-media a,
.featured-media iframe,
.featured-media object { display: block; }

.featured-media img {
	display: block;
	width: 100%;
	height: auto;
}

.posts .format-standard .featured-media:hover img,
.posts .format-image .featured-media:hover img {

}


/*  Post overlay  ----------------------------------------- */


.post-overlay {
	display: block;
	background: rgba(204,204,204,0.8);
	opacity: 0;
	position: absolute;
	z-index: 900;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.format-standard .featured-media:hover .post-overlay,
.format-image .featured-media:hover .post-overlay { opacity: 1; }

.format-gallery .flexslider:hover .post-overlay { opacity: 1; }

.post-overlay .view {
	display: block;
	width: 100%;
	font-size: 15px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
	text-align: center;
	position: absolute;
	top: 40%;
	margin-top: -6px;
}

.post-overlay .subview {
	display: block;
	width: 100%;
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #333;
	text-align: center;
	position: absolute;
	top: 30px;
	margin-top: -6px;
}


.post-overlay .view a,
.post-overlay .subview a {
	color: #333;
}

/*  Post header  ----------------------------------------- */


.posts .featured-media + .post-header { margin-top: 36px; }

.posts .post-title,
.related-posts .post-title {
	text-align: center;
    font-size: 19px !important;
    color: #f16334;
	padding: 20px 0 9px !important;
	font-family: 'Altissimo-Light';
}

.posts .post-title:hover { color: #c04f29; }

.post-subtitle,
.related-posts .post-subtitle {
	color: #b1b1b1; /*#f16334; */
	font-weight: 200 !important;
    margin-top: 7px;
    font-size: 16px !important;
    line-height: 22px;
    text-align: center;
}

.single .post-subtitle {
    /* color: #b1b1b1;
    margin-top: 5px;
    font-size: 20px;
    margin-bottom: 10px;
	font-weight: 200; */
	
	color: #f16334;
    margin-right: 5px;
    margin-left: 5px;
    padding-top: 12px;
    padding-bottom: 2px;
    background: #fff;
    padding-left: 12px;
    padding-right: 12px;
    text-transform: uppercase;
    font-size: 13px !important;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.single .readingtime {
	color: #b1b1b1;
    font-size: 14px;
    margin-bottom: 44px;
    font-weight: 200;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/*  Post excerpt  ----------------------------------------- */

figure {
    display: block;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

.materialen, .afmetingen {
    font-size: 15px;
    line-height: 1.3em;
    font-weight: 200;
	color: #666;
	padding: 10px 0;
}

.afmetingen {
	padding-top: 20px;
}

.eerste_alinea {
	margin-bottom: 20px;
}

.post-excerpt {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.3em;
    font-weight: 200;
    color: #666;
}

.post-excerpt a {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.3em;
    font-weight: 200;
    color: #666;
}

.post-excerpt a:hover {
    color: #666;
}

.single .post-excerpt {
   font-size: 16px;
	color: #666;
    margin-bottom: 30px;
    line-height: 170%;
	margin-bottom: 1.1em;
	font-weight: 200 !important
}

.post-excerpt p {
	line-height: 145%;
	font-style: italic;
	color: #666;
}

.nl-text {
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 200;
	color: #666;
	text-align: center
}

/* Item Grid ----------------------------- */


ul.item-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
	margin: 0 0 -60px -40px;
	padding-top: 40px;
}

.dunne-lijn {
	border: 1px solid #ccc;
}

.item-grid li {
    margin: 0 0 60px 40px;
    position: relative;
    width: calc( 33.33333% - 40px );
}

.item-grid li p {
	padding-bottom: 20px;
}

.over-titel {
	text-align: center;
	padding-bottom: 20px;
	text-transform: uppercase;
}

.quote {
	padding-bottom: 10px;
}

.quote:before {
	content: "\f10d";
    font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	padding-right: 10px;
    color: #ccc;
}

/* .quote:after {
	content: "\f10e";
    font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	padding-left: 10px;
    color: #ccc;
} */


/* --------------------------------------------------------------------------------------------- */
/*	X. Template: FAQ
/* --------------------------------------------------------------------------------------------- */

.title {
	text-align: center;
	margin: 0 auto;
	padding-top: 40px;
	font-weight: 200;
}

.rp-titel {
    text-align: center;
    margin: 0 auto;
    padding-top: 0px;
	font-weight: 200;
	font-size: 15px;
	text-transform: uppercase;
	color: #333;
}

.faq-item {
	margin-bottom: 2.8rem;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.question {
	display: flex;
	padding: 1.5rem 0 0;
}

.question {
	cursor: pointer;
}

.question .arrow-wrapper {
	flex-shrink: 0;
	position: relative;
	width: 2.2rem;
}

.question .arrow {
	position: absolute;
	transition: transform .25s linear;
}

.question .title:after {
	content: "\f078";
    font-family: Font Awesome\ 5 Free;
	font-weight: 900;
	color: #ccc;
	padding-right: 20px;
	display: block;
	padding-top: 20px;
}

.question.active .title:after  {
	content: '\f077';
}

.answer {
	display: none;
	margin-top: 1.5rem;
	/* max-width: 54rem; */
}

.email-questions {
	max-width: 54rem;
}

.no-js .question .arrow {
	/* transform: none; */
}

.no-js .answer {
	display: block;
}


/*  Posts meta  ----------------------------------------- */


.posts-meta {
	margin-top: 20px;
	font-size: 1em;
	line-height: 120%;
	text-transform: uppercase;
	color: #999;
	text-align: center;
}

.posts-meta a { color: #F16334; }
.posts-meta a:hover { color: #666; }


/*  Post formats  ----------------------------------------- */


/* gallery format */


.flexslider { position: relative; }

.flex-direction-nav {
	width: 100%;
	position: absolute;
	z-index: 1001;
	top: 50%;
	margin-top: -16px;
}

.wp-is-mobile .flex-direction-nav { display: none; }

.flex-direction-nav a {
	display: block;
	width: 32px;
	height: 32px;
	background: #333 no-repeat center;
	background-size: auto 10px;
	text-indent: -99999px;
}

.flex-direction-nav li:nth-child(1) a {
	float: left;
	margin-left: -32px;
	background-image: url(images/icons/chevron-left_w.png);
}

.flex-direction-nav li:nth-child(2) a {
	float: right;
	margin-right: -32px;
	background-image: url(images/icons/chevron-right_w.png);
}

.flexslider:hover .flex-direction-nav a {
	margin-left: 0;
	margin-right: 0;
}

.flex-direction-nav a:hover { background-color: #adadad; }



/* -------------------------------------------------------------------------------- */
/*	6. Single post
/* -------------------------------------------------------------------------------- */


.post.single { background: #fff; }

.post-inner {
	width: normal;
	max-width: 85%;
	padding: 7.5% 0;
	margin: 0 auto;
	padding-top: 15px;
}


/* Post header  ----------------------------------------- */


.post.single .post-title {
	text-align: center;
    font-size: 26px;
	color: #f16334;
	font-family: 'Altissimo-Light';
    padding: 30px 0 9px;
}

.post.single .post-title a { color: #f16334; }
.post.single .post-title a:hover { color: #F16334; }


/* Page links  ----------------------------------------- */


.page-links {
	display: inline-block;
	margin-bottom: 15px;
	background: #eee;
	border-radius: 3px;
	overflow: hidden;
	font-size: 0.9em;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

.page-links a,
.page-links > span {
	display: inline-block;
	padding: 10px;
}

.page-links a:first-child,
.page-links span:first-child {
	margin-left: 0;
}

.page-links a:hover {
	background: #adadad;
	color: #fff;
}

.page-links > span:nth-of-type(2) {
	background: #ddd;
	color: #666;
}

/* Art  ----------------------------------------- */

.lino {
	float: left;
	margin-left: -6px;
	padding-right: 30px;
	/* margin-top: 48px; */
}

figcaption {
	font-size: 13px;
	color: #b1b1b1;
}

figcaption h3 {
    display: block;
    font-weight: 200 !important;
    margin-top: 1px !important;
    padding-bottom: 4px !important;
	margin-bottom: 0 !important;
	font-size: 16px !important;
	color: #f16334;
	letter-spacing: .8px;
    font-family: 'Altissimo-Light';
}

.shoppingcart {
	float: right;
	font-size: 15px;
}

.shoppingcart:hover {
	color: #F16334;
}

.shoppingcart-button {
    float: right;
    font-size: 15px;
    border-radius: 6px;
    background: #F16334;
    padding: 20px;
    color: #fff;
    letter-spacing: 0.8px;
}

.shoppingcart-button a {
	color: #fff;
}

.slogan {
	text-align: center;
    font-size: 18px;
    color: #f16334;
	padding: 30px 0 9px;
	font-family: 'Altissimo-Light';
}

/* --- Filter --- */

#filterOpties {
    text-align: center;
	padding: 0;
	margin-bottom: 30px;
    margin-top: 20px;
}

.container {
    overflow: hidden;
}

.filterDiv {
    display: none !important;
}

.show {
    display: block !important;
}

.btn {
    color: #999999;
    margin-right: 5px;
    margin-left: 5px;
    padding-top: 12px;
    padding-bottom: 2px;
    background: #fff;
    padding-left: 12px;
    padding-right: 12px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
	/* margin-bottom: 30px; */
	border-bottom: 1px solid transparent;
}

.btn:hover {
	border-bottom: 1px solid #f1f1f1;
	cursor: pointer;
	color: #f16334;
    background: transparent;
}

.btn.active {
	border-bottom: 1px solid #f1f1f1;
	color: #999999;
}

.btn.is-checked {
	border-bottom: 1px solid #f1f1f1;
}


/* Post meta bottom  ----------------------------------------- */


.post-meta-bottom {
	margin-top: 16px;
	font-size: 0.85em;
	color: #999;
}

.product-titel {
    font-size: 17px;
    color: #666;
	font-family: 'Altissimo-Light';
	padding: 9px 0 4px;
    text-align: left;
}

.prijs .woocommerce-Price-amount.amount{
	color: #b1b1b1 !important;
    letter-spacing: 0.8px;
    text-align: center;
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 47px;
}

.post-meta-bottom ul li {
	float: left;
	margin-right: 20px;
	line-height: 140%;
}

.post-meta-bottom li a { color: #b1b1b1; }
.post-meta-bottom li a:hover { color: #F16334; }

.post-meta-bottom .post-tags a { margin-right: 6px; }
.post-meta-bottom .post-tags a:last-child { margin-right: 0; }
.post-meta-bottom .post-tags a:before { content: "#"; }


/* Post navigation  ----------------------------------------- */

/* Pagination ----------------------------- */

.pagination-single {
	margin-top: 4rem;
}

.pagination-single a {
	align-items: center;
	color: #666;
	display: flex;
	font-weight: 200;
	font-size: 16px;
	line-height: 1.25;
	text-decoration: none;
}

.pagination-single a .titel:hover {
	color: #f16334;
}

.pagination-single a + a {
	margin-top: 1.5rem;
}

.pagination-single .arrow {
	align-items: center;
	background: #E6E9EC;
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	height: 3.6rem;
	justify-content: center;
	margin-right: 1.5rem;
	transition: background-color .15s linear;
	width: 3.6rem;
}

.pagination-single .arrow img {
	transition: fill .15s linear;
}

.pagination-single a:hover {
	color: #232D37;
}

.pagination-single a:hover .arrow {
	background: #DCDFE2;
}

.pagination-single a:hover .arrow g {
	fill: #4B555F;
}


/* Related Posts ----------------------------- */

.hanging-titles {
	margin-top: 40px;
}

.related-posts {
	margin-top: 4rem;
}

.related-posts-title {
	color: #69737D;
	font-size: 1.4rem;
	font-weight: 600;
	margin-bottom: 2rem;
	text-transform: uppercase;
}

.related-posts .posts {
	padding: 0;
}

/* .post-navigation {
	min-height: 2px;
}

.post-navigation a {
	display: block;
	height: 120px;
	margin-top: 3%;
	margin-bottom: 3%;
	overflow: hidden;
	position: relative;
}

.post-navigation a.next-post {
	float: right;
	width: 48.5%;
	color: #ccc;
}

.post-navigation .post-nav-prev { float: left; }
.post-navigation .post-nav-next { float: right; }

.post-navigation p {
	width: 100%;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #666;
	position: absolute;
	top: 50%;
	margin-top: -7px;
	right: 0;
	left: 0;
}

.post-navigation a:hover { background: #fff; }
.post-navigation a:hover p { color: #F16334; } */

/* Title left blocks ----------------------------- */

.related-posts {
	margin: 0px auto 0 auto;
	padding: 30px 0 0 0;
	position: relative;
}

.related-posts-title {
	font-weight: 600;
	position: absolute;
		left: 0;
		top: 30px;
	width: 33% /*calc( 34.125% - 20px )*/;
}


/* Related Posts ----------------------------- */

.related-post-image {
	/* background-color: rgba( 0, 0, 4, 0.1 ); */
	border-radius: 3px;
}

.related-posts {
		display: -webkit-box;
		display: -ms-flexbox;
	display: flex;
		-ms-flex-wrap: wrap;
	flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: -20px;
	max-width: 85%;
}

.volle-wijdte {
	max-width: 100% !important;
}


.related-post {
	float: left;
	margin-bottom: 25px;
	width: /*calc( 50% - 10px )*/ 33%;
}

.related-post-image {
	margin-bottom: 10px;
}

.related-post-image img {
	/* display: none; */
	height: 251px;
	border-radius: 3px;
}

.related-post-image:before {
	/* content: "";
	display: block;
	padding-bottom: 62.5%;
	width: 100%; */
}

.related-post .title {
	line-height: 1.25;
		-ms-word-break: break-word;
	word-break: break-word;
	font-size: 15px;
    text-transform: uppercase;
}

.related-post .title span {
	border-bottom: 1px solid transparent;
	transition: border-color .15s linear;
	color: #333
}

.related-post:hover {
	text-decoration: none;
}

.related-post:hover .title span {
	border-bottom-color: #b1b1b1;
}


/* Post formats  ----------------------------------------- */


/* format gallery */


.post.single .flex-direction-nav { margin-top: -24px; }

.post.single .flex-direction-nav a {
	width: 48px;
	height: 48px;
}

.post.single .flex-direction-nav li:nth-child(1) a { margin-left: -48px; }
.post.single .flex-direction-nav li:nth-child(2) a { margin-right: -48px; }

.post.single .flexslider:hover .flex-direction-nav a {
	margin-left: 0;
	margin-right: 0;
}


/* -------------------------------------------------------------------------------- */
/*	7. Post content
/* -------------------------------------------------------------------------------- */


.post-content { color: #666; }

.post-content a:hover { text-decoration: underline; }

.post-content p,
.post-content blockquote,
.post-content ul,
.post-content ol,
.post-content address,
.post-content dl,
.post-content .wp-caption,
.post-content pre {
	line-height: 170%;
	margin-bottom: 1.1em;
	font-weight: 200 !important
}

.post-content > *:first-child { margin-top: 0; }
.post-content *:last-child { margin-bottom: 0; }

.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 {
	margin: 50px 0 25px;
	font-weight: normal;
}

.post-content h1 { font-size: 2em; }

.post-content h2 {
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 200;
    color: #f16334;
    letter-spacing: 0.8px;
}

.post-content h3 { font-size: 1.6em; }

.post-content h4 {
	font-size: 1.4em;
	font-weight: normal;
}

.post-content h5 {
	font-size: 1.2em;
	font-weight: 400;
}

.post-content h6 {
	margin-bottom: 15px;
	font-size: 0.9em;
	font-weight: normal;
	text-transform: uppercase;
}

.post-content h1+h1, .post-content h1+h2, .post-content h1+h3, .post-content h1+h4, .post-content h1+h5, .post-content h1+h6,
.post-content h2+h1, .post-content h2+h2, .post-content h2+h3, .post-content h2+h4, .post-content h2+h5, .post-content h2+h6,
.post-content h3+h1, .post-content h3+h2, .post-content h3+h3, .post-content h3+h4, .post-content h3+h5, .post-content h3+h6,
.post-content h4+h1, .post-content h4+h2, .post-content h4+h3, .post-content h4+h4, .post-content h4+h5, .post-content h4+h6,
.post-content h5+h1, .post-content h5+h2, .post-content h5+h3, .post-content h5+h4, .post-content h5+h5, .post-content h5+h6,
.post-content h6+h1, .post-content h6+h2, .post-content h6+h3, .post-content h6+h4, .post-content h6+h5, .post-content h6+h6 {
	margin-top: 25px;
}

.post-content blockquote {
	margin: 2.5em 0;
	padding: 0 80px 0 0;
	position: relative;
	color: #666;
}

.post-content blockquote:before {
	content: '\f106';
	font: 64px/1 "Genericons";
	width: 64px;
	height: 64px;
	color: #adadad;
	position: absolute;
	top: -4px;
	right: -6px;
}

.post-content blockquote p {
	font-size: 1.25em;
	line-height: 160%;
	font-style: italic;
}

.post-content cite {
	font-size: 0.9rem;
	line-height: 140%;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.post-content cite:before { content: "— "; }

.post-content blockquote cite {
	display: block;
	margin-top: 1em;
}

.post-content blockquote cite em { font-style: italic; font-weight: normal; }

em, q {  font-style: italic;  }

.post-content strong em,
.post-content em strong {
	font-weight: normal;
	font-style: italic;
}

.post-content big { font-size: 1.25em; }

abbr, acronym { cursor: help; }

code, kbd, pre {
	font-size: 0.85em;
	background: #EEE;
	font-family: Menlo, Monaco, monospace;
}

.post-content .highlight {
	background: #fcf8a5;
	width: auto;
	display: inline;
	padding: 2px 3px;
}

.post-content kbd,
.post-content code {
	padding: 5px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.post-content dl { line-height: 160%; }

.post-content dl dt { font-weight: normal; }

.post-content hr {
	width: 100%;
	height: 2px;
	background: #EEE;
	margin: 3em auto;
	border: 0;
}

.post-content ul {
	list-style: disc;
	margin-left: 1.5em;
}

.post-content ul ul { list-style: circle; }
.post-content ul ul ul { list-style: square; }

.post-content ol {
	list-style: decimal;
	margin-left: 1.5em;
}

.post-content ol ol { list-style: lower-alpha; }
.post-content ol ol ol {
	list-style: lower-roman;
}

.post-content ul ul,
.post-content ul ol,
.post-content ol ul,
.post-content ol ol {
	margin-bottom: 0;
}

.post-content li {
	margin-bottom: 0.5em;
	line-height: 170%;
}

.post-content ol > li:last-child,
.post-content ul > li:last-child {
	margin-bottom: 0;
}

.post-content ol > li:first-child,
.post-content ul > li:first-child {
	margin-top: 0.5em;
}

.post-content address {
	padding: 3% 3.5%;
	background: #f1f1f1;
}

.post-content pre {
	white-space: pre-wrap;       /* css-3 */
	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
	white-space: -pre-wrap;      /* Opera 4-6 */
	white-space: -o-pre-wrap;    /* Opera 7 */
	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	line-height: 140%;
	padding: 2% 2.5%;
	background: #333;
	font-size: 0.8em;
	color: #FFF;
	border-radius: 6px;
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
}

.flex-control-nav {
    display: flex;
    position: absolute;
    bottom: 25px;
    left: 25px;
    transition: all .25s linear;
}

/* Post media --------------------------------------- */


.wp-caption,
.post-content img {
	max-width: 100%;
}

.post-content .wp-caption { margin-bottom: 1.5em; }

img.alignleft,
.alignleft img,
img.aligncenter,
.aligncenter img,
img.alignright,
.alignright img,
img.alignnone,
.alignnone img {
	display: block;
	box-sizing: border-box;
	padding: 5px;
	border: 1px solid #EEE;
}


.post-content .alignleft,
.post-content .alignright {
	margin-bottom: 1em;
	max-width: 45%;
}

.post-content .wp-caption .alignleft,
.post-content .wp-caption .alignright {
	margin-bottom: 0;
}

.post-content .alignleft {
	float: left;
	margin-right: 1em;
}

.post-content .alignright {
	float: right;
	margin-left: 1em;
}

.post-content .aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.post-content .wp-caption-text,
.post-content .gallery-caption {
	padding-top: 10px;
	font-size: 0.9em;
	line-height: 120%;
	font-style: italic;
	color: #666;
	text-align: center;
}

.post-content .gallery-caption {
	font-size: 16px;
	line-height: 24px;
}


/* Tables --------------------------------------- */


.post-content table {
	border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    font-size: 0.9em;
    width: 100%;
}

.post-content th,
.post-content td {
	padding: 2%;
	margin: 0;
	overflow: visible;
	line-height: 120%;
	/* border-bottom: 1px solid #DDD; */
}

.post-content caption {
	color: #444;
	text-align: center;
	padding: 2%;
}

.post-content thead {
	vertical-align: bottom;
	white-space: nowrap;
}

.post-content th {
	font-weight: normal;
	color: #444;
}

.post-content table tbody > tr:nth-child(odd) > td { background: #fff; }


/* Forms --------------------------------------- */


.post-content fieldset {
	padding: 25px;
	border: 2px solid #eee;
	margin-bottom: 1em;
}

.post-content fieldset legend {
	font-size: 0.8rem;
	line-height: 1;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 10px 12px;
	background: #adadad;
	color: #fff;
}

.post-content label {
	font-size: 1rem;
	font-weight: normal;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	width: 100%;
	padding: 14px 16px;
	font-size: 0.9em;
	border: none;
	color: #333;
	background: #f2f2f2;
	/* border-radius: 3px; */
	font-weight: 200;
	-webkit-appearance: none;
}

.post-content input[type="file"] {
	padding: 10px;
	background: #f2f2f2;
	/* border-radius: 3px; */
}

textarea {
	height: 180px;
	line-height: 140%;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus {
	outline: none;
}

input[type="submit"] {
	padding: 16px;
	margin: 0;
	border: none;
	background: #F16334;
	color: #fff;
	font-size: 14px !important;
	line-height: 1;
	-webkit-appearance: none;
	letter-spacing: 0.8px;
	-webkit-appearance: none;
}

.post-content input[type="submit"] + input[type="reset"],
.post-content input[type="submit"] + input[type="button"],
.post-content input[type="reset"] + input[type="submit"],
.post-content input[type="reset"] + input[type="button"],
.post-content input[type="button"] + input[type="reset"],
.post-content input[type="submit"] + input[type="submit"] {
	margin-left: 10px;
}

input[type="submit"]:hover {
	cursor: pointer;
	background: #903b1f;
	color: #fff;
	padding: 16px;
}

.post-content input[type="submit"]:focus,
.post-content input[type="submit"]:active {
	outline: none;
}


/* -------------------------------------------------------------------------------- */
/*	8. Comments
/* -------------------------------------------------------------------------------- */


/* Comments container --------------------------------------- */


.comments-inner {
	padding: 7.5% 0;
	width: 620px;
	max-width: 85%;
	margin: 0 auto;
	position: relative;
}


/* Comments title --------------------------------------- */


.comments-title,
.comment-reply-title {
	margin-bottom: 40px;
	font-size: 1.5em;
	font-weight: normal;
	color: #333;
}

.comments-title:after,
.comment-reply-title:after {
	content: "";
	display: block;
	width: 48px;
	height: 2px;
	background: #ddd;
	margin-top: 20px;
}

.no-comments {
	text-align: center;
	font-style: italic;
	color: #999;
}


/* Comment --------------------------------------- */


.commentlist div.comment {
	margin-top: 30px;
	border-top: 2px solid #eee;
	padding-top: 30px;
	position: relative;
}

.commentlist > li.comment:first-child > div.comment:first-child {
	margin-top: 0;
	border-top: none;
	padding-top: 0;
}

.commentlist .children { margin-left: 8%; }

.comment-header {
	margin-bottom: 20px;
	position: relative;
}

.comment .avatar {
	float: left;
	width: 50px;
}

.comment.bypostauthor > .comment .comment-header:before {
	content: "";
	display: block;
	width: 24px;
	height: 24px;
	background: #adadad;
	border-radius: 999px;
	position: absolute;
	z-index: 999;
	top: -12px;
	left: -12px;
}

.comment.bypostauthor > .comment .comment-header:after {
	content: '\f304';
	display: block;
	font: 16px/1 "Genericons";
	color: #fff;
	position: absolute;
	z-index: 1000;
	top: -8px;
	left: -8px;
}

.comment-header-inner { padding: 4px 0 0 62px; }

.comment-header h4 {
	font-size: 1em;
	font-weight: normal;
	color: #333;
}

.comment-header h4 a { color: #333; }
.comment-header h4 a:hover { color: #adadad; }

.comment-meta {
	margin-top: 8px;
	font-size: 0.75em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comment-meta,
.comment-meta a { color: #999; }

.comment-meta a:hover { color: #666; }


/* Comment actions --------------------------------------- */


.comment-actions {
	margin-top: 25px;
	font-size: 0.75em;
}

.comment-actions .fleft {
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.comment-actions .sep {
	color: #ddd;
	margin: 0 10px;
}

.comment-actions a:hover { text-decoration: underline; }

.comment-awaiting-moderation {
	font-weight: normal;
	font-style: italic;
	color: #999;
}


/* Pingbacks --------------------------------------- */


.comments .pingbacks {
	margin-top: 30px;
	border-top: 2px solid #eee;
	padding-top: 45px;
}

.pingbacks-title {
	font-size: 0.8em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.comments .pingbacks li {
	padding: 12px 4px;
	border-bottom: 1px solid #eee;
}

.comments .pingbacks li:first-child { border-top: 1px solid #eee; }
.comments .pingbacks li:nth-child(2n) { background: #fafafa; }

.comments .pingbacks li .url {
	line-height: 140%;
	color: #767676;
}

.comments .pingbacks li .comment-edit-link {
	margin-left: 4px;
	font-size: 0.7em;
	font-weight: normal;
	text-transform: uppercase;
	color: #999;
}

.comments .pingbacks li a:hover { color: #adadad; }


/* Comment navigation --------------------------------------- */


.comments-nav {
	margin-top: 30px;
	border-top: 2px solid #eee;
	padding-top: 20px;
	font-size: 0.9em;
	font-weight: normal;
}

.comments-nav a { color: #666; }
.comments-nav a:hover { color: #adadad; }


/* -------------------------------------------------------------------------------- */
/*	9. Respond
/* -------------------------------------------------------------------------------- */


.comments-container + .respond-container { border-top: 2px solid #eee; }

.comment-respond {
	padding: 7.5% 0;
	width: 620px;
	max-width: 85%;
	margin: 0 auto;
	position: relative;
}

.commentlist .comment-respond {
	max-width: 100%;
	margin: 30px 0 0;
	border-top: 2px solid #eee;
	padding: 30px 0 0;
}

#cancel-comment-reply-link {
	margin-left: 5px;
	font-size: 0.9rem;
	font-weight: normal;
	color: #999;
}

#cancel-comment-reply-link:hover {
	text-decoration: underline;
	color: #999;
}

.comment-notes { color: #666; }

.comment-form { margin-top: 40px; }

.comment-form p { margin-top: 30px; }

.comment-form p a:hover { text-decoration: underline; }

.comment-form-comment + .comment-form-author,
.comment-form-comment + .comment-form-author + .comment-form-email {
    margin-top: 30px;
}

p.comment-form-author,
p.comment-form-email {
	width: 47.5%;
	float: left;
	margin: 0 0 30px;
}

p.comment-form-author { margin-right: 5%; }

.comment-form label {
	display: block;
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 6px;
	color: #666;
}

.comment-form input[type="checkbox"] + label {
	display: inline;
	font-weight: 400;
	letter-spacing: 0;
	margin: 0 0 0 5px;
	text-transform: none;
}

.comment-form .required {
	color: red;
	margin-left: 3px;
}

.comment-form input,
.comment-form textarea { font-family: 'Lato', sans-serif; }

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
	display: block;
	width: 100%;
	padding: 16px 18px;
	/* border-radius: 3px; */
	background: #f2f2f2;
	color: #333;
	border: none;
	font-size: 0.95em;
	margin: 0;
}

.comment-form textarea {
	height: 250px;
	line-height: 140%;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form textarea:focus {
	outline: none;
}

.form-submit #submit {
	padding: 14px 20px 16px 20px;
	border: none;
	margin: none;
	background: #333;
	border-radius: 3px;
	font-size: 0.5em;
	color: #fff;
	-webkit-appearance: none;
}

.form-submit #submit:hover {
	cursor: pointer;
	background: #adadad;
}

.comment-form .comment-subscription-form label {
	text-transform: none;
	letter-spacing: 0;
}

.comment-subscription-form + .comment-subscription-form { margin-top: 12px; }


/* -------------------------------------------------------------------------------- */
/*	10. Pagination
/* -------------------------------------------------------------------------------- */


/* Page title --------------------------------------- */


.page-title { padding: 1% 0 10px; }

.page-title h4 {
	display: block;
	padding-bottom: 10px;
	border-bottom: 2px solid #e1e1e1;
	margin: 0 10px;
	line-height: 120%;
	font-weight: normal;
	color: #666;
}

.search-no-results .page-title { padding-bottom: 20px; }
.search-no-results .page-title h4 { margin: 0; }

.page-title span {
	float: right;
	font-weight: 400;
	font-style: italic;
	color: #999;
}


/* Archive navigation --------------------------------------- */


.archive-nav { margin-top: 40px; }

.archive-nav a {
	font-size: 0.8em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
	padding-bottom: 5px;
	border-bottom: 2px solid transparent;
}

.archive-nav .archive-nav-older { float: right; }
.archive-nav .archive-nav-newer { float: left; }

.archive-nav a:hover {
	color: #666;
	border-bottom-color: #ccc;
}


/* Infinite handle (Jetpack infinite scroll) --------------------------------------- */


.infinite-scroll .posts { padding-bottom: 70px; }

.infinite-scroll .archive-nav { display: none; }

#infinite-handle {
	width: 100%;
	position: absolute;
	top: auto !important;
	bottom: 0;
	text-align: center;
}

#infinite-handle span {
	display: inline-block;
	padding: 15px 20px;
	background: #fff;
	font-size: 0.8rem;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #666;
}

#infinite-handle span:before { content: "+ "; }

#infinite-handle span:hover {
	color: #333;
	cursor: pointer;
}


/* Infinite loader (Jetpack infinite scroll) --------------------------------------- */


.infinite-loader {
	width: 100%;
	text-align: center;
}

.infinite-loader .spinner {
	display: block;
	position: absolute !important;
	top: auto !important;
	bottom: 10px !important;
	left: 50% !important;
	margin-left: -12px;
}


/* -------------------------------------------------------------------------------- */
/*	12. Page & Page Templates
/* -------------------------------------------------------------------------------- */


/* Search form --------------------------------------- */


.search-form { position: relative; }

.search-field {
	display: block;
	width: 100%;
	padding: 20px 80px 20px 20px;
	margin: 0;
	border: none;
	border-radius: 3px;
	background: #eee;
	font-family: 'Lato', sans-serif;
	font-size: 0.95em;
	color: #666;
}

.search-field:focus { outline: none; }

.search-button {
	display: block;
	height: 32px;
	width: 32px;
	position: absolute;
	top: 50%;
	margin-top: -16px;
	right: 15px;
}

.search-button .genericon {
	font-size: 32px;
	color: #666;
}

.search-button:hover { cursor: pointer; }
.search-button:hover .genericon { color: #adadad; }


/* Archive template --------------------------------------- */


.archive-container h3 {
	font-size: 1.4em;
	font-weight: normal;
	margin: 50px 0 20px;
}

.archive-container > ul {
	list-style: none;
	margin-left: 0;
}

.archive-container ul ul { margin-left: 30px; }

.archive-container li {
	padding: 12px 0;
	margin: 0;
	border-top: 1px solid #eee;
	line-height: 130%;
	word-break: break-word;
	-ms-word-break: break-word;
}

.archive-container ul > li:last-child { border-bottom: 1px solid #eee; }

.archive-container ul ul li:first-child { margin-top: 12px; }

.archive-container ul ul li:last-child { padding-bottom: 0; }

.archive-container .posts-archive-list span {
	margin-left: 4px;
	font-size: 0.7em;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #999;
}

.archive-container a:hover { text-decoration: underline; }



/* -------------------------------------------------------------------------------- */
/*  12. Footer
/* -------------------------------------------------------------------------------- */

.mission-statement {
    text-transform: uppercase;
    color: #b1b1b1;
    letter-spacing: 0.8px;
    text-align: center;
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 47px;
}

.privacy {
    color: #b1b1b1;
    letter-spacing: 0.8px;
    text-align: center;
    font-size: 13px;
    font-weight: 200;
    margin-bottom: 47px;
}

.privacy a {
	color: #b1b1b1;
	border-bottom: 1px solid #b1b1b1;
}

.privacy a:hover {
	color: #f16334;
	border-bottom: 1px solid #f16334;
}

footer {
	background: #ededed;
	color: #8e8e8e;
	font-size: 14px;
	font-weight: 200;
	line-height: 20px;
    padding-bottom: 47px;
    padding-top: 30px;
}

.footer-inner {
    margin: 0 auto;
    /* max-width: 124rem; */
    /* position: relative;
    width: 87%; */
	padding: 41px 0;
	width: 1200px;
    max-width: 86%;
}

.fa-pinterest-p:before,
.fa-instagram:before {
	font-size: 22px;
}

.fa-instagram:before {
	padding-left: 20px;
}

footer a {
	color: #8e8e8e;
	font-size: 14px;
	font-weight: 200;
	line-height: 20px;
}

footer a:hover {
	color: #333;
}

.widget-title {
    color: #474747;
	font-size: 0.9rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.widget_text.widget.right .textwidget.custom-html-widget {
	width: 78%;
}

.footer-button {
    /* float: right; */
    font-size: 15px;
    border-radius: 6px;
    background: #F16334;
    padding: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
}

.footer-button a {
	color: rgba(255,255,255,0.8);
}

.footer-button a:hover {
	color: rgba(255,255,255,1);
}

/* --- Widgets --- */

.far-left {
    float: left;
    max-width: 25%;
    width: 25%;
}

.far-left li + li { margin-top: 1rem; }

.far-left a {
    display: block;
    height: 2.5rem;
    padding: 1rem 0 0 0rem;
    position: relative;
}

.far-left label {
    color: #d5d5d5;
    padding-bottom: 10px;
}

.right {
    float: right;
    max-width: 33%;
    width: 33%;
}

.right li + li { margin-top: 1rem; }



.far-right, .left {
    float: right;
    max-width: 33%;
    width: 33%;
}

.far-right li + li, .left li + li  { margin-top: 0.4rem; }

.far-right a, .left a {
	padding:  0rem;
    position: relative;
}

.far-right .social-twitter i.fab.fa-twitter, .far-right .social-facebook i.fab.fa-facebook-f, .far-right .social-linkedIn i.fab.fa-linkedin-in, .far-right .social-rssfeed i.fas.fa-rss {
    transition: transform .25s ease-in-out;
}

.far-right .social-twitter:hover i.fab.fa-twitter {
    border-top-color: #1da1f2;
    color: #1da1f2;
}

.far-right .social-linkedIn:hover i.fab.fa-linkedin-in {
    border-top-color: #0077b5;
    color: #0077b5;
}

.far-right .social-facebook:hover i.fab.fa-facebook-f {
    border-top-color: #3b5998;
    color: #3b5998;
}

.far-right .social-rssfeed:hover i.fas.fa-rss {
    border-top-color: #f26522;
    color: #f26522;
}

.far-right .social-instagram:hover i.fab.fa-instagram {
    border-top-color: #e1306c;
    color: #e1306c;
}

.far-right .social-youtube:hover i.fab.fa-youtube {
    border-top-color: #ff0000;
    color: #ff0000;
}

.far-right span:before {
    display: block;
    font-size: 1.8rem;
    padding-top: 1rem;
    position: relative;
        right: 0rem;
    text-align: center;
}

.far-right .social-facebook span:before,
.far-right .social-instagram span:before {
    padding-top: 1.1rem;
}


img#wpstats { display: none !important; } /* silly wp stats */


/* --- 12.4 Copyright & Menu  --- */

.copyright {
    color: #a5a5a5;
    font-size: 13px;
    text-align: left;
    border-top: 1px solid #d5d5d5;
    padding: 20px 0;
    margin-top: 44px;
    text-transform: uppercase;
}

.copyright p {
    float: left;
    font-size: 1.6rem;
}

.credits p + p { float: right; }

.credits a:hover { color: #fff; }

.footer-menu {
	float: right;
	margin-top: -50px;
}

.footer-menu li {
	display: inline-block;
	margin-top: 13px;
	font-weight: lighter;
	text-transform: uppercase;
	position: relative;
	padding-right: 20px;
	font-size: 13px;
}

.footer-menu li:after {
	content: ' | ';
	padding-left: 10px;
}

.footer-menu li:last-child:after {
	content: '';
	padding-left: 10px;
}

.footer-menu a {
		font-size: 13px;
}

.footer-menu > li:first-child { margin-top: 0; }

.footer-menu ul { margin-left: 10px; }



/* -------------------------------------------------------------------------------- */
/*	8. Gravity Forms
/* -------------------------------------------------------------------------------- */

.gform_wrapper label.gfield_label {
	font-weight: 200 !important;
	text-transform: uppercase;
	letter-spacing: 0.6px;
	font-size: 14px !important;
	margin-bottom: -5px !important;
}


/* -------------------------------------------------------------------------------- */
/*	X.	Media Queries
/* -------------------------------------------------------------------------------- */

@media ( min-width: 600px ) {

	.comments-wrapper {
	margin-top: 9.5rem;
	}

	/* PAGINATION SINGLE */

	.pagination-single {
		display: flex;
		justify-content: space-between;
	}

	.pagination-single.only-next {
		justify-content: flex-end;
	}

	.pagination-single a {
		min-width: 33.3%;
	}

	.pagination-single .arrow {
		height: 2.4rem;
		margin-right: 2rem;
		width: 2.4rem;
	}

	.pagination-single .arrow img {
		height: 0.6rem;
		width: 0.6rem;
	}

	.pagination-single a + a {
		margin: 0 0 0 3rem;
	}

	.pagination-single .next-post {
		flex-direction: row-reverse;
		text-align: right;
	}

	.pagination-single .next-post .arrow {
		margin: 0 0 0 2rem;
	}
}



@media ( max-width: 1300px ) {


	/* Site Header ---------------------------- */

	.site-header .toggle p {
		display: none;
	}

	.header-account {
		right: 100px;
	}

	.header-account:after {
		background: #e1e1e5;
		content: "";
		display: block;
		height: 38px;
		position: absolute;
			right: -38px;
			top: calc( 50% - 19px );
		width: 1px;
	}
}

@media ( max-width: 1000px ) {


	/* Site Header ---------------------------- */

	.site-header .section-inner {
		padding: 25px 15%;
		width: 100%;
	}

	.site-header .header-titles {
		max-width: 100%;
	}

	.site-header .custom-logo-link img {
		margin-bottom: -10px;
		margin-top: -10px;
		max-height: 55px;
		object-fit: contain;
	}

	.site-header .site-title {
		font-size: 28px;
	}

	.site-header .site-description,
	.header-search,
	.header-account,
	.social-menu.header {
		display: none;
	}

	.header-cart {
		right: 5%;
	}

	.lang-menu {
		display: none
	}

	.post-excerpt {
		padding-bottom: 20px;
	}

	.product-upper-wrapper {
		padding-bottom: 0 !important;;
	}

	.over-cv {
		width: 50% !important;
	}

	.over-cv-rechts {
		background: rgba(255,255,255,1); 
		margin-left: 0px; 
		z-index: 999;
		padding: 0px;
		font-size: 14px;
		font-weight: 200;
		display: block;
	}

	/* Site Navigation ---------------------------- */

	.site-nav {
		display: none;
	}

	/* NAVIGATION TOGGLE */

	.nav-toggle {
		cursor: pointer;
		display: block;
		position: absolute;
			bottom: 0;
			left: 0;
			top: 0;
		width: calc( 10% + 24px );
		z-index: 1001;
	}

	.nav-toggle .bar {
		background-color: #111;
		display: block;
		height: 2px;
		position: absolute;
			left: calc( 50% - 12px );
			top: calc( 50% - 1px );
		transition: transform .15s ease-in, background-color .15s ease-in .7s, opacity 0s .15s, width 0s .15s, margin .15s ease-out .15s;
		width: 24px;
	}
	
	.nav-toggle .bar:nth-child(1) { margin-top: -7px; }
	.nav-toggle .bar:nth-child(2) { margin-top: -1px; width: 16px; }
	.nav-toggle .bar:nth-child(3) { margin-top: 5px; width: 20px; }
	
	.nav-toggle.active .bar {
		background: #fff;
		transition: margin .15s ease-in, opacity 0s .15s, width 0s .15s, background-color .2s ease-in, transform .15s ease-out .2s;
	}
	
	.nav-toggle.active .bar:nth-child(1) {
		margin-top: -1px;
			-webkit-transform: rotate( 45deg );
		transform:             rotate( 45deg );
	}
	
	.nav-toggle.active .bar:nth-child(2) {
		opacity: 0;
		width: 24px;
	}
	
	.nav-toggle.active .bar:nth-child(3) {
		margin-top: -1px;
			-webkit-transform: rotate( -45deg );
		transform:             rotate( -45deg );
		width: 24px;
	}

	/* CONTENT OVERLAY */

	.mobile-nav-content-overlay {
		display: block;
		opacity: 0;
		position: fixed;
			bottom: 0;
			left: -9999px;
			right: 9999px;
			top: 0;
		transition: opacity .2s ease-in .7s, left 0s .9s, right 0s .9s;
		z-index: 1000;
	}

	body.showing-mobile-menu .mobile-nav-content-overlay {
		left: 0;
		opacity: 1;
		right: 0;
		transition: opacity .15s ease-out;
	}

	/* BODY INNER */

	.body-inner {
		transition: transform .3s ease-in .4s;
		width: 100%;
	}

	body.showing-mobile-menu .body-inner {
		transform: translateX( calc( 90% - 24px ) );
	}


	/* MOBILE MENU */

	.mobile-menu-wrapper {
		background: #fff;
		box-shadow: 0 0 30px rgba( 0, 0, 0, 0.15 );
		display: block;
		overflow: auto;
		position: fixed;
			bottom: 0;
			right: 9999px;
			top: 0;
		transition: transform .3s ease-in .4s, right 0s .7s;
		width: calc( 90% - 24px );
		z-index: 1002;
	}

	.mobile-menu-wrapper.visible {
		right: 100%;
		transform: translateX( 100% );
		transition: transform .3s ease-in .4s;
	}


	/* MOBILE MENU */

	.mobile-menu,
	.mobile-menu ul {
		margin: 0;
	}

	.mobile-menu {
		background: #fff;
		padding: 10px 0;
	}

	.mobile-menu a {
		display: block;
		padding: 20px 5vw;
	}

	.mobile-menu > li > a,
	.mobile-menu > li > div > a {
		font-family: 'Altissimo-Light', Arial;
		font-size: 22px;
		color: #666;
	}

	.mobile-menu .current-menu-item > a,
	.mobile-menu .current-menu-item > div > a {
		color: #f16334;
	}

	.menu-toggle-wrapper {
		padding-right: 54px;
		position: relative;
	}

	.menu-toggle-wrapper .sub-nav-toggle {
		cursor: s-resize;
		position: absolute;
			bottom: 0;
			right: 0;
			top: 0;
		width: 54px;
	}

	.menu-toggle-wrapper .sub-nav-toggle:before {
		background: url( ./assets/svg/chevron-down-black.svg ) no-repeat center;
		background-size: 12px auto;
		content: "";
		display: block;
		position: absolute;
			bottom: calc( 50% - 5px );
			left: calc( 50% - 6px );
		transition: transform .3s linear;
		height: 10px;
		width: 12px;
	}

	.menu-toggle-wrapper .sub-nav-toggle.active {
		cursor: n-resize;
	}

	.menu-toggle-wrapper .sub-nav-toggle.active:before {
		transform: rotate( 180deg );
	}

	.mobile-menu ul {
		background: rgba( 0, 0, 35, .04 );
		display: none;
		padding: 10px 0;
	}

	.mobile-menu ul a {
		font-size: 16px;
		font-weight: 500;
		padding: 18px 5vw;
	}

	.mobile-menu ul ul {
		margin: 8px 0;
	}

	.mobile-menu ul ul a { padding-left: 7.5vw;}
	.mobile-menu ul ul ul a { padding-left: 10vw;}
	.mobile-menu ul ul ul ul a { padding-left: 12.5vw;}
	.mobile-menu ul ul ul ul ul a { padding-left: 15vw;}
	.mobile-menu ul ul ul ul ul ul a { padding-left: 17.5vw;}

	/* MOBILE SOCIAL MENU */

	.mobile.social-menu {
		border-bottom: 1px solid #e1e1e5;
		border-top: 1px solid #e1e1e5;
		display: flex;
		padding: 0 calc( 5vw - 15px );
	}

	.mobile.social-menu a {
		display: block;
		padding: 20px 15px;
	}

	.mobile.social-menu a:before {
		font-size: 24px;
	}

	.mobile.social-menu a:hover {
		opacity: 0.5;
		text-decoration: none;
	}
}


@media ( min-width: 700px ) {

	/* Template: FAQ ------------------------------------ */

	.faq-item {
		margin-bottom: 4rem;
	}

	.question {
		padding-top: 1.8rem;
	}

	.question .arrow-wrapper {
		width: 3.2rem;
	}

	.answer {
		margin-top: 2rem;
	}

}

@media (max-width: 1200px) {


	/* structure */

	.section { padding: 60px 0; }

	.medium-padding { padding: 45px 0; }
	.small-padding { padding: 30px 0; }
	.no-padding { padding: 0; }

	/* blog */

	.posts .post-container { width: 50%; }


}


@media (max-width: 800px) {

	.lang-menu {
		display: none;
	}

	.over-beeld-item {
		width: 50%;
		padding-right: 20px;
	}

	.over-beelden {
		height: auto;
	}

	.over-beeld-item h3 {
		padding-top: 20px;
	}

	.title {
		padding-bottom: 30px; 
	}

	/* single post */

	.related-posts {
		margin-top: 80px;
		max-width: 560px;
		padding: 25px 0 0 0;
	}

	.related-posts-title {
		margin-bottom: 40px;
		position: static;
		width: 100%;
	}

	.post-navigation a { height: 100px; }

	.far-left {
		float: left;
		max-width: 50%;
		width: 50%;
		margin-bottom: 50px;
	}

	.far-right, .left {
		float: right;
		max-width: 50%;
		width: 50%;
		margin-bottom: 50px;
	}

	.right {
		float: right;
		max-width: 50%;
		width: 50%;
	}

	.content {
		width: 1200px;
		max-width: 96%;
		margin: 0px auto;
	}

	.woocommerce-product-gallery {
		width: 100%;
		margin-bottom: 28px;
	}


}


@media (max-width: 600px) {

	.over-beeld-item {
		width: 95%;
		padding-right: 20px;
	}

	.over-cv {
		width: 100% !important;
	}

	/* Site Header ---------------------------- */

	.site-header .section-inner {
		padding-top: 19px;
		padding-bottom: 22px;
	}

	.site-header .custom-logo-link img {
		margin-bottom: -7px;
		margin-top: -7px;
		max-height: 42px;
	}

	.site-header .site-title {
		font-size: 24px;
	}

	/* Site Navigation ---------------------------- */

	.mobile-menu a {
		padding: 16px 5vw;
	}
		
	#mobile-search-field {
		font-size: 14px;
		height: 70px;
	}
	
	.mobile-menu > li > a,
	.mobile-menu > li > div > a {
		font-size: 18px;
	}
	
	.mobile-menu ul {
		padding: 8px 0;
	}
	
	.mobile-menu ul a {
		font-size: 13px;
		padding: 12px 5vw;
	}
	
	.mobile-menu ul ul {
		margin: 5px 0;
	}
	
	.mobile.social-menu {
		padding: 0 calc( 5vw - 10px );
	}
	
	.mobile.social-menu a {
		padding: 20px 10px;
	}
	
	.mobile.social-menu a:before {
		font-size: 22px;
	}


	/* sidebar */

	header { padding: 20px 5%; }

	.blog-title a {
		padding: 5px 7px 5px 9px;
		font-size: 16px;
		letter-spacing: 2px;
	}

	.lino {
    	margin-left: -6px;
    	width: 100%;
    	display: block;
    	margin-bottom: 30px !important;
	}

	/* blog */

	.posts .post-container {
		width: 100%;
		padding: 0;
	}

	.posts .post-container + .post-container { margin-top: 20px; }

	.load-container { margin-top: 30px; }

	/* Newsletter */
	.mc-field-group {
		margin: 10px 0;
	}

	.subscribe-form form {
		display: block;
	}

	/* single post */

	.post.single .post-inner { padding-top: 30px; }

	.post.single .post-title {
		font-size: 1.75em;
		margin-bottom: 20px;
	}

	body.single-post .content.thin,
	body.page .content.thin,
	body.single-attachment .content.thin {
		margin: 0 auto;
		max-width: 98%;

	}

	.post-navigation { padding: 0 3%; }

	/* post content */

	.post-content h1, .post-content h2, .post-content h3, .post-content h4, .post-content h5, .post-content h6 { margin: 40px 0 20px; }

	.post-content h1 { font-size: 1.75em; }
	.post-content h2 { font-size: 1.5em; }
	.post-content h3 { font-size: 1.25em; }
	.post-content h4 { font-size: 1.1em; }
	.post-content h5 { font-size: 1em; }
	.post-content h6 { font-size: 0.85em; }

	.post-content blockquote {
		padding: 0 60px 0 0;
		margin: 1.5em 0;
	}

	.post-content blockquote:before {
		font-size: 48px;
		width: 56px;
		height: 56px;
		top: -2px;
		right: -11px;
	}

	.post-content blockquote p {
		font-size: 1.05em;
		line-height: 150%;
	}

	.post-content blockquote cite { font-size: 0.8rem; }

	.post-content hr { margin: 2em 0; }

	.post-content .alignleft,
	.post-content .alignleft img,
	.post-content .alignright,
	.post-content .alignright img {
		max-width: 100%;
		float: none;
		margin-left: auto;
		margin-right: auto;
	}

	/* comments */

	.comments-title,
	.comment-reply-title {
		font-size: 1.25em;
	}

	#cancel-comment-reply-link { font-size: 0.85rem; }

	.comment-actions .fleft,
	.comment-actions .fright {
		float: none;
	}

	.comment-awaiting-moderation { margin-bottom: 15px; }

	.comments-nav { padding: 18px 0; }

	.comments-nav span { display: none; }

	/* respond */

	.comment-form { margin-top: 30px; }

	.comment-form p { margin-top: 20px; }

	.comment-form p:first-child { margin-top: 0; }

	p.comment-form-author,
	p.comment-form-email {
		width: 100%;
		float: none;
		margin: 20px 0 0 0;
	}

	.comment-form textarea { height: 180px; }

	/* pagination */

	.page-title { padding-bottom: 20px; }

	.page-title h4 {
		font-size: 0.8em;
		margin: 0;
	}
	.far-left, .far-right, .left, .right {
		float: none;
		max-width: 100%;
		width: 100%;
		margin-bottom: 50px;
	}

	.footer-inner {
		padding: 0;
	}

	.footer-menu {
		float: left;
		margin-top: 0px; 
		margin-bottom: 20px;
	}


}

@media (max-width: 500px) {


	/* navigation */

	.mobile-menu li { margin-top: 20px; }
	.mobile-menu ul { margin-left: 20px; }

	.mobile-menu .current-menu-item:before,
	.mobile-menu .current_page_item:before {
		left: -16px;
	}

	/* blog */

	.related-posts {
		margin: 50px 0 0;
		padding: 15px 0 0 0;
	}

	.related-posts-title {
		margin-bottom: 25px;
	}

	.related-post {
			display: -webkit-box;
			display: -ms-flexbox;
		display: flex;
		margin: 0 0 15px 0;
		width: 100%;
	}

	.related-post-image {
		height: 80px;
		margin: 0 12px 0 0;
		min-width: 80px;
	}


	.posts .post { width: 100%; }

	/* single post */

	.post-navigation { padding: 15px; }

	.post-navigation a {
		max-height: 80px;
		width: 100%;
		margin: 0;
		float: none !important;
	}

	.post-navigation a + a { margin-top: 15px; }

	.post-meta-bottom ul li {
		float: none;
		display: block;
		margin: 0;
	}

	.post-meta-bottom ul li + li { margin-top: 8px; }

	/* post formats */

	.post.single .flex-direction-nav { margin-top: -16px; }

	.post.single .flex-direction-nav a {
		width: 32px;
		height: 32px;
	}

	.post.single .flex-direction-nav li:nth-child(1) a { margin-left: -32px; }
	.post.single .flex-direction-nav li:nth-child(2) a { margin-right: -32px; }

	.post.single .flexslider:hover .flex-direction-nav a {
		margin-left: 0;
		margin-right: 0;
	}

	/* post content */

	.post-content fieldset { padding: 15px; }

	/* pagination */

	.archive-nav { margin: 30px 0 25px; }


}
