/*
Theme Name: ZP Multithema (v2)
Theme URI: http://zpmultisite.nl
Author: Kevin Hoogerwerf
Author URI: kevin@codebridge.nl
Version: 2.0
*/

/* ==========================================================================
   http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
   ========================================================================== */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ==========================================================================
   GENERAL
   ========================================================================== */

html,
body {
  height: 100%;
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  padding-top: 60px;
  background: #FFF;
  color: #555;
  font-family: 'Merriweather', serif;
  font-weight: 300;
  font-style: normal;
  line-height: 150%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body.modal-visable {
  position: relative;
  overflow: hidden;
}

a {
	color: #444;
	text-decoration: none;
  line-height: inherit;
}

a img { border: none; }

img {
  height: auto;
  vertical-align: middle;
}

img { -ms-interpolation-mode: bicubic; }

i,
em {
	font-style: italic;
	line-height: inherit;
}

b,
strong,
.bold {
	font-weight: 700;
	line-height: inherit;
}

.underline { text-decoration: underline; }

/* Standard heading styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5em;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 60%;
  line-height: 0;
}

h1 {
  font-size: 36px;
  text-transform: uppercase;
}
h2 { font-size: 18px; }
h3 { font-size: 16px; }
h4 { font-size: 26px; }
h5 { font-size: 16px; }
h6 { font-size: 16px; }

/* Standard paragraph styles */
p {
  font-family: inherit;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 1.25em;
  text-rendering: optimizeLegibility;
}

p:last-child {
  margin-bottom: 0;
}

small,
sub,
sup { font-size: .83em; }
sub { vertical-align: sub; }
sup { vertical-align: super; }

/* Standard form styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="password"],
input[type="number"]
input[type="search"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="submit"],
textarea,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input[type="submit"],
button {
  cursor: pointer;
}

textarea {
  overflow: auto; /* Remove default vertical scrollbar in IE 8/9 */
  vertical-align: top; /* Improve readability and alignment in all browsers */
}

textarea, input { outline: none; }

/* Placeholder texts */
::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
  opacity: 1; /* Removes placeholder transparency in Firefox */
}

::-moz-placeholder {
  color: #999;
  opacity: 1; /* Removes placeholder transparency in Firefox */
}

:-ms-input-placeholder {
  color: #999;
}

/* Clear floats by wrapping this around the parent element */
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}

/* Standard section styles */
section,
.section {
  position: relative;
	z-index: 0;
	float: left;
	width: 100%;
}

/* Standard container */
.container {
	position: relative;
	width: 93.75%;
  max-width: 1020px;
	margin: 0 auto;
}

/* Selection */
::-moz-selection { /* Firefox */
	background: #444;
	color: #FFF;
	text-shadow: none;
}
::selection {
	background: #444;
	color: #FFF;
	text-shadow: none;
}

/* Touch-enabled device targeting */
.no-touch .show-for-touch { display: none !important; }
.no-touch .hide-for-touch { display: inherit !important; }
.touch .show-for-touch { display: inherit !important; }
.touch .hide-for-touch { display: none !important; }

.only-mobile { display: none; }
.not-mobile { display: block; }
span.not-mobile { display: inline-block; }

#loading-screen {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: #fff;
}

body.ready #loading-screen { display: none; }

/* ==========================================================================
   HEADER + NAV
   ========================================================================== */

header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	z-index: 99999;
	width: 100%;
	height: 60px;
	background: url(img/white95.png);
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid #ddd;
}

.page-template-template-front-page-php header {
  position: absolute;
 	top: 630px;
}

.header-fixed header {
  position: fixed;
  top: 0;
}

a#logo {
  float: left;
  width: 91px;
  height: 40px;
  margin: 10px 0;
  background: url(img/zp-services-weblogo.png) 0 0 no-repeat;
  text-indent: -9999px; /* Anchor needs content */
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
   a#logo {
    background-image: url(img/zp-services-weblogo@2x.png);
    background-size: 91px 40px;
  }
}

nav.primary {
  float: right;
}

nav.primary ul.menu {
	float: left;
}

nav.primary li {
	position: relative;
	float: left;
}

nav.primary a {
	float: left;
	padding: 6px 0;
	margin: 15px 20px;
	color: #555;
  font-family: 'Roboto Condensed', sans-serif;
	font-size: 14px;
	line-height: 18px;
	font-weight: 400;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
  border-bottom: 1px solid transparant;
}

nav.primary ul li.current-menu-item a,
.no-touch nav.primary ul li.current-menu-item a:hover, {
  color: #333;
  border-bottom: 2px solid #89BAE4;
}

.no-touch nav.primary ul li a:hover {
  color: #333;
  border-bottom: 1px solid #89BAE4;
}

nav.primary .sub-menu {
  display: none;
  position: absolute;
  top: 59px;
  left: -5px;
  width: 110px;
  padding: 8px 0;
  background: #fff;
  background: rgba(255,255,255,.95);
  box-shadow: 0px 1px 0px 0px rgba(0,0,0,0.10);
}

nav.primary ul ul li a {
  padding: 8px 15px;
  margin: 0;
}

nav.primary ul ul li.current-menu-item a,
.no-touch nav.primary ul li.menu-item-has-children a:hover,
.no-touch nav.primary ul ul li a:hover,
.no-touch nav.primary ul ul li.current-menu-item a:hover {
  border-bottom: none;
}


/*
.btn,
a.btn {
  display: inline-block;
  width: 160px;
  height: 40px;
  margin: 0;
  line-height: 40px;
  border-radius: 2px;
  text-align: center;
  font-size: 12px;
  font-weight: 700 !important;
  font-family: 'Roboto Condensed', sans-serif;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}


a.btn-white {
  background: #fff;
  color: #5C5C5C !important;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.10);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.10);
}

.no-touch a.btn-white:hover {
  background: #f7f7f7;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 2px 3px 0px rgba(0,0,0,0.10), inset 0px 2px 0px 0px #FFFFFF;
  box-shadow:         0px 2px 3px 0px rgba(0,0,0,0.10), inset 0px 2px 0px 0px #FFFFFF;
}

.no-touch a.btn-white:active {
  background: #fff;
  border: 1px solid rgba(52,52,52,0.20);
}

a.btn-grey {
  background: url(img/white10.png);
  background: rgba(255,255,255,0.1);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.30);
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.10);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.10);
  text-shadow: 0px 1px 1px rgba(0,0,0,0.10);
}

a.btn-blue {
  width: 180px;
  height: 50px;
  line-height: 47px;
  border-radius: 2px;
  background: #89BAE4;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
  font-size: 16px;
  color: #FFFFFF !important;
}

.no-touch a.btn-green:hover {
  background: #5B81AB;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
}

.no-touch a.btn-green:active {
  background: #326195;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
}
*/

a.mr10 {
  margin-right: 10px;
}

/* ==========================================================================
   PANEL
   ========================================================================== */

#on-canvas-wrapper {
  position: relative;
  z-index: 1;
  min-height: 100%;
  background: #fff;
}

.off-canvas-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 0;
  width: 287px;
  height: 100%;
  background: #f7f7f7;
  border-left: 1px solid #e4e4e4;
  background-image: -o-linear-gradient(44deg, #f7f7f7 0%, #ffffff 100%);
  background-image: -moz-linear-gradient(44deg, #f7f7f7 0%, #ffffff 100%);
  background-image: -ms-linear-gradient(44deg, #f7f7f7 0%, #ffffff 100%);
  background-image: linear-gradient(-46deg, #f7f7f7 0%, #ffffff 100%);
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.panel-header {
  float: left;
  width: 100%;
  height: 60px;
  padding: 10px 0;
  border-bottom: 1px solid #efeeee;
  text-align: center;
}

.panel-header .btn {
  display: inline-block;
  width: 110px;
}

.panel-footer {
  float: left;
  color: #fff;
  font-size: 12px;
  line-height: 24px;
  text-align: left;
  width: 300px;
  padding: 30px;
}

.panel-footer a {
  color: #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

nav.panel { float: left; }

nav.panel li {
  float: left;
  width: 100%;
}

nav.panel li.current-menu-item > a {
  font-weight: 400;
  border-right: 3px solid #555;
  background: rgba(256,256,256,.2);
}

nav.panel a {
  float: left;
  width: 100%;
  padding: 10px 30px;
  color: #555;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 14px;
  line-height: 18px;
  border-bottom: 1px solid #efeeee;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch nav.panel a:hover {
}

nav.panel ul ul a {
  padding-left: 40px;
}

nav.panel ul ul a:before {
  content: '- ';
}

#language { margin-left: 5px; }

/* ==========================================================================
   FRONT PAGE
   ========================================================================== */

#landing {
  height: 630px;
  margin-bottom: 60px;
	background: url(img/landing.png) center center no-repeat #326195;
	background-size: cover;
}

#landing-header {
  float: left;
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.03);
  -moz-box-shadow:    0px 1px 0px 0px rgba(255,255,255,0.10);
  box-shadow:         0px 1px 0px 0px rgba(255,255,255,0.10);
}

a#landing-logo {
  float: left;
  width: 111px;
  height: 40px;
  margin: 31px 0;
  background: url(img/virtual-cc-weblogo-white.png) 0 0 no-repeat;
  text-indent: -9999px; /* Anchor needs content */
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  a#landing-logo {
    background-image: url(img/virtual-cc-weblogo-white@2x.png);
    background-size: 111px 40px;
  }
}

nav.landing {
  float: right;
}

nav.landing .menu {
  float: left;
}

nav.landing li {
	position: relative;
	float: left;
}

nav.landing a {
  float: left;
  padding: 6px 0;
  margin: 35px 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

nav.landing ul li.current-menu-item a,
.no-touch nav.landing ul li.current-menu-item a:hover {
  border-bottom: 2px solid #fff;
}

.no-touch nav.landing ul li a:hover {
  border-bottom: 1px solid #fff;
}

.icon-menu {
  display: inline-block;
  width: 15px;
  height: 10px;
  margin-left: 10px;
  background: url(img/icon-white-menu.png) 0 0 no-repeat;
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .icon-menu {
     background-image: url(img/icon-white-menu@2x.png);
     background-size: 15px 10px;
  }
}

.icon-grey.icon-menu {
   background: url(img/icon-grey-menu.png) 0 0 no-repeat;
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .icon-grey.icon-menu {
     background-image: url(img/icon-grey-menu@2x.png);
     background-size: 15px 10px;
  }
}

a.nav-toggle {
  display: none;
  padding-right: 0 !important;
  margin-right: 0 !important;
}

#landing-content h1 {
  margin-bottom: 15px;
  font-size: 32px;
  line-height: 38px;
  color: #444;
}

#landing-content .entry {
  float: left;
  margin-top: 240px;
  max-width: 50%;
  padding: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #444;
  background: #fff;
  border-radius: 2px;
  -moz-box-shadow:    0px 1px 5px 0px rgba(0,0,0,0.30);
  box-shadow:         0px 1px 5px 0px rgba(0,0,0,0.30);
}

#landing-content .carousel {
  float: right;
  max-width: 50%;
  padding: 0 5% 30px;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-align: center;
}

.carousel .slide {
  float: left;
  width: 100%;
}

#landing-content .rsDefault .rsBullet {
  width: 10px;
  height: 18px;
  text-align: center;
}

#landing-content .entry p {
  max-width: 80%;
  font-size: 16px;
  line-height: 24px;
}

#landing-content .entry .btn {
  margin-top: 5px;
}

#main {
  padding: 60px 0 120px;
}

#main .item  h1{
  text-align: left;
}

#main .item {
  max-width: 700px;
  margin: 0 auto;
}

.block {
  position: relative;
  float: left;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.block.odd,
section.odd { background: #f7f7f7; }
.block.even,
section.even { background: #fff; }

.block.block-center .container {
  position: relative;
  width: 80%;
  max-width: 540px;
}

.block.block-center .block-introduction {
  margin: 100px 0 0 0;
  text-align: center;
  font-size: 18px;
  line-height: 34px;
  color: #555;
}

.block.block-center .block-introduction p {
  font-size: 18px;
  line-height: 34px;
  color: #555;
}

.block.block-center {
  border-bottom: none;
}

.block.columns2 .entry { width: 100%; }

.block.columns2 .columns {
  float: left;
  width: 100%;
  column-count: 2;
  column-gap: 100px;
  -moz-column-count: 2;
  -moz-column-gap: 100px;
  -webkit-column-count: 2;
  -webkit-column-gap: 100px;
}

.block .entry {
  width: 350px;
  margin: 100px 0;
}

.block ul,
.block ol {
  list-style: disc;
  list-style-position:inside;
  padding-left: 20px;
  margin-bottom: 1.25em;
  font-size: 14px;
  line-height: 21px;
}

.block ol { list-style: decimal; list-style-position:inside;}

.block h2 {
  font-size: 24px;
  text-transform: uppercase;
}

.block-double { padding-top: 100px; }

.entry-half h2 { margin: 0 0 0.5em 0; }

.block-triple h2,
.block-quadruple h2 {
  margin: 100px 0 30px 0;
  text-align: center;
}

.block-quadruple h2 { margin-bottom: 40px; }

.block .entry-half {
  float: left;
  width: 49%;
  margin: 0 1% 100px 1%;
}

.block .entry-third {
  float: left;
  width: 32%;
  margin: 0 1% 100px 1%;
}

.block .entry-quadruple {
  position: relative;
  float: left;
  width: 47%;
  padding-left: 74px;
  margin: 0 3% 30px 3%;
}

.block .entry-half.first,
.block .entry-third.first,
.block .entry-quadruple.first {
  margin-left: 0;
}
.block .entry-half.last,
.block .entry-third.last,
.block .entry-quadruple.last {
  margin-right: 0;
}

.entry-third .icon {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
}

.entry-quadruple .icon {
  position: absolute;
  top: 15px !important;
  left: 0;
  right: inherit !important;
}

.entry-third a {
  padding-bottom: 6px;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  color: #5B91B7;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch .entry-third a:hover { border-bottom: 1px solid #5B91B7; }

.entry-third .icon img,
.entry-quadruple .icon img  {
  position: relative;
  top: inherit !important;
  right: inherit !important;
  display: inline-block;
  max-width: 54px !important;
}

.entry-quadruple .icon img { float: left; }


.block .entry-half .title,
.block .entry-third .title,
.block .entry-quadruple .title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #333;
}

.block .entry-half p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 300;
}

.block .entry-third p,
.block .entry-quadruple p {
  font-size: 12px;
  line-height: 21px;
  font-weight: 300;
}

.block.odd .entry { float: left; }
.block.even .entry { float: right; }

.block .entry a {
  font-weight: 700;
  color: #518ba3;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.block img {
  position: absolute;
  top: 85px;
  max-width: 25%;
}

.zpservices .block img{
	transform: none;
	left: auto;
	max-width: 50%;
}



.block.odd img { right: 0; }
.block.even img { left: 0; }

.block.bg-image { background: none; }

.block .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  background: #f7f7f7;
}

.block .container {
  z-index: 1;
}

.block .background img {
  max-width: none;
}

#latest {
  padding: 100px 0 75px;
}

.latest-column {
  float: left;
  width: 45%;
}

.latest-column:last-of-type {
  float: right;
}

#latest .column-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5em;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  text-transform: uppercase;
}

#tweet-canvas li {
  margin-bottom: 15px;
}

.tweet_text {
  float: left;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
}

.tweet_time{
  display: inline-block;
margin: 0 4px;
font-weight: 300;
font-size: 14px;
color: #555;
text-transform: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  padding: 40px 0;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  background: #282829;
  text-align: center;
  font-family: 'Merriweather', serif;
}

footer.corporate {
  height: 60px;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
}

footer .btn {
  width: 180px;
  height: 50px;
  margin-left: 45px;
  line-height: 50px;

  color: #fff !important;
  font-size: 16px;
  border-radius: 2px;
  background: #89BAE4;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
}

nav.footer-nav {
  float: left;
}

nav.footer-nav li {
  float: left;
  line-height: 58px;
  margin-right: 35px;
}

nav.footer-nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
}

#credits {
  float: right;
  line-height: 60px;
  font-size: 12px;
  font-weight: 300;
}

footer a { color: #fff; }

#credits img {
  display: inline-block;
  width: 38px;
  margin-left: 10px;
}

/* ==========================================================================
   CASES
   ========================================================================== */

#cases-introduction {
  padding-top: 150px;
}

.introduction {
  float: left;
  width: 40%;
  margin: 5px 0 0 20px;
}

.introduction .title {
  font-size: 24px;
  line-height: 30px;
}

.introduction .entry,
.introduction .entry p {
  font-size: 16px;
  line-height: 24px;
}

.cta-block {
  float: left;
  width: 40%;
  padding: 30px 0;
  margin-left: 10%;
  border-radius: 1px;
  background: #F5F7FA;
  border: 1px solid #E5E5E5;
  font-size: 21px;
  color: #555;
  line-height: 28px;
  text-align: center;
}

.cta-block .btn {
  margin-top: 20px;
}

#cases {
  padding: 70px 0 60px 0;
}

.item-case {
  float: left;
  width: 33.3333333333%;
  padding: 20px;
  border: 1px solid #fff;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch .item-case:hover {
  border: 1px solid #ddd;
}

.item-case .hover {
  position: absolute;
  bottom: -20px;
  left: 20px;
  opacity: 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch .item-case:hover .hover {
  bottom: 20px;
  opacity: 1;
}

.no-touch .item-case:hover .cover img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch .item-case:hover .cover img {
  opacity: .4;
}

.item-case .cover {
  float: left;
  width: 100%;
  height: 200px;
  margin-bottom: 15px;
  background: #0f2540;
}

.item-case .title {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #333;
}

.item-case .entry {
  font-size: 14px;
  line-height: 21px;
}

#case {
  padding: 40px 0 120px;
}

#case h1 {

}

#case .cover {
  float: left;
  width: 100%;
  height: 320px;
  margin-bottom: 40px;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
#about {
  border-bottom: 1px solid #e5e5e5;
}

#about-introduction {
  position: relative;
  width: 80%;
  max-width: 600px;
  margin: 100px auto 110px;
  font-size: 24px;
  line-height: 36px;
  text-align: left;
}

#about-introduction p:first-child {
  font-size: 24px;
  line-height: 36px;
  font-family: 'Roboto Condensed';
}

.zpservices #about-introduction p:first-child, .zpgolf #about-introduction p:first-child{
  font-size: 28px;
}

#about-introduction p {
  font-size: 18px;
  line-height: 32px;
}

#about .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #f7f7f7;
}

#team {
  padding: 80px 0 40px;
}

#about .container,
#team .container {
  max-width: 1020px;
}

#team-introduction {
  width: 50%;
  padding: 0 0 60px 20px;
}

#team h2 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 30px;
}

#team-items {
  float: left;
  width: 100%;
}

.team-item {
  float: left;
  width: 33.3333333333%;
  padding: 0 20px;
  margin-bottom: 40px;
}

.team-cover {
  margin-bottom: 15px;
}

.team-cover img {
  width: 100%;
}

.team-item .name {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: #333;
}

.team-item .function {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  line-height: 21px;
  color: #10263F;
}

.team-item .entry p {
  font-size: 14px;
  line-height: 21px;
}

.team-item .entry a {
  color: #326195;
}

/* ==========================================================================
   PRESS
   ========================================================================== */
.bankenverzekering #press-publications{
	min-height: 600px;
}

.article-floater{
	position:absolute;
	top: 0px;
	right: 0px;
	max-width: 49%;
	opacity:0;
	display:none;
	transition: all 0.5s;
}

.article-floater.visible{
	opacity: 1;
}


@media (max-width: 692px) {
	.article-floater{
		position:static;
		width: 100%;
	}
}

#press {
  padding: 90px 0 50px;
}

#press .introduction {
  margin: 5px 0 0 0;
}

#press-items,
#publication-items {
  float: left;
  width: 45%;
  padding-bottom: 80px;
}

#press-items { margin-right: 5%; }

#publication-items { margin-left: 5%; }

#press-items .title,
#publication-items .title {
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  color: #306097;
  text-transform: uppercase;
}

.article-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #e4e4e4;
    padding-bottom: 20px;
}

.article-item .article-title {
  font-size: 16px;
  font-weight: 400;
  color: #555;
}

.article-item:last-child {
    border-bottom: none;
}

.article-meta {
  font-size: 10px;
  font-weight: 600;
  color: #89BAE4;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
#services {
  border-bottom: 1px solid #e5e5e5;
}

#services-introduction {
  width: 80%;
  max-width: 600px;
  margin: 100px auto 110px;
  font-size: 24px;
  line-height: 36px;
}

#about-introduction.align-left,
#services-introduction.align-left {
  text-align: left;
  margin: 100px 7% 110px;
  max-width: 75%;
}

#about-introduction.align-center,
#services-introduction.align-center {
  text-align: center;
}

#services .background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  background: #F7F7F7;
}

#services-introduction p:first-child {
  font-size: 24px;
  line-height: 36px;
}

#services-introduction p {
  font-size: 16px;
  line-height: 24px;
}

#service-items {
  float: left;
  width: 100%;
  padding-bottom: 80px;
}

#service-items h2 {
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 30px;
}

.service-item {
  float: left;
  width: 33.3333333333%;
  padding: 0 20px;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 21px;
  cursor: pointer;
}

.service-item h3 {
  font-size: 14px;
  color: #333;
}

.service-item p {
  font-size: 14px;
  line-height: 24px;
}

/* ==========================================================================
   BLOG
   ========================================================================== */

#blog {
  padding-top: 60px;
}

#blog-items {
  float: left;
  width: 70%;
  border-right: 1px solid #e6e6e6;
}

#blog-sidebar {
  float: left;
  width: 30%;
  padding-left: 40px;
}

.sidebar-block {
  margin-bottom: 40px;
}

.sidebar-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #306097;
}

#blog-sidebar .item-blog-latest {
  margin-bottom: 15px;
}

#blog .item-blog {
  float: left;
  width: 100%;
  padding: 0 40px 40px 0 ;
  margin-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
}

#blog a:last-child .item-blog  {
  margin-bottom: 0;
}

#blog a:last-child .item-blog {
  border-bottom: none;
  padding-bottom: 0;
}

#blog .blog-cover {
  float: left;
  width: 100%;
  height: 250px;
  margin-bottom: 20px;
  background: #0f2540;
}

.blog-cover .hover {
  position: absolute;
  bottom: -20px;
  left: 20px;
  opacity: 0;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch #blog .item-blog:hover .hover {
  bottom: 20px;
  opacity: 1;
}

.blog-cover img {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.no-touch #blog .item-blog:hover .cover img {
  opacity: .4;
}

#blog .blog-meta-side {
  float: left;
  width: 22%;
  padding-right: 20px;
}

.written-by {
  display: inline-block;
  margin: 9px 0 8px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #306097;
}

#blog .blog-entry {
  float: left;
  width: 78%;
  margin: 0;
}

#blog-post {
  padding-top: 40px;
}

#case h1,
#blog-post h1,
#main h1 {
  float: left;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  font-size: 36px;
  line-height: 40px;
  font-weight: 300;
  color: #333;
}

#main .item-general {
  color: #777;
}

#main .item-general h1 {
  color: #333;
  font-weight: 700;
}

#main .item-general h2 {
}

#main .item-general p {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
}

#blog-post .blog-cover {
  float: left;
  width: 100%;
  height: 320px;
}

.blog-meta {
  position: relative;
  float: left;
  width: 100%;
  padding: 10px 0;
  margin-bottom: 40px;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Roboto Condensed', sans-serif;
  color: #89BAE4;
  border-bottom: 1px solid #E6E6E6;
  text-transform: uppercase;
}

.share-tools {
  position: absolute;
  top: 16px;
  right: 0;
}

.item-share {
  float: left;
  width: 14px;
  height: 14px;
  margin-left: 10px;
}

.item-share.forward {
  background: url(img/icon-forward.png) center center no-repeat;
}
.item-share.twitter {
  background: url(img/icon-twitter.png) center center no-repeat;
}
.item-share.linkedin {
  background: url(img/icon-linkedin.png) center center no-repeat;
}
.item-share.google-plus {
  background: url(img/icon-google-plus.png) center center no-repeat;
}
.item-share.facebook {
  background: url(img/icon-facebook.png) center center no-repeat;
}

@media
(-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .item-share.forward {
    background-image: url(img/icon-forward@2x.png);
    background-size: 14px auto;
  }
  .item-share.twitter {
    background-image: url(img/icon-twitter@2x.png);
    background-size: 14px auto;
  }
  .item-share.linkedin {
    background-image: url(img/icon-linkedin@2x.png);
    background-size: 14px auto;
  }
  .item-share.google-plus {
    background-image: url(img/icon-google-plus@2x.png);
    background-size: 14px auto;
  }
  .item-share.facebook {
    background-image: url(img/icon-facebook@2x.png);
    background-size: 14px auto;
  }
}

.author,
.date {
  display: inline-block;
  margin: 0 4px 0 0;
  font-weight: 400;
  font-size: 14px;
  color: #555;
  text-transform: none;
}

.blog-entry {
  width: 80%;
  margin: 40px auto 60px;
}

.blog-entry p {
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}

.blog-entry pre {
  font-size: 12px;
  line-height: 18px;
}

.inline-quote {
  float: left;
  width: 300px;
  margin: 5px 20px 20px -100px;

  color: #306097;
  font-size: 24px;
  line-height: 30px;
  font-weight: 400;
}

.inline-quote.left {
  float: left;
  margin: 5px 20px 20px -100px;
}

.inline-quote.right {
  float: right;
  margin: 5px -100px 20px 20px;
}

.blog-entry strong,
.blog-entry bold,
.blog-entry b {
  font-weight: 400;
}

#blog-latest {
  padding: 60px 0 40px;
  border-top: 1px solid #E6E6E6;
}

#blog-latest .section-title {
  padding: 0 10%;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  color: #306097;
}

#blog-latest .item-blog-latest {
  padding: 0 10%;
}

.item-blog-latest .title {
  font-weight: 400;
  font-size: 14px;
}

.item-blog-latest .blog-meta,
#tweet-canvas .blog-meta {
  padding: 5px 0;
  margin-bottom: 15px;
  border: none;
}

.wp-pagenavi {
  position: relative;
	clear: both;
	height: 40px;
	text-align: center;
	line-height: 40px;
}

.wp-pagenavi .pages { display: none; }

.wp-pagenavi .previouspostslink {
  position: absolute;
  top: 0;
  left: 0;
	padding: 0;
}

.wp-pagenavi .nextpostslink {
  position: absolute;
  top: 0;
  right: 40px;
	padding: 0;
}

.wp-pagenavi a, .wp-pagenavi span {
	padding: 0 10px;
}

.wp-pagenavi span.current {
	font-weight: 700;
	color: #326195;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

#map-canvas {
  float: left;
  width: 100%;
  height: 500px;
}

#contact {
  padding: 60px 0 110px;
}

#contact-details {
  float: left;
  width: 45%;
}

#contact-details h1 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 30px;
}

.contact-item {
  float: left;
  width: 50%;
  margin-bottom: 40px;
}

.contact-item .title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: #333;
}

#contact-form {
  float: right;
  width: 45%;
  font-family: 'Roboto Condensed', sans-serif;
}

.form-header {
  position: relative;
  float: left;
  width: 100%;
  padding: 15px;
  background: #F7F7F7;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
}

.form-header .title {
  font-size: 18px;
  font-weight: 400;
  color: #555;
}

.form-footer {
  float: left;
  width: 100%;
  padding: 15px;
  background: #F7F7F7;
  border: 1px solid #e5e5e5;
}

.form-row {
  position: relative;
  float: left;
  width: 100%;
}

.form-section.important {
  padding-top: 40px;
  border-top: 1px solid #e5e5e5;
}

.form-section.important p {
  font-size: 16px;
  font-weight: bold;
}

.form-field {
  position: relative;
  float: left;
  width: 100%;
  border: 1px solid #e5e5e5;
  border-bottom: 0;
  font-size: 14px;
}

section.hidden,
.form-section.hidden,
.form-field.hidden {
  display: none;
}

form[data-branche="overige"] #signup-submit { display: none; }
form[data-branche="overige"] #signup-submit-overige { display: block; }

.form-field-half { width: 50%; }

.form-field-half:first-child { border-right: none; }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="phone"],
.form-field textarea {
  float: left;
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 15px 15px 0px;
  border: none;
}

.form-field a {
  font-style: italic;
  color: #3987C9;
  border-bottom: 1px solid #3987C9;
}

.form-field .picker {
  top: 69px;
}

.form-field .picker .picker__box {
}

.form-field textarea {
  height: auto;
  padding: 20px 15px 0px 15px;
}

.float-label label {
  position: absolute;
  top: 13px;
  left: 15px;
  color: #999;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.float-label.filled label {
  top: 2px;
  color: #89BAE4;
  font-size: 9px;
  font-weight: 600;
}

.float-input {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.float-label.filled .float-input {
  background: #e6ecf2 !important;
}

.btn-submit {
  float: right;
  height: 40px;
  background: #5C5C5C;
  font-family: 'Roboto Condensed', sans-serif !important;
  color: #fff;
  border: none;
  border: 1px solid rgba(52,52,52,0.20);
  border-radius: 2px !important;
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  text-shadow: 0px 1px 1px rgba(0,0,0,0.10);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.no-touch .btn-submit:hover {
  background: #858585;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
}

.no-touch .btn-submit:active {
  background: #5C5C5C;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
}

.contact-form.loading .btn-submit {
  text-indent: -9999px;
  background-image: url(img/ajax-loader.gif);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
}

#notification-error {
  display: none;
  float: left;
  width: 100%;
  margin-top: 0;
  padding: 15px;
  background: #F2DEDE;
  border: 1px solid #B94A48;
  color: #B94A48;
  font-weight: 400;
}

#notification-success {
  display: none;
  float: left;
  width: 100%;
  margin-top: 0;
  padding: 15px;
  background: #F5F7FA;
  border: 1px solid #306097;
  color: #306097;
  font-weight: 400;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
#faq-nav {
  position: fixed;
  top: 188px;
  left: 50%;
  width: 33%;
  padding: 0 50px;
  margin-left: -9999px;
}

#faq-nav .title {
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  font-size: 14px;
  line-height: 36px;
  text-transform: uppercase;
}

#faq-nav a {
  margin-left: 10px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  font-size: 16px;
  font-weight: 700;
  line-height: 36px;
}

#faq-nav a.current-faq {
  border-bottom: 2px solid #76ACD1;
}

#faq-content {
  float: right;
  width: 67%;
}

#faq-content .title {
  padding-left: 50px;
  margin-bottom: 40px;
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  font-size: 36px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

#faq-content .item-general {
  padding-left: 50px;
  margin-bottom: 100px;
  border-left: 1px solid #e4e4e4;
}

#faq-content h1 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}

#faq-content h2 {
  font-family: 'Roboto Condensed', sans-serif;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 36px;
}


/* ==========================================================================
   SIGNUP
   ========================================================================== */

#submitting-screen {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background: url(img/white70.png);
  background: rgba(255,255,255,.7);
}

#submitting-screen .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16px 0 0 -16px;
  width: 32px;
  height: 32px;
  background: url(img/submit-loader.gif) center center no-repeat;
  background-size: 16px 16px;
}

body.submitting #submitting-screen { display: block; }

#signup-base {
  padding: 100px 0 0 0;
}

.bg-grey { background: #f7f7f7; }

#signup-introduction {
  float: left;
  width: 50%;
  margin-bottom: 40px;
}

#signup-introduction h1 {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.form-large .form-section {
  float: left;
  width: 100%;
  margin: 0 0 30px 0;
}

.no-margin {
  margin: 0 !important;
}

.form-large .form-row {
  float: left;
  width: 100%;
  margin: 0 0 10px 0;
}

.form-large .form-title,
.form-large h2.form-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  color: #333;
  font-size: 24px;
  margin-bottom: 20px;
}

.form-large .form-row p {
  float: left;
  max-width: 67.777777778%;
}

.form-large .form-field {
  border: none;
  padding: 0 5px;
}

.form-field.col-1 { width: 12.5%; }
.form-field.col-2 { width: 25%; }
.form-field.col-3 { width: 37.5%; }
.form-field.col-4 { width: 50%; }
.form-field.col-5 { width: 62.5%; }
.form-field.col-6 { width: 75%; }
.form-field.col-7 { width: 87.5%; }
.form-field.col-8 { width: 100%; }


.form-large .form-field > label,
.form-large span.label {
  float: left;
  width: 100%;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

.parsley-required, .parsley-pattern, .parsley-type, .parsley-nopastdate, .parsley-iban, .parsley-bic {
  float: left;
  margin-top: 5px;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
}

.visual-form-builder fieldset.zp-fieldset {
  background-color:transparent;
  border:none;
  margin:0px;
}

.visual-form-builder fieldset.zp-fieldset .vfb-legend {
  border-bottom:0px;
  padding: 0px;
}


.visual-form-builder fieldset.zp-fieldset .vfb-legend h3{
  text-transform: uppercase;
  font-weight:700;
  line-height: 40px;
  font-size: 36px;
  margin-bottom: 30px!important;
}


.visual-form-builder fieldset.zp-fieldset .vfb-item-instructions {
  font-size:13px;
  font-weight:300;
  line-height: 24px;
  margin-bottom: 20px!important;
}


.visual-form-builder fieldset.zp-fieldset div,.visual-form-builder fieldset.zp-fieldset ul {
  margin:0px!important;
}


.visual-form-builder fieldset.zp-fieldset .vfb-item-radio .vfb-span {
  padding-left:7px;
}

.visual-form-builder fieldset.zp-fieldset .vfb-item-radio label.vfb-choice {
  font-size: 14px;
  color: #777;
}

.visual-form-builder fieldset.zp-fieldset ul li {
  padding:0!important;
}


.visual-form-builder fieldset.zp-fieldset ul div.vfb-section-div {
  background-color:transparent;
  border:none;
  padding: 0px!important;
  margin-bottom:30px!important;
}


.visual-form-builder fieldset.zp-fieldset ul div.vfb-section-div h4 {
  display:none;
}

.visual-form-builder fieldset.zp-fieldset ul li.vfb-item label.vfb-desc {
  width: 100%;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-size: 14px;
  color: #333;
  font-weight: 400;
  font-family: 'Roboto Condensed', sans-serif;
}

.visual-form-builder fieldset.submit-fieldset {
	position: relative;
	float: left;
	margin-bottom: 20px;
	max-width: 67.7777777778%;
	padding: 20px;
	background: #f7f7f7;
	border: 1px solid #E5E5E5;
	width: 100%;
	max-width:67.77%;
}


.visual-form-builder fieldset.submit-fieldset h3 {
	display:none;
}

.visual-form-builder fieldset.submit-fieldset .vfb-item:first-child {
	width: 60%!important;
	content:"Test";
}

.visual-form-builder fieldset.zp-fieldset ul li.vfb-item input[type="text"],
.visual-form-builder fieldset.zp-fieldset ul li.vfb-item input[type="email"] {
  float: left;
  background:none;
  border-radius:0px;
  width: 100%;
  height: 40px;
  line-height: 14px;
  font-size: 14px;
  padding: 13px 12px;
  border: 1px solid #E5E5E5;
  -moz-box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.10);
  box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.10);
}

.visual-form-builder fieldset.zp-fieldset .vfb-submit {

/*	top: auto;*/
}


.visual-form-builder .vfb-item.vfb-item-instructions {
  position: relative;
  float: left;
  margin-bottom: 20px !important;
  padding: 20px !important;
  background: #f7f7f7 !important;
  border: 1px solid #E5E5E5 !important;
  width: 100%;
}


.form-large .form-field input[type="text"],
.form-large .form-field textarea {
  float: left;
  width: 100%;
  height: 40px;
  line-height: 14px;
  font-size: 14px;
  padding: 13px 12px;
  border: 1px solid #E5E5E5;
  -moz-box-shadow:    inset 0px 1px 1px 0px rgba(0,0,0,0.10);
  box-shadow:         inset 0px 1px 1px 0px rgba(0,0,0,0.10);
}

.form-large .form-field textarea {
  height: auto;
}

.form-large .form-field .radio-group {
  float: left;
  width: 100%;
  height: 40px;
  line-height: 40px;
}

.form-large .form-field .radio-group input[type="radio"] {
  margin-right: 8px;
}

.form-large .form-field .radio-group label {
  margin-right: 16px;
}

#signup-tabs {
  z-index: 1;
}

.form-large .tab-labels {
  float: left;
  width: 100%;
  border-left: 1px solid #e5e5e5;
}

.form-large .tab-label {
  position: relative;
  float: left;
  width: 150px;
  max-width: 20%;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  font-family: 'Roboto Condensed', sans-serif;
  background: #fcfcfc;
  text-align: center;
  border-top: 1px solid #e5e5e5;
  border-right: 1px solid #e5e5e5;
  cursor: pointer;
  font-weight: 400;
}

.form-large .tab-label.active {
  background: #fff;
  color: #3987C9;
}
.form-large .tab-label.active:after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  content: '';
}

.tab {
  display: none;
  border-top: 1px solid #e5e5e5;
}

.tab[data-tab="it"] {
  display: block;
}

.form-terms {
  position: relative;
  float: left;
  width: 100%;
  height: 300px;
  margin: 40px 0;
  background: #f7f7f7;
  border: 1px solid #E5E5E5;
  font-size: 12px;
  line-height: 18px;
  -moz-box-shadow:    inset 0px 1px 1px 0px rgba(0,0,0,0.10);
  box-shadow:         inset 0px 1px 1px 0px rgba(0,0,0,0.10);
  overflow-y: scroll;
}

.form-terms h3 {
  margin-bottom: 5px;
}

.form-terms p {
  float: none !important;
  max-width: none !important;
  font-size: 12px;
  line-height: 18px;
}

.form-terms ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 12px;
  line-height: 18px;
}

.form-terms ul ul {
  list-style: circle;
}

.form-terms-gradient {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 25px;
  background: url(img/terms-gradient.png) bottom left repeat-x;
}

.form-terms .inner {
  padding: 20px;
}

.form-terms .inner h3 {

}

.form-terms .inner p {
  max-width: 100%;
}

.radio-row,
.checkbox-row {
  float: left;
  width: 100%;
  height: 40px;
  line-height: 40px;
}

.radio-row label,
.checkbox-row label {
  margin-left: 8px;
}

.form-large .submit-row {
  position: relative;
  float: left;
  margin-bottom: 20px;
  max-width: 67.7777777778%;
  padding: 20px;
  background: #f7f7f7;
  border: 1px solid #E5E5E5;
}

.form-large #error {
  display: none;
  position: relative;
  float: left;
  margin-bottom: 20px;
  max-width: 67.7777777778%;
  padding: 20px;
  background: #F2DEDE;
  color: #B94A48;
  border: 1px solid #B94A48;
  font-size: 14px;
  line-height: 24px;
}

.submit-description {
  float: left;
  width: 60%;
  font-size: 14px;
  line-height: 24px;
}

.form-large input[type="submit"] {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 30%;
  margin-top: -29px;
  border-radius: 2px;
  background: #89BAE4;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.30);
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  line-height: 52px;
  text-align: center;
}

.form-large #signup-submit-overige .form-section {
  max-width: 67.7777777778%;
}

.form-large #signup-submit-overige input[type="submit"] {
  position: relative;
  top: inherit;
  right: inherit;
  float: left;
  margin: 0;
}

.form-meta p {
  color: #999;
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}

.payment-options .parsley-errors-list {
  display: none !important;
}

input.parsley-success,
select.parsley-success,
textarea.parsley-success {
  color: #3987C9;
  border: 1px solid #71a8d7 !important;
}

input.parsley-error,
select.parsley-error,
textarea.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}

.parsley-errors-list {
  margin: 2px 0 3px 0;
  padding: 0;
  list-style-type: none;
  font-size: 0.9em;
  line-height: 0.9em;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;

  transition: all .3s ease-in;
  -o-transition: all .3s ease-in;
  -ms-transition: all .3s ease-in;
  -moz-transition: all .3s ease-in;
  -webkit-transition: all .3s ease-in;
}

.parsley-errors-list.filled {
  opacity: 1;
}

/* ==========================================================================
   MODAL
   ========================================================================== */

#modal-background {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9998;
  background: url(img/white80.png);
  background: rgba(255,255,255,.8);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
}

.modal-container {
  width: 470px;
  margin: 0 auto;
}

.modal-content {
  float: left;
  width: 470px;
  height: 370px;
  margin-top: 50px;
  background: #fff;
  border: 1px solid #D9D9D9;
  -moz-box-shadow:    0px 2px 10px 0px rgba(0,0,0,0.15);
  box-shadow:         0px 2px 10px 0px rgba(0,0,0,0.15);
}

.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: url(img/modal-close.png) 0 0 no-repeat;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.submit-label {
  float: left;
  margin: 8px 0;
  font-size: 12px;
  font-weight: 400;
}

.btn-submit-blue {
  float: right;
  height: 40px;
  background: #326195;
  font-size: 12px !important;
  color: #fff;
  border: none;
  border: 1px solid rgba(52,52,52,0.20);
  border-radius: 2px !important;
  -moz-box-shadow:    0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         0px 1px 2px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  text-shadow: 0px 1px 1px rgba(0,0,0,0.10);
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.no-touch .btn-submit-blue:hover {
  background: #5B81AB;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         0px 2px 3px 0px rgba(0,0,0,0.30), inset 0px 2px 0px 0px rgba(255,255,255,0.20);
}

.no-touch .btn-submit-blue:active {
  background: #326195;
  border: 1px solid rgba(52,52,52,0.20);
  -moz-box-shadow:    inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
  box-shadow:         inset 0px 1px 1px 0px rgba(0,0,0,0.20), inset 0px -2px 0px 0px rgba(255,255,255,0.20);
}

.contact-form.loading .btn-submit-blue {
  text-indent: -9999px;
  background-image: url(img/ajax-loader.gif);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center center;
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */

/* just for the small screens */
@media screen and (max-width: 767px) {

  .only-mobile { display: block; }
  span.only-mobile { display: inline-block; }
  .not-mobile { display: none; }

  #loading-screen { display: none !important; }

  body { padding-top: 60px; }

  header {
    position: fixed; /* Fixed or absolute, based on nav height */
    height: 60px; /* same as padding-top from body */
  }

  nav.landing .menu,
  nav.primary .menu {
    display: none;
  }

  a.nav-toggle {
    display: block;
  }

  .page-template-template-front-page-php header { top: 780px; }
  .header-fixed header { top: 0; }

  /* FRONT PAGE */
  #landing { height: 780px; }

  #landing-header { height: 60px; }

  a#landing-logo { margin: 11px 0; }

  nav.landing a { margin: 15px 20px; }

  #landing-content .entry {
    width: 100%;
    max-width: 100%;
    margin: 20px 0 40px !important;
  }

  #landing-content .entry .btn {
    width: 80%;
    margin-top: 10px;
  }

  #landing-content .carousel {
    width: 100%;
    max-width: 100%;
    margin: 0  0 40px 0 !important;
  }

  .latest-column {
    width: 100%;
  }

  /* MODAL */
  .modal-container {
    width: 93.75%;
    max-width: 470px;
  }

  .modal-content { width: 100%; }

  /* FOOTER */
  footer .btn { margin: 20px 0 0 0; }

  /* BLOCKS */
  .block .entry {
    float: left;
    width: 100%;
    margin: 40px 0;
  }

  .block img {
    position: relative;
    float: left;
    top: 0 !important;
    max-width: 100%;
  }

  .block.columns2 .columns {
    column-count: 1;
    -moz-column-count: 1;
    -webkit-column-count: 1;
  }

  .block-double { padding-top: 50px; }

  .block-triple h2 {
    margin-top: 40px;
  }

  .block .entry-half {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .entry-half.last h2 {
    margin-top: 0;
  }

  .block .entry-third {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .block .entry-quadruple {
    width: 100%;
    height: auto !important;
    margin: 0 0 30px 0;
  }

  .block .entry-third img {
    float: none;
  }

  /* CASES */
  #cases-introduction { padding-top: 40px; }

  .introduction {
    width: 100%;
    margin: 0;
  }

  .cta-block {
    width: 100%;
    margin: 40px 0 0 0;
  }

  #cases { padding-top: 40px; }

  .item-case { width: 100%; }

  .inline-quote.left,
  .inline-quote.right {
    float: left;
    width: 100%;
    margin: 5px 0 20px 0;
    text-align: center;
  }

  /* ABOUT */
  #about-introduction {
    width: 80%;
    margin: 40px auto 40px;
    font-size: 16px;
    line-height: 24px;
  }

  #about-introduction p:first-child {
    font-size: 20px;
    line-height: 30px;
  }

  #about-introduction p {
    font-size: 16px;
    line-height: 24px;
  }

  #team-introduction {
    width: 100%;
  }

  .team-item {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .team-item:last-child { margin-bottom: 0; }

  /* PRESS */
  #press {
    padding: 40px 0 50px;
  }

  #press-items, #publication-items {
    width: 100%;
    padding-bottom: 40px;
    margin: 0;
  }

  /* SERVICES */
  #services-introduction {
    margin: 40px auto;
  }

  #services-introduction p {
    font-size: 16px;
    line-height: 24px;
  }

  #service-items { padding-bottom: 40px; }

  .service-item {
    width: 100%;
    padding: 0 20px;
  }

  .service-item:last-child { margin: 0; }

  /* BLOG */
  #blog { padding: 0; }

  #blog .container { width: 100%; }

  #blog-items {
    width: 100%;
    border: none;
  }

  #blog .item-blog {
    padding-right: 0;
    margin-bottom: 40px;
  }

  #blog .blog-meta-side { padding-left: 3.125%; }
  #blog .blog-entry { padding-right: 3.125%; }

  #blog-sidebar { display: none; }

  /* CONTACT */
  #map-canvas {
    height: 320px;
  }

  #contact { padding: 40px 0; }

  #contact-details {
    width: 100%;
  }

  #contact-form {
    float: left;
    width: 100%;
  }

  /* FAQ */
  #faq-nav {
    position: relative;
    top: inherit;
    left: inherit;
    float: left;
    padding: 0 0 50px 0;
    margin: 0 0 50px 0 !important;
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
  }

  #faq-content {
    float: left;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  #faq-content .title {
    padding: 0;
  }

  #faq-content .item-general {
    padding: 0;
    border: none;
  }

  /* SIGN UP */

  #signup-base {
    padding-top: 50px;
  }

  .form-large {

  }

  #signup-introduction {
    width: 100%;
  }

  .form-large .form-row p {
    max-width: 100%;
  }

  .form-field.col-1 { width: 25%; }
  .form-field.col-2 { width: 50%; }
  .form-field.col-3 { width: 75%; }
  .form-field.col-4 { width: 100%; }

  .form-large .tab-label {
    width: 100%;
    max-width: 100%;
  }

  .form-field.col-2.form-field-date {
    width: 100%;
  }

  .form-large .submit-row {
    max-width: 100%;
  }

  .form-large .submit-description {
    width: 100%;
  }

  .form-large input[type="submit"] {
    position: relative;
    float: left;
    top: inherit;
    right: inherit;
    width: 100%;
    max-width: 206px;
    margin-top: 15px;
  }

  .form-large #error {
    max-width: 100%;
  }

  .radio-row,
  .checkbox-row {
    position: relative;
    height: auto;
    line-height: 30px;
    margin: 5px 0;
  }

  .radio-row input,
  .checkbox-row input {
    position: absolute;
    left: 0;
    top: 4px;
  }

  .radio-row label,
  .checkbox-row label {
    float: left;
    padding-left: 18px;
    box-sizing: border-box;
  }

  footer.corporate {
    height: auto;
  }

  nav.footer-nav {
    width: 100%;
  }

  nav.footer-nav li {
    width: 100%;
    margin-right: 0;
    line-height: 40px;
  }

  #credits {
    width: 100%;
    text-align: center;
  }
}

/* medium screens and up */
@media screen and (min-width: 768px) {


}

/* tablet till small desktop */
@media screen and (min-width: 768px) and (max-width: 959px) {

  .radio-row,
  .checkbox-row {
    position: relative;
    height: auto;
    line-height: 30px;
    margin: 5px 0;
  }

  .radio-row input,
  .checkbox-row input {
    position: absolute;
    left: 0;
    top: 4px;
  }

  .radio-row label,
  .checkbox-row label {
    float: left;
    padding-left: 18px;
    box-sizing: border-box;
  }

}

/* desktops but not the big ones */
@media screen and (min-width: 960px) and (max-width: 1199px) {


}


/* just for the big screens */
@media screen and (min-width: 1200px) {


}

.breadcrumbs{
	clear:both;
	padding: 20px 0px;
}

.breadcrumbs * {
	letter-spacing: 0px !important;
}

.breadcrumbs .separator{
	display:inline-block;
	width: 7px;
	height: 14px;
	background-size:cover;
	background-image: url('/wp-content/uploads/sites/7/2015/04/separator.png');
	margin: 0px 10px;
	position:relative;
	top: 3px;
}

.edition-holder {
	width: 33.33%;
	float: left;
	min-height: 1px;
	margin-bottom: 25px;
}

.edition-row {
	margin-left: -30px;
	margin-right: -30px;
}

.edition {
	margin: 30px 30px;
}

.edition h4 {
	font-family: 'Roboto Condensed';
	font-weight:bold;
	font-size: 14px;
	color: #333333;
	letter-spacing: 0.11px;
	line-height: 14px;
	float: left;
}

.edition .btn-blue {
	width: 100%;
	margin-top: 15px;
	margin-bottom: 15px;
	box-shadow: none;
}

.download-infographic {
	font-family: Merriweather;
	font-size: 14px;
	color: #508BA2;
	letter-spacing: 0.25px;
	line-height: 24px
}

.downloadfa {
	float: left;
	margin-right: 10px;
	margin-top: 5px;
	box-shadow: none !important;
	width: 12px !important;
	height: 13px !important;
}

.edition img {
	width: 100%;
	height: auto;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.15);
}

#editions h1 {
	color: #333;
	font-weight: 700;
	text-align: left;
	margin-top: 35px;
	font-family: 'Roboto Condensed';
	font-weight: bold;
	font-size: 24px;
	color: #333333;
	letter-spacing: 0.2px;
	line-height: 30px;
}

.new-edition {
	background: rgba(75,146,181,0.05);
	border: 1px solid rgba(75,146,181,0.40);
	border-radius: 2px;
	font-family: RobotoCondensed-Regular;
	font-size: 14px;
	color: #4C93B5;
	float: right;
	padding: 3px;
  	margin-top: -9px;
	line-height: 19px;
}

.block-quintuple{
	padding: 100px 0px;
}
.block-quintuple h2{
	text-transform:none !important;
	font-weight: normal;
	text-align: center;
	font-size: 28px !important;
	line-height: 37px;
	color:#857DA1;
	margin-bottom: 30px;
}

.block-quintuple .entry-quintuple{
	width: 20%;
	text-align:center;
	float:left;
	font-size: 16px;
	line-height: 22px;
	color: #1A1718;
}

.block-quintuple .entry-quintuple img{
	position:static;
	margin-bottom: 10px;
}

.block-tent{
	padding: 50px 0px;
}

.zpacademy .block h2{
	font-size: 20px;
}

.block-tent, .block-quintuple, .block-ut{
	background: url('/wp-content/uploads/sites/7/2015/04/background-divider.png') !important;
	background-repeat:no-repeat !important;
	background-position: 50% -3px !important;
	background-size: 1102px 166px !important;
}

.block-tent h2{
	margin-top: 30px;
}

.block-tent .left{
	width: 70%;
	float:left;
	box-sizing: border-box;
	padding-right: 30px;
}

.block-tent .right{
	width: 30%;
	float:left;
}

.block-tent .right img{
	transform: none !important;
	position:static;
	max-width: 100%;
}

.block-tent .training-cats{
	width: 100%;
}

.block-tent .training-cats .tax-link{
	width: 25%;
	float:left;
}
.block-tent .training-cats .tax-link > span {
	background: #FFFFFF;
	border: 1px solid #D6D6D6;
	box-shadow: 0px 1px 1px 0px rgba(0,0,0,0.13);
	border-radius: 3px;
	display:table;
	width: calc(100% - 5px);
	height: 73px;
	margin: 5px;
	font-size: 12px;
	color: #857DA1;
	text-align: center;
}

.block-tent .training-cats .tax-link > span > span{
	display:table-row;
	height: 73px;
}
.block-tent .training-cats .tax-link > span > span > span{
	display:table-cell;
	vertical-align:middle;
	padding-left: 10px;
	padding-right: 10px;
}

.block-ut{
	padding: 50px 0px;
}
.block-ut .container > p{
	width: 70%;
}

.block-hf .background{
	background-color: #F7F4EF !important;
}


.block-hf img{
  width: 775px !important;
  top: auto !important;
  bottom: 0px !important;
  height: auto !important;
}

body.zpacademy{
	color: #1A1718;
}

.zpacademy .block{
	background-color: transparent !important;
}

.block-ih p{
	max-width: 300px;
	font-size: 14px !important;
	line-height: 26px !important;
}

.zpacademy .btn-primary, .zpacademy .btn-submit{
	color: #fff;
	font-weight: normal !important;
	height: 55px;
	text-transform:uppercase;
	line-height: 55px;
	font-size: 14px;
	border: 0px !important;
	box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.30);
}

.zpacademy .block-hf .btn-primary{
	color: #fff !important;
	background-color: #DE3B3B !important;
}

.zpacademy .block-hf .btn-primary:hover{
	color: #fff !important;
	background-color: #DE3B3B !important;
}

.zpacademy .btn-primary.btn-trans{
	border-color: #fff !important;
	background-color: rgba(0,0,0,0.3) !important;
}

@media screen and (max-width: 970px) {
	.edition-holder {
		width: 50%;
	}
	.edition-row {
		margin-left: 0;
		margin-right: 0;
	}
	#editions h1 {
		margin-left: 30px;
	}
}

@media screen and (max-width: 568px) {
	.edition-holder {
		width: 100%;
	}
	.edition {
		margin: 0;
	}
	#editions h1 {
		margin-left: 0;
	}
	.edition-row {
		margin-left: 0;
		margin-right: 0;
	}
}

.block-quintuple .entry-quintuple img{
	display:block;
	margin: 0px auto;
}

@media screen and (max-width: 990px) {
	.block-quintuple .entry-quintuple{
		width: 50%;
		margin-bottom: 20px;
	}

	.block-tent .training-cats .tax-link{
		width: 50%;
	}
}

@media screen and (max-width: 768px) {
	#contact-form{
		margin-top: 30px;
	}
	.block-quintuple .entry-quintuple img{
		padding-right: 5px;
		float:none !important;
	}

	.block-quintuple .entry-quintuple{
		width: 100%;
		text-align:center;
		margin-bottom: 20px;
	}
	.block-tent .training-cats .tax-link{
		width: 100%;
	}

}


#classes-lists h1{
	font-size: 24px;
	line-height: 32px;
}

#classes-lists .left{
	width: 80%;
	float:left;
	font-size: 16px;
	line-height: 24px;
}
#classes-lists .left .content {
	width: 80%;
}

#classes-lists .right{
	width: 20%;
	float:left;
}

.zpacademy .player-box {
	position:relative;
}
.zpacademy .player-box .star-icon{
  position: absolute;
  transform: none;
  width: 36px;
  display: block;
  top: 120px !important;
  left: calc(50%- 18px);
left: -webkit-calc(50% -  18px);
	right: auto !important;
  z-index: 1000;
}

.workshop.Light{
	color: #171717;
}
.workshop.Light h1{
	text-align:center;
	color: #171717 !important;
	font-size: 24px !important;
	line-height: 36px !important;
}
.workshop.Light p{
	text-align:center;
	color: #171717 !important;
	font-size: 16px !important;
	line-height: 24px !important;
	font-style: italic;
}

.classes-holder:last-child {
	margin-bottom: 30px;
}

.left-70{
	float: left;
	width: 60%;
}
 .left-70 p{
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.25px;
}

 .left-30{
	float:right;
	width: 35%;
	font-size: 16px;
	line-height: 28px;
	letter-spacing: 0.25px;
}
 .left-30 table{
	width: 100%;
}
.not-found .left-70{
	width: 55%;
}



.not-found{
	margin: 100px 0px;
}	

.not-found h1{
	font-family: "Roboto Condensed";
	font-weight: bold !important;
	font-size: 120px !important;
	line-height: 140px !important;
	letter-spacing: 0.3px;
	text-align:left !important;
	text-transform:none;
}

@media( max-width: 768px){
	 .left-70,
	 .left-30{
		width: 100%;
	}
	 .left-30 h2{
		margin-top: 20px;
	}
	
	.not-found{
		margin: 25px 0px;
	}
}

.not-found a{
	font-weight:bold;
}

.hex-out{
	width: 300px;
	height: 330px;
	margin: 0 auto;
	display:block;
	background-image: url('/wp-content/uploads/sites/2/2015/06/hex-out.png');
}

.hex-in{
    width: 200px;
    margin: 0px auto;
    text-align: center;
    padding: 57px 0px;
}



iframe.no-columns{
	position:absolute;
	top: 100px;
	right: 0px;
}		

p.no-columns{
	width: 40%;
}

#block0 .columns{
	-webkit-column-count: 1 !important;
	column-count: 1 !important;
}

@media(max-width: 768px;){

iframe.no-columns{
	position:static;
	top: 0px;
	right: 0px;
}		

p.no-columns{
	width: 100%;
}
}

.block ul ul{
	margin-bottom: 0px;
}


.bankenverzekering.data .block img{
	max-width: 35%;
}
.zpservices .block.odd .entry-quadruple img{
	transform: none !important;
}
.zpservices .block.odd .entry-third img{
	transform: none !important;
	left: auto !important;
	
}

.data #press-items{
	min-height: 1000px;
}

.wpcf7-form-control {
    float: left;
    background: none;
    border-radius: 0px;
    width: 100%;
    line-height: 14px;
    font-size: 14px;
    padding: 13px 12px;
    border: 1px solid #E5E5E5;
    -moz-box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.10);
    box-shadow: inset 0px 1px 1px 0px rgba(0,0,0,0.10);
	margin-bottom: 15px;
}

span.wpcf7-not-valid-tip {
	display: inline-block !important;
}

.apply-subsidy-container input[type="text"], .apply-subsidy-container input[type="email"], .apply-subsidy-container textarea {
	line-height: 20px !important;
}

#lang_sel{
	display: inline-block;
}

#lang_sel > ul > li > a {
	float:none;
	display:block;
}
#lang_sel > ul > li > a:hover {
	text-decoration: none !important;
	border-bottom: 0;
}
#lang_sel > ul > li > ul {
	display:none;
}
#lang_sel > ul > li:hover > ul {
	display:block;
	border: 1px solid #d4d4d4;
	margin-left: 27px;
	background: #fff;
	position:relative;
	margin-top: -10px;
}
	
#lang_sel > ul > li:hover > ul:after {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: '';
    display: inline-block;
    height: 12px;
    right: 14px;
    background: #fff;
    position: absolute;
    top: -6px;
    transform: rotate(-45deg);
    vertical-align: top;
    width: 12px;
    border-color: #d4d4d4;
}


#lang_sel > ul > li > ul li, #lang_sel > ul > li > ul a{
	float:none;
}

#lang_sel > ul > li > ul > li > a{
	padding: 10px;
	display:block;
}
#lang_sel > ul > li > a:after {
	display:block;
	border-style: solid;
	border-width: 1px 1px 0 0;
	content: '';
	display: inline-block;
	height: 0.45em;
	left: 0.15em;
	position: relative;
	top: 0.15em;
	transform: rotate(-45deg);
	vertical-align: top;
	width: 0.45em;

	top: 5px;
	transform: rotate(135deg);
	color: #00ACEF;
}
