/* Body */
html {
  -webkit-font-smoothing: antialiased;
}

body {
  background: #FAFAFA;
  font-family: 'Open Sans Condensed', 'Helvetica Neue', Helvetica, Verdana, sans-serif;
  font-size: 18px;
  word-wrap: break-word;
  color: #676767;

/*
  Als we dit erin zetten dan is de website leesbaar!!
  maar snap wel dat dat niet gewenst is........

  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Verdana, sans-serif;
  font-size: 16px;
*/
}

/* Defaults */
h1, h2, h3, h4, h5, h6, p, ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	color: #0A0A0A;
	font-family: 'Open Sans Condensed', 'Helvetica Neue', Helvetica, Verdana, sans-serif;
	font-weight: 600;
}

h4 {
	color: #699fd0;
}

a {
  transition: all .2s ease-in-out;
  color: inherit;
}

a:hover {
  text-decoration: none;
}

p {
	margin-bottom: 25px;
}

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

input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea,
select {
  background: #F7F7F7;
  border: 0px solid transparent;
  padding: 15px 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

select {
	border: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 15px;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	background-image: url('../img/icons/forms/select-arrow.png') !important;
	background-size: 15px 8px !important;
	background-position: right 15px center !important;
	background-repeat: no-repeat !important;
}

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

.button,
button,
input[type="submit"] {
  border: 0;
  display: inline-block;
  background: #2E5374;
  color: #fff !important;
  line-height: 24px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 20px;
  opacity: 1;
  transition: all .2s ease-in-out;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
  opacity: 0.8;
  color: #676767;
}

.logos {
  padding: 20px 0;
  vertical-align: middle;
}

.logo {
  max-width: 300px;
  width: auto;
}

.logo-plus {
  max-width: 200px;
  width: auto;
  float: right;
}

.rug-logo {
  display: inline-block;
  font-size: 0px;
  width: 194px;
  height: 46px;
  background-size: 194px 46px;
  background-repeat: no-repeat;
  background-image: url("../img/rug/rug-logo.png");
}

.helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
/* Header */
header {
  background: #fff;
}

header .meta-outer-wrapper {
  background: #F7F7F7;
}

header .meta-outer-wrapper .meta-menu {
  display: inline-block;
}

header .meta-outer-wrapper .meta-menu li {
  display: inline-block;
  border-right: 1px solid #ABABAB;
  margin: 25px 0;
  padding: 0px 5px;
  line-height: 1em;
  font-size: 20px;
}

header .meta-outer-wrapper .meta-menu > li:last-child {
  border-right: 0;
}

header .meta-outer-wrapper .meta-menu li a {
  display: block;
  padding: 0px 10px;
  color: #ABABAB;
}

header .meta-outer-wrapper .meta-menu li a:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.15);
}

header .logo-n-search {
  padding: 25px 0px;
}

header .logo-n-search .logo {
	margin-top: 10px;
}

header .logo-n-search .search-form {
  margin-top: 7.5px;
}

header .logo-n-search .search-form .search-input {
  margin-right: -4px;
  vertical-align: top;
}

header .logo-n-search .search-form .search-button {
  vertical-align: top;
  font-size: 0px;
  background-color: #F7F7F7;
  background-image: url("../img/icons/header/search-icon.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding: 16px 20px 15px 15px;
}

header .menu-outer-wrapper {
  color: #fff;
}

header .menu-outer-wrapper .main-menu {
  display: block;
  width: 100%;
}

header .menu-outer-wrapper .main-menu li {
  display: inline-block;
  position: relative;
  transition: background .2s ease-in-out;
}

header .menu-outer-wrapper .main-menu li:hover,
header .menu-outer-wrapper .main-menu li.current-menu-item {
	background: rgba(255,255,255,0.15);
}

header .menu-outer-wrapper .main-menu li a {
  color: inherit;
  padding: 13px 25px;
  display: block;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Open Sans Condensed', 'Helvetica Neue', Helvetica, Verdana, sans-serif;
}

header .menu-outer-wrapper .main-menu li a span {
	transition: all .2s ease-in-out;
}

header .menu-outer-wrapper .main-menu li .sub-menu {
	position: absolute;
	left: -99999px;
	top: 54px;
	opacity: 0;
	transition: opacity .2s ease-in-out;
}

header .menu-outer-wrapper .main-menu li:hover .sub-menu {
	left: 0;
	opacity: 1;
	z-index: 10;
	background: #335571;
	width: 300px;
	max-width: 80vw;
}

	header .menu-outer-wrapper .main-menu li:hover .sub-menu li {
		display: block;
	}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  header .logo-n-search .search-form .search-button {
    background-image: url("../img/icons/header/search-icon@2x.png");
  }
}
/* Brandbox */
.brandbox-wrapper {
  overflow: hidden;
  margin: 50px auto;
  background: #fff;
}

.owl-carousel.brandbox {
	overflow: hidden;
}

.brandbox-wrapper .brandbox-content {
	opacity: 1;
	transition: opacity .4s ease-in-out;
	-webkit-transform: translateZ(0);
}


.brandbox-wrapper .brandbox-content.fadeOut {
	opacity: 0;
	transition: opacity .2s ease-in-out;
}

.brandbox-wrapper .brandbox-content .info,
.brandbox-wrapper .brandbox-content .image {
  min-height: 200px;
}

.brandbox-wrapper .brandbox-content .info {
}

.brandbox-wrapper .brandbox-content .info .inner {
  padding: 40px;
  display: inline-block;
  width: 100%;
  color: #676767;
}

.brandbox-wrapper .brandbox-content .info h4 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 25px;
  color: #2E5374;
}

.brandbox-wrapper .brandbox-content .info .button {
  margin-top: 25px;
}

.brandbox-wrapper .brandbox-content .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  display: block;
}

.brandbox-wrapper .brandbox-nav .nav {
  float: left;
  width: 33.3333%;
  text-align: center;
  background: #2E5374;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px;
  border-left: 1px solid #fff;
  cursor: pointer;
  transition: background .2s ease-in-out;
}

.brandbox-wrapper .brandbox-nav > .nav:first-child {
  border-right: 0;
}

.brandbox-wrapper .brandbox-nav .nav:hover,
.brandbox-wrapper .brandbox-nav .nav.current {
  background: #699FD0;
}

.brandbox-wrapper .brandbox-nav .nav span.title {
  vertical-align: middle;
  display: inline-block;
  width: 90%;
}

/* Content Block */
.content-block {
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  margin-bottom: 25px;
}

.content-block .cover {
  height: 180px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.content-block .cover .image-holder {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: all .5s ease-in-out;
}

/*
.content-block:hover .cover .image-holder {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
*/

.content-block .inner {
  padding: 30px;
  position: relative;
  height: calc(100% - 180px);
}

.content-block .inner .description > p:last-child {
	margin-bottom: 0px;
}

.content-block .inner .title {
  font-weight: 600;
  line-height: 22px;
  margin-bottom: 20px;
  color: #699fd0;
  font-size: 20px;
}

.content-block .inner .footer {
  margin-top: 20px;
  font-weight: 600;
}

.content-block .inner .footer a {
	color: #2E5374;
}

	.content-block .inner .footer a:hover {
		color: #676767;
	}


/* Sidebar & Widgets */
.sidebar .widget {
  width: 100%;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  background: #fff;
  color: #2E5374;
  padding: 30px;
}


.sidebar .widget .blue {
  background: #2E5374;
  color: #fff;
}

	.sidebar .widget .blue a:hover {
		color: inherit;
	}

.sidebar .widget .blue.light {
  background: #699FD0;
}

.sidebar .widget .widget_title {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 20px;
  color: #0A0A0A;
}

.sidebar .widget .blue .widget_title {
  color: inherit;
}

.sidebar .widget ul li {
  padding: 5px 0px;
  display: block;
  clear: both;
}

.sidebar .widget .list ul {
  margin: 0;
  padding: 0;
}

.sidebar .widget .list ul li {
  border-bottom: 1px solid #fff;
}

.sidebar .widget .list ul > li:last-child {
  border-bottom: 0;
}

.sidebar .widget .list ul li a {
  display: block;
  position: relative;
  padding: 5px 20px 5px 0px;
}

.sidebar .widget .list ul li a:after {
  display: block;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background-image: url("../img/icons/sidebar/chevron-right.png");
  background-position: right 0px center;
  background-repeat: no-repeat;
  background-size: 7px 13px;
  transition: all .2s;
}

.sidebar .widget .list ul li a:hover {
  color: inherit;
}

.sidebar .widget .list ul li a:hover:after {
  right: -5px;
}

.sidebar .widget .schedule .schedule-wrapper {
  margin-top: 10px;
}

.sidebar .widget .schedule .schedule-wrapper .schedule-item {
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
  margin-top: 20px;
}

.sidebar .widget .schedule .schedule-wrapper > .schedule-item:last-child {
  border-bottom: 0;
}

.sidebar .widget .schedule .schedule-wrapper .schedule-item span {
  display: block;
}

.sidebar .widget .schedule .schedule-wrapper .schedule-item span.date {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.sidebar .widget .advisor {
  position: relative;
}

.sidebar .widget .advisor .advisor_name {
  font-weight: 600;
  color: #0A0A0A;
  font-size: 17.5px;
}

.sidebar .widget .advisor .advisor_text {
  color: #0A0A0A;
  font-size: 19px;
  margin: 20px 0px;
  width: 65%;
}

.sidebar .widget .advisor .advisor_info {
  width: 65%;
  font-size: 17px;
}

.sidebar .widget .advisor .advisor_info tr > td {
  padding: 5px 5px 5px 0px;
}

.sidebar .widget .advisor .advisor_info tr > td:first-child {
  color: #0A0A0A;
}

.sidebar .widget .advisor .advisor_photo {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
}

.sidebar .widget .advisor .advisor_photo img {
  max-width: 100%;
}

.sidebar .widget .content-block-wrapper {
  padding: 0px;
}

.sidebar .widget .form input {
  width: 100%;
  margin-top: 10px;
}

.sidebar .widget .ad img {
	max-width: 100%;
}

.sidebar .widget .ad,
.sidebar .widget .form,
.sidebar .widget .advisor,
.sidebar .widget .schedule,
.sidebar .widget .newsletter,
.sidebar .widget .list,
.sidebar .widget .cta {
	padding: 30px;
	margin: -30px;
}

.sidebar .widget .content-block-wrapper {
	margin: -30px;
}

.sidebar .widget .content-block-wrapper .content-block {
	margin-bottom: 0;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.sidebar .widget .news-carousel {

}
  .sidebar .widget .news-carousel .owl-stage-outer {
    padding-bottom: 10px;
  }
  .sidebar .widget .news-carousel .owl-controls {
    padding-top: 10px;
    border-top: 3px solid #699FD0;
  }

	.sidebar .widget .news-carousel .category-title {
		font-size: 1em;
		margin-bottom: 10px;
	}

	.sidebar .widget .news-carousel ul {
		list-style: none;
		border-top: 1px solid #eee;
	}

		.sidebar .widget .news-carousel ul li {
			border-bottom: 1px solid #eee;
			padding: 5px 0px;
		}

			.sidebar .widget .news-carousel ul li a {
				display: block;
				padding: 5px 0px;
			}

			.sidebar .widget .news-carousel ul li a:hover {
				text-decoration: underline;
			}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .sidebar .widget.list ul li a:after {
    background-image: url("../img/icons/sidebar/chevron-right@2x.png");
  }
}
/* Newsletter form */
.newsletter-form {
  margin-top: 25px;
  overflow: hidden;
}

.newsletter-form .email-input,
.newsletter-form .subscribe-button {
  display: block;
  float: left;
  vertical-align: top;
  margin: 0;
  height: 50px;
}

.newsletter-form .email-input {
  width: 80%;
  color: #0A0A0A;
}

.newsletter-form .subscribe-button {
  background: #F6F6F6;
  font-size: 0px;
  width: 20%;
  background-image: url("../img/icons/sidebar/newsletter-subscribe.png");
  background-position: center center;
  background-repeat: no-repeat;
}

/* EFMI Bar */
.efmi-bar {
  background: #fff;
  padding: 50px 0px;
  margin-top: 50px;
  line-height: 1.65em;
  text-align: justify;
  color: #0A0A0A;
}

/* Footer */
footer {
  background: #2E5374;
  color: #fff;
  padding: 25px 0px 50px 0px;
  border-top: 5px solid #699FD0;
}

footer .widget .widget_title {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 40px;
  color: inherit;
}

footer .widget ul li {
  padding: 5px 0px;
}

footer .widget ul li a:hover {
  color: inherit;
}

/* Footer meta links bar */
.footer-meta-wrapper .footer-meta li {
  display: inline-block;
  padding: 15px;
}

.footer-meta-wrapper .footer-meta li a {
  display: block;
}

/* Breadcrumbs */
.breadcrumbs {
  background: #fff;
  padding: 10px 20px;
  margin: 30px 0px;
  color: #9B9B9B;
}

/* Single opleiding */
.opleiding-wrapper {
  background: #fff;
  margin-bottom: 25px;
}

.opleiding-wrapper .header .covers {
  height: 200px;
}

.opleiding-wrapper .header .covers .item {
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.opleiding-wrapper .header .titles {
  padding: 30px;
  margin-bottom: 30px;
}

.opleiding-wrapper .header .titles .entry-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}

.opleiding-wrapper .header .titles .entry-subtitle {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
}

.opleiding-wrapper .header .titles .entry-excerpt {
  font-size: 20px;
}

.opleiding-wrapper .nav {
  overflow: hidden;
  border-bottom: 3px solid #699FD0;
}

.opleiding-wrapper .nav ul {
  text-align: center;
}

.opleiding-wrapper .nav ul li {
  display: block;
  width: 20%;
  float: left;
  transition: background .2s ease-in-out;
  color: #337ab7;
  cursor: pointer;
}

.opleiding-wrapper .nav ul li.current {
  background: #2E5374;
  color: #fff;
}

.opleiding-wrapper .nav ul li:not(.current):hover {
  background: rgba(46, 83, 116, 0.1);
}

.opleiding-wrapper .nav ul li a {
  font-weight: 600;
  display: inline-block;
  padding: 10px;
  width: 97%;
  vertical-align: middle;
}

.opleiding-wrapper .nav ul li a:focus {
	color: #fff;
	text-decoration: none;
}

.opleiding-wrapper .nav ul li:hover a {
  color: inherit;
}

.opleiding-wrapper .content {
  padding: 30px;
  position: relative;
}

	.opleiding-wrapper .content .tab {
		opacity: 0;
		position: absolute;
		left: -9999999px;
		top: 0;
		width: 100%;
		padding: 30px;
		transition: opacity .2s;
	}

	.opleiding-wrapper .content .tab.current {
		opacity: 1;
		position: relative;
		padding: 0;
		left: 0;
	}

/* Opleiding References */
.opleiding-references,
.opleiding-director {
  padding-top: 50px;
  margin-bottom: 25px;
}

.opleiding-references {
	padding-top: 0;
}

.opleiding-references .equal,
.opleiding-director .equal {
  min-height: 200px;
}

.opleiding-references .reference,
.opleiding-director .director {
  width: 100%;
  padding: 0px 40px 0px 40px;
  position: relative;
  background: #fff;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
}

.opleiding-references .reference.blue {
  background: #2E5374;
  color: #fff;
}

.opleiding-references .reference .photo,
.opleiding-director .director .photo {
  position: absolute;
  text-align: center;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
}

.opleiding-references .reference .photo img,
.opleiding-director .director .photo img {
  max-width: 100%;
  vertical-align: bottom;
}

.opleiding-director .director .photo-2 {
  position: relative;
  top: 25%;
  transform: translateY(25%);
}

.opleiding-director .director .photo-2 img {
  position: absolute;
  max-width: 100%;
}

.opleiding-references .reference .content {
  text-align: center;
  line-height: 25px;
  padding: 40px 0px 40px 0px;
}

.opleiding-references .reference .content .person {
  font-style: italic;
  margin-top: 20px;
}

.opleiding-director .director .content {
  padding: 40px 0px 40px 0px;
  color: #2E5374;
}

.opleiding-director .director .content h4 {
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 20px;
  font-size: 20px;
}

/* Single page */
.page-content-inner {
  background: #fff;
  width: 100%;
  margin-bottom: 25px;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
}

.page-content-inner .cover {
  height: 200px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.page-content-inner .entry-content {
  padding: 40px;
}

	.page-content-inner .entry-content a {
		font-weight: bold;
		color: #699fd0;
	}

	.page-content-inner .entry-content a:hover {
		color: #23527c;
	}

.page-content-inner .entry-content .entry-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
  color: #0A0A0A;
}

.page-content-inner .entry-content .entry-subtitle {
  font-weight: 600;
  color: #0A0A0A;
  margin-bottom: 20px;
  font-size: 22px;
}

/* Pagination */

.pagination {
	display: block;
	width: 100%;
	clear: both;
	overflow: hidden;
	border-radius: 0;
}

.page-numbers {
	display: inline-block;
	margin-right: 7.5px;
	padding: 5px 10px;
	background: #ebebeb;
	border-radius: 0;
}

.page-numbers.current {
	background: #2E5374;
	color: #fff;
}

/* Notification */


/* Contact pagina */

.contact-row {
	margin: 25px 0;
}

	.contact-row strong {
		color: #0a0a0a;
	}

.contact-form {

}

	.contact-form input,
	.contact-form button,
	.contact-form textarea {
		width: 100%;
		margin-bottom: 15px;
	}

	.contact-form textarea {
		min-height: 200px;
		max-width: 100%;
	}

.google-map#map {
	height: 395px;
	width: 100%;
}

/* Responsive Queries */
@media screen and (max-width: 768px) {
  .opleiding-references,
  .opleiding-director {
    padding-top: 0;
  }
}


.mobile-menu {
    background: #fff;
    display: inline-block;
    height: 100vh;
    padding: 30px 50px;
    position: absolute;
    left: -100%;
    box-shadow: -3px 0 10px 0 rgba(0, 0, 0, .2);
    max-width: 100%;
    transition: left .2s ease-in-out;
    overflow: auto
}

.mobile-menu__overlay {
    position: fixed;
    left: -100vw;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    background: rgba(0, 0, 0, .5);
    z-index: 100;
    opacity: 0;
    transition: opacity .2s ease-in-out
}

.mobile-menu__overlay--open {
    opacity: 1;
    left: 0
}

.mobile-menu__overlay--open .mobile-menu {
    left: 0
}

.mobile-menu__menu, .mobile-menu__meta-menu {
    list-style: none;
    margin: 50px 0 0;
    padding: 0;
    font-weight: 600
}

.mobile-menu__menu li, .mobile-menu__meta-menu li {
    margin-bottom: 20px
}

.mobile-menu__menu li a:hover, .mobile-menu__meta-menu li a:hover {
    color: inherit
}

.mobile-menu__menu li.menu-item-has-children > a, .mobile-menu__meta-menu li.menu-item-has-children > a, .mobile-menu__menu li.page_item_has_children > a {
    position: relative;
    padding-right: 15px
}

.mobile-menu__menu li.menu-item-has-children > a + i, .mobile-menu__meta-menu li.menu-item-has-children > a + i, .mobile-menu__menu li.page_item_has_children > a + i {
    position: relative;
    right: 0;
    bottom: 0;
    top: 0;
    height: 20px;
    font-size: 15px;
    margin: auto;
    line-height: 32.5px;
	width: 25px;
	display: inline-block;
	font-style: normal;
	cursor: pointer;
}

.mobile-menu__menu li.menu-item-has-children > a + i:after, .mobile-menu__meta-menu li.menu-item-has-children > a + i:after, .mobile-menu__menu li.page_item_has_children > a + i:after {
    content: "\f123";
    font-family: Ionicons;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.mobile-menu .children, .mobile-menu .sub-menu {
    display: none;
    padding-top: 10px;
    padding-left: 17.5px
}

.mobile-menu .children li, .mobile-menu .sub-menu li {
    margin-bottom: 10px
}

.mobile-menu__meta-menu {
    margin-top: 0
}

.mobile-menu__close {
    position: absolute;
    left: 20px;
    top: 20px;
    font-size: 20px
}

.mobile-menu__open {
    font-size: 25px;
    float: left;
    cursor: pointer;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 5px;
}

	.mobile-menu__open:hover {
		color: #fff;
	}

	.mobile-menu__open i {
		font-size: 35px;
		display: inline-block;
		vertical-align: middle;
		padding-right: 15px;
	}

/* Forms */

.form-wrapper {
	margin-top: 25px;
}

	.form-wrapper .form-group {
		margin-top: 25px;
	}

		.form-wrapper .form-group .form-row {
			margin: 10px 0px;
		}

			.form-wrapper .form-group .form-row input[type="text"],
			.form-wrapper .form-group .form-row input[type="email"],
			.form-wrapper .form-group .form-row input[type="password"],
			.form-wrapper .form-group .form-row textarea,
			.form-wrapper .form-group .form-row select {
				width: 100%;
			}

			.form-wrapper .form-group .form-row label {
				margin-right: 25px;
			}

				.form-wrapper .form-group .form-row label input {
					margin-right: 7.5px;
				}

/* Frontpage brandbox */

.owl-carousel.brandbox {

}

	.owl-carousel.brandbox .owl-controls {
		margin: 0;
	}

		.owl-carousel.brandbox .owl-controls .owl-dots {
			display: none !important;
		}


@media all and (min-width: 991px) {
	.brandbox-col-right {
		padding-left: 6px;
	}
}


@media all and (max-width: 510px) {
	header .meta-outer-wrapper .meta-menu li {
		font-size: 15px;
		font-weight: 600;
		margin: 10px 0;
		border: 0;
	}

	header .meta-outer-wrapper .meta-menu li a {
		padding: 0;
  }
  
  .logos {
    padding: 10px 20px;
  }

	.logo {
		width: 150px;
    height: 35px;
    float: left;
  }
  
	.logo-plus {
		width: 100px;
    height: 35px;
    margin-left: 20px;
    float: left;
	}

	header .logo-n-search .search-form .search-input {
		padding: 10px;
	}

	header .logo-n-search .search-form .search-button {
		padding-top: 10px;
		padding-bottom: 11px;
	}

	header .logo-n-search {
		padding: 15px 0;
	}

	header .logo-n-search .logo {
		margin-top: 0;
		margin-bottom: 10px;
	}

	.brandbox-wrapper .brandbox-content .info .inner {
		padding: 25px;
		display: block;
	}

	.brandbox-wrapper .brandbox-nav .nav span.title {
		display: none;
	}

	.opleiding-wrapper .nav ul li {
		width: 33.3333% !important;
	}
}

/* Form validation */

label.error {
	display: none !important;
}

.error {
	border: 1px solid red !important;
}

span.required {
	color: red;
}

#wpmem_login legend {
	display: none !important;
}

/* == WordPress WYSIWYG Editor Styles == */

.entry-content img {
	margin: 0 0 1.5em 0;
	}
.alignleft, img.alignleft {
	margin-right: 1.5em;
	display: inline;
	float: left;
	}
.alignright, img.alignright {
	margin-left: 1.5em;
	display: inline;
	float: right;
	}
.aligncenter, img.aligncenter {
	margin-right: auto;
	margin-left: auto;
	display: block;
	clear: both;
	}
.alignnone, img.alignnone {
	/* not sure about this one */
	}
.wp-caption {
	margin-bottom: 1.5em;
	text-align: center;
	padding-top: 5px;
	}
.wp-caption img {
	border: 0 none;
	padding: 0;
	margin: 0;
	}
.wp-caption p.wp-caption-text {
	line-height: 1.5;
	font-size: 10px;
	margin: 0;
	}
.wp-smiley {
	margin: 0 !important;
	max-height: 1em;
	}
blockquote.left {
	margin-right: 20px;
	text-align: right;
	margin-left: 0;
	width: 33%;
	float: left;
	}
blockquote.right {
	margin-left: 20px;
	text-align: left;
	margin-right: 0;
	width: 33%;
	float: right;
	}
.gallery dl {}
.gallery dt {}
.gallery dd {}
.gallery dl a {}
.gallery dl img {}
.gallery-caption {}

.size-full {}
.size-large {}
.size-medium {}
.size-thumbnail {}


/* EFMI Online Plus custom css */
.home {
  padding: 50px 0;
}
.plus-sub {
  padding: 10px 0;
  text-align: center;
}
  .plus-sub h2 {
    color: white;
    text-transform: uppercase;
  }
.plus-logo {

}
table {
  table-layout: fixed; 
  width: 100%;
  height: 100%;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.21);
  margin: 10px 0 25px 0; 
}
td { 
  width: 33%;
}
th {
  background-color: #2E5374;
  color: white;
}

@media screen and (max-width: 768px) {
	.alignleft, img.alignleft {
		margin-bottom: 10px;
	}
	
	.content-block .cover {
		height: 250px;
	}
}