@charset "UTF-8";
/*! PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none; }
  .pswp * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .pswp img {
    max-width: none; }

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--open {
  display: block; }

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab; }

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing; }

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; }

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0; }

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none; }

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden; }

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden; }

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0; }

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden; }

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222; }

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0; }

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC; }

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline; }
/*! PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*
	
	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
          transition: opacity 0.2s;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .pswp__button:focus,
  .pswp__button:hover {
    opacity: 1; }
  .pswp__button:active {
    outline: none;
    opacity: 0.9; }
  .pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0; }

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1; }

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url('../../frontend/lib/02_photoswipe/default-skin.png') 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px; }

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button,
  .pswp--svg .pswp__button--arrow--left:before,
  .pswp--svg .pswp__button--arrow--right:before {
    background-image: url('../../frontend/lib/02_photoswipe/default-skin.svg'); }
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none; } }

.pswp__button--close {
  background-position: 0 -44px; }

.pswp__button--share {
  background-position: -44px -44px; }

.pswp__button--fs {
  display: none; }

.pswp--supports-fs .pswp__button--fs {
  display: block; }

.pswp--fs .pswp__button--fs {
  background-position: -44px 0; }

.pswp__button--zoom {
  display: none;
  background-position: -88px 0; }

.pswp--zoom-allowed .pswp__button--zoom {
  display: block; }

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0; }

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden; }

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute; }

.pswp__button--arrow--left {
  left: 0; }

.pswp__button--arrow--right {
  right: 0; }

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: '';
  top: 35px;
  background-color: rgba(0, 0, 0, 0.3);
  height: 30px;
  width: 32px;
  position: absolute; }

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px; }

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px; }

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity; }

.pswp__share-modal--hidden {
  display: none; }

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
      -ms-transform: translateY(6px);
          transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
          transition: transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform; }
  .pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px; }
    .pswp__share-tooltip a:hover {
      text-decoration: none;
      color: #000; }
    .pswp__share-tooltip a:first-child {
      /* round corners on the first/last list item */
      border-radius: 2px 2px 0 0; }
    .pswp__share-tooltip a:last-child {
      border-radius: 0 0 2px 2px; }

.pswp__share-modal--fade-in {
  opacity: 1; }
  .pswp__share-modal--fade-in .pswp__share-tooltip {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0); }

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px; }

a.pswp__share--facebook:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none; }

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF; }
  a.pswp__share--facebook:hover:before {
    border-bottom-color: #3E5C9A; }

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF; }

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D; }

a.pswp__share--download:hover {
  background: #DDD; }

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #FFF;
  opacity: 0.75;
  padding: 0 10px; }

/*
	
	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px; }
  .pswp__caption small {
    font-size: 11px;
    color: #BBB; }

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC; }

.pswp__caption--empty {
  display: none; }

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden; }

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
          transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr; }

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px; }

.pswp__preloader--active {
  opacity: 1; }
  .pswp__preloader--active .pswp__preloader__icn {
    /* We use .gif in browsers that don't support CSS animation */
    background: url('../../frontend/lib/02_photoswipe/preloader.gif') 0 0 no-repeat; }

.pswp--css_animation .pswp__preloader--active {
  opacity: 1; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    -webkit-animation: clockwise 500ms linear infinite;
            animation: clockwise 500ms linear infinite; }
  .pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
            animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite; }

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0; }

.pswp--css_animation .pswp__preloader__cut {
  /* 
			The idea of animating inner circle is based on Polymer ("material") loading indicator 
			 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
		*/
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden; }

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0; }

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right; } }

@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg); } }

@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0); }
  50% {
    -webkit-transform: rotate(-140deg);
            transform: rotate(-140deg); }
  100% {
    -webkit-transform: rotate(0);
            transform: rotate(0); } }

/*
	
	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550; }

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%; }

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
          transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1); }

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible; }

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5); }

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: rgba(0, 0, 0, 0.3); }

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0; }

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0; }

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001; }

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none; }

.pswp__element--disabled {
  display: none !important; }

.pswp--minimal--dark .pswp__top-bar {
  background: none; }
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel,.owl-carousel .owl-item{-webkit-tap-highlight-color:transparent;position:relative}.owl-carousel{display:none;width:100%;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-touch-callout:none}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.no-js .owl-carousel,.owl-carousel.owl-loaded{display:block}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:pointer;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;padding:0!important;font:inherit}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{-ms-touch-action:pan-y;touch-action:pan-y;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:move;cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item .owl-lazy:not([src]),.owl-carousel .owl-item .owl-lazy[src^=""]{max-height:0}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url('../../frontend/lib/06_owl-carousel/owl.video.play.png') no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{-ms-transform:scale(1.3,1.3);transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}/*!
 * jQCloud 2.0.1
 * Copyright 2011 Luca Ongaro (http://www.lucaongaro.eu)
 * Copyright 2013 Daniel White (http://www.developerdan.com)
 * Copyright 2014 Damien "Mistic" Sorel (http://www.strangeplanet.fr)
 * Licensed under MIT (http://opensource.org/licenses/MIT)
 */
/* layout */
div.jqcloud {
  overflow: hidden;
  position: relative;
}

div.jqcloud span {
  padding: 0;
}

/* fonts */
div.jqcloud {
  font-family: "Helvetica", "Arial", sans-serif;
  font-size: 20px;
  line-height: normal;
}

div.jqcloud a {
  font-size: inherit;
  text-decoration: none;
}

div.jqcloud span.w10 { font-size: 240%; }
div.jqcloud span.w9 { font-size: 240%; }
div.jqcloud span.w8 { font-size: 240%; }
div.jqcloud span.w7 { font-size: 220%; }
div.jqcloud span.w6 { font-size: 200%; }
div.jqcloud span.w5 { font-size: 180%; }
div.jqcloud span.w4 { font-size: 160%; }
div.jqcloud span.w3 { font-size: 140%; }
div.jqcloud span.w2 { font-size: 120%; }
div.jqcloud span.w1 { font-size: 100%; }


@media screen and (max-width: 820px) {

  
  div.jqcloud span.w10 { font-size: 120%; }
  div.jqcloud span.w9 { font-size: 120%; }
  div.jqcloud span.w8 { font-size: 120%; }
  div.jqcloud span.w7 { font-size: 200%; }
  div.jqcloud span.w6 { font-size: 180%; }
  div.jqcloud span.w5 { font-size: 160%; }
  div.jqcloud span.w4 { font-size: 140%; }
  div.jqcloud span.w3 { font-size: 120%; }
  div.jqcloud span.w2 { font-size: 100%; }
  div.jqcloud span.w1 { font-size: 80%; }
  
}/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */.noUi-target,.noUi-target *{-webkit-touch-callout:none;-webkit-tap-highlight-color:transparent;-webkit-user-select:none;-ms-touch-action:none;touch-action:none;-ms-user-select:none;-moz-user-select:none;user-select:none;-moz-box-sizing:border-box;box-sizing:border-box}.noUi-target{position:relative;direction:ltr}.noUi-base{width:100%;height:100%;position:relative;z-index:1}.noUi-connect{position:absolute;right:0;top:0;left:0;bottom:0}.noUi-origin{position:absolute;height:0;width:0}.noUi-handle{position:relative;z-index:1}.noUi-state-tap .noUi-connect,.noUi-state-tap .noUi-origin{-webkit-transition:top .3s,right .3s,bottom .3s,left .3s;transition:top .3s,right .3s,bottom .3s,left .3s}.noUi-state-drag *{cursor:inherit!important}.noUi-base,.noUi-handle{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.noUi-horizontal{height:18px}.noUi-horizontal .noUi-handle{width:34px;height:28px;left:-17px;top:-6px}.noUi-vertical{width:18px}.noUi-vertical .noUi-handle{width:28px;height:34px;left:-6px;top:-17px}.noUi-target{background:#FAFAFA;border-radius:4px;border:1px solid #D3D3D3;box-shadow:inset 0 1px 1px #F0F0F0,0 3px 6px -5px #BBB}.noUi-connect{background:#3FB8AF;box-shadow:inset 0 0 3px rgba(51,51,51,.45);-webkit-transition:background 450ms;transition:background 450ms}.noUi-draggable{cursor:ew-resize}.noUi-vertical .noUi-draggable{cursor:ns-resize}.noUi-handle{border:1px solid #D9D9D9;border-radius:3px;background:#FFF;cursor:default;box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #EBEBEB,0 3px 6px -3px #BBB}.noUi-active{box-shadow:inset 0 0 1px #FFF,inset 0 1px 7px #DDD,0 3px 6px -3px #BBB}.noUi-handle:after,.noUi-handle:before{content:"";display:block;position:absolute;height:14px;width:1px;background:#E8E7E6;left:14px;top:6px}.noUi-handle:after{left:17px}.noUi-vertical .noUi-handle:after,.noUi-vertical .noUi-handle:before{width:14px;height:1px;left:6px;top:14px}.noUi-vertical .noUi-handle:after{top:17px}[disabled] .noUi-connect{background:#B8B8B8}[disabled] .noUi-handle,[disabled].noUi-handle,[disabled].noUi-target{cursor:not-allowed}.noUi-pips,.noUi-pips *{-moz-box-sizing:border-box;box-sizing:border-box}.noUi-pips{position:absolute;color:#999}.noUi-value{position:absolute;text-align:center}.noUi-value-sub{color:#ccc;font-size:10px}.noUi-marker{position:absolute;background:#CCC}.noUi-marker-large,.noUi-marker-sub{background:#AAA}.noUi-pips-horizontal{padding:10px 0;height:80px;top:100%;left:0;width:100%}.noUi-value-horizontal{-webkit-transform:translate3d(-50%,50%,0);transform:translate3d(-50%,50%,0)}.noUi-marker-horizontal.noUi-marker{margin-left:-1px;width:2px;height:5px}.noUi-marker-horizontal.noUi-marker-sub{height:10px}.noUi-marker-horizontal.noUi-marker-large{height:15px}.noUi-pips-vertical{padding:0 10px;height:100%;top:0;left:100%}.noUi-value-vertical{-webkit-transform:translate3d(0,50%,0);transform:translate3d(0,50%,0);padding-left:25px}.noUi-marker-vertical.noUi-marker{width:5px;height:2px;margin-top:-1px}.noUi-marker-vertical.noUi-marker-sub{width:10px}.noUi-marker-vertical.noUi-marker-large{width:15px}.noUi-tooltip{display:block;position:absolute;border:1px solid #D9D9D9;border-radius:3px;background:#fff;color:#000;padding:5px;text-align:center}.noUi-horizontal .noUi-tooltip{-webkit-transform:translate(-50%,0);transform:translate(-50%,0);left:50%;bottom:120%}.noUi-vertical .noUi-tooltip{-webkit-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;right:120%}.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: #F0F0F0;
}
.hljs,
.hljs-subst {
  color: #444;
}
.hljs-comment {
  color: #888888;
}
.hljs-keyword,
.hljs-attribute,
.hljs-selector-tag,
.hljs-meta-keyword,
.hljs-doctag,
.hljs-name {
  font-weight: bold;
}
.hljs-type,
.hljs-string,
.hljs-number,
.hljs-selector-id,
.hljs-selector-class,
.hljs-quote,
.hljs-template-tag,
.hljs-deletion {
  color: #880000;
}
.hljs-title,
.hljs-section {
  color: #880000;
  font-weight: bold;
}
.hljs-regexp,
.hljs-symbol,
.hljs-variable,
.hljs-template-variable,
.hljs-link,
.hljs-selector-attr,
.hljs-selector-pseudo {
  color: #BC6060;
}
.hljs-literal {
  color: #78A960;
}
.hljs-built_in,
.hljs-bullet,
.hljs-code,
.hljs-addition {
  color: #397300;
}
.hljs-meta {
  color: #1f7199;
}
.hljs-meta-string {
  color: #4d99bf;
}
.hljs-emphasis {
  font-style: italic;
}
.hljs-strong {
  font-weight: bold;
}
.swatch-box {
  text-align: center;
}
.swatch-item {
  display: inline-block;
  margin: 24px;
}
.swatch-item h5 {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
.swatch-item p {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 20px;
  color: rgba(46, 47, 51, 0.65);
}
.swatch {
  display: inline-block;
  height: 120px;
  width: 120px;
  border-radius: 120px;
  margin-bottom: 8px;
}
.swatch-bg-headings {
  background: #0d0d0e;
}
.swatch-bg-text {
  background: #313439;
}
.swatch-bg-link {
  background: #007eff;
}
.swatch-bg-link-hover {
  background: #ff3366;
}
.swatch-bg-button-primary {
  background: #007eff;
}
.swatch-bg-button-secondary {
  background: #313439;
}
.swatch-bg-inverted {
  background: #fff;
}
.swatch-bg-inverted {
  position: relative;
  bottom: -8px;
  margin-top: -8px;
  border: 8px solid #f8f8f8;
}
main h1,
#main h1,
main .molecule-mobilenav .mobilenav-slide a,
#main .molecule-mobilenav .mobilenav-slide a {
  margin-bottom: 48px;
}
main h1 + .subheading,
#main h1 + .subheading,
main .molecule-mobilenav .mobilenav-slide a + .subheading,
#main .molecule-mobilenav .mobilenav-slide a + .subheading {
  margin-top: -36px;
}
.subheading {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 48px;
  color: #666;
}
.form-centered {
  max-width: 400px;
  margin: auto;
  margin-bottom: 140px;
}
.form-subscribe {
  text-align: center;
  border-radius: 4px;
  border: 3px dashed rgba(0, 0, 0, 0.1);
  padding: 64px 40px;
  margin-bottom: 24px;
}
.form-subscribe h4 {
  margin-bottom: 0;
}
.form-subscribe p {
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
}
.form-subscribe form {
  max-width: 400px;
  margin: auto;
}
.form-subscribe #form-subscribe-success {
  max-width: 500px;
  margin: auto;
  font-size: 18px;
  line-height: 28px;
}
.form-subscribe #subscribe-email-validation-error {
  margin-bottom: 8px;
  font-size: 15px;
}
.form-subscribe .form-subscribe-twitter div {
  margin: 24px 0;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.3);
}
.form-subscribe .form-subscribe-twitter a {
  display: inline-block;
  padding-left: 21px;
  background: url('../../frontend/style/default/assets/css//assets/img/common/icon-twitter.png') no-repeat left 4px;
}
#intro {
  margin-top: 56px;
  margin-bottom: 140px;
  text-align: center;
  position: relative;
}
#intro:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 3px;
  top: -68px;
  left: 50%;
  margin-left: -20px;
  background: #ff3366;
}
#intro h6 {
  color: rgba(0, 0, 0, 0.5);
  font-weight: normal;
}
#intro h2 {
  font-weight: 900;
}
#intro h2 a {
  color: #3794de;
  text-decoration: none;
}
#intro h2 a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#intro p {
  font-size: 15px;
  margin: auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  #intro .col {
    margin-bottom: 48px;
  }
}
#action-buttons {
  margin-bottom: 64px;
  text-align: center;
}
#action-buttons button,
#action-buttons .button {
  margin: 0 4px;
}
#action-buttons p {
  margin: 0;
  margin-top: 20px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
#contents {
  counter-reset: count;
  max-width: 400px;
  margin: 24px 0 60px 0;
  padding: 32px;
  background: #fbfbfb;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
#contents.wide {
  max-width: none;
  margin-bottom: 24px;
}
#contents ol {
  margin: 0;
}
#contents li {
  line-height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-right: 24px;
  counter-increment: count;
}
#contents li:last-child {
  border-bottom: none;
}
#contents a {
  display: block;
  text-decoration: none;
  position: relative;
  padding-left: 24px;
  color: #259d92;
}
#contents a:before {
  position: absolute;
  left: 0;
  content: counter(count, decimal-leading-zero);
  font-size: 13px;
  color: rgba(0, 0, 0, 0.3);
}
#contents a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#main {
  margin: auto;
  max-width: 1128px;
}
body.docs #main,
body.grafs-index #main,
body.page-redactor-index #main {
  max-width: none;
}
body.grafs-index #footer,
body.page-redactor-index #footer {
  margin-top: 0;
}
body.docs #top {
  margin-bottom: 0;
}
body.page-account #hero {
  padding: 0;
}
body.page-account #hero h1,
body.page-account #hero .molecule-mobilenav .mobilenav-slide a {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 48px;
}
.content {
  max-width: 840px;
  margin: auto;
}
#redactor-intro-box {
  max-width: 920px;
  margin: auto;
  margin-bottom: 48px;
}
#redactor-features {
  text-align: center;
  margin: 136px auto;
  max-width: 1128px;
}
#redactor-features h3 {
  font-size: 21px;
  margin-top: 0;
  margin-bottom: 4px;
}
#redactor-features p {
  color: rgba(0, 0, 0, 0.5);
}
#redactor-buying-desc {
  max-width: 720px;
  margin: auto;
  margin-top: 40px;
  font-size: 13px;
  line-height: 20px;
}
#redactor-buying-desc p {
  color: rgba(0, 0, 0, 0.5);
}
#redactor-buy-box {
  text-align: center;
  margin: 116px auto;
  max-width: 1128px;
}
#redactor-cloud {
  text-align: center;
  margin: 116px auto;
  max-width: 1128px;
}
#redactor-cloud h2 {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 36px;
  color: rgba(0, 0, 0, 0.15);
}
#redactor-cloud ul {
  margin: 0;
  list-style: none;
}
#redactor-cloud li {
  list-style: none;
  display: inline;
  line-height: 44px;
  margin: 0 12px;
  white-space: nowrap;
}
#redactor-cloud li:nth-child(3n) {
  font-size: 1.25em;
  color: #666;
}
#redactor-cloud li:nth-child(4n) {
  font-size: 1.5em;
  color: #333;
}
#redactor-cloud li:nth-child(5n) {
  font-size: 1em;
  color: #999;
}
#redactor-cloud li:nth-child(7n) {
  font-size: 2.25em;
}
@media (max-width: 768px) {
  #redactor-cloud {
    display: none;
  }
}
#redactor-discover {
  text-align: center;
  background: #f8f8f8;
  padding-bottom: 96px;
}
#redactor-discover #redactor-discover-box {
  max-width: 1128px;
  margin: auto;
}
#redactor-discover h3 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  font-weight: 900;
  padding: 40px 0;
  margin-bottom: 60px;
  color: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#redactor-discover h4 {
  margin-top: 0;
}
#redactor-discover h4 a {
  font-size: 21px;
  color: #000;
}
#redactor-discover h4 a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.5);
}
#redactor-discover figure {
  margin-bottom: 0;
}
#redactor-discover .col {
  max-width: 340px;
}
#redactor-discover p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  #redactor-discover .col {
    max-width: none;
  }
  #redactor-discover p {
    padding: 0 24px;
  }
}
#grafs-matrix-box {
  padding: 0 20px;
  max-width: 1128px;
  margin: auto;
  margin-bottom: 80px;
}
#grafs-matrix-box .item {
  padding-top: 72px;
  text-align: center;
}
#grafs-matrix-box .item.first {
  padding-top: 24px;
}
#grafs-matrix-box h5 {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 8px;
}
#grafs-matrix-box p {
  max-width: 340px;
  margin: auto;
  margin-bottom: 32px;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.7);
}
#grafs-matrix-box .row p {
  max-width: 280px;
  margin-bottom: 40px;
}
#grafs-buy-box {
  padding: 0 20px;
  padding-bottom: 104px;
  max-width: 1128px;
  margin: auto;
  margin-top: 128px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07000000000000001);
}
#grafs-buy-box h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 72px;
}
#grafs-buy-box .button {
  height: 60px;
  padding-top: 20px;
  padding-left: 36px;
  padding-right: 36px;
  font-size: 19px;
  font-weight: 500;
}
#grafs-buy-box p.desc {
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.6);
}
#grafs-features {
  text-align: center;
  max-width: 1128px;
  margin: 88px auto 104px auto;
  padding: 0 20px;
}
#grafs-features figure {
  margin-bottom: 0;
}
#grafs-features h3 {
  margin-top: 0;
  font-size: 21px;
  line-height: 32px;
}
#grafs-features p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
}
#grafs-discover {
  text-align: center;
  background: #f8f8f8;
  padding-bottom: 96px;
}
#grafs-discover #grafs-discover-box {
  max-width: 800px;
  margin: auto;
}
#grafs-discover h3 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  font-weight: 900;
  padding: 40px 0;
  margin-bottom: 60px;
  color: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#grafs-discover h4 {
  margin-top: 0;
}
#grafs-discover h4 a {
  font-size: 21px;
  color: #000;
}
#grafs-discover h4 a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.5);
}
#grafs-discover figure {
  margin-bottom: 0;
}
#grafs-discover .col {
  max-width: 280px;
}
#grafs-discover p {
  font-size: 14px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  #grafs-discover .col {
    max-width: none;
  }
  #grafs-discover p {
    padding: 0 24px;
  }
}
.grafs-examples-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.grafs-examples-col {
  border-radius: 3px;
  background: #f8f8f8;
  padding: 32px;
  padding-bottom: 56px;
  width: 300px;
  margin: 0 16px;
  margin-bottom: 24px;
}
.grafs-examples-col figure {
  margin-bottom: 0;
}
.grafs-examples-col h4 {
  font-size: 17px;
  line-height: 28px;
  margin-top: 0;
}
.grafs-examples-col ul {
  list-style: none;
  margin: 0;
}
.grafs-examples-col ul li {
  font-size: 15px;
  line-height: 36px;
}
.grafs-examples-col ul a {
  display: block;
  color: #3794de;
  text-decoration: none;
}
.grafs-examples-col ul a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#grafs-example-header,
#grafs-example-content {
  max-width: 900px;
  margin: auto;
}
#grafs-example-header {
  margin-top: 72px;
  margin-bottom: 44px;
  text-align: center;
}
#grafs-example-header .tag {
  font-size: 13px;
  line-height: 24px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 8px;
}
#grafs-example-header .tag a {
  color: rgba(0, 0, 0, 0.6);
}
#grafs-example-header .tag a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
}
#grafs-example-header h1,
#grafs-example-header .molecule-mobilenav .mobilenav-slide a {
  font-size: 48px;
  line-height: 52px;
  font-weight: 900;
}
#path {
  font-size: 15px;
  margin-bottom: 12px;
}
#path a {
  color: #3794de;
}
#path a:hover {
  color: #000;
}
#path span {
  color: rgba(0, 0, 0, 0.2);
  font-size: 15px;
  display: inline-block;
  margin: 0 6px;
}
#path b {
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
}
#docs-main {
  display: flex;
}
#docs-main #side {
  width: 24%;
  padding: 28px 36px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
#docs-main #side nav li {
  font-size: 15px;
  line-height: 40px;
}
#docs-main #side nav li a {
  display: block;
  color: #707070;
  text-decoration: none;
}
#docs-main #side nav li a:hover {
  color: #ff3366;
  text-decoration: underline;
}
#docs-main #side nav span,
#docs-main #side nav li.active a {
  color: #ff3366;
  font-weight: bold;
}
#docs-main #side nav span:hover,
#docs-main #side nav li.active a:hover {
  text-decoration: none;
}
#docs-main #side nav h6 {
  border-top: 1px solid #eee;
  padding-top: 16px;
  margin-top: 8px;
  margin-bottom: 8px;
}
#docs-main #area {
  width: 76%;
  padding: 32px 64px 48px 64px;
}
#docs-main #area h1,
#docs-main #area .molecule-mobilenav .mobilenav-slide a {
  font-size: 36px;
  line-height: 40px;
  font-weight: 900;
  margin-bottom: 28px;
}
#docs-main #area h3 {
  font-size: 18px;
  line-height: 28px;
}
#docs-main #area .lead {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 24px;
}
#docs-main #area .doc-head {
  position: relative;
  margin-top: 24px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}
#docs-main #area .doc-head span {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: normal;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}
#docs-main #area .doc-head a {
  text-decoration: none;
  color: #000;
  display: block;
  font-size: 20px;
}
.chart-example {
  position: relative;
  margin-top: 44px;
  margin-bottom: 40px;
}
.chart-example.inverted {
  padding: 32px;
  background: #191d21;
}
.chart-example.inverted .chart-selector a {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.3);
}
.chart-example.inverted pre {
  color: rgba(255, 255, 255, 0.85);
  padding: 0;
  background: #191d21;
}
.chart-selector {
  text-align: center;
  font-size: 14px;
  margin-bottom: 24px;
}
.chart-selector a {
  display: inline-block;
  background: rgba(46, 196, 182, 0.05);
  border: 1px solid rgba(46, 196, 182, 0.25);
  border-radius: 40px;
  line-height: 28px;
  padding: 0 12px;
  color: #000;
  text-decoration: none;
  margin: 0 4px;
}
.chart-selector a:hover,
.chart-selector a.active {
  text-decoration: none;
  background: #2ec4b6;
  color: #fff;
  border: 1px solid transparent;
}
.chart-selector a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.chart-section-head {
  text-align: center;
  font-weight: 900;
  margin-top: 64px;
  margin-bottom: -16px;
  font-size: 16px;
  line-height: 28px;
}
#posts {
  list-style: none;
  margin: auto;
  margin-top: 48px;
  margin-bottom: 128px;
  max-width: 680px;
  text-align: center;
}
#posts li {
  margin-bottom: 40px;
}
#posts h2 {
  font-size: 22px;
  font-weight: normal;
  margin: 0;
  line-height: 28px;
}
#posts h2 a {
  color: #1eabf2;
  text-decoration: none;
}
#posts h2 a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#posts time {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
#post-box {
  max-width: 740px;
  margin: auto;
}
#post {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 40px;
}
#changelog {
  max-width: 820px;
  margin: auto;
  margin-bottom: 104px;
}
#changelog h3 {
  margin-bottom: 4px;
}
#changelog time {
  font-size: 11px;
  font-weight: bold;
  display: block;
  text-transform: uppercase;
  margin-bottom: 40px;
  color: rgba(0, 0, 0, 0.45);
}
#changelog .item {
  margin-bottom: 20px;
  background: #f8f8f8;
  padding: 40px;
}
#changelog ul {
  margin: 0;
  list-style: none;
}
#changelog li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eee;
}
#changelog li:last-child {
  border-bottom: none;
}
#changelog li .label {
  margin-right: 4px;
}
#kube-features {
  margin-top: 104px;
  text-align: center;
}
#kube-features h3 {
  margin-top: 0;
}
#kube-features .row:first-child {
  padding-bottom: 32px;
  margin-bottom: 64px;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.15);
}
#kube-features p {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
}
#kube-features .item {
  padding: 0 24px;
}
#kube-faq {
  max-width: 740px;
  margin: auto;
  font-size: 17px;
  line-height: 28px;
  margin-bottom: 104px;
  border-top: 1px solid rgba(0, 0, 0, 0.07000000000000001);
}
#kube-faq h2 {
  font-size: 24px;
  font-weight: 900;
  text-align: center;
  line-height: 32px;
  margin-top: 80px;
  margin-bottom: 40px;
}
#components {
  text-align: center;
}
#components.lists {
  text-align: left;
}
#components.lists .item {
  padding: 24px;
}
#components.lists .item:hover {
  background: #f8f8f8;
}
#components .start {
  font-size: 24px;
  line-height: 32px;
}
#components #search-box {
  padding: 24px;
  background: #ebf0f6;
  margin-bottom: 24px;
}
#components .item {
  background: #f8f8f8;
  padding: 68px 24px 60px 24px;
  margin-bottom: 20px;
}
#components .item:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  background: #fcfcfc;
}
#components figure {
  margin-bottom: 0;
}
#components h4 {
  font-size: 19px;
  margin-top: 0;
  margin-bottom: 8px;
}
#components h4 a {
  color: #3794de;
  text-decoration: none;
}
#components h4 a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#components ul {
  margin-left: 0;
  margin-top: 24px;
  list-style: none;
}
#components li {
  line-height: 32px;
  margin-bottom: 4px;
}
#components li a {
  display: inline-block;
  color: #3794de;
  line-height: 24px;
}
#components li a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: #000;
  text-decoration: underline;
}
#components p {
  max-width: 220px;
  margin: auto;
  font-size: 13px;
  line-height: 20px;
  color: rgba(0, 0, 0, 0.5);
}
#components #docs-search-results p {
  max-width: none;
  margin-bottom: 16px;
}
.demo-head {
  font-size: 24px;
  line-height: 32px;
  font-weight: 900;
  margin-top: 80px;
  margin-bottom: 20px;
  text-align: center;
}
#price-box {
  margin-top: 40px;
}
#price-box .item {
  text-align: center;
  padding: 36px;
  margin-bottom: 24px;
}
#price-box .item-selected {
  position: relative;
  top: -28px;
  background: #fafaf4;
}
#price-box .price-label {
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -60px;
  background: #ff3366;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  padding: 0 8px;
}
#price-box .price-name {
  font-size: 12px;
  text-transform: uppercase;
  line-height: 24px;
  font-weight: 900;
}
#price-box .price-amount {
  margin: 20px 0 32px 0;
  font-size: 34px;
}
#price-box ul {
  margin-left: 0;
  list-style: none;
  line-height: 36px;
}
#price-box li {
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07000000000000001);
}
#price-box li:last-child {
  border-bottom-color: transparent;
}
#price-box footer {
  margin-top: 32px;
}
#price-box button.stripe-button-el {
  height: auto;
  min-height: 0;
}
#price-secure-box {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}
#price-secure-box .extra {
  margin-top: 36px;
  font-size: 14px;
  line-height: 22px;
}
.not-found {
  padding: 40px 0;
  text-align: center;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}
.callout {
  background: #f8f8f8;
  padding: 40px 48px;
}
.callout-form {
  margin-bottom: 40px;
}
.color-black {
  color: #000;
}
tr.border-none td {
  border: none;
}
#purchases-table td {
  padding-top: 24px;
  padding-bottom: 24px;
}
#purchases-table tr:first-child td {
  padding-top: 16px;
}
#purchases-table tr:last-child td {
  border-bottom: none;
}
.purchase-table-license {
  margin-top: -16px;
  margin-bottom: 8px;
}
.purchase-table-version {
  display: block;
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 16px;
  font-size: 11px;
}
#invoice-form,
#invoice-form-old {
  margin-bottom: 24px;
  padding: 40px;
  border: 2px solid #eee;
}
#footer {
  display: flex;
  border-top: 1px solid #eee;
  margin: 104px 0;
  padding: 0 28px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
}
#footer p {
  order: 1;
}
#footer nav {
  order: 2;
  margin-left: auto;
}
#footer nav ul {
  display: flex;
}
#footer nav ul li {
  margin-left: 20px;
}
#footer nav ul li span {
  color: rgba(0, 0, 0, 0.3);
}
#footer nav ul li a {
  color: rgba(0, 0, 0, 0.65);
  text-decoration: none;
}
#footer nav ul li a:hover {
  color: #000;
  text-decoration: underline;
}
@media (max-width: 768px) {
  #top {
    display: block;
    height: auto;
    padding-bottom: 24px;
  }
  #top ul {
    display: block;
  }
  #top #top-brand {
    display: none;
  }
  #top #top-nav-main {
    padding: 0;
    border: none;
  }
  #top #top-nav-extra {
    margin: 0;
  }
  #top #top-nav-main li,
  #top #top-nav-extra li {
    text-align: center;
    width: auto;
    margin: 16px 0;
    padding: 0;
  }
  #subnav li,
  #subnav ul li {
    text-align: center;
    border: none;
    display: block;
    margin: 16px 0;
  }
  #hero {
    margin-top: 32px;
    padding-top: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  #hero h1,
  #hero .molecule-mobilenav .mobilenav-slide a {
    font-size: 40px;
    line-height: 48px;
  }
  #hero p {
    font-size: 16px;
    line-height: 24px;
  }
  #posts,
  #post-box,
  #main {
    padding-left: 20px;
    padding-right: 20px;
  }
  #action-buttons .button,
  #action-buttons button {
    margin: 8px 0;
  }
  #footer {
    display: block;
    text-align: center;
  }
  #footer nav ul {
    display: block;
    margin-bottom: 40px;
  }
  #footer nav ul li {
    margin: 8px 0;
  }
  #grafs-features ul {
    margin-bottom: 24px;
  }
  #grafs-features ul.br {
    border: none;
  }
  #grafs-features ul.br li,
  #grafs-features ul li {
    text-align: center;
  }
  .grafs-call-to-action p {
    font-size: 20px;
    line-height: 32px;
  }
  #docs-main {
    display: block;
  }
  #docs-main #side,
  #docs-main #area {
    width: 100%;
    padding: 20px 0;
    border: none;
  }
  .grafs-examples-row {
    flex-direction: column;
  }
  .grafs-examples-col {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  #price-box .item-selected {
    margin-top: 24px;
    top: 0;
  }
}
.media {
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.07000000000000001);
  border-radius: 3px;
  margin-bottom: 24px;
  max-width: 400px;
  display: flex;
  align-items: flex-start;
}
.media img {
  margin: 4px 0;
}
.media .media-body {
  margin-left: 16px;
}
.media .media-body h5 {
  margin-bottom: 0;
}
.media .media-body p {
  margin-bottom: 0;
}
.section-head {
  font-size: 24px;
  line-height: 32px;
  margin-top: 48px;
  font-weight: 900;
}
.section-head:after {
  content: '#';
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: rgba(0, 0, 0, 0.3);
  margin-left: 8px;
  position: relative;
  top: -1px;
}
.section-head a {
  text-decoration: none;
}
.section-item-desc {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}
.example {
  border: 1px solid rgba(0, 0, 0, 0.07000000000000001);
  padding: 32px;
  margin-bottom: 16px;
}
.example pre.code {
  margin-top: 40px;
  margin-bottom: 0;
  background: none;
  padding: 0;
}
.example.bg-darkgray {
  background: #313439;
}
.example.bg-darkgray pre.code {
  color: rgba(255, 255, 255, 0.85);
}
.demo-muted-link,
.demo-muted-link:hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.3);
}
.demo-animation-wrap {
  margin-bottom: 24px;
}
.demo-animation-wrap:after {
  content: '';
  display: table;
  clear: both;
}
.demo-animation-box {
  float: left;
  margin-right: 16px;
  width: 202px;
  height: 82px;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}
.demo-animation-box > div {
  width: 200px;
  height: 80px;
  background: #f8f8f8;
  text-align: center;
  line-height: 80px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 18px;
}
.demo-animation-btn {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  width: 200px;
  margin-right: 16px;
}
.demo-sizing > div {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 11px;
  padding-left: 4px;
  background: #d8e9fa;
  margin-bottom: 4px;
}
.demo-grid .row {
  margin-bottom: 4px;
  background: #ebf4fc;
}
.demo-grid .row.gutters {
  background: none;
}
.demo-grid .col {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  padding: 8px 12px;
  background: #d8e9fa;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
.demo-grid .demo-col-nested {
  border-left: none;
  padding: 0;
}
.demo-grid .demo-col-nested .row {
  margin-bottom: 0;
}
#demo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#demo-sidebar {
  flex: 0 0 300px;
  background: #c4def7;
}
#demo-content {
  flex: auto;
  background: #ebf4fc;
}
#demo-sidebar,
#demo-content {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  padding: 8px 12px;
  min-height: 80px;
}
#demo-media-grid {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 2%;
  -moz-column-gap: 2%;
  column-gap: 2%;
}
#demo-media-grid > div {
  display: inline-block;
  width: 100%;
}
@media (max-width: 768px) {
  #demo-media-grid {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
#demo-media-grid > div {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  padding: 8px 12px;
  background: #eae2f2;
  text-align: center;
  margin-bottom: 20px;
  height: 80px;
}
#demo-media-grid > div:nth-child(2n) {
  height: 200px;
}
#demo-media-grid > div:nth-child(5n) {
  height: 120px;
}
.button.red {
  color: #fff;
  background-color: #ff3366;
}
.button.red:hover {
  color: #fff;
  background-color: #ff99b3;
}
.button.red:disabled,
.button.red.disabled {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 51, 102, 0.7);
}
.button.red.outline {
  background: none;
  color: #ff3366;
  border-color: #ff3366;
}
.button.red.outline:hover {
  color: rgba(255, 51, 102, 0.6);
  border-color: rgba(255, 51, 102, 0.5);
}
.button.red.outline:disabled,
.button.red.outline.disabled {
  background: none;
  color: rgba(255, 51, 102, 0.7);
  border-color: rgba(255, 51, 102, 0.5);
}
.label.custom {
  background: #ea48a7;
  color: #fff;
}
.label.custom.tag,
.label.custom.outline {
  background: none;
  border-color: #ea48a7;
  color: #ea48a7;
}
#breadcrumbs-custom-separator li:after {
  content: '>';
}
.demo-gradient {
  height: 40px;
  margin-bottom: 24px;
}
.demo-gradient-vertical {
  background-color: #5faac8;
  background-image: linear-gradient(to bottom, #5faac8 0%, #65ccb8 100%);
}
.demo-gradient-vertical-to-opacity {
  background: linear-gradient(to bottom, #5faac8 0%, rgba(95, 170, 200, 0) 100%);
}
.demo-gradient-horizontal {
  background-color: #5faac8;
  background: linear-gradient(to right, #5faac8 0%, #65ccb8 100%);
}
.demo-gradient-horizontal-to-opacity {
  background: linear-gradient(to right, #5faac8 0%, rgba(95, 170, 200, 0) 100%);
}
.demo-gradient-radial {
  background-image: radial-gradient(circle, #5faac8, #65ccb8);
}
.example-inverted-box {
  display: inline-block;
  padding: 6px 8px 6px 8px;
  line-height: 1;
  vertical-align: middle;
  background: #d4d4d4;
}
#livetabs {
  margin-bottom: 24px;
  font-size: 14px;
}
#livetabs ul {
  display: flex;
}
#livetabs a {
  color: #000;
  text-decoration: none;
  background: #f4f4f4;
  border-radius: 4px;
  padding: 4px 12px;
  border: 1px solid transparent;
}
#livetabs a:hover {
  opacity: .7;
}
#livetabs li {
  margin-right: 4px;
}
#livetabs li.active a {
  background: #fff;
  border-color: #eee;
  color: rgba(0, 0, 0, 0.5);
  cursor: default;
}
#livetabs li.active a:hover {
  opacity: 1;
}
.togglebox-box {
  padding: 24px;
  padding-bottom: 16px;
  background: #f8f8f8;
  margin-bottom: 24px;
}
#navbar-demo {
  display: flex;
  align-items: center;
  background: #f8f8f8;
  padding: 24px 20px;
  margin-bottom: 24px;
}
#navbar-brand {
  margin-right: 24px;
}
#navbar-main ul:after {
  content: '';
  display: table;
  clear: both;
}
#navbar-main li {
  float: left;
  margin-right: 20px;
}
#navbar-demo.fixed {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
#navbar-main li a {
  color: #000;
  text-decoration: none;
  display: block;
}
#navbar-main li a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}
@media (max-width: 768px) {
  #navbar-demo {
    flex-direction: column;
    text-align: center;
  }
  #navbar-brand {
    margin: 0;
    margin-bottom: 20px;
  }
  #navbar-main li {
    float: none;
    margin: 0;
    margin-bottom: 20px;
  }
}
#demo-nav-collapse,
#demo-nav-collapse ul {
  margin-left: 0;
  list-style: none;
}
#demo-nav-collapse li {
  line-height: 32px;
}
#demo-nav-collapse ul {
  margin-left: 20px;
  font-size: 14px;
}
#demo-nav-collapse a {
  color: #000;
  text-decoration: none;
  display: block;
}
#demo-nav-collapse a:hover {
  -moz-transition: all linear 0.2s;
  transition: all linear 0.2s;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: underline;
}
.my-collapse {
  margin-bottom: 24px;
}
.my-collapse h4 {
  background: #f4f4f4;
  padding: 8px 16px;
  margin-bottom: 1px;
  font-size: 15px;
  line-height: 24px;
}
.my-collapse h4 a {
  text-decoration: none;
  color: #000;
  display: block;
}
.my-collapse div {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 24px 32px 1px;
  margin-bottom: 1px;
}
.swatch-box {
  text-align: center;
}
.swatch-item {
  display: inline-block;
  margin: 24px;
}
.swatch-item h5 {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}
.swatch-item p {
  font-family: Consolas, Monaco, "Courier New", monospace;
  font-size: 12px;
  line-height: 20px;
  color: rgba(46, 47, 51, 0.65);
}
.swatch {
  display: inline-block;
  height: 120px;
  width: 120px;
  border-radius: 120px;
  margin-bottom: 8px;
}
.swatch-bg-headings {
  background: #0d0d0e;
}
.swatch-bg-text {
  background: #313439;
}
.swatch-bg-link {
  background: #007eff;
}
.swatch-bg-link-hover {
  background: #ff3366;
}
.swatch-bg-button-primary {
  background: #007eff;
}
.swatch-bg-button-secondary {
  background: #313439;
}
.swatch-bg-inverted {
  background: #fff;
}
.swatch-bg-inverted {
  position: relative;
  bottom: -8px;
  margin-top: -8px;
  border: 8px solid #f8f8f8;
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 200;
  src: /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdu.woff2 */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_200.woff2') format('woff2'), /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdo.woff */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_200.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2 */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_400.woff2') format('woff2'), /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7j.woff */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_400.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: italic;
  font-weight: 400;
  src: /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2 */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_400i.woff2') format('woff2'), /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDQ.woff */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_400i.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdu.woff2 */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_600.woff2') format('woff2'), /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rwlxdo.woff */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_600.woff') format('woff');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 700;
  src: /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdu.woff2 */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_700.woff2') format('woff2'), /* from https://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vwlxdo.woff */ url('../../frontend/style/default/assets/fonts/sourcesanspro/Source_Sans_Pro_700.woff') format('woff');
}
/* nothing-you-could-do-regular - latin */
@font-face {
  font-family: 'Nothing You Could Do';
  font-style: normal;
  font-weight: 400;
  src: url('../../frontend/style/default/assets/fonts/nothingyoucoulddo/nothing-you-could-do-v15-latin-regular.woff2') format('woff2');
}
body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
h1.title,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.molecule-mobilenav .mobilenav-slide a.title,
.molecule-mobilenav .mobilenav-slide a {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
button,
.button {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
input,
textarea,
select {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.flex-items-wrap {
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-items-nowrap {
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex-items-row {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
.flex-column {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.flex-items-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-items-left {
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.flex-items-right {
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-items-center {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.flex-items-space-between {
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.flex-items-space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
.flex-items-top {
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.flex-items-middle {
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.flex-items-bottom {
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.flex-item-auto {
  -ms-flex: auto;
  -webkit-flex: auto;
  flex: auto;
}
.flex-item-one {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.flex-item-align-self-start {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.flex-item-align-self-center {
  -webkit-align-self: flex-center;
  -ms-flex-item-align: center;
  align-self: center;
}
.flex-item-align-self-end {
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  *zoom: 1;
}
.container:before,
.container:after {
  content: "";
  display: table;
}
.container:after {
  clear: both;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 529px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.container-fluid {
  width: 100%;
  margin: 0;
  *zoom: 1;
}
.container-fluid:before,
.container-fluid:after {
  content: "";
  display: table;
}
.container-fluid:after {
  clear: both;
}
body {
  width: 100%;
  *zoom: 1;
}
body:before,
body:after {
  content: "";
  display: table;
}
body:after {
  clear: both;
}
.grid-row {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.grid-row:before,
.grid-row:after {
  content: "";
  display: table;
}
.grid-row:after {
  clear: both;
}
.column-1 {
  display: inline;
  float: left;
  width: 6.66666667%;
  margin: 0 0.83333333%;
}
.column-1:before {
  content: '';
  width: 100%;
}
.column-2 {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
}
.column-2:before {
  content: '';
  width: 100%;
}
.column-3 {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
}
.column-3:before {
  content: '';
  width: 100%;
}
.column-4 {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
.column-4:before {
  content: '';
  width: 100%;
}
.column-5 {
  display: inline;
  float: left;
  width: 40%;
  margin: 0 0.83333333%;
}
.column-5:before {
  content: '';
  width: 100%;
}
.column-6 {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
.column-6:before {
  content: '';
  width: 100%;
}
.column-7 {
  display: inline;
  float: left;
  width: 56.66666667%;
  margin: 0 0.83333333%;
}
.column-7:before {
  content: '';
  width: 100%;
}
.column-8 {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
}
.column-8:before {
  content: '';
  width: 100%;
}
.column-9 {
  display: inline;
  float: left;
  width: 73.33333333%;
  margin: 0 0.83333333%;
}
.column-9:before {
  content: '';
  width: 100%;
}
.column-10 {
  display: inline;
  float: left;
  width: 81.66666667%;
  margin: 0 0.83333333%;
}
.column-10:before {
  content: '';
  width: 100%;
}
.column-11 {
  display: inline;
  float: left;
  width: 90%;
  margin: 0 0.83333333%;
}
.column-11:before {
  content: '';
  width: 100%;
}
.column-12 {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.column-12:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .column-1,
  .column-2,
  .column-3,
  .column-4,
  .column-5,
  .column-6,
  .column-7,
  .column-8,
  .column-9,
  .column-10,
  .column-11,
  .column-12 {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .column-1:before,
  .column-2:before,
  .column-3:before,
  .column-4:before,
  .column-5:before,
  .column-6:before,
  .column-7:before,
  .column-8:before,
  .column-9:before,
  .column-10:before,
  .column-11:before,
  .column-12:before {
    content: '';
    width: 100%;
  }
}
.shadow {
  box-shadow: 0px 0px 30px 0px rgba(44, 44, 44, 0.1);
}
.shadow.large {
  box-shadow: 0px 20px 40px 0px rgba(44, 44, 44, 0.25);
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
* {
  margin: 0;
  padding: 0;
  outline: 0;
  -webkit-overflow-scrolling: touch;
}
img,
video,
audio {
  max-width: 100%;
}
img,
video {
  height: auto;
}
svg {
  max-height: 100%;
}
iframe {
  border: none;
}
::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input[type="radio"],
input[type="checkbox"] {
  vertical-align: middle;
  position: relative;
  bottom: 0.15rem;
  font-size: 115%;
  margin-right: 3px;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.black {
  color: #0d0d0e;
}
.inverted {
  color: #ffffff;
}
.error {
  color: #f03c69;
}
.success {
  color: #35beb1;
}
.warning {
  color: #f7ba45;
}
.focus {
  color: #1c86f2;
}
.aluminum {
  color: #f8f8f8;
}
.silver {
  color: #e0e1e1;
}
.lightgray {
  color: #f1f1f1;
}
.gray {
  color: #bdbdbd;
}
.midgray {
  color: #676b72;
}
.darkgray {
  color: #2c2c2c;
}
.white {
  color: #ffffff;
}
.bg-black {
  background-color: #0d0d0e;
}
.bg-inverted {
  background-color: #ffffff;
}
.bg-error {
  background-color: #f03c69;
}
.bg-success {
  background-color: #35beb1;
}
.bg-warning {
  background-color: #f7ba45;
}
.bg-focus {
  background-color: #1c86f2;
}
.bg-aluminum {
  background-color: #f8f8f8;
}
.bg-silver {
  background-color: #e0e1e1;
}
.bg-lightgray {
  background-color: #f1f1f1;
}
.bg-gray {
  background-color: #bdbdbd;
}
.bg-midgray {
  background-color: #676b72;
}
.bg-darkgray {
  background-color: #2c2c2c;
}
.bg-white {
  background-color: #ffffff;
}
.bg-highlight {
  background-color: #edf2ff;
}
::-moz-selection {
  color: #ffffff;
  background-color: #00782c;
}
::selection {
  color: #ffffff;
  background-color: #00782c;
}
html,
body {
  font-size: 15px;
  line-height: 24px;
}
body {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #313439;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #2c2c2c;
}
a:hover {
  color: #00782c;
}
h1.title,
h1,
h2,
h3,
h4,
h5,
h6,
.molecule-mobilenav .mobilenav-slide a.title,
.molecule-mobilenav .mobilenav-slide a {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  color: #0d0d0e;
  text-rendering: optimizeLegibility;
  margin-bottom: 15px;
}
h1.title,
.molecule-mobilenav .mobilenav-slide a.title {
  font-size: 60px;
  line-height: 64px;
  margin-bottom: 7.5px;
}
h1,
.h1,
.molecule-mobilenav .mobilenav-slide a {
  font-size: 40px;
  line-height: 42px;
}
h2,
.h2 {
  font-size: 28px;
  font-weight: normal;
  line-height: 40px;
}
h3,
.h3 {
  font-size: 24px;
  font-weight: normal;
  line-height: 32px;
  margin-bottom: 36px;
}
h4,
.h4 {
  font-size: 20px;
  line-height: 32px;
}
h5,
.h5 {
  font-size: 16px;
  line-height: 28px;
}
h6,
.h6 {
  font-size: 14px;
  line-height: 24px;
}
h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a,
.molecule-mobilenav .mobilenav-slide a a {
  color: inherit;
}
p + h2,
ul + h2,
ol + h2,
dl + h2,
blockquote + h2,
hr + h2,
pre + h2,
table + h2,
form + h2,
figure + h2,
p + h3,
ul + h3,
ol + h3,
dl + h3,
blockquote + h3,
hr + h3,
pre + h3,
table + h3,
form + h3,
figure + h3,
p + h4,
ul + h4,
ol + h4,
dl + h4,
blockquote + h4,
hr + h4,
pre + h4,
table + h4,
form + h4,
figure + h4,
p + h5,
ul + h5,
ol + h5,
dl + h5,
blockquote + h5,
hr + h5,
pre + h5,
table + h5,
form + h5,
figure + h5,
p + h6,
ul + h6,
ol + h6,
dl + h6,
blockquote + h6,
hr + h6,
pre + h6,
table + h6,
form + h6,
figure + h6 {
  margin-top: 24px;
}
ul,
ol,
ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0 0 0 24px;
}
ol ol li {
  list-style-type: lower-alpha;
}
ol ol ol li {
  list-style-type: lower-roman;
}
nav ul,
nav ol {
  margin: 0;
  list-style: none;
}
nav ul ul,
nav ol ul,
nav ul ol,
nav ol ol {
  margin-left: 24px;
}
dl dt {
  font-weight: bold;
}
dd {
  margin-left: 24px;
}
p,
blockquote,
hr,
pre,
ol,
ul,
dl,
table,
fieldset,
figure,
address,
form {
  margin-bottom: 15px;
}
hr {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: -1px;
}
blockquote {
  padding-left: 1rem;
  border-left: 4px solid rgba(0, 0, 0, 0.1);
  font-style: italic;
  color: rgba(49, 52, 57, 0.65);
}
blockquote p {
  margin-bottom: .5rem;
}
time,
cite,
small,
figcaption {
  font-size: 87.5%;
}
cite {
  opacity: .6;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
  cursor: help;
}
var {
  font-size: 15px;
  opacity: .6;
  font-style: normal;
}
mark,
code,
samp,
kbd {
  position: relative;
  top: -1px;
  padding: 4px 4px 2px 4px;
  display: inline-block;
  line-height: 1;
  color: rgba(49, 52, 57, 0.85);
}
code {
  background: #e0e1e1;
}
mark {
  background: #f7ba45;
}
samp {
  color: #fff;
  background: #1c86f2;
}
kbd {
  border: 1px solid rgba(0, 0, 0, 0.1);
}
sub,
sup {
  font-size: x-small;
  line-height: 0;
  margin-left: 0.25rem;
  position: relative;
}
sup {
  top: 0;
}
sub {
  bottom: 1px;
}
pre,
code,
samp,
var,
kbd {
  font-family: Consolas, Monaco, 'Courier New', monospace;
}
pre,
code,
samp,
var,
kbd,
mark {
  font-size: 87.5%;
}
pre,
pre code {
  background: #f8f8f8;
  padding: 0;
  top: 0;
  display: block;
  line-height: 20px;
  color: rgba(49, 52, 57, 0.85);
  overflow: none;
  white-space: pre-wrap;
}
pre {
  padding: 1rem;
}
figcaption {
  opacity: .6;
}
figure figcaption {
  position: relative;
  top: -0.5rem;
}
figure pre {
  background: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}
figure .video-container,
figure pre {
  margin-bottom: 7.5px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
ul.unstyled,
ul.list-flat {
  margin-left: 0;
}
ul.unstyled,
ul.list-flat,
ul.unstyled ul,
ul.list-flat ul {
  list-style: none;
}
.monospace {
  font-family: Consolas, Monaco, 'Courier New', monospace;
}
.upper {
  text-transform: uppercase;
}
.lower {
  text-transform: lowercase;
}
.italic {
  font-style: italic !important;
}
.strong {
  font-weight: bold !important;
}
.normal {
  font-weight: normal !important;
}
.muted {
  opacity: .55;
}
a.muted {
  color: #0d0d0e;
}
a.muted:hover {
  opacity: 1;
}
.black {
  color: #0d0d0e;
}
.smaller {
  font-size: 11px;
  line-height: 20px;
}
.small {
  font-size: 13px;
  line-height: 20px;
}
.big {
  font-size: 17px;
  line-height: 28px;
}
.large {
  font-size: 19px;
  line-height: 32px;
}
.end {
  margin-bottom: 0 !important;
}
.highlight {
  background-color: #edf2ff;
}
.nowrap,
.nowrap td {
  white-space: nowrap;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
  empty-cells: show;
  font-size: 14px;
  line-height: 24px;
}
table caption {
  text-align: left;
  font-size: 13px;
  font-weight: 500;
  color: #676b72;
}
th {
  text-align: left;
  font-weight: 700;
  vertical-align: bottom;
}
td {
  vertical-align: top;
}
tr.align-middle td,
td.align-middle {
  vertical-align: middle;
}
th,
td {
  padding: 1rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
tfoot th,
tfoot td {
  color: rgba(49, 52, 57, 0.5);
}
table.bordered td,
table.bordered th {
  border: 1px solid rgba(0, 0, 0, 0.05);
}
table.striped tr:nth-child(odd) td {
  background: #f8f8f8;
}
table.bordered td:first-child,
table.striped td:first-child,
table.bordered th:first-child,
table.striped th:first-child {
  padding-left: 1rem;
}
table.bordered td:last-child,
table.striped td:last-child,
table.bordered th:last-child,
table.striped th:last-child {
  padding-right: 1rem;
}
table.unstyled td,
table.flat td,
table.unstyled th,
table.flat th {
  border: none;
  padding: 0;
}
fieldset {
  font-family: inherit;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
legend {
  font-weight: bold;
  font-size: 11px;
  text-transform: uppercase;
  padding: 0 1rem;
  margin-left: -1rem;
  top: 2px;
  position: relative;
  line-height: 0;
}
input,
textarea,
select {
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  height: 40px;
  outline: none;
  vertical-align: middle;
  background-color: #ffffff;
  border: 1px solid #f1f1f1;
  border-radius: 3px;
  box-shadow: none;
  padding: 0 12px;
}
input.small,
textarea.small,
select.small {
  height: 36px;
  font-size: 13px;
  padding: 0 12px;
  border-radius: 3px;
}
input.big,
textarea.big,
select.big {
  height: 48px;
  font-size: 17px;
  padding: 0 12px;
  border-radius: 3px;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  background-color: #ffffff;
  border-color: #1c86f2;
  box-shadow: 0 0 1px #1c86f2 inset;
}
input.error,
textarea.error,
select.error {
  background-color: rgba(240, 60, 105, 0.1);
  border: 1px solid #f583a0;
}
input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #f03c69;
  box-shadow: 0 0 1px #f03c69 inset;
}
input.success,
textarea.success,
select.success {
  background-color: rgba(53, 190, 177, 0.1);
  border: 1px solid #6ad5cb;
}
input.success:focus,
textarea.success:focus,
select.success:focus {
  border-color: #35beb1;
  box-shadow: 0 0 1px #35beb1 inset;
}
input:disabled,
textarea:disabled,
select:disabled,
input.disabled,
textarea.disabled,
select.disabled {
  resize: none;
  opacity: 0.6;
  cursor: default;
  font-style: italic;
  color: rgba(0, 0, 0, 0.5);
}
select {
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12"><path fill="#5e6c75" d="M0.722,4.823L-0.01,4.1,4.134-.01,4.866,0.716Zm7.555,0L9.01,4.1,4.866-.01l-0.732.726ZM0.722,7.177L-0.01,7.9,4.134,12.01l0.732-.726Zm7.555,0L9.01,7.9,4.866,12.01l-0.732-.726Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
select[multiple] {
  background-image: none;
  height: auto;
  padding: .5rem .75rem;
}
textarea {
  height: auto;
  padding: 8px 12px;
  line-height: 24px;
  vertical-align: top;
}
input[type="file"] {
  width: auto;
  border: none;
  padding: 0;
  height: auto;
  background: none;
  box-shadow: none;
  display: inline-block;
}
input[type="search"],
input.search {
  background-repeat: no-repeat;
  background-position: 8px 53%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="#000" fill-opacity="0.4" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
  padding-left: 32px;
}
input[type="radio"],
input[type="checkbox"] {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0;
}
label {
  display: block;
  color: #2c2c2c;
  margin-bottom: 4px;
  font-size: 14px;
}
label.checkbox,
label .desc,
label .success,
label .error {
  text-transform: none;
  font-weight: normal;
}
label.checkbox {
  font-size: 15px;
  line-height: 24px;
  cursor: pointer;
  color: inherit;
}
label.checkbox input {
  margin-top: 0;
}
.form-checkboxes label.checkbox {
  display: inline-block;
  margin-right: 16px;
}
.req {
  position: relative;
  top: 1px;
  font-weight: bold;
  color: #f03c69;
  font-size: 110%;
}
.desc {
  color: rgba(49, 52, 57, 0.5);
  font-size: 11px;
  line-height: 20px;
}
span.desc {
  margin-left: 4px;
}
div.desc {
  margin-top: 4px;
  margin-bottom: -8px;
}
.form-buttons button,
.form-buttons .button {
  margin-right: 8px;
}
form,
.form-item {
  margin-bottom: 2rem;
}
.form > .form-item:last-child {
  margin-bottom: 0;
}
.form .row:last-child .form-item {
  margin-bottom: 0;
}
.form span.success,
.form span.error {
  font-size: 11px;
  line-height: 20px;
  margin-left: 4px;
}
.form-inline input,
.form-inline textarea,
.form-inline select {
  display: inline-block;
  width: auto;
}
.append,
.prepend {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.append input,
.prepend input {
  -ms-flex: 1;
  -webkit-flex: 1;
  flex: 1;
}
.append .button,
.prepend .button,
.append span,
.prepend span {
  -ms-flex-shrink: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.append span,
.prepend span {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-weight: normal;
  border: 1px solid #f1f1f1;
  background-color: #f8f8f8;
  padding: 0 .875rem;
  color: rgba(0, 0, 0, 0.5);
  font-size: 11px;
  white-space: nowrap;
}
.prepend input {
  border-radius: 0 3px 3px 0;
}
.prepend .button {
  margin-right: -1px;
  border-radius: 3px 0 0 3px !important;
}
.prepend span {
  border-right: none;
  border-radius: 3px 0 0 3px;
}
.append input {
  border-radius: 3px 0 0 3px;
}
.append .button {
  margin-left: -1px;
  border-radius: 0 3px 3px 0 !important;
}
.append span {
  border-left: none;
  border-radius: 0 3px 3px 0;
}
button,
.button {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  color: #ffffff;
  background-color: #00782c;
  border-radius: 0px;
  min-height: 40px;
  padding: 8px 24px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  line-height: 24px;
  border: 1px solid transparent;
  vertical-align: middle;
  -webkit-appearance: none;
}
button i,
.button i {
  margin: 0 2px;
  font-size: 7px;
}
button.icon i,
.button.icon i {
  vertical-align: middle;
}
input[type="submit"] {
  width: auto;
}
button:hover,
.button:hover {
  outline: none;
  text-decoration: none;
  color: #ffffff;
  background-color: #00ab3f;
}
.button:disabled,
.button.disabled {
  cursor: default;
  font-style: normal;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(0, 120, 44, 0.7);
}
.button.small {
  font-size: 13px;
  min-height: 36px;
  padding: 6px 20px;
  border-radius: 0px;
}
.button.big {
  font-size: 17px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 0px;
}
.button.large {
  font-size: 19px;
  min-height: 56px;
  padding: 20px 36px;
  border-radius: 0px;
}
.button.outline {
  background: none;
  border-width: 1px;
  border-color: #00782c;
  color: #00782c;
}
.button.outline:hover {
  background: none;
  color: rgba(0, 120, 44, 0.6);
  border-color: rgba(0, 120, 44, 0.5);
}
.button.outline:disabled,
.button.outline.disabled {
  background: none;
  color: rgba(0, 120, 44, 0.7);
  border-color: rgba(0, 120, 44, 0.5);
}
.button.inverted {
  color: #000000;
  background-color: #ffffff;
}
.button.inverted:hover {
  color: #000000;
  background-color: #ffffff;
}
.button.inverted:disabled,
.button.inverted.disabled {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
}
.button.inverted.outline {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.button.inverted.outline:hover {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.button.inverted.outline:disabled,
.button.inverted.outline.disabled {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.button.inverted i.im {
  font-size: 7px;
}
.button.inverted:hover {
  opacity: .7;
}
.button.round {
  border-radius: 56px;
}
.button.raised {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.button.upper {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
}
.button.upper.small {
  font-size: 11px;
}
.button.upper.big {
  font-size: 13px;
}
.button.upper.large {
  font-size: 15px;
}
.button.secondary {
  color: #ffffff;
  background-color: #313439;
}
.button.secondary:hover {
  color: #ffffff;
  background-color: #606670;
}
.button.secondary:disabled,
.button.secondary.disabled {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(49, 52, 57, 0.7);
}
.button.secondary.outline {
  background: none;
  color: #313439;
  border-color: #313439;
}
.button.secondary.outline:hover {
  color: rgba(49, 52, 57, 0.6);
  border-color: rgba(49, 52, 57, 0.5);
}
.button.secondary.outline:disabled,
.button.secondary.outline.disabled {
  background: none;
  color: rgba(49, 52, 57, 0.7);
  border-color: rgba(49, 52, 57, 0.5);
}
.button.secondary i.im {
  font-size: 7px;
}
.label {
  display: inline-block;
  font-size: 15px;
  background: #e0e1e1;
  line-height: 24px;
  padding: 1px 10px;
  font-weight: 500;
  color: #313439;
  border: 1px solid transparent;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 4px;
  margin-bottom: 3px;
}
.label a,
.label a:hover {
  color: inherit;
  text-decoration: none;
}
.label.big {
  font-size: 13px;
  line-height: 24px;
  padding: 0 12px;
}
.label.upper {
  text-transform: uppercase;
  font-size: 11px;
}
.label.outline {
  background: none;
  border-color: #bdbdbd;
}
.label.badge {
  text-align: center;
  border-radius: 64px;
  padding: 0 6px;
}
.label.badge.big {
  padding: 0 8px;
}
.label.tag {
  padding: 0;
  background: none;
  border: none;
  text-transform: uppercase;
  font-size: 10px;
}
.label.tag.big {
  font-size: 12px;
}
.label.success {
  background: #35beb1;
  color: #ffffff;
}
.label.success.tag,
.label.success.outline {
  background: none;
  border-color: #35beb1;
  color: #35beb1;
}
.label.error {
  background: #f03c69;
  color: #ffffff;
}
.label.error.tag,
.label.error.outline {
  background: none;
  border-color: #f03c69;
  color: #f03c69;
}
.label.warning {
  background: #f7ba45;
  color: #0d0d0e;
}
.label.warning.tag,
.label.warning.outline {
  background: none;
  border-color: #f7ba45;
  color: #f7ba45;
}
.label.focus {
  background: #1c86f2;
  color: #ffffff;
}
.label.focus.tag,
.label.focus.outline {
  background: none;
  border-color: #1c86f2;
  color: #1c86f2;
}
.label.black {
  background: #0d0d0e;
  color: #ffffff;
}
.label.black.tag,
.label.black.outline {
  background: none;
  border-color: #0d0d0e;
  color: #0d0d0e;
}
.label.inverted {
  background: #ffffff;
  color: #0d0d0e;
}
.label.inverted.tag,
.label.inverted.outline {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.pagination {
  margin: 24px 0;
  font-size: 13px;
}
.pagination ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin: 0;
}
.pagination.align-center ul {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.pagination span,
.pagination a {
  border-radius: 3px;
  display: inline-block;
  padding: 8px 12px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
}
.pagination a {
  text-decoration: none;
  color: #313439;
}
.pagination a:hover {
  color: rgba(0, 0, 0, 0.5);
  border-color: #e0e1e1;
}
.pagination span,
.pagination li.active a {
  color: rgba(0, 0, 0, 0.5);
  border-color: #e0e1e1;
  cursor: text;
}
.pagination.upper {
  font-size: 11px;
}
.pager span {
  line-height: 24px;
}
.pager span,
.pager a {
  padding-left: 16px;
  padding-right: 16px;
  border-radius: 64px;
  border-color: rgba(0, 0, 0, 0.1);
}
.pager li {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}
.pager li.next {
  text-align: right;
}
.pager.align-center li {
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
  margin-left: 4px;
  margin-right: 4px;
}
.pager.flat span,
.pager.flat a {
  border: none;
  display: block;
  padding: 0;
}
.pager.flat a {
  font-weight: bold;
}
.pager.flat a:hover {
  background: none;
  text-decoration: underline;
}
@font-face {
  font-family: 'Kube';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfgAAAC8AAAAYGNtYXAXVtKOAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZsMn2SAAAAF4AAADeGhlYWQMP9EUAAAE8AAAADZoaGVhB8IDzQAABSgAAAAkaG10eCYABd4AAAVMAAAAMGxvY2EFWASuAAAFfAAAABptYXhwABcAmwAABZgAAAAgbmFtZfMJxocAAAW4AAABYnBvc3QAAwAAAAAHHAAAACAAAwPHAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBwPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qf//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAAKAAAAAAQAA8AADwAUACQANABEAFYAaAB4AIgAmAAAEyIGFREUFjMhMjY1ETQmIwUhESEREzgBMSIGFRQWMzI2NTQmIzM4ATEiBhUUFjMyNjU0JiMzOAExIgYVFBYzMjY1NCYjATIWHQEUBiMiJj0BNDYzOAExITIWHQEUBiMiJj0BNDYzOAExATgBMSIGFRQWMzI2NTQmIzM4ATEiBhUUFjMyNjU0JiMzOAExIgYVFBYzMjY1NCYjwFBwcFACgFBwcFD9IQM+/MKrHioqHh4qKh70HioqHh4qKh70HisrHh0rKh7+MBQdHRQUHBwUAbgUHBwUFB0dFP4wHioqHh4qKh70HioqHh4qKh70HisrHh0rKh4DYHBQ/iBQcHBQAeBQcF/9XwKh/n8qHh4qKh4eKioeHioqHh4qKh4eKioeHioCQBwVjhUcHBWOFRwcFY4VHBwVjhUc/rAqHh4qKh4eKioeHioqHh4qKh4eKioeHioAAAABAQAAwAMAAcAACwAAAQcXBycHJzcnNxc3AwDMAjMDAzMCzDTMzAGVqAIrAgIrAqgrqKgAAQGAAEACgAJAAAsAACUnByc3JzcXNxcHFwJVqAIrAgIrAqgrqKhAzAIzAwMzAsw0zMwAAAEBgABAAoACQAALAAABFzcXBxcHJwcnNycBq6gCKwICKwKoK6ioAkDMAjMDAzMCzDTMzAABAQAAwAMAAcAACwAAJTcnNxc3FwcXBycHAQDMAjMDAzMCzDTMzOuoAisCAisCqCuoqAAAAgAP/+UD1AOqAAQACAAAEwEHATcFAScBSwOJPPx3PAOJ/Hc8A4kDqvx3PAOJPDz8dzwDiQAAAAADAIAAgAOAAwAAAwAHAAsAADc1IRUBIRUhESEVIYADAP0AAwD9AAMA/QCAgIABgIABgIAAAgBPAA8DsgNxABgALQAAJQcBDgEjIi4CNTQ+AjMyHgIVFAYHAQEiDgIVFB4CMzI+AjU0LgIjA7JY/t4lWTBBc1YxMVZzQUFzVTIcGQEi/dgxVkAlJUBWMTFWQCUlQFYxZ1gBIRkcMlVzQUFzVjExVnNBMFkm/uACuyVAVjExVkAlJUBWMTFWQCUAAAABAAAAAQAABhlWm18PPPUACwQAAAAAANSQRjkAAAAA1JBGOQAA/+UEAAPAAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAMBAAAAAAAAAAAAAAAAgAAAAQAAAAEAAEABAABgAQAAYAEAAEABAAADwQAAIAEAABPAAAAAAAKABQAHgDYAPIBDAEmAUABXAF2AbwAAAABAAAADACZAAoAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAADgCuAAEAAAAAAAEABAAAAAEAAAAAAAIABwBFAAEAAAAAAAMABAAtAAEAAAAAAAQABABaAAEAAAAAAAUACwAMAAEAAAAAAAYABAA5AAEAAAAAAAoAGgBmAAMAAQQJAAEACAAEAAMAAQQJAAIADgBMAAMAAQQJAAMACAAxAAMAAQQJAAQACABeAAMAAQQJAAUAFgAXAAMAAQQJAAYACAA9AAMAAQQJAAoANACAS3ViZQBLAHUAYgBlVmVyc2lvbiAxLjAAVgBlAHIAcwBpAG8AbgAgADEALgAwS3ViZQBLAHUAYgBlS3ViZQBLAHUAYgBlUmVndWxhcgBSAGUAZwB1AGwAYQByS3ViZQBLAHUAYgBlRm9udCBnZW5lcmF0ZWQgYnkgSWNvTW9vbi4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==") format('truetype');
  font-weight: normal;
  font-style: normal;
}
[class^="kube-"],
[class*=" kube-"],
.close,
.caret {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'Kube' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.kube-calendar:before {
  content: "\e900";
}
.caret.down:before,
.kube-caret-down:before {
  content: "\e901";
}
.caret.left:before,
.kube-caret-left:before {
  content: "\e902";
}
.caret.right:before,
.kube-caret-right:before {
  content: "\e903";
}
.caret.up:before,
.kube-caret-up:before {
  content: "\e904";
}
.close:before,
.kube-close:before {
  content: "\e905";
}
.kube-menu:before {
  content: "\e906";
}
.kube-search:before {
  content: "\e907";
}
/*!
 * iconmonstr iconic font v1.1.0
 * Created by Alexander Kahlkopf - http://iconmonstr.com - @iconmonstr
 * License - http://iconmonstr.com/license
 */
@font-face {
  font-family: 'iconmonstr-iconic-font';
  src: url('../../frontend/style/default/assets/fonts/iconmonstr/iconmonstr-iconic-font.woff2?v=1.1.0') format('woff2'), url('../../frontend/style/default/assets/fonts/iconmonstr/iconmonstr-iconic-font.woff?v=1.1.0') format('woff'), url('../../frontend/style/default/assets/fonts/iconmonstr/iconmonstr-iconic-font.ttf?v=1.1.0') format('truetype');
  font-weight: normal;
  font-style: normal;
}
.im {
  display: inline-block;
  font: normal normal normal 24px/1 'iconmonstr-iconic-font';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.im-angle-right:before {
  content: '\e001';
}
.im-angle-left:before {
  content: '\e002';
}
.im-angle-down:before {
  content: '\e003';
}
.im-angle-up:before {
  content: '\e004';
}
.im-angle-right-circle:before {
  content: '\e005';
}
.im-angle-left-circle:before {
  content: '\e006';
}
.im-angle-down-circle:before {
  content: '\e007';
}
.im-angle-up-circle:before {
  content: '\e008';
}
.im-arrow-right:before {
  content: '\e009';
}
.im-arrow-left:before {
  content: '\e00a';
}
.im-arrow-down:before {
  content: '\e00b';
}
.im-arrow-up:before {
  content: '\e00c';
}
.im-arrow-right-circle:before {
  content: '\e00d';
}
.im-arrow-left-circle:before {
  content: '\e00e';
}
.im-arrow-down-circle:before {
  content: '\e00f';
}
.im-arrow-up-circle:before {
  content: '\e010';
}
.im-care-right:before {
  content: '\e011';
}
.im-care-left:before {
  content: '\e012';
}
.im-care-down:before {
  content: '\e013';
}
.im-care-up:before {
  content: '\e014';
}
.im-forbidden:before {
  content: '\e015';
}
.im-printer:before {
  content: '\e016';
}
.im-menu:before {
  content: '\e017';
}
.im-menu-list:before {
  content: '\e018';
}
.im-quote-left:before {
  content: '\e019';
}
.im-quote-right:before {
  content: '\e01a';
}
.im-bell:before {
  content: '\e01b';
}
.im-bell-off:before {
  content: '\e01c';
}
.im-bookmark:before {
  content: '\e01d';
}
.im-briefcase:before {
  content: '\e01e';
}
.im-calendar:before {
  content: '\e01f';
}
.im-photo-camera:before {
  content: '\e020';
}
.im-video-camera:before {
  content: '\e021';
}
.im-microphone:before {
  content: '\e022';
}
.im-check-mark:before {
  content: '\e023';
}
.im-check-mark-circle:before {
  content: '\e024';
}
.im-check-square-o:before {
  content: '\e025';
}
.im-check-square:before {
  content: '\e026';
}
.im-check-square-i:before {
  content: '\e027';
}
.im-square-o:before {
  content: '\e028';
}
.im-radio-button-circle-o:before {
  content: '\e029';
}
.im-radio-button-circle:before {
  content: '\e02a';
}
.im-circle-o:before {
  content: '\e02b';
}
.im-clock-o:before {
  content: '\e02c';
}
.im-cloud:before {
  content: '\e02d';
}
.im-cloud-download:before {
  content: '\e02e';
}
.im-cloud-upload:before {
  content: '\e02f';
}
.im-code:before {
  content: '\e030';
}
.im-speech-bubble:before {
  content: '\e031';
}
.im-speech-bubble-comment:before {
  content: '\e032';
}
.im-speech-bubble-comments:before {
  content: '\e033';
}
.im-copy:before {
  content: '\e034';
}
.im-credit-card:before {
  content: '\e035';
}
.im-crown:before {
  content: '\e036';
}
.im-database:before {
  content: '\e037';
}
.im-computer:before {
  content: '\e038';
}
.im-download:before {
  content: '\e039';
}
.im-upload:before {
  content: '\e03a';
}
.im-edit:before {
  content: '\e03b';
}
.im-edit-off:before {
  content: '\e03c';
}
.im-play:before {
  content: '\e03d';
}
.im-pause:before {
  content: '\e03e';
}
.im-stop:before {
  content: '\e03f';
}
.im-eject:before {
  content: '\e040';
}
.im-previous:before {
  content: '\e041';
}
.im-next:before {
  content: '\e042';
}
.im-loop:before {
  content: '\e043';
}
.im-random:before {
  content: '\e044';
}
.im-menu-dot-h:before {
  content: '\e045';
}
.im-menu-dot-v:before {
  content: '\e046';
}
.im-mail:before {
  content: '\e047';
}
.im-info:before {
  content: '\e048';
}
.im-warning:before {
  content: '\e049';
}
.im-question:before {
  content: '\e04a';
}
.im-link:before {
  content: '\e04b';
}
.im-unlink:before {
  content: '\e04c';
}
.im-external-link:before {
  content: '\e04d';
}
.im-eye:before {
  content: '\e04e';
}
.im-eye-off:before {
  content: '\e04f';
}
.im-file:before {
  content: '\e050';
}
.im-file-o:before {
  content: '\e051';
}
.im-files-o:before {
  content: '\e052';
}
.im-video:before {
  content: '\e053';
}
.im-audio:before {
  content: '\e054';
}
.im-picture-o:before {
  content: '\e055';
}
.im-flag:before {
  content: '\e056';
}
.im-folder:before {
  content: '\e057';
}
.im-folder-open:before {
  content: '\e058';
}
.im-smiley-o:before {
  content: '\e059';
}
.im-frown-o:before {
  content: '\e05a';
}
.im-gear:before {
  content: '\e05b';
}
.im-globe:before {
  content: '\e05c';
}
.im-heart:before {
  content: '\e05d';
}
.im-home:before {
  content: '\e05e';
}
.im-inbox:before {
  content: '\e05f';
}
.im-key:before {
  content: '\e060';
}
.im-lock:before {
  content: '\e061';
}
.im-lock-open:before {
  content: '\e062';
}
.im-task-o:before {
  content: '\e063';
}
.im-filter:before {
  content: '\e064';
}
.im-light-bulb:before {
  content: '\e065';
}
.im-flash:before {
  content: '\e066';
}
.im-map-o:before {
  content: '\e067';
}
.im-location:before {
  content: '\e068';
}
.im-maximize:before {
  content: '\e069';
}
.im-minimize:before {
  content: '\e06a';
}
.im-fullscreen:before {
  content: '\e06b';
}
.im-mobile:before {
  content: '\e06c';
}
.im-phone:before {
  content: '\e06d';
}
.im-coin:before {
  content: '\e06e';
}
.im-banknote:before {
  content: '\e06f';
}
.im-paper-clip:before {
  content: '\e070';
}
.im-bar-chart:before {
  content: '\e071';
}
.im-plus:before {
  content: '\e072';
}
.im-minus:before {
  content: '\e073';
}
.im-plus-circle:before {
  content: '\e074';
}
.im-minus-circle:before {
  content: '\e075';
}
.im-undo:before {
  content: '\e076';
}
.im-redo:before {
  content: '\e077';
}
.im-rocket:before {
  content: '\e078';
}
.im-rss:before {
  content: '\e079';
}
.im-magnifier:before {
  content: '\e07a';
}
.im-magnifier-plus:before {
  content: '\e07b';
}
.im-magnifier-minus:before {
  content: '\e07c';
}
.im-share:before {
  content: '\e07d';
}
.im-shield:before {
  content: '\e07e';
}
.im-shopping-cart:before {
  content: '\e07f';
}
.im-sign-in:before {
  content: '\e080';
}
.im-sign-out:before {
  content: '\e081';
}
.im-spinner:before {
  content: '\e082';
}
.im-star:before {
  content: '\e083';
}
.im-star-half:before {
  content: '\e084';
}
.im-star-o:before {
  content: '\e085';
}
.im-sync:before {
  content: '\e086';
}
.im-table:before {
  content: '\e087';
}
.im-window-o:before {
  content: '\e088';
}
.im-windows-o:before {
  content: '\e089';
}
.im-thumb-up:before {
  content: '\e08a';
}
.im-thumb-down:before {
  content: '\e08b';
}
.im-x-mark:before {
  content: '\e08c';
}
.im-x-mark-circle:before {
  content: '\e08d';
}
.im-x-mark-circle-o:before {
  content: '\e0f2';
}
.im-trash-can:before {
  content: '\e08e';
}
.im-user-male:before {
  content: '\e08f';
}
.im-user-female:before {
  content: '\e090';
}
.im-user-circle:before {
  content: '\e091';
}
.im-users:before {
  content: '\e092';
}
.im-volume:before {
  content: '\e093';
}
.im-volume-off:before {
  content: '\e094';
}
.im-wifi:before {
  content: '\e095';
}
.im-tools:before {
  content: '\e096';
}
.im-dashboard:before {
  content: '\e097';
}
.im-archive:before {
  content: '\e098';
}
.im-save:before {
  content: '\e099';
}
.im-floppy-disk:before {
  content: '\e09a';
}
.im-sitemap:before {
  content: '\e09b';
}
.im-toggle:before {
  content: '\e09c';
}
.im-tag:before {
  content: '\e09d';
}
.im-tags:before {
  content: '\e09e';
}
.im-wizard:before {
  content: '\e09f';
}
.im-book:before {
  content: '\e0a0';
}
.im-fire:before {
  content: '\e0a1';
}
.im-id-card:before {
  content: '\e0a2';
}
.im-note-o:before {
  content: '\e0a3';
}
.im-control-panel:before {
  content: '\e0a4';
}
.im-facebook:before {
  content: '\e0a5';
}
.im-facebook-like:before {
  content: '\e0a6';
}
.im-twitter:before {
  content: '\e0a7';
}
.im-amazon:before {
  content: '\e0a8';
}
.im-android-os:before {
  content: '\e0a9';
}
.im-apple-os:before {
  content: '\e0aa';
}
.im-windows-os:before {
  content: '\e0ab';
}
.im-linux-os:before {
  content: '\e0ac';
}
.im-chrome:before {
  content: '\e0ad';
}
.im-ie:before {
  content: '\e0ae';
}
.im-edge:before {
  content: '\e0af';
}
.im-firefox:before {
  content: '\e0b0';
}
.im-safari:before {
  content: '\e0b1';
}
.im-opera:before {
  content: '\e0b2';
}
.im-behance:before {
  content: '\e0b3';
}
.im-blogger:before {
  content: '\e0b4';
}
.im-flickr:before {
  content: '\e0b5';
}
.im-github:before {
  content: '\e0b6';
}
.im-google-plus:before {
  content: '\e0b7';
}
.im-instagram:before {
  content: '\e0b8';
}
.im-linkedin:before {
  content: '\e0b9';
}
.im-pinterest:before {
  content: '\e0ba';
}
.im-skype:before {
  content: '\e0bb';
}
.im-snapchat:before {
  content: '\e0bc';
}
.im-soundcloud:before {
  content: '\e0bd';
}
.im-stackoverflow:before {
  content: '\e0be';
}
.im-stumbleupon:before {
  content: '\e0bf';
}
.im-tumblr:before {
  content: '\e0c0';
}
.im-xing:before {
  content: '\e0c1';
}
.im-youtube:before {
  content: '\e0c2';
}
.im-reddit:before {
  content: '\e0c3';
}
.im-vimeo:before {
  content: '\e0c4';
}
.im-vk:before {
  content: '\e0c5';
}
.im-whatsapp:before {
  content: '\e0c6';
}
.im-paypal:before {
  content: '\e0c7';
}
.im-twitch:before {
  content: '\e0c8';
}
.im-drop:before {
  content: '\e0c9';
}
.im-sun:before {
  content: '\e0ca';
}
.im-certificate-o:before {
  content: '\e0cb';
}
.im-graduation-hat:before {
  content: '\e0cc';
}
.im-store:before {
  content: '\e0cd';
}
.im-pin:before {
  content: '\e0ce';
}
.im-navigation:before {
  content: '\e0cf';
}
.im-keyboard:before {
  content: '\e0d0';
}
.im-cursor:before {
  content: '\e0d1';
}
.im-monitor-o:before {
  content: '\e0d2';
}
.im-laptop-o:before {
  content: '\e0d3';
}
.im-power:before {
  content: '\e0d4';
}
.im-pie-chart:before {
  content: '\e0d5';
}
.im-line-chart-up:before {
  content: '\e0d6';
}
.im-clock:before {
  content: '\e0d7';
}
.im-flip-chart-o:before {
  content: '\e0d8';
}
.im-gift:before {
  content: '\e0d9';
}
.im-leaf:before {
  content: '\e0da';
}
.im-bug:before {
  content: '\e0db';
}
.im-coffee:before {
  content: '\e0dc';
}
.im-diamond-o:before {
  content: '\e0dd';
}
.im-bell-active:before {
  content: '\e0de';
}
.im-history:before {
  content: '\e0df';
}
.im-gamepad:before {
  content: '\e0e0';
}
.im-binoculars:before {
  content: '\e0e1';
}
.im-paperplane:before {
  content: '\e0e2';
}
.im-wrench:before {
  content: '\e0e3';
}
.im-newspaper-o:before {
  content: '\e0e4';
}
.im-lifebuoy:before {
  content: '\e0e5';
}
.im-fingerprint:before {
  content: '\e0e6';
}
.im-date-o:before {
  content: '\e0e7';
}
.im-network:before {
  content: '\e0e8';
}
.im-target:before {
  content: '\e0e9';
}
.w5 {
  width: 5%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w65 {
  width: 65%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w85 {
  width: 85%;
}
.w90 {
  width: 90%;
}
.w95 {
  width: 95%;
}
.w100 {
  width: 100%;
}
.w-auto {
  width: auto;
}
.w-small {
  width: 480px;
}
.w-medium {
  width: 600px;
}
.w-big {
  width: 740px;
}
.w-large {
  width: 840px;
}
@media only screen and (max-width: 529px) {
  .w-auto-sm {
    width: auto;
  }
  .w100-sm,
  .w-small,
  .w-medium,
  .w-big,
  .w-large {
    width: 100%;
  }
}
.max-w5 {
  max-width: 5%;
}
.max-w10 {
  max-width: 10%;
}
.max-w15 {
  max-width: 15%;
}
.max-w20 {
  max-width: 20%;
}
.max-w25 {
  max-width: 25%;
}
.max-w30 {
  max-width: 30%;
}
.max-w35 {
  max-width: 35%;
}
.max-w40 {
  max-width: 40%;
}
.max-w45 {
  max-width: 45%;
}
.max-w50 {
  max-width: 50%;
}
.max-w55 {
  max-width: 55%;
}
.max-w60 {
  max-width: 60%;
}
.max-w65 {
  max-width: 65%;
}
.max-w70 {
  max-width: 70%;
}
.max-w75 {
  max-width: 75%;
}
.max-w80 {
  max-width: 80%;
}
.max-w85 {
  max-width: 85%;
}
.max-w90 {
  max-width: 90%;
}
.max-w95 {
  max-width: 95%;
}
.max-w100 {
  max-width: 100%;
}
.max-w-small {
  max-width: 480px;
}
.max-w-medium {
  max-width: 600px;
}
.max-w-big {
  max-width: 740px;
}
.max-w-large {
  max-width: 840px;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .max-w-auto-sm,
  .max-w-small,
  .max-w-medium,
  .max-w-big,
  .max-w-large {
    max-width: auto;
  }
}
.min-w5 {
  min-width: 5%;
}
.min-w10 {
  min-width: 10%;
}
.min-w15 {
  min-width: 15%;
}
.min-w20 {
  min-width: 20%;
}
.min-w25 {
  min-width: 25%;
}
.min-w30 {
  min-width: 30%;
}
.min-w35 {
  min-width: 35%;
}
.min-w40 {
  min-width: 40%;
}
.min-w45 {
  min-width: 45%;
}
.min-w50 {
  min-width: 50%;
}
.min-w55 {
  min-width: 55%;
}
.min-w60 {
  min-width: 60%;
}
.min-w65 {
  min-width: 65%;
}
.min-w70 {
  min-width: 70%;
}
.min-w75 {
  min-width: 75%;
}
.min-w80 {
  min-width: 80%;
}
.min-w85 {
  min-width: 85%;
}
.min-w90 {
  min-width: 90%;
}
.min-w95 {
  min-width: 95%;
}
.min-w100 {
  min-width: 100%;
}
.h25 {
  height: 25%;
}
.h50 {
  height: 50%;
}
.h100 {
  height: 100%;
}
.fs-10 {
  font-size: 10px;
  line-height: 1;
}
.fs-12 {
  font-size: 12px;
  line-height: 1;
}
.fs-14 {
  font-size: 14px;
  line-height: 1;
}
.fs-16 {
  font-size: 16px;
  line-height: 1;
}
.fs-18 {
  font-size: 18px;
  line-height: 1;
}
.fs-20 {
  font-size: 20px;
  line-height: 1;
}
.fs-22 {
  font-size: 22px;
  line-height: 1;
}
.group {
  *zoom: 1;
}
.group:before,
.group:after {
  content: "";
  display: table;
}
.group:after {
  clear: both;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}
.flex {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 529px) {
  .flex-column-sm {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .flex-w100-sm {
    flex: 0 0 100%;
  }
}
@media only screen and (max-width: 529px) and only screen and (max-width: 529px) {
  .flex-w100-sm {
    flex: 0 0 100% !important;
  }
}
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.display-block {
  display: block;
}
.hide {
  display: none !important;
}
@media only screen and (max-width: 529px) {
  .hide-mobile {
    display: none !important;
  }
}
@media only screen and (max-width: 529px) {
  .show-mobile {
    display: none !important;
  }
}
@media print {
  .hide-print {
    display: none !important;
  }
  .show-print {
    display: block !important;
  }
}
.no-scroll {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
}
.scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
.video-container {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  margin-bottom: 15px;
}
.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
.close {
  display: inline-block;
  min-height: 16px;
  min-width: 16px;
  line-height: 16px;
  vertical-align: middle;
  text-align: center;
  font-size: 12px;
  opacity: .6;
}
.close:hover {
  opacity: 1;
}
.close.small {
  font-size: 8px;
}
.close.big {
  font-size: 18px;
}
.close.white {
  color: #fff;
}
.caret {
  display: inline-block;
}
.button .caret {
  margin-right: -8px;
}
.overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
}
.overlay > .close {
  position: fixed;
  top: 1rem;
  right: 1rem;
}
@media print {
  * {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  h2,
  h3,
  h4 {
    page-break-after: avoid;
  }
  @page {
    margin: 0.5cm;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-fast {
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.message {
  font-family: Consolas, Monaco, 'Courier New', monospace;
  font-size: 13px;
  line-height: 20px;
  background: #e0e1e1;
  color: #313439;
  padding: 1rem;
  padding-right: 2.5em;
  padding-bottom: .75rem;
  margin-bottom: 24px;
  position: relative;
}
.message a {
  color: inherit;
}
.message h2,
.message h3,
.message h4,
.message h5,
.message h6 {
  margin-bottom: 0;
}
.message .close {
  position: absolute;
  right: 1rem;
  top: 1.1rem;
}
.message.error {
  background: #f03c69;
  color: #fff;
}
.message.success {
  background: #35beb1;
  color: #fff;
}
.message.warning {
  background: #f7ba45;
}
.message.focus {
  background: #1c86f2;
  color: #fff;
}
.message.black {
  background: #0d0d0e;
  color: #fff;
}
.message.inverted {
  background: #ffffff;
}
.modal-box {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 200;
}
.modal {
  position: relative;
  margin: auto;
  margin-top: 16px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  color: #000;
}
@media only screen and (max-width: 529px) {
  .modal input,
  .modal textarea {
    font-size: 16px;
  }
}
.modal .close {
  position: absolute;
  top: 18px;
  right: 16px;
  opacity: .3;
}
.modal .close:hover {
  opacity: 1;
}
.modal-header {
  padding: 24px 32px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.modal-header:empty {
  display: none;
}
.modal-body {
  padding: 36px 56px;
}
.box {
  padding: 12px;
  background: #ffffff;
}
.box.highlight {
  background: #f1f1f1;
  padding: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
.box.outline {
  border: 4px solid #f1f1f1;
}
.box :last-child {
  margin-bottom: 0;
}
.box.bg.primary {
  background: #00782c;
}
.box.bg.secondary {
  background: rgba(44, 44, 44, 0.6);
}
.box.bg.primary,
.box.bg.secondary {
  color: #ffffff;
}
.box.bg.primary h2,
.box.bg.secondary h2,
.box.bg.primary h3,
.box.bg.secondary h3,
.box.bg.primary h4,
.box.bg.secondary h4,
.box.bg.primary h5,
.box.bg.secondary h5,
.box.bg.primary h6,
.box.bg.secondary h6 {
  color: #ffffff;
}
.box.bg.primary .button,
.box.bg.secondary .button,
.box.bg.primary button,
.box.bg.secondary button {
  color: #000000;
  background-color: #ffffff;
}
.box.bg.primary .button:hover,
.box.bg.secondary .button:hover,
.box.bg.primary button:hover,
.box.bg.secondary button:hover {
  color: #000000;
  background-color: #ffffff;
}
.box.bg.primary .button:disabled,
.box.bg.secondary .button:disabled,
.box.bg.primary button:disabled,
.box.bg.secondary button:disabled,
.box.bg.primary .button.disabled,
.box.bg.secondary .button.disabled,
.box.bg.primary button.disabled,
.box.bg.secondary button.disabled {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
}
.box.bg.primary .button.outline,
.box.bg.secondary .button.outline,
.box.bg.primary button.outline,
.box.bg.secondary button.outline {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.box.bg.primary .button.outline:hover,
.box.bg.secondary .button.outline:hover,
.box.bg.primary button.outline:hover,
.box.bg.secondary button.outline:hover {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.box.bg.primary .button.outline:disabled,
.box.bg.secondary .button.outline:disabled,
.box.bg.primary button.outline:disabled,
.box.bg.secondary button.outline:disabled,
.box.bg.primary .button.outline.disabled,
.box.bg.secondary .button.outline.disabled,
.box.bg.primary button.outline.disabled,
.box.bg.secondary button.outline.disabled {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.box.bg.primary .button i.im,
.box.bg.secondary .button i.im,
.box.bg.primary button i.im,
.box.bg.secondary button i.im {
  font-size: 7px;
}
.box.bg.primary .button:hover,
.box.bg.secondary .button:hover,
.box.bg.primary button:hover,
.box.bg.secondary button:hover {
  opacity: .7;
}
.dropdown {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  width: 280px;
  font-size: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  max-height: 300px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.dropdown.dropdown-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-height: none;
  border: none;
}
.dropdown .close {
  margin: 20px auto;
}
.dropdown.open {
  overflow: auto;
}
.dropdown ul {
  list-style: none;
  margin: 0;
}
.dropdown ul li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07000000000000001);
}
.dropdown ul li:last-child {
  border-bottom: none;
}
.dropdown ul a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #000;
}
.dropdown ul a:hover {
  background: rgba(0, 0, 0, 0.05);
}
.loader,
.loader:after {
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
}
.loader {
  margin: 0;
  font-size: 10px;
  position: relative;
  top: 0;
  text-indent: -9999em;
  border-top: 2px solid rgba(0, 120, 44, 0.2);
  border-right: 2px solid rgba(0, 120, 44, 0.2);
  border-bottom: 2px solid rgba(0, 120, 44, 0.2);
  border-left: 2px solid #00782c;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.loader.secondary {
  border-top: 2px solid rgba(44, 44, 44, 0.2);
  border-right: 2px solid rgba(44, 44, 44, 0.2);
  border-bottom: 2px solid rgba(44, 44, 44, 0.2);
  border-left: 2px solid #2c2c2c;
}
.button .loader {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 2px solid #ffffff;
}
.button.outline .loader {
  border-top: 2px solid rgba(0, 120, 44, 0.2);
  border-right: 2px solid rgba(0, 120, 44, 0.2);
  border-bottom: 2px solid rgba(0, 120, 44, 0.2);
  border-left: 2px solid #00782c;
}
.button.secondary.outline .loader {
  border-top: 2px solid rgba(44, 44, 44, 0.2);
  border-right: 2px solid rgba(44, 44, 44, 0.2);
  border-bottom: 2px solid rgba(44, 44, 44, 0.2);
  border-left: 2px solid #2c2c2c;
}
.loader.prepend {
  margin-right: 5px;
  margin-top: -1px;
}
.loader.append {
  margin-left: 5px;
  margin-top: -1px;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media print {
  body {
    margin: 25px;
    margin-left: 25px !important;
  }
  main {
    margin-left: 0px !important;
    width: 95% !important;
  }
  .headroom {
    position: absolute;
    top: 0px;
    right: 0px;
  }
  header {
    position: absolute;
    top: 100px;
    right: 100px;
  }
  header .logo {
    width: 87px !important;
    height: 87px !important;
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
  }
  .molecule-header-contactslideout,
  .header-metainner {
    display: none !important;
  }
  .header-inner #mainnav,
  .header-inner #mobilenav-trigger {
    display: none !important;
  }
  .headroom {
    border: none !important;
  }
  .molecule-stage {
    display: none !important;
  }
  .molecule-breadcrumbs {
    display: none !important;
  }
  #content {
    margin-top: -100px;
  }
  #content h2.subheading {
    margin-top: 0px !important;
  }
  .molecule-newsletter-submit,
  footer {
    display: none !important;
  }
  aside {
    display: none !important;
  }
  .newsteaser-container {
    display: none !important;
  }
  .inner {
    margin-left: 0px !important;
  }
  .organism-references {
    margin-top: -50px !important;
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    padding-top: 0px !important;
  }
  section {
    padding: 0px !important;
  }
}
.im.im-circle.outline {
  border-radius: 50%;
  border: 2px solid #00782c;
  padding: 9px;
  height: 20px;
  width: 20px;
  text-align: center;
  box-sizing: content-box;
  line-height: 20px;
  position: relative;
  top: 2px;
}
.im.im-circle.outline:before {
  font-size: 20px;
}
.im.im-circle.outline.white {
  border: 2px solid #ffffff;
}
.crosshair {
  position: relative;
}
.crosshair:before,
.crosshair:after {
  position: absolute;
  content: '';
  background: #fff;
  display: block;
  top: -5px;
  left: -9px;
  transform: translate(-50%, -50%);
}
.crosshair.crosshair-dark:before,
.crosshair.crosshair-dark:after {
  background: #000;
}
.crosshair:before {
  height: 30px !important;
  width: 2px !important;
}
.crosshair:after {
  height: 2px !important;
  width: 30px !important;
}
.crosshair.crosshair-small:before {
  height: 20px !important;
}
.crosshair.crosshair-small:after {
  width: 20px !important;
}
@media only screen and (max-width: 529px) {
  .crosshair:before,
  .crosshair:after {
    content: none;
    display: none;
  }
}
.fake-signature {
  display: block;
  font-family: 'Nothing You Could Do', cursive !important;
  font-size: 25px;
  line-height: 1.5;
  margin-top: 12px;
  transform: skewY(-2deg);
  font-weight: bold;
  opacity: 0.7;
}
#CookiebotWidget button,
#CybotCookiebotDialog button {
  font-family: inherit;
  line-height: inherit;
  min-width: initial;
  min-height: initial;
}
#CookiebotWidget label,
#CybotCookiebotDialog label {
  display: initial;
}
#content {
  padding-bottom: 10vh;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  #content {
    overflow: hidden;
  }
}
@media only screen and (max-width: 529px) {
  #content {
    overflow: hidden;
  }
}
#content h2:not(.subheading) {
  margin-top: 36px;
  margin-bottom: 12px;
}
img[style*="float: left"] {
  margin: 0;
  margin-right: 24px;
  margin-bottom: 24px;
}
img[style*="float: right"] {
  margin: 0;
  margin-left: 24px;
  margin-bottom: 24px;
}
.image-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}
.list-process {
  list-style-type: none;
  counter-reset: my-badass-counter;
  padding-left: 0;
  margin-left: 0;
  margin-bottom: 24px;
}
.list-process > li {
  padding-left: 40px;
  position: relative;
  min-height: 35px;
  border-left: 2px solid #00782c;
  margin-left: 16px;
  margin-bottom: 24px;
}
.list-process > li h2,
.list-process > li h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0 !important;
  line-height: 24px;
}
.list-process > li:before {
  content: counter(my-badass-counter);
  counter-increment: my-badass-counter;
  position: absolute;
  text-indent: 1px;
  left: -17px;
  top: -2px;
  display: block;
  color: #fff;
  background: #00782c;
  font-weight: 800;
  text-align: center;
  height: 32px;
  width: 32px;
  line-height: 31px;
  border-radius: 50%;
}
.list-process > li:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7px 0 7px;
  border-color: #00782c transparent transparent transparent;
  position: absolute;
  bottom: -8px;
  left: -8px;
}
.list-process > li:last-child:after {
  display: block;
  height: 8px;
  width: 8px;
  border: none;
  background: #00782c;
  bottom: -7px;
  left: -5px;
}
.list-process > li ul,
.list-process > li li {
  font-weight: 400;
}
.list-process > li ul {
  margin-left: 12px;
}
.list-process > li ul li {
  position: relative;
  padding-left: 18px;
  list-style: none;
}
.list-process > li ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '•';
  color: #00782c;
  display: inline;
  font-size: 18px;
  vertical-align: bottom;
}
.list-process li {
  position: relative;
}
.logo {
  display: block;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin-left: 0.83333333%;
  float: left;
}
.logo svg {
  height: 100%;
  width: auto;
}
.molecule-breadcrumbs {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 36px;
  margin-top: 12px;
  font-size: 13px;
}
.molecule-breadcrumbs:before {
  content: '';
  width: 100%;
}
.molecule-breadcrumbs ul,
.molecule-breadcrumbs ol {
  display: block;
}
.molecule-breadcrumbs a,
.molecule-breadcrumbs li > span {
  font-style: normal;
  padding-left: 10px;
  text-decoration: none;
  color: #676b72;
  white-space: nowrap;
}
.molecule-breadcrumbs a:hover {
  color: #00782c;
}
.molecule-breadcrumbs.config-separator-arrow li:after {
  display: inline-block;
  font: normal normal normal 24px/1 'iconmonstr-iconic-font';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: '\e001';
}
.molecule-breadcrumbs.config-separator-arrow li:last-child:after {
  display: none;
}
.molecule-breadcrumbs li {
  display: inline-block;
}
.molecule-breadcrumbs li a:after,
.molecule-breadcrumbs li > span:after {
  display: inline-block;
  content: '/';
  color: rgba(0, 0, 0, 0.3);
  padding-left: 10px;
}
.molecule-breadcrumbs li:last-child a:after,
.molecule-breadcrumbs li:last-child span:after {
  display: none;
}
.molecule-breadcrumbs li:first-child span[itemprop=name] {
  display: none;
}
.molecule-breadcrumbs li:first-child span,
.molecule-breadcrumbs li:first-child a {
  padding-left: 0;
}
.molecule-breadcrumbs li.active a {
  color: #313439;
  text-decoration: none;
  cursor: text;
}
.molecule-categorylisting {
  margin-bottom: 6px !important;
}
.molecule-categorylisting li {
  display: inline-block;
  margin: 0 !important;
}
.molecule-categorylisting.includelinks li:hover span {
  color: #00782c;
}
.molecule-contact {
  position: relative;
  margin-bottom: 24px;
  text-align: center;
  display: flex !important;
  flex-direction: column;
}
.molecule-contact .box {
  padding: 10px;
  margin-left: -20px;
  margin-top: -20px;
  margin-right: -20px;
}
.molecule-contact .box * {
  color: #ffffff;
}
.molecule-contact .logoflag {
  position: absolute;
  z-index: 100;
  top: 12px;
  right: 24px;
  width: 60px;
  height: 70px;
  background: #fff;
  border-bottom: 6px solid green;
  padding: 8px;
  padding-top: 12px;
}
.molecule-contact .logoflag svg {
  vertical-align: bottom;
}
.molecule-contact figure {
  box-sizing: border-box;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 12px;
  position: relative;
  padding: 0;
}
.molecule-contact figure img {
  height: auto;
  display: block;
}
.molecule-contact figure figcaption {
  position: absolute;
  bottom: 10%;
  margin: 0 auto;
  color: #fff !important;
  font-family: 'Nothing You Could Do', cursive !important;
  top: inherit;
  font-size: 39px;
  transform: skewY(-6deg);
  display: block;
  text-align: center;
  left: 0;
  right: 0;
  opacity: 1;
  text-shadow: 0 0 8px #000;
}
.molecule-contact figure figcaption > * {
  padding: 0;
}
.molecule-contact .contact-text {
  background: #f1f1f1;
  margin: -12px;
  margin-top: 0;
  padding: 12px;
  flex-grow: 1;
}
.molecule-contact .contact-name-position {
  margin-bottom: 12px;
  min-height: 60px;
  line-height: 20px;
}
.molecule-contact .contact-name-position strong {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 24px;
  font-weight: normal;
  line-height: 32px;
  margin-bottom: 36px;
}
.molecule-contact h3,
.molecule-contact h4,
.molecule-contact h5,
.molecule-contact h6 {
  margin-bottom: 0;
}
.molecule-contact p:first-of-type,
.molecule-contact address {
  line-height: 22px;
}
.molecule-contact .contact-meta-data {
  line-height: 22px;
  font-size: 15px;
}
.molecule-contact .contact-meta-data strong {
  min-width: 55px;
  display: inline-block;
}
.molecule-contact .detailprofile {
  margin-top: 12px;
  width: 100%;
  text-align: center;
}
.molecule-contact .maillink {
  display: inline-block;
  font-size: 0.9em;
}
.molecule-contact .phonenumber {
  display: block;
}
aside .molecule-contact {
  margin-bottom: 24px;
}
aside .molecule-contact h3 {
  margin-bottom: 12px;
}
.molecule-cookiemessage {
  color: #ffffff;
  display: none;
  position: fixed;
  border-top: 1px solid #ffffff;
  background: #00782c;
  z-index: 9999;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 12px;
  padding-right: 12px;
}
.molecule-cookiemessage .inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.molecule-cookiemessage a {
  color: #ffffff;
  min-width: 120px;
  text-align: center;
}
.molecule-cookiemessage p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  font-weight: 600;
}
.molecule-cookiemessage #accept-cookies-link {
  background: #ffffff;
  color: #00782c;
  margin-left: 24px;
}
.molecule-cookiemessage #accept-cookies-link:hover  {
  background: #e6e6e6;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-cookiemessage {
    padding-left: 1%;
    padding-right: 1%;
  }
  .molecule-cookiemessage p {
    font-size: 0.9rem;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-cookiemessage p {
    font-size: 0.8rem;
  }
}
body {
  font-family: source sans pro, helvetica neue, Helvetica, Arial, sans-serif;
}
.cta_popup {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 440px;
  box-sizing: border-box;
  padding: 1.8rem 2.2rem;
  border-radius: 5px 0 0 0;
  background: #00782c;
  line-height: 1.5;
  z-index: 1000;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translate(110%, 110%) scale(0.8);
  transition: transform 0.6s ease;
  opacity: 0;
}
.cta_popup.cta-in {
  transform: translate(0%, 0%) scale(1);
  opacity: 1;
}
.cta_popup--head {
  color: #fff;
  font-weight: bold;
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.cta_popup--lead {
  color: #fff;
  font-size: 15px;
  margin-bottom: 1.5rem;
}
.cta_popup--button {
  display: block;
  background: #fff;
  color: #2D2D2D;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: transform 0.3s;
}
.cta_popup--button:hover {
  transform: scale(1.03);
}
.cta_popup--close {
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  box-shadow: none;
  position: absolute;
  top: 0;
  left: 0rem;
  transform: translate(-30%, -30%);
  height: 27px;
  width: 27px;
  border-radius: 50%;
  cursor: pointer;
  min-height: inherit;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #9D9B9B;
  background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTNweCIgaGVpZ2h0PSIxM3B4IiB2aWV3Qm94PSIwIDAgMTMgMTMiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgPGcgaWQ9IlBhZ2UtMSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICA8ZyBpZD0iQ1RBLVBvcHVwLW1vYmlsZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTM2My4wMDAwMDAsIC00NDMuMDAwMDAwKSIgZmlsbD0iI0ZGRkZGRiI+CiAgICAgIDxnIGlkPSJHcm91cCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMzU2LjAwMDAwMCwgNDM2LjAwMDAwMCkiPgogICAgICAgIDxnIGlkPSJub3VuX1hfMjI4OTk5OCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNy43MTQyODYsIDcuNzE0Mjg2KSI+CiAgICAgICAgICA8cGF0aCBkPSJNNS43ODE4ODY5NSw4LjIyMDI0ODAxIEwyLjk1Mzk2NTI1LDExLjA0ODE2OTcgQzEuMzY2ODY2MzQsMTIuNjQ5Njk2OCAtMS4wNzE0OTQ3MiwxMC4yMTEzMzU3IDAuNTE1NjA0MTkxLDguNjA5ODA4NjUgTDMuMzQzNTI1ODksNS43ODE4ODY5NSBMMC41MTU2MDQxOTEsMi45NTM5NjUyNSBDLTEuMDcxNDk0NzIsMS4zNjY4NjYzNCAxLjM2Njg2NjM0LC0xLjA3MTQ5NDcyIDIuOTUzOTY1MjUsMC41MTU2MDQxOTEgTDUuNzgxODg2OTUsMy4zNDM1MjU4OSBMOC42MDk4MDg2NSwwLjUxNTYwNDE5MSBDMTAuMjExMzM1NywtMS4wNzE0OTQ3MiAxMi42NDk2OTY4LDEuMzY2ODY2MzQgMTEuMDQ4MTY5NywyLjk1Mzk2NTI1IEw4LjIyMDI0ODAxLDUuNzgxODg2OTUgTDExLjA0ODE2OTcsOC42MDk4MDg2NSBDMTIuNjQ5Njk2OCwxMC4yMTEzMzU3IDEwLjIxMTMzNTcsMTIuNjQ5Njk2OCA4LjYwOTgwODY1LDExLjA0ODE2OTcgTDUuNzgxODg2OTUsOC4yMjAyNDgwMSBaIiBpZD0iUGF0aCIvPgogICAgICAgIDwvZz4KICAgICAgPC9nPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg==");
  transition: transform 0.3s;
}
.cta_popup--close:hover {
  transform: translate(-30%, -35%);
  background-color: #9D9B9B;
}
@media only screen and (max-width: 440px) {
  .cta_popup--close {
    left: inherit;
    right: 1rem;
  }
}
.molecule-denkomat-question {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  display: none;
  opacity: 1;
  margin-top: 20px;
  transition: opacity 0.5s ease-in-out;
  float: none !important;
}
.molecule-denkomat-question:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-denkomat-question {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
  }
  .molecule-denkomat-question:before {
    content: '';
    width: 100%;
  }
}
.molecule-denkomat-question:before {
  display: none;
}
.active .molecule-denkomat-question,
.answered .molecule-denkomat-question {
  display: flex;
  align-items: flex-start;
}
.answered .molecule-denkomat-question {
  opacity: 0;
}
.molecule-denkomat-question h2 {
  color: #fff !important;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 !important;
  margin-bottom: 24px !important;
  padding: 0;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-denkomat-question h2 {
    font-size: 15px;
    line-height: 1.1;
  }
}
.molecule-denkomat-question ul.answers {
  list-style-type: none;
  margin-left: 0;
}
.molecule-denkomat-question ul.answers li {
  margin-left: 0;
  padding: 0 !important;
}
.molecule-denkomat-question ul.answers li:before {
  display: none !important;
}
.molecule-denkomat-question ul.answers li {
  position: relative;
  margin-left: 45px;
  background: #fff;
  color: #000;
  padding: 10px 20px !important;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 4px;
  min-height: 40px;
  cursor: pointer;
  transition: transform 0.25s ease-in-out;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-denkomat-question ul.answers li {
    padding: 5px 10px !important;
    font-size: 11px;
  }
}
.molecule-denkomat-question ul.answers li:before,
.molecule-denkomat-question ul.answers li:after {
  content: '';
  display: block !important;
  position: absolute;
}
.molecule-denkomat-question ul.answers li:before {
  left: 0;
  background: #fff;
  top: 0;
  bottom: 0;
  width: 40px;
  transform: translateX(calc(-100% - 4px));
}
.molecule-denkomat-question ul.answers li:after {
  left: 0;
  top: 8px;
  height: 24px;
  width: 24px;
  border: 1px solid #ccc;
  border-radius: 50%;
  transform: translateX(calc(-100% - 12px));
}
section:not(.answered) .molecule-denkomat-question ul.answers li:hover {
  transform: scale(1.05);
}
.molecule-denkomat-question ul.answers li.selected:before,
section:not(.answered) .molecule-denkomat-question ul.answers li:hover:before {
  background-image: url('../../frontend/style/default/molecules/denkomat-question/assets/checkmark.svg');
  background-size: 80%;
  background-position: 5px 6px;
  background-repeat: no-repeat;
}
.molecule-denkomat-question .role-image-playing {
  position: relative;
  width: 30%;
  padding-right: 30px;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  flex-shrink: 0;
  align-items: flex-start;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-denkomat-question .role-image-playing {
    width: 20%;
  }
}
.molecule-denkomat-question .role-image-playing:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 60px 65px rgba(0, 0, 0, 0.2);
  left: 50%;
  transform: translateX(-50%) scaleY(0.4);
  width: 1px;
  height: 1px;
  border-radius: 50%;
}
.molecule-denkomat-question.answered .role-image-playing {
  opacity: 0;
}
.molecule-denkomat-question .role-image-playing {
  display: none;
}
.role-playing-4 .molecule-denkomat-question .role-image-playing-4 {
  display: block;
}
.role-playing-5 .molecule-denkomat-question .role-image-playing-5 {
  display: block;
}
.pos-2 .molecule-denkomat-question {
  margin: 0 auto;
  float: none;
}
.pos-3 .molecule-denkomat-question {
  margin-left: auto;
  margin-right: 20px;
}
.molecule-downloadlink {
  color: #313439;
  position: relative;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}
.molecule-downloadlink:hover {
  color: #313439;
}
.molecule-downloadlink:before {
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  right: 20px;
  top: 50%;
  margin-top: -4.5px;
  position: absolute;
}
.molecule-downloadlink:before {
  content: '';
  display: block;
  border-top: 1px solid #313439;
  border-left: 1px solid #313439;
  height: 6px;
  width: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.molecule-downloadlink:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.molecule-downloadlink:hover,
.molecule-downloadlink.active {
  background: #f8f8f8;
}
.molecule-downloadlink:hover:before,
.molecule-downloadlink.active:before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.molecule-downloadlink h3,
.molecule-downloadlink h4,
.molecule-downloadlink h5 {
  line-height: 20px;
}
.molecule-downloadlink h3,
.molecule-downloadlink h4,
.molecule-downloadlink h5,
.molecule-downloadlink h6,
.molecule-downloadlink p {
  margin-bottom: 0;
}
.molecule-downloadlink span {
  letter-spacing: 1px;
}
.molecule-downloadlink .im,
.molecule-downloadlink .download-desc {
  display: inline-block;
  vertical-align: top;
  line-height: 20px;
}
.molecule-downloadlink .im {
  font-size: 18px;
  margin-right: 10px;
  position: relative;
  top: 4px;
}
.molecule-downloadlink .download-desc {
  max-width: calc(100% - 70px);
}
aside .molecule-downloadlink {
  padding: 10px 5px;
}
aside .molecule-downloadlink h3,
aside .molecule-downloadlink h4,
aside .molecule-downloadlink h5 {
  font-size: 13px;
  line-height: 18px;
}
aside .molecule-downloadlink .download-desc {
  max-width: calc(100% - 60px);
}
aside .molecule-downloadlink:before {
  right: 14px;
}
.molecule-eventsdetail .event-meta {
  margin-bottom: 36px;
}
.molecule-eventsdetail .box {
  margin-bottom: 36px;
}
.molecule-eventslistentry {
  border-bottom: 1px solid #676b72;
  position: relative;
}
.molecule-eventslistentry h2,
.molecule-eventslistentry h3,
.molecule-eventslistentry h4,
.molecule-eventslistentry h5 {
  margin-bottom: 0;
}
.molecule-eventslistentry .events-meta {
  display: inline;
  float: left;
  width: 27.5%;
  margin: 0 0.83333333%;
}
.molecule-eventslistentry .events-meta:before {
  content: '';
  width: 100%;
}
.molecule-eventslistentry .events-meta svg {
  position: relative;
  margin-right: 12px;
  float: left;
  width: 28px;
  height: 28px;
  transform: none;
  fill: #bdbdbd;
}
.molecule-eventslistentry .events-meta span {
  height: 28px;
  font-size: 18px;
}
@media only screen and (max-width: 529px) {
  .molecule-eventslistentry .events-meta {
    width: 50%;
    padding-bottom: 18px;
  }
}
.molecule-eventslistentry .middle-part {
  display: inline;
  float: left;
  width: 56.66666667%;
  margin: 0 0.83333333%;
}
.molecule-eventslistentry .middle-part:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .molecule-eventslistentry .middle-part {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .molecule-eventslistentry .middle-part:before {
    content: '';
    width: 100%;
  }
}
.molecule-eventslistentry .middle-part strong {
  display: block;
}
.molecule-eventslistentry .readmore-container {
  display: inline;
  float: left;
  width: 6.66666667%;
  margin: 0 0.83333333%;
  margin-left: 5%;
  text-align: right;
}
.molecule-eventslistentry .readmore-container:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .molecule-eventslistentry .readmore-container {
    text-align: right;
    vertical-align: bottom;
    display: block;
    float: none;
    margin: 0;
    width: inherit;
  }
}
.molecule-eventslistentry a {
  text-decoration: none;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 12px;
  padding-right: 12px;
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.molecule-eventslistentry a:before,
.molecule-eventslistentry a:after {
  content: "";
  display: table;
}
.molecule-eventslistentry a:after {
  clear: both;
}
.molecule-eventslistentry a:hover {
  text-decoration: none;
}
.molecule-eventslistentry a:hover h2,
.molecule-eventslistentry a:hover h3,
.molecule-eventslistentry a:hover h4,
.molecule-eventslistentry a:hover h5 {
  color: #00782c;
}
.molecule-eventslistentry a:hover .readmore {
  border-color: #00782c;
}
.molecule-eventslistentry a:hover svg {
  fill: #00782c;
}
.molecule-eventslistentry .organizer-venue {
  display: block;
}
.molecule-eventslistentry .readmore {
  border: 1px solid #bdbdbd;
  border-radius: 45px;
  width: 25px;
  height: 25px;
  display: inline-block;
  text-align: center;
  padding-left: 2px;
  min-width: 25px;
}
.bg-dark a {
  color: #bdbdbd;
}
.bg-dark a span,
.bg-dark a strong {
  color: #bdbdbd;
}
.bg-dark a:hover {
  color: #ffffff;
}
.bg-dark a:hover span,
.bg-dark a:hover strong {
  color: #ffffff;
}
.bg-dark a:hover .readmore {
  border-color: #ffffff;
}
.bg-dark a:hover svg {
  fill: #ffffff;
}
main .molecule-eventslistentry:first-child {
  border-top: 1px solid #676b72;
}
aside .molecule-eventslistentry {
  position: relative;
}
aside .molecule-eventslistentry .events-meta {
  display: inline;
  float: left;
  width: 90%;
  margin: 0 0.83333333%;
  margin-bottom: 12px;
}
aside .molecule-eventslistentry .events-meta:before {
  content: '';
  width: 100%;
}
aside .molecule-eventslistentry .middle-part {
  display: inline;
  float: left;
  width: 90%;
  margin: 0 0.83333333%;
  font-weight: bold;
}
aside .molecule-eventslistentry .middle-part:before {
  content: '';
  width: 100%;
}
aside .molecule-eventslistentry .middle-part strong {
  margin-top: 12px;
  font-weight: bold;
}
aside .molecule-eventslistentry .middle-part .organizer-venue {
  font-weight: normal;
}
aside .molecule-eventslistentry .readmore-container {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
.molecule-eventslistentrystartpage {
  margin-bottom: 12px;
  padding-left: 80px;
  position: relative;
}
.molecule-eventslistentrystartpage p:last-of-type {
  margin-bottom: 12px;
}
.molecule-eventslistentrystartpage h2,
.molecule-eventslistentrystartpage h3,
.molecule-eventslistentrystartpage h4,
.molecule-eventslistentrystartpage h5 {
  margin-bottom: 0;
}
.molecule-eventslistentrystartpage .events-meta {
  margin-bottom: 12px;
}
.molecule-eventslistentrystartpage a {
  text-decoration: none;
  line-height: 18px;
}
.molecule-eventslistentrystartpage a:hover {
  text-decoration: none;
}
.molecule-eventslistentrystartpage a:hover h2,
.molecule-eventslistentrystartpage a:hover h3,
.molecule-eventslistentrystartpage a:hover h4,
.molecule-eventslistentrystartpage a:hover h5 {
  color: #00782c;
}
.molecule-eventslistentrystartpage h5 {
  line-height: 16px;
}
figure {
  background: #f1f1f1;
  padding: 4px;
  display: inline-block;
}
figure > a {
  display: inline-block;
  background: #fff;
  line-height: 0;
  padding: 15px;
  width: 100%;
}
figure figcaption {
  display: flex;
  align-items: center;
  margin-top: 4px;
  padding: 0px 6px;
  top: 0;
  color: #313439;
}
figure figcaption > * {
  padding: 5px 6px;
  line-height: 1.1;
}
figure figcaption .figcaption-label {
  padding-left: 10px;
}
figure figcaption .cite-source {
  margin-left: auto;
  font-size: 0.8em;
  line-height: 1.2;
}
.pswp {
  z-index: 9999;
}
.molecule-footer-navigations {
  clear: both;
  padding-top: 48px;
  padding-bottom: 48px;
  background: #f1f1f1;
}
@media only screen and (max-width: 529px) {
  .molecule-footer-navigations {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.molecule-footer-navigations .footer-first-nav {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
  /*
        @media @mobile, @tablet{
            ul{
                display: flex;
                flex-wrap: wrap;
                //justify-content: center;
            }
        }
        */
}
.molecule-footer-navigations .footer-first-nav:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-footer-navigations .footer-first-nav {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .molecule-footer-navigations .footer-first-nav:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-footer-navigations .footer-first-nav {
    margin-bottom: 36px;
  }
}
.molecule-footer-navigations .footer-first-nav ul li {
  position: relative;
  margin-bottom: 12px;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-footer-navigations .footer-first-nav ul li {
    float: left;
    margin-right: 24px;
  }
}
.molecule-footer-navigations .footer-first-nav ul li a {
  display: block;
  padding-left: 35px;
  text-decoration: none;
  font-size: 18px;
}
.molecule-footer-navigations .footer-first-nav ul li a i.im {
  position: absolute;
  display: block !important;
  left: 0px;
  top: 1px;
  border-radius: 50%;
  height: 22px;
  width: 22px;
  line-height: 23px;
  text-align: center;
  overflow: hidden;
  background: #fff;
  font-size: 9px;
}
.molecule-footer-navigations .footer-first-nav ul li a:hover i.im {
  background: #00782c;
  color: #ffffff;
}
@media only screen and (max-width: 529px) {
  .molecule-footer-navigations .footer-first-nav {
    text-align: center;
  }
  .molecule-footer-navigations .footer-first-nav ul {
    display: inline-flex;
    flex-direction: column;
    text-align: left;
  }
}
.molecule-footer-navigations .footer-second-nav {
  display: inline;
  float: left;
  width: 73.33333333%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
}
.molecule-footer-navigations .footer-second-nav:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-footer-navigations .footer-second-nav {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-left: 0.83333333%;
  }
  .molecule-footer-navigations .footer-second-nav:before {
    content: '';
    width: 100%;
  }
}
.molecule-footer-navigations .footer-second-nav ul {
  -moz-column-count: 4;
  -moz-column-gap: 20px;
  -webkit-column-count: 4;
  -webkit-column-gap: 20px;
  column-count: 4;
  column-gap: 20px;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-footer-navigations .footer-second-nav ul {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-footer-navigations .footer-second-nav ul {
    -moz-column-count: 3;
    -webkit-column-count: 3;
    column-count: 3;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-footer-navigations .footer-second-nav ul {
    display: none;
  }
}
.molecule-footer-navigations .footer-second-nav ul li {
  position: relative;
}
.molecule-footer-navigations .footer-second-nav ul li a {
  display: block;
  padding-left: 11px;
  text-decoration: none;
  font-size: 14px;
}
.molecule-footer-navigations .footer-second-nav ul li i.im {
  position: absolute;
  display: inline !important;
  top: 10px;
  left: 0px;
  font-size: 7px;
}
.molecule-header-contactslideout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  z-index: 1000;
  height: 144px;
  margin-top: -8px;
  background: #00782c;
  border: 8px solid #fff;
  border-bottom: 0;
  color: #fff;
  font-size: 17px;
}
.molecule-header-contactslideout:after,
.molecule-header-contactslideout:before {
  content: '';
  display: block;
  height: 80px;
  width: 80px;
  border: 8px solid #fff;
  border-radius: 50%;
  position: absolute;
}
.molecule-header-contactslideout:after {
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
}
.molecule-header-contactslideout:before {
  right: 0;
  top: 0;
  transform: translate(50%, -50%);
}
.molecule-header-contactslideout .container {
  display: flex;
  align-items: center;
  height: 100%;
}
.molecule-header-contactslideout .container:before {
  content: '';
  display: block;
  height: 100%;
  width: 8px;
  background: #fff;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  will-change: height;
  transition: height 0.2s linear;
}
header.slideout .molecule-header-contactslideout .container:before {
  height: calc(100% + 8px);
}
.molecule-header-contactslideout .left,
.molecule-header-contactslideout .right {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}
.molecule-header-contactslideout .left:before,
.molecule-header-contactslideout .right:before {
  content: '';
  width: 100%;
}
.molecule-header-contactslideout .left {
  padding-right: 48px;
}
.molecule-header-contactslideout .right {
  padding-left: 48px;
  display: flex;
  align-items: center;
}
.molecule-header-contactslideout .right:after,
.molecule-header-contactslideout .right:before {
  display: none;
}
.molecule-header-contactslideout .right h2,
.molecule-header-contactslideout .right h3,
.molecule-header-contactslideout .right a {
  color: #fff;
  line-height: 33.6px;
}
.molecule-header-contactslideout .right h2,
.molecule-header-contactslideout .right h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 0;
}
.molecule-header-contactslideout .right h3 {
  font-weight: 400;
  font-size: 18px;
}
.molecule-header-contactslideout .right i.im {
  font-size: 17px;
  margin-right: 12px;
  vertical-align: sub;
}
.molecule-header-contactslideout .right div {
  margin: auto;
}
.molecule-header-contactslideout i.im-location {
  float: left;
}
.molecule-header-contactslideout i.im-location {
  vertical-align: sub;
}
.molecule-header-contactslideout address {
  padding-left: 48px;
  font-style: normal;
  font-weight: 600;
  position: relative;
  margin-bottom: 0;
}
.molecule-header-contactslideout address p {
  margin-bottom: 0;
}
.molecule-header-contactslideout address a {
  position: absolute;
  right: 72px;
  bottom: 0;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-header-contactslideout {
    height: 384px;
  }
  .molecule-header-contactslideout .left,
  .molecule-header-contactslideout .right {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 0 !important;
    padding-right: 0 !important;
    flex-shrink: 0;
    text-align: center;
  }
  .molecule-header-contactslideout .left:before,
  .molecule-header-contactslideout .right:before {
    content: '';
    width: 100%;
  }
  .molecule-header-contactslideout .right {
    padding-top: 24px;
  }
  .molecule-header-contactslideout address {
    padding-left: 0;
  }
  .molecule-header-contactslideout address a {
    position: relative;
    margin-top: 24px;
    right: 0;
  }
  .molecule-header-contactslideout .im-location {
    display: none;
  }
  .molecule-header-contactslideout .container {
    display: block;
    padding-top: 24px;
  }
  .molecule-header-contactslideout .container:before {
    display: none;
  }
}
.molecule-jobofferslink {
  color: #313439;
  position: relative;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}
.molecule-jobofferslink:before {
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  right: 20px;
  top: 50%;
  margin-top: -4.5px;
  position: absolute;
}
.molecule-jobofferslink:before {
  content: '';
  display: block;
  border-top: 1px solid #313439;
  border-left: 1px solid #313439;
  height: 6px;
  width: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.molecule-jobofferslink:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.molecule-jobofferslink:hover,
.molecule-jobofferslink.active {
  background: #f8f8f8;
}
.molecule-jobofferslink:hover {
  color: #313439;
  background: #ffffff;
}
.molecule-jobofferslink h3,
.molecule-jobofferslink h4,
.molecule-jobofferslink h5 {
  color: #00782c;
}
.molecule-jobofferslink h3,
.molecule-jobofferslink h4,
.molecule-jobofferslink h5,
.molecule-jobofferslink p {
  margin-bottom: 0;
}
.molecule-jobofferslink span {
  letter-spacing: 1px;
}
.molecule-jobofferslink small {
  display: inline-block;
}
.molecule-jobofferslink i {
  font-size: 26px;
  margin-right: 10px;
}
.molecule-jobofferslink i,
.molecule-jobofferslink .joboffer-desc {
  display: inline-block;
  vertical-align: top;
}
.molecule-jobofferslink .joboffer-desc {
  max-width: calc(100% - 70px);
}
aside .molecule-jobofferslink h3,
aside .molecule-jobofferslink h4,
aside .molecule-jobofferslink h5 {
  font-size: 18px;
  line-height: 22px;
}
aside .molecule-jobofferslink .download-desc {
  max-width: calc(100% - 60px);
}
aside .molecule-jobofferslink:before {
  right: 14px;
}
.molecule-languageswitcher {
  position: absolute;
  top: 0;
  right: 0;
  background: #0d0d0e;
  color: #ffffff;
  letter-spacing: 1.5px;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-languageswitcher {
    display: none;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-languageswitcher {
    display: none;
  }
}
.molecule-languageswitcher a {
  display: block;
  padding: 0 10px;
  text-decoration: none;
  font-size: 13px;
  color: #ffffff;
}
.molecule-languageswitcher .dropdown {
  font-size: 15px;
  box-shadow: none;
  width: auto;
  top: 26px;
  border: 1px solid #f1f1f1;
}
.molecule-languageswitcher .dropdown ul a {
  color: #313439;
  padding: 8px 12px;
}
.molecule-languageswitcher .dropdown a:hover {
  color: #00782c;
  background: none;
}
.molecule-mainnav {
  float: right;
  font-size: 18px;
  letter-spacing: 0.5px;
  /*
	.hassubnav {


		> [data-level] {
			position: absolute;
			left: 0;
			background: @color-white;
			border: 1px solid @color-border;
			min-width: 280px;
			width: auto;
			text-align: left;
			height: auto;

			li {
				display: block;
			}

			a {
				//padding: 10px 1.2vw;
				line-height: 20px;
			}
		}

		


	}
	*/
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-mainnav {
    display: none;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-mainnav {
    display: none;
  }
}
.molecule-mainnav ul {
  width: 100%;
  height: 100%;
  text-align: left;
  margin-left: 0;
}
.molecule-mainnav li {
  display: inline-block;
  margin: 0;
}
.molecule-mainnav li:last-child {
  margin-right: 0;
}
.molecule-mainnav li.active a {
  color: #2c2c2c;
}
.molecule-mainnav a {
  color: #313439;
  text-decoration: none;
  padding: 14px 14px;
  display: block;
}
.molecule-mainnav a:hover {
  color: #00782c;
}
.molecule-mainnav i {
  font-size: 16px;
  vertical-align: -3px;
  display: inline-block;
}
.molecule-mainnav [data-level="0"] {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.molecule-mainnav [data-level="0"] > li {
  padding-left: 4px !important;
  padding-right: 4px !important;
  /*&:hover > a {		
				border-bottom: 2px solid @color-brand-primary;
			}*/
}
.molecule-mainnav [data-level="0"] > li.hassubnav {
  padding-bottom: 24px !important;
  margin-bottom: calc(-24px);
}
.molecule-mainnav [data-level="0"] > li:last-child {
  padding-right: 0px !important;
}
.molecule-mainnav [data-level="0"] > li > a {
  border-bottom: 2px solid #bdbdbd;
  text-align: center;
  padding-bottom: 9.6px;
}
.molecule-mainnav [data-level="0"] > li:hover {
  background: #f1f1f1;
}
.molecule-mainnav [data-level="0"] > li:hover > a {
  border-bottom: 2px solid #f1f1f1;
}
.molecule-mainnav [data-level="0"] > li:hover > a {
  border-bottom: 2px solid #00782c;
}
.molecule-mainnav [data-level="0"] .submenu-container {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19.2px;
  padding-top: 36px;
  width: 100%;
  transform: translateY(100%);
  background: #f1f1f1;
  border-bottom: 5px solid #00782c;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  *zoom: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul:before,
.molecule-mainnav [data-level="0"] .submenu-container > ul:after {
  content: "";
  display: table;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul:after {
  clear: both;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-mainnav [data-level="0"] .submenu-container > ul {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-mainnav [data-level="0"] .submenu-container > ul {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-mainnav [data-level="0"] .submenu-container > ul {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  font-size: 14px;
  letter-spacing: 0.25px;
  border-left: 4px solid #fff;
  margin: 0 0.83333333%;
  padding-left: 14px !important;
  padding-top: 5px !important;
  padding-bottom: 20px !important;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li:last-of-type {
  padding-right: 0 !important;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li > a,
.molecule-mainnav [data-level="0"] .submenu-container > ul > li > span {
  height: 36px;
  padding-bottom: 6px;
  line-height: 14.4px;
  text-transform: uppercase;
  font-weight: 800;
  padding-top: 0px !important;
  padding-left: 12px !important;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li > span {
  padding-left: 0px !important;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li ul {
  height: auto;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li ul.submenu-multicol {
  -moz-column-count: 2;
  -moz-column-gap: 20px;
  -webkit-column-count: 2;
  -webkit-column-gap: 20px;
  column-count: 2;
  column-gap: 20px;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-mainnav [data-level="0"] .submenu-container > ul > li ul.submenu-multicol {
    -moz-column-count: 1;
    -webkit-column-count: 1;
    column-count: 1;
  }
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li li {
  display: block;
  position: relative;
  padding-left: 11px !important;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul > li li i.im {
  position: absolute;
  display: inline !important;
  top: 10px;
  left: 0px;
  font-size: 7px;
}
.molecule-mainnav [data-level="0"] .submenu-container > ul li a {
  padding: 0 !important;
}
.molecule-mainnav [data-level="0"] > li.hassubnav:hover .submenu-container {
  display: block;
}
.molecule-mainnav .boxnav {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  *zoom: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.molecule-mainnav .boxnav:before,
.molecule-mainnav .boxnav:after {
  content: "";
  display: table;
}
.molecule-mainnav .boxnav:after {
  clear: both;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-mainnav .boxnav {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-mainnav .boxnav {
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-mainnav .boxnav {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.molecule-mainnav .boxnav a {
  position: relative;
  background: #fff;
  padding: 10px 26px;
  padding-left: 35px;
  margin: 0 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
.molecule-mainnav .boxnav a i.im {
  position: absolute;
  display: inline !important;
  top: 19px;
  left: 20px;
  font-size: 9px;
}
.molecule-message .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.molecule-message .inner:before {
  content: '';
  width: 100%;
}
.molecule-message .message.line {
  padding-left: 0;
  padding-right: 0;
}
@media only screen and (max-width: 529px) {
  .molecule-metanav .metanavitem {
    display: none;
  }
}
.molecule-mobilenav {
  z-index: 9999;
  overflow-y: scroll;
  overflow-x: hidden;
  display: block;
  background: #00782c;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -ms-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  height: 100%;
  opacity: 0;
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px), only screen and (min-width: 1400px) {
  .molecule-mobilenav {
    display: none !important;
  }
}
.molecule-mobilenav .logo svg * {
  fill: #ffffff;
}
.molecule-mobilenav .mobilenav-header {
  z-index: 9999;
  position: relative;
  height: 70px;
}
.molecule-mobilenav .mobilenav-header .inner {
  height: 100%;
}
.molecule-mobilenav #mobilenav-close {
  color: #ffffff;
  opacity: 1;
  position: absolute;
  top: 0;
  right: 0px;
  padding: 25px;
}
.molecule-mobilenav #mobilenav-close:hover {
  opacity: .8;
}
.molecule-mobilenav .mobilenav-back {
  color: #ffffff;
  cursor: pointer;
  display: none;
  position: absolute;
  z-index: 9999;
  top: 50%;
  margin-top: -12px;
  left: 20px;
}
.molecule-mobilenav .mobilenav-back * {
  vertical-align: middle;
  color: #ffffff;
}
.molecule-mobilenav .denkomat-stoerer {
  background-image: url('../../frontend/style/default/frontend/style/default/frontend/style/default/organisms/header/stoerer-denkomat.png');
  background-size: 100%;
  background-repeat: no-repeat;
  height: 61px;
  width: 187px;
  top: 10px;
  left: 50%;
  display: block;
  transform: translateX(calc(-31%));
  position: absolute;
}
.molecule-mobilenav.active {
  opacity: 1;
  z-index: 99999;
  -ms-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}
.molecule-mobilenav .mobilenav-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.molecule-mobilenav .mobilenav-slider-inner {
  -ms-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  height: 100%;
  overflow-y: scroll;
}
.molecule-mobilenav .mobilenav-slide {
  float: left;
  width: 100%;
  text-align: center;
  overflow-y: scroll;
}
.molecule-mobilenav .mobilenav-slide a {
  font-size: 1.2em;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #ffffff;
  display: block;
  text-decoration: none;
}
.molecule-mobilenav .mobilenav-slide a:hover {
  opacity: .8;
}
.molecule-mobilenav .mobilenav-slide span {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1.875em;
  color: white;
  text-decoration: underline;
  line-height: 9vh;
}
#contact-data {
  font-size: 16px;
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  letter-spacing: .5px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: right;
}
#contact-data:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  #contact-data {
    display: none;
  }
}
@media only screen and (max-width: 529px) {
  #contact-data {
    display: none;
  }
}
#contact-data li {
  display: inline-block;
  margin-left: 30px;
}
#contact-data li:first-child {
  margin-left: 0;
}
#contact-data li:last-child {
  margin-right: 20px;
}
@media only screen and (max-width: 529px) {
  #contact-data li:last-child {
    margin-left: 0px;
  }
}
#contact-data a {
  display: block;
  text-decoration: none;
  color: #00782c;
  line-height: 40px;
}
#contact-data a * {
  vertical-align: middle;
}
#contact-data a .im {
  margin-right: 12px;
}
.molecule-mobilenav #contact-data {
  position: absolute;
  top: initial;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  text-align: center;
  padding-top: 20px;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-mobilenav #contact-data {
    display: block;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-mobilenav #contact-data {
    display: block;
  }
}
.molecule-mobilenav #contact-data a {
  color: #ffffff;
}
.molucule-news-stage-entry {
  max-width: 1800px !important;
  position: relative;
  margin: auto;
}
.molucule-news-stage-entry .molecule-newslistentry {
  z-index: 1;
  margin-top: 36px;
}
@media only screen and (max-width: 529px) {
  .molucule-news-stage-entry .molecule-newslistentry {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .molucule-news-stage-entry .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molucule-news-stage-entry .molecule-newslistentry {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .molucule-news-stage-entry .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molucule-news-stage-entry .molecule-newslistentry {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .molucule-news-stage-entry .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover {
    transform: none;
    box-shadow: none;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover {
    transform: none;
    box-shadow: none;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover {
    transform: none;
    box-shadow: none;
  }
}
@media only screen and (max-width: 529px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover .inner-content {
    border: 1px solid #00782c;
    border-top: 0px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover .inner-content {
    border: 1px solid #00782c;
    border-top: 0px;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molucule-news-stage-entry .molecule-newslistentry:hover .inner-content {
    border: 1px solid #00782c;
    border-top: 0px;
  }
}
@media only screen and (min-width: 1129px) {
  .molucule-news-stage-entry .molecule-newslistentry {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-top: 36px;
  }
  .molucule-news-stage-entry .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 1400px) {
  .molucule-news-stage-entry .molecule-newslistentry {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-top: 36px;
  }
  .molucule-news-stage-entry .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
}
.molucule-news-stage-entry .molecule-newslistentry .inner-content {
  padding-top: 24px;
  border: 1px solid #ffffff;
  border-top: 0px;
}
.molucule-news-stage-entry .molecule-newslistentry .button {
  margin-top: 24px;
}
.molucule-news-stage-entry .molecule-newslistentry:hover .button {
  color: rgba(49, 52, 57, 0.6);
  border-color: rgba(49, 52, 57, 0.5);
}
.molucule-news-stage-entry .molecule-newslistentry .time-flag {
  left: 0px;
  top: -36px;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 5px;
  padding-bottom: 5px;
}
.molucule-news-stage-entry .molecule-newslistentry .time-flag:before {
  border-width: 36px 0 0px 36px;
  border-color: transparent transparent transparent #00782c;
  right: -36px;
}
.molucule-news-stage-entry .molecule-newslistentry .time-flag time {
  font-size: 1.2em;
}
.molucule-news-stage-entry .container-outer {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 529px) {
  .molucule-news-stage-entry .container-outer {
    position: relative;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molucule-news-stage-entry .container-outer {
    position: relative;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molucule-news-stage-entry .container-outer {
    position: relative;
  }
}
.molucule-news-stage-entry .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}
@media only screen and (min-width: 1129px) {
  .molucule-news-stage-entry.right .molecule-newslistentry {
    margin-left: 50.83333333%;
  }
}
@media only screen and (min-width: 1400px) {
  .molucule-news-stage-entry.right .molecule-newslistentry {
    margin-left: 67.5%;
  }
}
.molucule-news-stage-entry .picture-holder {
  position: relative;
}
.molucule-news-stage-entry .picture-holder img {
  vertical-align: middle;
}
.molucule-news-stage-entry .picture-holder .source {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  background: #f1f1f1;
  padding: 6px;
}
.molecule-newsdetail {
  /*
	.column(8);
	//.push(2);

	@media @mobile {
		.column(12);
		.push(0);
	}
	*/
}
.molecule-newsdetail h1,
.molecule-newsdetail .molecule-mobilenav .mobilenav-slide a {
  margin-bottom: 12px;
}
.molecule-newsdetail .news-meta {
  padding-top: 0px;
  margin-bottom: 24px;
}
.molecule-newsdetail .news-meta i {
  vertical-align: middle;
}
.molecule-newsdetail .box {
  margin-bottom: 36px;
}
.molecule-newsdetail .entry-header .entry-meta {
  overflow: hidden;
  margin-top: 48px;
  margin-bottom: 24px;
}
.molecule-newsdetail time {
  font-size: 100%;
}
.molecule-newsletter-submit {
  background: #00782c;
  padding-top: 12px;
  padding-bottom: 12px;
}
.molecule-newsletter-submit .container,
.molecule-newsletter-submit .container > div {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit .container,
  .molecule-newsletter-submit .container > div {
    flex-direction: column;
    text-align: center;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-newsletter-submit .container > div {
    flex-direction: column;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit .container {
    flex-direction: column;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.molecule-newsletter-submit h2,
.molecule-newsletter-submit p,
.molecule-newsletter-submit a {
  color: #fff !important;
  margin-bottom: 0 !important;
}
.molecule-newsletter-submit h2,
.molecule-newsletter-submit p {
  margin-left: 24px;
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit h2,
  .molecule-newsletter-submit p {
    margin-left: 0;
  }
}
.molecule-newsletter-submit i {
  top: 0px !important;
  margin-left: 5px;
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit i {
    display: none;
  }
}
.molecule-newsletter-submit h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.molecule-newsletter-submit p {
  line-height: 1.2;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-newsletter-submit p {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit p {
    margin-top: 6px;
  }
}
.molecule-newsletter-submit a.button {
  color: #ffffff;
  background-color: #ffffff;
  margin-left: 48px;
}
.molecule-newsletter-submit a.button:hover {
  color: #ffffff;
  background-color: #ffffff;
}
.molecule-newsletter-submit a.button:disabled,
.molecule-newsletter-submit a.button.disabled {
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
}
.molecule-newsletter-submit a.button.outline {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
.molecule-newsletter-submit a.button.outline:hover {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
.molecule-newsletter-submit a.button.outline:disabled,
.molecule-newsletter-submit a.button.outline.disabled {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
.molecule-newsletter-submit a.button i.im {
  font-size: 7px;
}
@media only screen and (max-width: 529px) {
  .molecule-newsletter-submit a.button {
    margin-top: 12px;
    margin-left: 0px;
  }
}
.organism-news .molecule-newslistentry .time-flag,
.organism-newsteaser .molecule-newslistentry .time-flag {
  right: 0px;
}
.organism-news .molecule-newslistentry .time-flag:before,
.organism-newsteaser .molecule-newslistentry .time-flag:before {
  left: -25px;
}
.molecule-newslistentry {
  border-bottom: 1px solid #f1f1f1;
  background: #f1f1f1;
  transition: all 0.25s ease-in-out;
  position: relative;
  display: inline;
  float: left;
  width: 44.16666667%;
  margin: 0 0.83333333%;
  margin-bottom: 72px;
  display: block;
}
.molecule-newslistentry:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 640px) {
  .molecule-newslistentry {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 72px;
  }
  .molecule-newslistentry:before {
    content: '';
    width: 100%;
  }
  .molecule-newslistentry:last-of-type {
    margin-bottom: 0px;
  }
}
.molecule-newslistentry .time-flag {
  position: absolute;
  top: -26px;
  padding-left: 24px;
  padding-right: 24px;
  background: #00782c;
}
.molecule-newslistentry .time-flag:before {
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12.5px 26px 25px;
  border-color: transparent transparent #00782c transparent;
  position: absolute;
  top: 0px;
}
.molecule-newslistentry .time-flag time {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1em;
  line-height: 26px;
  width: 100%;
  height: 100%;
  display: block;
  color: #ffffff;
}
.molecule-newslistentry:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.molecule-newslistentry a {
  text-decoration: none;
  display: block;
}
.molecule-newslistentry a figcaption {
  color: #313439;
}
.molecule-newslistentry a:hover {
  text-decoration: none;
}
.molecule-newslistentry:hover {
  transform: translate(-5px, -5px);
  box-shadow: 3px 4px 1px rgba(128, 128, 128, 0.8);
  cursor: pointer;
}
.molecule-newslistentry:hover .readmore {
  color: #313439;
}
.molecule-newslistentry .news-meta {
  margin-bottom: 24px;
  float: left;
}
.molecule-newslistentry .news-meta i {
  vertical-align: middle;
}
.molecule-newslistentry p,
.molecule-newslistentry ul,
.molecule-newslistentry li,
.molecule-newslistentry blockquote,
.molecule-newslistentry hr {
  margin-bottom: 24px;
}
.molecule-newslistentry .readmore {
  color: #00782c;
  font-weight: bold;
  white-space: nowrap;
}
.molecule-newslistentry .newslistentry-image-placeholder {
  width: 100%;
  padding-bottom: 61.3%;
  height: 0;
  position: relative;
  background: #00782c;
  color: #ffffff;
  margin-bottom: 6px;
}
.molecule-newslistentry .newslistentry-image-placeholder i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
.molecule-newslistentry .inner-content {
  padding: 24px;
  padding-top: 8.4px;
}
.molecule-newslistentry h3,
.molecule-newslistentry p {
  color: #313439 !important;
  margin-bottom: 0px;
}
.molecule-newslistentry h3 {
  font-size: 1.4em;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.molecule-newslistentry p {
  font-size: 0.9em;
  line-height: 1.7;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}
.molecule-newslistentry p .readmore {
  hyphens: none;
}
.molecule-nojsmessage .message {
  display: block;
  position: relative;
  height: auto;
}
.molecule-nojsmessage p {
  margin-bottom: 0;
}
.molecule-outdatedbrowsermessage .message {
  display: block;
  position: relative;
  height: auto;
}
.molecule-outdatedbrowsermessage p {
  margin-bottom: 0;
}
.molecule-pageteaserbox {
  padding: 10px;
}
.molecule-pageteaserbox.bg {
  background: #ffffff;
  border: 1px solid #f1f1f1;
}
.molecule-pageteaserbox:hover .card-image:before,
.molecule-pageteaserbox:hover .card-image:after {
  opacity: 1.0;
}
.molecule-pageteaserbox:hover .arrow {
  background: #00782c;
}
.molecule-pageteaserbox:hover .arrow:before {
  border-color: #ffffff;
}
.molecule-pageteaserbox h3 {
  max-width: 100%;
  text-align: center;
}
.molecule-pageteaserbox .card-inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  width: 100%;
}
.molecule-pageteaserbox .card-inner .card-text {
  -ms-flex-self: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  width: 100%;
}
.molecule-pageteaserbox .card-inner .card-text h3 {
  margin-bottom: 0;
}
.molecule-pageteaserbox .card-inner .card-image {
  width: 100%;
  -webkit-align-self: flex-center;
  -ms-flex-item-align: center;
  align-self: center;
  margin-top: 18px;
}
.molecule-pageteaserbox .card-inner .card-image img {
  display: block;
  margin: 0 auto;
}
.molecule-pageteaserbox .card-text {
  position: relative;
}
aside .molecule-pageteaserbox {
  margin-bottom: 48px;
}
.molecule-pagination {
  margin: 24px 0;
}
.molecule-pagination ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.molecule-pagination.centered ul {
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.molecule-pagination em,
.molecule-pagination a {
  display: inline-block;
  font-style: normal;
  padding: 8px 16px;
  line-height: 20px;
  white-space: nowrap;
  border: 1px solid transparent;
  margin-right: 2px;
}
.molecule-pagination a {
  text-decoration: none;
  color: #000;
  border: 1px solid #f1f1f1;
  background: #ffffff;
}
.molecule-pagination a:hover {
  color: rgba(0, 0, 0, 0.5);
  background: #f4f4f4;
}
.molecule-pagination em,
.molecule-pagination li.active a {
  color: rgba(0, 0, 0, 0.5);
  background: #f4f4f4;
  cursor: default;
  background: #00782c;
  color: #ffffff;
}
.molecule-pagination.upper {
  font-size: 11px;
}
.molecule-pagination.pager em,
.molecule-pagination.pager a {
  border-radius: 24px;
  border-color: rgba(0, 0, 0, 0.1);
}
.molecule-pagination.pager li {
  -webkit-flex-basis: 50%;
  -ms-flex-basis: 50%;
  flex-basis: 50%;
}
.molecule-pagination.pager li.next {
  text-align: right;
}
.molecule-pagination.pager.centered li {
  -webkit-flex-basis: auto;
  -ms-flex-basis: auto;
  flex-basis: auto;
  margin-left: 4px;
  margin-right: 4px;
}
.molecule-pagination.pager.flat em,
.molecule-pagination.pager.flat a {
  border: none;
  display: block;
  padding: 0;
}
.molecule-pagination.pager.flat a {
  font-weight: bold;
}
.molecule-pagination.pager.flat a:hover {
  background: none;
  text-decoration: underline;
}
.molecule-printbutton {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.molecule-printbutton:before {
  content: '';
  width: 100%;
}
.molecule-printbutton a:hover {
  text-decoration: none;
  color: #313439;
}
#scrolltotop {
  -webkit-animation-name: animatescrolltotop;
  animation-name: animatescrolltotop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  right: 0.83333333%;
  bottom: 0;
  width: 49px;
  height: 49px;
  line-height: 49px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  -ms-transition: all ease-in-out 0.2s;
  -moz-transition: all ease-in-out 0.2s;
  -webkit-transition: all ease-in-out 0.2s;
  transition: all ease-in-out 0.2s;
}
#scrolltotop .im {
  font-size: 16px !important;
}
@media only screen and (max-width: 529px) {
  #scrolltotop {
    right: calc(50% - 24.5px);
    bottom: -50px;
  }
}
@-webkit-keyframes animatescrolltotop {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes animatescrolltotop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}
.animatescrolltotop {
  -webkit-animation-name: animatescrolltotop;
  animation-name: animatescrolltotop;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.molecule-searchbox #search-field {
  background: transparent;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: #2c2c2c;
  text-transform: uppercase;
  padding: 0;
  line-height: 24px;
  height: auto;
  padding: 3px 14px;
  border: 1px solid #f1f1f1;
  border-top: none;
  border-radius: 0;
  box-shadow: none;
  float: left;
  width: 120px;
  height: 30px;
}
.molecule-searchbox #search-field::placeholder {
  color: #2c2c2c;
}
.molecule-searchbox #search-field:focus {
  border: 1px solid #00782c;
  border-right: none;
  border-top: none;
}
.molecule-searchbox #search-field:focus + div input {
  border: 1px solid #00782c;
  border-left: none;
  border-top: none;
}
.molecule-searchbox fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.molecule-searchbox fieldset > div {
  float: right;
  position: relative;
  border-left: none;
  border-top: none;
  cursor: pointer;
}
.molecule-searchbox fieldset > div input {
  position: relative;
  height: 30px;
  width: 36px;
  min-height: auto;
  background: transparent;
  padding: 0;
  z-index: 2;
}
.molecule-searchbox fieldset > div input:hover {
  background: transparent;
}
.molecule-searchbox fieldset > div input:focus {
  border: none;
}
.molecule-searchbox fieldset > div svg {
  position: absolute;
  right: 10px;
  height: 15px;
  width: 15px;
  top: 7px;
  z-index: 1;
}
.molecule-searchbox fieldset > div:hover {
  background: #e0e1e1;
}
.molecule-searchbox #search-form {
  margin: 0;
  padding: 0;
}
.molecule-seotext-container {
  display: inline;
  float: left;
  width: 90%;
  margin: 0 0.83333333%;
}
.molecule-seotext-container:before {
  content: '';
  width: 100%;
}
.molecule-seotext-container h2 {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #787f8b;
}
.molecule-seotext-container p {
  display: block;
  text-align: justify;
  font-size: 13px;
  line-height: 19.2px;
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
}
@media only screen and (max-width: 529px) {
  .molecule-seotext-container p {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}
aside .molecule-sidebarbox {
  margin-bottom: 24px;
}
.molecule-sidebarbox.outline {
  padding: 15px 15px 15px 15px;
}
.molecule-sidebarbox h3,
.molecule-sidebarbox h4 {
  font-weight: normal;
  color: #000;
}
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) h3,
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) h4,
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) p,
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) a.button {
  color: #2c2c2c !important;
}
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) a.button {
  border-color: #2c2c2c !important;
  opacity: 1;
}
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) a.button .icon-download {
  opacity: 1;
}
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) a.button:hover {
  color: #0d0d0e !important;
  border-color: #0d0d0e !important;
  opacity: 0.6;
}
.molecule-sidebarbox.default.molecule-sidebarbox:not(.separator) a.button:hover .icon-download {
  opacity: 0.6;
}
.molecule-sidebarbox.separator {
  margin-top: 48px;
  margin-bottom: 6px;
}
.molecule-sidebarbox.separator h4 {
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  background: #00782c;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}
.molecule-sidebarbox.box.has-icon {
  position: relative;
  padding-top: 144px;
  text-align: center;
}
.molecule-sidebarbox.box.has-icon:before {
  display: block;
  width: 130px;
  height: 130px;
  position: absolute;
  right: 0px;
  top: 0px;
  border-radius: 50%;
  border: 1px solid #bdbdbd;
  line-height: 55px;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  background-size: 55px;
  background-position: 50%;
  content: '';
}
.molecule-sidebarbox.config-style-target:before {
  background-image: url('../../frontend/style/default/molecules/sidebarbox/icons/icon_target.svg');
}
.molecule-sidebarbox.config-style-facts:before {
  background-image: url('../../frontend/style/default/molecules/sidebarbox/icons/icon_facts.svg');
}
.molecule-sidebarbox.config-style-sustainability:before {
  background-image: url('../../frontend/style/default/molecules/sidebarbox/icons/icon_sustainability.svg');
}
.molecule-sidebarbox.config-style-star:before {
  background-image: url('../../frontend/style/default/molecules/sidebarbox/icons/icon_star.svg');
}
.molecule-sidebarbox a {
  position: relative;
}
.molecule-sidebarbox a .icon-download {
  background-repeat: no-repeat;
  background-size: 18px 22px;
  background-position: 50%;
  background-image: url('../../frontend/style/default/molecules/sidebarbox/icons/icon-download.svg');
  content: '';
  width: 18px !important;
  height: 22px !important;
  display: block !important;
  position: absolute !important;
  right: 32px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}
.molecule-sidebarbox a:hover .icon-download {
  opacity: 0.6;
}
.molecule-sidebartableofcontents {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 24px;
}
.molecule-sidebartableofcontents:before {
  content: '';
  width: 100%;
}
.molecule-sidebartableofcontents ul {
  margin-bottom: 0;
}
.molecule-sidebartableofcontents li {
  display: inline-block;
  margin-bottom: 4px;
}
.molecule-sidebartableofcontents .button.dark.active {
  background: #00782c;
}
.molecule-slider {
  margin-top: -10vh;
  margin-bottom: 48px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.molecule-slider .container {
  position: relative;
}
.molecule-slider .slide {
  position: relative;
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.molecule-slider .slider-image {
  display: block;
  overflow: hidden;
  max-width: 1800px;
  margin: 0 auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.molecule-slider .slider-image.loaded {
  opacity: 1 !important;
  -ms-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.molecule-slider .slider-image img {
  display: block;
}
.molecule-slider .slider-hero {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  text-align: center;
}
.molecule-slider .slider-hero h1,
.molecule-slider .slider-hero p,
.molecule-slider .slider-hero .molecule-mobilenav .mobilenav-slide a {
  color: #ffffff;
}
.molecule-slider .slider-hero .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.molecule-slider .slider-hero-aligner {
  margin: auto;
}
.molecule-slider .image-container {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  height: 50vh;
  padding-bottom: 0;
  min-height: 400px;
  background-position: center center;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-slider .image-container {
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding-bottom: 35% !important;
    min-height: initial;
    margin-bottom: 0;
    background-position: center center;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-slider .image-container {
    width: 100%;
    margin: 0 auto;
    height: 0;
    padding-bottom: 30% !important;
    min-height: initial;
    margin-bottom: 0;
    background-position: center center;
  }
}
.molecule-slider .description a {
  display: none;
}
.molecule-slider .owl-controls {
  width: 100%;
  position: absolute;
  top: 45%;
  height: 40px;
  margin-top: -20px;
}
@media only screen and (max-width: 529px) {
  .molecule-slider .owl-controls {
    bottom: -10px;
    top: initial;
  }
}
.molecule-slider .owl-controls .owl-pagination {
  display: none;
}
@media only screen and (max-width: 529px) {
  .molecule-slider .owl-controls .owl-pagination {
    display: block;
  }
}
@media only screen and (max-width: 529px) {
  .molecule-slider .owl-controls .owl-buttons {
    display: none !important;
  }
}
.molecule-slider .owl-controls .owl-buttons div {
  opacity: 1;
  background: #ffffff;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.molecule-slider .owl-controls .owl-buttons div:before {
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.molecule-slider .owl-controls .owl-buttons div:hover {
  background: #00782c;
  color: #ffffff;
}
.molecule-slider .owl-controls .owl-buttons div:hover:before {
  border-color: #ffffff;
}
.molecule-slider .owl-controls .owl-buttons div:active {
  margin-top: 2px;
}
.molecule-slider .owl-controls .owl-prev {
  left: 24px;
  right: 24px;
  display: block;
  box-shadow: 0px 0px 0px 1px #00782c;
}
.molecule-slider .owl-controls .owl-prev:before {
  content: '';
  display: block;
  border-top: 1px solid #00782c;
  border-left: 1px solid #00782c;
  height: 12px;
  width: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.molecule-slider .owl-controls .owl-prev:before {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg);
}
.molecule-slider .owl-controls .owl-prev:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -7px;
}
.molecule-slider .owl-controls .owl-next {
  right: 24px;
  display: block;
  box-shadow: 0px 0px 0px 1px #00782c;
}
.molecule-slider .owl-controls .owl-next:before {
  content: '';
  display: block;
  border-top: 1px solid #00782c;
  border-left: 1px solid #00782c;
  height: 12px;
  width: 12px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.molecule-slider .owl-controls .owl-next:before {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.molecule-slider .owl-controls .owl-next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -9px;
  margin-top: -7px;
}
.molecule-slider .owl-controls .owl-page.active span {
  background: #00782c;
}
.owl-theme .owl-controls .owl-page span {
  height: 2px !important;
  width: 32px !important;
}
.molecule-socials .molecule-socials__inner {
  background: #fff;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translate(-50%, 0%);
  max-width: calc(100% - 20px);
  border-bottom: 4px solid #00782c;
  padding: 20px 5% 19px 5%;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 4px 4px 0 0;
}
.molecule-socials .molecule-socials__inner .innerwrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.molecule-socials .molecule-socials__inner span {
  display: block;
  font-size: 18px;
  white-space: nowrap;
  text-transform: none;
  margin-right: 40px;
}
.molecule-socials .molecule-socials__inner .socials {
  display: flex;
  margin: 0;
  align-items: center;
  flex-shrink: 0;
}
.molecule-socials .molecule-socials__inner .socials a {
  display: block;
  transform-origin: center;
  transform: scale(1);
  filter: grayscale(100%);
  transition: transform 200ms ease, filter 200ms ease;
  height: 25px;
  width: 25px;
  margin-right: 34px;
  margin-left: 0;
}
.molecule-socials .molecule-socials__inner .socials a:last-child {
  margin-right: 0;
}
.molecule-socials .molecule-socials__inner .socials a.social_linkedin {
  filter: grayscale(100%) brightness(130%);
}
.molecule-socials .molecule-socials__inner .socials a.social_xing {
  filter: grayscale(100%) brightness(134%);
}
.molecule-socials .molecule-socials__inner .socials a.social_twitter {
  filter: brightness(87%) contrast(250%) grayscale(100%);
}
.molecule-socials .molecule-socials__inner .socials a:hover {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(100%) contrast(100%);
}
.molecule-socials .molecule-socials__inner .socials a.social_soundcloud {
  height: 19px;
  width: 33px;
}
.molecule-socials .molecule-socials__inner .socials a.social_facebook {
  height: 26px;
  width: 26px;
}
.molecule-socials .molecule-socials__inner .socials a.social_twitter {
  height: 26px;
  width: 26px;
}
.molecule-socials .molecule-socials__inner .socials img {
  display: block;
  height: 100%;
  width: 100%;
  max-width: inherit;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-socials .molecule-socials__inner {
    padding: 13px 5% 14px 5%;
  }
  .molecule-socials .molecule-socials__inner .innerwrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .molecule-socials .molecule-socials__inner span {
    margin-bottom: 12px;
    font-size: 14px;
    margin-left: -1px;
  }
}
.molecule-socials.mobile .molecule-socials__inner {
  position: relative;
  bottom: 0;
  left: 0;
  transform: none;
  max-width: 100%;
  margin-top: 24px;
  border-radius: 0px;
  border-bottom: none;
  box-shadow: none;
}
.molecule-socials.mobile .molecule-socials__inner .socials {
  width: 100%;
  justify-content: space-evenly;
}
.molecule-socials.mobile .molecule-socials__inner a {
  margin: 0 17px !important;
  line-height: 1 !important;
}
@keyframes bouncing {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, -10px);
  }
}
.molecule-stage {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  max-height: 35vh;
  overflow: hidden;
}
.molecule-stage .stage-image {
  display: block;
  overflow: hidden;
  max-width: 1800px;
  margin: 0 auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.molecule-stage .stage-image.loaded {
  opacity: 1 !important;
  -ms-transition: opacity 0.5s ease-in-out;
  -moz-transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.molecule-stage .stage-hero {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 126, 36, 0.8);
  z-index: 2;
  text-align: center;
}
.molecule-stage .stage-hero .container {
  max-width: 1200px !important;
  margin: auto !important;
}
.molecule-stage .stage-hero .headline {
  margin-bottom: 24px;
}
.molecule-stage .stage-hero strong {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 40px;
  line-height: 42px;
}
@media only screen and (max-width: 529px) {
  .molecule-stage .stage-hero strong {
    font-size: 1.5em;
    line-height: 0.8em;
  }
}
.molecule-stage .stage-hero strong,
.molecule-stage .stage-hero p {
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}
.molecule-stage .stage-hero p {
  font-weight: 600;
  max-width: 800px;
}
.molecule-stage .stage-hero .container {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  align-items: center;
}
.molecule-stage .stage-hero-aligner {
  margin: auto;
}
.molecule-stage img {
  display: block;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
}
.molecule-stage .link a {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
.molecule-stage.config-type-default .headline {
  max-width: 780px;
}
.molecule-stage.config-type-default strong {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 28px;
  font-weight: normal;
  line-height: 40px;
}
@media only screen and (max-width: 529px) {
  .molecule-stage.config-type-default .headline,
  .molecule-stage.config-type-default strong {
    font-size: 1.2em;
    margin: 0;
  }
}
.molecule-stage.stage-noimage {
  height: 0;
  padding-bottom: 20%;
}
@media only screen and (max-width: 529px) {
  .molecule-stage.stage-noimage {
    height: 100%;
    padding: 25%;
  }
}
.molecule-stage.stage-noimage .stage-hero {
  background: #00782c;
}
.molecule-stage.stage-noimage .stage-hero strong {
  line-height: 1em;
}
.molecule-stage.stage-noimage .stage-hero strong,
.molecule-stage.stage-noimage .stage-hero p {
  text-shadow: none;
}
.molecule-stage.config-type-jumbo {
  max-height: 80vh;
}
.molecule-stage.config-type-jumbo.stage-noimage {
  padding-bottom: 60vh;
}
.molecule-stage.config-type-jumbo a.scrolldown {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid #fff;
  border-radius: 50%;
  height: 50px;
  width: 50px;
  vertical-align: middle;
  line-height: 54px;
  background: rgba(255, 255, 255, 0);
  animation-name: bouncing;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  transition: all 0.25s ease-in-out;
}
.molecule-stage.config-type-jumbo a.scrolldown i.im {
  font-size: 16px;
  color: #fff;
}
.molecule-stage.config-type-jumbo a.scrolldown:hover {
  background: #fff;
}
.molecule-stage.config-type-jumbo a.scrolldown:hover i.im {
  color: #00782c;
}
.molecule-stage.config-type-crosshair {
  max-height: 80vh;
}
.molecule-stage.config-type-crosshair .stage-hero {
  background: transparent;
}
.molecule-stage.config-type-crosshair .stage-hero .container {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1200px !important;
  display: flex !important;
  align-items: flex-end !important;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner {
  text-align: left;
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-left: 48px;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner:before {
  content: '';
  width: 100%;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner .headline {
  margin-bottom: 0px;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner .headline strong {
  font-weight: normal;
  font-size: 3.5em;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner p,
.molecule-stage.config-type-crosshair .stage-hero-aligner strong {
  text-shadow: 0px 0px 35px #000000;
  font-weight: 600 !important;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner .description p {
  font-size: 1.2em;
  margin-top: 14.4px;
  margin-bottom: 24px;
}
.molecule-stage.config-type-crosshair .stage-hero-aligner .link a:hover {
  background: #ffffff;
  color: #00782c !important;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-stage.config-type-crosshair {
    max-height: inherit;
  }
  .molecule-stage.config-type-crosshair .stage-hero {
    position: relative;
    background: #00782c;
    border-top: 1px solid #fff;
  }
  .molecule-stage.config-type-crosshair .stage-hero-aligner {
    text-align: center;
    margin: 0;
    margin: 24px;
    border-bottom: 1px solid #00782c;
  }
  .molecule-stage.config-type-crosshair .stage-hero-aligner .headline strong {
    text-shadow: none;
    font-weight: normal;
    font-size: 2em;
    color: #fff;
  }
  .molecule-stage.config-type-crosshair .stage-hero-aligner .description p {
    text-shadow: none;
    font-weight: normal;
    font-size: 0.9em;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 0;
  }
  .molecule-stage.config-type-crosshair .crosshair:before,
  .molecule-stage.config-type-crosshair .crosshair:after {
    display: none;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .molecule-stage.config-type-crosshair .stage-hero-aligner {
    margin-left: 24px;
  }
  .molecule-stage.config-type-crosshair .stage-hero-aligner .headline strong {
    font-size: 2.2em;
  }
  .molecule-stage.config-type-crosshair .stage-hero-aligner .description p {
    font-size: 1.3em;
  }
}
.molecule-stage.config-type-landing .headline strong {
  font-size: 10vh;
}
@media only screen and (max-width: 529px) {
  .molecule-stage.config-type-landing .headline strong {
    font-size: 40px;
  }
}
.molecule-directoryentry > a,
.molecule-directoryentry > span {
  display: block;
  position: relative;
  min-height: 40px;
  text-decoration: none;
  padding-left: 60px;
  border-bottom: 1px solid #bdbdbd;
}
.molecule-directoryentry > a .counter,
.molecule-directoryentry > span .counter {
  position: absolute;
  left: 0px;
  top: 0px;
  text-align: center;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
}
.molecule-directoryentry > a h3,
.molecule-directoryentry > span h3,
.molecule-directoryentry > a h4,
.molecule-directoryentry > span h4,
.molecule-directoryentry > a h5,
.molecule-directoryentry > span h5,
.molecule-directoryentry > a h6,
.molecule-directoryentry > span h6 {
  line-height: 40px;
  margin-bottom: 0;
  padding-right: 40px;
}
.molecule-directoryentry > a i,
.molecule-directoryentry > span i {
  position: absolute;
  right: 15px;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.molecule-directoryentry > ol {
  *zoom: 1;
  background: #f1f1f1;
  padding-left: 60px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.molecule-directoryentry > ol:before,
.molecule-directoryentry > ol:after {
  content: "";
  display: table;
}
.molecule-directoryentry > ol:after {
  clear: both;
}
.molecule-directoryentry > ol:after {
  content: "";
  display: table;
  clear: both;
}
.molecule-directoryentry > ol li {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 6px;
}
.molecule-directoryentry > ol li:last-child {
  margin-bottom: 0 !important;
}
.molecule-directoryentry > ol li i {
  margin-left: 10px;
}
.molecule-directoryentry > ol a {
  display: block;
  text-decoration: none;
}
.molecule-directoryentry > ol a:hover .counter {
  margin-right: 20px;
}
.molecule-directoryentry > ol .counter {
  margin-right: 10px;
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.molecule-teaserbox {
  display: block;
  width: 100%;
  height: auto;
}
.molecule-teaserbox a {
  text-decoration: none;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
  display: block;
  width: 100%;
}
.molecule-teaserbox a .text {
  color: #313439;
}
.molecule-teaserbox .teaserbox-image {
  margin-bottom: 12px;
  overflow: hidden;
  -ms-flex-self: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
}
.molecule-teaserbox .teaserbox-image figure {
  -ms-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: transparent;
  padding: 0;
}
.molecule-teaserbox .teaserbox-image figure img {
  width: 100%;
}
.molecule-teaserbox .teaserbox-image .teaserbox-image-placeholder {
  width: 100%;
  padding-bottom: 56.5%;
  height: 0;
  position: relative;
  background: #00782c;
  color: #ffffff;
}
.molecule-teaserbox .teaserbox-image .teaserbox-image-placeholder i {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -10px;
  margin-top: -10px;
}
.molecule-teaserbox .teaserbox-text {
  background: #f1f1f1;
  margin: -12px;
  margin-top: 0;
  padding: 12px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.molecule-teaserbox .teaserbox-text h3 {
  margin-bottom: 30px;
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .molecule-teaserbox .teaserbox-text h3 {
    font-size: 16px;
    line-height: 20px;
  }
}
.molecule-teaserbox .teaserbox-text p {
  width: 100%;
}
.molecule-teaserbox .teaserbox-text :last-child {
  margin-bottom: 0;
}
.molecule-teaserbox:hover .teaserbox-image figure {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
aside .molecule-teaserbox {
  margin-bottom: 6px;
}
aside .molecule-teaserbox a:hover .teaserbox-text {
  background: #fff;
}
aside .molecule-teaserbox h3 {
  font-size: 20px;
  margin-bottom: 12px !important;
}
aside .molecule-teaserbox .teaserbox-image.no-image {
  display: none;
}
aside .molecule-teaserbox .teaserbox-image.no-image + .teaserbox-text {
  margin-top: -12px;
}
.container-inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.container-inner:before {
  content: '';
  width: 100%;
}
[class*="organism-"].config-col-1 .item,
[class*="organism-"].config-col-1 [class*="col-"] {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-1 .item:before,
[class*="organism-"].config-col-1 [class*="col-"]:before {
  content: '';
  width: 100%;
}
[class*="organism-"].config-col-2 .item,
[class*="organism-"].config-col-2 [class*="col-"] {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-2 .item:before,
[class*="organism-"].config-col-2 [class*="col-"]:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2 .item,
  [class*="organism-"].config-col-2 [class*="col-"] {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-2 .item:before,
  [class*="organism-"].config-col-2 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2 .item,
  [class*="organism-"].config-col-2 [class*="col-"] {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-2 .item:before,
  [class*="organism-"].config-col-2 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.goldenratio-left .item:first-child,
[class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child {
  display: inline;
  float: left;
  width: 56.66666667%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-2.goldenratio-left .item:first-child:before,
[class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.goldenratio-left .item:first-child,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.goldenratio-left .item:first-child:before,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.goldenratio-left .item:first-child,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-2.goldenratio-left .item:first-child:before,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.goldenratio-left .item:last-child,
[class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child {
  display: inline;
  float: left;
  width: 35.83333333%;
  margin: 0 0.83333333%;
  margin-left: 5%;
}
[class*="organism-"].config-col-2.goldenratio-left .item:last-child:before,
[class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.goldenratio-left .item:last-child,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 35.83333333%;
    margin: 0 0.83333333%;
    margin-left: 5%;
  }
  [class*="organism-"].config-col-2.goldenratio-left .item:last-child:before,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.goldenratio-left .item:last-child,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.goldenratio-left .item:last-child:before,
  [class*="organism-"].config-col-2.goldenratio-left [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.goldenratio-right .item:first-child,
[class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child {
  display: inline;
  float: left;
  width: 40%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-2.goldenratio-right .item:first-child:before,
[class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.goldenratio-right .item:first-child,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 35.83333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.goldenratio-right .item:first-child:before,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.goldenratio-right .item:first-child,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-2.goldenratio-right .item:first-child:before,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.goldenratio-right .item:last-child,
[class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child {
  display: inline;
  float: left;
  width: 52.5%;
  margin: 0 0.83333333%;
  margin-left: 5%;
}
[class*="organism-"].config-col-2.goldenratio-right .item:last-child:before,
[class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.goldenratio-right .item:last-child,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-left: 5%;
  }
  [class*="organism-"].config-col-2.goldenratio-right .item:last-child:before,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.goldenratio-right .item:last-child,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.goldenratio-right .item:last-child:before,
  [class*="organism-"].config-col-2.goldenratio-right [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.content-sidebar .item:first-child,
[class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-2.content-sidebar .item:first-child:before,
[class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  [class*="organism-"].config-col-2.content-sidebar .item:first-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 60.83333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:first-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.content-sidebar .item:first-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 56.66666667%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:first-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.content-sidebar .item:first-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:first-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:first-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-2.content-sidebar .item:last-child,
[class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
}
[class*="organism-"].config-col-2.content-sidebar .item:last-child:before,
[class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  [class*="organism-"].config-col-2.content-sidebar .item:last-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 27.5%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:last-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-2.content-sidebar .item:last-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:last-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-2.content-sidebar .item:last-child,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-2.content-sidebar .item:last-child:before,
  [class*="organism-"].config-col-2.content-sidebar [class*="col-"]:last-child:before {
    content: '';
    width: 100%;
  }
}
[class*="organism-"].config-col-3 .item,
[class*="organism-"].config-col-3 [class*="col-"] {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-3 .item:before,
[class*="organism-"].config-col-3 [class*="col-"]:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-3 .item,
  [class*="organism-"].config-col-3 [class*="col-"] {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-3 .item:before,
  [class*="organism-"].config-col-3 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
  [class*="organism-"].config-col-3 .item:last-of-type,
  [class*="organism-"].config-col-3 [class*="col-"]:last-of-type {
    margin-bottom: 0;
  }
}
[class*="organism-"].config-col-4 .item,
[class*="organism-"].config-col-4 [class*="col-"] {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-4 .item:before,
[class*="organism-"].config-col-4 [class*="col-"]:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  [class*="organism-"].config-col-4 .item,
  [class*="organism-"].config-col-4 [class*="col-"] {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-4 .item:before,
  [class*="organism-"].config-col-4 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  [class*="organism-"].config-col-4 .item,
  [class*="organism-"].config-col-4 [class*="col-"] {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
  }
  [class*="organism-"].config-col-4 .item:before,
  [class*="organism-"].config-col-4 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-4 .item,
  [class*="organism-"].config-col-4 [class*="col-"] {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-4 .item:before,
  [class*="organism-"].config-col-4 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
  [class*="organism-"].config-col-4 .item:last-of-type,
  [class*="organism-"].config-col-4 [class*="col-"]:last-of-type {
    margin-bottom: 0;
  }
}
[class*="organism-"].config-col-6 .item,
[class*="organism-"].config-col-6 [class*="col-"] {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
}
[class*="organism-"].config-col-6 .item:before,
[class*="organism-"].config-col-6 [class*="col-"]:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  [class*="organism-"].config-col-6 .item,
  [class*="organism-"].config-col-6 [class*="col-"] {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 24px;
  }
  [class*="organism-"].config-col-6 .item:before,
  [class*="organism-"].config-col-6 [class*="col-"]:before {
    content: '';
    width: 100%;
  }
  [class*="organism-"].config-col-6 .item:last-of-type,
  [class*="organism-"].config-col-6 [class*="col-"]:last-of-type {
    margin-bottom: 0;
  }
}
.organism-accordion {
  margin-bottom: 36px;
}
.organism-accordion .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-accordion .inner:before {
  content: '';
  width: 100%;
}
.organism-accordion .accordion .accordion-title {
  border-top: 1px solid #f1f1f1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: relative;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
}
.organism-accordion .accordion .accordion-title:before {
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  right: 20px;
  top: 50%;
  margin-top: -4.5px;
  position: absolute;
}
.organism-accordion .accordion .accordion-title:before {
  content: '';
  display: block;
  border-top: 1px solid #313439;
  border-left: 1px solid #313439;
  height: 6px;
  width: 6px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.organism-accordion .accordion .accordion-title:before {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}
.organism-accordion .accordion .accordion-title:hover {
  background: #f8f8f8;
}
.organism-accordion .accordion .accordion-title.active {
  background: #f8f8f8;
}
.organism-accordion .accordion .accordion-title.active:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.organism-accordion .accordion .accordion-title:first-of-type {
  border-top: none;
}
.organism-accordion .accordion .accordion-title h4 {
  margin-bottom: 0;
}
.organism-accordion .accordion .accordion-content {
  padding: 20px;
  background: #ffffff;
  border-left: 2px solid #00782c;
  border-top: 0;
  border-bottom: 0;
}
.organism-accordion .accordion .accordion-content:last-of-type {
  border-bottom: 1px solid #f1f1f1;
}
.organism-accordion .accordion .accordion-content :last-child {
  margin-bottom: 0;
}
.organism-columns {
  margin-bottom: 24px !important;
}
@media only screen and (max-width: 529px) {
  .organism-columns {
    margin-bottom: 48px !important;
  }
}
.organism-columns p {
  margin-bottom: 24px;
}
.organism-columns figure img {
  width: 100%;
}
.organism-columns [class*="col-"] .button {
  float: left;
}
.organism-columns [class*="col-"].box .button {
  float: none;
}
.organism-columns .box {
  padding: 24px;
}
.organism-columns .box h3 {
  margin-bottom: 12px;
}
.organism-columns .box .button.secondary i {
  font-size: 16px;
}
.organism-columns .logo-container {
  width: 194px;
  height: 194px;
  padding: 24px;
  position: relative;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  margin: auto;
  margin-bottom: 24px;
}
.organism-columns .logo-container object {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.organism-contact {
  *zoom: 1;
  margin-bottom: calc( 36px - 1.66666667% );
}
.organism-contact:before,
.organism-contact:after {
  content: "";
  display: table;
}
.organism-contact:after {
  clear: both;
}
.organism-contact:after {
  content: "";
  display: table;
  clear: both;
}
.organism-contact .contacts {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.organism-contact.config-hidemetadata .contact-meta-data {
  display: none;
}
.organism-contact .molecule-contact {
  margin-bottom: 24px !important;
}
.organism-contact .inner {
  display: flex;
  flex-wrap: wrap;
}
aside .organism-contact .contact {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 24px;
}
aside .organism-contact .contact:before {
  content: '';
  width: 100%;
}
.organism-contact.detail {
  color: #313439;
  margin-bottom: 0px;
  margin-top: 96px;
}
.organism-contact.detail h1,
.organism-contact.detail h2,
.organism-contact.detail .molecule-mobilenav .mobilenav-slide a {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  font-weight: normal;
}
.organism-contact.detail h2 {
  margin-bottom: 48px !important;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 32px;
}
.organism-contact.detail .phone,
.organism-contact.detail .mail {
  display: block;
  line-height: 35px;
  margin-bottom: 2.4px;
}
.organism-contact.detail .phone i,
.organism-contact.detail .mail i {
  height: 100%;
  line-height: 35px;
  float: left;
  margin-right: 24px;
}
.organism-contact.detail .phone i:before,
.organism-contact.detail .mail i:before {
  display: inline-block;
  padding-top: 2px;
}
.organism-contact.detail section > .inner {
  max-width: 1200px;
  margin: auto;
}
.organism-contact.detail section.header {
  background-color: #ffffff;
}
.organism-contact.detail section.header .contact {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.organism-contact.detail section.header .contact .contact-data {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
  margin-bottom: 48px;
}
.organism-contact.detail section.header .contact .contact-data:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-contact.detail section.header .contact .contact-data {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
    margin-bottom: 48px;
  }
  .organism-contact.detail section.header .contact .contact-data:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-contact.detail section.header .contact .contact-data {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
    margin-bottom: 48px;
  }
  .organism-contact.detail section.header .contact .contact-data:before {
    content: '';
    width: 100%;
  }
}
.organism-contact.detail section.header .contact figure {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
  padding: 0px;
  margin-bottom: 0px;
}
.organism-contact.detail section.header .contact figure:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-contact.detail section.header .contact figure {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
    margin-bottom: 24px;
  }
  .organism-contact.detail section.header .contact figure:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-contact.detail section.header .contact figure {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
    margin-bottom: 24px;
  }
  .organism-contact.detail section.header .contact figure:before {
    content: '';
    width: 100%;
  }
}
.organism-contact.detail section.header .contact figure a {
  padding: 0px;
  display: block;
}
.organism-contact.detail section .social-media {
  margin: 0px;
  list-style-type: none;
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
  margin-top: 48px;
}
.organism-contact.detail section .social-media:before,
.organism-contact.detail section .social-media:after {
  content: "";
  display: table;
}
.organism-contact.detail section .social-media:after {
  clear: both;
}
.organism-contact.detail section .social-media li {
  display: inline;
  float: left;
  width: 6.66666667%;
  margin: 0 0.83333333%;
}
.organism-contact.detail section .social-media li:before {
  content: '';
  width: 100%;
}
.organism-contact.detail section .social-media a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
}
.organism-contact.detail section .social-media a svg {
  fill: #313439;
  width: 25px;
  height: 25px;
  margin: 0px;
}
.organism-contact.detail section .social-media a.xing:hover svg {
  fill: #006464;
}
.organism-contact.detail section .social-media a.linkedin:hover svg {
  fill: #0077b5;
}
.organism-contact.detail section.detail {
  background-color: #f1f1f1;
}
.organism-contact.detail section.detail .box {
  margin-top: 72px !important;
  padding: 96px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.organism-contact.detail section.detail .box h2 {
  margin-top: 0px !important;
  margin-bottom: 48px !important;
  padding-bottom: 12px !important;
  border-bottom: 1px solid #676b72;
}
.organism-contact.detail section.detail .box:not(#like-dislike) ul {
  list-style-type: none;
}
.organism-contact.detail section.detail .box:not(#like-dislike) ul:not(.only-label) li {
  padding-left: 24px;
  margin-bottom: 24px;
  position: relative;
}
.organism-contact.detail section.detail .box:not(#like-dislike) ul:not(.only-label) li:before {
  position: absolute;
  top: 0px;
  left: 0px;
  content: '•';
  color: #00782c;
  display: inline;
  font-size: 1.8rem;
  line-height: 18px;
}
.organism-contact.detail section.detail #career,
.organism-contact.detail section.detail #references {
  padding-left: 0px;
  padding-right: 0px;
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.organism-contact.detail section.detail #career:before,
.organism-contact.detail section.detail #references:before,
.organism-contact.detail section.detail #career:after,
.organism-contact.detail section.detail #references:after {
  content: "";
  display: table;
}
.organism-contact.detail section.detail #career:after,
.organism-contact.detail section.detail #references:after {
  clear: both;
}
.organism-contact.detail section.detail #career h2,
.organism-contact.detail section.detail #references h2,
.organism-contact.detail section.detail #career ul,
.organism-contact.detail section.detail #references ul {
  display: inline;
  float: left;
  width: 81.66666667%;
  margin: 0 0.83333333%;
  margin-left: 8.54166667%;
}
.organism-contact.detail section.detail #career h2:before,
.organism-contact.detail section.detail #references h2:before,
.organism-contact.detail section.detail #career ul:before,
.organism-contact.detail section.detail #references ul:before {
  content: '';
  width: 100%;
}
.organism-contact.detail section.detail #career li,
.organism-contact.detail section.detail #references li {
  margin-bottom: 24px;
}
.organism-contact.detail section.detail #career {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-contact.detail section.detail #career:before {
  content: '';
  width: 100%;
}
.organism-contact.detail section.detail #like-dislike {
  padding: 0px;
  background-color: #f1f1f1;
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  display: flex;
  flex-wrap: wrap;
}
.organism-contact.detail section.detail #like-dislike:before {
  content: '';
  width: 100%;
}
.organism-contact.detail section.detail #like-dislike:before {
  display: none;
}
.organism-contact.detail section.detail #like-dislike .inner-liker {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.organism-contact.detail section.detail #like-dislike .inner-liker:before,
.organism-contact.detail section.detail #like-dislike .inner-liker:after {
  content: "";
  display: table;
}
.organism-contact.detail section.detail #like-dislike .inner-liker:after {
  clear: both;
}
.organism-contact.detail section.detail #like-dislike #like,
.organism-contact.detail section.detail #like-dislike #dislike {
  padding: 0px;
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  background-color: #ffffff;
  padding-top: 48px;
  padding-bottom: 48px;
}
.organism-contact.detail section.detail #like-dislike #like:before,
.organism-contact.detail section.detail #like-dislike #dislike:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-contact.detail section.detail #like-dislike #like,
  .organism-contact.detail section.detail #like-dislike #dislike {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-contact.detail section.detail #like-dislike #like:before,
  .organism-contact.detail section.detail #like-dislike #dislike:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-contact.detail section.detail #like-dislike #like,
  .organism-contact.detail section.detail #like-dislike #dislike {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-contact.detail section.detail #like-dislike #like:before,
  .organism-contact.detail section.detail #like-dislike #dislike:before {
    content: '';
    width: 100%;
  }
}
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner:before,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner:before,
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner:after,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner:after {
  content: "";
  display: table;
}
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner:after,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner:after {
  clear: both;
}
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > h2,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > h2,
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > div,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > div {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
  margin-left: 17.5%;
  margin-bottom: 24px !important;
}
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > h2:before,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > h2:before,
.organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > div:before,
.organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > div:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > h2,
  .organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > h2,
  .organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > div,
  .organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > div {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > h2:before,
  .organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > h2:before,
  .organism-contact.detail section.detail #like-dislike #like .like-dislike-inner > div:before,
  .organism-contact.detail section.detail #like-dislike #dislike .like-dislike-inner > div:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-contact.detail section.detail #like-dislike #like {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 529px) {
  .organism-contact.detail section.detail #like-dislike #like {
    margin-bottom: 24px;
  }
}
.organism-contact.detail section.detail #like-dislike ul {
  max-width: 100%;
}
.organism-contact.detail section.detail #references {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 144px !important;
}
.organism-contact.detail section.detail #references:before {
  content: '';
  width: 100%;
}
.organism-denkomat {
  position: relative;
  background: #00782c;
  color: #fff;
}
.organism-denkomat .device-rotate-message {
  display: none;
}
.organism-denkomat .denkomat-playingfield {
  border-left: 8px solid #fff;
  border-right: 8px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  padding-top: 180px;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat .denkomat-playingfield {
    padding-top: 150px;
  }
}
.organism-denkomat .denkomat-playingfield:not(.finished):after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0) 100%);
}
.organism-denkomat section {
  position: relative;
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.organism-denkomat section:before,
.organism-denkomat section:after {
  content: "";
  display: table;
}
.organism-denkomat section:after {
  clear: both;
}
.organism-denkomat h1,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a {
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%) rotate(-2deg);
  min-width: 32%;
  text-align: center;
  color: #00782c;
  z-index: 210;
  white-space: nowrap;
}
.organism-denkomat h1:before,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a:before {
  content: '';
  display: block;
  position: absolute;
  left: -10%;
  top: 45px;
  z-index: -1;
  height: 0px;
  width: 120%;
  box-shadow: 0 0 90px 30px rgba(0, 0, 0, 0.25);
}
.organism-denkomat h1 > span,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span {
  display: block;
  padding: 0px;
  margin: 0;
  line-height: 70px;
  background: #fff;
  padding-left: 25px;
  padding-right: 40px;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat h1 > span,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span {
    font-size: 0.8em;
    line-height: 50px;
  }
}
.organism-denkomat h1 > span > svg,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span > svg {
  height: 70px;
  vertical-align: bottom;
  margin-right: 10px;
}
@media only screen and (max-width: 529px) {
  .organism-denkomat h1 > span > svg,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span > svg {
    margin-right: 0px;
  }
}
.organism-denkomat h1 > span:before,
.organism-denkomat h1 > span:after,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:before,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
}
.organism-denkomat h1 > span:before,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:before {
  left: 1px;
  transform: translateX(-100%);
  border-top: 35px solid #fff;
  border-right: 35px solid #fff;
  border-bottom: 35px solid #fff;
  border-left: 35px solid transparent;
}
.organism-denkomat h1 > span:after,
.organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:after {
  right: 1px;
  transform: translateX(100%);
  border-top: 35px solid #fff;
  border-left: 35px solid #fff;
  border-bottom: 35px solid #fff;
  border-right: 35px solid transparent;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat h1,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a {
    top: 0px;
  }
  .organism-denkomat h1 > span,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span {
    line-height: 50px;
  }
  .organism-denkomat h1 > span > svg,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span > svg {
    height: 50px;
  }
  .organism-denkomat h1 > span:before,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:before {
    border-top: 25px solid #fff;
    border-right: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-left: 25px solid transparent;
  }
  .organism-denkomat h1 > span:after,
  .organism-denkomat .molecule-mobilenav .mobilenav-slide a > span:after {
    border-top: 25px solid #fff;
    border-left: 25px solid #fff;
    border-bottom: 25px solid #fff;
    border-right: 25px solid transparent;
  }
}
.organism-denkomat #roles {
  display: flex;
  border-bottom: 8px solid #fff;
  padding-bottom: 40px;
  margin-bottom: 200px;
  margin-top: -60px;
}
.organism-denkomat #roles:before,
.organism-denkomat #roles:after {
  content: '';
  display: block;
  position: absolute;
  line-height: 0;
}
.organism-denkomat #roles:before {
  height: 0px;
  width: 32%;
  padding-bottom: 30%;
  bottom: -4px;
  left: 50%;
  transform: translate(-50%, 50%);
  border-radius: 50%;
  border: 8px solid #fff;
}
.organism-denkomat #roles:after {
  height: 16px;
  width: 16px;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #fff;
}
.organism-denkomat #roles h2,
.organism-denkomat #roles button {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
.organism-denkomat #roles h2:before,
.organism-denkomat #roles button:before {
  content: '';
  width: 100%;
}
.organism-denkomat #roles h2 {
  order: 2;
  padding-bottom: 10%;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.organism-denkomat #roles h2:before {
  display: none;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat #roles h2 {
    font-size: 20px;
    line-height: 1.2;
    align-self: center;
    display: inline;
    float: left;
    width: 23.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-denkomat #roles h2:before {
    content: '';
    width: 100%;
  }
}
.organism-denkomat #roles button:nth-child(2) {
  order: 1;
}
.organism-denkomat #roles button:nth-child(3) {
  order: 3;
}
.organism-denkomat #roles button {
  position: relative;
  background: none !important;
  transition: transform 0.25s ease-in-out, opacity 0.5s linear;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat #roles button {
    flex-grow: 1;
  }
}
.organism-denkomat #roles button:not(.notselected):hover {
  transform: scale(1.05);
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat #roles button > span {
    font-size: 12px;
    line-height: 1.1;
    padding: 12px 10px;
    position: absolute;
    bottom: 40%;
    background: #fff;
    color: green;
    /* margin: 0 auto; */
    display: block;
    left: 50%;
    transform: translateX(-50%);
  }
}
.organism-denkomat #roles .role-image {
  width: 60%;
  margin: 0 auto;
  position: relative;
  margin-bottom: 30px;
}
.organism-denkomat #roles .role-image:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 18px;
  background: rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 60px 65px rgba(0, 0, 0, 0.2);
  left: 50%;
  transform: translateX(-50%) scaleY(0.4);
  width: 1px;
  height: 1px;
  border-radius: 50%;
}
.organism-denkomat #roles button.notselected {
  opacity: 0.4;
  cursor: default;
}
.organism-denkomat section.question {
  padding-bottom: 80px;
}
.organism-denkomat section.question#question-5 {
  padding-bottom: 180px;
}
.organism-denkomat section.question .playfield-element1,
.organism-denkomat section.question .playfield-element2 {
  display: none;
}
.organism-denkomat section.inactive {
  display: none !important;
}
.organism-denkomat section .playfield-markers-cirlce {
  display: none;
  width: 60px;
  height: 60px;
  background: url('../../frontend/style/default/organisms/denkomat/assets/icon-circle.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
.organism-denkomat section.answered .playfield-markers-cirlce {
  display: block;
  position: absolute;
  top: 10%;
}
.organism-denkomat section.answered.pos-1 .playfield-markers-cirlce {
  left: 15%;
}
.organism-denkomat section.answered.pos-2 .playfield-markers-cirlce {
  left: 50%;
  transform: translateX(-50%);
}
.organism-denkomat section.answered.pos-3 .playfield-markers-cirlce {
  right: 15%;
}
.organism-denkomat section.pos-1 + section.pos-1 .playfield-markers-line,
.organism-denkomat section.pos-2 + section.pos-2 .playfield-markers-line,
.organism-denkomat section.pos-3 + section.pos-3 .playfield-markers-line {
  display: block;
  position: absolute;
  top: 0;
  width: 100px;
  height: 280px;
  transform: translateY(-100%);
  background: url('../../frontend/style/default/organisms/denkomat/assets/arrow-straight.svg');
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat section.pos-1 + section.pos-1 .playfield-markers-line,
  .organism-denkomat section.pos-2 + section.pos-2 .playfield-markers-line,
  .organism-denkomat section.pos-3 + section.pos-3 .playfield-markers-line {
    width: 70px;
    height: 200px;
  }
}
.organism-denkomat section.pos-1 + section.pos-1 .playfield-markers-line {
  left: calc(15% - 5px);
}
.organism-denkomat section.pos-2 + section.pos-2 .playfield-markers-line {
  left: 50%;
  transform: translate(calc(-50% + 10px), -100%);
}
.organism-denkomat section.pos-3 + section.pos-3 .playfield-markers-line {
  right: calc(15% - -25px);
  transform: translate(50%, -110%);
}
.organism-denkomat section.pos-1 + section.pos-2 .playfield-markers-line,
.organism-denkomat section.pos-2 + section.pos-3 .playfield-markers-line,
.organism-denkomat section.pos-3 + section.pos-2 .playfield-markers-line,
.organism-denkomat section.pos-2 + section.pos-1 .playfield-markers-line {
  display: block;
  position: absolute;
  top: 0;
  width: 45%;
  height: 280px;
  transform: translateY(-100%);
  background: url('../../frontend/style/default/organisms/denkomat/assets/arrow-2step.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat section.pos-1 + section.pos-2 .playfield-markers-line,
  .organism-denkomat section.pos-2 + section.pos-3 .playfield-markers-line,
  .organism-denkomat section.pos-3 + section.pos-2 .playfield-markers-line,
  .organism-denkomat section.pos-2 + section.pos-1 .playfield-markers-line {
    height: 190px;
  }
}
.organism-denkomat section.pos-1 + section.pos-2 .playfield-markers-line,
.organism-denkomat section.pos-2 + section.pos-3 .playfield-markers-line {
  transform: translateY(-100%) scaleX(-1);
}
.organism-denkomat section.pos-1 + section.pos-2 .playfield-markers-line {
  left: 10%;
}
.organism-denkomat section.pos-2 + section.pos-3 .playfield-markers-line {
  right: 2%;
  background-position: right;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat section.pos-2 + section.pos-3 .playfield-markers-line {
    right: 8%;
  }
}
.organism-denkomat section.pos-3 + section.pos-2 .playfield-markers-line {
  right: 2%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat section.pos-3 + section.pos-2 .playfield-markers-line {
    right: 8%;
  }
}
.organism-denkomat section.pos-2 + section.pos-1 .playfield-markers-line {
  background-position: right;
}
.organism-denkomat section.pos-1 + section.pos-3 .playfield-markers-line,
.organism-denkomat section.pos-3 + section.pos-1 .playfield-markers-line {
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 280px;
  transform: translateY(-100%);
  background: url('../../frontend/style/default/organisms/denkomat/assets/arrow-3step.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-denkomat section.pos-1 + section.pos-3 .playfield-markers-line,
  .organism-denkomat section.pos-3 + section.pos-1 .playfield-markers-line {
    height: 190px;
  }
}
.organism-denkomat section.pos-1 + section.pos-3 .playfield-markers-line {
  transform: translateY(-100%) scaleX(-1);
}
.organism-denkomat section#question-5 {
  border-bottom: 8px solid #fff;
}
.organism-denkomat section#question-5:after,
.organism-denkomat section#question-5:before {
  content: '';
  display: block;
  height: 80px;
  width: 80px;
  border: 8px solid #fff;
  border-radius: 50%;
  position: absolute;
}
.organism-denkomat section#question-5:after {
  left: 0;
  bottom: 0;
  transform: translate(calc(-50% + 8px), 50%);
}
.organism-denkomat section#question-5:before {
  right: 0;
  bottom: 0;
  transform: translate(calc(50% - 8px), 50%);
}
.organism-denkomat section#question-5 .playfield-element1,
.organism-denkomat section#question-5 .playfield-element2 {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid #fff;
  border-bottom: 0;
}
.organism-denkomat section#question-5 .playfield-element1 {
  width: 60%;
  padding-top: 20%;
}
.organism-denkomat section#question-5 .playfield-element2 {
  width: 28%;
  padding-top: 10%;
}
.organism-denkomat #result {
  display: inline;
  float: left;
  width: 81.66666667%;
  margin: 0 0.83333333%;
  margin: 0 auto;
  float: none;
  display: block;
  margin-bottom: 50px;
  margin-top: -20px;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  color: #00782c;
}
.organism-denkomat #result:before {
  content: '';
  width: 100%;
}
.organism-denkomat #result .result-image {
  width: 37%;
  height: 440px;
  position: absolute;
  left: 2%;
  bottom: 0;
}
.organism-denkomat #result .result-image-container {
  display: none;
  height: 100%;
  overflow: hidden;
  align-items: flex-end;
  padding-bottom: 40px;
}
.organism-denkomat #result .result-image-container > svg {
  flex-grow: 1;
  flex-shrink: 1;
}
.organism-denkomat #result .result-image-container:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 48px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 60px 65px rgba(0, 0, 0, 0.1);
  left: 50%;
  transform: translateX(-50%) scaleY(0.4);
  width: 1px;
  height: 1px;
  border-radius: 50%;
}
.organism-denkomat #result.conclusionid-1 .result-image-1 {
  display: flex;
}
.organism-denkomat #result.conclusionid-1 .result-image-1:after {
  width: 70%;
}
.organism-denkomat #result.conclusionid-2 .result-image-2 {
  display: flex;
}
.organism-denkomat #result.conclusionid-4 .result-image-4 {
  display: flex;
}
.organism-denkomat #result.conclusionid-5 .result-image-5 {
  display: flex;
}
.organism-denkomat #result.conclusionid-6 .result-image-6 {
  display: flex;
}
.organism-denkomat #result.conclusionid-7 .result-image-7 {
  display: flex;
}
.organism-denkomat #result.conclusionid-7 .result-image-7:after {
  width: 70%;
}
.organism-denkomat #result.conclusionid-8 .result-image-8 {
  display: flex;
}
.organism-denkomat #result.conclusionid-9 .result-image-9 {
  display: flex;
}
.organism-denkomat #result.conclusionid-10 .result-image-10 {
  display: flex;
}
.organism-denkomat #result.conclusionid-11 .result-image-11 {
  display: flex;
}
.organism-denkomat #result .result-conclusion {
  margin-left: 45%;
  margin-right: 5%;
  margin-top: 80px;
  margin-bottom: 80px;
}
.organism-denkomat #result .result-conclusion strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
}
.organism-denkomat #result .result-conclusion a {
  margin-right: 5px;
  white-space: nowrap;
}
.organism-denkomat #result .result-conclusion a .im {
  font-size: 10px;
  color: #000;
  margin-left: 5px;
}
@media only screen and (max-width: 529px) {
  .organism-denkomat {
    overflow: hidden;
    position: relative;
    height: calc(100vh - 96px);
  }
  .organism-denkomat .device-rotate-message {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 200;
    background: #00782c;
  }
  .organism-denkomat .device-rotate-message svg {
    width: 50%;
    margin: 0 auto;
    display: block;
    margin-top: 140px;
  }
  .organism-denkomat .device-rotate-message strong {
    text-align: center;
    display: block;
    margin: 20px 40px;
  }
}
.organism-downloadgallery {
  margin-bottom: 24px;
}
.organism-downloadgallery .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-downloadgallery .inner:before {
  content: '';
  width: 100%;
}
.organism-downloadgallery ul {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
}
.organism-downloadgallery ul li {
  margin-left: 0;
  padding: 0 !important;
}
.organism-downloadgallery ul li:before {
  display: none !important;
}
.organism-downloadgallery li {
  border-top: 1px solid #f1f1f1;
}
.organism-downloadgallery li:first-child {
  border-top: none;
}
aside .organism-downloadgallery {
  padding: 12px;
  background: #ffffff;
}
aside .organism-downloadgallery.highlight {
  background: #f1f1f1;
  padding: 24px;
  margin-top: 48px;
  margin-bottom: 48px;
}
aside .organism-downloadgallery.outline {
  border: 4px solid #f1f1f1;
}
aside .organism-downloadgallery :last-child {
  margin-bottom: 0;
}
aside .organism-downloadgallery.bg.primary {
  background: #00782c;
}
aside .organism-downloadgallery.bg.secondary {
  background: rgba(44, 44, 44, 0.6);
}
aside .organism-downloadgallery.bg.primary,
aside .organism-downloadgallery.bg.secondary {
  color: #ffffff;
}
aside .organism-downloadgallery.bg.primary h2,
aside .organism-downloadgallery.bg.secondary h2,
aside .organism-downloadgallery.bg.primary h3,
aside .organism-downloadgallery.bg.secondary h3,
aside .organism-downloadgallery.bg.primary h4,
aside .organism-downloadgallery.bg.secondary h4,
aside .organism-downloadgallery.bg.primary h5,
aside .organism-downloadgallery.bg.secondary h5,
aside .organism-downloadgallery.bg.primary h6,
aside .organism-downloadgallery.bg.secondary h6 {
  color: #ffffff;
}
aside .organism-downloadgallery.bg.primary .button,
aside .organism-downloadgallery.bg.secondary .button,
aside .organism-downloadgallery.bg.primary button,
aside .organism-downloadgallery.bg.secondary button {
  color: #000000;
  background-color: #ffffff;
}
aside .organism-downloadgallery.bg.primary .button:hover,
aside .organism-downloadgallery.bg.secondary .button:hover,
aside .organism-downloadgallery.bg.primary button:hover,
aside .organism-downloadgallery.bg.secondary button:hover {
  color: #000000;
  background-color: #ffffff;
}
aside .organism-downloadgallery.bg.primary .button:disabled,
aside .organism-downloadgallery.bg.secondary .button:disabled,
aside .organism-downloadgallery.bg.primary button:disabled,
aside .organism-downloadgallery.bg.secondary button:disabled,
aside .organism-downloadgallery.bg.primary .button.disabled,
aside .organism-downloadgallery.bg.secondary .button.disabled,
aside .organism-downloadgallery.bg.primary button.disabled,
aside .organism-downloadgallery.bg.secondary button.disabled {
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(255, 255, 255, 0.7);
}
aside .organism-downloadgallery.bg.primary .button.outline,
aside .organism-downloadgallery.bg.secondary .button.outline,
aside .organism-downloadgallery.bg.primary button.outline,
aside .organism-downloadgallery.bg.secondary button.outline {
  background: none;
  color: #ffffff;
  border-color: #ffffff;
}
aside .organism-downloadgallery.bg.primary .button.outline:hover,
aside .organism-downloadgallery.bg.secondary .button.outline:hover,
aside .organism-downloadgallery.bg.primary button.outline:hover,
aside .organism-downloadgallery.bg.secondary button.outline:hover {
  color: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}
aside .organism-downloadgallery.bg.primary .button.outline:disabled,
aside .organism-downloadgallery.bg.secondary .button.outline:disabled,
aside .organism-downloadgallery.bg.primary button.outline:disabled,
aside .organism-downloadgallery.bg.secondary button.outline:disabled,
aside .organism-downloadgallery.bg.primary .button.outline.disabled,
aside .organism-downloadgallery.bg.secondary .button.outline.disabled,
aside .organism-downloadgallery.bg.primary button.outline.disabled,
aside .organism-downloadgallery.bg.secondary button.outline.disabled {
  background: none;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.5);
}
aside .organism-downloadgallery.bg.primary .button i.im,
aside .organism-downloadgallery.bg.secondary .button i.im,
aside .organism-downloadgallery.bg.primary button i.im,
aside .organism-downloadgallery.bg.secondary button i.im {
  font-size: 7px;
}
aside .organism-downloadgallery.bg.primary .button:hover,
aside .organism-downloadgallery.bg.secondary .button:hover,
aside .organism-downloadgallery.bg.primary button:hover,
aside .organism-downloadgallery.bg.secondary button:hover {
  opacity: .7;
}
.organism-events {
  *zoom: 1;
  margin-bottom: calc( 36px - 1.66666667% );
}
.organism-events:before,
.organism-events:after {
  content: "";
  display: table;
}
.organism-events:after {
  clear: both;
}
.organism-events:after {
  content: "";
  display: table;
  clear: both;
}
.organism-events > ul,
.organism-events .events-text > ul {
  margin-left: 0;
  list-style-type: none;
}
.organism-events .molecules-eventslistentry {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
  margin-bottom: calc( 36px - 1.66666667% );
}
.organism-eventsteaser ul {
  margin-left: 0px;
  list-style-type: none;
}
.organism-feed {
  margin-bottom: 36px;
}
.organism-feed li {
  position: relative;
}
.organism-feed h3 {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 12px;
}
.organism-feed p {
  margin-bottom: 24px;
}
.organism-feed p a {
  display: none;
}
.organism-feed.config-col-1 li {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
.organism-feed.config-col-1 li:before {
  content: '';
  width: 100%;
}
.organism-feed.config-col-2 li {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
.organism-feed.config-col-2 li:before {
  content: '';
  width: 100%;
}
.organism-feed.config-col-3 li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
.organism-feed.config-col-3 li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-feed.config-col-3 li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-top: 23px !important;
    padding-bottom: 23px !important;
    border-top: 1px solid #f1f1f1;
  }
  .organism-feed.config-col-3 li:before {
    content: '';
    width: 100%;
  }
  .organism-feed.config-col-3 li:first-child {
    border-top: none;
  }
}
@media only screen and (max-width: 529px) {
  .organism-feed.config-col-3 li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-top: 23px !important;
    padding-bottom: 23px !important;
    border-top: 1px solid #f1f1f1;
  }
  .organism-feed.config-col-3 li:before {
    content: '';
    width: 100%;
  }
  .organism-feed.config-col-3 li:first-child {
    border-top: none;
  }
}
main .organism-feed .inner,
#main .organism-feed .inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
main .organism-feed li,
#main .organism-feed li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
main .organism-feed li:before,
#main .organism-feed li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-feed figure {
    display: inline;
    float: left;
    width: 40%;
    margin: 0 0.83333333%;
    margin: 0;
  }
  .organism-feed figure:before {
    content: '';
    width: 100%;
  }
}
.organism-feed .teaser {
  max-height: 200px;
  min-height: 160px;
  overflow: hidden;
  position: relative;
}
.organism-feed .teaser:after {
  content: '';
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  box-shadow: 0 0 25px 35px #ffffff;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-feed .teaser {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-feed .teaser:before {
    content: '';
    width: 100%;
  }
}
.organism-feed .date,
.organism-feed .category {
  position: absolute;
  top: 0;
}
.organism-feed .date {
  right: 0;
  background: #ffffff;
  z-index: 9;
  width: auto;
  font-size: 11px;
  padding: 0 8px;
  line-height: 20px;
  height: 20px;
}
.organism-feed .category {
  left: 0;
  color: #ffffff;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
  line-height: 23px;
  padding: 0 6px;
  letter-spacing: 1px;
  border-bottom: #ffffff;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-feed .category {
    position: absolute;
    left: 0;
    top: 0;
  }
}
.organism-tagcloud {
  width: 100%;
  height: 40vh;
}
footer section {
  clear: both;
  padding-top: 24px;
  padding-bottom: 72px;
  background: #f1f1f1;
  border-top: 2px solid #fff;
}
footer section .container {
  position: relative;
}
footer section#footer-seo .container {
  min-height: 50px;
}
footer .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
footer .inner:before {
  content: '';
  width: 100%;
}
footer .footer-bottomline {
  background: #2c2c2c;
  color: #888888 !important;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.5px;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media only screen and (max-width: 529px) {
  footer .footer-bottomline {
    padding-top: 40px;
  }
}
footer .footer-bottomline .inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  line-height: 1.2;
}
footer .footer-bottomline .inner:before {
  display: none;
}
@media only screen and (max-width: 529px) {
  footer .footer-bottomline .inner {
    flex-direction: column;
  }
}
footer .footer-bottomline nav a {
  color: #888888;
  text-decoration: none;
}
footer .footer-bottomline nav a:hover {
  color: #ffffff;
}
footer .footer-bottomline nav a:after {
  content: '/';
  color: #888888 !important;
  margin-right: 4.8px;
  margin-left: 4.8px;
}
footer .footer-bottomline nav li {
  display: inline-block;
}
footer .footer-bottomline nav li:last-child a:after {
  content: '';
}
@media only screen and (max-width: 529px) {
  footer .footer-bottomline nav {
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.5;
  }
}
footer .footer-bottomline .molecule-socials {
  position: relative;
  height: 14px;
  flex-grow: 1;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  footer .footer-bottomline .molecule-socials {
    display: none;
  }
}
footer .footer-bottomline #copyright {
  text-align: right;
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
body.ie {
  display: block;
}
#content {
  -webkit-box-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.organism-forms {
  margin-bottom: 36px;
}
body {
  padding-top: 144px;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  body {
    padding-top: 96px;
  }
}
body.language_ce {
  padding-top: 0 !important;
}
header {
  background: #ffffff;
  border-top: 8px solid #00782c;
  border-bottom: 1px solid #eee;
  padding-top: 24px;
  padding-bottom: 24px;
  height: 144px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 8888;
  margin-top: 0;
  will-change: transform, margin-top;
  transition: transform 400ms ease-in-out, margin-top 0.5s ease-in-out;
}
header .header-inner {
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
header .molecule-mainnav {
  margin-top: auto;
  margin-left: auto;
}
header .logo {
  z-index: 1000;
}
header.headroom--pinned {
  transform: translateY(0%);
}
header.headroom--unpinned {
  transform: translateY(-100%);
}
header:before,
header:after {
  content: '';
  display: block;
  position: absolute;
  top: -8px;
  width: 8px;
  height: 8px;
  background: #fff;
  will-change: opacity;
  transition: opacity 0.2s linear;
  opacity: 0;
}
header.slideout {
  margin-top: 144px;
}
header.slideout:before {
  left: 0;
}
header.slideout:after {
  right: 0;
}
header.slideout:before,
header.slideout:after {
  opacity: 1;
}
header.slideout.headroom--pinned {
  transform: translateY(0%);
}
header.slideout.headroom--unpinned {
  transform: translateY(-200%);
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  header.slideout {
    margin-top: 384px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  header {
    height: 96px;
  }
}
@media only screen and (max-width: 529px) {
  header {
    height: 96px;
  }
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  header {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
#mobilenav-trigger {
  text-decoration: none;
  position: absolute;
  bottom: 8px;
  right: 18px;
}
#mobilenav-trigger span {
  font-size: 12px;
  line-height: 12px;
  margin-right: 10px;
  margin-top: -4px;
  display: inline-block;
}
#mobilenav-trigger i {
  font-size: 28px;
}
#mobilenav-trigger span,
#mobilenav-trigger i {
  vertical-align: middle;
}
@media only screen and (min-width: 1129px) {
  #mobilenav-trigger {
    display: none;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  #mobilenav-trigger {
    display: none;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  #mobilenav-trigger {
    display: block;
  }
}
@media only screen and (max-width: 529px) {
  #mobilenav-trigger {
    display: block;
  }
}
header .header-metainner {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 900;
}
header .header-metainner .header-meta {
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  position: relative;
}
header .header-metainner .header-meta li {
  background: #f1f1f1;
  color: #2c2c2c;
  margin-left: 4px;
  font-size: 13px;
  font-weight: 600;
  height: 30px;
}
header .header-metainner .header-meta li a {
  position: relative;
  display: block;
  padding: 3px 14px;
  text-transform: uppercase;
  text-decoration: none;
  color: #2c2c2c;
}
@media only screen and (max-width: 529px) {
  header .header-metainner .header-meta li.metanavitem,
  header .header-metainner .header-meta li.searchitem {
    display: none;
  }
}
header .header-metainner .header-meta li.metanavitem:hover {
  background: #e0e1e1;
}
header .header-metainner .header-meta li.stoerer-item {
  position: relative;
  background: transparent;
}
header .header-metainner .header-meta li.stoerer-item a {
  background-image: url('../../frontend/style/default/frontend/style/default/organisms/header/stoerer-denkomat.png');
  background-size: 100%;
  background-repeat: no-repeat;
  height: 61px;
  width: 247px;
  top: -14px;
  will-change: transform;
  transition: transform 0.25s ease-in-out;
  z-index: 10000;
}
header .header-metainner .header-meta li.stoerer-item a:hover {
  transform: scale(1.05) rotate(-1deg);
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  header .header-metainner .header-meta li.stoerer-item a {
    display: none;
  }
}
header .header-metainner #toggle-slideout {
  background: #00782c;
  color: #fff;
  padding-right: 35px;
}
header .header-metainner #toggle-slideout > svg {
  fill: #fff;
  position: absolute;
  right: 8px;
  top: 5px;
  height: 18px;
  width: 18px;
}
header .header-metainner #toggle-slideout:hover {
  opacity: 0.8;
}
.organism-imagegallery {
  *zoom: 1;
  margin-bottom: calc( 36px - 1.66666667% );
}
.organism-imagegallery:before,
.organism-imagegallery:after {
  content: "";
  display: table;
}
.organism-imagegallery:after {
  clear: both;
}
.organism-imagegallery:after {
  content: "";
  display: table;
  clear: both;
}
.organism-imagegallery.config-view-slider img {
  display: none;
}
.organism-imagegallery.config-view-slider .owl-loaded img {
  display: block;
}
.organism-imagegallery ul {
  width: 100%;
  list-style-type: none;
  margin-left: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.organism-imagegallery ul li {
  margin-left: 0;
  padding: 0 !important;
}
.organism-imagegallery ul li:before {
  display: none !important;
}
.organism-imagegallery li {
  overflow: hidden;
  border: 1px solid #f1f1f1;
  margin-bottom: 1.66666667% !important;
}
.organism-imagegallery.config-logos li {
  padding: 20px !important;
  border: none;
}
.organism-imagegallery.config-logos li figure {
  background: 0;
  padding: 0;
}
.organism-imagegallery figcaption {
  padding: 10px;
  display: none;
}
.organism-imagegallery figure {
  display: block;
  -ms-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
  margin-bottom: 0;
}
.organism-imagegallery figure a {
  border: none;
  background: transparent;
}
.organism-imagegallery figure a:hover {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.organism-imagegallery figure img {
  display: block;
  width: 100%;
}
.organism-imagegallery a {
  overflow: hidden;
  display: block;
}
main .organism-imagegallery li,
#main .organism-imagegallery li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
}
main .organism-imagegallery li:before,
#main .organism-imagegallery li:before {
  content: '';
  width: 100%;
}
aside .organism-imagegallery ul {
  margin-bottom: 0;
}
aside .organism-imagegallery li {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
}
aside .organism-imagegallery li:before {
  content: '';
  width: 100%;
}
aside .organism-imagegallery figcaption {
  display: none;
}
.organism-joboffers {
  margin-bottom: 36px;
}
.organism-joboffers .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-joboffers .inner:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-joboffers .inner {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-joboffers .inner:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-joboffers .inner {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-joboffers .inner:before {
    content: '';
    width: 100%;
  }
}
.organism-joboffers.overviewpage .inner {
  display: inline;
  float: left;
  width: 81.66666667%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
}
.organism-joboffers.overviewpage .inner:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-joboffers.overviewpage .inner {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-joboffers.overviewpage .inner:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-joboffers.overviewpage .inner {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-joboffers.overviewpage .inner:before {
    content: '';
    width: 100%;
  }
}
.organism-joboffers.overviewpage ul {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 0;
}
.organism-joboffers.overviewpage ul li {
  margin-left: 0;
  padding: 0 !important;
}
.organism-joboffers.overviewpage ul li:before {
  display: none !important;
}
.organism-joboffers.overviewpage li {
  border-top: 1px solid #f1f1f1;
}
.organism-joboffers.overviewpage li:first-child {
  border-top: none;
}
aside .organism-joboffers.overviewpage .inner {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-left: 0.83333333%;
}
aside .organism-joboffers.overviewpage .inner:before {
  content: '';
  width: 100%;
}
.list-bare,
.list-flat {
  list-style-type: none;
  margin-left: 0;
}
.list-bare li,
.list-flat li {
  margin-left: 0;
  padding: 0 !important;
}
.list-bare li:before,
.list-flat li:before {
  display: none !important;
}
.organism-list {
  margin-bottom: 36px;
  max-width: 600px;
}
.organism-list.config-layout-standard ul,
.organism-list.config-layout-benefitlist ul {
  display: inline-block;
  text-align: left;
  margin-bottom: 0;
  margin-left: 0;
  list-style-type: none;
  width: 100%;
}
.organism-list.config-layout-standard li,
.organism-list.config-layout-benefitlist li {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #2c2c2c;
  margin-bottom: 6px;
  padding: 12px;
  padding-left: 72px;
  padding-right: 18px;
  line-height: 28.8px;
  font-weight: 400;
  font-size: 17px;
}
.organism-list.config-layout-standard li:last-child,
.organism-list.config-layout-benefitlist li:last-child {
  margin-bottom: 0;
}
.organism-list.box {
  padding-top: 36px;
  padding-bottom: 36px;
}
.organism-list.config-icon-disc ul {
  list-style-type: disc;
  margin-left: 24px;
}
.organism-list.config-icon-disc li {
  padding-left: 12px;
}
.organism-list.config-icon-line ul {
  list-style-type: none;
  margin-left: 12px;
}
.organism-list.config-icon-line li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0px;
}
.organism-list.config-icon-line li:before {
  content: "–";
  position: absolute;
  left: 0px;
  top: 12px;
}
.organism-list.config-icon-checkmark svg,
.organism-list.config-icon-cross svg,
.organism-list.config-icon-warning svg {
  position: absolute;
  left: 20px;
  top: 12px;
  display: block;
  width: 29px;
  height: 29px;
}
.organism-list.config-icon-checkmark ul,
.organism-list.config-icon-cross ul,
.organism-list.config-icon-warning ul {
  list-style-type: none;
}
.organism-list.config-icon-checkmark li,
.organism-list.config-icon-cross li,
.organism-list.config-icon-warning li {
  position: relative;
}
.organism-list.config-layout-benefitlist li {
  background: #f1f1f1;
}
.organism-list.config-layout-linklist ul {
  list-style-type: none;
  margin-left: 0px;
  width: 100%;
}
.organism-list.config-layout-linklist ul li {
  background: #ffffff;
}
.organism-list.config-layout-linklist ul li a {
  display: block;
  width: 100%;
  float: none;
  margin: 0px;
  margin-top: 12px;
  border: none;
  background: #ffffff;
  padding: 9px 21px;
  position: relative;
  border: 1px solid #ffffff !important;
  line-height: 25px;
  color: #313439 !important;
}
.organism-list.config-layout-linklist ul li a:before {
  content: '';
  width: 52px;
  height: 45px;
  display: block;
  background-color: #00782c;
  position: absolute;
  top: -1px;
  right: -1px;
}
.organism-list.config-layout-linklist ul li a i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 17px !important;
  right: 14px;
  color: #ffffff;
  width: 16px;
  height: 13px;
}
.organism-list.config-layout-linklist ul li:hover a {
  border-color: #00782c !important;
  color: #00782c !important;
}
.bg-light .config-layout-benefitlist li {
  background: #ffffff;
}
.organism-news ul.news-entries {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 36px;
}
.organism-news ul.news-entries:before,
.organism-news ul.news-entries:after {
  content: "";
  display: table;
}
.organism-news ul.news-entries:after {
  clear: both;
}
.organism-news ul.news-entries:before {
  display: none;
}
.organism-news ul.news-entries:after {
  content: none;
}
.organism-news .category-headline {
  background: #bdbdbd;
}
.organism-news.layout-standard-with-categories {
  /*
		main {

			.column(8);
			

			@media @mobile {
				.column(12);
				.baseline(margin-top, 2);
			}

			@media @tablet {
				.column(12);
				.baseline(margin-top, 2);
			}
			
		}
		*/
}
.organism-news.layout-standard-with-categories main {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
}
.organism-news.layout-standard-with-categories main:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-news.layout-standard-with-categories main {
    display: inline;
    float: left;
    width: 60.83333333%;
    margin: 0 0.83333333%;
  }
  .organism-news.layout-standard-with-categories main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-news.layout-standard-with-categories main {
    display: inline;
    float: left;
    width: 56.66666667%;
    margin: 0 0.83333333%;
  }
  .organism-news.layout-standard-with-categories main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-news.layout-standard-with-categories main {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-news.layout-standard-with-categories main:before {
    content: '';
    width: 100%;
  }
}
.organism-news.layout-standard-with-categories aside {
  /*
			.column(3);
			.push(1);

			@media @mobile {
				.column(12);
				.push(0);
				.baseline(margin-top, 2);
			}

			@media @tablet {
				.column(12);
				.push(0);
				.baseline(margin-top, 2);
			}
			*/
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
}
.organism-news.layout-standard-with-categories aside:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-news.layout-standard-with-categories aside {
    display: inline;
    float: left;
    width: 27.5%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-news.layout-standard-with-categories aside:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-news.layout-standard-with-categories aside {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-news.layout-standard-with-categories aside:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-news.layout-standard-with-categories aside {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-news.layout-standard-with-categories aside:before {
    content: '';
    width: 100%;
  }
}
.organism-news.layout-standard-with-categories aside .pre-blog {
  margin-bottom: 72px;
}
.organism-news.layout-standard-with-categories aside .pre-blog a {
  display: none;
}
@media only screen and (max-width: 529px) {
  .organism-news.layout-standard-with-categories aside h2 {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-news.layout-standard-with-categories aside h2:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-news.layout-standard-with-categories aside h2 {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
  }
  .organism-news.layout-standard-with-categories aside h2:before {
    content: '';
    width: 100%;
  }
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting {
  list-style-type: none;
  margin-bottom: 48px;
  margin-left: 0px;
}
@media only screen and (max-width: 529px) {
  .organism-news.layout-standard-with-categories aside .molecule-news-categorylisting {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-news.layout-standard-with-categories aside .molecule-news-categorylisting:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-news.layout-standard-with-categories aside .molecule-news-categorylisting {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
  }
  .organism-news.layout-standard-with-categories aside .molecule-news-categorylisting:before {
    content: '';
    width: 100%;
  }
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting > li {
  border-top: 1px solid #bdbdbd;
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting > li > .cathead {
  text-decoration: none;
  font-size: 17px;
  font-weight: bold;
  line-height: 16px;
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting > li ul {
  list-style: none;
  margin-left: 12px;
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting li {
  padding-top: 6px;
  padding-bottom: 6px;
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting li:not(:first-child) {
  border-top: 1px solid #bdbdbd;
}
.organism-news.layout-standard-with-categories aside .molecule-news-categorylisting li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 16px;
}
.organism-newsteaser .newsteaser-inner {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
}
.organism-newsteaser .newsteaser-inner:before,
.organism-newsteaser .newsteaser-inner:after {
  content: "";
  display: table;
}
.organism-newsteaser .newsteaser-inner:after {
  clear: both;
}
.organism-newsteaser ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.organism-newsteaser h2 {
  margin-top: 0px !important;
}
.organism-newsteaser.layout-start-page .pre-blog {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
}
.organism-newsteaser.layout-start-page .pre-blog:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-newsteaser.layout-start-page .pre-blog {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-newsteaser.layout-start-page .pre-blog:before {
    content: '';
    width: 100%;
  }
}
.organism-newsteaser.layout-start-page .pre-blog a {
  width: 100%;
  text-align: center;
}
.organism-newsteaser.layout-start-page .blog-entries {
  display: inline;
  float: left;
  width: 73.33333333%;
  margin: 0 0.83333333%;
}
.organism-newsteaser.layout-start-page .blog-entries:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .organism-newsteaser.layout-start-page .blog-entries {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-top: 60px;
  }
  .organism-newsteaser.layout-start-page .blog-entries:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-newsteaser.layout-start-page .blog-entries {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-top: 60px;
  }
  .organism-newsteaser.layout-start-page .blog-entries:before {
    content: '';
    width: 100%;
  }
}
.organism-newsteaser.layout-start-page .blog-entries ul {
  display: block;
  width: 101.66666667%;
  margin: 0 -0.83333333%;
  *zoom: 1;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-newsteaser.layout-start-page .blog-entries ul:before,
.organism-newsteaser.layout-start-page .blog-entries ul:after {
  content: "";
  display: table;
}
.organism-newsteaser.layout-start-page .blog-entries ul:after {
  clear: both;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 640px) {
  .organism-newsteaser.layout-start-page .blog-entries ul {
    display: block;
  }
}
.organism-newsteaser.layout-start-page .blog-entries ul li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
.organism-newsteaser.layout-start-page .blog-entries ul li:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 640px) {
  .organism-newsteaser.layout-start-page .blog-entries ul li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 72px;
  }
  .organism-newsteaser.layout-start-page .blog-entries ul li:before {
    content: '';
    width: 100%;
  }
  .organism-newsteaser.layout-start-page .blog-entries ul li:last-of-type {
    margin-bottom: 0px;
  }
}
.organism-newsteaser.layout-standard ul {
  margin-left: 0px;
  flex-wrap: wrap;
  justify-content: center;
}
.organism-newsteaser.layout-standard li {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
}
.organism-newsteaser.layout-standard li:before {
  content: '';
  width: 100%;
}
.organism-newsteaser.layout-standard li:last-child {
  margin-bottom: 0px !important;
}
@media only screen and (max-width: 529px) {
  .organism-newsteaser.layout-standard li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 72px;
  }
  .organism-newsteaser.layout-standard li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-newsteaser.layout-standard li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 72px;
  }
  .organism-newsteaser.layout-standard li:before {
    content: '';
    width: 100%;
  }
}
.organism-newsteaser ul li {
  border-bottom: 0px;
}
.organism-pagelinks {
  margin-bottom: calc( 72px - 1.66666667% );
}
.organism-pagelinks > div > ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.organism-pagelinks > div > ul > li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks > div > ul > li:before {
  content: '';
  width: 100%;
}
.organism-pagelinks > div > ul > li:before {
  display: none;
}
.organism-pagelinks .card-inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.organism-pagelinks .card-inner .card-text {
  -ms-flex-self: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  width: 100%;
}
.organism-pagelinks .card-inner .card-text h3 {
  margin-bottom: 0;
}
.organism-pagelinks .card-inner .card-image {
  -ms-flex-self: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  width: 100%;
}
.organism-pagelinks > div > ul > li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks > div > ul > li:before {
  content: '';
  width: 100%;
}
.organism-pagelinks.config-col-2 > div > ul > li {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks.config-col-2 > div > ul > li:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .organism-pagelinks.config-col-2 > div > ul > li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-pagelinks.config-col-2 > div > ul > li:before {
    content: '';
    width: 100%;
  }
}
.organism-pagelinks.config-col-3 > div > ul > li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks.config-col-3 > div > ul > li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-pagelinks.config-col-3 > div > ul > li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-pagelinks.config-col-3 > div > ul > li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-pagelinks.config-col-3 > div > ul > li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-pagelinks.config-col-3 > div > ul > li:before {
    content: '';
    width: 100%;
  }
}
.organism-pagelinks.config-col-4 > div > ul > li {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks.config-col-4 > div > ul > li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-pagelinks.config-col-4 > div > ul > li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-pagelinks.config-col-4 > div > ul > li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-pagelinks.config-col-4 > div > ul > li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-pagelinks.config-col-4 > div > ul > li:before {
    content: '';
    width: 100%;
  }
}
.organism-pagelinks .item {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 16.8px;
}
.organism-pagelinks .inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.organism-pagelinks a {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-pagelinks a:hover .teaserbox-text {
  background: #fff;
}
.organism-pagelinks h3 {
  font-size: 20px;
  margin-bottom: 12px !important;
}
.organism-pagelinks .teaserbox-image.no-image {
  display: none;
}
.organism-pagelinks .teaserbox-image.no-image + .teaserbox-text {
  margin-top: -12px;
}
.organism-pagelinks .teaserbox-text {
  flex-grow: 1;
}
.organism-pagelinks .teaserbox-text p:last-child {
  display: flex;
  flex-direction: column-reverse;
}
.organism-pagelinks.config-style-boxed {
  margin-bottom: 6px;
}
.organism-pagelinks.config-style-listed > h3 {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: #00782c;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 1rem !important;
}
.organism-pagelinks.config-style-listed .item {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  display: inline-block;
  margin-bottom: 12px;
}
.organism-pagelinks.config-style-listed .item:before {
  content: '';
  width: 100%;
}
.organism-pagelinks.config-style-listed .item:before {
  display: none;
}
.organism-pagelinks.config-style-listed .item a {
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.organism-pagelinks.config-style-listed .item .teaserbox-image {
  display: none !important;
}
.organism-pagelinks.config-style-listed .item h3 {
  display: block;
  margin-bottom: 0 !important;
}
.organism-pagelinks.config-style-listed .item h3:after {
  display: none;
}
.organism-pagelinks.config-style-listed .teaserbox-text {
  vertical-align: middle;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.organism-pagelinks.config-style-listed .text-right {
  vertical-align: middle;
  display: inline-block;
  float: right;
  width: auto;
  white-space: nowrap;
  align-content: center;
  justify-content: center;
}
.organism-quote {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-top: 36px;
  margin-bottom: 72px;
}
.organism-quote:before {
  content: '';
  width: 100%;
}
.organism-quote blockquote {
  display: flex;
  flex-wrap: wrap;
  border-left: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  border-color: #00782c;
  padding-top: 24px;
  padding-bottom: 24px;
}
.organism-quote blockquote p {
  margin-bottom: 20px;
}
.organism-quote blockquote .customer-image {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
}
.organism-quote blockquote .customer-image:before {
  content: '';
  width: 100%;
}
.organism-quote blockquote .customer-image figure {
  line-height: inherit;
  background: transparent;
  padding: 5px;
}
.organism-quote blockquote .customer-image figure a {
  padding: 0;
}
.organism-quote blockquote .customer-image figure img {
  max-width: 250px;
}
.organism-quote blockquote .customer-content {
  display: inline;
  float: left;
  width: 73.33333333%;
  margin: 0 0.83333333%;
  padding-left: 24px;
}
.organism-quote blockquote .customer-content:before {
  content: '';
  width: 100%;
}
.organism-quote blockquote .customer-content .customer-logo figure {
  background: transparent;
  padding: 0;
}
.organism-quote blockquote .customer-content .customer-logo figure a {
  padding: 5px;
}
.organism-quote blockquote .customer-content .customer-logo figure img {
  max-width: 250px;
}
@media only screen and (max-width: 529px) {
  .organism-quote blockquote .customer-image {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-quote blockquote .customer-image:before {
    content: '';
    width: 100%;
  }
  .organism-quote blockquote .customer-content {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    padding-left: 0px;
  }
  .organism-quote blockquote .customer-content:before {
    content: '';
    width: 100%;
  }
  .organism-quote blockquote .customer-content .customer-logo figure img {
    max-width: 150px;
  }
}
@media only screen and (min-width: 530px) and (max-width: 640px) {
  .organism-quote blockquote .customer-image {
    display: inline;
    float: left;
    width: 40%;
    margin: 0 0.83333333%;
  }
  .organism-quote blockquote .customer-image:before {
    content: '';
    width: 100%;
  }
  .organism-quote blockquote .customer-content {
    display: inline;
    float: left;
    width: 56.66666667%;
    margin: 0 0.83333333%;
  }
  .organism-quote blockquote .customer-content:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 950px) and (max-width: 1128px), only screen and (min-width: 1129px) {
  .organism-quote blockquote .customer-image {
    display: inline;
    float: left;
    width: 23.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-quote blockquote .customer-image:before {
    content: '';
    width: 100%;
  }
  .organism-quote blockquote .customer-content {
    display: inline;
    float: left;
    width: 56.66666667%;
    margin: 0 0.83333333%;
    padding-left: 0px;
  }
  .organism-quote blockquote .customer-content:before {
    content: '';
    width: 100%;
  }
}
.organism-references {
  display: flex !important;
}
.organism-references:before {
  display: none;
}
.organism-references .organism-imagegallery {
  height: 100%;
}
.organism-references .organism-imagegallery .grid-row {
  height: 100%;
}
.organism-references .organism-imagegallery ul {
  margin: 0px;
  height: 100%;
  display: flex;
  align-items: center;
}
.organism-references .organism-imagegallery li {
  border: none;
}
.organism-references .organism-imagegallery li figure {
  background: none;
  padding: 20px;
}
.organism-references .organism-imagegallery a {
  background: transparent;
  margin-bottom: 0px;
}
.organism-references.config-slider .organism-imagegallery {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-left: 0.83333333%;
}
.organism-references.config-slider .organism-imagegallery:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px), only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-references.config-slider .organism-imagegallery {
    display: inline;
    float: left;
    width: 81.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .organism-references.config-slider .organism-imagegallery:before {
    content: '';
    width: 100%;
  }
}
.organism-references.config-slider .organism-imagegallery .owl-wrapper {
  display: -ms-flexbox !important;
  display: -webkit-flex !important;
  display: flex !important;
  align-items: center !important;
}
.organism-references.config-slider .organism-imagegallery ul:not(.owl-carousel) {
  height: 103px;
  overflow: hidden;
}
.organism-references.config-slider .organism-imagegallery ul .owl-item li {
  width: 100%;
}
.organism-references.config-slider .organism-imagegallery ul .owl-item li figure {
  padding: 24px;
}
.organism-references.config-slider .owl-nav .owl-prev,
.organism-references.config-slider .owl-nav .owl-next {
  margin: 0px;
  padding: 0px;
  height: 84px;
  width: 38px;
  background: #dfdfdf;
  display: inline-block;
  opacity: 1;
  border: none;
  border-radius: 0;
  position: absolute;
  top: 50%;
  transition: all 0.2s ease-out;
}
.organism-references.config-slider .owl-nav .owl-prev:before,
.organism-references.config-slider .owl-nav .owl-next:before {
  display: block;
  content: '';
  width: 18px;
  height: 18px;
  background: none;
  border: 4px solid #ffffff;
  position: absolute;
  top: 50%;
}
.organism-references.config-slider .owl-nav .owl-prev span,
.organism-references.config-slider .owl-nav .owl-next span {
  display: none;
}
.organism-references.config-slider .owl-nav .owl-prev {
  left: 0px;
  transform: translateY(-50%) translateX(-120%);
  border-bottom-right-radius: 84px;
  border-top-right-radius: 84px;
}
.organism-references.config-slider .owl-nav .owl-prev:before {
  left: 12px;
  border-right: 0px;
  border-top: 0px;
  transform: translateY(-50%) rotate(45deg);
}
.organism-references.config-slider .owl-nav .owl-prev:hover {
  transform: translateY(-50%) translateX(-110%);
}
.organism-references.config-slider .owl-nav .owl-next {
  right: 0px;
  transform: translateY(-50%) translateX(120%);
  border-bottom-left-radius: 84px;
  border-top-left-radius: 84px;
}
.organism-references.config-slider .owl-nav .owl-next:before {
  right: 12px;
  border-left: 0px;
  border-bottom: 0px;
  transform: translateY(-50%) rotate(45deg);
}
.organism-references.config-slider .owl-nav .owl-next:hover {
  transform: translateY(-50%) translateX(110%);
}
.organism-references:not(.config-slider) .organism-imagegallery {
  display: inline;
  float: left;
  width: 81.66666667%;
  margin: 0 0.83333333%;
}
.organism-references:not(.config-slider) .organism-imagegallery:before {
  content: '';
  width: 100%;
}
.organism-references:not(.config-slider) .organism-imagegallery ul li {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
}
.organism-references:not(.config-slider) .organism-imagegallery ul li:before {
  content: '';
  width: 100%;
}
.organism-references.config-showall {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-references.config-showall:before {
  content: '';
  width: 100%;
}
.organism-references.config-showall .organism-imagegallery {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.organism-references.config-showall .organism-imagegallery:before {
  content: '';
  width: 100%;
}
.organism-references.config-showall .organism-imagegallery ul li {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
}
.organism-references.config-showall .organism-imagegallery ul li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-references.config-showall .organism-imagegallery ul li {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
  }
  .organism-references.config-showall .organism-imagegallery ul li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-references.config-showall .organism-imagegallery ul li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
  }
  .organism-references.config-showall .organism-imagegallery ul li:before {
    content: '';
    width: 100%;
  }
}
.organism-references > a {
  display: inline;
  float: left;
  width: 15%;
  margin: 0 0.83333333%;
  align-self: center;
}
.organism-references > a:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .organism-references .organism-imagegallery ul .owl-wrapper-outer {
    overflow: inherit;
    margin: 0;
  }
}
.owl-carousel {
  display: block;
}
.organism-references.config-slider .owl-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
}
.organism-references.config-slider .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
.organism-references.config-slider .owl-carousel .owl-stage a {
  padding: 20px;
}
@media only screen and (max-width: 529px) {
  .organism-references.config-slider .owl-carousel .owl-stage a {
    padding: 10px;
  }
}
.organism-search {
  z-index: 2;
  position: relative;
  background: #00782c;
  display: none;
}
.organism-search.fixed {
  z-index: -99;
}
.organism-search .button {
  border: 1px solid #ffffff;
}
.organism-search .button:hover {
  border: 1px solid #ffffff;
}
.organism-search .container {
  padding-left: 2%;
  padding-right: 2%;
  position: relative;
}
.organism-search fieldset {
  display: block;
  width: 102.5%;
  margin: 0 -1.25%;
  *zoom: 1;
  padding: 0;
  border: 0;
}
.organism-search fieldset:before,
.organism-search fieldset:after {
  content: "";
  display: table;
}
.organism-search fieldset:after {
  clear: both;
}
.organism-search #search-field {
  display: inline;
  float: left;
  width: 72.5%;
  margin: 0 1.25%;
}
.organism-search #search-field:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-search #search-field {
    display: inline;
    float: left;
    width: 60%;
    margin: 0 1.25%;
  }
  .organism-search #search-field:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-search #search-field {
    display: inline;
    float: left;
    width: 72.5%;
    margin: 0 1.25%;
  }
  .organism-search #search-field:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-search #search-field {
    display: inline;
    float: left;
    width: 60%;
    margin: 0 1.25%;
  }
  .organism-search #search-field:before {
    content: '';
    width: 100%;
  }
}
.organism-search #search-button {
  display: inline;
  float: left;
  width: 22.5%;
  margin: 0 1.25%;
}
.organism-search #search-button:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-search #search-button {
    display: inline;
    float: left;
    width: 35%;
    margin: 0 1.25%;
  }
  .organism-search #search-button:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-search #search-button {
    display: inline;
    float: left;
    width: 22.5%;
    margin: 0 1.25%;
    padding: 10px 5px;
  }
  .organism-search #search-button:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-search #search-button {
    display: inline;
    float: left;
    width: 35%;
    margin: 0 1.25%;
  }
  .organism-search #search-button:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-search h2 {
    font-size: 20px;
    width: 60%;
  }
}
#search.fixedsmall {
  position: fixed;
  top: 100px;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
}
#search .center {
  position: relative;
}
#search .close-slidedown-menu-btn {
  right: 60px !important;
  top: 0px !important;
  border: 1px solid #ffffff;
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  #search .close-slidedown-menu-btn {
    top: -14px !important;
    right: 3% !important;
  }
}
#search .close-slidedown-menu-btn i {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto auto;
}
#search .close-slidedown-menu-btn i:before,
#search .close-slidedown-menu-btn i:after {
  -ms-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#search .close-slidedown-menu-btn:hover {
  background: #00782c;
}
#search .close-slidedown-menu-btn:hover i:before,
#search .close-slidedown-menu-btn:hover i:after {
  background: #ffffff;
}
.organism-seachresults h3 {
  margin-bottom: 0;
}
.organism-seachresults .molecule-breadcrumbs {
  margin-left: 0 !important;
  margin-right: 0;
  margin-top: 5px !important;
  margin-bottom: 10px;
}
.organism-seachresults .molecule-breadcrumbs li:first-child a {
  padding-left: 0;
}
.organism-seachresults li.searchresult {
  border-top: 1px solid #f1f1f1;
  padding-top: 26px !important;
  padding-bottom: 26px !important;
}
.organism-seachresults li.searchresult :last-child {
  margin-bottom: 0;
}
.organism-sitemap a {
  text-decoration: none;
}
.organism-sitemap *,
.organism-sitemap {
  list-style-type: none !important;
}
.organism-sitemap > li {
  margin-left: 0;
}
.organism-sitemap ul {
  margin-bottom: 0;
  padding-top: 15px;
}
.organism-sitemap ul > li {
  margin-bottom: 15px !important;
}
.organism-sitemap .tree-structure {
  margin-left: 0;
}
.organism-sitemap h2,
.organism-sitemap h3,
.organism-sitemap h4,
.organism-sitemap h5 {
  margin-bottom: 0;
}
.organism-sitemap li > ul {
  border-left: 1px solid #f1f1f1;
  margin-left: 15px;
  padding-left: 15px;
}
.organism-sitemap li > ul li {
  position: relative;
}
.organism-sitemap li > ul li:before {
  content: '';
  display: block;
  width: 20px;
  border-bottom: 1px solid #f1f1f1;
  position: absolute;
  left: -15px;
  top: 50%;
}
.organism-sitemap li > ul > li {
  padding-left: 15px;
}
.organism-sitemap li > ul > li:before {
  top: 12px;
}
.organism-sitemap:first-of-type > li:first-child {
  padding-left: 25px;
  background: url('../../frontend/style/default/organisms/frontend/style/default/images/svg/home.svg') no-repeat left center;
  background-size: 16px 16px;
}
.organism-submenu {
  margin-bottom: calc( 60px - 1.66666667% );
}
.organism-submenu ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.organism-submenu li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-submenu li:before {
  content: '';
  width: 100%;
}
.organism-submenu .card-inner {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  height: 100%;
}
.organism-submenu .card-inner .card-text {
  -ms-flex-self: start;
  -webkit-align-self: flex-start;
  align-self: flex-start;
  width: 100%;
}
.organism-submenu .card-inner .card-text h3 {
  margin-bottom: 0;
}
.organism-submenu .card-inner .card-image {
  -ms-flex-self: end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  width: 100%;
}
.organism-submenu a {
  width: 100%;
}
.organism-submenu.config-col-2 li {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-submenu.config-col-2 li:before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .organism-submenu.config-col-2 li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-submenu.config-col-2 li:before {
    content: '';
    width: 100%;
  }
}
.organism-submenu.config-col-3 li {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
  margin-bottom: 1.66666667%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.organism-submenu.config-col-3 li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-submenu.config-col-3 li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-submenu.config-col-3 li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-submenu.config-col-3 li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-submenu.config-col-3 li:before {
    content: '';
    width: 100%;
  }
}
.organism-submenu.config-col-4 li {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 1.66666667%;
}
.organism-submenu.config-col-4 li:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .organism-submenu.config-col-4 li {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-submenu.config-col-4 li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-submenu.config-col-4 li {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-submenu.config-col-4 li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .organism-submenu.config-col-4 li {
    display: inline;
    float: left;
    width: 48.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
  }
  .organism-submenu.config-col-4 li:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .organism-submenu.config-col-4 li {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
    margin-bottom: 1.66666667%;
  }
  .organism-submenu.config-col-4 li:before {
    content: '';
    width: 100%;
  }
}
.organism-submenu.tableofcontents ol > li {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
  margin-bottom: 12px;
  padding: 0;
}
.organism-submenu.tableofcontents ol > li:before {
  content: '';
  width: 100%;
}
.organism-submenu.tableofcontents ol > li:last-child {
  margin-bottom: 0;
}
main .organism-submenu .bg {
  border: none;
}
.page-career-landing .organism-submenu {
  background: none;
  box-shadow: none;
}
.page-fullwidth .organism-submenu.tableofcontents {
  margin-bottom: 36px;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .page-fullwidth .organism-submenu.tableofcontents {
    width: 80%;
  }
}
section.bg-light {
  background-color: #f1f1f1;
}
section.bg-dark {
  background-color: #2c2c2c;
  color: #bdbdbd;
}
section.bg-dark h2,
section.bg-dark h3,
section.bg-dark h4 {
  color: #ffffff;
  font-weight: normal;
}
section.bg-dark .button {
  color: #bdbdbd !important;
  border-color: #bdbdbd !important;
}
section.bg-dark .button:hover {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
section.bg-dark .button.inverted {
  color: #0d0d0e !important;
  border-color: #0d0d0e !important;
}
section.bg-dark .button.inverted:hover {
  color: #0d0d0e !important;
  border-color: #bdbdbd !important;
}
section.bg-dark + .bg-dark {
  border-top: 1px solid #f1f1f1;
}
section.bg-brand-primary {
  background-color: #00782c;
  color: #ffffff;
}
section.bg-brand-primary .container-inner h2 div {
  background-color: #ffffff;
}
section.bg-brand-primary .container-inner h2 div svg {
  fill: #00782c;
}
section.bg-brand-primary h2,
section.bg-brand-primary h3,
section.bg-brand-primary h4 {
  color: #ffffff;
  font-weight: normal;
}
section.bg-brand-primary .button {
  color: #ffffff !important;
  border-color: #ffffff !important;
}
section.bg-brand-primary .button:hover {
  color: #bdbdbd !important;
  border-color: #bdbdbd !important;
}
section.bg-brand-primary .button.inverted {
  color: #0d0d0e !important;
  border-color: #0d0d0e !important;
}
section.bg-brand-primary .button.inverted:hover {
  color: #0d0d0e !important;
  border-color: #bdbdbd !important;
}
section .container-inner:before {
  display: none;
}
section .container-inner > div {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
section .container-inner > div:before {
  content: '';
  width: 100%;
}
section .container-inner :last-child {
  margin-bottom: 0 !important;
}
section.section-config-col-2:not(.no-margin) .container-inner > div {
  display: inline;
  float: left;
  width: 44.16666667%;
  margin: 0 0.83333333%;
}
section.section-config-col-2:not(.no-margin) .container-inner > div:before {
  content: '';
  width: 100%;
}
section.section-config-col-2:not(.no-margin) .container-inner > div:nth-child(2n+1) {
  margin-left: 9.16666667%;
}
@media only screen and (max-width: 529px), only screen and (min-width: 530px) and (max-width: 949px) {
  section.section-config-col-2:not(.no-margin) .container-inner > div {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  section.section-config-col-2:not(.no-margin) .container-inner > div:before {
    content: '';
    width: 100%;
  }
  section.section-config-col-2:not(.no-margin) .container-inner > div:nth-child(2n+1) {
    margin-left: 0.83333333%;
  }
}
section.section-config-col-2.no-margin:not(.no-push) .container-inner .grid-row {
  height: 100%;
}
section.section-config-col-2.no-margin:not(.no-push) .container-inner .grid-row > .inner {
  display: flex;
  height: 100%;
}
section.section-config-col-2.no-margin:not(.no-push) .container-inner .grid-row > .inner > .item {
  align-self: center;
}
section.section-config-col-2.no-margin .container-inner {
  display: flex;
  flex-wrap: wrap;
}
section.section-config-col-2.no-margin .container-inner > *:not(h3) {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
section.section-config-col-2.no-margin .container-inner > *:not(h3):before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  section.section-config-col-2.no-margin .container-inner > *:not(h3) {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  section.section-config-col-2.no-margin .container-inner > *:not(h3):before {
    content: '';
    width: 100%;
  }
}
section.section-config-col-2.no-margin .container-inner > h2 {
  width: 100% !important;
  text-align: center;
  margin-bottom: 24px !important;
}
section.section-config-col-2.no-margin .container-inner > h3 {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
  display: block !important;
  float: none !important;
  margin: auto !important;
  margin-bottom: 48px !important;
}
section.section-config-col-2.no-margin .container-inner > h3:before {
  content: '';
  width: 100%;
}
section.section-config-col-2.no-margin .container-inner .config-col-2 {
  background: #ffffff;
}
section.section-config-col-2.no-margin .container-inner .config-col-2 .readmore {
  font-weight: bold;
  color: #00782c;
  text-decoration: none;
}
section.section-config-col-2.no-margin .container-inner .config-col-2 .readmore:hover {
  color: #676b72;
}
section.section-config-col-2.no-margin .container-inner .config-col-2 .col-2 {
  margin: 0px;
  padding: 12px;
}
section.section-config-col-2.no-margin .container-inner .molecule-figure {
  padding: 0px;
  margin: 0;
}
section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3) {
  display: inline;
  float: left;
  width: 48.33333333%;
  margin: 0 0.83333333%;
}
section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3):before {
  content: '';
  width: 100%;
}
@media only screen and (max-width: 529px) {
  section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3) {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3):before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3) .inner {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 529px) {
  section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3) .item {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  section.section-config-col-2.no-margin:not(.no-push) .container-inner > *:not(h3) .item:before {
    content: '';
    width: 100%;
  }
}
section.section-config-col-2.no-margin.no-push .container-inner .config-col-2 .col-2 {
  padding: 0 !important;
}
section.section-config-col-2 h2 + h3 {
  text-align: center;
  width: 50%;
  margin: auto;
  margin-top: -24px;
  color: #676b72;
  font-size: 1.2em;
}
section .container-inner > h2 {
  display: flex;
  margin-top: 0px;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 40px;
}
section .container-inner > h2 div {
  padding: 10px;
  border-radius: 50%;
  background-color: #00782c;
  width: 70px;
  height: 70px;
  position: relative;
  margin-right: 24px;
}
@media only screen and (max-width: 529px) {
  section .container-inner > h2 {
    flex-direction: column;
    justify-content: center;
  }
  section .container-inner > h2 div {
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
section h2 > div > svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin: auto;
}
.organism-tabs {
  *zoom: 1;
  margin-bottom: 36px;
}
.organism-tabs:before,
.organism-tabs:after {
  content: "";
  display: table;
}
.organism-tabs:after {
  clear: both;
}
.organism-tabs:after {
  content: "";
  display: table;
  clear: both;
}
.tabs {
  list-style-type: none;
  margin-left: 0;
  *zoom: 1;
}
.tabs li {
  margin-left: 0;
  padding: 0 !important;
}
.tabs li:before {
  display: none !important;
}
.tabs:before,
.tabs:after {
  content: "";
  display: table;
}
.tabs:after {
  clear: both;
}
.tabs:after {
  content: "";
  display: table;
  clear: both;
}
.tabs a {
  -ms-transition: all 0s linear;
  -moz-transition: all 0s linear;
  -webkit-transition: all 0s linear;
  transition: all 0s linear;
}
.tabs p {
  margin-bottom: 24px;
}
.tabs p:last-child {
  margin-bottom: 0;
}
.tabs h6 {
  margin-bottom: 0;
}
.tabs .tab {
  display: inline;
  margin: 0;
  line-height: 24px;
}
.tabs .tab-title {
  display: inline-block;
  background: #f8f8f8;
  border: 1px solid transparent;
  border-bottom: 0;
  text-decoration: none;
  cursor: pointer;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 0;
}
.tabs .tab-title.active {
  border: 1px solid #f1f1f1;
  background: #ffffff;
  border-bottom-color: white;
  margin-bottom: -1px;
}
.tabs .tab-content {
  border-top: 1px solid #f1f1f1;
  float: left;
  display: none;
  background: #ffffff;
  border: 1px solid #f1f1f1;
  padding: 24px;
  width: 100%;
}
@media only screen and (max-width: 529px) {
  .tabs .tab-title {
    padding-left: 12px;
    padding-right: 12px;
    display: block;
    border-top: 1px solid #f1f1f1;
  }
  .tabs .tab-title.active {
    border: 0;
    border: 1px solid #f1f1f1;
    margin-bottom: 0;
  }
  .tabs .tab-content {
    border-top: 0;
    float: none;
    box-sizing: border-box;
  }
}
.organism-tagcloud {
  width: 100%;
  height: 40vh;
}
.organism-twocolumnstableblock {
  margin-top: 24px;
}
.organism-twocolumnstableblock dt {
  display: inline;
  float: left;
  width: 31.66666667%;
  margin: 0 0.83333333%;
}
.organism-twocolumnstableblock dt:before {
  content: '';
  width: 100%;
}
.organism-twocolumnstableblock dd {
  display: inline;
  float: left;
  width: 56.66666667%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
  margin-bottom: 12px;
}
.organism-twocolumnstableblock dd:before {
  content: '';
  width: 100%;
}
.organism-video {
  margin-bottom: 24px;
}
.organism-video .video-inner {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}
.organism-video.config-ratio-16by9 .video-inner {
  padding-bottom: 56.25%;
}
.organism-video.config-ratio-4by3 .video-inner {
  padding-bottom: 75%;
}
.organism-video figure {
  width: 100%;
}
.organism-video figcaption {
  top: 0;
}
.organism-video iframe,
.organism-video embed,
.organism-video object,
.organism-video video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 0;
  background: #000;
}
.page-login-box {
  width: 350px;
  position: absolute;
  left: 50%;
  margin-left: -175px;
  top: 50%;
  transform: translateY(-70%);
}
.page-login-box .logo {
  display: block;
  margin-bottom: 48px;
}
.page-login-box .logo svg {
  display: block;
  width: 165px;
  height: 84px;
  margin: 0 auto;
}
.page-login-box #login-box {
  position: relative;
  background: #ffffff;
  padding: 70px 52px 40px 52px;
  -ms-transition: box-shadow 1s ease-in-out;
  -moz-transition: box-shadow 1s ease-in-out;
  -webkit-transition: box-shadow 1s ease-in-out;
  transition: box-shadow 1s ease-in-out;
}
.page-login-box #login-box.form-error {
  -webkit-animation-name: shake;
  animation-name: shake;
}
.page-login-box #login-box .prepend {
  color: rgba(49, 52, 57, 0.5);
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  height: 46px;
  line-height: 46px;
  text-shadow: 1px 1px 1px #ffffff;
  text-align: center;
  letter-spacing: -.2px;
}
.page-login-box #login-box .email {
  margin-bottom: 14px;
}
.page-login-box #login-box .password {
  margin-bottom: 20px;
}
.page-login-box #login-box .button {
  width: 100%;
}
.page-contact-detail #content .container {
  max-width: 100%;
  padding: 0px !important;
}
.page-contact-detail #content {
  padding-bottom: 0px;
}
.page-contact-detail .molecule-breadcrumbs {
  max-width: 1200px;
  margin: auto;
  float: none;
  display: block;
  margin-bottom: 48px;
  margin-top: 12px;
}
.page-contact-detail .molecule-breadcrumbs ul {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.page-contact-detail .molecule-breadcrumbs ul:before {
  content: '';
  width: 100%;
}
.page-fullwidth main {
  display: inline;
  float: left;
  width: 98.33333333%;
  margin: 0 0.83333333%;
}
.page-fullwidth main:before {
  content: '';
  width: 100%;
}
.page-fullwidth .subheading {
  max-width: 800px;
}
.page-fullwidth_no_intro .molecule-stage {
  display: none !important;
}
.page-landing .container-inner {
  display: block;
  float: none;
  width: 100%;
  margin: 0;
}
.page-landing #content {
  margin-top: 0;
  padding-bottom: 0px;
}
.page-landing #content section {
  overflow: hidden;
  padding-top: 72px;
  padding-bottom: 72px;
}
@media only screen and (max-width: 529px) {
  .page-landing #content section {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
.page-landing #content section:first-child {
  background: #fff;
}
.page-landing #content section:first-child {
  padding: 0px;
}
.page-landing #content section > .inner {
  max-width: 1200px;
  margin: auto;
}
.page-landing #content section .container-inner h2 {
  font-size: 40px;
  font-weight: 200;
  margin-top: 0px;
  margin-bottom: 48px;
}
.page-landing #content #kunden-die-uns-vertrauen {
  background: #ffffff;
}
.page-landing #content .container {
  max-width: 100%;
  margin-left: 0px;
  margin-right: 0px;
}
.page-landing #content .molecule-stage {
  margin-bottom: 0px;
}
.page-plain #content {
  padding-bottom: 0;
  overflow: visible;
}
.page-plain main {
  width: 100%;
}
.page-standard main,
.page-standard #main {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
}
.page-standard main:before,
.page-standard #main:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .page-standard main,
  .page-standard #main {
    display: inline;
    float: left;
    width: 60.83333333%;
    margin: 0 0.83333333%;
  }
  .page-standard main:before,
  .page-standard #main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .page-standard main,
  .page-standard #main {
    display: inline;
    float: left;
    width: 56.66666667%;
    margin: 0 0.83333333%;
  }
  .page-standard main:before,
  .page-standard #main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .page-standard main,
  .page-standard #main {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .page-standard main:before,
  .page-standard #main:before {
    content: '';
    width: 100%;
  }
}
.page-standard.no-sidebar main,
.page-standard.no-sidebar #main {
  display: inline;
  float: left;
  width: 65%;
  margin: 0 0.83333333%;
  margin-left: 17.5%;
}
.page-standard.no-sidebar main:before,
.page-standard.no-sidebar #main:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .page-standard.no-sidebar main,
  .page-standard.no-sidebar #main {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
  }
  .page-standard.no-sidebar main:before,
  .page-standard.no-sidebar #main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .page-standard.no-sidebar main,
  .page-standard.no-sidebar #main {
    display: inline;
    float: left;
    width: 65%;
    margin: 0 0.83333333%;
    margin-left: 17.5%;
  }
  .page-standard.no-sidebar main:before,
  .page-standard.no-sidebar #main:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .page-standard.no-sidebar main,
  .page-standard.no-sidebar #main {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .page-standard.no-sidebar main:before,
  .page-standard.no-sidebar #main:before {
    content: '';
    width: 100%;
  }
}
.page-standard aside {
  display: inline;
  float: left;
  width: 23.33333333%;
  margin: 0 0.83333333%;
  margin-left: 9.16666667%;
}
.page-standard aside:before {
  content: '';
  width: 100%;
}
@media only screen and (min-width: 950px) and (max-width: 1128px) {
  .page-standard aside {
    display: inline;
    float: left;
    width: 27.5%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .page-standard aside:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (min-width: 530px) and (max-width: 949px) {
  .page-standard aside {
    display: inline;
    float: left;
    width: 31.66666667%;
    margin: 0 0.83333333%;
    margin-left: 9.16666667%;
  }
  .page-standard aside:before {
    content: '';
    width: 100%;
  }
}
@media only screen and (max-width: 529px) {
  .page-standard aside {
    display: inline;
    float: left;
    width: 98.33333333%;
    margin: 0 0.83333333%;
  }
  .page-standard aside:before {
    content: '';
    width: 100%;
  }
}
.page-standard .newsteaser-container {
  background: #2c2c2c;
  margin-top: 72px;
  margin-bottom: -10vh;
}
.page-standard .newsteaser-container h2 {
  color: #ffffff;
  text-align: center;
  display: flex;
  margin-top: 0px;
  justify-content: center;
  line-height: 64px;
  font-size: 40px;
  font-weight: 200;
  margin-bottom: 48px;
}
.page-standard .newsteaser-container h2 div {
  padding: 10px;
  border-radius: 50%;
  background-color: #00782c;
  width: 70px;
  height: 70px;
  position: relative;
  margin-right: 24px;
}
.page-standard .newsteaser-container h2 div svg {
  width: 35px;
  height: 35px;
  fill: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 529px) {
  .page-standard .newsteaser-container h2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .page-standard .newsteaser-container h2 div {
    flex-shrink: 0;
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.page-standard .newsteaser-container .organism-newsteaser {
  margin-top: 72px;
  margin-bottom: 72px;
}
.page-standard .bg-light {
  padding: 24px;
  margin-bottom: 48px;
}
.page-standard .bg-light h2 {
  margin-top: 0px !important;
}
