@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain) */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

@font-face {
	font-family: 'vtf_victoriannathin_italic';
	src: url('library/font/vtf_victorianna_thin_talic-webfont.woff2') format('woff2'),
		url('library/font/vtf_victorianna_thin_talic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}
@font-face {
	font-family: 'vtf_victoriannathin';
	src: url('library/font/vtf_victorianna_thin-webfont.woff2') format('woff2'),
		url('library/font/vtf_victorianna_thin-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

input:matches([type="button"], [type="submit"], [type="reset"]):active, input[type="file"]::-webkit-file-upload-button:active, button:active {
	color: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
	background-color: whitesmoke;
	/*		min-height: 100vh;*/

}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* General layout */
body, html {
	font-size: 16px;
	font-family: 'Georgia', serif;

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: #F8F8F8;
	line-height: 1.2em;
}

.simplebar-scrollbar {
	width: 3px!important;
	background: lightgrey!important;

}
.simplebar-track {
	width: 5px!important;
}
.box {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.wrap {
	float: left;
	width: 100%;
	min-height: 100vh;

	max-height: 100%;
	height: 100%;
	/* min-height: 100vh; */
	overflow: hidden;
	position: absolute;
}

/* Menu */
.menu-wrap {
	/*	max-height: 18px;*/
	overflow: hidden;
	-webkit-transition: max-height 0.25s linear;
	-moz-transition: max-height 0.25s linear;
	-o-transition: max-height 0.25s linear;
	transition: max-height 0.25s linear;
}

/*
.menu-wrap.submenu:hover {
max-height: 300px;
-webkit-transition: max-height 0.5s linear;
-moz-transition: max-height 0.5s linear;
-o-transition: max-height 0.5s linear;
transition: max-height 0.5s linear;
}
*/

.menu-item {
	padding-left: 1em;
	color: grey;
	/*
	-webkit-transition: color 0.25s linear;
	-moz-transition: color 0.25s linear;
	-o-transition: color 0.25s linear;
	transition: color 0.25s linear;
	*/
	margin-bottom: 3px;
	cursor: pointer;
}
.menu-item.sub {
	margin-top: 3px;
	display: none!important;
	/*	padding-left: 2em;*/
}
.active .menu-item.sub {
	display: block!important;
	/*	padding-left: 2em;*/
}

.menu-item.info {
	color: grey;
	/*
	-webkit-transition: color 0.25s linear;
	-moz-transition: color 0.25s linear;
	-o-transition: color 0.25s linear;
	transition: color 0.25s linear;
	*/
	margin-bottom: 3px;
}

.menu-item:hover {
	color: black;
}

.menu-item.active {
	color: black;
}

.menu-item.header {
	padding-left: 0px;
}

.menu-wrap:hover .menu-item {
	display: block;
}

.dotdotdot {
	opacity: 0;
}

.collums:hover .dotdotdot {
	opacity: 1;
	-webkit-transition: opacity 0.25s linear;
	-moz-transition: opacity 0.25s linear;
	-o-transition: opacity 0.25s linear;
	transition: opacity 0.25s linear;
}

/* Books wrap */
#books-wrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	padding: 1em;
	padding-top: 40px;
	overflow: auto;
	z-index: 9999;
}
#books-wrap #wrapper {
	height: 100%;
	width: 100%;
	top: 0px;
	left: 0px;
	padding: 10px;
	padding-bottom: 50px
}

#books-wrap.sort {
	pointer-events: auto;
}
#books-wrap.sort .wrap {
	overflow-y: auto;
}

#books-wrap.sort .book-item {
	position: relative;
	left: 0!important;
	top: 0!important;
	margin-right: 1em;
	margin-bottom: 1em;
	cursor: pointer;
}

.book-item {
	width: 130px;
	display: inline-block;
	position: absolute;
	pointer-events: auto;
	cursor: grab;
}

.overlay-book {
	width: 100%;
	height: 100%;
	position: absolute;
	/*	display: none;*/
	top: 0px;
	padding: 3px;
	padding-top: 10px;
	text-align: center;
	font-family: 'helvetica', arial, sans-serif;
	font-size: 13px;
	line-height: 120%;
	opacity: 0;
	-webkit-transition: opacity 0.15s linear;
	-moz-transition: opacity 0.15s linear;
	-o-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;

}
.book-item:hover .overlay-book {
	/*	display: block;*/
	opacity: 1;
	-webkit-transition: opacity 0.15s linear;
	-moz-transition: opacity 0.15s linear;
	-o-transition: opacity 0.15s linear;
	transition: opacity 0.15s linear;

}

.book-item:hover {
	z-index: 100!important;
}

.book-item:active {
	cursor: grabbing;
}

.book-item img {
	width: 100%;
	display: block;
}

.image-overlay {
	position: fixed;
	height: 100%;
	height: calc(100% - 56px);
	width: 100%;
	text-align: center;
	display: none;
}

.image-overlay img {
	max-width: 50%;
	max-height: 80%;
	vertical-align: middle;
	zoom: 2;
}

.helper {
	display: inline-block;
	height: 100%;
	vertical-align: middle;
}

/* Info en Contact */
.indent {
	padding-left: 1em;
	display: inline-block;
	width: 100%;
}

a {
	text-decoration: none;
	font-style: italic;
	color: black;
}

a:hover {
	font-style: italic;
	text-decoration: underline;
	cursor: pointer;
}

.toolbar a {
	font-style: normal;
	text-decoration: none;
}

.toolbar.active {
	background-color: white;
}

p {
	font-size: 1em;
	max-width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.titels {
	margin-left: none;
}

.collection-index p {
	text-indent: -2.5em;
	padding-left: 2.5em
}

.index-number {
	width: 2.5em;
	display: block;
	float: left;
	text-transform: uppercase;
}

sup {
	cursor: pointer;
	margin-left: 2px;
	top: -5px;
	position: relative;
	font-size: 12px;

}

sup:hover {
	color: black;
	text-decoration: underline;
}

.imgthumb {
	height: 75px;
	position: fixed;
	display: none;
	z-index: 9999;
}

sup:hover .imgthumb {
	display: block;
}

/* h1, h2, h3, h4 */
h1, h2 {
	font-size: 1.2em;
	font-style: normal;
	text-transform: uppercase;
}

h3 {
	text-transform: uppercase;
	margin: 0;
}

h1 a {
	font-style: normal;
	text-transform: uppercase;
}

h1 a:hover {
	text-decoration: none;
	font-style: normal;
}
h6 {
	font-size: 1.2em;
}
i {
	font-style: italic;
}

h4 {
	text-transform: uppercase;
}

h5 {
	font-style: italic;
}

h2.regelement {
	font-size: 1.2em;
	font-style: normal;
	text-transform: uppercase;
	position: absolute;;
	top: 15px;
}
h2 + p {
	margin-top: 18px;
}
.collums.rules {
	-webkit-columns: 4 200px;
	-moz-columns: 4 200px;
	columns: 4 100px;
	-webkit-column-gap: 1em;
	-moz-column-gap: 1em;
	column-gap: 1em;
	width: 80%;
	height: auto;
	padding-top: 50px;
}

.collums.fixed {
	position: fixed;
}

.collums.margin-left {
	margin-left: 20%;
}

.collums.rules p {
	text-indent: 1.5em;
}

.back-inside {
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
}

/* Collecties */
.collection-wrap {
	padding-left: 1em;
	text-indent: -1em;
}
.collection-img-wrap {
	z-index: 99999;
}
.bullet {
	width: 1em;
	display: inline-block;
	text-indent: 0;
}

mark {
	background-color: transparent;
}

mark:hover {
	background-color: #f5ada8;
}

.voetnoot {
	cursor: pointer;
	font-size: 14px;
	line-height: 120%;
	padding-left: 17px;
	text-indent: -17px;
	display: inline-block;

}
.voetnoot:hover {
	text-decoration: underline;
}
.voetnoot sup {
	width: 15px;
	display: inline-block;
	text-indent: 0px;
}
.collections-wrap {
	line-height: 120%;
}
.news-item .collections-wrap {
	margin-top: 3px;
}

.collection-item {
	display: inline;
	font-family: 'helvetica', arial, sans-serif;
	padding-top: 2px;
	padding-bottom: 2px;
	cursor: pointer;
	line-height: 110%;
	color: black;
}
.collection-item-wrap {
	display: inline-block;
	margin-bottom: 10px;
}

/* Buttons */
footer {
	position: absolute;
	left: 1em;
	bottom: 1em;
	z-index: 9999;
}

button {
	font-size: 1.35em;
	font-family: Helvetica;
	text-transform: uppercase;
	text-decoration: none;
	background-color: white;
	border-color: white;
	border: none;
	outline: none;
}

.archive-collection.header {
	margin-top: 0.4em;
	margin-bottom: 0.8em;
	text-align: center;
}

button.toolbar {
	margin-left: 0.3em;
}

button:hover {
	background-color: white!important;
}

.buttons {
	display: inline-block;
	width: 80%;
	width: calc(100% - 121px);
	position: absolute;
	top: 8px;
}	
.buttons-covers {
	position: fixed;
	bottom: 10px;
	left: 10px;
}
button.toggle-collection::after {
	content: 'Verberg Covers'
}

button.toggle-collection.active::after {
	content: 'Toon Covers'
}

.button-collection {
	width: 100%;
	text-align: left;
}

.button-collection:hover {
	background-color: white!important;
}

.button-1, .button-2, .button-3, .button-4 {
	-webkit-transition: background-color 0.25s linear;
	-moz-transition: background-color 0.25s linear;
	-o-transition: background-color 0.25s linear;
	transition: background-color 0.25s linear;
	margin-top: 0.25em;
	margin-left: 0.25em;
}

.wrap-collections {
	position: absolute;
	background-color: rgba(0, 0, 0, 0.1);
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	padding: 0.5em;
}

.close-collections {
	position: absolute;
	right: 1em;
	top: 1em;
}

.dropshadow {
	-webkit-box-shadow: 15px 0px 15px 0px  rgba(0,0,0,0.28);
	-moz-box-shadow: 15px 0px 15px 0px  rgba(0,0,0,0.28);
	box-shadow: 15px 0px 15px 0px rgba(0,0,0,0.28);
}
.qtranxs_widget {
	list-style: none;
	font-size: 1.2em;
	font-style: normal;
	text-transform: uppercase;
	display: inline-block;
	float: right;
}
.qtranxs_widget a {
	font-style: normal;
}
.qtranxs_widget a:hover {
	text-decoration: none;
}
.search-collection {
	position: relative;
	font-size: 1.35em;
	font-family: Helvetica;
	text-align: left;
	text-decoration: none;
	background-color: white;
	border-color: white;
	border-radius: 2em;
	border: none;
	outline: none;
	padding: 0.4em;
	padding-left: 10px;
	width: 100%;
	-webkit-appearance: none;
}
.buttons:hover .search-collection {
	width: calc(100% - 60px);
}
.submit-search {
	width: 43px;
	height: 43px;
	border-radius: 30px;
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: white;
	text-align: center;
	line-height: 40px;
	cursor: pointer;
	display: none;
	top: 2px
}
.buttons:hover .submit-search {
	display: block;
}

.submit-search:hover {
	background-color: black;
	color: white;
}
.font-links {
	position: absolute;
	top: 1em;
	right: 1em;
}

a.language-switch {
	font-style: normal;
	color: black;
}

a.language-switch {
	font-style: normal;
	color: grey;
}

a.language-switch:hover {
	font-style: normal;
	color: black;
}

a.language-switch.current {
	font-style: normal;
	color: black;
}
.sub-wrapper.open {
	display: block;
}
.sub-wrapper {
	display: none;
}
/* Scrollbar styles */
::-webkit-scrollbar {
	width: 0.5em;
	height: 0.5em;
}

.collums {
	float: left;
	width: 22%;
	height: 100%;
	position: relative;
	padding: 1em;
	height: 100%;
	overflow: auto;
}

.collums-achive {
	float: left;
	width: 20%;
	height: 100%;
	position: relative;
	padding: 5;
	padding-top: 0;
}

.wide {
	width: 34%;
}
.news-item p {
	padding-left: 1em;
}
.slideshow {
	height: 100%;
	width: 100%;
	margin-top: 10vh;
}
.page-template-page-home-v3 .slideshow-wrap,
.home .slideshow-wrap {
	display: none;
}
.slideshow-wrap {
	background-color: rgba(242, 242, 242, 0.5);
	height: 100%;
	width: 100%;
	position: absolute;
	z-index: 999;
	overflow: hidden;
}
.slideshow .slide-wrap {
	max-height: 84vh;
	margin-right: 50px;
	margin-left: 50px;
	max-width: 98vw;
	height: auto!important;
	position: relative;
}
.slideshow .slide-wrap img {
	max-height: 84vh;
	max-width: 98vw;
	height: auto!important;
}
.slideshow .caption {
	font-size: 1em;
	max-width: 100%;
	position: absolute;
	margin-top: -20px;
	height: 20px;
	width: 100%;
	background-color: whitesmoke;
	text-align: center
}

.slick-arrow {
	display: inline-block;
	position: fixed;
	top: 15px;
	padding: 5px;
	text-transform: lowercase;
	-webkit-box-shadow: 15px 0px 15px 0px  rgba(0,0,0,0.28);
	-moz-box-shadow: 15px 0px 15px 0px  rgba(0,0,0,0.28);
	box-shadow: 15px 0px 15px 0px rgba(0,0,0,0.28);
	cursor: pointer;
}
.slick-arrow:hover {
	background-color: lightgrey!important;
	color: black;
}
.slick-next {
	left: 130px;
}
.slick-prev {
	left: 15px;
}

.hover-img {
	max-width: 180px;
	max-height: 180px;
	display: none;
	position: fixed;
	z-index: 9999;
	pointer-events: none;
}

/* NOT ANOTHER READING GROUP */
.page-template-page-narg a {
	color: #5858a3;

}
.page-template-page-narg a h1,
.page-template-page-narg h1 a,
.page-template-page-narg h1 {
	font-size: 2.2rem;
	line-height: 1;
	color: #5858a3;

}
.page-template-page-narg .wrap {
	color: #5858a3;
}
.victoriana {
	font-family: 'vtf_victoriannathin';
}
.victoriana-italic {
	font-family: 'vtf_victoriannathin_italic';
}
.submenu-title.indent {
	padding-left: 1em;
}
.submenu-title {
	font-size: 1.2em;
	margin-bottom: 3px;
	display: inline-block;
}
a .submenu-title {
	font-style: normal;
}
.open-sub-part {
	cursor: pointer;
}
a .submenu-title:hover,
.open-sub-part:hover,
.open-sub-part.active {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;

}
.content-scroll {
	overflow-x: hidden;
}
.container-sub-part {
	display: none;
}
.container-sub-part.open {
	display: block;
}
.news-item {
	max-width: 100%;
	padding-right: 10px;
}
.col-img {
	height: 100px;
	margin-top: 5px;
	margin-right: 5px;
	left: 1px;
	position: relative;
	cursor: pointer;
}
.img-wrap-large {
	padding-top: 50px;
}
.img-wrap-large img {
	max-width: 100%;
}
.col-img:hover {
	outline: solid 1px black;
}
.close-img-wrap {
	position: absolute;
	width: 30px;
	right: 20px;
	display: none;
	cursor: pointer;
}
.mobile {
	display: none;
}
.no-mobile {
	display: block;
}

@media screen and (max-width: 1450px) {
	body, html {
		font-size: 14px;
	}
	.collums {
		width: 25%;
	}
	.wide {
		width: 25%;
	}
	.collums.margin-left {
		margin-left: 25%;
	}
	.collums.rules {
		width: 75%;
		-webkit-columns: 3 200px;
		-moz-columns: 3 200px;
		columns: 3 100px;
	}

	@media screen and (max-width: 1000px) {
		body, html {
			font-size: 12px;
			padding-bottom: 100px;
		}

		.collums {
			width: 33.33%;
		}
		.collums.wide {
			height: auto;
			width: 100%;
			position: fixed;
			bottom: 10px;
		}
		.collums.margin-left {
			margin-left: 33.33%;
		}
		.collums.rules {
			width: 66.66%;
			-webkit-columns: 2 200px;
			-moz-columns: 2 200px;
			columns: 2 100px;
		}

	}
	@media screen and (max-width: 800px) {
		.mobile {
			display: inline-block;
		}
		.half {
			width: 45%;
		}

		.no-mobile {
			display: none;
		}

		body, html {
			font-size: 16px;
		}
		.menu-wrap {
			max-height: 3000px;
		}
		.collums {
			width: 100%;
			height: auto;
			position: relative;
		}
		.collums.rules {

			width: 100%;
			-webkit-columns: 1 200px;
			-moz-columns: 1 200px;
			columns: 1 100px;
		}
		.collums.fixed {
			position: relative;
		}

		.collums.margin-left {
			width: 100%;
		}
		.collums.margin-left {
			margin-left: 0%;
		}
		.wrap {
			position: relative;
			overflow: auto;
		}
		#books-wrap {
			display: none;
			padding-top: 0px;
			padding: 0px;
			position: fixed;
			overflow-y: scroll; /* has to be scroll, not auto */
			-webkit-overflow-scrolling: touch;
		}
		.buttons-covers {
			z-index: 9999;
		}
		.book-item {
			width: 50%;
			margin-bottom: 40px;
		}
		.overlay-book {
			font-size: 14px;
		}
		#books-wrap #wrapper {
			padding: 0px;
			text-align: center;
			padding-top: 40px;
			padding-bottom: 100px;
		}
		.book-item:hover {
			z-index: 0!important;
		}
		#books-wrap .book-item {
			position: relative;
			left: 0!important;
			top: 0!important;
			margin-right: 1em;
			margin-bottom: 1em;
			cursor: pointer;
		}

		.buttons-covers {
			right: 10px;
		}
		button {
			padding: 5px;
			font-size: 1em;
			float: left;
			margin-bottom: 5px;
			z-index: 99999999;
		}
		button.sort-collection {
			display: none;
		}
		.collums.wide {
			height: 60px;
			bottom: 10px;
			top: inherit
		}
		.buttons
	}