/* ===================================================
Main File For Imports
=================================================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after {
  content: '';
  content: none; }

q:before, q:after {
  content: '';
  content: none; }

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

/* ===================================================
FONT BASE SIZE
=================================================== */
html {
  font-size: 62.5%; }

body {
  font-size: 16px; }

/* ===================================================
GLOBAL SETTINGS
=================================================== */
/* ---------------------------------------------------
Prefix
--------------------------------------------------- */
/* ---------------------------------------------------
Animations
--------------------------------------------------- */
/* ===================================================
FOUNDATION SETTINGS
=================================================== */
/* ===================================================
BREAKPOINT MIXIN

General Mixin to add media query support

Usage:
1. Define your project settings in global/_vars.scss:
	- change/add the breakpoints you need for your project
	- change the variable $mobile-first so that it fits your needs (true or false)

2. Add a specific breakpoint with:
	- @include breakpoint($my-breakpoint-variable){};

3. When you need "min-width" and "max-width" you just have to provide a second parameter:
	- @include breakpoint($my-breakpoint-variable-1, $my-breakpoint-variable-2){};


Example: $mobile-first: true;
	@include breakpoint(400px){
		color: red;
	};

	Output:
		@media only screen and (min-width: 400px) {
			 color: red;
		}

Example: $mobile-first: false;
	@include breakpoint(400px){
		color: red;
	};

	Output:
		@media only screen and (max-width: 400px) {
			 color: red;
		}
=================================================== */
/* ===================================================
PERCENT CALCULATION MIXIN

	- converts pixel into percentage based on a context width (or var)

	Sample input:
	.element {
	     @include cp('padding',10px 0 2px 5px, 980px);
	}

	Sample output:
	.element {
	     padding: 1.02041% 0 0.204082% 0.510204%; // 10px 0 2px 5px
}
=================================================== */
/* ---------------------------------------------------
Clear Units:
- Turn numbers with units into unitless numbers (https://github.com/nex3/sass/issues/533)
--------------------------------------------------- */
/* ===================================================
GRUNTICON MIXIN

	- usage: @include grunticon(filename);
=================================================== */
/* ===================================================
KEYFRAMES MIXIN
=================================================== */
/* ===================================================
PREFIX MIXIN
=================================================== */
/* ===================================================
REM MIXIN

'rem' is a Sass mixin that converts pixel values to rem values for whatever property is passed to it.
It returns two lines of code, one of the regular pixel values (for IE), and another with the
converted rem values (for everyone else). Special thanks to Chris Epstein (http://chriseppstein.github.com)
and Martin Bavio (http://martinbavio.com) for the help and code!

Sample input:
.element {
     @include rem('padding', 10px 0 2px 5px);
}

Sample output:
.element {
     padding: 10px 0 2px 5px;
     padding: 1rem 0 0.2rem 0.5rem;
}

- Baseline, measured in pixels
- The value should be the same as the font-size value for the html element
- If the html element's font-size is set to 62.5% (of the browser's default font-size of 16px),
then the variable below would be 10px.
=================================================== */
/* ===================================================
CENTERING MIXIN
=================================================== */
/* ---------------------------------------------------
Use this mixin to center your elements with translate
--------------------------------------------------- */
/* ===================================================
Clearfix
=================================================== */
/*
Extend
----------------------- */
/* ===================================================
FLEXBOX MIXIN

- see Bourbon
=================================================== */
/* ===================================================
FLOAT MIXIN
=================================================== */
/*
Extend
----------------------- */
/* ===================================================
Hiding Elements
=================================================== */
/* ---------------------------------------------------
ir
--------------------------------------------------- */
/* ---------------------------------------------------
Hidden
--------------------------------------------------- */
.b-category-bar h2, .b-mainnav .b-mainnav__headline {
  display: none;
  visibility: hidden; }

/* ---------------------------------------------------
Visually hidden
--------------------------------------------------- */
/* ---------------------------------------------------
Visibility hidden
--------------------------------------------------- */
/* ---------------------------------------------------
Hide text
--------------------------------------------------- */
/* ===================================================
Inline Block Layouts
=================================================== */
/* ---------------------------------------------------
Mixin
--------------------------------------------------- */
/* ---------------------------------------------------
Extend
--------------------------------------------------- */
/* ===================================================
OMEGA RESET

	- used for Bourbon Neat
=================================================== */
/* ===================================================
Pseudo Element
=================================================== */
/*
Extend
----------------------- */
/* ===================================================
Reset Button
=================================================== */
/*
Extend
----------------------- */
/* ===================================================
ARROW EFFECT
=================================================== */
/* ===================================================
LINEAR GRADIENT MIXIN
=================================================== */
meta.foundation-version {
  font-family: "/5.5.3/"; }

meta.foundation-mq-small {
  font-family: "/only screen/";
  width: 0; }

meta.foundation-mq-small-only {
  font-family: "/only screen and (max-width: 40em)/";
  width: 0; }

meta.foundation-mq-medium {
  font-family: "/only screen and (min-width:40.0625em)/";
  width: 40.0625em; }

meta.foundation-mq-medium-only {
  font-family: "/only screen and (min-width:40.0625em) and (max-width:64em)/";
  width: 40.0625em; }

meta.foundation-mq-large {
  font-family: "/only screen and (min-width:64.0625em)/";
  width: 64.0625em; }

meta.foundation-mq-large-only {
  font-family: "/only screen and (min-width:64.0625em) and (max-width:90em)/";
  width: 64.0625em; }

meta.foundation-mq-xlarge {
  font-family: "/only screen and (min-width:90.0625em)/";
  width: 90.0625em; }

meta.foundation-mq-xlarge-only {
  font-family: "/only screen and (min-width:90.0625em) and (max-width:120em)/";
  width: 90.0625em; }

meta.foundation-mq-xxlarge {
  font-family: "/only screen and (min-width:120.0625em)/";
  width: 120.0625em; }

meta.foundation-data-attribute-namespace {
  font-family: false; }

html, body {
  height: 100%; }

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

html,
body {
  font-size: 100%; }

body {
  background: #fff;
  color: #222;
  cursor: auto;
  font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
  font-style: normal;
  font-weight: normal;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  position: relative; }

a:hover {
  cursor: pointer; }

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

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

#map_canvas img,
#map_canvas embed,
#map_canvas object,
.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
  max-width: none !important; }

.left {
  float: left !important; }

.right {
  float: right !important; }

.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }

.clearfix:after {
  clear: both; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

img {
  display: inline-block;
  vertical-align: middle; }

textarea {
  height: auto;
  min-height: 50px; }

select {
  width: 100%; }

.row {
  margin: 0 auto;
  max-width: 62.5rem;
  width: 100%; }
  .row:before, .row:after {
    content: " ";
    display: table; }
  .row:after {
    clear: both; }
  .row.collapse > .column,
  .row.collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row .row {
    margin: 0 -0.9375rem;
    max-width: none;
    width: auto; }
    .row .row:before, .row .row:after {
      content: " ";
      display: table; }
    .row .row:after {
      clear: both; }
    .row .row.collapse {
      margin: 0;
      max-width: none;
      width: auto; }
      .row .row.collapse:before, .row .row.collapse:after {
        content: " ";
        display: table; }
      .row .row.collapse:after {
        clear: both; }

.column,
.columns {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  width: 100%;
  float: left; }

.column + .column:last-child,
.columns + .column:last-child, .column +
.columns:last-child,
.columns +
.columns:last-child {
  float: right; }

.column + .column.end,
.columns + .column.end, .column +
.columns.end,
.columns +
.columns.end {
  float: left; }

@media only screen {
  .small-push-0 {
    position: relative;
    left: 0;
    right: auto; }
  .small-pull-0 {
    position: relative;
    right: 0;
    left: auto; }
  .small-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto; }
  .small-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto; }
  .small-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto; }
  .small-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto; }
  .small-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .small-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .small-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto; }
  .small-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto; }
  .small-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto; }
  .small-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto; }
  .small-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .small-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .small-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto; }
  .small-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto; }
  .small-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto; }
  .small-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto; }
  .small-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .small-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .small-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto; }
  .small-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto; }
  .small-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto; }
  .small-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
  .small-1 {
    width: 8.3333333333%; }
  .small-2 {
    width: 16.6666666667%; }
  .small-3 {
    width: 25%; }
  .small-4 {
    width: 33.3333333333%; }
  .small-5 {
    width: 41.6666666667%; }
  .small-6 {
    width: 50%; }
  .small-7 {
    width: 58.3333333333%; }
  .small-8 {
    width: 66.6666666667%; }
  .small-9 {
    width: 75%; }
  .small-10 {
    width: 83.3333333333%; }
  .small-11 {
    width: 91.6666666667%; }
  .small-12 {
    width: 100%; }
  .small-offset-0 {
    margin-left: 0 !important; }
  .small-offset-1 {
    margin-left: 8.3333333333% !important; }
  .small-offset-2 {
    margin-left: 16.6666666667% !important; }
  .small-offset-3 {
    margin-left: 25% !important; }
  .small-offset-4 {
    margin-left: 33.3333333333% !important; }
  .small-offset-5 {
    margin-left: 41.6666666667% !important; }
  .small-offset-6 {
    margin-left: 50% !important; }
  .small-offset-7 {
    margin-left: 58.3333333333% !important; }
  .small-offset-8 {
    margin-left: 66.6666666667% !important; }
  .small-offset-9 {
    margin-left: 75% !important; }
  .small-offset-10 {
    margin-left: 83.3333333333% !important; }
  .small-offset-11 {
    margin-left: 91.6666666667% !important; }
  .small-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }
  .column.small-centered,
  .columns.small-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.small-uncentered,
  .columns.small-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .column.small-centered:last-child,
  .columns.small-centered:last-child {
    float: none; }
  .column.small-uncentered:last-child,
  .columns.small-uncentered:last-child {
    float: left; }
  .column.small-uncentered.opposite,
  .columns.small-uncentered.opposite {
    float: right; }
  .row.small-collapse > .column,
  .row.small-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.small-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.small-uncollapse > .column,
  .row.small-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; } }

@media only screen and (min-width: 40.0625em) {
  .medium-push-0 {
    position: relative;
    left: 0;
    right: auto; }
  .medium-pull-0 {
    position: relative;
    right: 0;
    left: auto; }
  .medium-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto; }
  .medium-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto; }
  .medium-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto; }
  .medium-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto; }
  .medium-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .medium-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .medium-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto; }
  .medium-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto; }
  .medium-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto; }
  .medium-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto; }
  .medium-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .medium-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .medium-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto; }
  .medium-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto; }
  .medium-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto; }
  .medium-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto; }
  .medium-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .medium-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .medium-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto; }
  .medium-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto; }
  .medium-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto; }
  .medium-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
  .medium-1 {
    width: 8.3333333333%; }
  .medium-2 {
    width: 16.6666666667%; }
  .medium-3 {
    width: 25%; }
  .medium-4 {
    width: 33.3333333333%; }
  .medium-5 {
    width: 41.6666666667%; }
  .medium-6 {
    width: 50%; }
  .medium-7 {
    width: 58.3333333333%; }
  .medium-8 {
    width: 66.6666666667%; }
  .medium-9 {
    width: 75%; }
  .medium-10 {
    width: 83.3333333333%; }
  .medium-11 {
    width: 91.6666666667%; }
  .medium-12 {
    width: 100%; }
  .medium-offset-0 {
    margin-left: 0 !important; }
  .medium-offset-1 {
    margin-left: 8.3333333333% !important; }
  .medium-offset-2 {
    margin-left: 16.6666666667% !important; }
  .medium-offset-3 {
    margin-left: 25% !important; }
  .medium-offset-4 {
    margin-left: 33.3333333333% !important; }
  .medium-offset-5 {
    margin-left: 41.6666666667% !important; }
  .medium-offset-6 {
    margin-left: 50% !important; }
  .medium-offset-7 {
    margin-left: 58.3333333333% !important; }
  .medium-offset-8 {
    margin-left: 66.6666666667% !important; }
  .medium-offset-9 {
    margin-left: 75% !important; }
  .medium-offset-10 {
    margin-left: 83.3333333333% !important; }
  .medium-offset-11 {
    margin-left: 91.6666666667% !important; }
  .medium-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }
  .column.medium-centered,
  .columns.medium-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.medium-uncentered,
  .columns.medium-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .column.medium-centered:last-child,
  .columns.medium-centered:last-child {
    float: none; }
  .column.medium-uncentered:last-child,
  .columns.medium-uncentered:last-child {
    float: left; }
  .column.medium-uncentered.opposite,
  .columns.medium-uncentered.opposite {
    float: right; }
  .row.medium-collapse > .column,
  .row.medium-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.medium-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.medium-uncollapse > .column,
  .row.medium-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
  .push-0 {
    position: relative;
    left: 0;
    right: auto; }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto; }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto; }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto; }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto; }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto; }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto; }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto; }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto; }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto; }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto; }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto; }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto; }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto; }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto; }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto; }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto; } }

@media only screen and (min-width: 64.0625em) {
  .large-push-0 {
    position: relative;
    left: 0;
    right: auto; }
  .large-pull-0 {
    position: relative;
    right: 0;
    left: auto; }
  .large-push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto; }
  .large-pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto; }
  .large-push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto; }
  .large-pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto; }
  .large-push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .large-pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .large-push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto; }
  .large-pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto; }
  .large-push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto; }
  .large-pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto; }
  .large-push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .large-pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .large-push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto; }
  .large-pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto; }
  .large-push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto; }
  .large-pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto; }
  .large-push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .large-pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .large-push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto; }
  .large-pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto; }
  .large-push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto; }
  .large-pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto; }
  .column,
  .columns {
    position: relative;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
  .large-1 {
    width: 8.3333333333%; }
  .large-2 {
    width: 16.6666666667%; }
  .large-3 {
    width: 25%; }
  .large-4 {
    width: 33.3333333333%; }
  .large-5 {
    width: 41.6666666667%; }
  .large-6 {
    width: 50%; }
  .large-7 {
    width: 58.3333333333%; }
  .large-8 {
    width: 66.6666666667%; }
  .large-9 {
    width: 75%; }
  .large-10 {
    width: 83.3333333333%; }
  .large-11 {
    width: 91.6666666667%; }
  .large-12 {
    width: 100%; }
  .large-offset-0 {
    margin-left: 0 !important; }
  .large-offset-1 {
    margin-left: 8.3333333333% !important; }
  .large-offset-2 {
    margin-left: 16.6666666667% !important; }
  .large-offset-3 {
    margin-left: 25% !important; }
  .large-offset-4 {
    margin-left: 33.3333333333% !important; }
  .large-offset-5 {
    margin-left: 41.6666666667% !important; }
  .large-offset-6 {
    margin-left: 50% !important; }
  .large-offset-7 {
    margin-left: 58.3333333333% !important; }
  .large-offset-8 {
    margin-left: 66.6666666667% !important; }
  .large-offset-9 {
    margin-left: 75% !important; }
  .large-offset-10 {
    margin-left: 83.3333333333% !important; }
  .large-offset-11 {
    margin-left: 91.6666666667% !important; }
  .large-reset-order {
    float: left;
    left: auto;
    margin-left: 0;
    margin-right: 0;
    right: auto; }
  .column.large-centered,
  .columns.large-centered {
    margin-left: auto;
    margin-right: auto;
    float: none; }
  .column.large-uncentered,
  .columns.large-uncentered {
    float: left;
    margin-left: 0;
    margin-right: 0; }
  .column.large-centered:last-child,
  .columns.large-centered:last-child {
    float: none; }
  .column.large-uncentered:last-child,
  .columns.large-uncentered:last-child {
    float: left; }
  .column.large-uncentered.opposite,
  .columns.large-uncentered.opposite {
    float: right; }
  .row.large-collapse > .column,
  .row.large-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  .row.large-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  .row.large-uncollapse > .column,
  .row.large-uncollapse > .columns {
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
    float: left; }
  .push-0 {
    position: relative;
    left: 0;
    right: auto; }
  .pull-0 {
    position: relative;
    right: 0;
    left: auto; }
  .push-1 {
    position: relative;
    left: 8.3333333333%;
    right: auto; }
  .pull-1 {
    position: relative;
    right: 8.3333333333%;
    left: auto; }
  .push-2 {
    position: relative;
    left: 16.6666666667%;
    right: auto; }
  .pull-2 {
    position: relative;
    right: 16.6666666667%;
    left: auto; }
  .push-3 {
    position: relative;
    left: 25%;
    right: auto; }
  .pull-3 {
    position: relative;
    right: 25%;
    left: auto; }
  .push-4 {
    position: relative;
    left: 33.3333333333%;
    right: auto; }
  .pull-4 {
    position: relative;
    right: 33.3333333333%;
    left: auto; }
  .push-5 {
    position: relative;
    left: 41.6666666667%;
    right: auto; }
  .pull-5 {
    position: relative;
    right: 41.6666666667%;
    left: auto; }
  .push-6 {
    position: relative;
    left: 50%;
    right: auto; }
  .pull-6 {
    position: relative;
    right: 50%;
    left: auto; }
  .push-7 {
    position: relative;
    left: 58.3333333333%;
    right: auto; }
  .pull-7 {
    position: relative;
    right: 58.3333333333%;
    left: auto; }
  .push-8 {
    position: relative;
    left: 66.6666666667%;
    right: auto; }
  .pull-8 {
    position: relative;
    right: 66.6666666667%;
    left: auto; }
  .push-9 {
    position: relative;
    left: 75%;
    right: auto; }
  .pull-9 {
    position: relative;
    right: 75%;
    left: auto; }
  .push-10 {
    position: relative;
    left: 83.3333333333%;
    right: auto; }
  .pull-10 {
    position: relative;
    right: 83.3333333333%;
    left: auto; }
  .push-11 {
    position: relative;
    left: 91.6666666667%;
    right: auto; }
  .pull-11 {
    position: relative;
    right: 91.6666666667%;
    left: auto; } }

[class*="block-grid-"] {
  display: block;
  padding: 0;
  margin: 0 -0.625rem; }
  [class*="block-grid-"]:before, [class*="block-grid-"]:after {
    content: " ";
    display: table; }
  [class*="block-grid-"]:after {
    clear: both; }
  [class*="block-grid-"] > li {
    display: block;
    float: left;
    height: auto;
    padding: 0 0.625rem 1.25rem; }

@media only screen {
  .small-block-grid-1 > li {
    list-style: none;
    width: 100%; }
    .small-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .small-block-grid-2 > li {
    list-style: none;
    width: 50%; }
    .small-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .small-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%; }
    .small-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .small-block-grid-4 > li {
    list-style: none;
    width: 25%; }
    .small-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .small-block-grid-5 > li {
    list-style: none;
    width: 20%; }
    .small-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .small-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%; }
    .small-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .small-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%; }
    .small-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .small-block-grid-8 > li {
    list-style: none;
    width: 12.5%; }
    .small-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .small-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%; }
    .small-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .small-block-grid-10 > li {
    list-style: none;
    width: 10%; }
    .small-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .small-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%; }
    .small-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .small-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%; }
    .small-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .small-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

@media only screen and (min-width: 40.0625em) {
  .medium-block-grid-1 > li {
    list-style: none;
    width: 100%; }
    .medium-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .medium-block-grid-2 > li {
    list-style: none;
    width: 50%; }
    .medium-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .medium-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%; }
    .medium-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .medium-block-grid-4 > li {
    list-style: none;
    width: 25%; }
    .medium-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .medium-block-grid-5 > li {
    list-style: none;
    width: 20%; }
    .medium-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .medium-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%; }
    .medium-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .medium-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%; }
    .medium-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .medium-block-grid-8 > li {
    list-style: none;
    width: 12.5%; }
    .medium-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .medium-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%; }
    .medium-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .medium-block-grid-10 > li {
    list-style: none;
    width: 10%; }
    .medium-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .medium-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%; }
    .medium-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .medium-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%; }
    .medium-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .medium-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

@media only screen and (min-width: 64.0625em) {
  .large-block-grid-1 > li {
    list-style: none;
    width: 100%; }
    .large-block-grid-1 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-1 > li:nth-of-type(1n+1) {
      clear: both; }
  .large-block-grid-2 > li {
    list-style: none;
    width: 50%; }
    .large-block-grid-2 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-2 > li:nth-of-type(2n+1) {
      clear: both; }
  .large-block-grid-3 > li {
    list-style: none;
    width: 33.3333333333%; }
    .large-block-grid-3 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-3 > li:nth-of-type(3n+1) {
      clear: both; }
  .large-block-grid-4 > li {
    list-style: none;
    width: 25%; }
    .large-block-grid-4 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-4 > li:nth-of-type(4n+1) {
      clear: both; }
  .large-block-grid-5 > li {
    list-style: none;
    width: 20%; }
    .large-block-grid-5 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-5 > li:nth-of-type(5n+1) {
      clear: both; }
  .large-block-grid-6 > li {
    list-style: none;
    width: 16.6666666667%; }
    .large-block-grid-6 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-6 > li:nth-of-type(6n+1) {
      clear: both; }
  .large-block-grid-7 > li {
    list-style: none;
    width: 14.2857142857%; }
    .large-block-grid-7 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-7 > li:nth-of-type(7n+1) {
      clear: both; }
  .large-block-grid-8 > li {
    list-style: none;
    width: 12.5%; }
    .large-block-grid-8 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-8 > li:nth-of-type(8n+1) {
      clear: both; }
  .large-block-grid-9 > li {
    list-style: none;
    width: 11.1111111111%; }
    .large-block-grid-9 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-9 > li:nth-of-type(9n+1) {
      clear: both; }
  .large-block-grid-10 > li {
    list-style: none;
    width: 10%; }
    .large-block-grid-10 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-10 > li:nth-of-type(10n+1) {
      clear: both; }
  .large-block-grid-11 > li {
    list-style: none;
    width: 9.0909090909%; }
    .large-block-grid-11 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-11 > li:nth-of-type(11n+1) {
      clear: both; }
  .large-block-grid-12 > li {
    list-style: none;
    width: 8.3333333333%; }
    .large-block-grid-12 > li:nth-of-type(1n) {
      clear: none; }
    .large-block-grid-12 > li:nth-of-type(12n+1) {
      clear: both; } }

/* Clearing Styles */
.clearing-thumbs, [data-clearing] {
  list-style: none;
  margin-left: 0;
  margin-bottom: 0; }
  .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
    content: " ";
    display: table; }
  .clearing-thumbs:after, [data-clearing]:after {
    clear: both; }
  .clearing-thumbs li, [data-clearing] li {
    float: left;
    margin-right: 10px; }
  .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
    margin-right: 0; }

.clearing-blackout {
  background: #333333;
  height: 100%;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 998;
  left: 0; }
  .clearing-blackout .clearing-close {
    display: block; }

.clearing-container {
  height: 100%;
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 998; }

.clearing-touch-label {
  color: #AAAAAA;
  font-size: .6em;
  left: 50%;
  position: absolute;
  top: 50%; }

.visible-img {
  height: 95%;
  position: relative; }
  .visible-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    max-height: 100%;
    max-width: 100%; }

.clearing-caption {
  background: #333333;
  bottom: 0;
  color: #CCCCCC;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  padding: 10px 30px 20px;
  position: absolute;
  text-align: center;
  width: 100%;
  left: 0; }

.clearing-close {
  color: #CCCCCC;
  display: none;
  font-size: 30px;
  line-height: 1;
  padding-left: 20px;
  padding-top: 10px;
  z-index: 999; }
  .clearing-close:hover, .clearing-close:focus {
    color: #CCCCCC; }

.clearing-assembled .clearing-container {
  height: 100%; }
  .clearing-assembled .clearing-container .carousel > ul {
    display: none; }

.clearing-feature li {
  display: none; }
  .clearing-feature li.clearing-featured-img {
    display: block; }

@media only screen and (min-width: 40.0625em) {
  .clearing-main-prev,
  .clearing-main-next {
    height: 100%;
    position: absolute;
    top: 0;
    width: 40px; }
    .clearing-main-prev > span,
    .clearing-main-next > span {
      border: solid 12px;
      display: block;
      height: 0;
      position: absolute;
      top: 50%;
      width: 0; }
      .clearing-main-prev > span:hover,
      .clearing-main-next > span:hover {
        opacity: .8; }
  .clearing-main-prev {
    left: 0; }
    .clearing-main-prev > span {
      left: 5px;
      border-color: transparent;
      border-right-color: #CCCCCC; }
  .clearing-main-next {
    right: 0; }
    .clearing-main-next > span {
      border-color: transparent;
      border-left-color: #CCCCCC; }
  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: .3; }
  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center; }
    .clearing-assembled .clearing-container .carousel > ul {
      display: inline-block;
      z-index: 999;
      height: 100%;
      position: relative;
      float: none; }
      .clearing-assembled .clearing-container .carousel > ul li {
        clear: none;
        cursor: pointer;
        display: block;
        float: left;
        margin-right: 0;
        min-height: inherit;
        opacity: .4;
        overflow: hidden;
        padding: 0;
        position: relative;
        width: 120px; }
        .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
          height: 100%;
          max-width: none; }
        .clearing-assembled .clearing-container .carousel > ul li a.th {
          border: none;
          box-shadow: none;
          display: block; }
        .clearing-assembled .clearing-container .carousel > ul li img {
          cursor: pointer !important;
          width: 100% !important; }
        .clearing-assembled .clearing-container .carousel > ul li.visible {
          opacity: 1; }
        .clearing-assembled .clearing-container .carousel > ul li:hover {
          opacity: .8; }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    height: 85%;
    overflow: hidden; }
  .clearing-close {
    padding-left: 0;
    padding-top: 0;
    position: absolute;
    top: 10px;
    right: 20px; } }

/* small displays */
@media only screen {
  .show-for-small-only, .show-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .hide-for-small-only, .hide-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .visible-for-small-only, .visible-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .hidden-for-small-only, .hidden-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px; }
  table.show-for-small-only, table.show-for-small-up, table.show-for-small, table.show-for-small-down, table.hide-for-medium-only, table.hide-for-medium-up, table.hide-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.show-for-small-only, thead.show-for-small-up, thead.show-for-small, thead.show-for-small-down, thead.hide-for-medium-only, thead.hide-for-medium-up, thead.hide-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.show-for-small-only, tbody.show-for-small-up, tbody.show-for-small, tbody.show-for-small-down, tbody.hide-for-medium-only, tbody.hide-for-medium-up, tbody.hide-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.show-for-small-only, tr.show-for-small-up, tr.show-for-small, tr.show-for-small-down, tr.hide-for-medium-only, tr.hide-for-medium-up, tr.hide-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row; }
  th.show-for-small-only, td.show-for-small-only, th.show-for-small-up, td.show-for-small-up, th.show-for-small, td.show-for-small, th.show-for-small-down, td.show-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.hide-for-medium-up, td.hide-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* medium displays */
@media only screen and (min-width: 40.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .show-for-medium-only, .show-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .hide-for-medium-only, .hide-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .visible-for-medium-only, .visible-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .hidden-for-medium-only, .hidden-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px; }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.show-for-medium-only, table.show-for-medium-up, table.show-for-medium, table.show-for-medium-down, table.hide-for-large-only, table.hide-for-large-up, table.hide-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.show-for-medium-only, thead.show-for-medium-up, thead.show-for-medium, thead.show-for-medium-down, thead.hide-for-large-only, thead.hide-for-large-up, thead.hide-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.show-for-medium-only, tbody.show-for-medium-up, tbody.show-for-medium, tbody.show-for-medium-down, tbody.hide-for-large-only, tbody.hide-for-large-up, tbody.hide-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.show-for-medium-only, tr.show-for-medium-up, tr.show-for-medium, tr.show-for-medium-down, tr.hide-for-large-only, tr.hide-for-large-up, tr.hide-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.show-for-medium-only, td.show-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.show-for-medium, td.show-for-medium, th.show-for-medium-down, td.show-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.hide-for-large-up, td.hide-for-large-up, th.hide-for-large, td.hide-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* large displays */
@media only screen and (min-width: 64.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .show-for-large-only, .show-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .hide-for-large-only, .hide-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .visible-for-large-only, .visible-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .hidden-for-large-only, .hidden-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px; }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.show-for-large-only, table.show-for-large-up, table.show-for-large, table.show-for-large-down, table.hide-for-xlarge-only, table.hide-for-xlarge-up, table.hide-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.show-for-large-only, thead.show-for-large-up, thead.show-for-large, thead.show-for-large-down, thead.hide-for-xlarge-only, thead.hide-for-xlarge-up, thead.hide-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.show-for-large-only, tbody.show-for-large-up, tbody.show-for-large, tbody.show-for-large-down, tbody.hide-for-xlarge-only, tbody.hide-for-xlarge-up, tbody.hide-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.show-for-large-only, tr.show-for-large-up, tr.show-for-large, tr.show-for-large-down, tr.hide-for-xlarge-only, tr.hide-for-xlarge-up, tr.hide-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.show-for-large-only, td.show-for-large-only, th.show-for-large-up, td.show-for-large-up, th.show-for-large, td.show-for-large, th.show-for-large-down, td.show-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.hide-for-xlarge-up, td.hide-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* xlarge displays */
@media only screen and (min-width: 90.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .show-for-xlarge-only, .show-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .hide-for-xlarge-only, .hide-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .visible-for-xlarge-only, .visible-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .hidden-for-xlarge-only, .hidden-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px; }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.show-for-xlarge-only, table.show-for-xlarge-up, table.show-for-xlarge, table.show-for-xlarge-down, table.hide-for-xxlarge-only, table.hide-for-xxlarge-up, table.hide-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.show-for-xlarge-only, thead.show-for-xlarge-up, thead.show-for-xlarge, thead.show-for-xlarge-down, thead.hide-for-xxlarge-only, thead.hide-for-xxlarge-up, thead.hide-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.show-for-xlarge-only, tbody.show-for-xlarge-up, tbody.show-for-xlarge, tbody.show-for-xlarge-down, tbody.hide-for-xxlarge-only, tbody.hide-for-xxlarge-up, tbody.hide-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.show-for-xlarge-only, tr.show-for-xlarge-up, tr.show-for-xlarge, tr.show-for-xlarge-down, tr.hide-for-xxlarge-only, tr.hide-for-xxlarge-up, tr.hide-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.show-for-xlarge-only, td.show-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.show-for-xlarge, td.show-for-xlarge, th.show-for-xlarge-down, td.show-for-xlarge-down, th.hide-for-xxlarge-only, td.hide-for-xxlarge-only, th.hide-for-xxlarge-up, td.hide-for-xxlarge-up, th.hide-for-xxlarge, td.hide-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* xxlarge displays */
@media only screen and (min-width: 120.0625em) {
  .hide-for-small-only, .show-for-small-up, .hide-for-small, .hide-for-small-down, .hide-for-medium-only, .show-for-medium-up, .hide-for-medium, .hide-for-medium-down, .hide-for-large-only, .show-for-large-up, .hide-for-large, .hide-for-large-down, .hide-for-xlarge-only, .show-for-xlarge-up, .hide-for-xlarge, .hide-for-xlarge-down, .show-for-xxlarge-only, .show-for-xxlarge-up, .show-for-xxlarge, .show-for-xxlarge-down {
    display: inherit !important; }
  .show-for-small-only, .hide-for-small-up, .show-for-small, .show-for-small-down, .show-for-medium-only, .hide-for-medium-up, .show-for-medium, .show-for-medium-down, .show-for-large-only, .hide-for-large-up, .show-for-large, .show-for-large-down, .show-for-xlarge-only, .hide-for-xlarge-up, .show-for-xlarge, .show-for-xlarge-down, .hide-for-xxlarge-only, .hide-for-xxlarge-up, .hide-for-xxlarge, .hide-for-xxlarge-down {
    display: none !important; }
  .hidden-for-small-only, .visible-for-small-up, .hidden-for-small, .hidden-for-small-down, .hidden-for-medium-only, .visible-for-medium-up, .hidden-for-medium, .hidden-for-medium-down, .hidden-for-large-only, .visible-for-large-up, .hidden-for-large, .hidden-for-large-down, .hidden-for-xlarge-only, .visible-for-xlarge-up, .hidden-for-xlarge, .hidden-for-xlarge-down, .visible-for-xxlarge-only, .visible-for-xxlarge-up, .visible-for-xxlarge, .visible-for-xxlarge-down {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  .visible-for-small-only, .hidden-for-small-up, .visible-for-small, .visible-for-small-down, .visible-for-medium-only, .hidden-for-medium-up, .visible-for-medium, .visible-for-medium-down, .visible-for-large-only, .hidden-for-large-up, .visible-for-large, .visible-for-large-down, .visible-for-xlarge-only, .hidden-for-xlarge-up, .visible-for-xlarge, .visible-for-xlarge-down, .hidden-for-xxlarge-only, .hidden-for-xxlarge-up, .hidden-for-xxlarge, .hidden-for-xxlarge-down {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px; }
  table.hide-for-small-only, table.show-for-small-up, table.hide-for-small, table.hide-for-small-down, table.hide-for-medium-only, table.show-for-medium-up, table.hide-for-medium, table.hide-for-medium-down, table.hide-for-large-only, table.show-for-large-up, table.hide-for-large, table.hide-for-large-down, table.hide-for-xlarge-only, table.show-for-xlarge-up, table.hide-for-xlarge, table.hide-for-xlarge-down, table.show-for-xxlarge-only, table.show-for-xxlarge-up, table.show-for-xxlarge, table.show-for-xxlarge-down {
    display: table !important; }
  thead.hide-for-small-only, thead.show-for-small-up, thead.hide-for-small, thead.hide-for-small-down, thead.hide-for-medium-only, thead.show-for-medium-up, thead.hide-for-medium, thead.hide-for-medium-down, thead.hide-for-large-only, thead.show-for-large-up, thead.hide-for-large, thead.hide-for-large-down, thead.hide-for-xlarge-only, thead.show-for-xlarge-up, thead.hide-for-xlarge, thead.hide-for-xlarge-down, thead.show-for-xxlarge-only, thead.show-for-xxlarge-up, thead.show-for-xxlarge, thead.show-for-xxlarge-down {
    display: table-header-group !important; }
  tbody.hide-for-small-only, tbody.show-for-small-up, tbody.hide-for-small, tbody.hide-for-small-down, tbody.hide-for-medium-only, tbody.show-for-medium-up, tbody.hide-for-medium, tbody.hide-for-medium-down, tbody.hide-for-large-only, tbody.show-for-large-up, tbody.hide-for-large, tbody.hide-for-large-down, tbody.hide-for-xlarge-only, tbody.show-for-xlarge-up, tbody.hide-for-xlarge, tbody.hide-for-xlarge-down, tbody.show-for-xxlarge-only, tbody.show-for-xxlarge-up, tbody.show-for-xxlarge, tbody.show-for-xxlarge-down {
    display: table-row-group !important; }
  tr.hide-for-small-only, tr.show-for-small-up, tr.hide-for-small, tr.hide-for-small-down, tr.hide-for-medium-only, tr.show-for-medium-up, tr.hide-for-medium, tr.hide-for-medium-down, tr.hide-for-large-only, tr.show-for-large-up, tr.hide-for-large, tr.hide-for-large-down, tr.hide-for-xlarge-only, tr.show-for-xlarge-up, tr.hide-for-xlarge, tr.hide-for-xlarge-down, tr.show-for-xxlarge-only, tr.show-for-xxlarge-up, tr.show-for-xxlarge, tr.show-for-xxlarge-down {
    display: table-row; }
  th.hide-for-small-only, td.hide-for-small-only, th.show-for-small-up, td.show-for-small-up, th.hide-for-small, td.hide-for-small, th.hide-for-small-down, td.hide-for-small-down, th.hide-for-medium-only, td.hide-for-medium-only, th.show-for-medium-up, td.show-for-medium-up, th.hide-for-medium, td.hide-for-medium, th.hide-for-medium-down, td.hide-for-medium-down, th.hide-for-large-only, td.hide-for-large-only, th.show-for-large-up, td.show-for-large-up, th.hide-for-large, td.hide-for-large, th.hide-for-large-down, td.hide-for-large-down, th.hide-for-xlarge-only, td.hide-for-xlarge-only, th.show-for-xlarge-up, td.show-for-xlarge-up, th.hide-for-xlarge, td.hide-for-xlarge, th.hide-for-xlarge-down, td.hide-for-xlarge-down, th.show-for-xxlarge-only, td.show-for-xxlarge-only, th.show-for-xxlarge-up, td.show-for-xxlarge-up, th.show-for-xxlarge, td.show-for-xxlarge, th.show-for-xxlarge-down, td.show-for-xxlarge-down {
    display: table-cell !important; } }

/* Orientation targeting */
.show-for-landscape,
.hide-for-portrait {
  display: inherit !important; }

.hide-for-landscape,
.show-for-portrait {
  display: none !important; }

/* Specific visibility for tables */
table.hide-for-landscape, table.show-for-portrait {
  display: table !important; }

thead.hide-for-landscape, thead.show-for-portrait {
  display: table-header-group !important; }

tbody.hide-for-landscape, tbody.show-for-portrait {
  display: table-row-group !important; }

tr.hide-for-landscape, tr.show-for-portrait {
  display: table-row !important; }

td.hide-for-landscape, td.show-for-portrait,
th.hide-for-landscape,
th.show-for-portrait {
  display: table-cell !important; }

@media only screen and (orientation: landscape) {
  .show-for-landscape,
  .hide-for-portrait {
    display: inherit !important; }
  .hide-for-landscape,
  .show-for-portrait {
    display: none !important; }
  /* Specific visibility for tables */
  table.show-for-landscape, table.hide-for-portrait {
    display: table !important; }
  thead.show-for-landscape, thead.hide-for-portrait {
    display: table-header-group !important; }
  tbody.show-for-landscape, tbody.hide-for-portrait {
    display: table-row-group !important; }
  tr.show-for-landscape, tr.hide-for-portrait {
    display: table-row !important; }
  td.show-for-landscape, td.hide-for-portrait,
  th.show-for-landscape,
  th.hide-for-portrait {
    display: table-cell !important; } }

@media only screen and (orientation: portrait) {
  .show-for-portrait,
  .hide-for-landscape {
    display: inherit !important; }
  .hide-for-portrait,
  .show-for-landscape {
    display: none !important; }
  /* Specific visibility for tables */
  table.show-for-portrait, table.hide-for-landscape {
    display: table !important; }
  thead.show-for-portrait, thead.hide-for-landscape {
    display: table-header-group !important; }
  tbody.show-for-portrait, tbody.hide-for-landscape {
    display: table-row-group !important; }
  tr.show-for-portrait, tr.hide-for-landscape {
    display: table-row !important; }
  td.show-for-portrait, td.hide-for-landscape,
  th.show-for-portrait,
  th.hide-for-landscape {
    display: table-cell !important; } }

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

.hide-for-touch {
  display: inherit !important; }

.touch .show-for-touch {
  display: inherit !important; }

.touch .hide-for-touch {
  display: none !important; }

/* Specific visibility for tables */
table.hide-for-touch {
  display: table !important; }

.touch table.show-for-touch {
  display: table !important; }

thead.hide-for-touch {
  display: table-header-group !important; }

.touch thead.show-for-touch {
  display: table-header-group !important; }

tbody.hide-for-touch {
  display: table-row-group !important; }

.touch tbody.show-for-touch {
  display: table-row-group !important; }

tr.hide-for-touch {
  display: table-row !important; }

.touch tr.show-for-touch {
  display: table-row !important; }

td.hide-for-touch {
  display: table-cell !important; }

.touch td.show-for-touch {
  display: table-cell !important; }

th.hide-for-touch {
  display: table-cell !important; }

.touch th.show-for-touch {
  display: table-cell !important; }

/* Screen reader-specific classes */
.show-for-sr {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px; }

.show-on-focus {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px; }
  .show-on-focus:focus, .show-on-focus:active {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }

/* Print visibility */
.print-only,
.show-for-print {
  display: none !important; }

@media print {
  .print-only,
  .show-for-print {
    display: block !important; }
  .hide-on-print,
  .hide-for-print {
    display: none !important; }
  table.show-for-print {
    display: table !important; }
  thead.show-for-print {
    display: table-header-group !important; }
  tbody.show-for-print {
    display: table-row-group !important; }
  tr.show-for-print {
    display: table-row !important; }
  td.show-for-print {
    display: table-cell !important; }
  th.show-for-print {
    display: table-cell !important; } }

/**
 * Converts a decimal number to a percentage.
 *
 * @example
 * percentage(100px / 50px) => 200%
 * @param value [Number] The decimal number to convert to a percentage
 * @return [Number] The percentage
 * @raise [ArgumentError] If `value` isn't a unitless number
 */
/* ===================================================
BASE
=================================================== */
/* ---------------------------------------------------
Global styles
--------------------------------------------------- */
html {
  font-size: 62.5%;
  height: initial; }

body {
  font-size: 16px;
  line-height: 140%;
  background-color: #efeeee;
  position: relative; }
  body.is-noscroll {
    overflow: hidden; }

#main {
  padding-top: 20px;
  overflow-x: hidden; }
  @media only screen and (min-width: 1100px) {
    #main {
      padding-top: 50px; } }

.service-section {
  width: 100%;
  background-color: #fff;
  margin: 30px auto; }
  .service-section .rte p, .service-section p {
    color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 130%;
    padding-bottom: 30px; }

.service-section img {
  max-width: 100%;
  float: left;
  margin: 0 30px 20px 0;
  top: 5px;
  display: block;
  position: relative; }
  @media only screen and (min-width: 550px) {
    .service-section img {
      max-width: 50%; } }
  @media only screen and (min-width: 1100px) {
    .service-section img {
      max-width: 35%; } }

.service-section .rte a, .service-section a {
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 300;
  color: #e35742;
  text-decoration: none;
  transition: color 200ms ease-in-out; 
  font-size: 1em;}
  .service-section .rte a:hover {
    color: #ed9285; }
    
    .service-section strong {
    color: #e35742;
    font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;}
  
  .service-section .service h1, .service-section .service h2 {
    color: #e35742;
    font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  line-height: 120%;
  padding-bottom: 8px;
  display: block;
  font-size: 1.3em;
  margin: 20px 0 10px;}

.service-section__headline {
  line-height: 120%;
  font-family: 'Dosis', Arial, sans-serif;
  padding-bottom: 10px;
  display: block;
  font-size: 1.6em;
  color: #e35742;
  margin: 20px 0 15px; }
  
  .service-section ul {
  	margin: 10px 0 10px 20px;
  	display: block;
  }
  
  .service-section ul li {
  	padding-left: 40px;
  	font-family: 'Dosis', Arial, sans-serif;
  	padding-bottom: 10px;
  	    color: #323743;
    font-weight: 400;
    font-size: 1.2em;
    line-height: 130%;
    position: relative;
  }
  
  .service-section ul li:before {
        content: '';
        position: absolute;
        top: 7px;
        left: 18px;
        display: block;
        width: 7px;
        height: 7px;
        background-color: #f36504;
        border-radius: 15px; }

.view-service .views-field,
.view-unternehmen .views-field {
  border: 4px solid #f7f7f7;
  padding: 30px;
  margin-bottom: 20px; }
  .view-service .views-field:before, .view-service .views-field:after,
  .view-unternehmen .views-field:before,
  .view-unternehmen .views-field:after {
    content: " ";
    display: table; }
  .view-service .views-field:after,
  .view-unternehmen .views-field:after {
    clear: both; }

.narrow-content {
  width: 100%;
  margin: 30px auto;
  padding: 40px 20px;
  background-color: #fff; }
  .narrow-content.is-max-width {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; }
  .narrow-content .node-webform {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto; }

.page__headline {
  width: 100%;
  display: block;
  text-align: center;
  color: #333;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 2.4em;
  line-height: 150%;
  padding: 0 20px;
  margin-bottom: 30px; }

.not-logged-in #user-login,
.logged-in .profile {
  margin-top: 150px;
  margin-left: 20px;
  margin-bottom: 200px; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  list-style: none;
  text-align: center;
  display: block;
  width: 100%;
  z-index: 100; }
  .slick-dots li {
    display: inline-block;
    margin-right: 9px; }
    .slick-dots li:last-child {
      margin-right: 0; }
    .slick-dots li button {
      display: block;
      border-radius: 50%;
      border: 1px solid #9f9b9b;
      background: transparent;
      width: 12px;
      height: 12px;
      text-indent: -9999px;
      font-size: 0.00001em;
      padding: 0;
      cursor: pointer;
      transition: background 200ms ease-in-out, border-color 200ms ease-in-out; }
      .slick-dots li button:focus {
        outline: none; }
      .slick-dots li button:hover {
        border-color: #e35742; }
    .slick-dots li.slick-active button {
      background: #9f9b9b; }
      .slick-dots li.slick-active button:hover {
        border-color: #e35742;
        background: #e35742; }

.slick-arrow {
  position: absolute;
  bottom: -19px;
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 14px 8px 0;
  border-color: transparent #3f3f3f transparent transparent;
  text-indent: -9999px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  opacity: 0.3;
  transition: opacity 300ms ease-in-out;
  cursor: pointer;
  z-index: 800; }
  .slick-arrow:hover {
    opacity: 1; }
  .slick-arrow:focus {
    outline: 0; }

.slick-prev {
  margin-left: -20px; }

.slick-next {
  margin-right: -20px;
  transform: rotate(180deg); }

.is-clearfix:before, .is-clearfix:after {
  content: " ";
  display: table; }

.is-clearfix:after {
  clear: both; }

.is-bg-light-gray {
  background-color: #efefef; }

.product-view .views-exposed-form {
  text-align: center;
  padding: 5px 0;
  border-bottom: 1px solid #f4f4f4;
  margin-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.01); }
  .product-view .views-exposed-form [for=edit-tid] {
    display: none; }

.product-view .views-exposed-widgets {
  margin-bottom: 0;
  display: inline-block; }

.product-view .views-exposed-widget.views-submit-button {
  width: 0;
  height: 0;
  overflow: visible; }
  .product-view .views-exposed-widget.views-submit-button .ajax-progress-throbber {
    position: relative;
    background: white;
    padding: 3px 5px 5px;
    display: block;
    width: 55px;
    height: 30px;
    left: -127px;
    top: -2px;
    background-image: none;
    border-radius: 5px;
    text-align: center;
    -webkit-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.25); }
    .product-view .views-exposed-widget.views-submit-button .ajax-progress-throbber div {
      background: url("../img/loading.gif") center center no-repeat transparent;
      width: 45px;
      height: 20px;
      transform-origin: center center;
      display: inline-block; }

.product-view .views-exposed-form .views-exposed-widget.views-widget-filter-tid {
  float: left;
  padding: 0.5em 0 0 0; }

.product-view .views-exposed-form .views-exposed-widget.views-reset-button {
  float: none;
  display: block;
  margin: 10px auto; }

.product-view .views-exposed-form .views-exposed-widget .description {
  display: none; }

.product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox {
  display: block;
  margin-bottom: 10px; }
  @media only screen and (min-width: 680px) {
    .product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox {
      display: inline-block;
      margin-right: 20px;
      margin-bottom: 0; }
      .product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox:last-child {
        margin-right: 0; } }

.product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox input[type=checkbox] {
  display: none; }

.product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox label {
  color: #323743;
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 400;
  cursor: pointer;
  position: relative; }
  .product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox label:before {
    content: '';
    border-radius: 7px;
    background: url("../img/checkbox-bg.png") center center no-repeat, #474747;
    background: url("../img/checkbox-bg.png") center center no-repeat, -moz-linear-gradient(top, #474747 0%, #262626 9%, #3d3d3d 24%, #1a1a1a 40%, black 49%, #3d3d3d 50%, #636363 61%, #8f8f8f 75%, #7d7d7d 88%, #6b6b6b 100%);
    background: url("../img/checkbox-bg.png") center center no-repeat, -webkit-gradient(left top, left bottom, color-stop(0%, #474747), color-stop(9%, #262626), color-stop(24%, #3d3d3d), color-stop(40%, #1a1a1a), color-stop(49%, black), color-stop(50%, #3d3d3d), color-stop(61%, #636363), color-stop(75%, #8f8f8f), color-stop(88%, #7d7d7d), color-stop(100%, #6b6b6b));
    background: url("../img/checkbox-bg.png") center center no-repeat, -webkit-linear-gradient(top, #474747 0%, #262626 9%, #3d3d3d 24%, #1a1a1a 40%, black 49%, #3d3d3d 50%, #636363 61%, #8f8f8f 75%, #7d7d7d 88%, #6b6b6b 100%);
    background: url("../img/checkbox-bg.png") center center no-repeat, -o-linear-gradient(top, #474747 0%, #262626 9%, #3d3d3d 24%, #1a1a1a 40%, black 49%, #3d3d3d 50%, #636363 61%, #8f8f8f 75%, #7d7d7d 88%, #6b6b6b 100%);
    background: url("../img/checkbox-bg.png") center center no-repeat, -ms-linear-gradient(top, #474747 0%, #262626 9%, #3d3d3d 24%, #1a1a1a 40%, black 49%, #3d3d3d 50%, #636363 61%, #8f8f8f 75%, #7d7d7d 88%, #6b6b6b 100%);
    background: url("../img/checkbox-bg.png") center center no-repeat, linear-gradient(to bottom, #474747 0%, #262626 9%, #3d3d3d 24%, #1a1a1a 40%, black 49%, #3d3d3d 50%, #636363 61%, #8f8f8f 75%, #7d7d7d 88%, #6b6b6b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#474747', endColorstr='#6b6b6b', GradientType=0 );
    width: 70px;
    height: 22px;
    display: inline-block;
    transition: all 300ms ease-in-out;
    -webkit-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 10px 2px rgba(0, 0, 0, 0.5);
    border: 3px solid #c5c5c5;
    vertical-align: middle;
    margin-right: 10px;
    top: -2px;
    position: relative; }

.product-view .views-exposed-form .views-exposed-widget .form-checkboxes .form-item.form-type-bef-checkbox input[type=checkbox]:checked + label:before {
  -webkit-box-shadow: 0px 0px 10px 2px #e35742;
  -moz-box-shadow: 0px 0px 10px 2px #e35742;
  box-shadow: 0px 0px 10px 2px #e35742;
  border: 3px solid #e35742;
  background: url("../img/checkbox-bg.png") center center no-repeat, #4c4c4c;
  background: url("../img/checkbox-bg.png") center center no-repeat, -moz-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, black 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  background: url("../img/checkbox-bg.png") center center no-repeat, -webkit-gradient(left top, left bottom, color-stop(0%, #4c4c4c), color-stop(12%, #595959), color-stop(25%, #666666), color-stop(39%, #474747), color-stop(50%, #2c2c2c), color-stop(51%, black), color-stop(60%, #111111), color-stop(76%, #2b2b2b), color-stop(91%, #1c1c1c), color-stop(100%, #131313));
  background: url("../img/checkbox-bg.png") center center no-repeat, -webkit-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, black 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  background: url("../img/checkbox-bg.png") center center no-repeat, -o-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, black 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  background: url("../img/checkbox-bg.png") center center no-repeat, -ms-linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, black 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  background: url("../img/checkbox-bg.png") center center no-repeat, linear-gradient(to bottom, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, black 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#131313', GradientType=0 ); }

.product-view .views-exposed-form .views-widget-filter-tid > label {
  color: #323743;
  font-family: 'Dosis', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.5em;
  opacity: 0.8;
  margin-bottom: 15px; }

.product-view .views-exposed-form .views-exposed-widget .form-radios .form-item.form-type-radio input[type="radio"] {
  display: none; }

.product-view .views-exposed-form .views-exposed-widget .form-radios {
  border-radius: 5px;
  overflow: hidden;
  background: #f4f4f4;
  box-shadow: inset 0 1px 6px rgba(41, 41, 41, 0.2), 0 5px 6px rgba(41, 41, 41, 0.1);
  position: relative; }
  .product-view .views-exposed-form .views-exposed-widget .form-radios:before, .product-view .views-exposed-form .views-exposed-widget .form-radios:after {
    content: " ";
    display: table; }
  .product-view .views-exposed-form .views-exposed-widget .form-radios:after {
    clear: both; }

.product-view .views-exposed-form .views-exposed-widget .form-radios .form-item.form-type-radio {
  float: left;
  border-right: 1px solid #efeeee; }

.product-view .views-exposed-form .views-exposed-widget .form-radios .form-item.form-type-radio input[type="radio"]:checked + label {
  background-image: linear-gradient(to top, #e66754, #e35742);
  box-shadow: inset 0 1px 6px rgba(41, 41, 41, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: default;
  color: #fff;
  border-color: transparent; }

.product-view .views-exposed-form .views-exposed-widget .form-radios .form-item.form-type-radio input[type="radio"] + label {
  width: 100px;
  vertical-align: top;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  padding: 0 20px;
  cursor: pointer;
  font-family: 'Dosis', Arial, sans-serif;
  color: #fff;
  font-size: 1em;
  font-weight: 400;
  transition: all 1000ms ease-in-out;
  background-image: linear-gradient(to top, #323743, #596175);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }

.product-view .views-exposed-form .views-exposed-widget .form-radios .form-item.form-type-radio input[type="radio"]:checked + label:hover {
  background-color: inherit;
  background-position: 0 0;
  transition: none; }

#block-locale-language {
  position: absolute;
  right: 30px;
  top: 5px; }

#block-locale-language h2 {
  display: none; }

#block-locale-language .language-switcher-locale-url li {
  display: inline-block;
  margin-right: 5px; }

#block-locale-language .language-switcher-locale-url li:last-child {
  margin-right: 0; }

#block-locale-language .language-switcher-locale-url li a {
  text-indent: -9999px;
  font-size: 0.0001em;
  display: block;
  width: 16px;
  height: 10px; }

#block-locale-language .language-switcher-locale-url li.active {
  opacity: 0.6; }

#block-locale-language .language-switcher-locale-url li.de a {
  background: url("../img/language-german.jpg") center center no-repeat; }

#block-locale-language .language-switcher-locale-url li.en a {
  background: url("../img/language-english.jpg") center center no-repeat; }

.view-front {
  display: none; }

#block-system-main-menu {
  float: none;
  display: block; }
  @media only screen and (min-width: 1100px) {
    #block-system-main-menu {
      float: right;
      width: 100%;
      text-align: center; } }
  @media only screen and (min-width: 1100px) {
    #block-system-main-menu {
      text-align: left;
      width: auto; } }

.menu-block:before, .menu-block:after {
  content: " ";
  display: table; }

.menu-block:after {
  clear: both; }

.pager .pager-item a,
.pager .pager-next a,
.pager .pager-previous a,
.pager .pager-first a,
.pager .pager-last a {
  color: #e35742;
  text-decoration: none; }

#actisio-navigator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(50, 55, 67, 0.9);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  z-index: 999; }
  #actisio-navigator.is-active {
    pointer-events: all;
    opacity: 1; }
  #actisio-navigator .navigator__headline {
    color: #323743;
    display: block;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 600;
    font-size: 2em;
    margin-bottom: 25px; }
  #actisio-navigator .navigator__wrapper {
    width: 60vw;
    background: #fff;
    padding: 30px;
    display: inline-block;
    margin-top: 20vh;
    border: 5px solid #e35742;
    height: 500px;
    overflow: auto; }
  #actisio-navigator .navigator__form-section {
    display: none; }
    #actisio-navigator .navigator__form-section.current {
      display: block; }
  #actisio-navigator .navigator__text {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    line-height: 123%;
    margin-bottom: 25px;
    width: 80%;
    display: inline-block; }
  #actisio-navigator label {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    line-height: 123%;
    margin-bottom: 10px;
    width: 80%;
    display: inline-block;
    text-align: center; }
  #actisio-navigator input[type="text"],
  #actisio-navigator input[type="email"] {
    background-color: #f7f7f7;
    padding: 10px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
    margin-bottom: 10px;
    margin-right: 0.5%;
    margin-left: 0.5%;
    width: 50%;
    display: inline-block;
    border: 3px solid transparent; }
    #actisio-navigator input[type="text"].parsley-error,
    #actisio-navigator input[type="email"].parsley-error {
      border: 3px solid #e35742; }
    #actisio-navigator input[type="text"]:focus,
    #actisio-navigator input[type="email"]:focus {
      outline: 0; }
    #actisio-navigator input[type="text"].datepicker,
    #actisio-navigator input[type="email"].datepicker {
      padding-right: 40px;
      background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTcgMTgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE3IDE4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJFYmVuZV8yIj4NCjwvZz4NCjxnIGlkPSJFYmVuZV8xXzFfIj4NCgk8Zz4NCgkJPHBhdGggZmlsbD0iIzMyMzc0MyIgZD0iTTE3LDE2LjcxNUMxNywxNy40MTcsMTYuNDA3LDE4LDE1LjY5MSwxOEgxLjMwOUMwLjU5MywxOCwwLDE3LjQxNywwLDE2LjcxNVYzLjg1Nw0KCQkJYzAtMC43MDMsMC41OTMtMS4yODYsMS4zMDktMS4yODZoMS4zMDdWMS42MDdDMi42MTUsMC43MjQsMy4zNTIsMCw0LjI1LDBoMC42NTNjMC44OTksMCwxLjYzNSwwLjcyNCwxLjYzNSwxLjYwN3YwLjk2NGgzLjkyNA0KCQkJVjEuNjA3QzEwLjQ2MiwwLjcyNCwxMS4xOTUsMCwxMi4wOTYsMGgwLjY1NGMwLjg5OCwwLDEuNjM0LDAuNzI0LDEuNjM0LDEuNjA3djAuOTY0aDEuMzA4QzE2LjQwNywyLjU3MSwxNywzLjE1NCwxNywzLjg1N1YxNi43MTUNCgkJCXogTTQuMjUsOS4zMjFWNi40MjlIMS4zMDl2Mi44OTNMNC4yNSw5LjMyMUw0LjI1LDkuMzIxeiBNNC4yNSwxMy4xOFY5Ljk2NUgxLjMwOXYzLjIxNUg0LjI1eiBNNC4yNSwxNi43MTVWMTMuODJIMS4zMDl2Mi44OTUNCgkJCUg0LjI1eiBNNS4yMywxLjYwN2MwLTAuMTcxLTAuMTUzLTAuMzIxLTAuMzI3LTAuMzIxSDQuMjVjLTAuMTc0LDAtMC4zMjcsMC4xNS0wLjMyNywwLjMyMVY0LjVjMCwwLjE3MSwwLjE1MywwLjMyMSwwLjMyNywwLjMyMQ0KCQkJaDAuNjUzYzAuMTc0LDAsMC4zMjctMC4xNSwwLjMyNy0wLjMyMVYxLjYwN3ogTTguMTcyLDkuMzIxVjYuNDI5SDQuOTAzdjIuODkzTDguMTcyLDkuMzIxTDguMTcyLDkuMzIxeiBNOC4xNzIsMTMuMThWOS45NjVINC45MDMNCgkJCXYzLjIxNUg4LjE3MnogTTguMTcyLDE2LjcxNVYxMy44Mkg0LjkwM3YyLjg5NUg4LjE3MnogTTEyLjA5Niw5LjMyMVY2LjQyOUg4LjgyN3YyLjg5M0wxMi4wOTYsOS4zMjFMMTIuMDk2LDkuMzIxeiBNMTIuMDk2LDEzLjE4DQoJCQlWOS45NjVIOC44Mjd2My4yMTVIMTIuMDk2eiBNMTIuMDk2LDE2LjcxNVYxMy44Mkg4LjgyN3YyLjg5NUgxMi4wOTZ6IE0xMy4wNzcsMS42MDdjMC0wLjE3MS0wLjE1NC0wLjMyMS0wLjMyNy0wLjMyMWgtMC42NTQNCgkJCWMtMC4xNzMsMC0wLjMyNiwwLjE1LTAuMzI2LDAuMzIxVjQuNWMwLDAuMTcxLDAuMTUzLDAuMzIxLDAuMzI2LDAuMzIxaDAuNjU0YzAuMTczLDAsMC4zMjctMC4xNSwwLjMyNy0wLjMyMVYxLjYwN3oNCgkJCSBNMTUuNjkxLDkuMzIxVjYuNDI5SDEyLjc1djIuODkzTDE1LjY5MSw5LjMyMUwxNS42OTEsOS4zMjF6IE0xNS42OTEsMTMuMThWOS45NjVIMTIuNzV2My4yMTVIMTUuNjkxeiBNMTUuNjkxLDE2LjcxNVYxMy44Mg0KCQkJSDEyLjc1djIuODk1SDE1LjY5MXoiLz4NCgk8L2c+DQo8L2c+DQo8L3N2Zz4NCg==");
      background-repeat: no-repeat;
      background-position: center right 15px; }
  #actisio-navigator .parsley-errors-list {
    position: relative;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    margin-top: -5px;
    padding: 3px;
    background-color: #fff; }
    #actisio-navigator .parsley-errors-list li {
      color: #e35742; }

#navigator-toggle {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
  cursor: pointer;
  text-align: right; }
  #navigator-toggle strong {
    background-color: #fff;
    color: #323743;
    padding: 7px 10px 7px 20px;
    display: block;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    -webkit-box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31); }
  #navigator-toggle span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #e35742;
    color: #fff;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    font-size: 1em; }

#actisio-navigator label[for*="choice-area"] {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out, opacity 200ms ease-in-out;
  opacity: 0.5; }
  #actisio-navigator label[for*="choice-area"]:hover {
    background-color: #e35742;
    color: #fff;
    opacity: 0.8; }

#actisio-navigator input.radio-area {
  display: none; }

#actisio-navigator .reveal-if-active {
  opacity: 0;
  max-height: 0;
  overflow: hidden; }

#actisio-navigator input[type="radio"]:checked ~ .reveal-if-active,
#actisio-navigator input[type="checkbox"]:checked ~ .reveal-if-active {
  opacity: 1;
  max-height: 2000px;
  overflow: visible;
  padding: 10px 20px;
  transform: scale(1); }

#actisio-navigator input[type="radio"]:checked + label[for*="choice-area"] {
  background-color: #e35742;
  color: #fff;
  opacity: 1; }

#actisio-navigator .reveal-if-active {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: scale(0.8);
  transition: 0.5s; }
  #actisio-navigator .reveal-if-active .checkbox-label .checkbox-area {
    background-color: #ddd; }
  #actisio-navigator .reveal-if-active div.sub-fields {
    border-bottom: 1px solid #CEC9C9;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    #actisio-navigator .reveal-if-active div.sub-fields:before, #actisio-navigator .reveal-if-active div.sub-fields:after {
      content: " ";
      display: table; }
    #actisio-navigator .reveal-if-active div.sub-fields:after {
      clear: both; }
    #actisio-navigator .reveal-if-active div.sub-fields:last-child {
      border-bottom: 0; }
    #actisio-navigator .reveal-if-active div.sub-fields .sub-fields {
      display: none;
      border-bottom: 0;
      margin-bottom: 2px;
      background-color: white;
      padding: 10px 20px; }
      #actisio-navigator .reveal-if-active div.sub-fields .sub-fields.is-active {
        display: block; }

#actisio-navigator .area {
  background-color: #f3f3f3;
  margin-bottom: 10px; }

#actisio-navigator .checkbox-label {
  cursor: pointer; }
  #actisio-navigator .checkbox-label.is-inline {
    display: inline-block;
    width: auto;
    margin: 20px 15px; }
  #actisio-navigator .checkbox-label input[type="checkbox"] {
    display: none; }
    #actisio-navigator .checkbox-label input[type="checkbox"]:checked + .checkbox-area {
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742; }
      #actisio-navigator .checkbox-label input[type="checkbox"]:checked + .checkbox-area:before {
        opacity: 1;
        transform: scale(1); }
  #actisio-navigator .checkbox-label .checkbox-area {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-color: #f7f7f7;
    transition: box-shadow 300ms ease-in-out; }
    #actisio-navigator .checkbox-label .checkbox-area:before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      top: 4px;
      left: 4px;
      position: absolute;
      opacity: 0;
      transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
      transform: scale(0);
      transform-origin: center center;
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#db8941+0,e35742+100 */
      background: #db8941;
      /* Old browsers */
      background: -moz-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* FF3.6-15 */
      background: -webkit-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: radial-gradient(ellipse at center, #db8941 0%, #e35742 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db8941', endColorstr='#e35742',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }

#actisio-navigator div.radio-group {
  border-bottom: 1px solid #ccc;
  display: block; }
  #actisio-navigator div.radio-group.is-last, #actisio-navigator div.radio-group:last-child {
    border-bottom: 0; }
  #actisio-navigator div.radio-group .radio-subfield {
    display: none; }
  #actisio-navigator div.radio-group label {
    width: auto;
    margin: 20px;
    cursor: pointer; }
  #actisio-navigator div.radio-group input[type="radio"].radio-subfield:checked + label .radiobutton-area {
    -webkit-box-shadow: 0px 0px 5px 0px #e35742;
    -moz-box-shadow: 0px 0px 5px 0px #e35742;
    box-shadow: 0px 0px 5px 0px #e35742; }
    #actisio-navigator div.radio-group input[type="radio"].radio-subfield:checked + label .radiobutton-area:before {
      opacity: 1;
      transform: scale(1); }
  #actisio-navigator div.radio-group .radiobutton-area {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: relative;
    transition: box-shadow 300ms ease-in-out;
    top: 3px;
    margin-right: 5px; }
    #actisio-navigator div.radio-group .radiobutton-area:before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      top: 4px;
      left: 4px;
      position: absolute;
      opacity: 0;
      transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
      transform: scale(0);
      transform-origin: center center;
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#db8941+0,e35742+100 */
      background: #db8941;
      /* Old browsers */
      background: -moz-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* FF3.6-15 */
      background: -webkit-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: radial-gradient(ellipse at center, #db8941 0%, #e35742 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db8941', endColorstr='#e35742',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }

#actisio-navigator .btn {
  background-color: #323743;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  border: 0;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 200ms ease-in-out; }
  #actisio-navigator .btn:focus {
    outline: 0; }
  #actisio-navigator .btn:hover {
    background-color: #434a5a; }

#actisio-navigator .is-hidden {
  display: none; }

/* ===================================================
Block: c-product-teaser
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
[data-css="product-teaser"] {
  float: left;
  padding: 20px 20px 30px;
  width: 100%;
  display: block;
  margin-bottom: 0;
  text-align: center;
  opacity: 1;
  transition: opacity 300ms ease-in-out, background-color 300ms ease-in-out, box-shadow 300ms ease-in-out;
  text-decoration: none;
  border-bottom: 1px solid #f4f4f4;
  background-color: transparent;
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  [data-css="product-teaser"]:hover {
    opacity: 0.8;
    -webkit-box-shadow: inset 0px 0px 0px 2px #f4f4f4;
    -moz-box-shadow: inset 0px 0px 0px 2px #f4f4f4;
    box-shadow: inset 0px 0px 0px 2px #f4f4f4; }
    [data-css="product-teaser"]:hover.product-teaser img {
      transform: scale3d(1,1,1); }
  @media only screen and (min-width: 768px) {
    [data-css="product-teaser"] {
      width: 50%; } }
  @media only screen and (min-width: 1200px) {
    [data-css="product-teaser"] {
      width: 33.3%; } }
  [data-css="product-teaser"] .product-teaser__headline {
    color: #e35742; }

/* ---------------------------------------------------
Elements
--------------------------------------------------- */
.product-teaser__wrapper {
  background: #fff;
  width: 100%;
  margin: 42px 0 30px;
  text-align: center; }
  .product-teaser__wrapper ul {
    width: 100%; }
    @media only screen and (min-width: 1200px) {
      .product-teaser__wrapper ul {
        max-width: 1200px;
        display: inline-block; } }

.product-teaser__wrapper:before {
  content: '';
  display: table;
  clear: both;
  height: 0; }

.product-teaser__wrapper:after {
  content: '';
  display: table;
  clear: both;
  height: 0; }

.product-teaser__img-wrapper {
    height: 220px;
}

.product-teaser img {
  display: inline-block;
  margin-bottom: 20px;
  width: auto;
  transition: height 200ms ease-in-out, transform 200ms ease-in-out;
  transform: scale3d(0.9, 0.9, 0.9);
  transform-style: preserve-3d;

}
  @media only screen and (min-width: 768px) {
    .product-teaser img {
} }

.product-teaser__headline {
  line-height: 120%;
  font-family: 'Dosis', Arial, sans-serif;
  padding-bottom: 10px;
  display: block;
  color: #313131;
  font-size: 1.2em;
  transition: color 200ms ease-in-out; }
  @media only screen and (min-width: 768px) {
    .product-teaser__headline {
      font-size: 1.3em;
      text-overflow: ellipsis;
      white-space: nowrap;
      height: 36px;
      overflow: hidden; } }
  @media only screen and (min-width: 1200px) {
    .product-teaser__headline {
      font-size: 1.6em;
      text-overflow: ellipsis;
      white-space: nowrap;
      height: 40px;
      overflow: hidden; } }

.prodcut-teaser__teaser-text {
  line-height: 120%;
  font-family: 'Dosis', Arial, sans-serif;
  color: #555;
  font-size: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 21px; }

.product-teaser__tags {
  line-height: 120%;
  font-family: 'Dosis', Arial, sans-serif;
  color: #999;
  font-size: 0.8em; }

/* ===================================================
Block: c-quicklinks
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
[data-css="quicklinks"] {
  float: none;
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 23px;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  [data-css="quicklinks"] div.grid-col.is-col-size3 .quicklink__wrapper {
    border-right: 0; }
  @media only screen and (min-width: 660px) {
    [data-css="quicklinks"] div.grid-col.is-col-size3:nth-child(2n-1) .quicklink__wrapper {
      border-right: 4px solid #f2f2f2; } }
  @media only screen and (min-width: 1440px) {
    [data-css="quicklinks"] div.grid-col.is-col-size3:nth-child(2) .quicklink__wrapper {
      border-right: 4px solid #f2f2f2; } }
  [data-css="quicklinks"] .quicklink__wrapper {
    display: inline-block;
    width: 100%;
    height: 225px;
    padding: 80px 0 0;
    background-color: #fff;
    box-sizing: border-box;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    transform-style: preserve-3d;
    background-position: center center;
    margin-bottom: 4px;
    background-repeat: no-repeat;
    background-size: cover;
    /*
		Modifiers
		----------------------- */ }
    @media only screen and (min-width: 1440px) {
      [data-css="quicklinks"] .quicklink__wrapper {
        margin-bottom: 0; } }
    [data-css="quicklinks"] .quicklink__wrapper:hover {
      opacity: 0.8; }
      [data-css="quicklinks"] .quicklink__wrapper:hover .quicklink__headline {
        color: #e35742; }
    [data-css="quicklinks"] .quicklink__wrapper.is-audiozubehoer {
      background-image: url("../img/bg-zubehoer.jpg"); }
    [data-css="quicklinks"] .quicklink__wrapper.is-flightcases {
      background-image: url("../img/bg-flightcases.jpg"); }
    [data-css="quicklinks"] .quicklink__wrapper.is-ladegeraete {
      background-image: url("../img/bg-ladegeraete.jpg"); }
    [data-css="quicklinks"] .quicklink__wrapper.is-akkus {
      background-image: url("../img/bg-basisstationen.jpg"); }
    [data-css="quicklinks"] .quicklink__wrapper.is-top-text {
      padding-top: 19px; }
  [data-css="quicklinks"] .quicklink__headline {
    font-size: 29px;
    color: #9f9b9b;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    margin-bottom: 5px;
    transition: all 200ms ease-in-out; }
  [data-css="quicklinks"] .quicklink__subline {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif; }

  #node-export-form {
      max-width: 80%;
      margin: 60px auto;
  }
/* ===================================================
Block: c-stage
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
[data-css="references"] {
  float: none;
  width: 100%;
  display: block;
  margin-bottom: 4px;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  [data-css="references"] .references__slider-wrapper {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+64,bbbbbb+100&1+1,0.85+100 */
    border-top: 1px solid #d1cfcf;
    border-bottom: 1px solid #d1cfcf;
    display: block;
    width: 100%;
    max-width: 1920px;
    overflow: hidden;
    padding: 35px 0;
    margin: 10px 0; }
  [data-css="references"] .references__headline {
    font-size: 29px;
    display: block;
    color: #9f9b9b;
    font-family: 'Dosis', Arial, sans-serif;
    margin-bottom: 25px;
    text-align: center;
 }
  [data-css="references"] .references__slider-item {
    display: block;
    text-align: center;
    padding: 0 25px; }
    [data-css="references"] .references__slider-item:focus {
      outline: none; }
  [data-css="references"] .references__slider-link {
    display: inline-block;
    opacity: 1;
    transition: opacity 300ms ease-in-out; }
    [data-css="references"] .references__slider-link:hover {
      opacity: 1; }
    [data-css="references"] .references__slider-link:focus {
      outline: 0; }
  [data-css="references"] .references__slider-caption {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    text-indent: -9999px; }

/* ===================================================
Block: c-stage
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
[data-css="stage"] {
  float: none;
  width: 100%;
  display: block;
  margin-bottom: 4px;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  [data-css="stage"] .stage__slider-wrapper {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+64,bbbbbb+100&1+1,0.85+100 */
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+47,e5e5e5+100 */
    background: #fff;
    display: block;
    width: 100%;
    overflow: hidden;
    padding-bottom: 21px;
    margin: 0 auto; }
    @media only screen and (min-width: 680px) {
      [data-css="stage"] .stage__slider-wrapper {
        padding-bottom: 35px; } }
  [data-css="stage"] .stage__slider-item {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none; }
    [data-css="stage"] .stage__slider-item:focus {
      outline: none; }
  [data-css="stage"] .stage__slider-headline {
    font-size: 30px;
    font-weight: 300;
    display: block;
    line-height: 30px;
    font-family: 'Dosis', Arial, sans-serif;
    padding-top: 40px;
    max-width: 80%;
    margin: 10px auto 16px;
    color: #323743;
    text-decoration: none; }
    @media only screen and (min-width: 680px) {
      [data-css="stage"] .stage__slider-headline {
        font-size: 44px;
        line-height: 40px;
        padding-top: 58px; } }
  [data-css="stage"] .stage__slider-claim {
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #9f9b9b;
    text-decoration: none; }
    @media only screen and (min-width: 680px) {
      [data-css="stage"] .stage__slider-claim {
        font-size: 22px;
        margin-bottom: 40px; } }
  [data-css="stage"] .stage__slider-figure {
    display: inline-block;
    margin-bottom: 30px; }
    [data-css="stage"] .stage__slider-figure img {
      max-height: 250px;
      width: auto; }
  [data-css="stage"] .stage__slider-caption {
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    text-indent: -9999px; }

.webform-client-form:before, .webform-client-form:after {
  content: " ";
  display: table; }

.webform-client-form:after {
  clear: both; }

.webform-client-form input, .webform-client-form textarea {
  width: 99%;
  background-color: #f7f7f7;
  padding: 10px;
  border: 0;
  color: #333;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 1.2em;
  line-height: 125%;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
  float: left;
  margin-bottom: 10px;
  margin-right: 0.5%;
  margin-left: 0.5%; }
  @media only screen and (min-width: 600px) {
    .webform-client-form input, .webform-client-form textarea {
      width: 49%; } }
  .webform-client-form input:focus, .webform-client-form textarea:focus {
    outline: 0;
    background-color: #E9E9E9; }

.webform-client-form input[type="submit"] {
  width: 100%;
  transition: background-color 200ms ease-in-out, color 200ms ease-in-out; }
  .webform-client-form input[type="submit"]:hover {
    background-color: #e35742;
    color: #fff;
    cursor: pointer; }

.webform-client-form textarea {
  resize: none;
  height: 200px;
  width: 99%;
  float: none;
  margin-bottom: 0; }

.webform-client-form .resizable-textarea .grippie {
  margin-left: 0.5%;
  width: 99%; }

.webform-client-form .webform-submit.form-submit {
  width: 99%; }
  
  .webform-client-form .captcha .fieldset-legend {
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
        color: #e35742;
    font-weight: 600;
  }
  
  .webform-client-form .captcha {    padding: 20px;
    margin: 40px 0;
    display: block;
    background: #f7f7f7;}
  
  .webform-client-form .captcha .fieldset-description {
      color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 130%;
    padding-bottom: 30px;
    }
    
    .webform-client-form .captcha .description {
      color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: .9em;
    line-height: 130%;
    }
    
    .webform-client-form .captcha [for="edit-captcha-response"] {
    	 font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
        color: #323743;
    font-weight: 600;
    }
    
     .webform-client-form .captcha #edit-captcha-response {
     float: none; background: #fff;
    margin-left: 0;
    margin-top: 10px;}

#actisio-navigator {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(50, 55, 67, 0.9);
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease-in-out;
  z-index: 999; }
  #actisio-navigator.is-active {
    pointer-events: all;
    opacity: 1; }
  #actisio-navigator .navigator__headline {
    color: #323743;
    display: block;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 600;
    font-size: 2em;
    margin-bottom: 25px; }
  #actisio-navigator .navigator__wrapper {
    width: 60vw;
    background: #fff;
    padding: 30px;
    display: inline-block;
    margin-top: 20vh;
    border: 5px solid #e35742;
    height: 500px;
    overflow: auto; }
  #actisio-navigator .navigator__form-section {
    display: none; }
    #actisio-navigator .navigator__form-section.current {
      display: block; }
  #actisio-navigator .navigator__text {
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    line-height: 123%;
    margin-bottom: 25px;
    width: 80%;
    display: inline-block; }
  #actisio-navigator label {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    line-height: 123%;
    margin-bottom: 10px;
    width: 80%;
    display: inline-block;
    text-align: center; }
  #actisio-navigator input[type="text"],
  #actisio-navigator input[type="email"] {
    background-color: #f7f7f7;
    padding: 10px;
    color: #333;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
    transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
    margin-bottom: 10px;
    margin-right: 0.5%;
    margin-left: 0.5%;
    width: 50%;
    display: inline-block;
    border: 3px solid transparent; }
    #actisio-navigator input[type="text"].parsley-error,
    #actisio-navigator input[type="email"].parsley-error {
      border: 3px solid #e35742; }
    #actisio-navigator input[type="text"]:focus,
    #actisio-navigator input[type="email"]:focus {
      outline: 0; }
    #actisio-navigator input[type="text"].datepicker,
    #actisio-navigator input[type="email"].datepicker {
      padding-right: 40px;
      background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkViZW5lXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4Ig0KCSB3aWR0aD0iMTdweCIgaGVpZ2h0PSIxOHB4IiB2aWV3Qm94PSIwIDAgMTcgMTgiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDE3IDE4IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxnIGlkPSJFYmVuZV8yIj4NCjwvZz4NCjxnIGlkPSJFYmVuZV8xXzFfIj4NCgk8Zz4NCgkJPHBhdGggZmlsbD0iIzMyMzc0MyIgZD0iTTE3LDE2LjcxNUMxNywxNy40MTcsMTYuNDA3LDE4LDE1LjY5MSwxOEgxLjMwOUMwLjU5MywxOCwwLDE3LjQxNywwLDE2LjcxNVYzLjg1Nw0KCQkJYzAtMC43MDMsMC41OTMtMS4yODYsMS4zMDktMS4yODZoMS4zMDdWMS42MDdDMi42MTUsMC43MjQsMy4zNTIsMCw0LjI1LDBoMC42NTNjMC44OTksMCwxLjYzNSwwLjcyNCwxLjYzNSwxLjYwN3YwLjk2NGgzLjkyNA0KCQkJVjEuNjA3QzEwLjQ2MiwwLjcyNCwxMS4xOTUsMCwxMi4wOTYsMGgwLjY1NGMwLjg5OCwwLDEuNjM0LDAuNzI0LDEuNjM0LDEuNjA3djAuOTY0aDEuMzA4QzE2LjQwNywyLjU3MSwxNywzLjE1NCwxNywzLjg1N1YxNi43MTUNCgkJCXogTTQuMjUsOS4zMjFWNi40MjlIMS4zMDl2Mi44OTNMNC4yNSw5LjMyMUw0LjI1LDkuMzIxeiBNNC4yNSwxMy4xOFY5Ljk2NUgxLjMwOXYzLjIxNUg0LjI1eiBNNC4yNSwxNi43MTVWMTMuODJIMS4zMDl2Mi44OTUNCgkJCUg0LjI1eiBNNS4yMywxLjYwN2MwLTAuMTcxLTAuMTUzLTAuMzIxLTAuMzI3LTAuMzIxSDQuMjVjLTAuMTc0LDAtMC4zMjcsMC4xNS0wLjMyNywwLjMyMVY0LjVjMCwwLjE3MSwwLjE1MywwLjMyMSwwLjMyNywwLjMyMQ0KCQkJaDAuNjUzYzAuMTc0LDAsMC4zMjctMC4xNSwwLjMyNy0wLjMyMVYxLjYwN3ogTTguMTcyLDkuMzIxVjYuNDI5SDQuOTAzdjIuODkzTDguMTcyLDkuMzIxTDguMTcyLDkuMzIxeiBNOC4xNzIsMTMuMThWOS45NjVINC45MDMNCgkJCXYzLjIxNUg4LjE3MnogTTguMTcyLDE2LjcxNVYxMy44Mkg0LjkwM3YyLjg5NUg4LjE3MnogTTEyLjA5Niw5LjMyMVY2LjQyOUg4LjgyN3YyLjg5M0wxMi4wOTYsOS4zMjFMMTIuMDk2LDkuMzIxeiBNMTIuMDk2LDEzLjE4DQoJCQlWOS45NjVIOC44Mjd2My4yMTVIMTIuMDk2eiBNMTIuMDk2LDE2LjcxNVYxMy44Mkg4LjgyN3YyLjg5NUgxMi4wOTZ6IE0xMy4wNzcsMS42MDdjMC0wLjE3MS0wLjE1NC0wLjMyMS0wLjMyNy0wLjMyMWgtMC42NTQNCgkJCWMtMC4xNzMsMC0wLjMyNiwwLjE1LTAuMzI2LDAuMzIxVjQuNWMwLDAuMTcxLDAuMTUzLDAuMzIxLDAuMzI2LDAuMzIxaDAuNjU0YzAuMTczLDAsMC4zMjctMC4xNSwwLjMyNy0wLjMyMVYxLjYwN3oNCgkJCSBNMTUuNjkxLDkuMzIxVjYuNDI5SDEyLjc1djIuODkzTDE1LjY5MSw5LjMyMUwxNS42OTEsOS4zMjF6IE0xNS42OTEsMTMuMThWOS45NjVIMTIuNzV2My4yMTVIMTUuNjkxeiBNMTUuNjkxLDE2LjcxNVYxMy44Mg0KCQkJSDEyLjc1djIuODk1SDE1LjY5MXoiLz4NCgk8L2c+DQo8L2c+DQo8L3N2Zz4NCg==");
      background-repeat: no-repeat;
      background-position: center right 15px; }
  #actisio-navigator .parsley-errors-list {
    position: relative;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    margin-top: -5px;
    padding: 3px;
    background-color: #fff; }
    #actisio-navigator .parsley-errors-list li {
      color: #e35742; }

#navigator-toggle {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 1000;
  cursor: pointer;
  text-align: right; }
  #navigator-toggle strong {
    background-color: #fff;
    color: #323743;
    padding: 7px 10px 7px 20px;
    display: block;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.3em;
    -webkit-box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31);
    -moz-box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31);
    box-shadow: 4px 2px 38px 0px rgba(0, 0, 0, 0.31); }
  #navigator-toggle span {
    display: inline-block;
    padding: 2px 10px;
    background-color: #e35742;
    color: #fff;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    font-size: 1em; }

#actisio-navigator label[for*="choice-area"] {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin: 0;
  padding: 10px 0;
  transition: color 200ms ease-in-out, background-color 200ms ease-in-out, opacity 200ms ease-in-out;
  opacity: 0.5; }
  #actisio-navigator label[for*="choice-area"]:hover {
    background-color: #e35742;
    color: #fff;
    opacity: 0.8; }

#actisio-navigator input.radio-area {
  display: none; }

#actisio-navigator .reveal-if-active {
  opacity: 0;
  max-height: 0;
  overflow: hidden; }

#actisio-navigator input[type="radio"]:checked ~ .reveal-if-active,
#actisio-navigator input[type="checkbox"]:checked ~ .reveal-if-active {
  opacity: 1;
  max-height: 2000px;
  overflow: visible;
  padding: 10px 20px;
  transform: scale(1); }

#actisio-navigator input[type="radio"]:checked + label[for*="choice-area"] {
  background-color: #e35742;
  color: #fff;
  opacity: 1; }

#actisio-navigator .reveal-if-active {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: scale(0.8);
  transition: 0.5s; }
  #actisio-navigator .reveal-if-active .checkbox-label .checkbox-area {
    background-color: #ddd; }
  #actisio-navigator .reveal-if-active div.sub-fields {
    border-bottom: 1px solid #CEC9C9;
    padding-bottom: 10px;
    margin-bottom: 20px; }
    #actisio-navigator .reveal-if-active div.sub-fields:before, #actisio-navigator .reveal-if-active div.sub-fields:after {
      content: " ";
      display: table; }
    #actisio-navigator .reveal-if-active div.sub-fields:after {
      clear: both; }
    #actisio-navigator .reveal-if-active div.sub-fields:last-child {
      border-bottom: 0; }
    #actisio-navigator .reveal-if-active div.sub-fields .sub-fields {
      display: none;
      border-bottom: 0;
      margin-bottom: 2px;
      background-color: white;
      padding: 10px 20px; }
      #actisio-navigator .reveal-if-active div.sub-fields .sub-fields.is-active {
        display: block; }

#actisio-navigator .area {
  background-color: #f3f3f3;
  margin-bottom: 10px; }

#actisio-navigator .checkbox-label {
  cursor: pointer; }
  #actisio-navigator .checkbox-label.is-inline {
    display: inline-block;
    width: auto;
    margin: 20px 15px; }
  #actisio-navigator .checkbox-label input[type="checkbox"] {
    display: none; }
    #actisio-navigator .checkbox-label input[type="checkbox"]:checked + .checkbox-area {
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742; }
      #actisio-navigator .checkbox-label input[type="checkbox"]:checked + .checkbox-area:before {
        opacity: 1;
        transform: scale(1); }
  #actisio-navigator .checkbox-label .checkbox-area {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    background-color: #f7f7f7;
    transition: box-shadow 300ms ease-in-out; }
    #actisio-navigator .checkbox-label .checkbox-area:before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      top: 4px;
      left: 4px;
      position: absolute;
      opacity: 0;
      transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
      transform: scale(0);
      transform-origin: center center;
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#db8941+0,e35742+100 */
      background: #db8941;
      /* Old browsers */
      background: -moz-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* FF3.6-15 */
      background: -webkit-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: radial-gradient(ellipse at center, #db8941 0%, #e35742 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db8941', endColorstr='#e35742',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }

#actisio-navigator div.radio-group {
  border-bottom: 1px solid #ccc;
  display: block; }
  #actisio-navigator div.radio-group.is-last, #actisio-navigator div.radio-group:last-child {
    border-bottom: 0; }
  #actisio-navigator div.radio-group .radio-subfield {
    display: none; }
  #actisio-navigator div.radio-group label {
    width: auto;
    margin: 20px;
    cursor: pointer; }
  #actisio-navigator div.radio-group input[type="radio"].radio-subfield:checked + label .radiobutton-area {
    -webkit-box-shadow: 0px 0px 5px 0px #e35742;
    -moz-box-shadow: 0px 0px 5px 0px #e35742;
    box-shadow: 0px 0px 5px 0px #e35742; }
    #actisio-navigator div.radio-group input[type="radio"].radio-subfield:checked + label .radiobutton-area:before {
      opacity: 1;
      transform: scale(1); }
  #actisio-navigator div.radio-group .radiobutton-area {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    display: inline-block;
    position: relative;
    transition: box-shadow 300ms ease-in-out;
    top: 3px;
    margin-right: 5px; }
    #actisio-navigator div.radio-group .radiobutton-area:before {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      top: 4px;
      left: 4px;
      position: absolute;
      opacity: 0;
      transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
      transform: scale(0);
      transform-origin: center center;
      -webkit-box-shadow: 0px 0px 5px 0px #e35742;
      -moz-box-shadow: 0px 0px 5px 0px #e35742;
      box-shadow: 0px 0px 5px 0px #e35742;
      /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#db8941+0,e35742+100 */
      background: #db8941;
      /* Old browsers */
      background: -moz-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* FF3.6-15 */
      background: -webkit-radial-gradient(center, ellipse cover, #db8941 0%, #e35742 100%);
      /* Chrome10-25,Safari5.1-6 */
      background: radial-gradient(ellipse at center, #db8941 0%, #e35742 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#db8941', endColorstr='#e35742',GradientType=1 );
      /* IE6-9 fallback on horizontal gradient */ }

#actisio-navigator .btn {
  background-color: #323743;
  color: #fff;
  padding: 5px 10px;
  text-align: center;
  border: 0;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 200ms ease-in-out; }
  #actisio-navigator .btn:focus {
    outline: 0; }
  #actisio-navigator .btn:hover {
    background-color: #434a5a; }

#actisio-navigator .is-hidden {
  display: none; }

/* ===================================================
Block: b-category-list
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.b-category-bar {
  position: relative;
  background-color: #9f9b9b;
  width: 100%;
  text-align: center;
  transition: box-shadow 300ms ease-in-out, top 300ms ease-in-out;
  display: none;
  -webkit-box-shadow: 0 11px 60px -15px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0 11px 60px -15px rgba(0, 0, 0, 0.75);
  box-shadow: 0 11px 60px -15px rgba(0, 0, 0, 0.75);
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
Elements
--------------------------------------------------- */ }
  @media only screen and (min-width: 1100px) {
    .b-category-bar {
      position: fixed;
      top: 90px;
      left: 0;
      height: 97px;
      overflow: hidden; } }
  @media only screen and (min-width: 1100px) {
    .b-category-bar.is-scrolling {
      top: 60px; } }
  .b-category-bar .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block; }
    @media only screen and (min-width: 1100px) {
      .b-category-bar .menu {
        display: inline-block; } }
  .b-category-bar .menu li, .b-category-bar .menu li.leaf {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    vertical-align: top;
    margin: 0;
    width: 100%;
    list-style: none;
    padding: 0; }
    @media only screen and (min-width: 1100px) {
      .b-category-bar .menu li, .b-category-bar .menu li.leaf {
        width: auto;
        float: left;
        border-right: 1px solid rgba(255, 255, 255, 0.15);
        border-bottom: 0; } }
    .b-category-bar .menu li:last-of-type, .b-category-bar .menu li.leaf:last-of-type {
      border-right: 0;
      border-bottom: 0; }
  .b-category-bar .menu li a {
    display: block;
    padding: 10px 30px;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    font-family: 'Dosis', Arial, sans-serif;
    text-align: center;
    transition: background 200ms ease-in-out, color 200ms ease-in-out;
    /*
		Modifiers
		----------------------- */ }
    .b-category-bar .menu li a:hover, .b-category-bar .menu li a.active {
      background: #fff;
      color: #323743; }
      .b-category-bar .menu li a:hover:before, .b-category-bar .menu li a.active:before {
        opacity: 1; }
    .b-category-bar .menu li a:before {
      content: '';
      display: block;
      height: 30px;
      margin: 0 auto 8px;
      opacity: 1;
      transition: opacity 100ms ease-in-out;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: contain; }
      @media only screen and (min-width: 1100px) {
        .b-category-bar .menu li a:before {
          height: 48px; } }
    .b-category-bar .menu li a.is-akkus:before {
      background-image: url("../img/svg/icons/icon-akku.svg"); }
    .b-category-bar .menu li a.is-akkus.active:before, .b-category-bar .menu li a.is-akkus:hover:before {
      background-image: url("../img/svg/icons/icon-akku-hover.svg"); }
    .b-category-bar .menu li a.is-funkgeraete:before {
      background-image: url("../img/svg/icons/icon-funkgeraet.svg"); }
    .b-category-bar .menu li a.is-funkgeraete.active:before, .b-category-bar .menu li a.is-funkgeraete:hover:before {
      background-image: url("../img/svg/icons/icon-funkgeraet-hover.svg"); }
    .b-category-bar .menu li a.is-audiozubehoer:before {
      background-image: url("../img/svg/icons/icon-zubehoer.svg");
      transform: scale(0.9); }
    .b-category-bar .menu li a.is-audiozubehoer.active:before, .b-category-bar .menu li a.is-audiozubehoer:hover:before {
      background-image: url("../img/svg/icons/icon-zubehoer-hover.svg"); }
    .b-category-bar .menu li a.is-ladegeraete:before {
      background-image: url("../img/svg/icons/icon-ladegeraet.svg"); }
    .b-category-bar .menu li a.is-ladegeraete.active:before, .b-category-bar .menu li a.is-ladegeraete:hover:before {
      background-image: url("../img/svg/icons/icon-ladegeraet-hover.svg"); }
    .b-category-bar .menu li a.is-flightcases:before {
      background-image: url("../img/svg/icons/icon-flightcase.svg"); }
    .b-category-bar .menu li a.is-flightcases.active:before, .b-category-bar .menu li a.is-flightcases:hover:before {
      background-image: url("../img/svg/icons/icon-flightcase-hover.svg"); }
    .b-category-bar .menu li a.is-infrastruktur:before {
      background-image: url("../img/svg/icons/icon-infrastruktur.svg"); }
    .b-category-bar .menu li a.is-infrastruktur.active:before, .b-category-bar .menu li a.is-infrastruktur:hover:before {
      background-image: url("../img/svg/icons/icon-infrastruktur-hover.svg"); }

/* ===================================================
Block: b-category-links
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.b-category-links {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 0 20px;
  margin: 40px 0;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  .b-category-links .category-links__link a {
    background: #fff;
    height: 73px;
    line-height: 73px;
    font-family: 'Dosis', Arial, sans-serif;
    color: #333;
    font-size: 29px;
    box-sizing: border-box;
    transition: all 300ms ease-in-out;
    margin-bottom: 4px;
    text-decoration: none;
    width: 100%;
    display: block; }
    @media only screen and (min-width: 660px) {
      .b-category-links .category-links__link a:nth-child(1) {
        border-right: 4px solid #f2f2f2; } }
    .b-category-links .category-links__link a:hover {
      background-color: #f9f9f9; }
    .b-category-links .category-links__link a:focus {
      outline: 0; }

/* ===================================================
Block: b-logo
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.b-logo {
  float: none;
  padding: 10px 0 10px;
  transition: padding 300ms ease-in-out;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  @media only screen and (min-width: 540px) {
    .b-logo {
      padding: 20px 0 40px; } }
  @media only screen and (min-width: 1100px) {
    .b-logo {
      float: left;
      padding: 15px 39px 19px 31px; } }
  .b-logo .logo__link {
    display: block;
    width: 125px;
    height: 56px;
    font-size: 0.00001em;
    text-indent: -9999px;
    background: url("../img/actisio-logo.svg") top left no-repeat;
    transition: opacity 300ms ease-in-out, background-size 300ms ease-in-out, background-position 300ms ease-in-out, height 300ms ease-in-out;
    margin: 0 auto;
    background-size: 100%;
    background-position: 0 0; }
    @media only screen and (min-width: 1100px) {
      .b-logo .logo__link {
        margin: 0; } }
    .b-logo .logo__link:hover, .b-logo .logo__link:focus {
      opacity: 0.7; }

/* ===================================================
Block: b-mainnav
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.b-mainnav {
  float: none;
  display: block;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  .b-mainnav .mainnav__toggler {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
    display: block; }
    .b-mainnav .mainnav__toggler:before, .b-mainnav .mainnav__toggler:after {
      content: " ";
      display: table; }
    .b-mainnav .mainnav__toggler:after {
      clear: both; }
    @media only screen and (min-width: 1100px) {
      .b-mainnav .mainnav__toggler {
        display: none; } }
  .b-mainnav .mainnav__toggler-item {
    float: left;
    width: 50%;
    box-sizing: border-box; }
    .b-mainnav .mainnav__toggler-item:first-child {
      border-right: 1px solid rgba(255, 255, 255, 0.3); }
  .b-mainnav .mainnav__toggler-item-link {
    display: block;
    width: 100%;
    background-color: #484f60;
    color: #fff;
    text-decoration: none;
    line-height: 66px;
    text-indent: -9999px;
    font-size: 0.00001em;
    position: relative;
    /*
		Modifiers
		----------------------- */ }
    .b-mainnav .mainnav__toggler-item-link:before {
      content: '';
      display: block;
      width: 20px;
      height: 20px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin-top: -10px;
      margin-left: -10px;
      background-position: center center;
      background-repeat: no-repeat; }
    .b-mainnav .mainnav__toggler-item-link.is-active {
      background-color: #5e677d; }
    .b-mainnav .mainnav__toggler-item-link.is-navi:before {
      background-image: url("../img/svg/icons/icon-burger.svg"); }
    .b-mainnav .mainnav__toggler-item-link.is-navi.is-active:before {
      background-image: url("../img/svg/icons/icon-close.svg"); }
    .b-mainnav .mainnav__toggler-item-link.is-categories:before {
      background-image: url("../img/svg/icons/icon-categories.svg"); }
    .b-mainnav .mainnav__toggler-item-link.is-categories.is-active:before {
      background-image: url("../img/svg/icons/icon-close.svg"); }
  .b-mainnav #block-system-main-menu .contextual-links-wrapper {
    display: none; }
  .b-mainnav #block-system-main-menu h2 {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }
    .b-mainnav #block-system-main-menu h2.is-focusable:active, .b-mainnav #block-system-main-menu h2.is-focusable:focus {
      clip: auto;
      height: auto;
      margin: 0;
      overflow: visible;
      position: static;
      width: auto; }
  .b-mainnav #block-system-main-menu .menu {
    list-style: none;
    width: 100%;
    padding-top: 10px;
    display: none; }
    @media only screen and (min-width: 1100px) {
      .b-mainnav #block-system-main-menu .menu {
        padding-top: 0;
        padding-right: 12px;
        width: auto;
        display: block !important; } }
  .b-mainnav #block-system-main-menu .menu li {
    float: none;
    list-style: none;
    margin: 0;
    padding: 0;
    /*
		Modifiers
		----------------------- */ }
    @media only screen and (min-width: 1100px) {
      .b-mainnav #block-system-main-menu .menu li {
        display: inline-block; } }
    @media only screen and (min-width: 1100px) {
      .b-mainnav #block-system-main-menu .menu li {
        float: left; } }
    .b-mainnav #block-system-main-menu .menu li a {
      color: #fff;
      text-decoration: none;
      line-height: 66px;
      font-family: 'Dosis', Arial, sans-serif;
      font-weight: 300;
      font-size: 1.1em;
      padding: 0 18px;
      display: block;
      text-align: center;
      transition: color 300ms ease-in-out, line-height 300ms ease-in-out;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative; }
      @media only screen and (min-width: 1100px) {
        .b-mainnav #block-system-main-menu .menu li a {
          display: inline-block;
          border-top: 0;
          line-height: 90px; } }
      .b-mainnav #block-system-main-menu .menu li a:hover, .b-mainnav #block-system-main-menu .menu li a:focus {
        color: rgba(255, 255, 255, 0.4);
        outline: none; }
      .b-mainnav #block-system-main-menu .menu li a.active, .b-mainnav #block-system-main-menu .menu li a .is-active {
        color: #e35742; }
        .b-mainnav #block-system-main-menu .menu li a.active:hover, .b-mainnav #block-system-main-menu .menu li a .is-active:hover {
          color: #ed9285; }
    @media only screen and (min-width: 1100px) {
      .b-mainnav #block-system-main-menu .menu li.product-toggler.is-active a {
        color: #e35742; }
        .b-mainnav #block-system-main-menu .menu li.product-toggler.is-active a:hover {
          color: #ed9285; }
        .b-mainnav #block-system-main-menu .menu li.product-toggler.is-active a:before {
          content: '';
          position: absolute;
          left: 50%;
          bottom: 0;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 0 8px 10px 8px;
          border-color: transparent transparent #9f9b9b transparent;
          margin-left: -8px; } }

.b-product-detail {
  background-color: #fff;
  padding-bottom: 20px;
  margin-bottom: 20px;
  margin-top: 30px; }
  .b-product-detail:before, .b-product-detail:after {
    content: " ";
    display: table; }
  .b-product-detail:after {
    clear: both; }

.product-detail__headline {
  width: 100%;
  display: block;
  text-align: center;
  color: #e35742;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 2.7em;
  line-height: 120%;
  padding: 30px;
  margin-bottom: 30px; }
  .product-detail__headline em {
    color: #323743;
    font-size: 0.6em;
    display: block; }

.product-detail__article-headline {
  color: #fff;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 1.4em;
  line-height: 130%;
  padding: 5px 10px;
  width: 90%;
  margin-bottom: 30px;
  margin-left: 20px;
  background: #323743; }

.product-detail__article-document {
  color: #323743;
  font-weight: 400;
  font-family: 'Dosis', Arial, sans-serif;
  font-size: 1.2em;
  line-height: 130%;
  padding-left: 20px;
  width: 90%;
  padding-bottom: 30px;
  display: block;
  margin-top: 20px; }
  .product-detail__article-document .item {
    padding-left: 18px;
    margin-bottom: 6px; }
  .product-detail__article-document .item a {
    font-weight: 300;
    font-family: 'Dosis', Arial, sans-serif;
    text-decoration: none;
    color: #e35742;
    transition: color 200ms ease-in-out;
    position: relative; }
    .product-detail__article-document .item a:before {
      content: "";
      height: 1px;
      width: 12px;
      background: #e35742;
      display: inline-block;
      margin-right: 12px;
      bottom: -4px;
      position: relative; }
    .product-detail__article-document .item a:after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 0;
      background: url(../img/icon-pdf-orange.png) top left no-repeat;
      width: 12px;
      height: 11px; }
    .product-detail__article-document .item a:hover {
      color: #ed9285; }

.product-teaser__headline-type {
  display: block;
  float: left;
  width: 100%;
  text-align: center;
  margin: 40px 0 50px;
  font-size: 1.6em;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 40px;
  line-height: 120%;
  font-family: 'Dosis', Arial, sans-serif;
  padding-bottom: 10px;
  color: #323743;
  border-bottom: 1px solid rgba(50, 55, 67, 0.1);
  background-color: rgba(0, 0, 0, 0.01);
  line-height: 40px; }

.product-detail__textwrapper {
  padding: 0 20px; }
  .product-detail__textwrapper .rte h3 {
    color: #f36504;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.3em;
    line-height: 140%;
    background-color: #f7f7f7;
    padding: 8px 20px 10px 20px;
    display: block;
    margin-bottom: 30px; }
  .product-detail__textwrapper .rte h4 {
    color: #323743;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1em;
    line-height: 135%;
    margin-bottom: 20px;
    font-weight: 700; }
  .product-detail__textwrapper .rte p {
    color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 130%;
    padding-left: 20px;
    width: 90%;
    padding-bottom: 30px; }
    .product-detail__textwrapper .rte p strong {
      font-weight: 700; }
  .product-detail__textwrapper .rte ul {
    padding-left: 20px;
    width: 90%;
    margin: -5px 0 0; }
    .product-detail__textwrapper .rte ul li {
      font-weight: 400;
      font-family: 'Dosis', Arial, sans-serif;
      font-size: 1.2em;
      padding-left: 40px;
      position: relative;
      margin-bottom: 16px; }
      .product-detail__textwrapper .rte ul li:before {
        content: '';
        position: absolute;
        top: 7px;
        left: 18px;
        display: block;
        width: 7px;
        height: 7px;
        background-color: #f36504;
        border-radius: 15px; }
      .product-detail__textwrapper .rte ul li li {
        padding-left: 30px; }

.product-detail__slider {
  border: 4px solid #f7f7f7;
  padding: 30px 0;
  margin-bottom: 30px; }
  @media only screen and (min-width: 1024px) {
    .product-detail__slider {
      padding: 60px 0;
      margin-bottom: 0; } }
  .product-detail__slider .slick-slide {
    height: auto;
    max-height: 200px;
    margin-bottom: 30px; }
    @media only screen and (min-width: 1024px) {
      .product-detail__slider .slick-slide {
        max-height: 400px; } }
    .product-detail__slider .slick-slide img {
      margin: 0 auto;
      transform: scale(0.5);
      transform-origin: top center; }
      @media only screen and (min-width: 1024px) {
        .product-detail__slider .slick-slide img {
          transform: scale(1); } }

/* ===================================================
Block: b-search
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
#block-views-28b780090342cde492b884783d05156f {
  float: none;
  background-color: #e35742;
  height: 66px;
  padding: 20px 22px 0 22px;
  width: 300px;
  margin: 20px auto;
  transition: background-color 300ms ease-in-out, height 300ms ease-in-out, padding-top 300ms ease-in-out;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  #block-views-28b780090342cde492b884783d05156f:hover {
    background-color: #e66754; }
  @media only screen and (min-width: 1100px) {
    #block-views-28b780090342cde492b884783d05156f {
      padding-top: 32px;
      float: right;
      width: 207px;
      margin: 0;
      height: 90px; } }
  #block-views-28b780090342cde492b884783d05156f .views-exposed-widgets {
    margin-bottom: 0; }
    #block-views-28b780090342cde492b884783d05156f .views-exposed-widgets label {
      display: none; }
  #block-views-28b780090342cde492b884783d05156f .views-exposed-widget {
    float: none;
    padding: 0; }
  #block-views-28b780090342cde492b884783d05156f .form-type-textfield input {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.56);
    color: #fff;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    font-size: 1.1em;
    font-style: italic;
    float: left;
    width: 100%;
    padding-bottom: 4px;
    padding-right: 30px; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input:focus {
      outline: none; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input::-webkit-input-placeholder {
      /* Safari, Chrome and Opera */
      color: #fff; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input:-moz-placeholder {
      /* Firefox 18- */
      color: #fff; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input::-moz-placeholder {
      /* Firefox 19+ */
      color: #fff; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input:-ms-input-placeholder {
      /* IE 10+ */
      color: #fff; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input::-ms-input-placeholder {
      /* Edge */
      color: #fff; }
    #block-views-28b780090342cde492b884783d05156f .form-type-textfield input:placeholder-shown {
      /* Standard one last! */
      color: #fff; }
  #block-views-28b780090342cde492b884783d05156f .views-submit-button {
    float: left;
    padding: 0; }
  #block-views-28b780090342cde492b884783d05156f .form-submit {
    border: none;
    background: url("../img/svg/icons/icon-search-actisio.svg") center center no-repeat transparent;
    font-size: 0.00001em;
    text-indent: -9999px;
    display: inline-block;
    width: 18px;
    height: 16px;
    margin-left: -18px;
    margin-top: 5px;
    float: left;
    cursor: pointer;
    transition: opacity 200ms ease-in-out; }
    #block-views-28b780090342cde492b884783d05156f .form-submit:hover, #block-views-28b780090342cde492b884783d05156f .form-submit:focus {
      outline: none;
      opacity: 0.7; }

/*
COL
----------------------- */
.grid-col {
  float: left;
  /*
	Modifiers
	----------------------- */ }
  .grid-col.is-col-size1 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size1 {
        width: 8.3333333333%; } }
  .grid-col.is-col-size2 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size2 {
        width: 16.6666666667%; } }
  .grid-col.is-col-size3 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size3 {
        width: 50%; } }
    @media only screen and (min-width: 1440px) {
      .grid-col.is-col-size3 {
        width: 25%; } }
  .grid-col.is-col-size4 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size4 {
        width: 50%; } }
    @media only screen and (min-width: 1024px) {
      .grid-col.is-col-size4 {
        width: 33.3333333333%; } }
  .grid-col.is-col-size5 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size5 {
        width: 41.6666666667%; } }
  .grid-col.is-col-size6 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size6 {
        width: 50%; } }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size6.is-product-detail {
        width: 100%; } }
    @media only screen and (min-width: 1024px) {
      .grid-col.is-col-size6.is-product-detail {
        width: 50%; } }
    .grid-col.is-col-size6.is-product-detail.is-slider-grid {
      padding: 0 20px; }
      @media only screen and (min-width: 1024px) {
        .grid-col.is-col-size6.is-product-detail.is-slider-grid {
          padding: 0 0 0 20px; } }
  .grid-col.is-col-size7 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size7 {
        width: 58.3333333333%; } }
  .grid-col.is-col-size8 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size8 {
        width: 66.6666666667%; } }
  .grid-col.is-col-size9 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size9 {
        width: 75%; } }
  .grid-col.is-col-size10 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size10 {
        width: 83.3333333333%; } }
  .grid-col.is-col-size11 {
    width: 100%; }
    @media only screen and (min-width: 660px) {
      .grid-col.is-col-size11 {
        width: 91.6666666667%; } }
  .grid-col.is-col-size12 {
    width: 100%; }

/* ===================================================
Block: r-footer
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.r-footer {
  position: relative;
  width: 100%;
  background: #323743;
  padding: 30px 0 5px;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  .r-footer .footer__wrapper {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff; }
    @media only screen and (min-width: 1220px) {
      .r-footer .footer__wrapper {
        padding: 0 40px; } }
  .r-footer .footer__column {
    float: none;
    width: 100%;
    margin-bottom: 50px; }
    .r-footer .footer__column:before, .r-footer .footer__column:after {
      content: " ";
      display: table; }
    .r-footer .footer__column:after {
      clear: both; }
    @media only screen and (min-width: 540px) {
      .r-footer .footer__column {
        width: 50%;
        float: left;
        margin-bottom: 30px;
        min-height: 320px; } }
    @media only screen and (min-width: 1220px) {
      .r-footer .footer__column {
        width: 20%;
        min-height: 0; } }
    .r-footer .footer__column:nth-child(3), .r-footer .footer__column:nth-child(4) {
      width: 100%; }
      @media only screen and (min-width: 540px) {
        .r-footer .footer__column:nth-child(3), .r-footer .footer__column:nth-child(4) {
          width: 50%; } }
      @media only screen and (min-width: 1220px) {
        .r-footer .footer__column:nth-child(3), .r-footer .footer__column:nth-child(4) {
          width: 20%; } }
      .r-footer .footer__column:nth-child(3) li, .r-footer .footer__column:nth-child(4) li {
        float: left;
        width: 97%;
        margin-right: 3%; }
  .r-footer .footer__to-top {
    top: 30px;
    position: absolute;
    right: 8px; }
  .r-footer .footer__to-top-link {
    width: 26px;
    height: 118px;
    display: block;
    text-indent: -9999px;
    font-size: 0.00001em;
    background: url("../img/nach-oben.png") top left no-repeat;
    opacity: 0.35;
    transition: opacity 200ms ease-in-out; }
    .r-footer .footer__to-top-link:hover {
      opacity: 1; }
    .r-footer .footer__to-top-link:focus {
      outline: 0; }
  .r-footer .footer__headline {
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 400;
    display: block;
    font-size: 29px;
    margin-bottom: 30px; }
    .r-footer .footer__headline.is-right {
      text-align: left; }
      @media only screen and (min-width: 1220px) {
        .r-footer .footer__headline.is-right {
          text-align: right; } }
  .r-footer .footer__contact-info {
    font-size: 17px;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    line-height: 130%; }
    .r-footer .footer__contact-info p {
      padding-bottom: 21px; }
      .r-footer .footer__contact-info p:last-child {
        padding-bottom: 0; }
    .r-footer .footer__contact-info em {
      display: inline-block;
      width: 87px; }
    .r-footer .footer__contact-info a {
      color: #e35742;
      text-decoration: none;
      transition: color 200ms ease-in-out; }
      .r-footer .footer__contact-info a:hover {
        color: #ed9285; }
  .r-footer .footer__linklist {
    list-style: none; }
  .r-footer .footer--linklist-item {
    margin-bottom: 10px; }
  .r-footer .footer__linklist-link {
    font-size: 17px;
    font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    line-height: 130%;
    color: #e35742;
    text-decoration: none;
    transition: color 200ms ease-in-out;
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    height: 21px;
    /*
		Modifiers
		----------------------- */ }
    .r-footer .footer__linklist-link:before {
      content: "";
      height: 1px;
      width: 12px;
      background: #656565;
      display: inline-block;
      margin-right: 9px;
      bottom: -4px;
      position: relative; }
    .r-footer .footer__linklist-link:hover {
      color: #ed9285; }
    .r-footer .footer__linklist-link.is-pdf:after {
      content: '';
      position: absolute;
      bottom: 3px;
      left: 0;
      background: url(../img/icon-pdf.png) top left no-repeat;
      width: 12px;
      height: 11px; }
  .r-footer .footer__partnerlist {
    list-style: none; }
    .r-footer .footer__partnerlist .footer--linklist-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      margin-bottom: 0; }
  .r-footer .footer--partnerlist-item {
    margin-bottom: 0;
    padding: 12px 0;
    display: block;
    text-align: left; }
    @media only screen and (min-width: 1220px) {
      .r-footer .footer--partnerlist-item {
        text-align: right; } }
    .r-footer .footer--partnerlist-item img {
      max-width: 100%;
      display: inline-block;
      opacity:1;
      transition: opacity 200ms ease-in-out;
      height: 40px;
      width: inherit;
      transform: scale3d(1, 1, 1);
      transform-style: preserve-3d; }
      .r-footer .footer--partnerlist-item img:hover {
        opacity: 1; }

/* ===================================================
Block: r-header
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.webform-confirmation {
width: 100%;
max-width: 1100px;
background-color: #fff;
padding: 20px;
margin: 100px auto;
color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 130%;
}

.webform-confirmation + .links {
width: 100%;
max-width: 1100px;
background-color: #fff;
padding: 20px;
margin: 100px auto;
text-align: center;

}

.webform-confirmation + .links a {
	font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    color: #e35742;
    text-decoration: none;
    transition: color 200ms ease-in-out;
}

.webform-component--datenschutz-fieldset--datenschutz {
	font-family: 'Dosis', Arial, sans-serif;
    font-weight: 300;
    color: #323743;
        width: 99%;
    float: none;
	margin: 0 auto;
}

.webform-component--datenschutz-fieldset--datenschutz label[for="edit-submitted-datenschutz-fieldset-datenschutz"] {
	display: none;
}

.webform-component--datenschutz-fieldset--datenschutz label[for="edit-submitted-datenschutz-fieldset-datenschutz-1"] {
    color: #323743;
    font-weight: 400;
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 130%;
    padding-bottom: 30px;
}

.webform-component--datenschutz-fieldset--datenschutz .form-checkbox {
	width: auto;
	margin-right: 10px;
}

.webform-component--datenschutz-fieldset--datenschutz a {
	color: #e35742;
    text-decoration: none;
    transition: color 200ms ease-in-out;
}

.webform-component--datenschutz-fieldset--datenschutz a:hover {
	text-decoration: underline;
	color: #323743;
}

.webform-component--datenschutz-fieldset--datenschutz .description {
padding-left: 30px;
    width: 80%;
    }
    
    .webform-component--datenschutz-fieldset {
        padding: 20px;
    margin: 40px 0;
    display: block;
    background: #f7f7f7;
    }
    
    .webform-component--datenschutz-fieldset .fieldset-legend {
    font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
    color: #e35742;
    font-weight: 600;
    text-transform: uppercase;
    }

@media (min-width: 900px) {
	.webform-component--datenschutz .form-checkbox {
		margin-right: 5px;
	}
	
	.webform-component--datenschutz .description {
	padding-left: 25px;
	}
}

#cookiefield {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #000;
	font-family: 'Dosis', Arial, sans-serif;
    font-size: 1.2em;
    line-height: 125%;
    color: #fff;
    padding: 12px 10px;
}

#cookiefield div {
padding-right: 30px;
display: inline-block;
}

#cookiefield a {
	color: #fff;
	display: block;
	margin: 10px 0;
}

#cookiefield a:hover {
	text-decoration: none;
}

#cookiefield #cookiefieldCloser {
	cursor: pointer;
	position: absolute;
	right: 10px;
	top: 10px;
}

.r-header {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  @media only screen and (min-width: 1100px) {
    .r-header {
      position: fixed; } }

/* ===================================================
Block: r-metabar
=================================================== */
/* ---------------------------------------------------
Global Styles
--------------------------------------------------- */
.r-metabar {
  background-color: #323743;
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  transition: height 300ms ease-in-out;
  /*
	Modifiers
	----------------------- */
  /* ---------------------------------------------------
	Elements
	--------------------------------------------------- */ }
  @media only screen and (min-width: 1100px) {
    .r-metabar {
      position: absolute;
      height: 90px; } }
  .r-metabar.is-scrolling .b-logo .logo__link {
    background: url("../img/actisio-logo-scrolling.svg") top left no-repeat;
    background-size: 50%;
    background-position: 40px 4px;
    height: 49px; }
  @media only screen and (min-width: 1100px) {
    .r-metabar.is-scrolling {
      height: 60px; }
      .r-metabar.is-scrolling .b-logo {
        padding: 11px 0 40px; }
      .r-metabar.is-scrolling #block-views-28b780090342cde492b884783d05156f {
        height: 60px;
        padding-top: 15px; }
      .r-metabar.is-scrolling .b-mainnav #block-system-main-menu .menu li a {
        line-height: 60px; } }

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important; }
  a,
  a:visited {
    text-decoration: underline; }
  a[href]:after {
    content: " (" attr(href) ")"; }
  abbr[title]:after {
    content: " (" attr(title) ")"; }
  /*
	* Don't show links for images, or javascript/internal links
	*/
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  thead {
    display: table-header-group;
    /* h5bp.com/t */ }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  @page {
    margin: 0.5cm; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

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