@charset "UTF-8";
/**
 * Capitan SASS boilerplate v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-01-26
 * MIT License (MIT)
 */
/* ==========================================================================
   Core functions, variables and mixins
   ========================================================================== */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
/* ==========================================================================
   Reset and dependencies
   ========================================================================== */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*! HTML5 Boilerplate v5.2.0 | MIT License | https://html5boilerplate.com/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  height: 100%; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers:
 */
.hidden {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */ }

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   http://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster:
                                   http://www.sanbeiji.com/archives/953 */
    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 that are fragment identifiers,
	 * or use the `javascript:` pseudo protocol
	 */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: ""; }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  /*
	 * Printing Tables:
	 * http://css-discuss.incutio.com/wiki/Printing_Tables
	 */
  thead {
    display: table-header-group; }
  tr,
  img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }
  h2,
  h3 {
    page-break-after: avoid; } }

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px; }
  .container-fluid:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.row {
  margin-left: -15px;
  margin-right: -15px; }
  .row:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px; }

@media (min-width: 320px) {
  .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left; }
  .col-xs-1 {
    width: 8.3333333333%; }
  .col-xs-2 {
    width: 16.6666666667%; }
  .col-xs-3 {
    width: 25%; }
  .col-xs-4 {
    width: 33.3333333333%; }
  .col-xs-5 {
    width: 41.6666666667%; }
  .col-xs-6 {
    width: 50%; }
  .col-xs-7 {
    width: 58.3333333333%; }
  .col-xs-8 {
    width: 66.6666666667%; }
  .col-xs-9 {
    width: 75%; }
  .col-xs-10 {
    width: 83.3333333333%; }
  .col-xs-11 {
    width: 91.6666666667%; }
  .col-xs-12 {
    width: 100%; }
  .col-xs-pull-0 {
    right: auto; }
  .col-xs-pull-1 {
    right: 8.3333333333%; }
  .col-xs-pull-2 {
    right: 16.6666666667%; }
  .col-xs-pull-3 {
    right: 25%; }
  .col-xs-pull-4 {
    right: 33.3333333333%; }
  .col-xs-pull-5 {
    right: 41.6666666667%; }
  .col-xs-pull-6 {
    right: 50%; }
  .col-xs-pull-7 {
    right: 58.3333333333%; }
  .col-xs-pull-8 {
    right: 66.6666666667%; }
  .col-xs-pull-9 {
    right: 75%; }
  .col-xs-pull-10 {
    right: 83.3333333333%; }
  .col-xs-pull-11 {
    right: 91.6666666667%; }
  .col-xs-pull-12 {
    right: 100%; }
  .col-xs-push-0 {
    left: auto; }
  .col-xs-push-1 {
    left: 8.3333333333%; }
  .col-xs-push-2 {
    left: 16.6666666667%; }
  .col-xs-push-3 {
    left: 25%; }
  .col-xs-push-4 {
    left: 33.3333333333%; }
  .col-xs-push-5 {
    left: 41.6666666667%; }
  .col-xs-push-6 {
    left: 50%; }
  .col-xs-push-7 {
    left: 58.3333333333%; }
  .col-xs-push-8 {
    left: 66.6666666667%; }
  .col-xs-push-9 {
    left: 75%; }
  .col-xs-push-10 {
    left: 83.3333333333%; }
  .col-xs-push-11 {
    left: 91.6666666667%; }
  .col-xs-push-12 {
    left: 100%; }
  .col-xs-offset-0 {
    margin-left: 0%; }
  .col-xs-offset-1 {
    margin-left: 8.3333333333%; }
  .col-xs-offset-2 {
    margin-left: 16.6666666667%; }
  .col-xs-offset-3 {
    margin-left: 25%; }
  .col-xs-offset-4 {
    margin-left: 33.3333333333%; }
  .col-xs-offset-5 {
    margin-left: 41.6666666667%; }
  .col-xs-offset-6 {
    margin-left: 50%; }
  .col-xs-offset-7 {
    margin-left: 58.3333333333%; }
  .col-xs-offset-8 {
    margin-left: 66.6666666667%; }
  .col-xs-offset-9 {
    margin-left: 75%; }
  .col-xs-offset-10 {
    margin-left: 83.3333333333%; }
  .col-xs-offset-11 {
    margin-left: 91.6666666667%; }
  .col-xs-offset-12 {
    margin-left: 100%; } }

@media (min-width: 480px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left; }
  .col-sm-1 {
    width: 8.3333333333%; }
  .col-sm-2 {
    width: 16.6666666667%; }
  .col-sm-3 {
    width: 25%; }
  .col-sm-4 {
    width: 33.3333333333%; }
  .col-sm-5 {
    width: 41.6666666667%; }
  .col-sm-6 {
    width: 50%; }
  .col-sm-7 {
    width: 58.3333333333%; }
  .col-sm-8 {
    width: 66.6666666667%; }
  .col-sm-9 {
    width: 75%; }
  .col-sm-10 {
    width: 83.3333333333%; }
  .col-sm-11 {
    width: 91.6666666667%; }
  .col-sm-12 {
    width: 100%; }
  .col-sm-pull-0 {
    right: auto; }
  .col-sm-pull-1 {
    right: 8.3333333333%; }
  .col-sm-pull-2 {
    right: 16.6666666667%; }
  .col-sm-pull-3 {
    right: 25%; }
  .col-sm-pull-4 {
    right: 33.3333333333%; }
  .col-sm-pull-5 {
    right: 41.6666666667%; }
  .col-sm-pull-6 {
    right: 50%; }
  .col-sm-pull-7 {
    right: 58.3333333333%; }
  .col-sm-pull-8 {
    right: 66.6666666667%; }
  .col-sm-pull-9 {
    right: 75%; }
  .col-sm-pull-10 {
    right: 83.3333333333%; }
  .col-sm-pull-11 {
    right: 91.6666666667%; }
  .col-sm-pull-12 {
    right: 100%; }
  .col-sm-push-0 {
    left: auto; }
  .col-sm-push-1 {
    left: 8.3333333333%; }
  .col-sm-push-2 {
    left: 16.6666666667%; }
  .col-sm-push-3 {
    left: 25%; }
  .col-sm-push-4 {
    left: 33.3333333333%; }
  .col-sm-push-5 {
    left: 41.6666666667%; }
  .col-sm-push-6 {
    left: 50%; }
  .col-sm-push-7 {
    left: 58.3333333333%; }
  .col-sm-push-8 {
    left: 66.6666666667%; }
  .col-sm-push-9 {
    left: 75%; }
  .col-sm-push-10 {
    left: 83.3333333333%; }
  .col-sm-push-11 {
    left: 91.6666666667%; }
  .col-sm-push-12 {
    left: 100%; }
  .col-sm-offset-0 {
    margin-left: 0%; }
  .col-sm-offset-1 {
    margin-left: 8.3333333333%; }
  .col-sm-offset-2 {
    margin-left: 16.6666666667%; }
  .col-sm-offset-3 {
    margin-left: 25%; }
  .col-sm-offset-4 {
    margin-left: 33.3333333333%; }
  .col-sm-offset-5 {
    margin-left: 41.6666666667%; }
  .col-sm-offset-6 {
    margin-left: 50%; }
  .col-sm-offset-7 {
    margin-left: 58.3333333333%; }
  .col-sm-offset-8 {
    margin-left: 66.6666666667%; }
  .col-sm-offset-9 {
    margin-left: 75%; }
  .col-sm-offset-10 {
    margin-left: 83.3333333333%; }
  .col-sm-offset-11 {
    margin-left: 91.6666666667%; }
  .col-sm-offset-12 {
    margin-left: 100%; } }

@media (min-width: 768px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left; }
  .col-md-1 {
    width: 8.3333333333%; }
  .col-md-2 {
    width: 16.6666666667%; }
  .col-md-3 {
    width: 25%; }
  .col-md-4 {
    width: 33.3333333333%; }
  .col-md-5 {
    width: 41.6666666667%; }
  .col-md-6 {
    width: 50%; }
  .col-md-7 {
    width: 58.3333333333%; }
  .col-md-8 {
    width: 66.6666666667%; }
  .col-md-9 {
    width: 75%; }
  .col-md-10 {
    width: 83.3333333333%; }
  .col-md-11 {
    width: 91.6666666667%; }
  .col-md-12 {
    width: 100%; }
  .col-md-pull-0 {
    right: auto; }
  .col-md-pull-1 {
    right: 8.3333333333%; }
  .col-md-pull-2 {
    right: 16.6666666667%; }
  .col-md-pull-3 {
    right: 25%; }
  .col-md-pull-4 {
    right: 33.3333333333%; }
  .col-md-pull-5 {
    right: 41.6666666667%; }
  .col-md-pull-6 {
    right: 50%; }
  .col-md-pull-7 {
    right: 58.3333333333%; }
  .col-md-pull-8 {
    right: 66.6666666667%; }
  .col-md-pull-9 {
    right: 75%; }
  .col-md-pull-10 {
    right: 83.3333333333%; }
  .col-md-pull-11 {
    right: 91.6666666667%; }
  .col-md-pull-12 {
    right: 100%; }
  .col-md-push-0 {
    left: auto; }
  .col-md-push-1 {
    left: 8.3333333333%; }
  .col-md-push-2 {
    left: 16.6666666667%; }
  .col-md-push-3 {
    left: 25%; }
  .col-md-push-4 {
    left: 33.3333333333%; }
  .col-md-push-5 {
    left: 41.6666666667%; }
  .col-md-push-6 {
    left: 50%; }
  .col-md-push-7 {
    left: 58.3333333333%; }
  .col-md-push-8 {
    left: 66.6666666667%; }
  .col-md-push-9 {
    left: 75%; }
  .col-md-push-10 {
    left: 83.3333333333%; }
  .col-md-push-11 {
    left: 91.6666666667%; }
  .col-md-push-12 {
    left: 100%; }
  .col-md-offset-0 {
    margin-left: 0%; }
  .col-md-offset-1 {
    margin-left: 8.3333333333%; }
  .col-md-offset-2 {
    margin-left: 16.6666666667%; }
  .col-md-offset-3 {
    margin-left: 25%; }
  .col-md-offset-4 {
    margin-left: 33.3333333333%; }
  .col-md-offset-5 {
    margin-left: 41.6666666667%; }
  .col-md-offset-6 {
    margin-left: 50%; }
  .col-md-offset-7 {
    margin-left: 58.3333333333%; }
  .col-md-offset-8 {
    margin-left: 66.6666666667%; }
  .col-md-offset-9 {
    margin-left: 75%; }
  .col-md-offset-10 {
    margin-left: 83.3333333333%; }
  .col-md-offset-11 {
    margin-left: 91.6666666667%; }
  .col-md-offset-12 {
    margin-left: 100%; } }

@media (min-width: 992px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left; }
  .col-lg-1 {
    width: 8.3333333333%; }
  .col-lg-2 {
    width: 16.6666666667%; }
  .col-lg-3 {
    width: 25%; }
  .col-lg-4 {
    width: 33.3333333333%; }
  .col-lg-5 {
    width: 41.6666666667%; }
  .col-lg-6 {
    width: 50%; }
  .col-lg-7 {
    width: 58.3333333333%; }
  .col-lg-8 {
    width: 66.6666666667%; }
  .col-lg-9 {
    width: 75%; }
  .col-lg-10 {
    width: 83.3333333333%; }
  .col-lg-11 {
    width: 91.6666666667%; }
  .col-lg-12 {
    width: 100%; }
  .col-lg-pull-0 {
    right: auto; }
  .col-lg-pull-1 {
    right: 8.3333333333%; }
  .col-lg-pull-2 {
    right: 16.6666666667%; }
  .col-lg-pull-3 {
    right: 25%; }
  .col-lg-pull-4 {
    right: 33.3333333333%; }
  .col-lg-pull-5 {
    right: 41.6666666667%; }
  .col-lg-pull-6 {
    right: 50%; }
  .col-lg-pull-7 {
    right: 58.3333333333%; }
  .col-lg-pull-8 {
    right: 66.6666666667%; }
  .col-lg-pull-9 {
    right: 75%; }
  .col-lg-pull-10 {
    right: 83.3333333333%; }
  .col-lg-pull-11 {
    right: 91.6666666667%; }
  .col-lg-pull-12 {
    right: 100%; }
  .col-lg-push-0 {
    left: auto; }
  .col-lg-push-1 {
    left: 8.3333333333%; }
  .col-lg-push-2 {
    left: 16.6666666667%; }
  .col-lg-push-3 {
    left: 25%; }
  .col-lg-push-4 {
    left: 33.3333333333%; }
  .col-lg-push-5 {
    left: 41.6666666667%; }
  .col-lg-push-6 {
    left: 50%; }
  .col-lg-push-7 {
    left: 58.3333333333%; }
  .col-lg-push-8 {
    left: 66.6666666667%; }
  .col-lg-push-9 {
    left: 75%; }
  .col-lg-push-10 {
    left: 83.3333333333%; }
  .col-lg-push-11 {
    left: 91.6666666667%; }
  .col-lg-push-12 {
    left: 100%; }
  .col-lg-offset-0 {
    margin-left: 0%; }
  .col-lg-offset-1 {
    margin-left: 8.3333333333%; }
  .col-lg-offset-2 {
    margin-left: 16.6666666667%; }
  .col-lg-offset-3 {
    margin-left: 25%; }
  .col-lg-offset-4 {
    margin-left: 33.3333333333%; }
  .col-lg-offset-5 {
    margin-left: 41.6666666667%; }
  .col-lg-offset-6 {
    margin-left: 50%; }
  .col-lg-offset-7 {
    margin-left: 58.3333333333%; }
  .col-lg-offset-8 {
    margin-left: 66.6666666667%; }
  .col-lg-offset-9 {
    margin-left: 75%; }
  .col-lg-offset-10 {
    margin-left: 83.3333333333%; }
  .col-lg-offset-11 {
    margin-left: 91.6666666667%; }
  .col-lg-offset-12 {
    margin-left: 100%; } }

@media (min-width: 1600px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left; }
  .col-xl-1 {
    width: 8.3333333333%; }
  .col-xl-2 {
    width: 16.6666666667%; }
  .col-xl-3 {
    width: 25%; }
  .col-xl-4 {
    width: 33.3333333333%; }
  .col-xl-5 {
    width: 41.6666666667%; }
  .col-xl-6 {
    width: 50%; }
  .col-xl-7 {
    width: 58.3333333333%; }
  .col-xl-8 {
    width: 66.6666666667%; }
  .col-xl-9 {
    width: 75%; }
  .col-xl-10 {
    width: 83.3333333333%; }
  .col-xl-11 {
    width: 91.6666666667%; }
  .col-xl-12 {
    width: 100%; }
  .col-xl-pull-0 {
    right: auto; }
  .col-xl-pull-1 {
    right: 8.3333333333%; }
  .col-xl-pull-2 {
    right: 16.6666666667%; }
  .col-xl-pull-3 {
    right: 25%; }
  .col-xl-pull-4 {
    right: 33.3333333333%; }
  .col-xl-pull-5 {
    right: 41.6666666667%; }
  .col-xl-pull-6 {
    right: 50%; }
  .col-xl-pull-7 {
    right: 58.3333333333%; }
  .col-xl-pull-8 {
    right: 66.6666666667%; }
  .col-xl-pull-9 {
    right: 75%; }
  .col-xl-pull-10 {
    right: 83.3333333333%; }
  .col-xl-pull-11 {
    right: 91.6666666667%; }
  .col-xl-pull-12 {
    right: 100%; }
  .col-xl-push-0 {
    left: auto; }
  .col-xl-push-1 {
    left: 8.3333333333%; }
  .col-xl-push-2 {
    left: 16.6666666667%; }
  .col-xl-push-3 {
    left: 25%; }
  .col-xl-push-4 {
    left: 33.3333333333%; }
  .col-xl-push-5 {
    left: 41.6666666667%; }
  .col-xl-push-6 {
    left: 50%; }
  .col-xl-push-7 {
    left: 58.3333333333%; }
  .col-xl-push-8 {
    left: 66.6666666667%; }
  .col-xl-push-9 {
    left: 75%; }
  .col-xl-push-10 {
    left: 83.3333333333%; }
  .col-xl-push-11 {
    left: 91.6666666667%; }
  .col-xl-push-12 {
    left: 100%; }
  .col-xl-offset-0 {
    margin-left: 0%; }
  .col-xl-offset-1 {
    margin-left: 8.3333333333%; }
  .col-xl-offset-2 {
    margin-left: 16.6666666667%; }
  .col-xl-offset-3 {
    margin-left: 25%; }
  .col-xl-offset-4 {
    margin-left: 33.3333333333%; }
  .col-xl-offset-5 {
    margin-left: 41.6666666667%; }
  .col-xl-offset-6 {
    margin-left: 50%; }
  .col-xl-offset-7 {
    margin-left: 58.3333333333%; }
  .col-xl-offset-8 {
    margin-left: 66.6666666667%; }
  .col-xl-offset-9 {
    margin-left: 75%; }
  .col-xl-offset-10 {
    margin-left: 83.3333333333%; }
  .col-xl-offset-11 {
    margin-left: 91.6666666667%; }
  .col-xl-offset-12 {
    margin-left: 100%; } }

.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 28px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 8px;
  padding-right: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-selection--single .select2-selection__clear {
  position: relative; }

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px; }

.select2-container .select2-selection--multiple {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  min-height: 32px;
  user-select: none;
  -webkit-user-select: none; }

.select2-container .select2-selection--multiple .select2-selection__rendered {
  display: inline-block;
  overflow: hidden;
  padding-left: 8px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.select2-container .select2-search--inline {
  float: left; }

.select2-container .select2-search--inline .select2-search__field {
  box-sizing: border-box;
  border: none;
  font-size: 100%;
  margin-top: 5px;
  padding: 0; }

.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }

.select2-results__option[aria-selected] {
  cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }

.select2-search--dropdown .select2-search__field {
  padding: 4px;
  width: 100%;
  box-sizing: border-box; }

.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
  -webkit-appearance: none; }

.select2-search--dropdown.select2-search--hide {
  display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--default .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold; }

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px; }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
  display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 0 5px;
  width: 100%; }

.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
  list-style: none; }

.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  margin-top: 5px;
  float: left; }

.select2-container--default .select2-selection--multiple .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-top: 5px;
  margin-right: 10px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -1em;
  padding-left: 2em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -2em;
  padding-left: 3em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -3em;
  padding-left: 4em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -4em;
  padding-left: 5em; }

.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -5em;
  padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic .select2-selection--single:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 28px; }

.select2-container--classic .select2-selection--single .select2-selection__clear {
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px; }

.select2-container--classic .select2-selection--single .select2-selection__placeholder {
  color: #999; }

.select2-container--classic .select2-selection--single .select2-selection__arrow {
  background-color: #ddd;
  border: none;
  border-left: 1px solid #aaa;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  height: 26px;
  position: absolute;
  top: 1px;
  right: 1px;
  width: 20px;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }

.select2-container--classic .select2-selection--single .select2-selection__arrow b {
  border-color: #888 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
  background: transparent;
  border: none; }

.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }

.select2-container--classic .select2-selection--multiple:focus {
  border: 1px solid #5897fb; }

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
  list-style: none;
  margin: 0;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__clear {
  display: none; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice {
  background-color: #e4e4e4;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
  color: #888;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px; }

.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

/* ==========================================================================
   Default layout partials
   ========================================================================== */
/**
 * Capitan layout.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Global Layout
   ========================================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #46484b;
  font-size: 93.75%;
  line-height: 1.4;
  height: 100%; }

body::before {
  content: '{ "xs": 320, "sm": 480, "md": 768, "lg": 992, "xl": 1600 }';
  display: none; }

/* stylelint-disable */
main {
  min-height: 100%;
  padding-top: 100px;
  margin-bottom: -120px;
  padding-bottom: 120px; }
  main:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

/* stylelint-enable */
/* ==========================================================================
   Grid overrides
   ========================================================================== */
.container {
  min-width: 66.1333333333em;
  max-width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px; }
  .container--bg {
    background: #f9f9f9;
    text-align: center;
    margin-bottom: 30px;
    padding: 30px; }
    .container--bg > div {
      margin: 0 auto;
      max-width: 768px; }
  .container--small {
    max-width: 992px; }
    .container--small h1,
    .container--small h2 {
      text-align: center; }

ul + ul {
  margin-top: 15px !important; }

.row {
  margin-bottom: 15px; }

.scroll-box {
  max-height: 620px;
  overflow-y: scroll;
  border: 1px solid #ecebea;
  padding: 5px; }

/* ==========================================================================
  Content Elements
  ========================================================================== */
img {
  height: auto;
  outline: 0;
  max-width: 100%; }

hr {
  margin: 20px 0; }
  hr:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

*[class^="col-md-"].util-add-border-right {
  padding-right: 30px; }

/**
 * Capitan typo.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-03-14
 * MIT License (MIT)
 */
/* ==========================================================================
   Webfonts
   ========================================================================== */
@font-face {
  font-family: 'Montserrat';
  src: url("/fonts/webfont/montserrat-v12-latin-regular.eot");
  src: url("/fonts/webfont/montserrat-v12-latin-regular.eot?#iefix") format("embedded-opentype"), url("/fonts/webfont/montserrat-v12-latin-regular.woff") format("woff"), url("/fonts/webfont/montserrat-v12-latin-regular.ttf") format("truetype"), url("/fonts/webfont/montserrat-v12-latin-regular.svg#wf") format("svg");
  font-weight: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

@font-face {
  font-family: 'Montserrat';
  src: url("/fonts/webfont/montserrat-v12-latin-600.eot");
  src: url("/fonts/webfont/montserrat-v12-latin-600.eot?#iefix") format("embedded-opentype"), url("/fonts/webfont/montserrat-v12-latin-600.woff") format("woff"), url("/fonts/webfont/montserrat-v12-latin-600.ttf") format("truetype"), url("/fonts/webfont/montserrat-v12-latin-600.svg#wf") format("svg");
  font-weight: bold;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* Font vars */
/* ==========================================================================
   General fontstyles
   ========================================================================== */
h3,
.headline-3 {
  font-size: 1.125rem;
  color: #969698; }

*[class^="headline"] {
  font-weight: bold;
  display: block;
  margin: 15px 0 8px 0; }

a {
  color: #969698;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }
  a span {
    padding-right: 5px; }

p {
  color: #969698; }
  p > strong {
    color: #000; }

.text-link {
  color: #080844;
  font-weight: bold;
  line-height: 1.7em;
  vertical-align: bottom; }
  .text-link.util-icon--before:before {
    padding-right: 5px; }
  .text-link.util-icon--after:after {
    padding-left: 5px; }
  .text-link--small {
    font-size: 0.8125rem;
    font-weight: normal; }
  .text-link + .text-link {
    margin-left: 30px; }
  .text-link.util-icon--before:hover, .text-link.util-icon--after:hover {
    text-decoration: none; }
    .text-link.util-icon--before:hover > span, .text-link.util-icon--after:hover > span {
      text-decoration: underline; }

.highlighted {
  color: #080844; }

.trigger-delete > span {
  color: #ff5454; }

.trigger-delete:hover {
  text-decoration: none; }
  .trigger-delete:hover > span {
    color: #ac3939; }

h1 span.util-icon--before,
h2 span.util-icon--before,
h3 span.util-icon--before,
h4 span.util-icon--before {
  color: #080844;
  padding-right: 15px; }

.yourtoken {
  font-size: 1.125rem;
  margin: 30px 0; }

/**
 * Capitan icon-font.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-04-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Icon Font settings
   ========================================================================== */
@font-face {
  font-family: 'iconfont';
  src: url("/fonts/iconfont/icomoon.eot?o54bqy");
  src: url("/fonts/iconfont/icomoon.eot?o54bqy#iefix") format("embedded-opentype"), url("/fonts/iconfont/icomoon.woff2?o54bqy") format("woff2"), url("/fonts/iconfont/icomoon.ttf?o54bqy") format("truetype"), url("/fonts/iconfont/icomoon.woff?o54bqy") format("woff"), url("/fonts/iconfont/icomoon.svg?o54bqy#iconfont") format("svg");
  font-weight: normal;
  font-style: normal; }

.util-icon--only:before, .util-icon--before:before,
.util-icon--after:after {
  font-family: 'iconfont', sans-serif;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.util-icon--only {
  font-size: 0;
  vertical-align: text-bottom; }
  .util-icon--only:before {
    font-size: 1.375rem; }

.util-icon--big {
  color: #080844; }
  .util-icon--big:before {
    font-size: 5.625rem; }

.util-icon--before.util-icon--add:before,
.util-icon--after.util-icon--add:after,
.util-icon--only.util-icon--add:before {
  content: ""; }

.util-icon--before.util-icon--addalt:before,
.util-icon--after.util-icon--addalt:after,
.util-icon--only.util-icon--addalt:before {
  content: ""; }

.util-icon--before.util-icon--account:before,
.util-icon--after.util-icon--account:after,
.util-icon--only.util-icon--account:before {
  content: ""; }

.util-icon--before.util-icon--attention:before,
.util-icon--after.util-icon--attention:after,
.util-icon--only.util-icon--attention:before {
  content: ""; }

.util-icon--before.util-icon--bike:before,
.util-icon--after.util-icon--bike:after,
.util-icon--only.util-icon--bike:before {
  content: ""; }

.util-icon--before.util-icon--bikebig:before,
.util-icon--after.util-icon--bikebig:after,
.util-icon--only.util-icon--bikebig:before {
  content: ""; }

.util-icon--before.util-icon--calendar:before,
.util-icon--after.util-icon--calendar:after,
.util-icon--only.util-icon--calendar:before {
  content: ""; }

.util-icon--before.util-icon--check:before,
.util-icon--after.util-icon--check:after,
.util-icon--only.util-icon--check:before {
  content: ""; }

.util-icon--before.util-icon--clock:before,
.util-icon--after.util-icon--clock:after,
.util-icon--only.util-icon--clock:before {
  content: ""; }

.util-icon--before.util-icon--compcontact:before,
.util-icon--after.util-icon--compcontact:after,
.util-icon--only.util-icon--compcontact:before {
  content: ""; }

.util-icon--before.util-icon--comppartner:before,
.util-icon--after.util-icon--comppartner:after,
.util-icon--only.util-icon--comppartner:before {
  content: ""; }

.util-icon--before.util-icon--company:before,
.util-icon--after.util-icon--company:after,
.util-icon--only.util-icon--company:before {
  content: ""; }

.util-icon--before.util-icon--corporation:before,
.util-icon--after.util-icon--corporation:after,
.util-icon--only.util-icon--corporation:before {
  content: ""; }

.util-icon--before.util-icon--document:before,
.util-icon--after.util-icon--document:after,
.util-icon--only.util-icon--document:before {
  content: ""; }

.util-icon--before.util-icon--documents:before,
.util-icon--after.util-icon--documents:after,
.util-icon--only.util-icon--documents:before {
  content: ""; }

.util-icon--before.util-icon--downarrow:before,
.util-icon--after.util-icon--downarrow:after,
.util-icon--only.util-icon--downarrow:before {
  content: ""; }

.util-icon--before.util-icon--download:before,
.util-icon--after.util-icon--download:after,
.util-icon--only.util-icon--download:before {
  content: ""; }

.util-icon--before.util-icon--employee:before,
.util-icon--after.util-icon--employee:after,
.util-icon--only.util-icon--employee:before {
  content: ""; }

.util-icon--before.util-icon--export:before,
.util-icon--after.util-icon--export:after,
.util-icon--only.util-icon--export:before {
  content: ""; }

.util-icon--before.util-icon--exel:before,
.util-icon--after.util-icon--exel:after,
.util-icon--only.util-icon--exel:before {
  content: ""; }

.util-icon--before.util-icon--info:before,
.util-icon--after.util-icon--info:after,
.util-icon--only.util-icon--info:before {
  content: ""; }

.util-icon--before.util-icon--leftarrow:before,
.util-icon--after.util-icon--leftarrow:after,
.util-icon--only.util-icon--leftarrow:before {
  content: ""; }

.util-icon--before.util-icon--link:before,
.util-icon--after.util-icon--link:after,
.util-icon--only.util-icon--link:before {
  content: ""; }

.util-icon--before.util-icon--lockbig:before,
.util-icon--after.util-icon--lockbig:after,
.util-icon--only.util-icon--lockbig:before {
  content: ""; }

.util-icon--before.util-icon--lock:before,
.util-icon--after.util-icon--lock:after,
.util-icon--only.util-icon--lock:before {
  content: ""; }

.util-icon--before.util-icon--minus:before,
.util-icon--after.util-icon--minus:after,
.util-icon--only.util-icon--minus:before {
  content: ""; }

.util-icon--before.util-icon--pdf:before,
.util-icon--after.util-icon--pdf:after,
.util-icon--only.util-icon--pdf:before {
  content: ""; }

.util-icon--before.util-icon--pen:before,
.util-icon--after.util-icon--pen:after,
.util-icon--only.util-icon--pen:before {
  content: ""; }

.util-icon--before.util-icon--plus:before,
.util-icon--after.util-icon--plus:after,
.util-icon--only.util-icon--plus:before {
  content: ""; }

.util-icon--before.util-icon--rightarrow:before,
.util-icon--after.util-icon--rightarrow:after,
.util-icon--only.util-icon--rightarrow:before {
  content: ""; }

.util-icon--before.util-icon--roundcheck:before,
.util-icon--after.util-icon--roundcheck:after,
.util-icon--only.util-icon--roundcheck:before {
  content: ""; }

.util-icon--before.util-icon--search:before,
.util-icon--after.util-icon--search:after,
.util-icon--only.util-icon--search:before {
  content: ""; }

.util-icon--before.util-icon--timeout:before,
.util-icon--after.util-icon--timeout:after,
.util-icon--only.util-icon--timeout:before {
  content: ""; }

.util-icon--before.util-icon--terms:before,
.util-icon--after.util-icon--terms:after,
.util-icon--only.util-icon--terms:before {
  content: ""; }

.util-icon--before.util-icon--trash:before,
.util-icon--after.util-icon--trash:after,
.util-icon--only.util-icon--trash:before {
  content: ""; }

.util-icon--before.util-icon--token:before,
.util-icon--after.util-icon--token:after,
.util-icon--only.util-icon--token:before {
  content: ""; }

.util-icon--before.util-icon--uparrow:before,
.util-icon--after.util-icon--uparrow:after,
.util-icon--only.util-icon--uparrow:before {
  content: ""; }

.util-icon--before.util-icon--close:before,
.util-icon--after.util-icon--close:after,
.util-icon--only.util-icon--close:before {
  content: ""; }

.util-icon--bikebig:before,
.util-icon--lockbig:before {
  font-size: 2.2em;
  vertical-align: middle; }

.util-icon--bikebig:before,
.util-icon--lockbig:before {
  font-size: 2.2em;
  vertical-align: middle; }

/* ==========================================================================
   Components
   ========================================================================== */
/**
 * Capitan header.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9000;
  background: #fff;
  border-bottom: 1px solid #c4c0bf;
  padding: 15px 30px; }
  .header:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.header__logo {
  float: left; }

.header__login {
  float: right;
  margin-right: 15px; }
  .header__login.tooltip {
    margin-top: 5px; }
    .header__login.tooltip > .tooltip__flyout p {
      overflow: hidden;
      text-overflow: ellipsis; }
  .header__login > a {
    display: block;
    float: left;
    margin: 0 10px; }
    .header__login > a:before {
      font-size: 2.5rem; }
  .header__login[data-group="a3"] #corporation_hr_company_switch label {
    display: none; }

.header__manual:before {
  margin-right: 5px;
  vertical-align: middle; }

/**
 * Capitan footer.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  padding: 15px;
  background: #f9f9f9;
  height: 95px;
  margin-top: 25px; }
  .footer:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  @media screen and (max-width: 51.1333333333em) {
    .footer {
      height: 180px; } }
  .footer .container {
    padding-top: 0; }

.footer__copy {
  float: none;
  text-align: center;
  color: #969698; }
  @media screen and (min-width: 32em) {
    .footer__copy {
      float: left; } }

.footer__nav {
  float: none; }
  @media screen and (min-width: 32em) {
    .footer__nav {
      float: right; } }
  .footer__nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0; }
    .footer__nav ul li {
      display: inline-block;
      text-align: center;
      margin-top: 5px; }
      @media screen and (min-width: 32em) {
        .footer__nav ul li {
          text-align: right;
          padding-right: 10px;
          margin-top: 0; } }
      .footer__nav ul li a {
        text-decoration: none;
        color: #969698; }
        .footer__nav ul li a:hover {
          text-decoration: underline; }

/**
 * Capitan flexbox.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-13
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.flexbox {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin-left: -15px;
  margin-right: -15px;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .flexbox:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  @media screen and (max-width: 51.1333333333em) {
    .flexbox {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -o-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .flexbox .data-box {
    display: flex;
    flex-direction: column; }
    .flexbox .data-box p {
      flex-grow: 1; }

ul.flexbox {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: space-between; }
  ul.flexbox .flexbox__item {
    width: 25%;
    flex: 1 0 auto; }

.flexbox__item {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 15px;
  padding-right: 15px;
  -webkit-flex: none;
  flex: none; }
  .flexbox__item > div {
    width: 100%; }
  .data-box .flexbox__item {
    display: block; }

.flexbox--grid {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -o-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  @media screen and (max-width: 51.1333333333em) {
    .flexbox--grid {
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -o-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column; } }

.flex-0 {
  flex: 0; }

.flex-1 {
  flex: 1; }

.flex-2 {
  flex: 2; }

.flex-3 {
  flex: 3; }

.flex-4 {
  flex: 4; }

.flex-5 {
  flex: 5; }

.flex-6 {
  flex: 6; }

.flex-7 {
  flex: 7; }

.flex-8 {
  flex: 8; }

.flex-9 {
  flex: 9; }

.flex-10 {
  flex: 10; }

.flex-11 {
  flex: 11; }

.flex-12 {
  flex: 12; }

.flex-13 {
  flex: 13; }

.flex-14 {
  flex: 14; }

.flex-15 {
  flex: 15; }

.flex-16 {
  flex: 16; }

.flexbox__wrapper {
  padding: 0;
  position: relative;
  width: 100%; }

.flexbox--view {
  display: block; }
  .flexbox--view .flexbox__item {
    display: block; }
    @media screen and (min-width: 66.1333333333em) {
      .flexbox--view .flexbox__item {
        display: flex; } }
  @media screen and (min-width: 66.1333333333em) {
    .flexbox--view {
      display: flex;
      flex-wrap: wrap; } }

/**
 * Capitan fancybox v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-09-18
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap iframe, .fancybox-wrap object {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-nav {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }
  .fancybox-nav span {
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top; }

.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #fff;
  color: #46484b;
  text-shadow: none;
  border-radius: 5px; }

.fancybox-opened {
  z-index: 8030; }
  .fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer {
  position: relative; }

.fancybox-inner {
  position: relative;
  overflow: hidden;
  min-width: 450px; }
  .fancybox-inner h1,
  .fancybox-inner h2,
  .fancybox-inner h3 {
    margin-top: 0; }
  .fancybox-inner > div {
    margin: 0;
    min-width: inherit; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 0.875rem;
  color: #ff5454;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }
  #fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url("/img/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  font-size: 0.75rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  top: -10px;
  right: -10px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
  color: #fff;
  background: #080844;
  text-decoration: none;
  text-align: center; }
  .fancybox-close:after {
    font-family: iconfont;
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    content: "";
    color: #fff;
    margin-top: 10px; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("/img/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  font-size: 0.75rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  background: #fff;
  text-decoration: none;
  text-align: center;
  left: 10px; }
  .fancybox-prev span:after {
    font-family: iconfont;
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    color: #46484b;
    margin-top: 10px; }

.fancybox-next span {
  font-size: 0.75rem;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%;
  background: #fff;
  text-decoration: none;
  text-align: center;
  right: 10px; }
  .fancybox-next span:after {
    font-family: iconfont;
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    color: #46484b;
    margin-top: 10px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: visible !important;
  width: auto; }
  .fancybox-lock body {
    overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: #000;
  background: rgba(0, 0, 0, 0.7); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: normal;
  font-style: normal;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1rem;
  visibility: hidden;
  position: relative;
  text-shadow: none;
  z-index: 8050; }
  .fancybox-title span {
    font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: normal;
    font-style: normal;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    float: right; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }
  .fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent;
    /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px;
  padding-bottom: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #46484b;
  background: rgba(0, 0, 0, 0.8); }

.fancybox-content {
  max-width: 900px !important; }

#infoRetailer p > a {
  color: #080844;
  text-decoration: underline; }
  #infoRetailer p > a:hover {
    text-decoration: none; }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading div {
    background-image: url("/img/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

@media print {
  .fancybox img {
    width: 100%; }
  .fancybox:after {
    content: normal !important; } }

/**
 * Capitan forms.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-01-11
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
/**
 * Capitan utils.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-04-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Util classes
   ========================================================================== */
.util-unstyled {
  margin: 0;
  padding: 0;
  list-style: none; }

.util-column-list {
  font-size: 0;
  margin-left: -15px;
  margin-right: -15px; }
  .util-column-list li {
    font-size: 0.9375rem;
    width: 50%;
    display: inline-block;
    padding: 0 15px;
    margin: 10px 0; }

.util-left {
  float: left; }

.util-right {
  float: right; }
  .util-right + .util-right {
    margin: 0 10px; }

.util-center {
  display: block;
  margin: 0 auto;
  text-align: center; }

.util-clear {
  clear: both; }

.util-highlight {
  color: #080844; }

.util-text-right {
  text-align: right; }

.util-text-left {
  text-align: left !important; }

.util-text-center {
  text-align: center; }

.util-text-break {
  word-break: break-all;
  display: inline-block; }

.util-show-grid [class*="col-"] {
  background: grey;
  outline: 1px solid red; }

.util-show-grid header {
  background: rgba(0, 128, 0, 0.5); }

.util-show-grid footer {
  background: rgba(0, 255, 255, 0.5); }

.util-reset-padding {
  padding: 0 !important; }
  .util-reset-padding-top {
    padding-top: 0 !important; }
  .util-reset-padding-right {
    padding-right: 0 !important; }
  .util-reset-padding-bottom {
    padding-bottom: 0 !important; }
  .util-reset-padding-left {
    padding-left: 0 !important; }
  .util-reset-padding-x {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .util-reset-padding-y {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

.util-add-border-left {
  border-left: 1px solid #c4c0bf !important; }

.util-add-border-right {
  border-right: 1px solid #c4c0bf !important; }

.util-add-border-top {
  border-top: 1px solid #c4c0bf !important;
  padding-top: 10px;
  margin-top: 10px; }

.util-add-padding {
  padding: 15px !important; }
  .util-add-padding-full {
    padding: 30px !important; }
  .util-add-padding-double {
    padding: 60px !important; }
  .util-add-padding-top {
    padding-top: 15px !important; }
    .util-add-padding-top-full {
      padding-top: 30px !important; }
    .util-add-padding-top-double {
      padding-top: 60px !important; }
  .util-add-padding-right {
    padding-right: 15px !important; }
    .util-add-padding-right-full {
      padding-right: 30px !important; }
    .util-add-padding-right-double {
      padding-right: 60px !important; }
  .util-add-padding-bottom {
    padding-bottom: 15px !important; }
    .util-add-padding-bottom-full {
      padding-bottom: 30px !important; }
    .util-add-padding-bottom-double {
      padding-bottom: 60px !important; }
  .util-add-padding-left {
    padding-left: 15px !important; }
    .util-add-padding-left-full {
      padding-left: 30px !important; }
    .util-add-padding-left-double {
      padding-left: 60px !important; }
  .util-add-padding-x {
    padding-left: 15px !important;
    padding-right: 15px !important; }
    .util-add-padding-x-full {
      padding-left: 30px !important;
      padding-right: 30px !important; }
    .util-add-padding-x-double {
      padding-left: 60px !important;
      padding-right: 60px !important; }
  .util-add-padding-y {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }
    .util-add-padding-y-full {
      padding-top: 30px !important;
      padding-bottom: 30px !important; }
    .util-add-padding-y-double {
      padding-top: 60px !important;
      padding-bottom: 60px !important; }

.util-reset-margin {
  margin: 0 !important; }
  .util-reset-margin-top {
    margin-top: 0 !important; }
  .util-reset-margin-right {
    margin-right: 0 !important; }
  .util-reset-margin-bottom {
    margin-bottom: 0 !important; }
  .util-reset-margin-left {
    margin-left: 0 !important; }
  .util-reset-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .util-reset-margin-y {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .util-reset-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important; }

.util-add-margin {
  margin: 15px !important; }
  .util-add-margin-full {
    margin: 30px !important; }
  .util-add-margin-double {
    margin: 60px !important; }
  .util-add-margin-top {
    margin-top: 15px !important; }
    .util-add-margin-top-full, label.label--dark {
      margin-top: 30px !important; }
    .util-add-margin-top-double {
      margin-top: 60px !important; }
  .util-add-margin-right {
    margin-right: 15px !important; }
    .util-add-margin-right-full {
      margin-right: 30px !important; }
    .util-add-margin-right-double {
      margin-right: 60px !important; }
  .util-add-margin-bottom {
    margin-bottom: 15px !important; }
    .util-add-margin-bottom-full {
      margin-bottom: 30px !important; }
    .util-add-margin-bottom-double {
      margin-bottom: 60px !important; }
  .util-add-margin-left {
    margin-left: 15px !important; }
    .util-add-margin-left-full {
      margin-left: 30px !important; }
    .util-add-margin-left-double {
      margin-left: 60px !important; }
  .util-add-margin-x {
    margin-left: 15px !important;
    margin-right: 15px !important; }
    .util-add-margin-x-full {
      margin-left: 30px !important;
      margin-right: 30px !important; }
    .util-add-margin-x-double {
      margin-left: 60px !important;
      margin-right: 60px !important; }
  .util-add-margin-y {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }
    .util-add-margin-y-full {
      margin-top: 30px !important;
      margin-bottom: 30px !important; }
    .util-add-margin-y-double {
      margin-top: 60px !important;
      margin-bottom: 60px !important; }

/** + bootstrap visibility utilities */
.util-hidden,
.util-visible-xs,
.util-visible-sm,
.util-visible-md,
.util-visible-lg,
.util-visible-xl {
  display: none !important; }

@media screen and (min-width: 21.3333333333em) {
  .util-visible-xs {
    display: block !important; }
  span.util-visible-xs {
    display: inline !important; }
  .util-hidden-xs {
    display: none !important; } }

@media screen and (min-width: 32em) {
  .util-visible-sm {
    display: block !important; }
  span.util-visible-sm {
    display: inline !important; }
  .util-hidden-sm {
    display: none !important; } }

@media screen and (min-width: 51.2em) {
  .util-visible-md {
    display: block !important; }
  span.util-visible-md {
    display: inline !important; }
  .util-hidden-md {
    display: none !important; } }

@media screen and (min-width: 66.1333333333em) {
  .util-visible-lg {
    display: block !important; }
  span.util-visible-lg {
    display: inline !important; }
  .util-hidden-lg {
    display: none !important; } }

@media screen and (min-width: 106.666666667em) {
  .util-visible-xl {
    display: block !important; }
  span.util-visible-xl {
    display: inline !important; }
  .util-hidden-xl {
    display: none !important; } }

/* ==========================================================================
   Form Elements
   ========================================================================== */
form .bike input:not([type="checkbox"]):not([type="radio"]),
form .bike select,
form .bike textarea {
  padding: 5px;
  display: block; }

form select option:hover,
form select option:focus,
form select option:active,
form select option:checked {
  background: rgba(8, 8, 68, 0.5);
  color: #080844; }

input,
textarea,
select {
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  border-radius: 4px;
  padding: 12px 15px 10px;
  font-weight: normal;
  border: solid 1px #c4c0bf; }
  input:focus,
  textarea:focus,
  select:focus {
    outline: none; }

select::-ms-expand {
  background: #fff;
  border: none;
  color: #969698; }

label {
  cursor: pointer;
  color: #969698; }
  label.label--dark {
    display: block;
    color: #000; }

::-webkit-input-placeholder {
  color: #999; }

::-moz-placeholder {
  color: #999; }

:-ms-input-placeholder {
  color: #999; }

::-ms-clear {
  display: none; }

.form:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

.form input,
.form textarea {
  -webkit-appearance: none;
  resize: none; }

.form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]),
.form select,
.form textarea {
  font-size: 1rem;
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 12px 15px 10px;
  width: 100%;
  border: solid 1px #c4c0bf; }
  .form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]):hover, .form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"])[readonly],
  .form select:hover,
  .form select[readonly],
  .form textarea:hover,
  .form textarea[readonly] {
    cursor: pointer; }
  .form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"])[disabled],
  .form select[disabled],
  .form textarea[disabled] {
    background-color: #f9f9f9 !important;
    color: #969698;
    cursor: not-allowed; }
  .form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]):focus,
  .form select:focus,
  .form textarea:focus {
    -webkit-box-shadow: 1;
    -moz-box-shadow: 1;
    -o-box-shadow: 1;
    -ms-box-shadow: 1;
    box-shadow: 1;
    outline: none;
    color: #000;
    border-color: #5488ff; }
  .form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]).is-invalid,
  .form select.is-invalid,
  .form textarea.is-invalid {
    border-color: #ff5454; }

.form div:not(.form__field-wrapper) > select {
  width: auto; }
  .form div:not(.form__field-wrapper) > select + select {
    margin-left: 5px; }

.form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]):not(
[type="file"]) {
  height: 45px;
  padding-right: 50px; }


.form textarea {
  min-height: 200px; }


.form select {
  height: 45px;
  line-height: 45px;
  padding: 0 15px;
  color: #999; }
  .form select.form__select-multi {
    height: auto;
    max-height: 100px; }

.form input[type="radio"],
.form input[type="checkbox"] {
  position: absolute;
  left: -9999px; }
  .form input[type="radio"] + label,
  .form input[type="checkbox"] + label {
    position: relative;
    padding: 0 30px;
    display: inline-block;
    cursor: pointer;
    margin: 15px 0; }
    .form input[type="radio"] + label:hover:before,
    .form input[type="radio"] + label .active:before,
    .form input[type="checkbox"] + label:hover:before,
    .form input[type="checkbox"] + label .active:before {
      background: #f9f9f9;
      border-color: #080844; }
    .form input[type="radio"] + label:before, .form input[type="radio"] + label:after,
    .form input[type="checkbox"] + label:before,
    .form input[type="checkbox"] + label:after {
      content: "";
      display: block;
      position: absolute;
      -webkit-transition: all 0.1s ease-out;
      -moz-transition: all 0.1s ease-out;
      -o-transition: all 0.1s ease-out;
      -ms-transition: all 0.1s ease-out;
      transition: all 0.1s ease-out;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      -o-box-sizing: border-box;
      -ms-box-sizing: border-box;
      box-sizing: border-box; }
    .form input[type="radio"] + label:before,
    .form input[type="checkbox"] + label:before {
      width: 24px;
      height: 24px;
      top: -3px;
      left: 0;
      border-radius: 4px;
      border: solid 1px #c4c0bf;
      background: white;
      text-align: center; }
    .form input[type="radio"] + label:after,
    .form input[type="checkbox"] + label:after {
      width: 16px;
      height: 16px;
      top: 1px;
      left: 4px;
      background: #080844;
      -webkit-transform: scale(0);
      -moz-transform: scale(0);
      -o-transform: scale(0);
      -ms-transform: scale(0);
      transform: scale(0); }

.form input[type="radio"] + label:before, .form input[type="radio"] + label:after {
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -ms-border-radius: 100%;
  border-radius: 100%; }

.form input[type="checkbox"]:checked + label:after,
.form input[type="radio"]:checked + label:after {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.form .form__field-wrapper input[type="file"] {
  padding: 9px;
  height: auto;
  padding-top: 40px !important; }

.form .component_entry {
  padding: 15px 30px;
  margin-bottom: 15px; }

.form .add_component,
.form .add_bike {
  text-align: left; }
  .form .add_component:before,
  .form .add_bike:before {
    color: #080844; }
  .form .add_component > span,
  .form .add_bike > span {
    color: #080844;
    float: right; }
  .form .add_component:hover:before,
  .form .add_bike:hover:before {
    color: #fff; }
  .form .add_component:hover > span,
  .form .add_bike:hover > span {
    color: #fff; }

.form .add_component {
  border: 1px dashed #c4c0bf; }


.form .add_bike {
  background: #ecebea;
  border-color: #ecebea; }

.form .input-box-date-picker .util-icon--after {
  position: relative; }
  .form .input-box-date-picker .util-icon--after:after {
    font-size: 1.25rem;
    color: #080844;
    position: absolute;
    top: 50%;
    padding-top: 5px;
    right: 25px;
    z-index: 2;
    pointer-events: none; }

.form__field-wrapper {
  position: relative;
  margin-top: 0;
  margin-bottom: 15px; }
  .form__field-wrapper input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([class="select2-search__field"]),
  .form__field-wrapper textarea {
    margin-top: 30px; }
  .form__field-wrapper.form__default-label input:not([type="checkbox"]):not([type="radio"]):not([class="select2-search__field"]),
  .form__field-wrapper.form__default-label select,
  .form__field-wrapper.form__default-label textarea {
    margin-top: 30px; }
  .form[name="initial_password"] .form__field-wrapper input:not([type="checkbox"]):not([type="radio"]),
  .form[name="initial_password"] .form__field-wrapper select,
  .form[name="initial_password"] .form__field-wrapper textarea {
    margin-top: 0;
    margin-bottom: 15px; }
  .form__field-wrapper select[multiple] {
    min-height: 160px;
    padding: 10px; }
  .form__field-wrapper.is-invalid label {
    color: #ff5454; }
    .form__field-wrapper.is-invalid label:before {
      border: solid 1px #ff5454 !important; }
  .form__field-wrapper.is-invalid input:not([type="checkbox"]):not([type="radio"]),
  .form__field-wrapper.is-invalid select,
  .form__field-wrapper.is-invalid textarea {
    border-color: #ff5454; }
  .form__field-wrapper.is-invalid input[type="checkbox"] + .form__label:before,
  .form__field-wrapper.is-invalid input[type="radio"] + .form__label:before {
    border-color: #ff5454; }
  .form__field-wrapper.is-invalid ul {
    display: block;
    color: #ff5454;
    padding: 0;
    margin-top: 5px; }
    .form__field-wrapper.is-invalid ul li {
      list-style: none;
      text-align: left;
      font-size: 0.75rem; }
  .form__field-wrapper.is-valid .form__label {
    color: #66c383; }
  .form__field-wrapper.is-valid input:not([type="checkbox"]):not([type="radio"]),
  .form__field-wrapper.is-valid select,
  .form__field-wrapper.is-valid textarea {
    border-color: #66c383; }
  .form__field-wrapper.is-valid input[type="checkbox"] + .form__label,
  .form__field-wrapper.is-valid input[type="radio"] + .form__label {
    color: #969698; }
    .form__field-wrapper.is-valid input[type="checkbox"] + .form__label:before,
    .form__field-wrapper.is-valid input[type="radio"] + .form__label:before {
      border-color: #66c383; }
  .row > .form__field-wrapper {
    margin: 0; }

.form__option {
  color: #969698; }

.form__radio-wrapper {
  padding-top: 10px; }
  .form__radio-wrapper > select {
    margin-top: 20px; }

.bike {
  position: relative;
  padding: 15px 0 0; }

.components__item {
  border: 1px dashed #c4c0bf;
  border-radius: 8px;
  margin-bottom: 15px; }

.components .component__headline {
  color: #c4c0bf;
  padding: 15px 50px 0 30px; }
  .components .component__headline a {
    color: #080844; }
    .components .component__headline a:hover {
      text-decoration: none; }

input:not([type="checkbox"]):not([type="radio"]) + label,
select + label,
textarea + label,
.form__field-wrapper > div + label {
  position: absolute;
  top: 5px;
  left: 15px;
  z-index: 3;
  text-align: left;
  pointer-events: none;
  max-width: calc(100% - 50px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

label .is-invalid {
  color: #ff5454; }

input[type="checkbox"] ~ label,
input[type="radio"] ~ label {
  margin-left: 50px;
  bottom: -10px; }

label.label--multi-line {
  display: block;
  margin-top: 30px; }
  label.label--multi-line + input {
    margin-top: 10px !important; }
    label.label--multi-line + input + input {
      margin-top: 10px !important; }

ul .is-invalid {
  color: #ff5454; }

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: rgba(250, 255, 189, 0.2); }

.dp-popup {
  -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  -moz-box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  -o-box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  -ms-box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  position: relative;
  background: #f9f9f9 !important;
  border: 1px solid #080844;
  border-radius: 5px;
  padding: 0 !important;
  width: 60% !important;
  margin: 15px 0;
  line-height: 1.2em; }
  @media screen and (min-width: 51.2em) {
    .dp-popup {
      width: 350px !important; } }
  .dp-popup#dp-popup {
    position: absolute;
    z-index: 100000; }
  .dp-popup a {
    color: #46484b;
    text-decoration: none;
    padding: 3px 2px 0; }
    .dp-popup a.disabled {
      cursor: default;
      color: #969698; }
  .dp-popup div {
    background: #fff;
    padding: 5px 0; }
    .dp-popup div.dp-nav-prev, .dp-popup div.dp-nav-next {
      position: absolute;
      top: 12px;
      padding: 5px; }
      .dp-popup div.dp-nav-prev a, .dp-popup div.dp-nav-next a {
        font-weight: bold;
        color: #46484b; }
        .dp-popup div.dp-nav-prev a.dp-nav-prev-month, .dp-popup div.dp-nav-next a.dp-nav-prev-month {
          margin-left: 15px; }
        .dp-popup div.dp-nav-prev a.dp-nav-next-month, .dp-popup div.dp-nav-next a.dp-nav-next-month {
          margin-right: 15px; }
    .dp-popup div.dp-nav-prev {
      left: 0; }
      .dp-popup div.dp-nav-prev a {
        float: left;
        cursor: pointer; }
    .dp-popup div.dp-nav-next a {
      cursor: pointer; }
    .dp-popup div.dp-nav-prev a.disabled {
      cursor: not-allowed; }
    .dp-popup div.dp-nav-next {
      right: 0; }
      .dp-popup div.dp-nav-next a {
        float: right; }
        .dp-popup div.dp-nav-next a.disabled {
          cursor: not-allowed; }
    .dp-popup div .dp-nav-prev-month,
    .dp-popup div .dp-nav-next-month {
      font-size: 1rem;
      color: #080844; }
    .dp-popup div .dp-nav-next-year,
    .dp-popup div .dp-nav-prev-year {
      display: block;
      color: #080844; }
  .dp-popup td {
    cursor: pointer; }
    .dp-popup td.disabled {
      cursor: default; }
  .dp-popup h2 {
    font-size: 1.125rem;
    text-align: center;
    padding: 30px !important;
    margin: 0;
    overflow: hidden;
    width: 100%; }

.input {
  font-size: 1rem;
  position: relative;
  width: 100%;
  margin: 0;
  border: 1px solid #c4c0bf;
  border-radius: 5px;
  overflow: hidden;
  background: #fff; }
  .input.error {
    padding-right: 30px;
    border: 1px solid #ff5454; }
    .input.error:before {
      font-size: 1.25rem;
      position: absolute;
      top: 10px;
      right: 10px;
      color: #ff5454;
      font-family: iconfont;
      content: ""; }
  .input.success {
    padding-right: 30px; }
    .input.success:before {
      font-size: 1.25rem;
      position: absolute;
      top: 10px;
      right: 10px;
      color: #66c383;
      font-family: iconfont;
      content: ""; }
  .input.js-datepicker {
    overflow: visible; }
  .input--password {
    padding-right: 30px; }
    .input--password.error, .input--password.success {
      padding-right: 70px; }
      .input--password.error .input__button-password, .input--password.success .input__button-password {
        right: 38px; }
  .input textarea.textarea__field,
  .input input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    will-change: padding;
    margin-top: 0; }
    .input textarea.textarea__field[disabled] + .dp-choose-date,
    .input input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[disabled] + .dp-choose-date {
      pointer-events: none;
      cursor: default; }
      .input textarea.textarea__field[disabled] + .dp-choose-date:after,
      .input input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"])[disabled] + .dp-choose-date:after {
        color: #999; }
    .input textarea.textarea__field + label.input__label,
    .input input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) + label.input__label {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      display: block;
      color: #999;
      user-select: none; }
  .input textarea.textarea__field {
    padding: 20px 10px; }
  .input .input__label-placeholder {
    font-size: 1rem;
    position: relative;
    top: 13px;
    left: 10px;
    display: block;
    width: 100%;
    transform-origin: left;
    transition: transform 0.3s, scale 0.3s;
    will-change: transform;
    white-space: nowrap; }
  .input + .tooltip {
    top: 11px !important; }

.element-is-filled input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(
[type="file"]),
.no-js input.input__field:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not(
[type="file"]) {
  padding: 20px 10px 0; }

.element-is-filled input[type="date"].input__field,
.no-js input[type="date"].input__field {
  padding: 0 10px; }
  @media screen and (min-width: 51.2em) {
    .element-is-filled input[type="date"].input__field,
    .no-js input[type="date"].input__field {
      padding: 20px 10px 0; } }

.element-is-filled .input__label-placeholder,
.no-js .input__label-placeholder {
  transform: translateY(-13px) scale(0.7);
  color: #080844; }

.dp-calendar {
  padding: 0 !important; }
  .dp-calendar table.jCalendar {
    border: 0;
    background: #fff !important;
    border-collapse: separate;
    border-spacing: 0;
    padding: 0;
    margin-bottom: 0;
    width: 100%; }
    .dp-calendar table.jCalendar th {
      font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
      font-weight: normal;
      font-style: normal;
      speak: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 0.875rem;
      background: #fff;
      color: #080844;
      font-weight: bold;
      padding: 30px 19px;
      border: 0; }
    .dp-calendar table.jCalendar tr {
      padding: 0; }
    .dp-calendar table.jCalendar td {
      font-size: 0.875rem;
      background: #fff;
      color: #000;
      padding: 8px;
      text-align: center; }
      @media screen and (max-width: 51.1333333333em) {
        .dp-calendar table.jCalendar td {
          display: inline-table; }
          .dp-calendar table.jCalendar td:before {
            display: none; } }
      .dp-calendar table.jCalendar td.other-month {
        background: #fff;
        color: #c4c0bf; }
      .dp-calendar table.jCalendar td.today {
        background: #fff;
        color: #000; }
      .dp-calendar table.jCalendar td.selected {
        background: #080844;
        color: #fff; }
        .dp-calendar table.jCalendar td.selected.dp-hover {
          background: #080844;
          color: #46484b; }
      .dp-calendar table.jCalendar td.dp-hover {
        background: #080844;
        color: #fff; }
      .dp-calendar table.jCalendar td.unselectable {
        background: #bbb;
        color: #888; }
        .dp-calendar table.jCalendar td.unselectable:hover, .dp-calendar table.jCalendar td.unselectable.dp-hover {
          background: #bbb;
          color: #888; }
      .dp-calendar table.jCalendar td.disabled {
        background: #c4c0bf;
        color: #fff;
        cursor: not-allowed; }
    .dp-calendar table.jCalendar tr.activeWeekHover td {
      background: #fff;
      color: #000; }
    .dp-calendar table.jCalendar tr.selectedWeek td {
      background: #969698;
      color: #fff; }
  .dp-calendar a#dp-close {
    font-size: 0.875rem;
    padding: 4px 0;
    text-align: center;
    display: block; }
    .dp-calendar a#dp-close:hover {
      text-decoration: underline; }

.input-date-picker {
  color: #ffffff; }

.form .select2-container .select2-selection--multiple {
  min-height: 40px; }

.form .select2-container .select2-selection--single {
  height: 40px;
  padding: 8px; }
  .form .select2-container .select2-selection--single .select2-selection__arrow {
    height: 40px; }

.form .select2-container--default .select2-selection--multiple .select2-selection__choice {
  margin-top: 8px;
  background-color: #080844;
  border-color: #080844;
  color: #fff; }
  .form .select2-container--default .select2-selection--multiple .select2-selection__choice span {
    color: #fff; }

.form .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  padding: 0 8px; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #080844; }

.select2-container.select2-container--default.select2-container--open {
  z-index: 9999; }

.form--login .form__field-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: calc(100% - 150px); }

/**
 * Capitan navigation.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-09-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Main Navigation
   ========================================================================== */
.nav-main:after {
  display: block;
  content: ".";
  clear: both;
  font-size: 0;
  line-height: 0;
  height: 0;
  overflow: hidden; }

/**
 * Capitan data-box.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-02
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.data-box {
  position: relative;
  padding: 20px 30px 30px 30px;
  border: 1px solid #c4c0bf;
  background: #f9f9f9;
  margin-bottom: 30px; }
  .data-box:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .row .data-box {
    margin-bottom: 15px; }
  .data-box > h1,
  .data-box > h2 {
    text-align: left;
    margin-top: 0; }
    .data-box > h1.util-text-center, .data-box > h1.util-center,
    .data-box > h2.util-text-center,
    .data-box > h2.util-center {
      text-align: center; }
  .data-box h3 {
    margin-top: 0; }
  .data-box > .btn {
    margin-bottom: 0; }
  .data-box > table {
    margin-bottom: 15px;
    table-layout: fixed;
    width: 100%; }
  .container--small .data-box {
    padding: 20px 60px 30px 30px; }

.data-box + .data-box {
  margin-top: 30px; }

.contact-list {
  position: absolute;
  bottom: 0;
  text-align: center;
  color: #c4c0bf;
  line-height: 1.8em; }
  .contact-list > ul {
    display: inline-block;
    text-align: left;
    width: 100%; }
    .contact-list > ul > li {
      width: 100%; }
      .contact-list > ul > li > a.text-link {
        max-width: 100%;
        display: block;
        overflow: hidden;
        white-space: nowrap;
        -ms-text-overflow: ellipsis;
        text-overflow: ellipsis; }

.data-box--center {
  text-align: center;
  margin: 30px auto;
  max-width: 600px; }
  .data-box--center h1,
  .data-box--center h2 {
    text-align: center; }
  .data-box--center form label {
    display: block;
    color: #969698; }
  .data-box--center form button {
    display: block;
    margin: 15px auto; }
  .data-box--center > table {
    display: inline-block;
    margin: 0 auto; }

/**
 * Capitan filter-nav.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-02-28
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.filter-nav {
  display: inline-block; }
  .filter-nav:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .filter-nav ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .filter-nav ul li {
      margin-bottom: 5px;
      padding: 0 10px;
      display: inline-block; }
      .filter-nav ul li.active {
        font-weight: bold; }
      .filter-nav ul li.active, .filter-nav ul li:hover {
        color: #080844;
        cursor: pointer; }
        .filter-nav ul li.active a, .filter-nav ul li:hover a {
          color: #080844; }
          .filter-nav ul li.active a:after, .filter-nav ul li:hover a:after {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            font-weight: normal; }
      .filter-nav ul li a {
        color: #46484b;
        text-decoration: none;
        position: relative;
        padding-left: 30px; }
        .filter-nav ul li a:before, .filter-nav ul li a:after {
          content: "";
          display: block;
          position: absolute;
          border-radius: 23px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          -ms-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
          box-sizing: border-box; }
        .filter-nav ul li a:before {
          width: 23px;
          height: 23px;
          top: -2px;
          left: 0;
          border: solid 1px #c4c0bf;
          background: white;
          text-align: center; }
        .filter-nav ul li a:after {
          width: 17px;
          height: 17px;
          top: 1px;
          left: 3px;
          background: #080844;
          -webkit-transform: scale(0);
          -moz-transform: scale(0);
          -o-transform: scale(0);
          -ms-transform: scale(0);
          transform: scale(0); }
    .filter-nav ul li.multiple a:before, .filter-nav ul li.multiple a:after {
      border-radius: 0; }

.filter__wrapper {
  background: #f9f9f9;
  padding: 20px;
  display: flex; }
  .filter__wrapper > * {
    line-height: 30px; }

.filter__headline {
  margin: 0;
  font-size: 20px; }

/**
 * Capitan buttons.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-09-01
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
/* ==========================================================================
   button mixin
   ========================================================================== */
/*
* create button [create-btn]
*
* desc: button-mixin to create consistent buttons
*
* @param  $btn-height				[px value: 40px] // just needed for the line-height property. Set no fixed height for buttons!
* @param  $btn-block				[boolean: true/false]
* @param  $btn-font-size			[number: 16, 22, 26, etc.]        //just the number, no "px", "em", "rem", etc.
* @param  $btn-font-weight			[number: 100, 200, 300, etc.]
* @param  $btn-letter-spacing		[px value: 5px]
* @param  $btn-text-transform		[string: uppercase, etc.]
*
* @param  $btn-bg-color				[any color]
* @param  $btn-bg-color-hover		[any color]
* @param  $btn-bg-color-active		[any color]
*
* @param  $btn-border-color			[any color]
* @param  $btn-border-color-hover	[any color]
* @param  $btn-border-color-active	[any color]
*
* @param  $btn-font-color			[any color]
* @param  $btn-font-color-hover		[any color]
* @param  $btn-font-color-active	[any color]
*
*
* usage:
*   define all the button properties in the $button-properties map
*   call the button-mixin to create the initial css like this:
*
*   .button-classname {
*     @include create-btn(
*       $btn-bg-color-hover: #f00,
*     );
*   }
*
*
*/
/* vars, maps & placeholder
========================================================================== */
.btn,
input.btn[type="submit"],
button.btn, .btn--secondary,
input.btn--secondary[type="submit"],
button.btn--secondary, .btn--delete,
input.btn--delete[type="submit"],
button.btn--delete, .btn--ghost,
input.btn--ghost[type="submit"],
button.btn--ghost, .btn--special,
input.btn--special[type="submit"],
button.btn--special {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -o-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  font-size: 0.875rem;
  display: inline-block;
  cursor: pointer;
  position: relative;
  border-radius: 20px;
  font-family: "Montserrat", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  padding: 2px 30px 0;
  text-decoration: none;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
  -moz-transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
  -o-transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
  -ms-transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear;
  transition: background-color 0.2s linear, border-color 0.2s linear, color 0.2s linear; }
  .btn:focus,
  input.btn:focus[type="submit"], .btn--secondary:focus,
  input.btn--secondary:focus[type="submit"], .btn--delete:focus,
  input.btn--delete:focus[type="submit"], .btn--ghost:focus,
  input.btn--ghost:focus[type="submit"], .btn--special:focus,
  input.btn--special:focus[type="submit"] {
    outline: none; }
  .btn[disabled],
  input.btn[disabled][type="submit"], .btn--secondary[disabled],
  input.btn--secondary[disabled][type="submit"], .btn--delete[disabled],
  input.btn--delete[disabled][type="submit"], .btn--ghost[disabled],
  input.btn--ghost[disabled][type="submit"], .btn--special[disabled],
  input.btn--special[disabled][type="submit"], .is-disabled.btn,
  input.is-disabled.btn[type="submit"], .is-disabled.btn--secondary,
  input.is-disabled.btn--secondary[type="submit"], .is-disabled.btn--delete,
  input.is-disabled.btn--delete[type="submit"], .is-disabled.btn--ghost,
  input.is-disabled.btn--ghost[type="submit"], .is-disabled.btn--special,
  input.is-disabled.btn--special[type="submit"] {
    cursor: not-allowed;
    opacity: 0.5; }
  @media print {
    .btn,
    input.btn[type="submit"],
    button.btn, .btn--secondary,
    input.btn--secondary[type="submit"],
    button.btn--secondary, .btn--delete,
    input.btn--delete[type="submit"],
    button.btn--delete, .btn--ghost,
    input.btn--ghost[type="submit"],
    button.btn--ghost, .btn--special,
    input.btn--special[type="submit"],
    button.btn--special {
      display: none !important; } }

/* mixin: create-btn
========================================================================== */
/* ==========================================================================
   Buttons
   ========================================================================== */
.btn,
input.btn[type="submit"],
button.btn {
  font-size: 0.875rem;
  border: solid 1px #080844;
  background: #080844;
  background-color: #080844;
  background-image: none;
  color: #fff;
  line-height: 2.2142857143;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  margin: 0 0 1rem; }
  .btn:hover,
  input.btn:hover[type="submit"] {
    background: #fff;
    background-color: #fff;
    border-color: #080844;
    color: #080844;
    text-decoration: none; }
  .btn:active,
  input.btn:active[type="submit"] {
    background: #fff;
    background-color: #fff;
    border-color: #fff;
    color: #fff; }
  .btn[disabled],
  input.btn[disabled][type="submit"], .is-disabled.btn,
  input.is-disabled.btn[type="submit"] {
    pointer-events: none; }
    .btn[disabled]:hover, .btn[disabled]:active, .is-disabled.btn:hover, .is-disabled.btn:active {
      background: #080844;
      background-color: #080844;
      border-color: #080844;
      color: #fff; }
  .util-icon--before.btn:before, .util-icon--after.btn:after {
    font-size: 1.3rem;
    vertical-align: sub;
    padding-left: 5px; }

.btn--secondary,
input[type="submit"].btn--secondary,
button.btn--secondary {
  font-size: 0.875rem;
  border: solid 1px #c4c0bf;
  background: #c4c0bf;
  background-color: #c4c0bf;
  background-image: none;
  color: #fff;
  line-height: 2.2142857143;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  margin: 0 0 1rem; }
  .btn--secondary:hover,
  input[type="submit"].btn--secondary:hover,
  button.btn--secondary:hover {
    background: #fff;
    background-color: #fff;
    border-color: #c4c0bf;
    color: #c4c0bf;
    text-decoration: none; }
  .btn--secondary:active,
  input[type="submit"].btn--secondary:active,
  button.btn--secondary:active {
    background: #969698;
    background-color: #969698;
    border-color: #c4c0bf;
    color: #fff; }
  .btn--secondary[disabled], .btn--secondary.is-disabled,
  input[type="submit"].btn--secondary[disabled],
  input[type="submit"].btn--secondary.is-disabled,
  button.btn--secondary[disabled],
  button.btn--secondary.is-disabled {
    pointer-events: none; }
    .btn--secondary[disabled]:hover, .btn--secondary[disabled]:active, .btn--secondary.is-disabled:hover, .btn--secondary.is-disabled:active,
    input[type="submit"].btn--secondary[disabled]:hover,
    input[type="submit"].btn--secondary[disabled]:active,
    input[type="submit"].btn--secondary.is-disabled:hover,
    input[type="submit"].btn--secondary.is-disabled:active,
    button.btn--secondary[disabled]:hover,
    button.btn--secondary[disabled]:active,
    button.btn--secondary.is-disabled:hover,
    button.btn--secondary.is-disabled:active {
      background: #c4c0bf;
      background-color: #c4c0bf;
      border-color: #c4c0bf;
      color: #fff; }

.btn--delete,
input[type="submit"].btn--delete,
button.btn--delete {
  font-size: 0.875rem;
  border: solid 1px #ff5454;
  background: #ff5454;
  background-color: #ff5454;
  background-image: none;
  color: #fff;
  line-height: 2.2142857143;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  margin: 0 0 1rem; }
  .btn--delete:hover,
  input[type="submit"].btn--delete:hover,
  button.btn--delete:hover {
    background: #fff;
    background-color: #fff;
    border-color: #ff5454;
    color: #ff5454;
    text-decoration: none; }
  .btn--delete:active,
  input[type="submit"].btn--delete:active,
  button.btn--delete:active {
    background: #fff;
    background-color: #fff;
    border-color: #ff5454;
    color: #fff; }
  .btn--delete[disabled], .btn--delete.is-disabled,
  input[type="submit"].btn--delete[disabled],
  input[type="submit"].btn--delete.is-disabled,
  button.btn--delete[disabled],
  button.btn--delete.is-disabled {
    pointer-events: none; }
    .btn--delete[disabled]:hover, .btn--delete[disabled]:active, .btn--delete.is-disabled:hover, .btn--delete.is-disabled:active,
    input[type="submit"].btn--delete[disabled]:hover,
    input[type="submit"].btn--delete[disabled]:active,
    input[type="submit"].btn--delete.is-disabled:hover,
    input[type="submit"].btn--delete.is-disabled:active,
    button.btn--delete[disabled]:hover,
    button.btn--delete[disabled]:active,
    button.btn--delete.is-disabled:hover,
    button.btn--delete.is-disabled:active {
      background: #ff5454;
      background-color: #ff5454;
      border-color: #ff5454;
      color: #fff; }

.btn--ghost,
input[type="submit"].btn--ghost,
button.btn--ghost {
  font-size: 0.875rem;
  border: solid 1px #fff;
  background: none;
  background-color: none;
  background-image: none;
  color: #080844;
  line-height: 2.2142857143;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  margin: 0 0 1rem; }
  .btn--ghost:hover,
  input[type="submit"].btn--ghost:hover,
  button.btn--ghost:hover {
    background: none;
    background-color: none;
    color: #080844;
    text-decoration: none; }
  .btn--ghost:active,
  input[type="submit"].btn--ghost:active,
  button.btn--ghost:active {
    background: none;
    background-color: none;
    color: #080844; }
  .btn--ghost[disabled], .btn--ghost.is-disabled,
  input[type="submit"].btn--ghost[disabled],
  input[type="submit"].btn--ghost.is-disabled,
  button.btn--ghost[disabled],
  button.btn--ghost.is-disabled {
    pointer-events: none; }
    .btn--ghost[disabled]:hover, .btn--ghost[disabled]:active, .btn--ghost.is-disabled:hover, .btn--ghost.is-disabled:active,
    input[type="submit"].btn--ghost[disabled]:hover,
    input[type="submit"].btn--ghost[disabled]:active,
    input[type="submit"].btn--ghost.is-disabled:hover,
    input[type="submit"].btn--ghost.is-disabled:active,
    button.btn--ghost[disabled]:hover,
    button.btn--ghost[disabled]:active,
    button.btn--ghost.is-disabled:hover,
    button.btn--ghost.is-disabled:active {
      background: none;
      background-color: none;
      border-color: #fff;
      color: #080844; }

.btn--state {
  background: none;
  color: #969698;
  position: relative;
  border: none;
  padding-left: 60px;
  vertical-align: middle; }
  .btn--state:before, .btn--state:after {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    top: 10px;
    width: 50px;
    height: 20px;
    border-radius: 10px;
    border: 1px solid #969698;
    background: #fff; }
  .btn--state:after {
    width: 18px;
    height: 18px;
    left: 2px;
    top: 12px;
    border: none; }

.btn--active:after {
  background: #66c383; }

.btn--inactive:after {
  background: #ff5454;
  left: 32px; }

.btn--special,
input[type="submit"].btn--special,
button.btn--special {
  font-size: 0.875rem;
  border: solid 1px #999;
  background: none;
  background-color: none;
  background-image: none;
  color: #000;
  line-height: 2.2142857143;
  font-weight: 100;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  margin: 0 0 1rem;
  display: block;
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 8px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  padding: 0 45px 0 15px; }
  .btn--special:hover,
  input[type="submit"].btn--special:hover,
  button.btn--special:hover {
    background: none;
    background-color: none;
    color: #fff;
    text-decoration: none; }
  .btn--special:active,
  input[type="submit"].btn--special:active,
  button.btn--special:active {
    background: none;
    background-color: none;
    color: #000; }
  .btn--special[disabled], .btn--special.is-disabled,
  input[type="submit"].btn--special[disabled],
  input[type="submit"].btn--special.is-disabled,
  button.btn--special[disabled],
  button.btn--special.is-disabled {
    pointer-events: none; }
    .btn--special[disabled]:hover, .btn--special[disabled]:active, .btn--special.is-disabled:hover, .btn--special.is-disabled:active,
    input[type="submit"].btn--special[disabled]:hover,
    input[type="submit"].btn--special[disabled]:active,
    input[type="submit"].btn--special.is-disabled:hover,
    input[type="submit"].btn--special.is-disabled:active,
    button.btn--special[disabled]:hover,
    button.btn--special[disabled]:active,
    button.btn--special.is-disabled:hover,
    button.btn--special.is-disabled:active {
      background: none;
      background-color: none;
      border-color: #999;
      color: #000; }
  .btn--special:after,
  input[type="submit"].btn--special:after,
  button.btn--special:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition: 300ms ease-out;
    transition: 300ms ease-out;
    background: #080844;
    border-radius: 8px; }
  .btn--special:hover:after,
  input[type="submit"].btn--special:hover:after,
  button.btn--special:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1); }
  .btn--special.util-icon--before:before,
  input[type="submit"].btn--special.util-icon--before:before,
  button.btn--special.util-icon--before:before {
    padding-right: 5px; }
  .btn--special > span,
  input[type="submit"].btn--special > span,
  button.btn--special > span {
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -11px; }

.btn--search,
input[type="submit"].btn--search,
button.btn--search {
  border-radius: 5px;
  margin: 0;
  width: 90%;
  padding: 4px; }

.btn--block {
  width: 100%; }

button.text-link {
  color: #080844;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  display: block; }
  button.text-link:hover {
    text-decoration: underline; }
  button.text-link:focus {
    outline: none; }
  button.text-link[disabled] {
    color: #c4c0bf; }
    button.text-link[disabled]:hover {
      text-decoration: none; }

/* ==========================================================================
   Button-group (btn-group)
   ========================================================================== */
.btn-group, .btn-group--centered, .btn-group--right, .btn-group--inline {
  margin: 1rem 0;
  padding: 0;
  list-style: none; }
  .btn-group:after, .btn-group--centered:after, .btn-group--right:after, .btn-group--inline:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .btn-group a, .btn-group--centered a, .btn-group--right a, .btn-group--inline a,
  .btn-group button,
  .btn-group--centered button,
  .btn-group--right button,
  .btn-group--inline button,
  .btn-group li,
  .btn-group--centered li,
  .btn-group--right li,
  .btn-group--inline li {
    margin: 0 0 1rem; }
    .btn-group a:last-child, .btn-group--centered a:last-child, .btn-group--right a:last-child, .btn-group--inline a:last-child,
    .btn-group button:last-child,
    .btn-group--centered button:last-child,
    .btn-group--right button:last-child,
    .btn-group--inline button:last-child,
    .btn-group li:last-child,
    .btn-group--centered li:last-child,
    .btn-group--right li:last-child,
    .btn-group--inline li:last-child {
      margin-bottom: 0; }
    .btn-group a.btn--loading:last-child, .btn-group--centered a.btn--loading:last-child, .btn-group--right a.btn--loading:last-child, .btn-group--inline a.btn--loading:last-child,
    .btn-group button.btn--loading:last-child,
    .btn-group--centered button.btn--loading:last-child,
    .btn-group--right button.btn--loading:last-child,
    .btn-group--inline button.btn--loading:last-child,
    .btn-group li.btn--loading:last-child,
    .btn-group--centered li.btn--loading:last-child,
    .btn-group--right li.btn--loading:last-child,
    .btn-group--inline li.btn--loading:last-child {
      margin: 0 0 1rem; }
  
  .btn-group li,
  .btn-group--centered li,
  .btn-group--right li,
  .btn-group--inline li {
    display: block;
    text-align: center; }
    @media screen and (min-width: 66.1333333333em) {
      
      .btn-group li,
      .btn-group--centered li,
      .btn-group--right li,
      .btn-group--inline li {
        text-align: inherit; } }
  .btn-group:first-child, .btn-group--centered:first-child, .btn-group--right:first-child, .btn-group--inline:first-child {
    margin-top: 0; }
  .btn-group:last-child, .btn-group--centered:last-child, .btn-group--right:last-child, .btn-group--inline:last-child {
    margin-bottom: 0; }

.btn-group--centered {
  text-align: center; }

.btn-group--right {
  text-align: right; }

.btn-group--bottom {
  position: absolute;
  bottom: 0;
  width: 90%;
  margin-bottom: 0; }

.btn-group--inline li {
  display: inline-block;
  word-spacing: normal; }

.btn-group--inline .text-link {
  line-height: 2.5; }

.btn-group--error-msg {
  position: relative;
  padding-top: 30px; }
  .btn-group--error-msg > .error-msg {
    display: none;
    color: #ff5454;
    position: absolute;
    top: -20px; }

.workflows * {
  display: inline-block; }

.component_close {
  line-height: 2.2;
  padding: 2px 30px 0;
  margin-bottom: 15px; }

.btn--loading {
  position: relative; }
  .btn--loading + .btn-loading__wrapper {
    display: inline-block;
    position: relative;
    z-index: 3;
    width: 40px; }
    .btn--loading + .btn-loading__wrapper--util-left {
      top: 8px; }
    .btn--loading + .btn-loading__wrapper--util-right {
      float: right;
      top: 23px; }
    .btn--loading + .btn-loading__wrapper--group {
      width: auto; }
      .btn--loading + .btn-loading__wrapper--group .js--overlay {
        position: relative;
        left: -50px; }
    .btn--loading + .btn-loading__wrapper .js--overlay .js--loader {
      display: inline-block;
      border: 5px solid #c4c0bf;
      /* Light grey */
      border-top: 5px solid #080844;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      animation: spin 2s linear infinite;
      position: absolute;
      top: -20px;
      left: 5px; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .btn--loading.text-link + .btn-loading__wrapper {
    width: 30px; }
    .btn--loading.text-link + .btn-loading__wrapper .js--overlay .js--loader {
      width: 20px;
      height: 20px; }

/**
 * Capitan tooltip.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-01
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.tooltip {
  position: relative;
  display: inline-block;
  vertical-align: text-top; }
  .tooltip .tooltip__trigger {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #080844; }
    .tooltip .tooltip__trigger.util-icon--only {
      line-height: 0; }
    .tooltip .tooltip__trigger:after {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      transform: rotate(0deg);
      -webkit-transition: transform 0.1s;
      -moz-transition: transform 0.1s;
      -o-transition: transform 0.1s;
      -ms-transition: transform 0.1s;
      transition: transform 0.1s; }
    .tooltip .tooltip__trigger:hover {
      color: rgba(8, 8, 68, 0.5); }
  .is--visible.tooltip .tooltip__trigger:before {
    color: #969698; }
  .is--visible.tooltip .tooltip__trigger:after {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg); }
  .tooltip .tooltip__flyout {
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -o-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale3d(0.2, 0.2, 1);
    background: #f9f9f9;
    border: 1px solid #969698;
    border-left: 6px solid #080844;
    visibility: hidden;
    bottom: 50px;
    left: -50%;
    margin-left: -150px;
    width: 300px;
    opacity: 0;
    position: absolute;
    padding: 30px;
    text-align: left;
    z-index: 100; }
    .tooltip .tooltip__flyout:before, .tooltip .tooltip__flyout:after {
      content: '';
      border-style: solid;
      border-width: 12px 20px 0 20px;
      display: block;
      left: 50%;
      width: 0;
      height: 0;
      border-color: #f9f9f9 transparent;
      position: absolute;
      bottom: -11px; }
    .tooltip .tooltip__flyout:before {
      border-color: #969698 transparent;
      bottom: -12px; }
    .tooltip .tooltip__flyout.is--visible {
      display: block;
      opacity: 1;
      visibility: visible;
      transform: scale3d(1, 1, 1); }
    .tooltip .tooltip__flyout ul {
      margin: 0;
      padding: 0; }
      .tooltip .tooltip__flyout ul li {
        font-size: 0.875rem;
        list-style-type: disc;
        margin: 0 0 0 30px; }
    .tooltip .tooltip__flyout.flyout--left {
      right: -10px;
      left: auto; }
      .tooltip .tooltip__flyout.flyout--left:after, .tooltip .tooltip__flyout.flyout--left:before {
        right: 10px;
        left: auto; }

.fancybox-inner .form__field-wrapper .tooltip {
  z-index: 8888; }

.form__field-wrapper .tooltip {
  position: absolute;
  top: 37px;
  right: -11px;
  z-index: 8888; }

.form__field-wrapper .tooltip--inner {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 8888; }

.form__field-wrapper .tooltip--inner {
  position: absolute;
  top: 10px;
  right: 25px;
  z-index: 8888; }

.tooltip--bottom .tooltip__flyout {
  text-align: center;
  background: #fff;
  border-left: 1px solid #969698;
  top: 55px;
  left: -230px;
  margin-left: 0;
  bottom: auto; }
  .tooltip--bottom .tooltip__flyout:before, .tooltip--bottom .tooltip__flyout:after {
    content: '';
    border-width: 0 20px 12px 20px;
    right: 30px;
    left: auto;
    margin-left: -10px;
    border-color: #fff transparent;
    top: -11px;
    bottom: auto; }
  .tooltip--bottom .tooltip__flyout:before {
    border-color: #969698 transparent;
    top: -12px;
    bottom: auto; }
  .tooltip--bottom .tooltip__flyout.flyout--left:after, .tooltip--bottom .tooltip__flyout.flyout--left:before {
    right: 20px;
    left: auto; }

.tooltip--dropdown .tooltip__trigger {
  padding: 15px;
  border: 1px solid #969698;
  background: #fff;
  position: relative;
  z-index: 2; }

.tooltip--dropdown.is--visible .tooltip__trigger {
  border-bottom: 1px solid transparent; }

.tooltip--dropdown.is--visible .tooltip__flyout {
  max-height: 9999px; }

.tooltip--dropdown .tooltip__flyout {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-align: left;
  background: #fff;
  border-left: 1px solid #969698;
  top: 52px;
  left: 0;
  margin-left: 0;
  bottom: auto;
  z-index: 1;
  width: auto;
  max-height: 0;
  transform: none; }
  .tooltip--dropdown .tooltip__flyout:before, .tooltip--dropdown .tooltip__flyout:after {
    display: none; }

.tooltip--button {
  vertical-align: inherit; }
  .tooltip--button .tooltip__trigger {
    color: #fff; }
  .tooltip--button .tooltip__flyout {
    left: 0;
    margin-left: 0; }
    .tooltip--button .tooltip__flyout:before, .tooltip--button .tooltip__flyout:after {
      left: 70px; }

.tooltip--addition .tooltip__flyout {
  width: auto;
  right: -20px;
  left: auto;
  position: absolute; }

.tooltip--hover:hover .tooltip__flyout {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: scale3d(1, 1, 1); }

/**
 * Capitan state.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-09
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.state {
  position: static; }

span[class^="DC"] {
  position: relative;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  text-align: left;
  font-weight: bold;
  padding-left: 18px; }
  span[class^="DC"]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 10px; }
  span[class^="DC"].DCactive, span[class^="DC"].DCcreated, span[class^="DC"].DCbike_pool, span[class^="DC"].DCassigned, span[class^="DC"].DCcompany_approved {
    color: #66c383; }
    span[class^="DC"].DCactive:before, span[class^="DC"].DCcreated:before, span[class^="DC"].DCbike_pool:before, span[class^="DC"].DCassigned:before, span[class^="DC"].DCcompany_approved:before {
      background-color: #66c383; }
  span[class^="DC"].DCbalance_rejected {
    color: rgba(255, 153, 0, 0.17); }
    span[class^="DC"].DCbalance_rejected:before {
      background-color: rgba(255, 153, 0, 0.17); }
  span[class^="DC"].DCdisabled, span[class^="DC"].DCoptin_pending, span[class^="DC"].DCunconfirmed, span[class^="DC"].DCfinished, span[class^="DC"].DCexpired, span[class^="DC"].DCcanceled, span[class^="DC"].DCresolution, span[class^="DC"].DCprivacy_pending {
    color: #969698; }
    span[class^="DC"].DCdisabled:before, span[class^="DC"].DCoptin_pending:before, span[class^="DC"].DCunconfirmed:before, span[class^="DC"].DCfinished:before, span[class^="DC"].DCexpired:before, span[class^="DC"].DCcanceled:before, span[class^="DC"].DCresolution:before, span[class^="DC"].DCprivacy_pending:before {
      background-color: #969698; }
  span[class^="DC"].DCawaiting_upload, span[class^="DC"].DCawaiting_signature, span[class^="DC"].DCdeleted, span[class^="DC"].DCdismissed, span[class^="DC"].DCresolution_request {
    color: #ff5454; }
    span[class^="DC"].DCawaiting_upload:before, span[class^="DC"].DCawaiting_signature:before, span[class^="DC"].DCdeleted:before, span[class^="DC"].DCdismissed:before, span[class^="DC"].DCresolution_request:before {
      background-color: #ff5454; }
  span[class^="DC"].DCrejected, span[class^="DC"].DCrequested, span[class^="DC"].DCordered, span[class^="DC"].DCimported, span[class^="DC"].DCcompany_rejected, span[class^="DC"].DCcontract_pool, span[class^="DC"].DCdraft, span[class^="DC"].DCrelease, span[class^="DC"].DCchecking, span[class^="DC"].DCin_delivery {
    color: #5488ff; }
    span[class^="DC"].DCrejected:before, span[class^="DC"].DCrequested:before, span[class^="DC"].DCordered:before, span[class^="DC"].DCimported:before, span[class^="DC"].DCcompany_rejected:before, span[class^="DC"].DCcontract_pool:before, span[class^="DC"].DCdraft:before, span[class^="DC"].DCrelease:before, span[class^="DC"].DCchecking:before, span[class^="DC"].DCin_delivery:before {
      background-color: #5488ff; }

/**
 * Capitan data-table.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-01-30
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.data-table {
  position: relative;
  background: #fff;
  /* ------------------------------ additions ------------------------------ */
  /* state markers */
  /* move search boxes to top */
  /* icons */
  /* wrapper */
  /* link */ }
  .data-table:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .data-table tfoot,
  .data-table .dataTable_foot {
    display: table-header-group; }
  .data-table .util-icon--check {
    color: green; }
  .data-table .util-icon--close {
    color: red; }
  .data-table span[class^="DC"] {
    display: block; }
  .data-table .searchInput {
    background: #fff url("/img/search.png") no-repeat 95% 50%;
    padding-right: 40px;
    width: 100%; }
  .data-table .searchSelect:required:invalid {
    color: #969698; }
  .data-table .searchSelect option[value=""][disabled] {
    display: none; }
  .data-table .searchSelect option {
    color: #000; }
  .data-table .dataTables_wrapper {
    text-align: right; }
    .data-table .dataTables_wrapper .js--overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      bottom: 0;
      right: 0;
      text-align: center;
      padding: 30px;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.8); }
      .data-table .dataTables_wrapper .js--overlay span {
        font-size: 1.375rem;
        margin: 15px auto;
        color: #969698; }
    .data-table .dataTables_wrapper .js--loader {
      display: block;
      margin: 0 auto;
      border: 16px solid #c4c0bf;
      /* Light grey */
      border-top: 16px solid #080844;
      border-radius: 50%;
      width: 100px;
      height: 100px;
      animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }
  .data-table .dataTables_filter {
    padding: 0 30px; }
    .data-table .dataTables_filter a.dataGridSearchReset {
      cursor: pointer;
      color: #080844; }
  .data-table .sorting,
  .data-table .sorting_disabled,
  .data-table .sorting_asc,
  .data-table .sorting_desc {
    color: #c4c0bf;
    cursor: pointer; }
  
  .data-table .sorting_disabled {
    cursor: not-allowed; }
  .data-table thead th,
  .data-table tfoot th {
    padding: 15px 10px;
    text-align: left; }
  .data-table thead {
    border-top: 1px solid #c4c0bf; }
  .data-table tbody tr {
    border-bottom: 1px solid #ecebea; }
    .data-table tbody tr:hover {
      background: #ecebea;
      cursor: pointer; }
    .data-table tbody tr:last-child {
      border-bottom: none; }
  .data-table tbody td {
    padding: 15px 10px; }
  .data-table tbody .odd {
    background: #f9f9f9; }
    .data-table tbody .odd:hover {
      background: #ecebea; }
  .data-table tfoot {
    background: #f9f9f9; }
  .data-table .text-link {
    white-space: nowrap; }

.dataTables_scrollHead {
  margin-top: 30px; }

.dataTables_scrollHead .data-table__sorting {
  position: relative;
  padding-left: 30px; }
  .dataTables_scrollHead .data-table__sorting:after {
    content: "";
    font-family: 'iconfont', sans-serif;
    left: 10px;
    position: absolute; }
  .dataTables_scrollHead .data-table__sorting.sorting_asc:after {
    color: #080844; }
  .dataTables_scrollHead .data-table__sorting.sorting_desc:after {
    color: #080844;
    content: ""; }

.data-table__hint {
  background: #ff5454;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 15px; }
  .data-table__hint span {
    color: #fff; }
    .data-table__hint span:before {
      font-size: 1.5rem;
      vertical-align: bottom;
      margin-right: 15px; }
    .data-table__hint span a {
      color: #fff; }

.dataTables_paginate a {
  color: #969698;
  padding: 5px;
  font-size: 16px; }
  .dataTables_paginate a.current {
    color: #080844; }
  .dataTables_paginate a:hover {
    cursor: pointer;
    font-weight: bold;
    text-decoration: none; }

.dataTables_scroll {
  text-align: left;
  border-bottom: 1px solid #ecebea; }

.dataTables_paginate, .dataTables_info, .dataTables_length, .dataTables_filter {
  display: inline-block;
  color: #969698;
  padding: 10px; }

.dataTables_length select {
  padding: 5px 10px; }

/**
 * Capitan tabs.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-02-22
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.tabs {
  background: #fff;
  padding-top: 60px;
  margin-bottom: 30px; }
  .tabs:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .tabs ul {
    list-style: none;
    padding-left: 30px;
    margin: 0;
    border-bottom: 1px solid #c4c0bf; }
    .tabs ul li {
      display: inline-block;
      margin-bottom: -1px; }
      .tabs ul li a {
        padding: 15px 60px;
        color: #c4c0bf;
        display: block;
        text-decoration: none;
        text-align: center;
        background: #f9f9f9;
        border: 1px solid #c4c0bf;
        border-bottom: none;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px; }
        .tabs ul li a.active {
          color: #080844;
          background: #fff;
          border-bottom: 1px solid #fff; }
        .tabs ul li a:hover {
          background: #fff; }

/**
 * Capitan table.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-15
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.table {
  margin-bottom: 40px;
  width: 100%; }
  .table:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .table th {
    text-align: left;
    border-bottom: 1px solid #969698; }
  .table tr {
    background: #ecebea; }
    .table tr:nth-child(2n) {
      background: none; }
    .table tr td {
      line-height: 1.6em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      padding: 5px 15px;
      vertical-align: top;
      color: #969698; }
      .table tr td:first-child {
        width: 45%;
        font-weight: bold;
        color: #46484b; }
        .container--small .table tr td:first-child {
          width: 55%; }
      .table tr td > p > a {
        color: #080844;
        text-decoration: underline; }
        .table tr td > p > a:hover {
          text-decoration: none; }

.table-wrapper {
  max-width: 100%;
  overflow-x: auto; }

.table__mail {
  word-break: break-all; }

.table--import {
  margin: 20px auto;
  border-top: 2px solid #ecebea; }
  .table--import tr {
    background: white; }
    .table--import tr td,
    .table--import tr th {
      padding: 10px; }
    .table--import tr td:first-child {
      width: auto; }
    .table--import tr th {
      padding: 15px 10px 15px 10px;
      font-weight: 800;
      color: #c4c0bf;
      border-width: 3px; }
    .table--import tr.even {
      background: #f9f9f9; }
  .table--import tbody tr {
    border-bottom: 1px solid #ecebea; }

.table--info {
  width: 100%; }
  .table--infotable,
  .table--info th,
  .table--info td {
    border: 1px solid black; }
  .table--info tr th,
  .table--info tr td {
    padding: 5px;
    vertical-align: middle; }
  .table--info tr td {
    text-align: center; }
    .table--info tr td:first-child {
      font-weight: normal;
      text-align: left; }

.table--editor tr td {
  text-align: left; }
  .table--editor tr td > p {
    margin: 0; }

.table-register--step2 tr td {
  line-height: 1.3em;
  padding-bottom: 10px; }

.table--acquisition thead th {
  padding: 5px 15px; }

/**
 * Capitan filter-nav.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-02-28
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.filter-nav {
  display: inline-block; }
  .filter-nav:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .filter-nav ul {
    margin: 0;
    padding: 0;
    list-style: none; }
    .filter-nav ul li {
      margin-bottom: 5px;
      padding: 0 10px;
      display: inline-block; }
      .filter-nav ul li.active {
        font-weight: bold; }
      .filter-nav ul li.active, .filter-nav ul li:hover {
        color: #080844;
        cursor: pointer; }
        .filter-nav ul li.active a, .filter-nav ul li:hover a {
          color: #080844; }
          .filter-nav ul li.active a:after, .filter-nav ul li:hover a:after {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -o-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            font-weight: normal; }
      .filter-nav ul li a {
        color: #46484b;
        text-decoration: none;
        position: relative;
        padding-left: 30px; }
        .filter-nav ul li a:before, .filter-nav ul li a:after {
          content: "";
          display: block;
          position: absolute;
          border-radius: 23px;
          -webkit-transition: all 0.1s ease-out;
          -moz-transition: all 0.1s ease-out;
          -o-transition: all 0.1s ease-out;
          -ms-transition: all 0.1s ease-out;
          transition: all 0.1s ease-out;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -o-box-sizing: border-box;
          -ms-box-sizing: border-box;
          box-sizing: border-box; }
        .filter-nav ul li a:before {
          width: 23px;
          height: 23px;
          top: -2px;
          left: 0;
          border: solid 1px #c4c0bf;
          background: white;
          text-align: center; }
        .filter-nav ul li a:after {
          width: 17px;
          height: 17px;
          top: 1px;
          left: 3px;
          background: #080844;
          -webkit-transform: scale(0);
          -moz-transform: scale(0);
          -o-transform: scale(0);
          -ms-transform: scale(0);
          transform: scale(0); }
    .filter-nav ul li.multiple a:before, .filter-nav ul li.multiple a:after {
      border-radius: 0; }

.filter__wrapper {
  background: #f9f9f9;
  padding: 20px;
  display: flex; }
  .filter__wrapper > * {
    line-height: 30px; }

.filter__headline {
  margin: 0;
  font-size: 20px; }

/**
 * Capitan state.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-09
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.state {
  position: static; }

span[class^="DC"] {
  position: relative;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  text-align: left;
  font-weight: bold;
  padding-left: 18px; }
  span[class^="DC"]:before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 10px; }
  span[class^="DC"].DCactive, span[class^="DC"].DCcreated, span[class^="DC"].DCbike_pool, span[class^="DC"].DCassigned, span[class^="DC"].DCcompany_approved {
    color: #66c383; }
    span[class^="DC"].DCactive:before, span[class^="DC"].DCcreated:before, span[class^="DC"].DCbike_pool:before, span[class^="DC"].DCassigned:before, span[class^="DC"].DCcompany_approved:before {
      background-color: #66c383; }
  span[class^="DC"].DCbalance_rejected {
    color: rgba(255, 153, 0, 0.17); }
    span[class^="DC"].DCbalance_rejected:before {
      background-color: rgba(255, 153, 0, 0.17); }
  span[class^="DC"].DCdisabled, span[class^="DC"].DCoptin_pending, span[class^="DC"].DCunconfirmed, span[class^="DC"].DCfinished, span[class^="DC"].DCexpired, span[class^="DC"].DCcanceled, span[class^="DC"].DCresolution, span[class^="DC"].DCprivacy_pending {
    color: #969698; }
    span[class^="DC"].DCdisabled:before, span[class^="DC"].DCoptin_pending:before, span[class^="DC"].DCunconfirmed:before, span[class^="DC"].DCfinished:before, span[class^="DC"].DCexpired:before, span[class^="DC"].DCcanceled:before, span[class^="DC"].DCresolution:before, span[class^="DC"].DCprivacy_pending:before {
      background-color: #969698; }
  span[class^="DC"].DCawaiting_upload, span[class^="DC"].DCawaiting_signature, span[class^="DC"].DCdeleted, span[class^="DC"].DCdismissed, span[class^="DC"].DCresolution_request {
    color: #ff5454; }
    span[class^="DC"].DCawaiting_upload:before, span[class^="DC"].DCawaiting_signature:before, span[class^="DC"].DCdeleted:before, span[class^="DC"].DCdismissed:before, span[class^="DC"].DCresolution_request:before {
      background-color: #ff5454; }
  span[class^="DC"].DCrejected, span[class^="DC"].DCrequested, span[class^="DC"].DCordered, span[class^="DC"].DCimported, span[class^="DC"].DCcompany_rejected, span[class^="DC"].DCcontract_pool, span[class^="DC"].DCdraft, span[class^="DC"].DCrelease, span[class^="DC"].DCchecking, span[class^="DC"].DCin_delivery {
    color: #5488ff; }
    span[class^="DC"].DCrejected:before, span[class^="DC"].DCrequested:before, span[class^="DC"].DCordered:before, span[class^="DC"].DCimported:before, span[class^="DC"].DCcompany_rejected:before, span[class^="DC"].DCcontract_pool:before, span[class^="DC"].DCdraft:before, span[class^="DC"].DCrelease:before, span[class^="DC"].DCchecking:before, span[class^="DC"].DCin_delivery:before {
      background-color: #5488ff; }

/**
 * Capitan table.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-15
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.table {
  margin-bottom: 40px;
  width: 100%; }
  .table:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .table th {
    text-align: left;
    border-bottom: 1px solid #969698; }
  .table tr {
    background: #ecebea; }
    .table tr:nth-child(2n) {
      background: none; }
    .table tr td {
      line-height: 1.6em;
      word-wrap: break-word;
      overflow-wrap: break-word;
      padding: 5px 15px;
      vertical-align: top;
      color: #969698; }
      .table tr td:first-child {
        width: 45%;
        font-weight: bold;
        color: #46484b; }
        .container--small .table tr td:first-child {
          width: 55%; }
      .table tr td > p > a {
        color: #080844;
        text-decoration: underline; }
        .table tr td > p > a:hover {
          text-decoration: none; }

.table-wrapper {
  max-width: 100%;
  overflow-x: auto; }

.table__mail {
  word-break: break-all; }

.table--import {
  margin: 20px auto;
  border-top: 2px solid #ecebea; }
  .table--import tr {
    background: white; }
    .table--import tr td,
    .table--import tr th {
      padding: 10px; }
    .table--import tr td:first-child {
      width: auto; }
    .table--import tr th {
      padding: 15px 10px 15px 10px;
      font-weight: 800;
      color: #c4c0bf;
      border-width: 3px; }
    .table--import tr.even {
      background: #f9f9f9; }
  .table--import tbody tr {
    border-bottom: 1px solid #ecebea; }

.table--info {
  width: 100%; }
  .table--infotable,
  .table--info th,
  .table--info td {
    border: 1px solid black; }
  .table--info tr th,
  .table--info tr td {
    padding: 5px;
    vertical-align: middle; }
  .table--info tr td {
    text-align: center; }
    .table--info tr td:first-child {
      font-weight: normal;
      text-align: left; }

.table--editor tr td {
  text-align: left; }
  .table--editor tr td > p {
    margin: 0; }

.table-register--step2 tr td {
  line-height: 1.3em;
  padding-bottom: 10px; }

.table--acquisition thead th {
  padding: 5px 15px; }

/**
 * Capitan progressbar.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-03-06
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.progressbar {
  position: relative;
  text-align: center; }
  .progressbar:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }
  .progressbar ul {
    margin-bottom: 30px;
    z-index: 1;
    position: relative;
    justify-content: space-around; }
    .progressbar ul li {
      display: inline-block;
      padding: 0 5px;
      flex: 1 100%; }
      .progressbar ul li a {
        margin: 0 auto; }
  .progressbar .util-icon--only:before {
    font-size: 6.25rem;
    color: #080844; }
  .contact-list + .progressbar {
    margin-bottom: 90px; }

.progressbar__link {
  padding: 9px;
  color: #969698;
  background: #f9f9f9;
  text-decoration: none;
  width: 40px;
  height: 40px;
  display: block;
  border: 1px solid #969698;
  border-radius: 50%; }
  .progressbar__link.is-current {
    border: 2px solid #080844; }
  .progressbar__link.is-finished {
    border-color: #080844;
    background: #080844;
    color: #fff; }

.progressbar__line {
  position: absolute;
  left: 50%;
  height: 1px;
  top: 50%;
  width: 200px;
  margin-left: -100px;
  background: #969698;
  z-index: -1; }

/**
 * Capitan downloads.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2018-06-25
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.downloads {
  margin: 30px 0; }
  .downloads:after {
    display: block;
    content: ".";
    clear: both;
    font-size: 0;
    line-height: 0;
    height: 0;
    overflow: hidden; }

.downloads__section {
  margin: 30px 0; }

.downloads__item {
  margin: 15px 0; }
  .downloads__item a:hover {
    color: #080844;
    text-decoration: none; }

/**
 * Capitan cookie-warning.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-04-07
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
.cookie-warning {
  -webkit-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
  -ms-box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -10px 10px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  color: #969698;
  padding: 15px;
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  border-top: 8px solid #080844; }

.cookie-warning__content {
  position: relative;
  max-width: 77.5em;
  margin: 0 auto;
  padding-right: 100px; }

.cookie-warning__close {
  position: absolute;
  right: 10px;
  top: 3px;
  border: 2px solid #080844;
  color: #fff; }
  .cookie-warning__close:hover {
    text-decoration: none; }

/**
 * Capitan data-table.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2017-01-30
 * MIT License (MIT)
 */
/**
 * Capitan functions.scss v2.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global functions
   ========================================================================== */
/**
 * Calculate PX to EM
 *
 * @param {number} $targetPx - pixel value without unit
 *
 */
/**
 * Built a JSON like string with all given breakpoints and their values.
 * This is necessary for the JavaScript function 'function/get-breakpoint.js'
 * and 'function/assert-breakpoint.js'
 */
/**
 * Return specific breakpoint
 */
/**
 * Return specific color
 */
/**
 * Return specific Icon
 */
/**
 * Capitan variables.scss v3.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2015-06-27
 * MIT License (MIT)
 */
/* ==========================================================================
   Base settings
   ========================================================================== */
/* base path */
/* Base sizes */
/* Body font size */
/* Font Style */
/* ==========================================================================
   Grid-System
   ========================================================================== */
/* <@breakpoints */
/* breakpoints@> */
/* ==========================================================================
   Colors
   ========================================================================== */
/* <@colors */
/* colors@> */
/* ==========================================================================
   Icons
   ========================================================================== */
/* <@icons */
/* icons@> */
/**
 * Capitan mixins.scss v2.0.1
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2014-09-23
 * MIT License (MIT)
 */
/* ==========================================================================
   Global mixins
   ========================================================================== */
/**
 * Calculate percent value to given property
 *
 * @param {string} $cssProperty - which property
 * @param {number} $targetSize - element size in pixel
 * @param {number} $contextSize - context element size in pixel
 * @param {boolean} $important - set !important property
 *
 */
/**
 * Calculate PX font size to REM
 *
 * @param {number} $size - element size in pixel
 * @param {number} $base - body font size in pixel
 *
 */
/**
 * Calculates given px value to rem value
 *
 * @param {string} $prop - css property name, e.g. font-size, line-height; Default: 'font-size'
 * @param {number} $size - size in px; Default: $body-font-size-px
 *
 */
/**
* Mixin for adding vendor prefixes to CSS attributes; useful for the following CSS attributes
*
* - border-radius
* - box-shadow
* - transition
* - transform
* - background-size
* - box-sizing
* - animate
*
* @param {string} $attribute - CSS attribute that needs vendor prefixes, e.g. border-radius or transition
* @param {string} $value - The specific CSS value, e.g. "translateX .2s ease-out"
*/
/**
* Clearfix
*/
/**
 * Webfont mixin for global use
 *
 * @param {string} $family - set the font-family value
 * @param {string} $fontWeight - set the font-weight value
 * @param {string} $fontStyle - set the font-style value
 */
/**
* Mixin for adding hover transition
*
* @param {string} $colorFX - properties for color transition
* @param {string} $hoverColor - hover color
* @param {string} $backgroundFX - properties for background transition
* @param {string} $hoverBackground - hover background color
*/
/**
 * Mixin for defining values at an specific mediaQuerie
 *
 * @param {string} $width - breakpoint from $breakpoints map
 */
#dashboard--numbers .item .value {
  font-size: 30px; }

.dashboard--widget {
  position: relative;
  display: block;
  min-height: 150px; }
  .dashboard--widget .widget_table_overflow_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 0px;
    margin: 0px 0px 15px 0px; }
    .dashboard--widget .widget_table_overflow_wrapper table {
      margin: 0;
      padding: 0; }
  .dashboard--widget table th,
  .dashboard--widget table td {
    padding: 6px;
    margin: 0; }
  .dashboard--widget .table tr td:first-child {
    width: auto; }
  .dashboard--widget .table thead td:first-child {
    width: auto; }
  .dashboard--widget th.util-text-right {
    text-align: right; }
  .dashboard--widget .pagination--label {
    text-align: left;
    padding-left: 6px; }
  .dashboard--widget .pagination {
    text-align: right; }
    .dashboard--widget .pagination a {
      cursor: pointer;
      padding: 5px;
      font-size: 16px; }
    .dashboard--widget .pagination a.current {
      cursor: default;
      color: #080844; }
  .dashboard--widget .js--overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    right: 0;
    text-align: center;
    padding: 30px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8); }
    .dashboard--widget .js--overlay span {
      font-size: 1.375rem;
      margin: 15px auto;
      color: #969698; }
  .dashboard--widget .js--loader {
    display: block;
    margin: 0 auto;
    border: 16px solid #c4c0bf;
    /* Light grey */
    border-top: 16px solid #080844;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.util-cursor-pointer {
  cursor: pointer; }

/* ==========================================================================
   Utility classes
   ========================================================================== */
/**
 * Capitan utils.scss v1.0.0
 *
 * Copyright brandung GmbH & Co.KG
 * http://www.brandung.de/
 *
 * Date: 2016-04-05
 * MIT License (MIT)
 */
/* ==========================================================================
   Util classes
   ========================================================================== */
.util-unstyled {
  margin: 0;
  padding: 0;
  list-style: none; }

.util-column-list {
  font-size: 0;
  margin-left: -15px;
  margin-right: -15px; }
  .util-column-list li {
    font-size: 0.9375rem;
    width: 50%;
    display: inline-block;
    padding: 0 15px;
    margin: 10px 0; }

.util-left {
  float: left; }

.util-right {
  float: right; }
  .util-right + .util-right {
    margin: 0 10px; }

.util-center {
  display: block;
  margin: 0 auto;
  text-align: center; }

.util-clear {
  clear: both; }

.util-highlight {
  color: #080844; }

.util-text-right {
  text-align: right; }

.util-text-left {
  text-align: left !important; }

.util-text-center {
  text-align: center; }

.util-text-break {
  word-break: break-all;
  display: inline-block; }

.util-show-grid [class*="col-"] {
  background: grey;
  outline: 1px solid red; }

.util-show-grid header {
  background: rgba(0, 128, 0, 0.5); }

.util-show-grid footer {
  background: rgba(0, 255, 255, 0.5); }

.util-reset-padding {
  padding: 0 !important; }
  .util-reset-padding-top {
    padding-top: 0 !important; }
  .util-reset-padding-right {
    padding-right: 0 !important; }
  .util-reset-padding-bottom {
    padding-bottom: 0 !important; }
  .util-reset-padding-left {
    padding-left: 0 !important; }
  .util-reset-padding-x {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  .util-reset-padding-y {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }

.util-add-border-left {
  border-left: 1px solid #c4c0bf !important; }

.util-add-border-right {
  border-right: 1px solid #c4c0bf !important; }

.util-add-border-top {
  border-top: 1px solid #c4c0bf !important;
  padding-top: 10px;
  margin-top: 10px; }

.util-add-padding {
  padding: 15px !important; }
  .util-add-padding-full {
    padding: 30px !important; }
  .util-add-padding-double {
    padding: 60px !important; }
  .util-add-padding-top {
    padding-top: 15px !important; }
    .util-add-padding-top-full {
      padding-top: 30px !important; }
    .util-add-padding-top-double {
      padding-top: 60px !important; }
  .util-add-padding-right {
    padding-right: 15px !important; }
    .util-add-padding-right-full {
      padding-right: 30px !important; }
    .util-add-padding-right-double {
      padding-right: 60px !important; }
  .util-add-padding-bottom {
    padding-bottom: 15px !important; }
    .util-add-padding-bottom-full {
      padding-bottom: 30px !important; }
    .util-add-padding-bottom-double {
      padding-bottom: 60px !important; }
  .util-add-padding-left {
    padding-left: 15px !important; }
    .util-add-padding-left-full {
      padding-left: 30px !important; }
    .util-add-padding-left-double {
      padding-left: 60px !important; }
  .util-add-padding-x {
    padding-left: 15px !important;
    padding-right: 15px !important; }
    .util-add-padding-x-full {
      padding-left: 30px !important;
      padding-right: 30px !important; }
    .util-add-padding-x-double {
      padding-left: 60px !important;
      padding-right: 60px !important; }
  .util-add-padding-y {
    padding-top: 15px !important;
    padding-bottom: 15px !important; }
    .util-add-padding-y-full {
      padding-top: 30px !important;
      padding-bottom: 30px !important; }
    .util-add-padding-y-double {
      padding-top: 60px !important;
      padding-bottom: 60px !important; }

.util-reset-margin {
  margin: 0 !important; }
  .util-reset-margin-top {
    margin-top: 0 !important; }
  .util-reset-margin-right {
    margin-right: 0 !important; }
  .util-reset-margin-bottom {
    margin-bottom: 0 !important; }
  .util-reset-margin-left {
    margin-left: 0 !important; }
  .util-reset-margin-x {
    margin-left: 0 !important;
    margin-right: 0 !important; }
  .util-reset-margin-y {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .util-reset-margin-auto {
    margin-left: auto !important;
    margin-right: auto !important; }

.util-add-margin {
  margin: 15px !important; }
  .util-add-margin-full {
    margin: 30px !important; }
  .util-add-margin-double {
    margin: 60px !important; }
  .util-add-margin-top {
    margin-top: 15px !important; }
    .util-add-margin-top-full, label.label--dark {
      margin-top: 30px !important; }
    .util-add-margin-top-double {
      margin-top: 60px !important; }
  .util-add-margin-right {
    margin-right: 15px !important; }
    .util-add-margin-right-full {
      margin-right: 30px !important; }
    .util-add-margin-right-double {
      margin-right: 60px !important; }
  .util-add-margin-bottom {
    margin-bottom: 15px !important; }
    .util-add-margin-bottom-full {
      margin-bottom: 30px !important; }
    .util-add-margin-bottom-double {
      margin-bottom: 60px !important; }
  .util-add-margin-left {
    margin-left: 15px !important; }
    .util-add-margin-left-full {
      margin-left: 30px !important; }
    .util-add-margin-left-double {
      margin-left: 60px !important; }
  .util-add-margin-x {
    margin-left: 15px !important;
    margin-right: 15px !important; }
    .util-add-margin-x-full {
      margin-left: 30px !important;
      margin-right: 30px !important; }
    .util-add-margin-x-double {
      margin-left: 60px !important;
      margin-right: 60px !important; }
  .util-add-margin-y {
    margin-top: 15px !important;
    margin-bottom: 15px !important; }
    .util-add-margin-y-full {
      margin-top: 30px !important;
      margin-bottom: 30px !important; }
    .util-add-margin-y-double {
      margin-top: 60px !important;
      margin-bottom: 60px !important; }

/** + bootstrap visibility utilities */
.util-hidden,
.util-visible-xs,
.util-visible-sm,
.util-visible-md,
.util-visible-lg,
.util-visible-xl {
  display: none !important; }

@media screen and (min-width: 21.3333333333em) {
  .util-visible-xs {
    display: block !important; }
  span.util-visible-xs {
    display: inline !important; }
  .util-hidden-xs {
    display: none !important; } }

@media screen and (min-width: 32em) {
  .util-visible-sm {
    display: block !important; }
  span.util-visible-sm {
    display: inline !important; }
  .util-hidden-sm {
    display: none !important; } }

@media screen and (min-width: 51.2em) {
  .util-visible-md {
    display: block !important; }
  span.util-visible-md {
    display: inline !important; }
  .util-hidden-md {
    display: none !important; } }

@media screen and (min-width: 66.1333333333em) {
  .util-visible-lg {
    display: block !important; }
  span.util-visible-lg {
    display: inline !important; }
  .util-hidden-lg {
    display: none !important; } }

@media screen and (min-width: 106.666666667em) {
  .util-visible-xl {
    display: block !important; }
  span.util-visible-xl {
    display: inline !important; }
  .util-hidden-xl {
    display: none !important; } }
