/*******************************************************************************
 * style.scss
 *
 * This file shouldn't directly contain any SCSS code, instead it only serves to
 * combine the SCSS contained in other Sass partials through @import directives.
 *
 * BASE............Styling for common HTML and Drupal elements.
 * LAYOUT..........Styles for the page structure that contain components.
 * COMPONENTS......Components, their modifiers and sub-components.
 ******************************************************************************/
/*******************************************************************************
 * _utils.scss
 *
 * Sass offers come very useful features, these include variables functions and
 * mixins. Extensions such as Compass and Susy can also be used to provide extra
 * functions and mixins to be used throughout the theme. This file acts as a
 * single place for defining these things, which can then be accessed by
 * importing _utils.scss where required. The following should be defined in this
 * file:
 * - Custom Sass mixins for the theme.
 * - Custom Sass functions for the theme.
 * - Overriding the default variables provided by extensions such as Compass.
 * - Defining new variables for:
 *      - Colors.
 *      - Font sizes and families.
 *      - Layout and grid sizing.
 ******************************************************************************/
/*
==============================================
CSS3 ANIMATION CHEAT SHEET
==============================================

Made by Justin Aguilar

www.justinaguilar.com/animations/

Questions, comments, concerns, love letters:
justin@justinaguilar.com
==============================================
*/
/*
==============================================
slideDown
==============================================
*/
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  50% {
    transform: translateY(8%);
  }

  65% {
    transform: translateY(-4%);
  }

  80% {
    transform: translateY(4%);
  }

  95% {
    transform: translateY(-2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  65% {
    -webkit-transform: translateY(-4%);
  }

  80% {
    -webkit-transform: translateY(4%);
  }

  95% {
    -webkit-transform: translateY(-2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideUp
==============================================
*/
.slideUp {
  animation-name: slideUp;
  -webkit-animation-name: slideUp;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes slideUp {
  0% {
    transform: translateY(100%);
  }

  50% {
    transform: translateY(-8%);
  }

  65% {
    transform: translateY(4%);
  }

  80% {
    transform: translateY(-4%);
  }

  95% {
    transform: translateY(2%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(100%);
  }

  50% {
    -webkit-transform: translateY(-8%);
  }

  65% {
    -webkit-transform: translateY(4%);
  }

  80% {
    -webkit-transform: translateY(-4%);
  }

  95% {
    -webkit-transform: translateY(2%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
slideLeft
==============================================
*/
.slideLeft {
  visibility: visible !important;
}

@keyframes slideLeft {
  0% {
    transform: translateX(150%);
  }

  50% {
    transform: translateX(-8%);
  }

  65% {
    transform: translateX(4%);
  }

  80% {
    transform: translateX(-4%);
  }

  95% {
    transform: translateX(2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideLeft {
  0% {
    -webkit-transform: translateX(150%);
  }

  50% {
    -webkit-transform: translateX(-8%);
  }

  65% {
    -webkit-transform: translateX(4%);
  }

  80% {
    -webkit-transform: translateX(-4%);
  }

  95% {
    -webkit-transform: translateX(2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideRight
==============================================
*/
.slideRight {
  animation-name: slideRight;
  -webkit-animation-name: slideRight;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes slideRight {
  0% {
    transform: translateX(-150%);
  }

  50% {
    transform: translateX(8%);
  }

  65% {
    transform: translateX(-4%);
  }

  80% {
    transform: translateX(4%);
  }

  95% {
    transform: translateX(-2%);
  }

  100% {
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    -webkit-transform: translateX(-150%);
  }

  50% {
    -webkit-transform: translateX(8%);
  }

  65% {
    -webkit-transform: translateX(-4%);
  }

  80% {
    -webkit-transform: translateX(4%);
  }

  95% {
    -webkit-transform: translateX(-2%);
  }

  100% {
    -webkit-transform: translateX(0%);
  }
}

/*
==============================================
slideExpandUp
==============================================
*/
.slideExpandUp {
  animation-name: slideExpandUp;
  -webkit-animation-name: slideExpandUp;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease -out;
  visibility: visible !important;
}

@keyframes slideExpandUp {
  0% {
    transform: translateY(100%) scaleX(0.5);
  }

  30% {
    transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    transform: translateY(2%) scaleX(0.5);
  }

  50% {
    transform: translateY(0%) scaleX(1.1);
  }

  60% {
    transform: translateY(0%) scaleX(0.9);
  }

  70% {
    transform: translateY(0%) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleX(0.95);
  }

  90% {
    transform: translateY(0%) scaleX(1.02);
  }

  100% {
    transform: translateY(0%) scaleX(1);
  }
}

@-webkit-keyframes slideExpandUp {
  0% {
    -webkit-transform: translateY(100%) scaleX(0.5);
  }

  30% {
    -webkit-transform: translateY(-8%) scaleX(0.5);
  }

  40% {
    -webkit-transform: translateY(2%) scaleX(0.5);
  }

  50% {
    -webkit-transform: translateY(0%) scaleX(1.1);
  }

  60% {
    -webkit-transform: translateY(0%) scaleX(0.9);
  }

  70% {
    -webkit-transform: translateY(0%) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleX(0.95);
  }

  90% {
    -webkit-transform: translateY(0%) scaleX(1.02);
  }

  100% {
    -webkit-transform: translateY(0%) scaleX(1);
  }
}

/*
==============================================
expandUp
==============================================
*/
.expandUp {
  animation-name: expandUp;
  -webkit-animation-name: expandUp;
  animation-duration: 0.7s;
  -webkit-animation-duration: 0.7s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  visibility: visible !important;
}

@keyframes expandUp {
  0% {
    transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    transform: translateY(3%);
  }

  100% {
    transform: translateY(0%) scale(1) scaleY(1);
  }
}

@-webkit-keyframes expandUp {
  0% {
    -webkit-transform: translateY(100%) scale(0.6) scaleY(0.5);
  }

  60% {
    -webkit-transform: translateY(-7%) scaleY(1.12);
  }

  75% {
    -webkit-transform: translateY(3%);
  }

  100% {
    -webkit-transform: translateY(0%) scale(1) scaleY(1);
  }
}

/*
==============================================
fadeIn
==============================================
*/
.fadeIn {
  animation-name: fadeIn;
  -webkit-animation-name: fadeIn;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  visibility: visible !important;
}

@keyframes fadeIn {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }

  60% {
    transform: scale(1.1);
  }

  80% {
    transform: scale(0.9);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }

  60% {
    -webkit-transform: scale(1.1);
  }

  80% {
    -webkit-transform: scale(0.9);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

/*
==============================================
expandOpen
==============================================
*/
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
  animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }

  50% {
    transform: scale(0.95);
  }

  80% {
    transform: scale(1.05);
  }

  90% {
    transform: scale(0.98);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }

  50% {
    -webkit-transform: scale(0.95);
  }

  80% {
    -webkit-transform: scale(1.05);
  }

  90% {
    -webkit-transform: scale(0.98);
  }

  100% {
    -webkit-transform: scale(1);
  }
}

/*
==============================================
bigEntrance
==============================================
*/
.bigEntrance {
  animation-name: bigEntrance;
  -webkit-animation-name: bigEntrance;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  visibility: visible !important;
}

@keyframes bigEntrance {
  0% {
    transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes bigEntrance {
  0% {
    -webkit-transform: scale(0.3) rotate(6deg) translateX(-30%) translateY(30%);
    opacity: 0.2;
  }

  30% {
    -webkit-transform: scale(1.03) rotate(-2deg) translateX(2%) translateY(-2%);
    opacity: 1;
  }

  45% {
    -webkit-transform: scale(0.98) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  60% {
    -webkit-transform: scale(1.01) rotate(-1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  75% {
    -webkit-transform: scale(0.99) rotate(1deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  90% {
    -webkit-transform: scale(1.01) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(1) rotate(0deg) translateX(0%) translateY(0%);
    opacity: 1;
  }
}

/*
==============================================
hatch
==============================================
*/
.hatch {
  animation-name: hatch;
  -webkit-animation-name: hatch;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
  visibility: visible !important;
}

@keyframes hatch {
  0% {
    transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    transform: rotate(2deg) scaleY(1);
  }

  50% {
    transform: rotate(-2deg);
  }

  65% {
    transform: rotate(1deg);
  }

  80% {
    transform: rotate(-1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@-webkit-keyframes hatch {
  0% {
    -webkit-transform: rotate(0deg) scaleY(0.6);
  }

  20% {
    -webkit-transform: rotate(-2deg) scaleY(1.05);
  }

  35% {
    -webkit-transform: rotate(2deg) scaleY(1);
  }

  50% {
    -webkit-transform: rotate(-2deg);
  }

  65% {
    -webkit-transform: rotate(1deg);
  }

  80% {
    -webkit-transform: rotate(-1deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
  }
}

/*
==============================================
bounce
==============================================
*/
.bounce {
  animation-name: bounce;
  -webkit-animation-name: bounce;
  animation-duration: 1.6s;
  -webkit-animation-duration: 1.6s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes bounce {
  0% {
    transform: translateY(0%) scaleY(0.6);
  }

  60% {
    transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: translateY(0%) scaleY(0.6);
  }

  60% {
    -webkit-transform: translateY(-100%) scaleY(1.1);
  }

  70% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1.05);
  }

  80% {
    -webkit-transform: translateY(0%) scaleY(1.05) scaleX(1);
  }

  90% {
    -webkit-transform: translateY(0%) scaleY(0.95) scaleX(1);
  }

  100% {
    -webkit-transform: translateY(0%) scaleY(1) scaleX(1);
  }
}

/*
==============================================
pulse
==============================================
*/
.pulse {
  animation-name: pulse;
  -webkit-animation-name: pulse;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.7;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }

  50% {
    -webkit-transform: scale(1);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(0.95);
    opacity: 0.7;
  }
}

/*
==============================================
floating
==============================================
*/
.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(8%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes floating {
  0% {
    -webkit-transform: translateY(0%);
  }

  50% {
    -webkit-transform: translateY(8%);
  }

  100% {
    -webkit-transform: translateY(0%);
  }
}

/*
==============================================
tossing
==============================================
*/
.tossing {
  animation-name: tossing;
  -webkit-animation-name: tossing;
  animation-duration: 2.5s;
  -webkit-animation-duration: 2.5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@keyframes tossing {
  0% {
    transform: rotate(-4deg);
  }

  50% {
    transform: rotate(4deg);
  }

  100% {
    transform: rotate(-4deg);
  }
}

@-webkit-keyframes tossing {
  0% {
    -webkit-transform: rotate(-4deg);
  }

  50% {
    -webkit-transform: rotate(4deg);
  }

  100% {
    -webkit-transform: rotate(-4deg);
  }
}

/*
==============================================
pullUp
==============================================
*/
.pullUp {
  animation-name: pullUp;
  -webkit-animation-name: pullUp;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -webkit-transform-origin: 50% 100%;
}

@keyframes pullUp {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullUp {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
pullDown
==============================================
*/
.pullDown {
  animation-name: pullDown;
  -webkit-animation-name: pullDown;
  animation-duration: 1.1s;
  -webkit-animation-duration: 1.1s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  -webkit-transform-origin: 50% 0%;
}

@keyframes pullDown {
  0% {
    transform: scaleY(0.1);
  }

  40% {
    transform: scaleY(1.02);
  }

  60% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(0.98);
  }

  80% {
    transform: scaleY(1.01);
  }

  100% {
    transform: scaleY(1);
  }
}

@-webkit-keyframes pullDown {
  0% {
    -webkit-transform: scaleY(0.1);
  }

  40% {
    -webkit-transform: scaleY(1.02);
  }

  60% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(0.98);
  }

  80% {
    -webkit-transform: scaleY(1.01);
  }

  100% {
    -webkit-transform: scaleY(1);
  }
}

/*
==============================================
stretchLeft
==============================================
*/
.stretchLeft {
  animation-name: stretchLeft;
  -webkit-animation-name: stretchLeft;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  -webkit-transform-origin: 100% 0%;
}

@keyframes stretchLeft {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchLeft {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

/*
==============================================
stretchRight
==============================================
*/
.stretchRight {
  animation-name: stretchRight;
  -webkit-animation-name: stretchRight;
  animation-duration: 1.5s;
  -webkit-animation-duration: 1.5s;
  animation-timing-function: ease-out;
  -webkit-animation-timing-function: ease-out;
  transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  -webkit-transform-origin: 0% 0%;
}

@keyframes stretchRight {
  0% {
    transform: scaleX(0.3);
  }

  40% {
    transform: scaleX(1.02);
  }

  60% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(0.98);
  }

  80% {
    transform: scaleX(1.01);
  }

  100% {
    transform: scaleX(1);
  }
}

@-webkit-keyframes stretchRight {
  0% {
    -webkit-transform: scaleX(0.3);
  }

  40% {
    -webkit-transform: scaleX(1.02);
  }

  60% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(0.98);
  }

  80% {
    -webkit-transform: scaleX(1.01);
  }

  100% {
    -webkit-transform: scaleX(1);
  }
}

/*******************************************************************************
 * _libraries.scss
 *
 * All library imports should go in this file
 ******************************************************************************/
/*******************************************************************************
 * _variables.scss
 *
 * All variable declarations should go in this file
 ******************************************************************************/
/* Colors */
/* Text */
/* Fonts */
/* Menu */
/* Other */
/*******************************************************************************
 * _mixins.scss
 *
 * All mixin declarations should go in this file
 ******************************************************************************/
/*******************************************************************************
 * _base.scss

 * Base styles define the default look for HTML and common Drupal elements.
 *
 * These rules will generally be made up of element selectors for HTML elements
 * such as headings, paragraphs and lists. Common Drupal elements such as form
 * items, collapsible fieldsets and messages should be included in this partial.
 *
 * The styleguide module (http://drupal.org/project/styleguide) gives you a good
 * overview of Drupals common elements for styling. By setting a solid baseline
 * before adding any more specific customisations you ensure that as any new
 * features are added they will be correctly styled without any extra work.
 ******************************************************************************/
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

html,
body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}
html a,
body a {
  color: #006699;
  text-decoration: none;
}
html a:hover,
body a:hover {
  text-decoration: underline;
}
html p,
body p {
  margin: 0 0 12px 0;
}

header a,
footer a {
  color: #ffffff;
  text-decoration: none;
}
header a:hover,
footer a:hover {
  text-decoration: underline;
}

/*******************************************************************************
 * _layout.scss
 *
 * The styling of the major regions (usually, but not necessarily Drupal
 * regions) that components will be placed within. Layout styles for the theme's
 * components should not be placed here and should instead be kept with the
 * relevant SCSS for that component.
 *
 * Only used this for non-dimensional styling. Dimensional styling is done in
 * the layouts folder.
 ******************************************************************************/
/* Component specific overrides */
/*******************************************************************************
 * _footer.scss
 *
 * The styling of the footer region.
 ******************************************************************************/
footer {
  display: none;
}

@media (min-width: 44em) {
  footer {
    display: block;
  }
  footer.l-footer {
    max-width: 100%;
    background-color: #006699;
    border-top: solid 30px #154371;
  }
  footer.l-footer .inner {
    margin-bottom: 0;
  }
  footer.l-footer .inner .l-region--footer {
    margin: none;
  }
  footer.l-footer .inner .l-region--footer p {
    font-size: 12px;
    padding: 20px 0 20px 0;
  }
  footer.l-footer .inner .l-region--footer p a {
    color: #cccccc;
  }
  footer.l-footer .inner .l-footer-first {
    clear: both;
    height: auto;
    display: block;
    padding: 20px 0 20px 0;
  }
  footer.l-footer .inner .l-footer-second {
    clear: both;
    height: auto;
    display: block;
    padding: 20px 0 20px 0;
  }
  footer.l-footer .inner nav {
    width: 24.05063%;
    float: right;
    margin-right: 0;
  }
  footer.l-footer .inner nav .menu .leaf {
    list-style-type: none;
    list-style-image: none;
  }
  footer.l-footer .inner nav .menu .leaf a {
    color: #cccccc;
  }
  footer.l-footer .inner nav .menu .leaf a.active {
    color: #cccccc;
  }
  footer.l-footer .inner nav .menu .leaf.first {
    color: white;
    font-weight: bold;
  }
  footer.l-footer .inner nav .menu .leaf.first a {
    color: white;
  }
  footer.l-footer .inner nav .menu li {
    font-size: 12px;
  }
}
/*******************************************************************************
 * _header.scss
 *
 * The styling of the header region.
 ******************************************************************************/
header.l-header {
  max-width: 100%;
  background-color: #006699;
}
header.l-header #header {
  position: static;
  background-color: #006699;
  height: 60px;
}
header.l-header .image {
  background-image: url("../images/header_notfront.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
header.l-header .block--sdu-sdu-header-default .inner {
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.42);
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
}
header.l-header .block--sdu-sdu-header-default .inner h1 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 33px;
  line-height: 36px;
  color: #006699;
  font-weight: "700";
  color: white;
  padding: 20px 10px 20px 10px;
}
header.l-header .block--sdu-sdu-header-default .inner h1 a {
  color: white;
  font-size: 21px;
  line-height: 28px;
}
header.l-header .block--sdu-sdu-header-default .inner h1 a:hover {
  text-decoration: none;
}
header.l-header .block--sdu-sdu-header-default .inner p {
  display: none;
}
header.l-header .pre {
  background-image: none;
  background-color: #ffffff;
}
header.l-header .l-branding .ribbon {
  float: left;
  background-image: url("../images/ribbon-body-mobile.png");
  background-color: #006699;
  background-repeat: no-repeat;
  width: 70px;
  height: 60px;
}
header.l-header .l-branding .ribbon a {
  display: block;
  width: 70px;
  height: 60px;
}
header.l-header .l-branding .site-logo {
  float: left;
  width: 161px;
  margin: 16px 0 0 13px;
}
header.l-header .l-branding .site-logo img {
  width: 100%;
}

.bannerLeaderBoard {
  text-align: center;
}

@media (min-width: 44em) {
  header.l-header #header {
    height: 78px;
  }
  header.l-header .block--sdu-sdu-header-default .block__content {
    padding-top: 0;
  }
  header.l-header .block--sdu-sdu-header-default .inner h1 {
    font-size: 42px;
    padding: 30px 20px;
  }
  header.l-header .l-branding .ribbon {
    background-image: url("../images/ribbon-body-tablet.png");
    width: 80px;
    height: 78px;
  }
  header.l-header .l-branding .ribbon a {
    width: 80px;
    height: 78px;
  }
  header.l-header .l-branding .site-logo {
    width: 214px;
    margin: 21px 0 1px 40px;
  }
}
@media (min-width: 70em) {
  header.l-header {
    background-image: url("../images/bgnav.gif");
    background-repeat: repeat-x;
    background-position: 0px 150px;
  }
  header.l-header #header {
    background-image: url("../images/bgnav.gif");
    background-repeat: repeat-x;
    background-position: 0px 55px;
    height: 110px;
  }
  header.l-header .block--sdu-sdu-header-default .block__content {
    padding-top: 0px;
  }
  header.l-header .block--sdu-sdu-header-default .inner h1 {
    padding: 40px 30px;
  }
  header.l-header .l-branding {
    background-repeat: repeat-x;
    background-position: 0px 50px;
  }
  header.l-header .l-branding .ribbon {
    background-image: url("../images/ribbon-body.png");
    width: 100px;
    height: 110px;
  }
  header.l-header .l-branding .ribbon a {
    width: 100px;
    height: 110px;
  }
  header.l-header .l-branding .site-logo {
    float: left;
    margin: 7px 0 0 40px;
  }
  header .pre .ribbon {
    background: white url("../images/ribbon-top.jpg") bottom center no-repeat;
    background-repeat: no-repeat;
    width: 100px;
    height: 95px;
    margin-right: 40px;
    float: left;
  }
}
/*******************************************************************************
 * _main.scss
 *
 * The styling of the main region.
 ******************************************************************************/
/*******************************************************************************
 * _region.scss
 *
 * The default region styling.
 ******************************************************************************/
/* Component specific overrides */
.l-content {
  padding: 20px 0 0 0;
}
.l-content strong, .l-content b {
  font-weight: bold;
}
.l-content .node__content ul, .l-content .node__content ol {
  padding-left: 15px;
  padding-bottom: 10px;
}
.l-content .node__content ul li, .l-content .node__content ol li {
  list-style: disc;
}
.l-content .node__content ol {
  padding-left: 25px;
}
.l-content .node__content ol li {
  list-style: decimal;
}
.l-content .node__content h2 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 18px;
  line-height: 26px;
  color: #006699;
  font-weight: "700";
}
.l-content .node__content h3, .l-content .node__content h4, .l-content .node__content h5, .l-content .node__content h6 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 16px;
  line-height: 26px;
  color: #666666;
  padding: 0 0 4px 0;
  margin: 0 0 8px 0;
  border-bottom: none;
  font-weight: "700";
}
.l-content .node__content h4, .l-content .node__content h5, .l-content .node__content h6 {
  font-size: 14px;
}
.l-content h1 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 33px;
  line-height: 36px;
  color: #006699;
  font-weight: "700";
  margin: 0 0 20px 0;
  font-size: 22px;
  line-height: 26px;
}
.l-content table {
  width: 100%;
}
.l-content table.sticky-header thead tr th {
  padding: 5px;
}
.l-content table.kantoren_overzicht thead tr th {
  padding: 5px;
}
.l-content table.kantoren_overzicht tr td {
  vertical-align: top;
  padding: 5px;
}
.l-content a.read-more {
  background-image: url("../images/arrow.png");
  background-repeat: no-repeat;
  width: 14px;
  height: 11px;
  position: absolute;
  margin-left: 5px;
  margin-top: 4px;
  color: transparent;
  overflow: hidden;
  text-decoration: none;
  text-indent: -9999px;
  line-height: 0;
}

@media (min-width: 44em) {
  .l-content {
    padding: 20px 0 40px 0;
  }
  .l-content h1 {
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 33px;
    line-height: 36px;
    color: #006699;
    font-weight: "700";
  }

  .front .l-content {
    padding: 0;
  }
}
@media (min-width: 70em) {
  .l-content {
    padding: 20px 0 40px 0;
  }
  .l-content h1 {
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 33px;
    line-height: 36px;
    color: #006699;
    font-weight: "700";
  }
}
/*******************************************************************************
 * _help.scss
 *
 * The styling of the help region.
 ******************************************************************************/
/*******************************************************************************
 * _highlighted.scss
 *
 * The styling of the highlighted region.
 ******************************************************************************/
.l-region--navigation {
  width: 100%;
  position: relative;
}
.l-region--navigation nav {
  position: absolute;
  right: 0;
  top: 60px;
  width: 100%;
}

#header {
  margin-right: 0;
  padding-right: 0;
}

.l-region--navigation {
  z-index: 999;
  right: 0;
  top: 0;
}
.l-region--navigation #block-search-form {
  float: right;
  display: none;
  position: relative;
  width: 100%;
}
.l-region--navigation #block-search-form input[type="text"] {
  padding: 0;
  margin: 0;
  width: 150px;
  border: none;
  background: #ffffff;
  padding: 0 25px 0 10px;
  width: 100%;
  height: 46px;
  font-size: 24px;
  font-family: "Open Sans Condensed", "sans-serif";
  color: #006699;
}
.l-region--navigation #block-search-form input[type="submit"] {
  height: 32px;
  width: 32px;
  border: none;
  background: transparent url("../images/search-icon.png") no-repeat center;
  cursor: pointer;
  color: transparent;
  text-indent: -99999px;
  position: absolute;
  right: 6px;
  top: 6px;
  background-size: contain;
}
.l-region--navigation nav {
  background-color: #006699;
  font-family: "Open Sans Condensed", "sans-serif";
}
.l-region--navigation nav.mainmenu, .l-region--navigation nav#block-menu-menu-rs-social-menu, .l-region--navigation nav#block-menu-menu-rs-navigatiemenu {
  visibility: hidden;
}
.l-region--navigation nav ul.menu {
  /* Injected social menu */
}
.l-region--navigation nav ul.menu.social li {
  border-bottom: none;
  float: left;
}
.l-region--navigation nav ul.menu.social li a.social {
  display: block;
  background-image: url("../images/social_icons.png");
  width: 21px;
  height: 21px;
  text-indent: -9999px;
}
.l-region--navigation nav ul.menu.social li a.linkedin {
  background-position: 0px 0px;
}
.l-region--navigation nav ul.menu.social li a.linkedin:hover {
  background-position: 0px 21px;
}
.l-region--navigation nav ul.menu.social li a.rss {
  background-position: -21px 0px;
}
.l-region--navigation nav ul.menu.social li a.rss:hover {
  background-position: -21px 21px;
}
.l-region--navigation nav ul.menu.social li a.twitter {
  background-position: -42px 0px;
}
.l-region--navigation nav ul.menu.social li a.twitter:hover {
  background-position: -42px 21px;
}
.l-region--navigation nav ul.menu li {
  border-bottom: thin solid #154371;
  list-style-type: none;
  list-style-image: none;
  padding: 5px 0 5px 10px;
}
.l-region--navigation nav ul.menu li a.active, .l-region--navigation nav ul.menu li a.active-trail {
  color: #a0d5ef;
}
.l-region--navigation nav ul.menu li a:hover {
  color: white;
}
.l-region--navigation nav ul.menu li ul li {
  border-bottom: none;
}
.l-region--navigation nav ul.menu li ul li a {
  font-family: "Open Sans Condensed", "sans-serif";
  font-weight: "300";
  font-size: 14px;
}
.l-region--navigation nav ul.menu li ul li a:hover {
  color: #a0d5ef;
}

.mobile-menu {
  cursor: pointer;
  width: 50px;
  float: right;
  margin: 22px 5px 0 0;
}
.mobile-menu .label {
  display: none;
}
.mobile-menu .search-menu {
  width: 21px;
  height: 21px;
  background: url("../images/magnifier-mobile.png");
  background-position: center center;
  float: left;
  margin-right: 7px;
}
.mobile-menu svg {
  float: left;
  height: 21px;
  width: 22px;
}
.mobile-menu svg * {
  fill: white;
}

.mobile-menu-peek {
  position: absolute;
  z-index: 998;
  background-color: black;
  opacity: 0.6;
  left: 0;
  display: none;
}

@media (min-width: 44em) {
  .l-region--navigation nav {
    top: 78px;
  }

  .mobile-menu {
    width: 150px;
    margin: 20px 25px 0 0;
  }
  .mobile-menu svg {
    float: left;
    height: 42px;
    width: 45px;
  }
  .mobile-menu .search-menu {
    width: 36px;
    height: 37px;
    background: url("../images/magnifier-tablet.png");
    background-position: center center;
    background-size: 100% 100%;
    float: left;
    margin: 3px 15px 0 0;
  }
  .mobile-menu .label {
    float: right;
    height: 16px;
    color: white;
    display: inline;
    line-height: 43px;
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 16px;
  }
}
@media (min-width: 70em) {
  .ie .l-region--navigation {
    background-position: 0px 4px;
  }

  .mobile-menu {
    display: none;
  }

  #header {
    margin-right: auto;
    padding-right: 5px;
  }

  .l-region--navigation {
    z-index: 999;
    right: 0;
    top: 0;
    width: 245px;
    display: block;
    position: relative;
    float: left;
    height: 60px;
    min-width: 890px;
    background-image: url("../images/bgnav.gif");
    background-repeat: repeat-x;
    background-position: 0px 5px;
  }
  .l-region--navigation #block-search-form {
    right: 0;
    top: 60px;
    position: absolute;
    width: auto;
  }
  .l-region--navigation #block-search-form input[type="text"] {
    width: 120px;
    height: 26px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
  }
  .l-region--navigation #block-search-form input[type="submit"] {
    height: 16px;
    width: 16px;
    top: 5px;
  }
  .l-region--navigation nav {
    right: initial;
    top: initial;
    width: inital;
    background-color: transparent;
    /* Hoofdmenu */
    /* Social menu */
    /* Utility menu */
  }
  .l-region--navigation nav.mainmenu {
    position: relative;
    top: 0px;
    width: 650px;
    margin: 2px 0 0 40px;
    visibility: visible;
  }
  .l-region--navigation nav.mainmenu ul {
    height: 0;
  }
  .l-region--navigation nav.mainmenu ul.social {
    display: none;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu {
    visibility: visible;
    position: absolute;
    top: 36px;
    right: 0px;
    width: 73px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul {
    margin: 0;
    height: 21px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li {
    margin: 0 0 0 5px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li:first-child {
    margin: 0;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a {
    display: block;
    width: 21px;
    height: 21px;
    text-indent: -9999px;
    background-image: url("../images/social_icons.png");
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.linkedin {
    background-position: 0px 0px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.linkedin:hover {
    background-position: 0px 21px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.rss {
    background-position: -21px 0px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.rss:hover {
    background-position: -21px 21px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.twitter {
    background-position: -42px 0px;
  }
  .l-region--navigation nav#block-menu-menu-rs-social-menu ul li a.twitter:hover {
    background-position: -42px 21px;
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu {
    visibility: visible;
    position: absolute;
    top: 2px;
    right: 0;
    color: #a0d5ef;
    width: 200px;
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu a {
    font-size: 14px;
    font-weight: normal;
    font-family: arial;
    color: #a0d5ef;
    letter-spacing: -0.4px;
    display: inline;
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu ul {
    float: right;
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu ul li {
    margin: 0 2px 0 2px;
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu ul li:first-child:before {
    content: "";
  }
  .l-region--navigation nav#block-menu-menu-rs-navigatiemenu ul li:before {
    content: " | ";
  }
  .l-region--navigation nav ul {
    height: 30px;
    position: relative;
  }
  .l-region--navigation nav ul.menu li {
    border-bottom: none;
    float: left;
    margin: 0 20px 0 0;
    padding: 0;
  }
  .l-region--navigation nav ul.menu li.expanded ul li {
    display: none;
  }
  .l-region--navigation nav ul.menu li.active ul, .l-region--navigation nav ul.menu li.active-trail ul {
    position: absolute;
    left: 10px;
  }
  .l-region--navigation nav ul.menu li.active ul li, .l-region--navigation nav ul.menu li.active-trail ul li {
    display: block;
  }
  .l-region--navigation nav ul.menu li.active ul li a, .l-region--navigation nav ul.menu li.active-trail ul li a {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
  }
  .l-region--navigation nav ul.menu li a {
    text-decoration: none;
    text-transform: lowercase;
    color: #e9e9e9;
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 16px;
    display: block;
    line-height: 30px;
  }
  .l-region--navigation nav ul.menu li a.active, .l-region--navigation nav ul.menu li a.active-trail {
    color: #a0d5ef;
  }
  .l-region--navigation nav ul.menu li a:hover {
    color: white;
  }
}
/*******************************************************************************
 * _sidebar-first.scss
 *
 * The styling of the first sidebar.
 ******************************************************************************/
/*******************************************************************************
 * _sidebar-second.scss
 *
 * The styling of the second sidebar.
 ******************************************************************************/
.l-region--sidebar-second {
  padding: 20px 0 0 0;
}

@media (min-width: 44em) {
  .l-region--sidebar-second {
    padding-top: 20px;
  }

  .front .l-region--sidebar-second {
    padding-top: 0px;
  }
}
/*******************************************************************************
 * _pages.scss
 *
 * Global pages styling
 ******************************************************************************/
/* Page specific overrides */
.node--pagina header {
  display: none;
}

.page-kantoren .l-main h1 {
  display: none;
}

.page-taxonomy .l-main h1 {
  display: none;
}
.page-taxonomy .l-main ul.pager {
  margin: 30px 0 30px 0;
}

.page-vacatures .l-main h1 {
  display: none;
}

/*******************************************************************************
 * _components.scss
 *
 * Imports more partials that contain full components (modules in SMACSS), their
 * sub-components and modifiers.
 *
 * Components are discrete parts of your page that should sit within the regions
 * of your layouts. You should try to abstract your components as much as
 * possible to promote reuse throughout the theme. Components should be flexible
 * enough to respond to any width and should never rely on context
 * (e.g. .sidebar-first .component) for styling. This allows modules to be
 * placed throughout the theme with no risk of them breaking.
 *
 * If you find you need to change the look of a component depending on it's
 * context you should avoid using context based classes at all costs. Instead it
 * is better to add another "modifier" class to the component to alter the
 * styling. Again, this promotes reuse.
 *
 * Sub-components are the individual parts that make up a component. As a
 * general rule, adding a class to target a sub-component is a much better
 * option than using descendant selectors or element selectors. In many cases
 * sub-components can be made more reusable by making them components in their
 * own right, so they can then be used within other components.
 *
 * Almost everything that doesn't belong in base should be made a component.
 * Here's some common examples throughout Drupal:
 *
 * - Blocks
 * - Content Types - For example, you may have a generic node component that
 *      contains sub-components for the submitted by line and links. Specific
 *      components can then be created for each content type to style the
 *      specifics of each. Finally, by using entity view modes you can easily
 *      apply modifications based on the .node-[view-mode] classes.
 * - Forms - For instance the log in form.
 * - Views - Each views output style could be made into a component, the content
 *       of each row should be provided my a view mode styled by it's component
 *       CSS. Exposed filter forms, views pagers and other views elements are
 *       also good candidates for components.
 ******************************************************************************/
/* Component specific overrides */
.bannerLeaderBoard {
  margin-top: 0px;
}
.bannerLeaderBoard img {
  max-width: 100%;
  height: auto;
}

.bannerRectangle {
  margin-bottom: 40px;
}
.bannerRectangle img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (min-width: 70em) {
  .bannerLeaderBoard {
    margin-top: 8px;
  }

  .bannerRectangle img {
    width: 336px;
    max-width: 336px;
  }
}
/*******************************************************************************
 * _blocks.scss
 *
 * Global blocks styling
 ******************************************************************************/
/* Block specific overrides */
.block--block-10 .block__content h2 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  padding: 0 0 4px 0;
  margin: 0 0 8px 0;
  border-bottom: 4px solid #cccccc;
  font-weight: "700";
}

.block--block-7 {
  clear: both;
  margin-top: 20px;
  text-align: center;
}

.block--block,
.block--show-kantoor-links,
.block--show-news-links {
  margin-bottom: 40px;
}
.block--block .block__title,
.block--show-kantoor-links .block__title,
.block--show-news-links .block__title {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  padding: 0 0 4px 0;
  margin: 0 0 8px 0;
  border-bottom: 4px solid #cccccc;
  font-weight: "700";
}
.block--block .block__content ul li,
.block--show-kantoor-links .block__content ul li,
.block--show-news-links .block__content ul li {
  margin: 0 0 8px 0;
}

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

.block--filter-vacatures #tabs {
  padding: 0px;
}
.block--filter-vacatures #tabs .tabs_header {
  float: left;
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.block--filter-vacatures #tabs .tabs_header .ui-state-active a {
  font-weight: bold;
}
.block--filter-vacatures #tabs .tabs_header .ui-state-default {
  float: left;
  margin-right: 10px;
  border: solid 1px #cccccc;
  border-bottom: 0px;
}
.block--filter-vacatures #tabs .tabs_header .ui-state-default a {
  display: block;
  padding: 5px 10px 5px 10px;
}
.block--filter-vacatures #tabs .tabs_header ul {
  float: left;
  padding: 0px;
  margin: 0px;
  -webkit-padding-start: 0;
}
.block--filter-vacatures #tabs .tabs_header ul li {
  float: left;
}
.block--filter-vacatures #tabs .tabs_content {
  border: solid 1px #cccccc;
  margin: 0px;
  padding: 10px;
}
.block--filter-vacatures #tabs ul.tabs_content {
  float: left;
  width: auto;
}
.block--filter-vacatures #tabs ul.tabs_content li {
  float: left;
  width: 50%;
}
.block--filter-vacatures #tabs ul.tabs_content li.empty-li {
  display: none;
}

.block--overfusie-rs-addthis .addthis_toolbox {
  line-height: 14px;
  margin: 20px 10px 20px 0;
}

.block--vacature-detail {
  margin-bottom: 40px;
}
.block--vacature-detail ul li {
  margin-bottom: 8px;
}
.block--vacature-detail ul li span {
  margin-right: 4px;
  width: 100%;
  font-weight: bold;
}

@media (min-width: 70em) {
  .block--vacature-detail ul li span {
    display: block;
    width: 100%;
    font-weight: bold;
  }
}
.block--views-archive-block h2 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  padding: 0 0 4px 0;
  margin: 0 0 8px 0;
  border-bottom: 4px solid #cccccc;
  font-weight: "700";
}
.block--views-archive-block ul {
  padding: 0;
}
.block--views-archive-block ul h3 {
  font-weight: bold;
  margin: 13px 0 0 0;
}
.block--views-archive-block ul li {
  margin-left: 16px;
  padding-left: 0;
  color: #006699;
  list-style: disc;
  text-indent: -5px;
}

#block-views-nodequeue-13-block {
  float: left;
  clear: both;
  z-index: 4;
  width: 100%;
  margin: 20px 0 20px 0;
}
#block-views-nodequeue-13-block .view-nodequeue-13 {
  float: left;
}
#block-views-nodequeue-13-block .view-nodequeue-13 ul {
  float: left;
}
#block-views-nodequeue-13-block .view-nodequeue-13 ul li {
  float: left;
  list-style: none;
  margin-right: 10px;
}
#block-views-nodequeue-13-block .view-nodequeue-13 ul li img {
  border: 1px solid #cccccc;
}

/*******************************************************************************
 * _forms.scss
 *
 * Global forms / fields styling
 ******************************************************************************/
/* Form specific overrides */
#views-exposed-form-vacatures-overview-page .views-widget-filter-title {
  margin-top: 20px;
  width: 50%;
  padding: 0;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-title input {
  width: 95%;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_plaatsnaam_tid {
  margin-top: 20px;
  width: 50%;
  padding: 0;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_plaatsnaam_tid select {
  width: 95%;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_kantoor_nid {
  clear: both;
  width: 50%;
  padding: 0;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_kantoor_nid select {
  width: 95%;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_beroep_tid {
  width: 50%;
  padding: 0;
}
#views-exposed-form-vacatures-overview-page .views-widget-filter-field_vac_beroep_tid select {
  width: 95%;
}
#views-exposed-form-vacatures-overview-page .views-submit-button {
  padding: 0;
  float: none;
  clear: both;
}
#views-exposed-form-vacatures-overview-page .views-submit-button .form-submit {
  margin-top: 8px;
}

/*******************************************************************************
 * _nodetypes.scss
 *
 * Global node / nodetypes styling
 ******************************************************************************/
/* Nodetype specific overrides */
.node--kantoor {
  margin-bottom: 20px;
}
.node--kantoor .field--name-field-afbeelding-kantoorgebouw,
.node--kantoor .field--name-field-afbeelding {
  float: left;
  margin: 0 10px 0 0;
}
.node--kantoor .field--name-body {
  clear: both;
}
.node--kantoor .field-name-field-kantoor-url {
  margin-top: 10px;
}

.node--lang-nieuws .links {
  margin: 20px 0 20px 0;
  text-align: right;
}
.node--lang-nieuws .links li {
  float: right;
}

@media (min-width: 44em) {
  .node--lang-nieuws .field--name-field-afbeelding {
    width: 17.72152%;
    float: right;
    margin-right: 0;
    float: left;
  }
  .node--lang-nieuws .field--name-body {
    width: 81.01266%;
    float: right;
    margin-right: 0;
    float: left;
  }
  .node--lang-nieuws .links {
    margin: 20px 0 20px 0;
    text-align: right;
  }
  .node--lang-nieuws .links li {
    float: right;
  }
}
/*******************************************************************************
 * _views.scss
 *
 * Global views styling
 ******************************************************************************/
/* View specific overrides */
.view-taxonomy-term,
.view-actueel-rs {
  /* Header Block */
}
.view-taxonomy-term .views-row,
.view-actueel-rs .views-row {
  margin-bottom: 40px;
  clear: both;
}
.view-taxonomy-term .views-row .views-field-title,
.view-actueel-rs .views-row .views-field-title {
  color: white;
  margin-bottom: 8px;
}
.view-taxonomy-term .views-row .views-field-title a,
.view-actueel-rs .views-row .views-field-title a {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  font-weight: "700";
  text-decoration: none;
}
.view-taxonomy-term .views-row .views-field-field-afbeelding,
.view-actueel-rs .views-row .views-field-field-afbeelding {
  display: table-cell;
  width: 64px;
  float: left;
  height: auto;
  margin: 0 20px 0 0;
}
.view-taxonomy-term .views-row .views-field-field-afbeelding img,
.view-actueel-rs .views-row .views-field-field-afbeelding img {
  width: 64px;
  height: 64px;
}
.view-taxonomy-term .views-row .views-field-body,
.view-actueel-rs .views-row .views-field-body {
  display: none;
}
.view-taxonomy-term.view-display-id-actueel_header .inner,
.view-actueel-rs.view-display-id-actueel_header .inner {
  background-color: rgba(0, 0, 0, 0.42);
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.5);
}
.view-taxonomy-term.view-display-id-actueel_header .inner h1,
.view-actueel-rs.view-display-id-actueel_header .inner h1 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 33px;
  line-height: 36px;
  color: #006699;
  font-weight: "700";
  color: white;
  padding: 20px 10px 20px 10px;
}
.view-taxonomy-term.view-display-id-actueel_header .inner h1 a,
.view-actueel-rs.view-display-id-actueel_header .inner h1 a {
  color: white;
  font-size: 21px;
  line-height: 28px;
}
.view-taxonomy-term.view-display-id-actueel_header .inner h1 a:hover,
.view-actueel-rs.view-display-id-actueel_header .inner h1 a:hover {
  text-decoration: none;
}
.view-taxonomy-term.view-display-id-actueel_header .inner h1 a.read-more,
.view-actueel-rs.view-display-id-actueel_header .inner h1 a.read-more {
  background-image: url("../images/arrow-white-small.png");
  background-repeat: no-repeat;
  background-position: center right;
  width: 30px;
  height: 47px;
  position: absolute;
  color: transparent;
  overflow: hidden;
  text-decoration: none;
  text-indent: -9999px;
  line-height: 0;
}
.view-taxonomy-term.view-display-id-actueel_header .inner p,
.view-actueel-rs.view-display-id-actueel_header .inner p {
  display: none;
}

@media (min-width: 44em) {
  .view-taxonomy-term,
  .view-actueel-rs {
    /* Header & Body */
    /* Header Block */
  }
  .view-taxonomy-term .views-row,
  .view-actueel-rs .views-row {
    margin-bottom: 40px;
  }
  .view-taxonomy-term .views-row .views-field-body,
  .view-actueel-rs .views-row .views-field-body {
    display: table-cell;
  }
  .view-taxonomy-term .views-row .views-field-field-afbeelding,
  .view-actueel-rs .views-row .views-field-field-afbeelding {
    width: 100px;
    margin: 0 40px 0 0;
  }
  .view-taxonomy-term .views-row .views-field-field-afbeelding img,
  .view-actueel-rs .views-row .views-field-field-afbeelding img {
    width: 100px;
    height: 100px;
  }
  .view-taxonomy-term.view-display-id-actueel_header,
  .view-actueel-rs.view-display-id-actueel_header {
    min-height: 110px;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 {
    display: block;
    padding: 40px 30px;
    margin: 0;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1 a,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 a {
    font-size: 42px;
    line-height: 48px;
    color: white;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1 a.read-more,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 a.read-more {
    background-image: url("../images/arrow-white-large.png");
    background-repeat: no-repeat;
    background-position: center right;
    width: 30px;
    height: 53px;
    position: absolute;
    color: transparent;
    overflow: hidden;
    text-decoration: none;
    text-indent: -9999px;
    line-height: 0;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner p,
  .view-actueel-rs.view-display-id-actueel_header .inner p {
    display: none;
  }
}
@media (min-width: 70em) {
  .view-taxonomy-term,
  .view-actueel-rs {
    /* Header & Body */
    /* Header Block */
  }
  .view-taxonomy-term .views-row,
  .view-actueel-rs .views-row {
    margin-bottom: 40px;
    clear: both;
  }
  .view-taxonomy-term .views-row .views-field-body,
  .view-actueel-rs .views-row .views-field-body {
    display: table-cell;
  }
  .view-taxonomy-term .views-row .views-field-body p,
  .view-actueel-rs .views-row .views-field-body p {
    padding-right: 20px;
  }
  .view-taxonomy-term .views-row .views-field-field-afbeelding,
  .view-actueel-rs .views-row .views-field-field-afbeelding {
    display: table-cell;
    width: 100px;
    float: left;
    height: auto;
    margin: 0 40px 0 0;
  }
  .view-taxonomy-term .views-row .views-field-field-afbeelding img,
  .view-actueel-rs .views-row .views-field-field-afbeelding img {
    width: 100px;
    height: 100px;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 {
    padding: 40px 30px 30px 30px;
    color: white;
    font-size: 48px;
    line-height: 55px;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1 a,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 a {
    color: white;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner h1 a.read-more,
  .view-actueel-rs.view-display-id-actueel_header .inner h1 a.read-more {
    display: none;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner p,
  .view-actueel-rs.view-display-id-actueel_header .inner p {
    padding: 0px 30px 30px 30px;
    display: table-cell;
    color: #ffffff;
    font-weight: bold;
    line-height: 22px;
    font-size: 14px;
    line-height: 20px;
  }
  .view-taxonomy-term.view-display-id-actueel_header .inner p a.read-more,
  .view-actueel-rs.view-display-id-actueel_header .inner p a.read-more {
    background-image: url("../images/arrow-white-small.png");
    background-repeat: no-repeat;
    background-position: center right;
    width: 19px;
    height: 22px;
    position: absolute;
    color: transparent;
    overflow: hidden;
    text-decoration: none;
    text-indent: -9999px;
    line-height: 0;
  }
}
.view-kantoren .view-header {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  font-weight: "700";
  margin: 0 0 40px 0;
}
.view-kantoren .view-content .views-row header {
  margin: 0 0 20px 0;
}
.view-kantoren .view-content .views-row header h1, .view-kantoren .view-content .views-row header h2 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  font-weight: "700";
  line-height: 28px;
}
.view-kantoren .view-content .views-row header h1 a, .view-kantoren .view-content .views-row header h2 a {
  color: #006699;
  text-decoration: none;
}
.view-kantoren .view-content .views-row .links--inline,
.view-kantoren .view-content .views-row .field--name-field-afbeelding,
.view-kantoren .view-content .views-row .field--name-body {
  display: none;
}

@media (min-width: 44em) {
  .view-kantoren .view-content .views-row {
    position: relative;
    clear: both;
    margin: 0 0 40px 0;
  }
  .view-kantoren .view-content .views-row header {
    display: block;
    padding-left: 140px;
    margin-bottom: 18px;
  }
  .view-kantoren .view-content .views-row header h2 {
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 24px;
    line-height: 26px;
    color: #006699;
    font-weight: "700";
    line-height: 28px;
  }
  .view-kantoren .view-content .views-row header h2 a {
    color: #006699;
    text-decoration: none;
  }
  .view-kantoren .view-content .views-row .field--name-field-afbeelding {
    display: block;
  }
  .view-kantoren .view-content .views-row .field--name-field-afbeelding img {
    position: absolute;
    top: 5px;
    display: table-cell;
    width: 100px;
    float: left;
    height: auto;
    margin: 0 40px 0 0;
  }
  .view-kantoren .view-content .views-row .field--name-body {
    display: block;
    padding-left: 140px;
  }
  .view-kantoren .view-content .views-row .links--inline li {
    float: none;
    padding-left: 140px;
    text-align: left;
  }
}
.view-opleidingen table {
  width: 100%;
}
.view-opleidingen table tr td {
  padding: 5px;
}

.view-archive .views-row,
.view-taxonomy-term .views-row {
  margin-bottom: 20px;
  position: relative;
  clear: both;
}
.view-archive .views-row .views-field-created,
.view-taxonomy-term .views-row .views-field-created {
  display: none;
}
.view-archive .views-row .views-field-field-afbeelding,
.view-taxonomy-term .views-row .views-field-field-afbeelding {
  width: 64px;
  height: 64px;
  display: table-cell;
}
.view-archive .views-row .views-field-title,
.view-taxonomy-term .views-row .views-field-title {
  padding-left: 80px;
  margin-bottom: 8px;
}
.view-archive .views-row .views-field-title h2,
.view-taxonomy-term .views-row .views-field-title h2 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  font-weight: "700";
  line-height: 28px;
}
.view-archive .views-row .views-field-title h2 a,
.view-taxonomy-term .views-row .views-field-title h2 a {
  text-decoration: none;
}
.view-archive .views-row .views-field-nothing .field-content img,
.view-taxonomy-term .views-row .views-field-nothing .field-content img {
  position: absolute;
  display: table-cell;
  width: 64px;
  float: left;
  height: auto;
  margin: 0 20px 0 0;
  top: 0;
}
.view-archive .views-row .views-field-nothing .field-content p,
.view-taxonomy-term .views-row .views-field-nothing .field-content p {
  display: none;
}
.view-archive .views-row .views-field-php,
.view-taxonomy-term .views-row .views-field-php {
  display: none;
}

@media (min-width: 44em) {
  .view-archive .views-row,
  .view-taxonomy-term .views-row {
    margin-bottom: 40px;
    position: relative;
    clear: both;
  }
  .view-archive .views-row .views-field-field-afbeelding,
  .view-taxonomy-term .views-row .views-field-field-afbeelding {
    width: 100px;
    height: 100px;
  }
  .view-archive .views-row .views-field-title,
  .view-taxonomy-term .views-row .views-field-title {
    padding-left: 140px;
    margin-bottom: 8px;
  }
  .view-archive .views-row .views-field-title h2,
  .view-taxonomy-term .views-row .views-field-title h2 {
    font-family: "Open Sans Condensed", "sans-serif";
    font-size: 24px;
    line-height: 26px;
    color: #006699;
    font-weight: "700";
    line-height: 28px;
  }
  .view-archive .views-row .views-field-title h2 a,
  .view-taxonomy-term .views-row .views-field-title h2 a {
    text-decoration: none;
  }
  .view-archive .views-row .views-field-nothing .field-content img,
  .view-taxonomy-term .views-row .views-field-nothing .field-content img {
    position: absolute;
    display: table-cell;
    width: 100px;
    float: left;
    height: auto;
    margin: 0 40px 0 0;
    top: 0;
  }
  .view-archive .views-row .views-field-nothing .field-content p,
  .view-taxonomy-term .views-row .views-field-nothing .field-content p {
    display: block;
    padding-left: 140px;
    color: #666666;
    font-size: 14px;
    line-height: 20px;
  }
  .view-archive .views-row .views-field-php,
  .view-taxonomy-term .views-row .views-field-php {
    display: block;
    margin: 8px 0 0 140px;
  }
}
.view-vacatures-overview .view-header h3 {
  font-family: "Open Sans Condensed", "sans-serif";
  font-size: 24px;
  line-height: 26px;
  color: #006699;
  padding: 0 0 4px 0;
  margin: 0 0 8px 0;
  border-bottom: 4px solid #cccccc;
  font-weight: "700";
}
.view-vacatures-overview .view-header h3 a {
  color: inherit;
  text-decoration: none;
}
.view-vacatures-overview .views-field a {
  display: inline;
  color: #006699;
}
.view-vacatures-overview .views-field span {
  display: block;
  margin: 0 0 8px 0;
}
.view-vacatures-overview table {
  border: 1px solid #cccccc;
  margin: 20px 0 20px 0;
}
.view-vacatures-overview table thead th {
  background-color: white;
  font-weight: bold;
}
.view-vacatures-overview table td, .view-vacatures-overview table th {
  vertical-align: top;
  padding: 10px 5px 10px 5px;
  border-bottom: 1px solid #cccccc;
}
.view-vacatures-overview table th:nth-of-type(2),
.view-vacatures-overview table td:nth-of-type(2),
.view-vacatures-overview table th:nth-of-type(3),
.view-vacatures-overview table td:nth-of-type(3),
.view-vacatures-overview table th:nth-of-type(4),
.view-vacatures-overview table td:nth-of-type(4) {
  display: none;
}
.view-vacatures-overview table tr.even {
  background-color: #ffffff;
}
.view-vacatures-overview table tr.odd {
  background-color: #e7eef5;
}

@media (min-width: 44em) {
  .view-vacatures-overview table th:nth-of-type(2),
  .view-vacatures-overview table td:nth-of-type(2),
  .view-vacatures-overview table th:nth-of-type(3),
  .view-vacatures-overview table td:nth-of-type(3),
  .view-vacatures-overview table th:nth-of-type(4),
  .view-vacatures-overview table td:nth-of-type(4) {
    display: table-cell;
  }
  .view-vacatures-overview table td, .view-vacatures-overview table th {
    padding: 10px 5px 10px 5px;
  }
}
/*******************************************************************************
 * _vocabularies.scss
 *
 * Global vocabulary / taxonomy term styling
 ******************************************************************************/
/* Vocabulary specific overrides */
/* No files to import found in vocabularies/* */
