﻿/* MAIN CONTAINER */

div.duco-search-wizard-container {
	padding-top: 10px;
}

	div.duco-search-wizard-container .duco-search-wizard {
		margin: 0;
		padding: 0;
		font-size: 1.063em;
		line-height: 1.412;
		color: black;
	}


		/* POPUP DELAY SPINNER */

		div.duco-search-wizard-container .duco-search-wizard .delayspinner .delayspinnerbg {
			position: fixed;
			z-index: 1000;
			top: 0;
			left: 0;
			height: 100%;
			width: 100%;
			background: #647962;
			opacity: .7;
		}

		div.duco-search-wizard-container .duco-search-wizard .delayspinner .delayspinnercontent {
			position: fixed;
			width: 300px;
			height: 150px;
			z-index: 1001;
			text-align: center;
			padding-top: 50px;
			top: 50%;
			left: 50%;
			margin: -100px 0 0 -150px;
			background: #e2e1e1;
			border: 1px solid #51bb46;
			border-radius: 5px 5px 5px 5px;
			color: #48a03e;
			-webkit-border-radius: 5px 5px 5px 5px;
			-moz-border-radius: 5px 5px 5px 5px;
		}


		/* SEARCH WIZARD CATEGORY LISTING */

		div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories {
			width: 100%;
		}

			div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategories-row {
				width: 100%;
				font-size: 0px;
				display: flex;
				flex-wrap: wrap;
			}

			div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory {
				vertical-align: middle;
				background: #d9d9d9;
				cursor: pointer;
				color: #000;
				text-align: center;
				font-size: 20px;
				line-height: 20px;
				text-transform: none !important;
				width: 19%;
				height: 70px;
				display: flex;
				align-items: center;
				justify-content: center;
				margin-bottom: 1.25%;
				margin-right: 1.25%;
			}

				div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory:nth-child(5n) {
					margin-right: 0px;
				}

				div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory:hover {
					background: #51bb46;
					color: #fff;
				}

				div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory.selected {
					background: #51bb46;
					color: #fff;
				}

				div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory span.search-maincategory-name {
					display: inline-block;
					margin: 0 10px;
					font-weight: bold;
				}


/* SEARCH BOX - CONTAINER */

div.search-form {
	margin: 0;
}

	div.search-form form {
		margin: 0;
	}

	div.search-form .searchboxcontainer {
		height: 34px;
		padding: 20px;
		padding-left: 10px;
		padding-top: 15px;
		padding-bottom: 15px;
		border: solid 1px #d9d9d9;
	}

		div.search-form .searchboxcontainer .searchboxcontainer-table {
			table-layout: fixed;
			width: 100%;
			display: table;
		}

			div.search-form .searchboxcontainer .searchboxcontainer-table .searchboxcontainer-table-row {
				display: table-row;
			}

				div.search-form .searchboxcontainer .searchboxcontainer-table .searchboxcontainer-table-row .defaultcell {
					display: flex;
				}

			div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxField {
				flex: 1;
				/* flex-grow: 10; */
				width: 100%;
				margin-left: 10px;
			}


/* SEARCH INPUT BOX */

input#SearchText {
	-webkit-appearance: textfield;
	-moz-box-sizing: content-box;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
}

div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxField input#SearchText {
	width: 90%;
	font-size: 24px !important;
	height: 25px;
	margin: 2px 0;
	border: 0;
	color: #000;
	outline: none;
}

div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxButton {
	width: 45px;
	vertical-align: middle;
	display: table-cell;
}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxButton .wizardsubmitbutton {
		background-color: #fff;
		background-position: 1px 50%;
		background-repeat: no-repeat;
		border: 0;
		float: right;
		overflow: hidden;
		color: #d9d9d9;
		font-size: 24px;
		cursor: pointer;
	}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxButton .wizardsubmitbutton:hover {
			color: #000;
		}

/* SEARCH TAGS - left side of search field box */

div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags {
	flex: 0 1 auto;
}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_category_box,
	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_usetag_box {
		display: block;
		height: 34px;
		cursor: pointer;
		color: #fff;
	}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag:first-child .search_usetag_box {
		padding-left: 10px;
	}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag:first-child .search_category_box:before,
		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag:first-child .search_usetag_box:before {
			content: "";
			border: 0;
		}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag {
		float: left;
		margin-left: -5px;
	}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_category_box:before,
		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_usetag_box:before {
			content: "";
			border-top: 17px solid #51bb46;
			border-left: 10px solid #fff;
			border-bottom: 17px solid #51bb46;
			display: inline-block;
			float: left;
			z-index: 100;
			position: relative;
		}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_category_box span,
		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_usetag_box span {
			padding: 0 10px;
			display: inline-block;
			background: #51bb46;
			float: left;
			height: 34px;
			line-height: 34px;
			cursor: pointer;
			color: #fff;
		}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_category_box:after,
		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_usetag_box:after {
			content: "";
			border-top: 17px solid transparent;
			border-left: 10px solid #51bb46;
			border-bottom: 17px solid transparent;
			display: inline-block;
			margin-right: -3px;
			z-index: 200;
			position: relative;
		}

		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_category_box span:before,
		div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags .searchbox-tag .search_usetag_box span:before {
			width: 15px;
			height: 15px;
			vertical-align: baseline;
			line-height: 34px;
			content: "x ";
			padding-left: 5px;
			font-size: 1.0em;
		}

div.search-form .searchboxcontainer .searchboxcontainer-table span.twitter-typeahead {
	display: initial !important;
}

	div.search-form .searchboxcontainer .searchboxcontainer-table span.twitter-typeahead input.tt-hint {
		display: none;
	}

div.search-form .searchboxcontainer .searchboxcontainer-table span.tt-dropdown-menu {
	margin-top: 10px;
	padding-right: 50px;
	margin-left: 0px;
	padding-left: 12px;
	padding-bottom: 5px;
	background-color: #51bb46;
	width: 100%;
	color: white;
	z-index: 1000 !important;
}


/* SEARCH SUB TAGS - list of tags below the search field */

div#searchtagcontainer {
}

div.search-subcategories-row {
}

	div.search-subcategories-row .searchTermsContainer .searchTerms {
		width: 100%;
		overflow: hidden;
		padding: 20px 0 0;
	}

		div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm {
			float: left;
			margin: 0 10px 10px 0;
		}

			div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm .searchTermItem {
				display: block;
				height: 34px;
				cursor: pointer;
			}

				div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm .searchTermItem span {
					padding: 0 10px;
					display: inline-block;
					background: #d9d9d9;
					float: left;
					height: 34px;
					line-height: 34px;
				}

				div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm .searchTermItem:hover span {
					background: #333333;
					color: #fff;
				}

				div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm .searchTermItem:after {
					content: "";
					border-top: 17px solid transparent;
					border-left: 10px solid #d9d9d9;
					border-bottom: 17px solid transparent;
					display: inline-block;
					margin-right: 0px;
					z-index: 200;
					position: relative;
				}

				div.search-subcategories-row .searchTermsContainer .searchTerms .searchTerm .searchTermItem:hover:after {
					border-left: 10px solid #333333;
				}

/* SEARCH RESULTS */

div.searchresults {
	margin-top: 15px;
}

div.searchitem {
	width: 317px;
	/*height: 330px;*/
}

	div.searchitem.smallitem {
		width: 317px;
		height: auto;
	}

	div.searchitem .cardTbl {
		position: relative;
		width: 317px;
		margin-top: 10px;
		display: table;
	}

		div.searchitem .cardTbl .cardRow {
			/*display: table-row;*/
			max-height: 200px;
		}

			div.searchitem .cardTbl .cardRow .cardCell {
				overflow: hidden;
				font-size: 20px;
				color: #51bb46;
				text-decoration: none;
				line-height: 1.2em;
				padding: 20px;
				font-weight: bold;
			}

			div.searchitem .cardTbl .cardRow .imageHeaderText {
				overflow: hidden;
				font-size: 20px;
				text-decoration: none;
				line-height: 1.2em;
				padding: 20px;
				font-weight: bold;
				color: white;
				text-shadow: 2px 2px 4px #757575;
			}

	div.searchitem .cardHeader {
		height: 300px;
	}

div.downloadBlock {
	display: table-row;
	background-repeat: no-repeat;
	background-position: center;
	background-color: #e5e5e5;
}

div.searchitem .cardHeader .cardCell p {
	font-size: 18pt;
	font-weight: normal;
	line-height: normal;
}

div.searchitem .cardFaq {
	background: #fff;
	border: 1px solid #51bb46;
	height: 100%;
}

div.searchitem .toelichting {
	word-wrap: break-word;
	background: #51bb46;
	color: white;
	padding: 12px;
	font-weight: bold;
	font-size: 11pt;
}

div.searchitem .toelichting2 {
	word-wrap: break-word;
	background: white;
	color: black;
	padding: 12px;
	font-weight: bold;
	font-size: 11pt;
}

div.searchitem .iframe {
	height: 170px;
}

#content div.searchitem a {
	color: #50b848;
	text-decoration: none;
}

div.get-more-searchresults {
	text-align: center;
	padding: 20px;
	clear: both;
	background-color: #50b848;
	margin-top: 20px;
}

	div.get-more-searchresults .loadbutton {
		border: 0;
		background: 0;
		border-radius: 7px;
		color: white;
		cursor: pointer;
		font-size: 20px;
	}

#searchtagcontainerbutton {
	display: none;
}


/* INFO PAGE*/

div.article-bottom {
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: hidden;
	border-top: 1px solid #50b848;
	border-bottom: 1px solid #50b848;
}

	div.article-bottom i {
		font-size: 18px;
	}

.article-sharing {
	float: left;
	width: 69%;
}

.social-media-container {
	float: left;
	display: flex;
}

.social-media-text {
	cursor: pointer;
	width: 70px;
	display: table-cell;
	color: #50b848;
	font-size: 18px;
}

.print-button.print {
	float: left;
	margin-left: 30px;
}

a.btn-print-page {
	padding-left: 45px;
	cursor: pointer;
}

.article-feedback {
	float: right;
	width: 30%;
}

#content a.inactive {
	color: #000000;
}

#content a.chosen {
	color: #50b848;
}

@media only screen and (min-width: 769px) {
	.customer-feedback .customer-feedback-container {
		position: absolute;
		right: 30px;
	}
}

.customer-feedback-top {
	display: table;
}

.customer-feedback-row {
	display: table-row;
}

.feedback-title {
	display: table-cell;
	color: #50b848;
	font-size: 18px;
}

.feedback-spacer {
	width: 10px;
	display: table-cell;
}

.feedback-icon-container {
	display: table-cell;
}

.feedback-icon {
	margin-right: 5px;
}

	.feedback-icon a {
		width: 22px;
		height: 22px;
		background-position: top;
		display: block;
	}

.customer-feedback-bottom {
	width: 100%;
	overflow: hidden;
}

div#sharebottom {
	display: table-cell;
}

.has-left-block.page-type-info .page-block.feedbackblock,
.has-left-block.page-type-wizarditem .page-block.feedbackblock {
	width: 972px;
}

/* RESPONSIVE */

@media (max-width: 800px) {
	div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory {
		width: 32%;
		margin-bottom: 2%;
		margin-right: 2%;
	}

		div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory:nth-child(5n) {
			margin-right: 2%;
		}

		div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory:nth-child(3n) {
			margin-right: 0px;
		}
}

@media screen and (max-width: 668px) {
	div.duco-search-wizard-container .duco-search-wizard {
		padding: 25px;
	}

	div.grid-item, div.searchitem {
		width: 100%;
	}

		div.searchitem .cardTbl, div.searchitem iframe {
			width: 100%;
		}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxField input#SearchText {
		font-size: 21px !important;
	}

	div.search-form .searchboxcontainer .searchboxcontainer-table span.tt-dropdown-menu {
		display: none !important;
	}
}

@media (max-width: 600px) {
	div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory {
		width: 100%;
		margin-right: 0px;
	}

		div.duco-search-wizard-container .duco-search-wizard .searchframe .search-maincategories .search-maincategory:nth-child(5n) {
			margin-right: 0px;
		}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxField input#SearchText {
		width: 100%;
		font-size: 16px !important;
	}

	div.search-form .searchboxcontainer .searchboxcontainer-table .searchBoxTags {
		display: none;
	}

	#searchtagcontainerbutton.show {
		display: block;
		margin-top: 20px;
		text-align: right;
	}

		#searchtagcontainerbutton.show .fa {
			vertical-align: middle;
		}

		#searchtagcontainerbutton.show .fa-minus-square-o {
			display: none;
		}

	div#searchtagcontainer.hidden {
		display: none;
	}

	div.search-form .searchboxcontainer {
		margin-top: 20px;
	}
}