/*
Theme Name: Noot Ede
Theme URI: http://doelbewust.nl;
Version: 1.0.0
License: GNU General Public License v3.0 / License URI: http://www.gnu.org/licenses/gpl-3.0.html
License URI: see license.txt

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

This theme is the most seamless and minimalistic integration of Twitter Bootstrap Framework into
the _s starter theme from Automattic, the guys behind WordPress.

_s (or Underscores) http://underscores.me/, (C) 2012-2013 Automattic, Inc. Twitter Bootstrap
*/


/* My Minimal WordPress Styling comes here */

/* This is a small security for too long strings titles */
body {
	word-wrap: break-word;
}

/* Alignment */
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}
.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
}


/* Images and wp-captions should always fit and be responsive */
img {
	display: inline-block;
	height: auto;
	max-width: 100%;
}
img[class*="wp-image-"] {
	margin-top: 10px;
	margin-bottom: 10px;
}
.wp-caption {
	border: 1px solid #ccc;
	margin-bottom: 10px;
	max-width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 0 10px;
}
.wp-caption.aligncenter {
	margin-bottom: 10px;
}
.wp-caption img[class*="wp-image-"] {
	display: block;
}
.wp-caption .wp-caption-text {
	text-align: center;
	margin-top: 10px;
}

/* WP Gallery */
.gallery {
	margin-bottom: 1.5em;
}
.gallery a img {
	border: none;
	height: auto;
	max-width: 90%;
}
.gallery dd {
	margin: 0;
}
.gallery-caption {
	display: block;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}


/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
}
.screen-reader-text:hover,
.screen-reader-text:active,
.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-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 */
}


/* Content */
.main-content-inner {
	padding-bottom: 1.5em;
}
.hentry {
	margin: 0 0 1.5em;
}
.sticky {
	display: block;
}
.bypostauthor {
	display: block;
}


/* Clearing */
.clear {
	clear: both;
}

/* Navigation */

.dropdown-submenu{position:relative;}
.dropdown-submenu>.dropdown-menu{top:0;left:100%;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
.dropdown-submenu:active>.dropdown-menu, .dropdown-submenu:hover>.dropdown-menu {
display: block;
}
.dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
.dropdown-submenu:active>a:after{border-left-color:#ffffff;}
.dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}


/* Here some needed widget styles
 * Most widgets are adapted in the file bootstrap-wp.js - and REALLY easy to modify! ;) */
.widget { margin-bottom: 2em; }
.widget_nav_menu ul.sub-menu li, .widget_pages ul.children li { padding-left: 15px; }

/* Hiding the search widget's button in widgets. thats just too old-skool. :) but if you want it back, just delete the next line.
 * Note: you can change the whole appearance of the search_form() function in our searchform.php */
.widget_search .search-form input[type="submit"] { display: none; }

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Nested comments? They are threaded and nested already, you just need to add your own styling to finalize!
 * For example with some margin, like the line below ;) Delete, modify, change classes in HTML if you desire another style */
 .comment .children { margin-left: 1.5em; }

/**
* Some WP Theme Repository requirements
*/

.sticky {
}

.gallery-caption {

}

.bypostauthor {

}

.entry-meta {
	clear: both;
}

/*
 == Quick CSS styling tips ==

 You can start off in a rough direction with some minimal styles.
 See below for some tips. ;)


 == Want to have the whole site wrapped? ==

 Just fill the .container class with some background color to have a the whole site "wrapped".
 This works so easy because every main part is wrapped only once into a container class by bootstrap.
 Try out by decommenting the next line and go from there.

 .container { background: #f9f9f9; border-right: 1px solid #eee; border-left: 1px solid #eee; }


 == Want to wrap just the content and sidebar in Bootstrap style? ==

 That one is a great example to show that some things are much cleaner and easier to do via just adding some HTML classes.
 In this case, we will add just one CSS class "panel", look for example at the beginning in content.php!


 == Infinite Scrolling by Jetpack ==
 You can enable this cool feature by simply decommenting the lines below and make sure you use the same classes on the right place in your html..

/* Globally hidden elements when Infinite Scroll is supported and in use.
 * Older / Newer Posts Navigation (the pagination, must always be hidden), Theme Footer only when set to scrolling.. */

/*
.infinite-scroll .page-links,
.infinite-scroll.neverending .site-footer {
	display: none;
}
*/

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */

/*
.infinity-end.neverending .site-footer {
	display: block;
}
*/

/* Hey, if you don't need my comments anymore, just delete me! :)  */



/* **************************** DOELBEWUST EDIT **************************** */
/* **************************** DOELBEWUST EDIT **************************** */
/* **************************** DOELBEWUST EDIT **************************** */

html, body {background-size: cover; background-repeat: no-repeat;}

	*::-moz-selection {background-color: #4E8C6D; color: #FFFFFF !important;}
	::selection {background-color: #4E8C6D; color: #FFFFFF !important;}


/* **** FONT STYLING **** */
.fw-container h1 {font-size: 26px; font-weight: 500; margin-bottom: 20px;}
.fw-container h2 {font-size: 20px; font-weight: 500; margin-bottom: 15px;}
.fw-container h3 {font-size: 16px; font-weight: 500; margin-bottom: 10px;}

	.fw-container p {margin-bottom: 20px;}

		.fw-container ul {margin-bottom: 20px;}
		.fw-container ol {margin-bottom: 20px;}
		.fw-container li {margin-bottom: 10px;}


		.fw-container p a b, .fw-container p b a {
			font-size: 14px;
			font-weight: normal;
			line-height: 18px;
			color: #FFFFFF;
			padding: 8px 18px;
			background: #4e8c6d;
			text-decoration: none;
			margin-top: 20px;
			display: inline-block;
			
				-webkit-transition: all 0.3s ease 0s;
				-moz-transition: all 0.3s ease 0s;
				-o-transition: all 0.3s ease 0s;
				-ms-transition: all 0.3s ease 0s;
				transition: all 0.3s ease 0s;	
			
			}

			.fw-container p a b:hover, .fw-container p b a:hover  {background: #377656; color: #FFFFFF; cursor: pointer;}




	/* HOME */
	.dienst-content h3 {font-size: 24px;}

	/* RIGHT BLOCK */
	.fw-col-xs-12.fw-col-sm-3 ul, .fw-col-xs-12.fw-col-sm-3 ol {margin-bottom: 0px;}
		.fw-col-xs-12.fw-col-sm-3 li {margin-bottom: 10px;}

/* **** FIELD STYLING **** */
.fw-col-xs-12.fw-col-sm-4 {margin-bottom: 0px;}	
	
	/* FOLLOW UP PAGES */
	.fw-col-sm-1, .fw-col-sm-2, /*.fw-col-sm-3,*/ .fw-col-sm-4, .fw-col-sm-5, .fw-col-sm-6, .fw-col-sm-7, .fw-col-sm-8, .fw-col-sm-9, .fw-col-sm-10, .fw-col-sm-11, .fw-col-sm-12 {margin-bottom: 50px;}
	.fw-flash-message {margin-top: 50px; color: #4e8c6d;}


/* **** MENU STYLING **** */
.dropdown-menu li {min-width: 200px;}
.dropdown-menu li.active a {background-color: #4E8C6D !important; opacity: 1;}


/* **** CONTACT **** */
.fw-col-sm-6 {width: 100% !important; margin-bottom: 0px;}
.wrap-forms.contactform .field-text {margin-bottom: 10px !important;}
.wrap-forms select, .datepicker.medium.mdy.datepicker_no_icon.hasDatepicker, .name_first input, .name_last input {background-color: #B7A9C3; color: #FFFFFF; margin-bottom: 0px !important;}

.wrap-forms input::-moz-placeholder, .wrap-forms textarea::-moz-placeholder {font-style: normal !important;}

	/* INPUT FIELDS */
	.gform_wrapper li.hidden_label input, .gform_wrapper.gf_browser_gecko ul.gform_fields li.gfield div.ginput_complex span.ginput_left select, .gform_wrapper.gf_browser_gecko ul.gform_fields li.gfield div.ginput_complex span.ginput_right select, .gform_wrapper.gf_browser_gecko ul.gform_fields li.gfield select {border-left: 2px solid #dddddd; border-top: 2px solid #dddddd;}

	.gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container input[type="text"], .gform_wrapper .field_sublabel_hidden_label .ginput_complex.ginput_container select {margin: 0px;}
	

	/* FIELD LABEL */
	.field-select.select-styled {margin-bottom: 0px !important;}
	.field-select.select-styled label {color: #2f1536; font-size: 14px !important; font-weight: normal !important;}

	.gfield_time_hour.ginput_container.form-group.form-builder-item, .gfield_time_minute.ginput_container.form-group.form-builder-item {width: 100px; margin-bottom: 0px !important; max-width: 100% !important;}
	.gform_wrapper .gfield_time_hour input, .gform_wrapper .gfield_time_minute input,
	.gform_wrapper .gfield_date_month input, .gform_wrapper .gfield_date_day input, .gform_wrapper .gfield_date_year input {width: 85% !important;}
.gform_wrapper .gfield_time_hour i {display: none;}
	
	/* CHECKBOX */
	.ginput_container.form-group.form-builder-item ul.gfield_checkbox li input {height: auto;}

	/* TITLE */
	.gfield.gsection.field_sublabel_below.field_description_below

	/* PLACEHOLDER */
	.wrap-forms input::-moz-placeholder, .wrap-forms textarea::-moz-placeholder {font-style: normal !important; color: #FFFFFF;}


/* **** RIGHT BOX **** */
.voordelen .col-xs-3 {width: 7%;}

	/* SOCIAL BOX */
	.fw-container.social-box {width: 100%;}
	.fw-container .social-box .fw-col-xs-12.fw-col-sm-3 {width: 25% !important; margin-bottom: 20px; text-align: center; float: left;}
	.fw-container .social-box .fw-col-xs-12.fw-col-sm-3 img {float: none;}

/* **** BLOCKS **** */
.dienst-content {width: 100%; padding: 5%;}

/* **** MAPS **** */
.container-fluid .fw-col-xs-12 {padding: 0px;}
.fw-map {margin: 50px 0 30px !important;}

/* **** IMAGE CAROUSEL **** */
.section.klanten .img-responsive, .thumbnail > img, .section.klanten .carousel-inner > .item > img, .carousel-inner > .item > a > img {max-height: 80px;}


/* **** KLANTEN **** */
.klanten {margin: 10px 0 30px !important;}
section.klanten .title-line {margin-bottom: 50px !important;}

/* CTA */
.col-sm-1.car {padding-left: 45px;}

/* **** FOOTER **** */
.footer-box {padding: 50px 15px 50px !important;}

	
@media (min-width: 768px) and (max-width: 991px) {

/* **** FONTS **** */
.dienst-content h3 {font-size: 16px;}

/* **** FIELD STYLING **** */
/*.main.mainfix.mainfixed .fw-col-xs-12.fw-col-sm-3 {width: 25% !important;}*/

.fw-container .fw-col-xs-12.fw-col-sm-9, .fw-container .fw-col-xs-12.fw-col-sm-3  {width: 100% !important;}

.footer-box .fw-col-xs-12.fw-col-sm-4, .footer-box .fw-col-xs-12.fw-col-sm-3 {width: 100% !important;}
	
}

@media (min-width: 992px) {

	.fw-col-sm-9 {width: 75% !important; padding-right: 5% !important;}

}


@media (min-width: 1200px) {
	
	.footer-box .fw-col-sm-4 {padding: 0px 30px;}

}

@media (max-width: 767px) {
	
/* MENU */
.nav > li.current-menu-item > a, .nav > li > a:focus, .nav > li > a:hover {background-color: #4E8C6D !important; color: #FFFFFF !important;}

/* CTA */
.col-sm-1.car {padding-left: 15px;}

/* SIGNATURE */
.container.footer-bottom .col-xs-6.text-left, .container.footer-bottom .col-xs-6 {width: 100%; text-align: center;}
	.container.footer-bottom .col-xs-6.text-left {margin-bottom: 20px;}

}

