/*
Version: 3.4.4 Timestamp: Thu Oct 24 13:23:11 PDT 2013
*/
.select2-container {
  margin: 0;
  position: relative;
  display: inline-block;
  /* inline-block for ie7 */
  zoom: 1;
  *display: inline;
  vertical-align: middle;
}
.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.

    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box;
  /* webkit */
  -moz-box-sizing: border-box;
  /* firefox */
  box-sizing: border-box;
  /* css3 */
}
.select2-container .select2-choice {
  display: block;
  height: 26px;
  padding: 0 0 0 8px;
  overflow: hidden;
  position: relative;
  border: 1px solid #aaa;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
.select2-container.select2-drop-above .select2-choice {
  border-bottom-color: #aaa;
  border-radius: 0 0 4px 4px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
  background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
  background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
  background-image: linear-gradient(top, #eee 0%, #fff 90%);
}
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 42px;
}
.select2-container .select2-choice > .select2-chosen {
  margin-right: 26px;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.select2-container .select2-choice abbr {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
  right: 24px;
  top: 8px;
  font-size: 1px;
  text-decoration: none;
  border: 0;
  background: url('select2.png') right top no-repeat;
  cursor: pointer;
  outline: 0;
}
.select2-container.select2-allowclear .select2-choice abbr {
  display: inline-block;
}
.select2-container .select2-choice abbr:hover {
  background-position: right -11px;
  cursor: pointer;
}
.select2-drop-mask {
  border: 0;
  margin: 0;
  padding: 0;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 9998;
  /* styles required for IE to work */
  background-color: #fff;
  filter: alpha(opacity=0);
}
.select2-drop {
  width: 100%;
  margin-top: -1px;
  position: absolute;
  z-index: 9999;
  top: 100%;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-top: 0;
  border-radius: 0 0 4px 4px;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-auto-width {
  border-top: 1px solid #aaa;
  width: auto;
}
.select2-drop-auto-width .select2-search {
  padding-top: 4px;
}
.select2-drop.select2-drop-above {
  margin-top: 1px;
  border-top: 1px solid #aaa;
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}
.select2-drop-active {
  border: 1px solid #5897fb;
  border-top: none;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border-top: 1px solid #5897fb;
}
.select2-container .select2-choice .select2-arrow {
  display: inline-block;
  width: 18px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border-left: 1px solid #aaa;
  border-radius: 0 4px 4px 0;
  background-clip: padding-box;
  background: #ccc;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #ccc), color-stop(0.6, #eee));
  background-image: -webkit-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  background-image: -moz-linear-gradient(center bottom, #ccc 0%, #eee 60%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);
  background-image: linear-gradient(top, #ccc 0%, #eee 60%);
}
.select2-container .select2-choice .select2-arrow b {
  display: block;
  width: 100%;
  height: 100%;
  background: url('select2.png') no-repeat 0 1px;
}
.select2-search {
  display: inline-block;
  width: 100%;
  min-height: 26px;
  margin: 0;
  padding-left: 4px;
  padding-right: 4px;
  position: relative;
  z-index: 10000;
  white-space: nowrap;
}
.select2-search input {
  width: 100%;
  height: auto !important;
  min-height: 26px;
  padding: 4px 20px 4px 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url('select2.png') no-repeat 100% -22px;
  background: url('select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2.png') no-repeat 100% -22px, linear-gradient(top, #fff 85%, #eee 99%);
}
.select2-drop.select2-drop-above .select2-search input {
  margin-top: 4px;
}
.select2-search input.select2-active {
  background: #fff url('select2-spinner.gif') no-repeat 100%;
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
  background: url('select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
  background: url('select2-spinner.gif') no-repeat 100%, linear-gradient(top, #fff 85%, #eee 99%);
}
.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-dropdown-open .select2-choice {
  border-bottom-color: transparent;
  -webkit-box-shadow: 0 1px 0 #fff inset;
  box-shadow: 0 1px 0 #fff inset;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: #eee;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(top, #fff 0%, #eee 50%);
}
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
  border: 1px solid #5897fb;
  border-top-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
  background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
  background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
  background-image: linear-gradient(bottom, #fff 0%, #eee 50%);
}
.select2-dropdown-open .select2-choice .select2-arrow {
  background: transparent;
  border-left: none;
  filter: none;
}
.select2-dropdown-open .select2-choice .select2-arrow b {
  background-position: -18px 1px;
}
/* results */
.select2-results {
  max-height: 200px;
  padding: 0 0 0 4px;
  margin: 4px 4px 4px 0;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.select2-results ul.select2-result-sub {
  margin: 0;
  padding-left: 0;
}
.select2-results ul.select2-result-sub > li .select2-result-label {
  padding-left: 20px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 40px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 60px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 80px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 100px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 110px;
}
.select2-results ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub ul.select2-result-sub > li .select2-result-label {
  padding-left: 120px;
}
.select2-results li {
  list-style: none;
  display: list-item;
  background-image: none;
}
.select2-results li.select2-result-with-children > .select2-result-label {
  font-weight: bold;
}
.select2-results .select2-result-label {
  padding: 3px 7px 4px;
  margin: 0;
  cursor: pointer;
  min-height: 1em;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.select2-results .select2-highlighted {
  background: #3875d7;
  color: #fff;
}
.select2-results li em {
  background: #feffde;
  font-style: normal;
}
.select2-results .select2-highlighted em {
  background: transparent;
}
.select2-results .select2-highlighted ul {
  background: #fff;
  color: #000;
}
.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-selection-limit {
  background: #f4f4f4;
  display: list-item;
}
/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
  color: #666;
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}
.select2-results .select2-selected {
  display: none;
}
.select2-more-results.select2-active {
  background: #f4f4f4 url('select2-spinner.gif') no-repeat 100%;
}
.select2-more-results {
  background: #f4f4f4;
  display: list-item;
}
/* disabled styles */
.select2-container.select2-container-disabled .select2-choice {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container.select2-container-disabled .select2-choice .select2-arrow {
  background-color: #f4f4f4;
  background-image: none;
  border-left: 0;
}
.select2-container.select2-container-disabled .select2-choice abbr {
  display: none;
}
/* multiselect */
.select2-container-multi .select2-choices {
  height: auto !important;
  height: 1%;
  margin: 0;
  padding: 0;
  position: relative;
  border: 1px solid #aaa;
  cursor: text;
  overflow: hidden;
  background-color: #fff;
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
  background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
  background-image: linear-gradient(top, #eee 1%, #fff 15%);
}
.select2-locked {
  padding: 3px 5px 3px 5px !important;
}
.select2-container-multi .select2-choices {
  min-height: 26px;
}
.select2-container-multi.select2-container-active .select2-choices {
  border: 1px solid #5897fb;
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.select2-container-multi .select2-choices li {
  float: left;
  list-style: none;
}
.select2-container-multi .select2-choices .select2-search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap;
}
.select2-container-multi .select2-choices .select2-search-field input {
  padding: 5px;
  margin: 1px 0;
  font-family: sans-serif;
  font-size: 100%;
  color: #666;
  outline: 0;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: transparent !important;
}
.select2-container-multi .select2-choices .select2-search-field input.select2-active {
  background: #fff url('select2-spinner.gif') no-repeat 100% !important;
}
.select2-default {
  color: #999 !important;
}
.select2-container-multi .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 18px;
  margin: 3px 0 3px 5px;
  position: relative;
  line-height: 13px;
  color: #333;
  cursor: default;
  border: 1px solid #aaaaaa;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
  background-clip: padding-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #e4e4e4;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
  background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
  background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
  background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
  cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
  background: #d4d4d4;
}
.select2-search-choice-close {
  display: block;
  width: 12px;
  height: 13px;
  position: absolute;
  right: 3px;
  top: 4px;
  font-size: 1px;
  outline: none;
  background: url('select2.png') right top no-repeat;
}
.select2-container-multi .select2-search-choice-close {
  left: 3px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
  background-position: right -11px;
}
/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
  padding: 3px 5px 3px 5px;
  border: 1px solid #ddd;
  background-image: none;
  background-color: #f4f4f4;
}
.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {
  display: none;
  background: none;
}
/* end multiselect */
.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
  text-decoration: underline;
}
.select2-offscreen,
.select2-offscreen:focus {
  clip: rect(0 0 0 0) !important;
  width: 1px !important;
  height: 1px !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
  outline: 0 !important;
  left: 0px !important;
  top: 0px !important;
}
.select2-display-none {
  display: none;
}
.select2-measure-scrollbar {
  position: absolute;
  top: -10000px;
  left: -10000px;
  width: 100px;
  height: 100px;
  overflow: scroll;
}
/* Retina-ize icons */
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) {
  .select2-search input,
  .select2-search-choice-close,
  .select2-container .select2-choice abbr,
  .select2-container .select2-choice .select2-arrow b {
    background-image: url('select2x2.png') !important;
    background-repeat: no-repeat !important;
    background-size: 60px 40px !important;
  }
  .select2-search input {
    background-position: 100% -21px !important;
  }
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
.select2-container {
  width: 100%;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.select2-container input.select2-focus:hover {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid red;
}
.select2-container .select2-choice,
.select2-container-multi .select2-choices {
  font: 500 17px/22px "HelveticaNeue";
  background: #fff;
  border: 1px solid #CDCDCD;
  text-align: left;
  color: #242424;
  height: 22px;
  padding: 10px;
  margin: 0;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  box-shadow: none !important;
}
.select2-container-multi .select2-choices {
  padding: 4px 4px;
  min-height: 20px;
  height: auto;
}
.select2-container .select2-choice .select2-arrow {
  background: none;
  border: 0;
  border-radius: 0;
  width: 30px;
}
.select2-container .select2-choice .select2-arrow b {
  background-image: none;
}
.select2-container .select2-choice .select2-arrow b:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container .select2-choice .select2-arrow b:before {
  content: "\f102";
}
.select2-container .select2-choice .select2-arrow b:before {
  font-size: 6px;
  position: absolute;
  left: 0;
  top: 10px;
}
.select2-container .select2-choice:hover .select2-arrow b {
  background-image: none;
}
.select2-container .select2-choice:hover,
.select2-container-multi .select2-choices:hover {
  /* OLD
	background: @bg-color-3 !important;
	*/
  color: #f7a600;
  background: white;
  border: 1px solid #f7a600 !important;
}
/*
.select2-container .select2-choice:hover .select2-arrow b {
	background: url("@{path}/icon_arrow_down_black.svg") center center no-repeat;
	background-size: 12px 5px;
}
*/
/*

.select2-container-multi .select2-choices .select2-search-choice {
	background: #d7e8bd;
	font: 400 14px/20px @body-font;
	box-shadow: none;
	border: none;
	margin: 3px;
	}

*/
.select2-container.select2-allowclear .select2-choice .select2-chosen {
  margin-right: 60px;
}
.select2-container .select2-choice abbr.select2-search-choice-close {
  width: 17px !important;
  height: 17px !important;
  right: 36px !important;
  top: 10px !important;
  color: #d3d2d3;
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  content: "\f108";
}
.select2-container .select2-choice abbr.select2-search-choice-close:before {
  font-size: 10px;
}
.select2-container .select2-choice abbr.select2-search-choice-close:hover {
  color: #8f9aa3;
}
.select2-container.select2-drop-above {
  z-index: 10000;
}
.select2-dropdown-open .select2-choice {
  border-bottom: 0;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
}
.select2-dropdown-open .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-container-multi.select2-container-active .select2-choices {
  background: white;
  border: 1px solid #242424 !important;
}
.select2-dropdown-open.select2-drop-above .select2-choices,
.select2-dropdown-open.select2-drop-above .select2-choice {
  border-radius: 0 0 2px 2px;
  border-top: 1px solid #D3D2D3 !important;
}
.select2-drop {
  box-shadow: none !important;
  color: #242424;
  background: white;
  -webkit-border-radius: 0 0 2px 2px;
  border-radius: 0 0 2px 2px;
  border: 1px solid #242424 !important;
  border-top: 0 !important;
  margin-top: -1px;
}
.select2-drop.select2-drop-above.select2-drop-active {
  border: 1px solid #242424 !important;
  border-bottom: 0 !important;
  padding-top: 0;
  -webkit-border-radius: 2px 2px 0 0;
  border-radius: 2px 2px 0 0;
  margin: 0;
}
.select2-results {
  margin: 0;
  padding: 0;
  max-height: 240px;
}
.select2-results li {
  margin: 0;
}
.select2-results .select2-result-label {
  padding: 6px 10px;
  font: 500 17px/22px "HelveticaNeue";
  color: #242424;
  border-bottom: 1px solid #efefef;
}
.select2-results li:last-child .select2-result-label {
  border: 0;
}
.select2-results .select2-highlighted {
  background: transparent;
}
.select2-results .select2-highlighted .select2-result-label {
  color: #8f9aa3 !important;
}
.select2-search {
  padding: 0;
  position: relative;
  display: block;
}
.select2-search:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-search:before {
  content: "\f117";
}
.select2-search:before {
  position: absolute;
  right: 14px;
  top: 4px;
  font-size: 15px;
  z-index: 111;
}
.select2-search input {
  font: 500 17px/22px "HelveticaNeue";
  box-shadow: none !important;
  padding: 6px 10px;
  border: 1px solid #D3D2D3;
  border-left: 0;
  border-right: 0;
  margin: 0 !important;
  background: #efefef;
}
.select2-drop.select2-drop-above .select2-search input {
  border-top: 0;
}
.select2-no-results {
  font: 500 17px/22px "HelveticaNeue";
  padding: 6px 10px;
  color: white;
  background: #8f9aa3 !important;
}
.select2-container-multi .select2-choices {
  padding: 4px 32px 4px 4px;
  min-height: 22px;
  height: auto;
}
.select2-container-multi .select2-choices:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container-multi .select2-choices:before {
  content: "\f102";
}
.select2-container-multi .select2-choices:before {
  color: #999;
  font-size: 6px;
  position: absolute;
  right: 13px;
  top: 10px;
}
.select2-container-multi .select2-choices .select2-search-choice {
  background: #ddd;
  font: 500 15px/22px "HelveticaNeue";
  box-shadow: none;
  border: none;
  margin: 3px 3px;
  padding: 2px 10px 2px 22px;
}
.select2-container-multi .select2-choices .select2-search-field input {
  font: 500 17px/22px "HelveticaNeue";
  padding: 4px;
}
.select2-container-multi .select2-choices .select2-search-field input:hover,
.select2-container-multi .select2-choices .select2-search-field input:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.select2-container-multi .select2-search-choice-close {
  border-radius: 10px;
  width: 13px;
  height: 13px;
  background: #fff;
  top: 7px;
  left: 4px;
  line-height: 13px;
  color: #999;
}
.select2-container-multi .select2-search-choice-close:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.select2-container-multi .select2-search-choice-close:before {
  content: "\f108";
}
.select2-container-multi .select2-search-choice-close:before {
  font-size: 6px;
  line-height: 13px;
  position: absolute;
  left: 4px;
  top: 0;
}
.select2-container-multi .select2-search-choice-close:hover {
  color: #8f9aa3;
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
@media all {
  ::-webkit-input-placeholder {
    font: 500 17px/24px "HelveticaNeue";
  }
  :-ms-input-placeholder {
    font: 500 17px/24px "HelveticaNeue";
  }
  :-moz-placeholder {
    font: 500 17px/24px "HelveticaNeue";
  }
  ::-moz-placeholder {
    font: 500 17px/24px "HelveticaNeue";
  }
  label,
  .label {
    font: 700 17px/32px "HelveticaNeue";
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .radio label,
  .checkbox label {
    display: inline;
    font-weight: 500;
  }
  input,
  textarea {
    cursor: text;
  }
  .radio input,
  .checkbox input,
  input[type="image"],
  input[type="radio"],
  input[type="checkbox"],
  select,
  label {
    cursor: pointer;
  }
  textarea {
    overflow: auto;
  }
  input.hidden,
  input[type=hidden] {
    display: none !important;
  }
  input,
  textarea,
  select {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  .radio input,
  .checkbox input,
  input[type="radio"],
  input[type="checkbox"] {
    display: inline;
    margin-left: 0;
    margin-right: 0.5ex;
    width: auto;
    height: auto;
  }
  input[type="image"] {
    border: 0;
    display: inline;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .form .submit input {
    display: inline;
    overflow: visible;
    width: auto;
  }
  small {
    font-size: 100%;
  }
}
@media screen {
  .form {
    margin: 0 15px 40px;
  }
  .widget.form {
    max-width: 1044px;
    max-width: 910px;
  }
  .form .hl3 {
    text-transform: uppercase;
    color: #f7a600;
    padding: 0 0 20px;
  }
  .form .hl3,
  .form .text {
    margin: 0;
  }
  .form p {
    font: 500 17px/32px "HelveticaNeue";
    color: #242424;
  }
  fieldset {
    margin: 0;
    padding: 0 0 20px;
    position: relative;
    background: transparent;
  }
  fieldset.indented {
    padding: 0 0 20px 32px;
  }
  fieldset.indented legend {
    padding-top: 20px;
    margin-left: -32px;
  }
  legend {
    background: transparent;
    font-weight: normal;
    font: 700 17px/32px "HelveticaNeue";
  }
  label,
  .label {
    color: #242424;
    margin: 0 0 0 2px;
  }
  label:hover,
  .label:hover {
    cursor: pointer;
  }
  .label:hover {
    pointer-events: none;
    cursor: text;
    color: #242424;
  }
  .form .item {
    padding: 0;
    margin: 0 0 20px;
  }
  .form .item:last-child,
  .form .item.clearfix {
    margin-bottom: 0;
  }
  .form .checkbox:focus + label {
    color: #000;
  }
  input,
  textarea,
  select {
    /*
		border: @form-border;
		line-height: @body-font-line-height;
		background: @form-bg;
		color: @form-font-color;
		*/
  }
  input:focus,
  select:focus,
  textarea:focus,
  input:hover,
  select:hover,
  textarea:hover,
  input:active,
  select:active,
  textarea:active {
    /*
		border: @form-border-hover;
		background: @form-bg;
		*/
  }
  optgroup {
    font-style: normal;
    font-weight: bold;
  }
  .checkbox input,
  input[type="image"],
  input[type="radio"],
  input[type="checkbox"] {
    border: 0 none !important;
  }
}
.js .labelAsPlaceholder label {
  display: none;
}
.info {
  font: 500 17px/32px "HelveticaNeue";
  text-align: right;
  margin: 0;
  color: #aaa;
}
.info-wordcount {
  font: 500 17px/32px "HelveticaNeue";
  text-transform: uppercase;
  text-align: right;
  margin: 5px 0 0;
}
input,
textarea,
select {
  padding: 10px 12px;
  font: 500 17px/22px "HelveticaNeue";
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background: white;
  color: #242424;
  border: 1px solid #CDCDCD;
}
textarea {
  height: 164px;
  min-height: 164px;
  max-height: 328px;
  resize: vertical;
}
select {
  height: 44px;
}
input:hover,
select:hover,
textarea:hover {
  box-shadow: 2px 2px 4px #CDCDCD !important;
}
input:focus,
select:focus,
textarea:focus,
input:active,
select:active,
textarea:active {
  box-shadow: 2px 2px 4px #CDCDCD !important;
}
.radio {
  position: relative;
  margin: 10px 0 0;
}
.checkbox {
  position: relative;
  margin: 12px 0 0;
}
.itemInline .checkbox,
.itemInline .radio {
  float: left;
}
.checkbox input,
.radio input {
  margin: 0 !important;
  position: absolute;
  left: 0;
  width: auto !important;
}
.checkbox input,
.radio input {
  left: -10000em;
}
.checkbox label,
.radio label {
  padding: 0 10px 0 32px;
  margin: 0 10px 0 0 !important;
  display: inline-block;
  position: relative;
}
.checkbox label:after {
  width: 22px;
  height: 22px;
  background-color: white;
  border: 1px solid #CDCDCD;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  display: block;
}
.checkbox label:hover:after {
  /*
		background-color: @bg-color-1;
		border-color: @bg-color-2;
		*/
  box-shadow: 2px 2px 4px #CDCDCD !important;
}
.checkbox label.checked:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.checkbox label.checked:before {
  content: "\f11d";
}
.checkbox label.checked:after,
.checkbox label.checked:hover:after {
  background: #f7a600;
  border-color: #f7a600;
}
.checkbox label.checked:before {
  color: white !important;
  top: 0px;
  position: absolute;
  left: 5px;
  z-index: 1;
  display: block;
  background-color: transparent !important;
  font-size: 14px;
}
/*
.js .checkbox label:before {
	width: 14px;
	height: 14px;
	background-color: white !important;
	border: 1px solid #CDCDCD;
	content: "";
	position: absolute;
	left: 0;
	top: 4px;
}

.js .checkbox label:hover{
	color: @cp-color-1;
	&:before {
		border: 2px solid #fff;
		background-color: #CDCDCD !important;
		-webkit-box-shadow: 0 0 0 1px #CDCDCD;
		box-shadow: 0 0 0 1px #CDCDCD;
		width: 10px;
		height: 10px;
		top: 5px;
		left: 1px;
	}
}

.js .checkbox label.checked:before {
	//background: @cp-color-1 url("@{path}/checkbox.png") center center no-repeat;
		border: 2px solid #fff;
		background-color: @cp-color-1 !important;
		-webkit-box-shadow: 0 0 0 1px #CDCDCD;
		box-shadow: 0 0 0 1px #CDCDCD;
		width: 10px;
		height: 10px;
		top: 5px;
		left: 1px;

	}
*/
.radio label:before {
  width: 22px;
  height: 22px;
  border: 1px solid #CDCDCD;
  border-radius: 12px;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  background: white;
}
/*
.js .radio.parsley-error label:before {
	border: 1px solid red !important;
}*/
.radio label:hover:before {
  box-shadow: 2px 2px 4px #CDCDCD !important;
}
.radio label.checked:after,
.radio label.checked:hover:after {
  width: 12px;
  height: 12px;
  border-radius: 8px;
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  background: #f7a600;
  border-color: #f7a600;
}
/*
.radio.parsley-error label {
	color: red;
}
.radio.parsley-error label:before {
	border: 1px solid red;
}


.radio.parsley-error {
	margin: 0 0 25px !important;
}
*/
/*
.error,
.error p,
.error li {
	color: red;
	}


.parsley-error-list {
	list-style: none;
	margin: 3px 0 0;
	li {
		font: 400 13px/18px @body-font;
		color: red;
		margin: 0;
		background: transparent;
		}
	}

input.error,
input.parsley-error,
textarea.error,
textarea.parsley-error {
	border-color: red;
	background: red !important;
	color: #fff;
	}
*/
.mandatory {
  font: 400 12px/20px "OpenSans", Arial, serif !important;
  color: #242424;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0 !important;
  float: left;
}
.form .submit {
  text-align: right;
  margin: 0;
}
.form .submit .button,
.form .submit button {
  margin: 0 0 1px 0 !important;
}
.form .item:last-child {
  margin-bottom: 20px;
}
.form .item20 {
  width: 20%;
}
.form .item30 {
  width: 30%;
}
.form .item33 {
  width: 33%;
}
.form .item40 {
  width: 40%;
}
.form .item50 {
  width: 50%;
}
.form .item60 {
  width: 60%;
}
.form .item70 {
  width: 70%;
}
.form .item80 {
  width: 80%;
}
.form .item100 {
  width: 100%;
}
.form .itemSplit .item {
  float: left;
  padding-left: 2%;
}
.form .itemSplit .item20 {
  width: 18%;
}
.form .itemSplit .item30 {
  width: 28%;
}
.form .itemSplit .item33 {
  width: 32%;
}
.form .itemSplit .item40 {
  width: 38%;
}
.form .itemSplit .item50 {
  width: 48%;
}
.form .itemSplit .item60 {
  width: 58%;
}
.form .itemSplit .item70 {
  width: 68%;
}
.form .itemSplit .item80 {
  width: 78%;
}
.form .itemSplit .item:first-child {
  padding: 0 !important;
}
.form .itemSplit .item20:first-child {
  width: 20%;
}
.form .itemSplit .item30:first-child {
  width: 30%;
}
.form .itemSplit .item40:first-child {
  width: 40%;
}
.form .itemSplit .item50:first-child {
  width: 50%;
}
.form .itemSplit .item60:first-child {
  width: 60%;
}
.form .itemSplit .item70:first-child {
  width: 70%;
}
.form .itemSplit .item80:first-child {
  width: 80%;
}
.form .formSplit .form50 {
  padding-left: 2%;
  width: 48%;
  float: left;
}
.form .formSplit .form50:first-of-type {
  padding-left: 0;
  width: 50%;
}
.formStacked .info {
  float: right;
  margin: 0 -300px 0 0;
  width: 280px;
}
.formStacked fieldset {
  margin-right: 300px;
}
.formStacked fieldset:first-child {
  margin-right: 0;
  padding-right: 300px;
}
.formStacked fieldset:last-child {
  margin: 0;
  padding-bottom: 10px;
}
.formStacked .select2-container {
  width: 620px;
}
.formInline label,
.formInline input,
.formInline textarea,
.formInline button,
.formInline select {
  display: inline-block;
  margin: 0 20px 10px 0;
  width: auto;
  float: left;
}
.formInline .checkbox,
.formInline .radio {
  float: left;
}
.formAligned .item {
  margin: 0 0 10px;
}
.formAligned .item:before {
  content: "";
  display: table;
}
.formAligned .item:after {
  clear: both;
  content: ".";
  display: block;
  font-size: 0;
  height: 0;
  visibility: hidden;
}
.formAligned label,
.formAligned input,
.formAligned textarea,
.formAligned button,
.formAligned select {
  display: inline-block;
}
.formAligned label {
  width: 225px;
  float: left;
}
.formAligned input,
.formAligned textarea {
  width: 400px;
  float: left;
}
input,
textarea,
.select2-container {
  /*
	&.parsley-success {
		border-color: #84BD00;
		color: #84BD00;

		.select2-choices {
			border-color: #84BD00 !important;
			color: #84BD00;
		}
	}
	*/
}
input.parsley-error,
textarea.parsley-error,
.select2-container.parsley-error,
input.f3-form-error,
textarea.f3-form-error,
.select2-container.f3-form-error {
  border-color: red;
  color: red;
}
input.parsley-error .select2-choice,
textarea.parsley-error .select2-choice,
.select2-container.parsley-error .select2-choice,
input.f3-form-error .select2-choice,
textarea.f3-form-error .select2-choice,
.select2-container.f3-form-error .select2-choice {
  border-color: red !important;
  color: red;
}
.parsley-errors-list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  clear: both;
}
.parsley-errors-list li {
  margin: 0;
  font: 500 12px/18px "HelveticaNeue" !important;
  color: red;
  text-align: left;
  /* text-transform: uppercase; */
  margin: 0px 0px 10px;
  padding: 0px;
}
.parsley-errors-list li:first-child {
  margin-top: 5px;
}
.parsley-error label:before {
  border-color: red;
}
.item .info-wordcount.counter-over {
  color: #a13124;
}
.f3-form-error ul li ul li {
  color: #a13124;
}
@media screen and (max-width: 640px) {
  .form .itemSplit .item {
    width: 100% !important;
    padding-left: 0;
    float: none;
  }
  .form .formSplit .form-50 {
    width: 100% !important;
    padding-left: 0;
    float: none;
  }
  .facts .item .label,
  .facts .item p {
    width: 100% !important;
    padding-left: 0;
    float: none;
  }
}
/*
.notice {
	background: @bg-color-1;
	padding: 30px 250px 30px 30px;
	margin: 0 10px 80px;
	min-height: 200px;
	box-sizing: border-box;
	position: relative;


	&:before {
		content: "";
		position: absolute;
		right: 80px;
		top: 30px;
		width: 140px;
		height: 140px;
		border-radius: 70px;
		background: white url("@{path}/success.svg") center center no-repeat;
		background-size: 110px auto;
	}

	&.okay {

		&:before {
			background: white url("@{path}/double-opt-in.svg") center center no-repeat;
			background-size: 110px auto;
		}

	}

}
*/
.form .notice {
  background-color: red;
  margin: 0 0 24px 0;
  padding: 22px 16px 24px;
}
.form .notice > * {
  color: #fff;
}
.form .notice ul {
  list-style-type: none;
}
.widget.form {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
}
.widget.form .wrap {
  background: #f4f4f4;
  padding: 30px;
  margin: 0 15px 40px;
}
.widget.form .facts {
  margin: 0 0 40px;
}
#loginForm {
  width: 50%;
  float: left;
}
@media screen and (max-width: 480px) {
  .form .item,
  .form .item:last-child {
    margin-bottom: 15px;
  }
  .widget.form .wrap {
    padding: 15px 20px;
  }
}
.powermail_confirmation {
  padding: 0 15px !important;
}
/*# sourceMappingURL=style.css.map */
@font-face {
  font-family: "icon";
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
  src: url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"), url("../../statics/icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/*
@font-face {
    font-family:"icon";
    src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
    font-weight:normal;
    font-style:normal;
}
*/
/*
@font-face {
	font-family:"icon";
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot");
	src:url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.eot?#iefix") format("embedded-opentype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.woff") format("woff"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.ttf") format("truetype"),
		url("../../icons/icon-dc7226094ba3c44f4480bc664ca41628.svg?#icon") format("svg");
	font-weight:normal;
	font-style:normal;
}
*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icon";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-OLD_print:before,
.icon-arrow_down:before,
.icon-arrow_down_small:before,
.icon-arrow_left:before,
.icon-arrow_right:before,
.icon-arrow_up:before,
.icon-arrow_up_small:before,
.icon-close:before,
.icon-connect:before,
.icon-document:before,
.icon-extern:before,
.icon-facebook:before,
.icon-flashmessage_error:before,
.icon-flashmessage_info:before,
.icon-flashmessage_ok:before,
.icon-google:before,
.icon-ical:before,
.icon-lesezeit:before,
.icon-link:before,
.icon-linkedin:before,
.icon-links:before,
.icon-logout:before,
.icon-lupe:before,
.icon-mail:before,
.icon-navi:before,
.icon-print:before,
.icon-rss:before,
.icon-spinner:before,
.icon-tick:before,
.icon-twitter:before,
.icon-vcard:before,
.icon-view:before,
.icon-xing:before,
.icon-youtube:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
.icon-OLD_print:before {
  content: "\f101";
}
.icon-arrow_down:before {
  content: "\f102";
}
.icon-arrow_down_small:before {
  content: "\f103";
}
.icon-arrow_left:before {
  content: "\f104";
}
.icon-arrow_right:before {
  content: "\f105";
}
.icon-arrow_up:before {
  content: "\f106";
}
.icon-arrow_up_small:before {
  content: "\f107";
}
.icon-close:before {
  content: "\f108";
}
.icon-connect:before {
  content: "\f109";
}
.icon-document:before {
  content: "\f10a";
}
.icon-extern:before {
  content: "\f10b";
}
.icon-facebook:before {
  content: "\f10c";
}
.icon-flashmessage_error:before {
  content: "\f10d";
}
.icon-flashmessage_info:before {
  content: "\f10e";
}
.icon-flashmessage_ok:before {
  content: "\f10f";
}
.icon-google:before {
  content: "\f110";
}
.icon-ical:before {
  content: "\f111";
}
.icon-lesezeit:before {
  content: "\f112";
}
.icon-link:before {
  content: "\f113";
}
.icon-linkedin:before {
  content: "\f114";
}
.icon-links:before {
  content: "\f115";
}
.icon-logout:before {
  content: "\f116";
}
.icon-lupe:before {
  content: "\f117";
}
.icon-mail:before {
  content: "\f118";
}
.icon-navi:before {
  content: "\f119";
}
.icon-print:before {
  content: "\f11a";
}
.icon-rss:before {
  content: "\f11b";
}
.icon-spinner:before {
  content: "\f11c";
}
.icon-tick:before {
  content: "\f11d";
}
.icon-twitter:before {
  content: "\f11e";
}
.icon-vcard:before {
  content: "\f11f";
}
.icon-view:before {
  content: "\f120";
}
.icon-xing:before {
  content: "\f121";
}
.icon-youtube:before {
  content: "\f122";
}
/*
font-family: 'Source Serif Pro';
400 -> light
700 -> semibold

font-family: 'Roboto';
700 -> bold
600 -> medium
500 -> light
400 -> thin
*/
.animationSpin {
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
form.submitting [type="submit"] span {
  position: relative;
}
form.submitting [type="submit"] span:before {
  font-family: "icon";
  display: inline-block;
  font-weight: normal;
  font-style: normal;
  text-decoration: inherit;
}
form.submitting [type="submit"] span:before {
  content: "\f11c";
}
form.submitting [type="submit"] span:before {
  position: relative;
  left: -5px;
  top: 0;
  font-size: 14px;
  -webkit-animation-name: spin;
  -webkit-animation-duration: 1000ms;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*# sourceMappingURL=style.css.map */