/*
 * @file
 * global.styles
 *
 * Styles you add here will load for all device sizes, they are "global", as
 * opposed to "responsive" styles, which only load for a given breakpoint (media
 * query) that you set in theme settings. See the README for more details.
 *
 *
 * How to use this file:
 * --------------------
 *
 * There are many empty selectors and some basic styles to act as a guide.
 * Nothing is set in stone and you can change anything - even delete all of it
 * and start with your own clean slate.
 *
 * To FORCE PRINT all selectors you can search and replace a single { (opening
 * curly brace) and insert an empty comment. This is very useful in conjuction
 * with FireSass: https://addons.mozilla.org/en-US/firefox/addon/firesass-for-firebug/
 *
 * See global.base also which includes normalize.css and some additional
 * helper classes and base styles.
 */
/* =============================================================================
 *   Base
 * ========================================================================== */
/*
 * To preserve theme settings never apply font properties to the HTML element.
 * This is critically important if you are using the Responsive JavaScript
 * feature as this relies on being able to set a pseudo font family on the HTML
 * element. If you need to set default font properties of any kind use the BODY
 * element as these can be overridden using font theme settings.
 */

/* line 41, ../sass/global.styles.scss */
html {
  background: #fff;
}

/* line 45, ../sass/global.styles.scss */
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  font-size: 15px;
}

ul li, blockquote {
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

h2, h3 {
    margin: 0;
}

#page-wrapper {
    overflow: hidden;
}

/* =============================================================================
 *   HTML Elements
 * ========================================================================== */
/* line 135, ../sass/global.styles.scss */
pre,
code,
tt,
samp,
kbd,
var {
  font-family: Consolas, Monaco, "Courier New", Courier, monospace, sans-serif;
}

/* =============================================================================
 *   Wrappers
 * ========================================================================== */
/*
 * Outer wrappers:
 * - #page-wrapper: body > #page-wrapper
 * - #page: body > #page-wrapper > #page
 * - .container: body > #page-wrapper > #page.container
 *
 * The .container class holds the page width value from theme settings. You can
 * style the .container class but do not add width such as border, padding,
 * margins etc.
 */
/*
 * Wraps all header elements - branding and .region-header
 */
/*
 * Wraps the sidebars the content column
 */
/*
 * Main content column wrapper
 */
/*
 * Wraps the main-content-header, the content region and feed-icons. Use this
 * wrapper to style the entire main content column
 */
/*
 * Wraps the content region, avoid applying styles to this wrapper, its used
 * mainly for position and invisible gutters and can be problematic to style
 */
/*
 * Footer wrapper
 */
/*
 * Panels may need additional margin wrangling when in the $content region
 */
/*
 * Full Width Wrappers
 * These are used in the optional page--full-width-wrappers.tpl.php template.
 * All have internal .container classes. In the full width wrapper template the
 * .container classes set the width or max-width - you can style this but never
 * add any width/margin/padding/borders etc to .container
 */
/*
 * Wraps the leaderboard
 */
/*
 * Wraps the header
 */
/* line 231, ../sass/global.styles.scss */
#header-wrapper {
  /* Debug styles, is this working */
  background: rgba(255, 192, 203, 0.5);
}

/*
 * Wraps the nav elements
 */
/*
 * Wraps breadcrumb
 */
/*
 * Wraps messages and help
 */
/*
 * Wraps the secondary content/preface region
 */
/*
 * Wraps the main content column
 */
/*
 * Wraps the tertiary content/postfix region
 */
/*
 * Footer wrapper
 */
/* line 289, ../sass/global.styles.scss */
#footer-wrapper {
  /* Debug styles, is this working? */
  background: rgba(255, 192, 203, 0.5);
}

/* =============================================================================
 *   Branding
 * ========================================================================== */
/*
 * Wraps all the branding elements, logo, name and slogan
 */

/*
 * Logo
 */

#logo {
  padding: 0;
}

#logo img {
  vertical-align: bottom;
}

#block-block-21 img {
  display: block;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-rood-2x.png) no-repeat;
  background-size: cover;
  width: 160px; /* Width of new image */
  height: 160px; /* Height of new image */
  padding-left: 160px; /* Equal to width of new image */
}

body.baby #block-block-21 img {
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-roze-2x.png) no-repeat;
  background-size: cover;
}

body.peuter #block-block-21 img {
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-blauw-2x.png) no-repeat;
  background-size: cover;
}

body.basis #block-block-21 img {
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-geel-2x.png) no-repeat;
  background-size: cover;
}

body.puber #block-block-21 img {
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-paars-2x.png) no-repeat;
  background-size: cover;
}

body.jong #block-block-21 img {
  background: url(/sites/all/themes/custom/ouders_responsive/images/oo-logo-groen-2x.png) no-repeat;
  background-size: cover;
}

#site-name {
  margin: 0;
}
/* line 333, ../sass/global.styles.scss */
#site-name a:link, #site-name a:visited {
  text-decoration: none;
}
/* line 338, ../sass/global.styles.scss */
#site-name a:hover, #site-name a:focus {
  text-decoration: underline;
}

/*
 * Site slogan (h2)
 */
/* line 349, ../sass/global.styles.scss */
#site-slogan {
  margin: 0;
}

/* =============================================================================
 *   Page content header
 * ========================================================================== */
/*
 * Main content header wraps the page title, tabs and actions links
 */
/*
 * The main page title (h1)
 */
/* line 367, ../sass/global.styles.scss */
#page-title {
  margin: 0;
}

/* =============================================================================
 *   Misc Global Styles
 * ========================================================================== */
/*
 * Feed icons
 */
/*
 * Aggregator feed source
 */
/* line 385, ../sass/global.styles.scss */
#aggregator .feed-source .feed-icon {
  display: inline;
  float: none;
  margin-right: 10px;
}

/* line 392, ../sass/global.styles.scss */
.feed-details dt,
.feed-details dd {
  display: inline;
  margin: 0;
}

/*
 * Generic styles for the more link
 */
/*
 * Generic styles for links. See the ul.links declaration in node and comment stylesheets
 */
/* line 408, ../sass/global.styles.scss */
ul.links {
  margin: 0;
  padding: 0;
}
/* line 412, ../sass/global.styles.scss */
ul.links.inline {
  display: block;
}
/* line 416, ../sass/global.styles.scss */
ul.links li {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Search results are an ordered list so reset the margin
 */
/* line 427, ../sass/global.styles.scss */
.search-results {
  margin: 0;
  padding: 0;
}

/*
 * Attribution message and link
 */
/* line 436, ../sass/global.styles.scss */
.attribution {
  display: block;
  opacity: 0.65;
  padding: 1em 0;
  text-align: center;
}
/* line 442, ../sass/global.styles.scss */
.attribution a {
  text-decoration: none;
  color: inherit;
}
/* line 446, ../sass/global.styles.scss */
.attribution a:hover, .attribution a:focus {
  text-decoration: underline;
}

/* =============================================================================
 *   Regions
 * ========================================================================== */
/*
 * Standard region wrapper, don't add width to any regions, you will bork the layout - no margin, padding or borders etc
 */
/*
 * Regions have an inner div - perfect for adding margin, padding or borders
 */
/*
 * Regions can be nested, such as when using Panels
 */
/*
 * Header region, embedded in the #header
 */

#header {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  background-image: url(../images/header-03.jpg);
  background-position: -10px 0;
  background-size: cover;
  background-repeat: no-repeat;
  height: 180px;
}

#header #logo {
  float: left;
  position: relative;
}

#content-column, #block-menu-menu-onderwerpen .block-content {
    padding-top: 5px;
}

/*
 * Generally used to output Drupals help block, if the help module is enabled
 */
/*
 * Secondary content
 */
/*
 * Sits above the main content header, like a content-top region
 */
/*
 * Sits below the main content, like a content-bottom region
 */
/*
 * Sidebars - targets both
 */
/*
 * First sidebar
 */

/*
 * Second sidebar
 */
.region-sidebar-second .region-inner {
  background-image: url(images/achtergrond-kolom.png);
  background-repeat: repeat-y;
  background-position: top left;
  padding: 8px 0 20px 0;
}

/*
 * Tertiary content
 */
/*
 * Footer region
 */
/* =============================================================================
 *   Links
 * ========================================================================== */
/* line 549, ../sass/global.styles.scss */
p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}

p strong, li strong {
    font-weight: bold;
 }

p em, li em {
  font-style: italic;
}

p strong em, li strong em, p em strong, li em strong {
  font-style: italic;
  font-weight: bold;
}

h1 {
    line-height: 1.2;
}

#block-system-main h2, #block-system-main h3 {
    color: #FF5B5C;
}

body.baby #block-system-main h2, body.baby #block-system-main h3 {
    color: #f1bf9e;
}

body.peuter #block-system-main h2, body.peuter #block-system-main h3 {
    color: #94b2bb;
}

body.basis #block-system-main h2, body.basis #block-system-main h3 {
    color: #e4d632;
}

body.puber #block-system-main h2, body.puber #block-system-main h3 {
    color: #7380BE;
}

body.jong #block-system-main h2, body.jong #block-system-main h3 {
    color: #D2CD2C;
}

ul, ol {
    padding: 0 0 0 18px;
}

.field-name-field-auteursbio ul {
    margin-top: 0;
    padding: 0 0 0 18px;
}

.field-name-field-intro-lang {
    font-weight: bold;
}

blockquote {
  border-left: 5px solid #cccccc;
  padding-left: 7px;
  margin: 1em 0;
}

ul.menu li, #main ul li, #sidebar-second ul li {
  line-height: 1.5;
}

a { color: #FF5B5C; text-decoration: none; }

body.baby a {
    color: #f1bf9e;
}

body.peuter a {
    color: #94b2bb;
}

body.basis a {
    color: #e4d632;
}

body.puber a {
    color: #7380BE;
}

body.jong a {
    color: #D2CD2C;
}

a:visited, a:hover, a:active, li a.active  { text-decoration: underline; color: #FF5B5C;}

body.baby a:visited, body.baby a:hover, body.baby a:active, body.baby li a.active {
    color: #f1bf9e;
}

body.peuter a:visited, body.peuter a:hover, body.peuter a:active, body.peuter li a.active {
    color: #94b2bb;
}

body.basis a:visited, body.basis a:hover, body.basis a:active, body.basis li a.active {
    color: #e4d632;
}

body.puber a:visited, body.puber a:hover, body.puber a:active, body.puber li a.active {
    color: #7380BE;
}

body.jong a:visited, body.jong a:hover, body.jong a:active, body.jong li a.active {
    color: #D2CD2C;
}

a:focus { outline: none; }

a:hover, a:active { outline: 0; }

p a { text-decoration: underline; }

li a { text-decoration: underline; }

/* =============================================================================
 *   Primary, Secondary and Menu Bar region menus
 * ========================================================================== */
/* line 560, ../sass/global.styles.scss */
.nav {
  clear: both;
  margin: 0;
}
/* line 564, ../sass/global.styles.scss */
.nav ul,
.nav ul.menu {
  margin: 0;
  padding: 0;
}
/* line 570, ../sass/global.styles.scss */
.nav li,
.nav ul.menu li {
  display: inline;
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
}
/* line 579, ../sass/global.styles.scss */
.nav li a,
.nav ul.menu li a {
  display: block;
  white-space: nowrap;
  padding: 0 5px 0 12px;
}
/* line 591, ../sass/global.styles.scss */
.nav .block {
  margin-bottom: 0;
}



/* Custom menu's */

#block-menu-menu-leeftijden {
	margin: 0;
	padding: 0;
    position: relative;
}

#block-menu-menu-leeftijden ul.menu {
	margin: 0;
	padding: 0 4px;
    background-color: #FF5B5C;
}

body.baby #block-menu-menu-leeftijden ul.menu {
    background-color: #FAD3B9;
}

body.peuter #block-menu-menu-leeftijden ul.menu {
    background-color: #CDE1E7;
}

body.basis #block-menu-menu-leeftijden ul.menu {
    background-color: #FFF14B;
}

body.puber #block-menu-menu-leeftijden ul.menu {
    background-color: #7380BE;
}

body.jong #block-menu-menu-leeftijden ul.menu {
    background-color: #D2CD2C;
}

#block-menu-menu-leeftijden ul.menu li {
	float: left;
	list-style-image: none;
	list-style-type: none;
	margin: 0;
	padding: 4px 6px 4px 6px;
    border-right: 1px solid #fff;
    overflow: hidden;
    font-size: 14px;
}

#block-menu-menu-leeftijden ul.menu li:last-of-type {
    border-right: 0;
}

#block-menu-menu-leeftijden ul.menu li a {
	text-decoration: none;
	color: #fff;
}

body.baby #block-menu-menu-leeftijden ul.menu li a {
    color: #000;
}
    
body.peuter #block-menu-menu-leeftijden ul.menu li a {
    color: #000;
}

body.basis #block-menu-menu-leeftijden ul.menu li a {
    color: #000;
}

body.puber #block-menu-menu-leeftijden ul.menu li a {
    color: #fff;
}

body.jong #block-menu-menu-leeftijden ul.menu li a {
    color: #000;
}

#block-system-main-menu ul.menu, #block-menu-menu-hoofdmenu-cjg ul.menu {
	margin: 0;
	padding: 0;
	overflow: hidden;
    background-color: #FF5B5C;
}

body.baby #block-system-main-menu ul.menu, body.baby #block-menu-menu-hoofdmenu-cjg ul.menu {
    background-color: #FAD3B9;
}

body.peuter #block-system-main-menu ul.menu, body.peuter #block-menu-menu-hoofdmenu-cjg ul.menu {
    background-color: #CDE1E7;
}

body.basis #block-system-main-menu ul.menu, body.basis #block-menu-menu-hoofdmenu-cjg ul.menu {
    background-color: #FFF14B;
}

body.puber #block-system-main-menu ul.menu, body.puber #block-menu-menu-hoofdmenu-cjg ul.menu {
    background-color: #7380BE;
}

body.jong #block-system-main-menu ul.menu, body.jong #block-menu-menu-hoofdmenu-cjg ul.menu {
    background-color: #D2CD2C;
}

#block-system-main-menu ul.menu li, #block-menu-menu-hoofdmenu-cjg ul.menu li {
	float: left;
	list-style-image: none;
	list-style-type: none;
	margin: 0;
    padding: 9px 0;
}

#block-system-main-menu ul.menu li a, #block-menu-menu-hoofdmenu-cjg ul.menu li a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    text-transform: lowercase;
    line-height: 1;   
}

body.baby #block-system-main-menu ul.menu li a {
    color: #000;
}

body.peuter #block-system-main-menu ul.menu li a {
    color: #000;
}

body.basis #block-system-main-menu ul.menu li a {
    color: #000;
}

body.puber #block-system-main-menu ul.menu li a {
    color: #fff;
}

body.jong #block-system-main-menu ul.menu li a {
    color: #000;
}

#block-menu-menu-onderwerpen .block-content {
  background-image: url(images/achtergrond-kolom2.png);
  background-repeat: repeat-y;
  background-position: top left;
}

#block-menu-menu-onderwerpen ul {
	margin: 0;
	padding: 0 0 0 9px;
}

#block-menu-menu-onderwerpen ul ul {
	margin-bottom: 10px;
	padding: 0;
}

#block-menu-menu-onderwerpen ul li {
	margin: 0;
	padding: 0 0 0 0;
	list-style-image: none;
	list-style-type: none;
	line-height: 15px;
}

#block-menu-menu-onderwerpen ul li a {
	font-size: 11px;
	color: #ccc;
	font-weight: bold;
	text-transform: uppercase;
    margin-left: 0;
    cursor: default;
    text-decoration: none;
}

#block-menu-menu-onderwerpen ul li li a {
	font-size: 11px;
	color: #666;
	text-transform: none;
	font-weight: normal;
    margin-left: 0;
    padding: 0 0 0 9px;
    cursor: pointer;
}

#block-menu-menu-onderwerpen ul li li a:hover, #block-menu-menu-onderwerpen ul li li a.active {
	color: #FF5B5C;
    text-decoration: none;
	background-image: url(images/bullet-onderwerpen.png);
    background-repeat: no-repeat;
    background-position: left;
    padding: 0 0 0 9px;
}

/* =============================================================================
 *   Superfish
 * ========================================================================== */
/* line 601, ../sass/global.styles.scss */
ul.sf-menu {
  margin-bottom: 0;
}
/* line 604, ../sass/global.styles.scss */
ul.sf-menu a {
  border-left: 0;
  border-top: 0;
  padding: 0 10px;
  text-decoration: none;
  height: 2.5em;
  line-height: 2.5em;
}
/* line 617, ../sass/global.styles.scss */
ul.sf-menu li:hover, ul.sf-menu li.sfHover {
  outline: 0;
}
/* line 624, ../sass/global.styles.scss */
ul.sf-menu a:focus, ul.sf-menu a:hover, ul.sf-menu a:active {
  outline: 0;
}

/*
 * Superfish blocks
 */
/* line 640, ../sass/global.styles.scss */
.block-superfish ul {
  margin: 0 !important;
  padding: 0 !important;
}
/* line 651, ../sass/global.styles.scss */
.block-superfish li {
  margin: 0 !important;
  padding: 0 !important;
}

/*
 * Vertical style
 */
/* line 661, ../sass/global.styles.scss */
.sf-vertical {
  width: 100%;
}
/* line 664, ../sass/global.styles.scss */
.sf-vertical li {
  width: 100%;
}
/* line 669, ../sass/global.styles.scss */
.sf-vertical li:hover ul, .sf-vertical li.sfHover ul {
  left: 100%;
  top: 0;
  margin: 0;
  padding: 0;
}
/* line 677, ../sass/global.styles.scss */
.sf-vertical li a {
  padding: 0 10px;
}

/*
 * Navbar style
 */
/* line 687, ../sass/global.styles.scss */
.sf-navbar {
  padding-bottom: 0 !important;
}

/*
 * Sensible padding for the default style
 */
/* line 695, ../sass/global.styles.scss */
.sf-menu.sf-style-default a {
  padding: 0 10px;
}

/* =============================================================================
 *   Menu Toggles
 * ========================================================================== */
/* line 705, ../sass/global.styles.scss */
.at-mt .at-menu-toggle,
.at-mt .at-menu-toggle ul,
.at-mt .at-menu-toggle ul.menu {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
/* line 713, ../sass/global.styles.scss */
.at-mt .at-menu-toggle-button {
  margin: 0;
}
/* line 717, ../sass/global.styles.scss */
.at-mt .at-menu-toggle ul a {
  padding: 0 10px;
  white-space: nowrap;
}

/* =============================================================================
 *   Menus, usually blocks
 * ========================================================================== */
/* line 728, ../sass/global.styles.scss */
ul.menu {
  padding-left: 15px;
}
/* line 731, ../sass/global.styles.scss */
ul.menu ul {
  padding-left: 15px;
}
/* line 739, ../sass/global.styles.scss */
ul.menu li {
  margin: 0;
}

/* If li.content exists it's a problem, so reset the padding */
/* line 768, ../sass/global.styles.scss */
.block .menu li.content {
  padding: 0;
}

/* =============================================================================
 *   Book navigation menu
 * ========================================================================== */
/* line 785, ../sass/global.styles.scss */
.book-navigation .page-up {
  /* Prevent text wrapping to a new line, assumes English "up" is used (two characters) */
  min-width: 2em;
  white-space: nowrap;
}
/* line 791, ../sass/global.styles.scss */
.book-navigation .menu {
  margin-left: 0;
}

/* =============================================================================
 *   Breadcrumbs
 * ========================================================================== */
/* line 801, ../sass/global.styles.scss */
#breadcrumb {
  margin: 10px 0;
  /* If the label is set to show in theme settings the label class is added */
}
/* line 805, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label {
  font-size: 11px;
  display: inline;
  padding-right: 10px;
}
/* line 810, ../sass/global.styles.scss */
#breadcrumb .breadcrumb-label:after {
  content: ":";
}
/* line 815, ../sass/global.styles.scss */
#breadcrumb ol {
  margin: 0;
  padding: 0;
}
/* line 820, ../sass/global.styles.scss */
#breadcrumb .with-breadcrumb-label ol {
  display: inline;
}
/* line 824, ../sass/global.styles.scss */
#breadcrumb li {
  list-style: none;
  display: inline;
}

/* =============================================================================
 *   Pagers
 * ========================================================================== */
/* line 851, ../sass/global.styles.scss */
ul.pager {
  clear: both;
  margin: 0;
  text-align: center;
}

/* line 858, ../sass/global.styles.scss */
.item-list ul.pager li {
  margin: 0;
}

/* line 863, ../sass/global.styles.scss */
ul.pager li {
  background-image: none;
  display: inline;
  list-style-type: none;
  padding: .5em;
}
/* line 869, ../sass/global.styles.scss */
ul.pager li.pager-current {
  font-weight: 700;
}

/* line 875, ../sass/global.styles.scss */
.block ul.pager li {
  margin: 0;
}

/*
 * Theme the various states of pager links
 */
/* =============================================================================
 *   Skip Navigation
 * ========================================================================== */
/* line 912, ../sass/global.styles.scss */
#skip-link {
  left: 50%;
  margin-left: -6.5em;
  margin-top: 0;
  padding: 0 0.5em;
  position: absolute;
  width: 12em;
  z-index: 50;
}
/* line 921, ../sass/global.styles.scss */
#skip-link a {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 931, ../sass/global.styles.scss */
#skip-link a:link, #skip-link a:visited {
  background: #444;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: block;
  line-height: 2;
  padding: 0;
  text-align: center;
  text-decoration: none;
}
/* line 942, ../sass/global.styles.scss */
#skip-link a:hover, #skip-link a:focus, #skip-link a:active {
  outline: 0;
}

/* =============================================================================
 *   Tabs (local tasks)
 * ========================================================================== */
/* line 955, ../sass/global.styles.scss */
#tasks {
  margin-bottom: 15px;
}

/* line 960, ../sass/global.styles.scss */
ul.primary {
  border-bottom-color: #ccc;
  margin: 20px 0;
  padding: 0 0 0 5px;
}
/* line 965, ../sass/global.styles.scss */
ul.primary li {
  display: block;
  float: left;
  margin: 0 1px -1px;
}
/* line 970, ../sass/global.styles.scss */
ul.primary li a {
  background-color: #f5f5f5;
  border-color: #ccc;
  margin-right: 1px;
  padding: 0 10px;
  display: block;
  float: left;
  height: 1.5em;
  line-height: 1.5em;
}
/* line 980, ../sass/global.styles.scss */
ul.primary li a:hover, ul.primary li a:focus {
  background-color: #eee;
  border-color: #ccc;
}
/* line 989, ../sass/global.styles.scss */
ul.primary li.active a,
ul.primary li.active a:hover,
ul.primary li.active a:focus {
  background-color: #fff;
  border-bottom-color: #fff;
}

/* line 999, ../sass/global.styles.scss */
ul.secondary {
  border-bottom: 1px solid #ccc;
  margin: 1em 0 0;
  padding: 0 .3em 1em;
}
/* line 1004, ../sass/global.styles.scss */
ul.secondary li {
  border-right: 0;
  list-style: none;
  padding: 0 10px 0 0;
}
/* line 1010, ../sass/global.styles.scss */
ul.secondary li a:hover, ul.secondary li a.active {
  border-bottom: none;
  text-decoration: underline;
}

/* =============================================================================
 *   Action links
 * ========================================================================== */
/* line 1024, ../sass/global.styles.scss */
ul.action-links {
  margin: 20px 0 0;
  list-style: none;
}

/* =============================================================================
 *  Field Styling
 * ========================================================================== */
/*
 * Wrapper for any field
 */
/*
 * Above and inline classes are on the field wrapper
 */
/*
 * When labels are set to inline in field display settings the clearfix class is automatically added
 */
/* line 1051, ../sass/global.styles.scss */
.field-label-inline {
  /* Remove the margin on inline field lables to preserve vertical formatting */
}
/* line 1054, ../sass/global.styles.scss */
.field-label-inline .field-label {
  margin: 0;
}

/*
 * Labels are h2 in Adaptivetheme. Use a strong selector to mitigate unwanted ineritance issues
 */
/* line 1062, ../sass/global.styles.scss */
.field-label {
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  line-height: inherit;
  margin-bottom: 0;
}

.field ul.field-items {
    margin-top: 0;
}

/*
 * Field types (Core)
 */
/*
 * Image fields use the <figure> and <figcaption> elements from HTML5
 */
/*
 * Taxonomy
 */
/* line 1091, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference {
  /* The same bottom margin as p, blockquote, ul, ol and dl */
  margin-bottom: 1.5em;
}
/* line 1096, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference.field-label-inline .field-items {
  margin: 0;
  padding: 0;
}
/* line 1101, ../sass/global.styles.scss */
.field-type-taxonomy-term-reference.field-label-inline .field-item {
  display: inline;
  list-style: none;
  padding: 0 10px 0 0;
}

/*
 * Text
 */
/*
 * Long text
 */
/*
 * Text with summary
 */
/*
 * File
 */
/*
 * Number/Integer
 */
/*
 * Decimal
 */
/*
 * Number float
 */
/*
 * List
 */
/*
 * List boolean
 */
/*
 * List integer
 */
/*
 * List float
 */
/*
 * Field types (Contrib)
 */
/*
 * Named fields
 */
/*
 * Underscores in field name are replaced with dashes
 */
/*
 * Image Alignment Theme Settings - included here so you can easily override
 */
/*
 * Float none setting
 */
/*
 * Float left setting
 */
/* line 1215, ../sass/global.styles.scss */
.ia-l .field-type-image figure,
.iat-l .field-type-image figure {
  margin: 5px 20px 15px 0;
}

/*
 * Centered setting
 */
/* line 1224, ../sass/global.styles.scss */
.ia-c .field-type-image figure,
.iat-c .field-type-image figure {
  margin: 5px auto 15px;
}

/*
 * Float right setting
 */
/* line 1233, ../sass/global.styles.scss */
.ia-r .field-type-image figure,
.iat-r .field-type-image figure {
  margin: 5px 0 15px 20px;
}

/* =============================================================================
 *   Block Styling
 * ========================================================================== */
/*
 * Main wrapper for most blocks, block_system_main does not have it
 */
/* line 1247, ../sass/global.styles.scss */
.block {
  margin-bottom: 20px;
}

/*
 * Inner wrapper for most blocks, good for margin, padding and borders, block_system_main does not have it
 */
/*
 * The first block in the region
 */
/*
 * The last block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Zebra striping for each block in the region
 */
/*
 * Block title
 */
/* line 1285, ../sass/global.styles.scss */
.block-title {
  margin: 0;
}

/*
 * Block content wrapper
 */
/*
 * Match item list and block menu margin and padding
 */
/* line 1301, ../sass/global.styles.scss */
.block-content ul,
.block-content ol {
  padding: 0 0 0 15px;
}
/* line 1306, ../sass/global.styles.scss */
.block-content li {
  margin: 0;
  padding: 0;
}

/* =============================================================================
 *   Node Styling
 * ========================================================================== */
/* line 1479, ../sass/global.styles.scss */
.node {
  margin-bottom: 20px;
}
/* line 1496, ../sass/global.styles.scss */
.node .node-title {
  margin: 0;
}

/*
 * All nodes are given a node-FOO class that describes the type of content that
 * it is. If you create a new content type called "my-custom-type", it will
 * receive a "node-my-custom-type" class.
 */
/* =============================================================================
 *   Comment Styling - Comments, comment wrapper, comment form
 * ========================================================================== */
/*
 * Wrapper for the list of comments and its titles
 */
/* line 1554, ../sass/global.styles.scss */
#comments {
  margin: 1.5em 0 0 0;
}
/* line 1558, ../sass/global.styles.scss */
#comments h2.comment-title {
  margin: 0;
}
/* line 1562, ../sass/global.styles.scss */
#comments h2.comment-form {
  margin: 0;
}

/*
 * Wrapper for a single comment
 */
/* line 1572, ../sass/global.styles.scss */
.comment {
  margin-bottom: 20px;
}

/*
 * Comment title
 */
/* line 1603, ../sass/global.styles.scss */
.comment-title {
  margin: 0;
}

/*
 * Comment states
 */
/*
 * Preview of the comment before submitting new or updated comment
 */

/*
 * Nested comments are indented
 */
/* line 1643, ../sass/global.styles.scss */
.indented {
  margin-left: 40px;
}

/* =============================================================================
 *   Forms
 * ========================================================================== */
/*
 * Wrapper for a form element (or group of form elements) and its label
 */
/* line 1657, ../sass/global.styles.scss */
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 1px solid #c00;
}
/* line 1663, ../sass/global.styles.scss */
.form-item label {
  font-weight: 700;
}
/* line 1670, ../sass/global.styles.scss */
.form-item .description {
  font-size: 11px;
}

/*
 * Highlight marks and form required mark
 */
/* line 1683, ../sass/global.styles.scss */
.marker,
.form-required {
  color: #c00;
}

/*
 * The submit button
 */
/* line 1697, ../sass/global.styles.scss */
.container-inline div,
.container-inline label {
  display: inline;
}

/*
 * Define consistent borders
 */
/* line 1706, ../sass/global.styles.scss */
fieldset {
  border: 1px solid #ccc;
}

fieldset.group-meer {
    margin-top: 20px;
}

/*
 * Tips for Drupal's input formats
 */
/*
 * Buttons used by contrib modules like Media
 */
/* line 1720, ../sass/global.styles.scss */
a.button {
  -moz-appearance: button;
  -webkit-appearance: button;
}

/*
 * Password confirmation
 */
/* line 1728, ../sass/global.styles.scss */
.password-parent,
.confirm-parent {
  margin: 0;
}

/* =============================================================================
 *   Tables
 * ========================================================================== */
/* line 1738, ../sass/global.styles.scss */
table {
  margin: 10px 0;
  padding: 0;
  width: 100%;
}
/* line 1743, ../sass/global.styles.scss */
table.sticky-header {
  z-index: 10;
}

/* line 1749, ../sass/global.styles.scss */
table,
thead,
tbody,
tr,
th,
td {
  border-color: #ccc;
}

/* line 1759, ../sass/global.styles.scss */
table,
td,
th {
  vertical-align: top;
}

/* line 1766, ../sass/global.styles.scss */
caption,
th,
td {
  text-align: left;
}

/* line 1773, ../sass/global.styles.scss */
thead tr {
  font-weight: 700;
  background-color: #e5e5e5;
}

/* line 1779, ../sass/global.styles.scss */
td,
th {
  border-bottom: 0;
  margin: 0;
  padding: 5px 7px;
}

/* line 1790, ../sass/global.styles.scss */
tbody tr {
  border-top: 1px solid #ccc;
}

/* line 1795, ../sass/global.styles.scss */
tr {
  /* Table row striping */
}
/* line 1797, ../sass/global.styles.scss */
tr.odd {
  background: #fff;
}
/* line 1802, ../sass/global.styles.scss */
tr.info, tr.even, tr:nth-child(2n+2) {
  border-bottom: 0;
  background-color: #f5f5f5;
}
/* line 1813, ../sass/global.styles.scss */
tr.odd td.active {
  background-color: #eee;
}
/* line 1817, ../sass/global.styles.scss */
tr.even td.active {
  background-color: #ebebeb;
}

/*
 * Forum tables
 * Core sets white-space to nowrap, which makes no sense
 */
/* line 1840, ../sass/global.styles.scss */
#forum td.created, #forum td.posts, #forum td.topics, #forum td.last-reply, #forum td.replies, #forum td.pager {
  white-space: normal;
}

/* =============================================================================
 *   Messages
 * ========================================================================== */
/* line 1856, ../sass/global.styles.scss */
div.messages {
  margin-bottom: 10px;
  margin-top: 10px;
}
/* line 1861, ../sass/global.styles.scss */
div.messages ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*
 * Unpublished nodes
 */
/* line 1902, ../sass/global.styles.scss */
.node-unpublished p.unpublished,
.comment-unpublished p.unpublished {
  color: pink;
  color: rgba(239, 170, 170, 0.4);
  font-family: Impact, Haettenschweiler, "Franklin Gothic Bold", Charcoal, "Helvetica Inserat", "Bitstream Vera Sans Bold", "Arial Black", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  height: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  text-align: center;
  text-transform: uppercase;
  word-wrap: break-word;
}
/* line 186, ../sass/_custom.scss */
.ie6-7 .node-unpublished p.unpublished > *, .ie6-7
.comment-unpublished p.unpublished > * {
  position: relative;
}

/* =============================================================================
 *    Maintenance pages
 * ========================================================================== */
/* line 1913, ../sass/global.styles.scss */
.maintenance-page .container {
  padding: 40px 0;
}
/* line 1917, ../sass/global.styles.scss */
.maintenance-page #site-name,
.maintenance-page #page-title {
  margin: 0;
}

/* line 1925, ../sass/global.styles.scss */
.db-offline .container {
  margin: 0 auto;
  padding: 40px 0;
  width: 100%;
  max-width: 960px;
}
/* line 1932, ../sass/global.styles.scss */
.db-offline div.messages {
  margin: 20px 0 0;
}
/* line 1936, ../sass/global.styles.scss */
.db-offline #content {
  padding: 20px 0;
}

/* =============================================================================
 *   Misc overrides for contrib modules
 * ========================================================================== */
/*
 * Admin menu overrides
 */
/* line 1949, ../sass/global.styles.scss */
#admin-menu {
  margin: 0;
  padding: 0;
}

/*
 * Devel Module
 */
/* line 1958, ../sass/global.styles.scss */
.dev-query {
  background: #eee;
  padding: 30px;
}

/*
 * Styleguide module tweaks
 */
/* line 1967, ../sass/global.styles.scss */
#styleguide-header {
  padding: 0 10px;
}
/* line 1970, ../sass/global.styles.scss */
#styleguide-header .item-list {
  font-family: inherit;
  margin: 0 20px 20px 0;
  min-height: 260px;
  width: auto;
}

/*# sourceMappingURL=global.styles.css.map */

/* Ads */

#block-block-9 {
    margin-top: 10px;
    text-align: center;
    overflow: hidden;
    clear: both;
}

#block-block-15, #block-block-18 {
    background-color: #e1e1e1;
    text-align: center;
    overflow: hidden;
}

#block-views-exp-forumzoek-page {
    overflow: hidden;
    width: 638px;
    height: 62px;
    float: left;
}

#block-block-15 h2, #block-block-18 h2 {
    margin: 0;
}

#block-block-15 h2:before, #block-block-18 h2:before {
    content:"\f002";
    font-family:FontAwesome;
    margin-right: 5px;
}

#block-block-16 a:before, #block-block-17 a:before {
    content:"\f007";
    font-family:FontAwesome;
    margin-right: 5px;    
}

#block-block-16, #block-block-17 {
    margin: 0;
    float: left;
    width: 50%;
    color: #fff;
    font-size: 1.35em;
    text-align: center;
    background-color: #FF5B5C;
    display: none;
}

body.baby #block-block-16, body.baby #block-block-17 {
    background-color: #FAD3B9;
    color: #000;
}

body.peuter #block-block-16, body.peuter #block-block-17 {
    background-color: #CDE1E7;
    color: #000;
}

body.basis #block-block-16, body.basis #block-block-17 {
    background-color: #FFF14B;
    color: #000;
}

body.puber #block-block-16, body.puber #block-block-17 {
    background-color: #7380BE;
    color: #fff;
}

body.jong #block-block-16, body.jong #block-block-17 {
    background-color: #D2CD2C;
    color: #000;
}

#block-block-16 a, #block-block-17 a {
    color: #fff;
}

body.baby #block-block-16 a, body.baby #block-block-17 a {
    color: #000;
}

body.peuter #block-block-16 a, body.peuter #block-block-17 a {
    color: #000;
}

body.basis #block-block-16 a, body.basis #block-block-17 a {
    color: #000;
}

body.puber #block-block-16 a, body.puber #block-block-17 a {
    color: #fff;
}

body.jong #block-block-16 a, body.jong #block-block-17 a {
    color: #000;
}

#block-block-21 img {
    margin: 10px 0 10px 10px;
}

/* Forum */

#block-ouders-custom-contact-forum-administrator a {
    color: #000;
}

.forum-icon, .forum-list-icon, .views-field-topic-icon, .forum-list-icon, .views-field-topic-icon {
    display: none;
}

.view-id-recenteinhoud.view-display-id-page td.views-field-created {
    width: 100px;
}

.forum-post-links ul.links li.comment_forbidden {
  display: none;
}

body.not-logged-in.node-type-forum .topic-start-link {
  display: none;
}

body.not-logged-in.page-forum .forum-node-create-links {
width: 600px;
}

body.page-forum- #forum {
  margin-top: 25px;
}

.forum-table {
    border: 1px solid #FF5B5C !important;
}

body.baby .forum-table {
    border: 1px solid #FAD3B9;
}

body.peuter .forum-table {
    border: 1px solid #CDE1E7;
}

body.basis .forum-table {
    border: 1px solid #FFF14B;
}

body.puber .forum-table {
    border: 1px solid #7380BE;
}

body.jong .forum-table {
    border: 1px solid #D2CD2C;
}

.forum-topic-header .topic-start-link {
float: left;
margin: 0 7px 7px 0;
}

.forum-table-wrap .forum-table-superheader {
	color: #FF5B5C;
    border-color: transparent;
    background-color: transparent;
    padding: 10px 0;
}

.forum-table-wrap .forum-table-superheader .forum-table-name {
    margin: 0;
}

.forum-table-wrap .forum-table-superheader .forum-table-name a {
	color: #FF5B5C;
	font-weight: bold;
	text-decoration: none;
}

.forum-table-wrap .forum-table {
	border: 1px solid #FF5B5C !important;
}

body.baby .forum-table-wrap .forum-table {
    border: 1px solid #FAD3B9;
}

body.peuter .forum-table-wrap .forum-table {
    border: 1px solid #CDE1E7;
}

body.basis .forum-table-wrap .forum-table {
    border: 1px solid #FFF14B;
}

body.puber .forum-table-wrap .forum-table {
    border: 1px solid #7380BE;
}

body.jong .forum-table-wrap .forum-table {
    border: 1px solid #D2CD2C;
}

.forum-table-wrap .forum-table thead tr {
	background: none;
	background-color: #FF5B5C;
	color: #fff;
	border: none;
}

.forum-table thead tr a {
    color: #fff !important;
}

.forum-table tr.even {
	background-color: #f5f5f5;
}

.forum-table tr.odd {
	background-color: #fff;
}

.forum-table tr.forum-row a {
	color: #FF5B5C;
	text-decoration: none;
}

tr.even td.forum-list-icon-new-posts .forum-list-icon-wrapper span, tr.odd td.forum-list-icon-new-posts .forum-list-icon-wrapper span {
	background: transparent url(images/forum-new.png) no-repeat center center;
}

tr.even td.forum-list-icon-default .forum-list-icon-wrapper span, tr.odd td.forum-list-icon-default .forum-list-icon-wrapper span {
	background: transparent url(images/forum-default.png) no-repeat center center;
}

.forum-list-icon-legend .forum-list-icon-new-posts {
	background: transparent url(images/forum-new.png) no-repeat center center;
}

.forum-list-icon-legend .forum-list-icon-default {
	background: transparent url(images/forum-default.png) no-repeat center center;
}

.forum-pager .item-list {
	overflow: hidden;
}

.forum-node-create-links {
    width: auto;
	clear: none;
	padding-top: 0;
	height: 30px;
    margin: 0 0 10px 0;
}

.forum-node-create-links .forum-add-node {
  margin: 0;
}

#forum-topic-pager .pager {
  text-align: right;
  margin-bottom: 10px;
}

.forum-pager {
	width: auto;
	float: right;
	height: 30px;
}

#forum-comments .pager-current {
  background-color: #FF5B5C;
}

body.baby #forum-comments .pager-current {
    background-color: #FAD3B9;
}

body.peuter #forum-comments .pager-current {
    background-color: #CDE1E7;
}

body.basis #forum-comments .pager-current {
    background-color: #FFF14B;
}

body.puber #forum-comments .pager-current {
    background-color: #7380BE;
}

body.jong #forum-comments .pager-current {
    background-color: #D2CD2C;
}

#forum-comments ul.pager {
  margin-top: 10px;
}

#forum-comments .pager a {
  border: 0 !important;
  background: transparent !important;
  color: #fff !important;
}

#forum-pager-top .item-list ul.pager, #forum-pager-bottom .item-list ul.pager {
	width: auto;
	padding: 0;
	height: 30px;
}

.forum-pager .item-list ul.pager li {
	border: 1px solid #FF5B5C;
	background: none;
	background-color: #FF5B5C;
	font-weight: bold;
	padding: 3px 3px;
	display: inline-block;
}

body.baby .forum-pager .item-list ul.pager li {
    border: 1px solid #FAD3B9;
    background-color: #FAD3B9;
}

body.peuter .forum-pager .item-list ul.pager li {
    border: 1px solid #CDE1E7;
    background-color: #CDE1E7;
}

body.basis .forum-pager .item-list ul.pager li {
    border: 1px solid #FFF14B;
    background-color: #FFF14B;
}

body.puber .forum-pager .item-list ul.pager li {
    border: 1px solid #7380BE;
    background-color: #7380BE;
}

body.jong .forum-pager .item-list ul.pager li {
    border: 1px solid #D2CD2C;
    background-color: #D2CD2C;
}

.forum-pager .item-list ul.pager li a {
	color: #fff;
	text-decoration: none;
	background: none;
	border: none;
	padding: 0;
}

body.node-type-forum .item-list ul.pager li {
	border: 1px solid #FF5B5C;
	background: none;
	background-color: #FF5B5C;
	font-weight: bold;
	padding: 3px 3px;
	display: inline-block;
}

body.baby.node-type-forum .item-list ul.pager li {
    border: 1px solid #FAD3B9;
    background-color: #FAD3B9;
}

body.peuter.node-type-forum .item-list ul.pager li {
    border: 1px solid #CDE1E7;
    background-color: #CDE1E7;
}

body.basis.node-type-forum .item-list ul.pager li {
    border: 1px solid #FFF14B;
    background-color: #FFF14B;
}

body.puber.node-type-forum .item-list ul.pager li {
    border: 1px solid #7380BE;
    background-color: #7380BE;
}

body.jong.node-type-forum .item-list ul.pager li {
    border: 1px solid #D2CD2C;
    background-color: #D2CD2C;
}

body.node-type-forum .item-list ul.pager li a {
	color: #fff;
	text-decoration: none;
	background: none;
	border: none;
	padding: 0;
}

a.af-button-large, a.af-button-small, .flag-bookmarks a.flag, a.knop {
	border: 1px solid #FF5B5C;
	background: none;
	background-color: #FF5B5C;
	color: #fff !important;
	font-weight: bold;
	padding: 3px 5px;
	text-decoration: none;
	display: block;
}

body.baby a.af-button-large, body.baby a.af-button-small, body.baby .flag-bookmarks a.flag {
    border: 1px solid #FAD3B9;
    background-color: #FAD3B9;
    color: #000 !important;
}

body.peuter a.af-button-large, body.peuter a.af-button-small, body.peuter .flag-bookmarks a.flag {
    border: 1px solid #CDE1E7;
    background-color: #CDE1E7;
    color: #000 !important;
}

body.basis a.af-button-large, body.basis a.af-button-small, body.basis .flag-bookmarks a.flag {
    border: 1px solid #FFF14B;
    background-color: #FFF14B;
    color: #000 !important;
}

body.puber a.af-button-large, body.puber a.af-button-small, body.puber .flag-bookmarks a.flag {
    border: 1px solid #7380BE;
    background-color: #7380BE;
    color: #fff !important;
}

body.jong a.af-button-large, body.jong a.af-button-small, body.jong .flag-bookmarks a.flag {
    border: 1px solid #D2CD2C;
    background-color: #D2CD2C;
    color: #000 !important;
}

a.af-button-large:hover, a.af-button-small:hover, .flag-bookmarks a.flag:hover {
	background-color: #FF5B5C;
	color: #000 !important;
}

body.baby a.af-button-large:hover, body.baby a.af-button-small:hover, body.baby .flag-bookmarks a.flag:hover {
    background-color: #FAD3B9;
    color: #fff !important;
}

body.peuter a.af-button-large:hover, body.peuter a.af-button-small:hover, body.peuter .flag-bookmarks a.flag:hover {
    background-color: #CDE1E7;
    color: #fff !important;
}

body.basis a.af-button-large:hover, body.basis a.af-button-small:hover, body.basis .flag-bookmarks a.flag:hover {
    background-color: #FFF14B;
    color: #fff !important;
}

body.puber a.af-button-large:hover, body.puber a.af-button-small:hover, body.puber .flag-bookmarks a.flag:hover {
    background-color: #7380BE;
    color: #000 !important;
}

body.jong a.af-button-large:hover, body.jong a.af-button-small:hover, body.jong .flag-bookmarks a.flag:hover {
    background-color: #D2CD2C;
    color: #fff !important;
}

.forum-jump-links {
	display: none;
}

.forum-table thead tr {
	background: none;
	background-color: #FF5B5C;
	border-bottom: 1px solid #FF5B5C;
}

body.baby .forum-table thead tr {
    border-bottom: 1px solid #FAD3B9;
    background-color: #FAD3B9;
}

body.peuter .forum-table thead tr {
    border-bottom: 1px solid #CDE1E7;
    background-color: #CDE1E7;
}

body.basis .forum-table thead tr {
    border-bottom: 1px solid #FFF14B;
    background-color: #FFF14B;
}

body.puber .forum-table thead tr {
    border-bottom: 1px solid #7380BE;
    background-color: #7380BE;
}

body.jong .forum-table thead tr {
    border-bottom: 1px solid #D2CD2C;
    background-color: #D2CD2C;
}

.forum-table thead tr th {
	border: 0;
}

.forum-table thead tr a {
	color: #fff;
	font-weight: bold;
}

.marker {
	color: #888;
}

div.forum-post {
	border: 1px solid #FF5B5C !important;
	margin: 0;
	padding: 0;
}

body.baby div.forum-post {
    border: 1px solid #FAD3B9 !important;
}

body.peuter div.forum-post {
    border: 1px solid #CDE1E7 !important;
}

body.basis div.forum-post {
    border: 1px solid #FFF14B !important;
}

body.puber div.forum-post {
    border: 1px solid #7380BE !important;
}

body.jong div.forum-post {
    border: 1px solid #D2CD2C !important;
}

.forum-post-info {
	border: 0;
	background: none;
	background-color: #FF5B5C;
	color: #fff;
}

body.baby .forum-post-info {
    background-color: #FAD3B9;
}

body.peuter .forum-post-info {
    background-color: #CDE1E7;
}

body.basis .forum-post-info {
    background-color: #FFF14B;
}

body.puber .forum-post-info {
    background-color: #7380BE;
}

body.jong .forum-post-info {
    background-color: #D2CD2C;
}

.forum-post-number a, .forum-posted-on {
	color: #fff !important;
	font-size: 11px;
    font-weight: bold;
}

body.baby .forum-post-number a, body.baby .forum-posted-on {
    color: #000 !important;
}

body.peuter .forum-post-number a, body.peuter .forum-posted-on {
    color: #000 !important;
}

body.basis .forum-post-number a, body.basis .forum-posted-on {
    color: #000 !important;
}

body.puber .forum-post-number a, body.puber .forum-posted-on {
    color: #fff !important;
}

body.jong .forum-post-number a, body.jong .forum-posted-on {
    color: #000 !important;
}

.forum-posted-on a#new {
    color: #fff;
}

body.baby .forum-posted-on a#new {
    color: #000;
}

body.peuter .forum-posted-on a#new {
    color: #000;
}

body.basis .forum-posted-on a#new {
    color: #000;
}

body.puber .forum-posted-on a#new {
    color: #fff;
}

body.jong .forum-posted-on a#new {
    color: #000;
}

.forum-post-links {
	line-height: normal;
	margin: 0;
}

.forum-post-footer {
	background: none;
}

.forum-post-content .field-name-body {
	margin-bottom: 15px;
}

.forum-post-info, .forum-post-wrapper, .forum-post-footer {
	color: #000;
}

.forum-post-title {
	font-weight: normal;
    background: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #000;
}

.author-pane {
	font-weight: bold;
}

.forum-post-wrapper {
	background: none;
}

.forum-posted-on {
    padding: 3px 5px;
    float: left;
}

.forum-post-panel-sub {
float: left;
line-height: 100%;
width: 150px;
}

.forum-post-panel-sub .author-pane {
margin: 10px;
}

.forum-post-panel-main {
margin-left: 150px;
min-height: 230px;
height: auto !important;
background-color: transparent;
}

.forum-post-panel-main .forum-post-title, .forum-post-panel-main .forum-post-content {
margin-left: 0;
padding-left: 10px;
padding-top: 10px;
}

.forum-post-footer {
margin: 0 0 10px 0;
clear: both;
}

.forum-post-links li {
float: right;
text-align: right;
}

.forum-post-links li a {
border: 1px solid #FF5B5C;
background: none;
background-color: #FF5B5C;
color: #fff !important;
font-weight: bold;
padding: 3px 5px;
text-decoration: none;
display: block;
}

#forum-comments .form-textarea-wrapper textarea {
	width: 100%;
	border: 1px solid #ccc;
}

#forum-comments form.comment-form {
	border: 1px solid #FF5B5C;
	padding: 0 20px 20px 20px;
	margin-top: 20px;
}

body.page-node.baby #forum-comments form.comment-form {
    border: 1px solid #FAD3B9;
}

body.page-node.peuter #forum-comments form.comment-form {
	border: 1px solid #CDE1E7;
}

body.page-node.basis #forum-comments form.comment-form {
	border: 1px solid #FFF14B;
}

body.page-node.puber #forum-comments form.comment-form {
	border: 1px solid #7380BE;
}

body.page-node.jong #forum-comments form.comment-form {
	border: 1px solid #D2CD2C;
}

#forum-comments.comment-wrapper h2 {
	font-size: 14px;
}

input.form-submit {
	color: #fff;
	background-color: #FF5B5C;
	padding: 3px 5px;
	border: 1px solid #FF5B5C;
	font-weight: bold;
}

body.baby input.form-submit {
    background-color: #FAD3B9;
    border: 1px solid #FAD3B9;
    color: #000;
}

body.peuter input.form-submit {
    background-color: #CDE1E7;
	border: 1px solid #CDE1E7;
    color: #000;
}

body.basis input.form-submit {
    background-color: #FFF14B;
	border: 1px solid #FFF14B;
    color: #000;
}

body.puber input.form-submit {
    background-color: #7380BE;
	border: 1px solid #7380BE;
    color: #fff;
}

body.jong input.form-submit {
    background-color: #D2CD2C;
	border: 1px solid #D2CD2C;
    color: #000;
}

span.username {
    color: #000;
}

th.forum-last-post, td.forum-last-reply {
  display: none;
}

.links.inline .comment-add, .links.inline .comment-reply {
  display: none;
}

#forum-sort, .forum-tools {
  display: none;
}

.form-item-field-anonymous-author-und-0-post-anonymous, .form-type-checkbox.form-item-anonymize {
  display: none;
}

body.node-type-forum.page-node h1#page-title {
  display: none;
}

.topic-new-post-link {
  display: none;
}

.form-item .description {
  font-size: 11px;
  color: #404040;
}

.pane-forum-legend, .pane-forum-topic-legend {
    display: none !important;
}

.flag-message {
position: absolute;
top: 1em;
line-height: normal;
left: -75px;
text-align: left;
width: 140px;
font-size: 11px;
background-color: #fff;
border: 1px solid #ccc;
padding: 2px;
clear: both;
float: none;
}

#edit-author--2 {
  display: none;
}

/* Artikelopmaak */

.field-name-field-afbeelding {
  width: 216px;
  float: right;
  margin: 3px 0 10px 15px;
  max-width: 40%;
}

.field-type-field-collection .field-collection-item-field-auteurs {
   padding-left: 20px;
   background-image: url(images/bullet-auteur.png);
   background-position: top left;
   background-repeat: no-repeat;
}

body.page-node .field-name-field-auteursnaam, body.page-node .field-name-field-auteursfunctie, body.page-node .field-name-field-auteursbio, body.page-node .field-name-field-auteursadres {
  float: left;
}

body.page-node .field-type-field-collection .field-name-field-auteursnaam p, body.page-node .field-type-field-collection .field-name-field-auteursfunctie p, body.page-node .field-type-field-collection .field-name-field-auteursbio p, body.page-node .field-type-field-collection .field-name-field-auteursadres p {
  margin: 0;
  float: left;
  color: #707070;
}

body.page-node .field-name-field-auteursbio li {
  clear: both;
  color: #707070;
}

body.page-node .field-name-field-auteursnaam {
  margin-right: 7px;
}

body.page-node .field-type-field-collection .field-name-field-auteursnaam p {
    font-weight: bold;
}

body.page-node .field-name-field-naschrift .field-label {
    font-size: 13px;
    font-weight: bold;
    line-height: 1.2;
    margin: 2em 0 4px 0px;
}

body.page-node .field-name-field-bestellink {
  margin-bottom: 20px;
}

body.page-node .field-name-field-bestellink a {
    padding: 2px 10px;
    background-color: #FF5B5C;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

body.page-node.baby .field-name-field-bestellink a {
    color: #000;
    background-color: #FAD3B9;
}

body.page-node.peuter .field-name-field-bestellink a {
    color: #000;
    background-color: #CDE1E7;
}

body.page-node.basis .field-name-field-bestellink a {
    color: #000;
    background-color: #FFF14B;
}

body.page-node.puber .field-name-field-bestellink a {
    color: #fff;
    background-color: #7380BE;
}

body.page-node.jong .field-name-field-bestellink a {
    color: #000;
    background-color: #D2CD2C;
}

img.img-left {
    float: left;
    margin: 3px 15px 10px 0;
}

img.img-right {
    float: right;
    margin: 3px 0 10px 15px;
}

/* Zoeken */
#block-ouders-custom-contact-forum-administrator {
    width: 315px;
    height: 62px;
    padding: 5px;
    margin: 0 10px 10px 0;
    background-color: #e1e1e1;
    float: right;
    box-sizing: border-box;
}

.view-zoek4, .view-forumzoek {
  margin-top: 30px;
}

.view-zoek4 th.views-field-created, .view-forumzoek th.views-field-created {
  width: 70px;
}

.view-zoek4 th.views-field-title, .view-forumzoek th.views-field-title {
  width: 150px;
}

.view-zoek4 th.views-field-created, .view-forumzoek th.views-field-created {
    width: 85px;
}

.view-zoek4 tr.even, .view-forumzoek tr.even {
background-color: #f6f6f6;
}

.view-zoek4 td, .view-forumzoek td {
    vertical-align: top;
    padding: 3px 6px;
}

#views-exposed-form-zoek4-page, #views-exposed-form-forumzoek-page {
  background-color: #e1e1e1;
  padding: 3px 15px;
}

#views-exposed-form-zoek4-page label, #views-exposed-form-forumzoek-page label {
  margin-left: 5px;
}

#views-exposed-form-zoek4-page .form-item-zoeken {
    width: 200px;
}

#views-exposed-form-forumzoek-page #edit-zoeken-wrapper {
    width: 205px;
}

#views-exposed-form-zoek4-page #edit-zoeken, #views-exposed-form-forumzoek-page #edit-zoeken {
  height: 16px;
  margin-top: 2px;
  font-size: 13px;
  border: 1px solid #ccc;
  width: 100%;
}

#views-exposed-form-zoek4-page .form-type-select select, #views-exposed-form-forumzoek-page .form-type-select select {
  border: 1px solid #ccc;
}

#views-exposed-form-forumzoek-page .views-submit-button {
    padding: 0;
}

#views-exposed-form-zoek4-page .form-submit, #views-exposed-form-forumzoek-page .form-submit {
    margin-top: 2.10em;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    color: #000;
    font-size: 14px;
    width: 100px;
}

#views-exposed-form-zoek4-page .form-submit {
    margin-top: 1.6em;
}

/* maintenance */

body.maintenance-page {
  background-image: none;
}

body.maintenance-page #logo img {
  margin-top: 25px;
}

body.maintenance-page #main h1 {
  margin-top: 30px;
}

body.maintenance-page #main p {
  margin-top: 25px;
}

/* Home */

.view-id-home.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-home.view-display-id-attachment_1 .views-field-field-afbeelding {
  float: left;
  width: 140px;
  height: 140px;
  margin-right: 10px;
}

.view-id-home.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-home.view-display-id-attachment_1 .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 140px;
  overflow: hidden;
  position: relative;
}

.view-id-home .views-field-title {
  font-size: 13px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-home.view-display-id-attachment_1 .views-field-title {
    font-size: 18px;
    font-weight: bold;
    padding-top: 3px;
}

.view-id-home.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-home.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-home.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-home.view-display-id-attachment_1 .views-field-field-intro-kort {
  font-size: 15px;
  height: 76px;
  overflow: hidden;
}

.view-id-home.view-display-id-attachment_1 .views-field-field-intro-kort p {
  font-size: 15px;
  margin-bottom: 0;
}

.view-id-home .views-field-type, .view-id-home .views-field-created, .view-id-home .views-field-field-auteursnaam, .view-id-home .views-field-comment-count, .view-id-home .view-embed-authors p {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-home.view-display-id-attachment_1 .views-field-created {
  float: none;
  clear: right;
}

.view-id-home.view-display-id-attachment_1 .views-field-type, .view-id-home.view-display-id-attachment_1 .views-field-field-auteursnaam, .view-id-home.view-display-id-attachment_1 .views-field-comment-count {
  float: left;
}

.view-id-home.view-display-id-page .type-Artikel {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-attachment_1 .type-Artikel {
  height: 140px;
  background-image: url(images/achtergrond-column-groot.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-page .type-Artikel .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-home.view-display-id-page .type-Bespreking {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-attachment_1 .type-Bespreking {
  height: 140px;
  background-image: url(images/achtergrond-column-groot.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-page .type-Bespreking .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-home.view-display-id-page .type-Column {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-attachment_1 .type-Column {
  height: 140px;
  background-image: url(images/achtergrond-column-groot.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-page .type-Column .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-home.view-display-id-page .type-Opinie {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-attachment_1 .type-Opinie {
  height: 140px;
  background-image: url(images/achtergrond-column-groot.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-page .type-Opinie .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-home.view-display-id-page .type-Vraagbaak {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-attachment_1 .type-Vraagbaak {
  height: 140px;
  background-image: url(images/achtergrond-column-groot.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-home.view-display-id-page .type-Vraagbaak .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-home.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 499;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

.view-id-home.view-display-id-attachment_1 .stip {
  top: 5px;
  left: 126px;
}

/* Taxonomie */

.view-id-Taxonomie.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-Taxonomie.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-Taxonomie .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-Taxonomie.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-Taxonomie.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-Taxonomie.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-Taxonomie .views-field-type, .view-id-Taxonomie .views-field-created, .view-id-Taxonomie .views-field-field-auteursnaam, .view-id-Taxonomie .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-Taxonomie.view-display-id-page .type-Artikel {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-Taxonomie.view-display-id-page .type-Artikel .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-Taxonomie.view-display-id-page .type-Column {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-Taxonomie.view-display-id-page .type-Column .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-Taxonomie.view-display-id-page .type-Opinie {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-Taxonomie.view-display-id-page .type-Opinie .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-Taxonomie.view-display-id-page .type-Vraagbaak {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-Taxonomie.view-display-id-page .type-Vraagbaak .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-Taxonomie.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

.view-column-overzicht .view-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.view-column-overzicht .views-row {
    width: 48%;
    border-bottom: 1px solid #FF5B5C;
    padding-bottom: 5px;
}

body.baby .view-column-overzicht .views-row {
    border-bottom: 1px solid #FAD3B9;
}

body.peuter .view-column-overzicht .views-row {
    border-bottom: 1px solid #CDE1E7;
}

body.basis .view-column-overzicht .views-row {
    border-bottom: 1px solid #FFF14B;
}

body.puber .view-column-overzicht .views-row {
    border-bottom: 1px solid #7380BE;
}

body.jong .view-column-overzicht .views-row {
    border-bottom: 1px solid #D2CD2C;
}

.view-column-overzicht .views-row .views-field-field-afbeelding {
    float: left;
    width: 35%;
    margin: 4px 10px 3px 0;
}

.view-column-overzicht .views-row .views-field-field-afbeelding img {
    width: 100%;
}

.view-column-overzicht .views-row h2 {
    font-size: 1em;
    margin: 0.83em 0 .3em 0;
}

.view-column-overzicht .views-row p {
    font-size: .9em;
    margin-bottom: .5em;
}

/* Artikelen */

.view-id-artikelen.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-artikelen.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-artikelen .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-artikelen.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-artikelen.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-artikelen.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-artikelen .views-field-type, .view-id-artikelen .views-field-created, .view-id-artikelen .views-field-field-auteursnaam, .view-id-artikelen .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-artikelen.view-display-id-page .type-Artikel {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-artikelen.view-display-id-page .type-Artikel .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-artikelen.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* Agenda */

.view-id-agenda_nieuw.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-agenda_nieuw.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-agenda_nieuw .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-agenda_nieuw.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-agenda_nieuw.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-agenda_nieuw.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-agenda_nieuw .views-field-type, .view-id-agenda_nieuw .views-field-field-datum, .view-id-agenda_nieuw .views-field-field-einddatum, .view-id-agenda_nieuw .views-field-field-locatie {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-agenda_nieuw.view-display-id-page .type-Agenda {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-agenda_nieuw.view-display-id-page .type-Agenda .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-agenda_nieuw.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* Beeld artikel */

.view-beeld-artikelen.view-display-id-page .views-field-field-afbeelding {
    float: left;
    width: 70px;
    height: 70px;
    margin-right: 10px;
}

.view-beeld-artikelen.view-display-id-page .views-row {
    clear: both;
    margin-bottom: 10px;
    height: 70px;
    overflow: hidden;
    position: relative;
}

.view-beeld-artikelen .views-field-title {
    font-size: 15px;
    font-weight: bold;
    padding-top: 2px;
}

.view-beeld-artikelen.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
    height: 30px;
    overflow: hidden;
}

.view-beeld-artikelen.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
    margin-bottom: 0;
}

.view-beeld-artikelen.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-beeld-artikelen .views-field-type {
    color: #999;
    font-size: 11px;
    float: left;
    margin-right: 10px;
}

.view-beeld-artikelen.view-display-id-page .type-Beeld.artikel {
    height: 70px;
    background-image: url(../images/achtergrond-column.png);
    background-repeat: no-repeat;
    background-position: top left;
}

.view-beeld-artikelen.view-display-id-page .type-Beeld.artikel .views-field-title a {
    color: #FF5B5C;
    text-decoration: none;
}

.view-beeld-artikelen.view-display-id-page .stip {
    background-image: url(images/bullet-overzicht.png);
    background-repeat: no-repeat;
    z-index: 999;
    position: absolute;
    top: 1px;
    left: 56px;
    width: 24px;
    height: 24px;
}

/* Opinie */

.view-id-opinie.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-opinie.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-opinie .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-opinie.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-opinie.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-opinie.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-opinie .views-field-type, .view-id-opinie .views-field-created, .view-id-opinie .views-field-field-auteursnaam, .view-id-opinie .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-opinie.view-display-id-page .type-Opinie {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-opinie.view-display-id-page .type-Opinie .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-opinie.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* Besprekingen */

.view-id-besprekingen.view-display-id-page {
  margin-top: 25px;
}

.view-id-besprekingen.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-besprekingen.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-besprekingen .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-besprekingen.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-besprekingen.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-besprekingen.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-besprekingen .views-field-type, .view-id-besprekingen .views-field-created, .view-id-besprekingen .views-field-field-auteursnaam, .view-id-besprekingen .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-besprekingen.view-display-id-page .type-Bespreking {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-besprekingen.view-display-id-page .type-besprekingen .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-besprekingen.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* Columns */

.view-id-columns.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-columns.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-columns .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-columns.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-columns.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-columns.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-columns .views-field-type, .view-id-columns .views-field-created, .view-id-columns .views-field-field-auteursnaam, .view-id-columns .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-columns.view-display-id-page .type-Column {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-columns.view-display-id-page .type-Artikel .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-columns.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* Vraagbaken */

.view-id-vraagbaken.view-display-id-page .views-field-field-afbeelding {
  float: left;
  width: 70px;
  height: 70px;
  margin-right: 10px;
}

.view-id-vraagbaken.view-display-id-page .views-row {
  clear: both;
  margin-bottom: 10px;
  height: 70px;
  overflow: hidden;
  position: relative;
}

.view-id-vraagbaken .views-field-title {
  font-size: 15px;
  font-weight: bold;
  padding-top: 2px;
}

.view-id-vraagbaken.view-display-id-page .views-field-field-intro-kort {
  font-size: 13px;
  line-height: 1.2;
  height: 30px;
  overflow: hidden;
}

.view-id-vraagbaken.view-display-id-page .views-field-field-intro-kort p {
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 0;
}

.view-id-vraagbaken.view-display-id-page .views-field-field-intro-kort p + p {
    display: none;
}

.view-id-vraagbaken .views-field-type, .view-id-vraagbaken .views-field-created, .view-id-vraagbaken .views-field-field-auteursnaam, .view-id-vraagbaken .views-field-comment-count {
  color: #999;
  font-size: 11px;
  float: left;
  margin-right: 10px;
}

.view-id-vraagbaken.view-display-id-page .type-Vraagbaak {
  height: 70px;
  background-image: url(../images/achtergrond-column.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.view-id-vraagbaken.view-display-id-page .type-Vraagbaak .views-field-title a {
  color: #FF5B5C;
  text-decoration: none;
}

.view-id-vraagbaken.view-display-id-page .stip {
  background-image: url(images/bullet-overzicht.png);
  background-repeat: no-repeat;
  z-index: 999;
  position: absolute;
  top: 1px;
  left: 56px;
  width: 24px;
  height: 24px;
}

/* reacties buiten forum */

#comments {
    padding: 10px;
    border-top: 1px solid #999;
    background: linear-gradient(90deg, rgba(238,238,238,1) 0%, rgba(255,255,255,0) 100%);
}

#comments h2 {
    margin: 0;
}

.submitted a {
  color: #000;
  font-size: 13px;
  margin-bottom: 10px;
}

.comment-form-wrapper h2, #comments h3 {
  display: none;
}

#comments .content p:last-child {
  margin-bottom: 0;
}

#comments .new {
    margin-left: 0;
}

#comments li.comment_forbidden {
  display: none;
}

#comments .field-name-comment-body {
    width: 100%;
    box-sizing: border-box;
}

#comments #edit-anonymize-name {
  width: 100%;
  box-sizing: border-box;
}

.filter-guidelines {
    padding: 0;
}

.filter-guidelines li {
    font-size: 13px;
}

.filter-help {
    padding: 0;
}

.filter-help p {
    font-size: 13px;
}

.filter-wrapper {
    border: 0;
    padding: 0;
}

.filter-wrapper .form-item {
    padding: .5em 0 1em 0;
}


/* videoblaster */

#ndm_ouders_videoblaster div {
    margin-bottom: 20px !important;
}

/* Recente inhoud */

.view-id-tracker .views-table td {
    padding: 2px 4px;
    vertical-align: top;
}

/* Cartoon */
#block-views-cartoon-block .view-content {
    border: 1px solid black;
}

#block-views-cartoon-block .view-content a {
    color: transparent;
}

.view-cartoon-archief td.views-field-created {
    vertical-align: top;
}

.view-cartoon-archief td img {
    border: 1px solid black;
}

/* kleuren in editor */
.blauw {
    color: #0033ff;
}

.groen {
    color: #449900;
}

.oranje {
    color: #ff9900;
}

.feed-item-meta .feed-item-date {
  display: none;
}

.block-ouders-cjg .more-link {
  display: none;
}

.panel-pane.pane-forum-statistics {
    display: none !important;
}

.field-name-field-antwoord .field-label {
    font-weight: bold;
    font-size: 19px;
    color: #FF5B5C;
}

body.baby .field-name-field-antwoord .field-label {
    color: #FAD3B9;
}

body.peuter .field-name-field-antwoord .field-label {
    color: #CDE1E7;
}

body.basis .field-name-field-antwoord .field-label {
    color: #FFF14B;
}

body.puber .field-name-field-antwoord .field-label {
    color: #7380BE;
}

body.jong .field-name-field-antwoord .field-label {
    color: #D2CD2C;
}

.node-unpublished, .comment-unpublished {
  background-color: #ccc;
}

/* auteursblok */

#block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #FF5B5C;
    padding-left: 10px;
}

body.baby #block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #FAD3B9;
}

body.peuter #block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #CDE1E7;
}

body.basis #block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #FFF14B;
}

body.puber #block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #7380BE;
}

body.jong #block-views-auteurs-per-node-block-1 {
    border-left: 10px solid #D2CD2C;
}


#block-views-auteurs-per-node-block-1 .view-header {
    float: left;
    margin-right: 3px;
}

#block-views-auteurs-per-node-block-1 .views-row {
    float: left;
    margin-right: 5px;
}

#block-views-auteurs-per-node-block-1 .field-name-field-auteursnaam {
    margin-right: 0;
}

#block-views-auteurs-per-node-block-1 .views-row p:after {
    content: ",";
}

#block-views-auteurs-per-node-block-1 .views-row-last p:after {
    content: "";
}

/* tekstadvertenties */

.view-tekstadvertenties .views-row {
    border-bottom: 1px solid #ccc;
}

/* verberg Wat gebeurt er-blok  */

.pane-forum-statistics {
    display: none;
}

/* sidebar social */

#block-service-links-service-links, #block-views-flags-block-1 {
    float: left !important;
    clear: none !important;
}

#block-views-flags-block-1 {
    margin-left: 4px;
}

.view-id-flags.view-display-id-block_1 .flag-bookmarks a.flag {
  padding: 5px 5px !important;
  height: 20px;
}

ul.links .flag-bookmarks, ul.links .forward_link {
    display: none !important;
}

/* Poll */

.poll .vote-form {
    text-align: left;
}

.poll .vote-form .choices {
    margin: 0;
}

.view-polls.view-display-id-page .views-row {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.view-polls.view-display-id-page .views-row div.links {
    display: none;
}

/* footer */

#block-block-7 {
    overflow: hidden;
    margin-bottom: 0;
}

#block-block-7 .block-content {
    background-color: #FF5B5C;
    padding: 9px 10px;
}

body.baby #block-block-7 .block-content {
    background-color: #FAD3B9;
}

body.peuter #block-block-7 .block-content {
    background-color: #CDE1E7;
}

body.basis #block-block-7 .block-content {
    background-color: #FFF14B;
}

body.puber #block-block-7 .block-content {
    background-color: #7380BE;
}

body.jong #block-block-7 .block-content {
    background-color: #D2CD2C;
}

#block-block-7 p, #block-block-7 p a {
    color: #fff;
    margin: 0;
}

body.baby #block-block-7 p, body.baby #block-block-7 p a, body.peuter #block-block-7 p, body.peuter #block-block-7 p a, body.basis #block-block-7 p, body.basis #block-block-7 p a, body.jong #block-block-7 p, body.jong #block-block-7 p a {
    color: #000;
}

/* Lees verder, gerelateerde artikelen */

#block-views-lees-verder-leesverder .view-content {
    display: flex;
    justify-content: space-between;
}

#block-views-lees-verder-leesverder .view-content .views-row {
    width: 47.5%;
}

#block-views-lees-verder-leesverder .view-content .views-row h3 {
    margin: 0;
}

/* responsive menu */

.responsive-menus.responsified {
    width: 50%;
    float: left;
}

.responsive-menus.responsified span.toggler {
    padding: 0;
    background-color: #FF5B5C;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 0 !important;
}

body.baby .responsive-menus.responsified span.toggler {
    background-color: #FAD3B9;
    color: #000;
}

body.peuter .responsive-menus.responsified span.toggler {
    background-color: #CDE1E7;
    color: #000;
}

body.basis .responsive-menus.responsified span.toggler {
    background-color: #FFF14B;
    color: #000;
}

body.puber .responsive-menus.responsified span.toggler {
    background-color: #7380BE;
    color: #fff;
}

body.jong .responsive-menus.responsified span.toggler {
    background-color: #D2CD2C;
    color: #000;
}

.responsive-menus.responsified .responsive-menus-simple {
    background-color: #FF5B5C;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: none;
}

body.baby .responsive-menus.responsified .responsive-menus-simple {
    background-color: #FAD3B9;
}

body.peuter .responsive-menus.responsified .responsive-menus-simple {
    background-color: #CDE1E7;
}

body.basis .responsive-menus.responsified .responsive-menus-simple {
    background-color: #FFF14B;
}

body.puber .responsive-menus.responsified .responsive-menus-simple {
    background-color: #7380BE;
}

body.jong .responsive-menus.responsified .responsive-menus-simple {
    background-color: #D2CD2C;
}

.responsive-menus.responsified .responsive-menus-simple li a {
    padding: .5em 5%;
    color: #fff;
    border-bottom: 1px solid #fff;
    text-transform: lowercase;
}

body.baby .responsive-menus.responsified .responsive-menus-simple li a {
    color: #000;
    border-bottom: 1px solid #000;
}

body.peuter .responsive-menus.responsified .responsive-menus-simple li a {
    color: #000;
    border-bottom: 1px solid #000;
}

body.basis .responsive-menus.responsified .responsive-menus-simple li a {
    color: #000;
    border-bottom: 1px solid #000;
}

body.puber .responsive-menus.responsified .responsive-menus-simple li a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

body.jong .responsive-menus.responsified .responsive-menus-simple li a {
    color: #000;
    border-bottom: 1px solid #000;
}

#block-system-main-menu {
    position: relative;
}

li.menu-item-4455 {
    right: 7px;
    position: absolute;
    font-weight: bold;
}

li.menu-item-4455 a {
    text-decoration: underline !important;
    font-size: 17px !important;
}

.view-id-popup {
    padding: 15px 15px 0 15px;
    border: 2px solid #FF5B5C;
}

body.baby .view-id-popup {
    border: 2px solid #FAD3B9;
}

body.peuter .view-id-popup {
    border: 2px solid #CDE1E7;
}

body.basis .view-id-popup {
    border: 2px solid #FFF14B;
}

body.puber .view-id-popup {
    border: 2px solid #7380BE;
}

body.jong .view-id-popup {
    border: 2px solid #D2CD2C;
}

.view-id-popup h2 {
    margin-top: 0;
}

/* Shop */

.view.shopgrid .view-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.view.shopgrid .view-content h3 {
    flex: 0 0 100%;
    margin-bottom: 1rem;
}

.view.shopgrid .view-content .views-row {
    width: 24%;
}

.view.shopgrid .view-content .views-field-field-linkshop {
    margin-bottom: 1rem;
    float: left;
}

.view.shopgrid .view-content .views-field-field-linkshop a {
	border: 1px solid #FF5B5C;
	background: none;
	background-color: #FF5B5C;
	color: #fff !important;
	font-weight: bold;
	padding: 3px 5px;
	text-decoration: none;
	display: block;
}

/* cbb */
.block-cbb.slidein {
    position: fixed;
    background-color: #fff;
    bottom: -266px;
    left: 0;
    margin-bottom: 0;
    z-index: 999;
    max-width: 320px;
    border-radius: 5px 5px 0 0;
    box-shadow: 5px -5px 10px 1px rgba(0, 0, 0, 0.5);
    animation: slide 1.5s forwards;
    animation-delay: 2s;
}

@keyframes slide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(0, -266px);
    }
}

.block-cbb .close {
    font-family: fontawesome;
    float: right;
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: inherit;
}

.block-cbb.slidein h2 {
    margin: 0;
}

/* forum */

@media screen and (min-width: 986px) {
    #block-block-15, #block-block-18 {
        display: none;
    }
    
    #main-content {
        margin-right: 30px;
    }

    #main-content .node-content, #main-content #comments {
        margin-left: 40px;
    }
}

@media screen and (max-width: 580px) {
    .forum-post-panel-sub {
        float: none;
        width: 100%;
    }
    
    .forum-post-panel-main {
        margin-left: 0;
    }
    
    #block-views-exp-zoek4-page, #branding, #menu-bar, #block-system-main-menu, #block-block-15, #block-block-18 {
    margin: 0;
    }
    
    .view-id-recenteinhoud.view-display-id-page .views-field-type {
    display: none;
    }
    
    .view-id-recenteinhoud.view-display-id-page .views-field-created {
    width: 80px;
    }
    
    .view-id-recenteinhoud.view-display-id-page .views-field-title {
    min-width: 125px;
    }
    
    .forum-table thead tr th {
    font-size: 11px;
    }
    
    .view-column-overzicht .views-row {
    width: 100%;
    }
}

@media screen and (max-width: 985px) {
    #block-block-15, #block-block-18, #block-views-exp-forumzoek-page {
        width: 100%;
        height: auto;
        padding: 0;
        margin: 0;
        float: none;
    }
    
    #block-views-exp-forumzoek-page, #block-views-exp-zoek4-page {
        height: auto;
        float: none;
        margin: 0;
    }
    
    #views-exposed-form-zoek4-page .form-item-zoeken {
        width: 200px;
    }
    
    #views-exposed-form-zoek4-page .form-submit, #views-exposed-form-forumzoek-page .form-submit {
        margin-top: 1.6em;
    }
    
    #block-ouders-custom-contact-forum-administrator {
        width: 100%;
        height: auto;
        float: none;
        box-sizing: border-box;
    }
    
    #block-ouders-custom-contact-forum-administrator ul {
        overflow: hidden;
    }
    
    #block-ouders-custom-contact-forum-administrator ul li {
        margin: 0;
    }
    
    #block-block-16, #block-block-17 {
        display: block;
    }
    
    #block-menu-menu-leeftijden {
        display: none;
    }
    
    .forum-post-panel-sub .author-pane {
        margin: 3px 10px;
        font-size: 13px;
    }
    
    .forum-post-title {
        border-left: 0;
    }
    
    .comment-form input {
        max-width: 100%;
    }
    
    .forum-topic-header .topic-post-count {
        float: none;
    }
    
    .panel-pane.pane-forum-legend, .panel-pane.pane-forum-topic-legend {
        display: none;
    }
    
    li.menu-item-4455 {
        position: relative;
        right: 0;
    }
    
    #header {
        background-position: 35%;
    }

@media only screen and (max-width: 985px) and (min-width: 581px) {
    #menu-bar {
        margin: 0 10px;
    }
    
    #block-block-15, #block-block-18 {
        margin: 0;
    }
}

@media only screen and (max-width: 880px) and (min-width: 321px) {
    html, body {
        font-size: 13px !important;
    }
}

@media only screen and (max-width: 360px) {
    a.af-button-large, a.af-button-small, .flag-bookmarks a.flag {
    font-size: 12px;
    }
    
    .view-id-flag_bookmarks.view-display-id-page .views-field-type {
    display: none;
    }
}