/* =================================
   LAYOUT
   ================================= */
.page {
  min-height: 100%;
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
}

header {
  background: #e6e6e6;

  -moz-box-shadow: inset 0px -14px 35px 2px #d4d4d4;
  -webkit-box-shadow: inset 0px -14px 35px 2px #d4d4d4;
  /*overflow: hidden;*/
  /*  background: url(/layout/header_bg.jpg) repeat-x top left;*/

}


.main-content:after, .platocontent:after {
  content: "";
  display: block;
  clear: both;
}

footer {
  min-height: 300px;
  background: #eaf0bc;
}

/* Holy Grail */
html, body {
  height: 100%;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.main-content {
  flex-grow: 1;
}

header, .main-content, footer {
  flex-shrink: 0;
}

/* Holy Grail */


/* BLUE BLOCK CSS */
.fullwidth-bg {
  position: relative;
  margin-top: 1px;
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

.fullwidth-bg .article-div {
  padding: 60px 0;
}

.fullwidth-bg .article-div:after {
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(229, 229, 229, 0.53);
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  top: 0;
  z-index: 0;
}

/* CSS CLASS */
.fullwidth-div {
  background: rgba(204, 192, 0, 0.52);
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 20px 0;
}

.win-os .ct-nr-0 .fullwidth-div {
  width: calc(100vw - 17px);
}





/* =================================
   MENU MOBILE ICON
   ================================= */
/*
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.mobinavtoggle.hamburger {
  display: none;
}

.hamburger {
  padding: 10px 10px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  position: absolute;
  right: 0;
  top: 17px;
}

.hamburger:hover {
  /*opacity: 0.7; */
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 5px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger-label {
  display: inline-block;
  margin-left: 15px;
  vertical-align: top;
  text-transform: uppercase;
  padding-top: 3px;
}



/*
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
*/
article {
  overflow: hidden;
  max-width: 100%;
}

.sectiondiv {
  padding: 0 0 0 0;
  /*overflow: hidden;
  max-width: 100%;*/
}

/* fullwidth - bg help! */
/*.sectiondiv {
  position: relative;
  z-index: 1;
}*/

/*.article-div, .iwsetter, .fullwidth-div > div {
  max-width: 1000px;  Max Page Size 
  padding: 0 20px;  GOLBAL 20px sides 
  margin: 0 auto;
}*/


/* TOPLINK ICONS FIXED */
.top-linkbox-container {
  position: absolute;
  right: 0;
  overflow: hidden;
}

.top-linkbox-pos {
  position: fixed;
  top: 500px;
  overflow: hidden;
  z-index: 2222;
  transform: translateX(-100%);
  pointer-events: none;
  will-change: contents;
}

.top-linkbox {

  pointer-events: auto;
  position: relative;
  width: 200px;
  height: 40px;
  transform: translateX(160px);

  /*variante1 right: calc(-100% + 40px);*/
  /*variante1 width: auto;*/
  transition: transform 0.25s ease-in-out;
  background: #1c82c5 url(/layout/icons_white/close.svg) no-repeat left center / 40px 40px;
  padding-left: 40px;
  margin-bottom: 5px;
  line-height: 42px;
  color: white;
  cursor: pointer;
}

.top-linkbox.active, .top-linkbox:hover {
  transform: translateX(0);
  /*variante1 transform: translateX(calc(-100% + 40px));*/
  transition: transform 0.25s ease-in-out;
  transition-delay: 0.1s;
}

.top-linkbox a {
  display: block;
  color: white;
}

.subpage {
}

.subpage.sp-1 {
}

.subpage.sp-2 {
}


.alt-one {
  margin-bottom: 0;
  padding-bottom: 0;
}

.alt-two .content-wrapper, .two-col {
  -webkit-column-count: 2;
  -webkit-column-gap: 80px;
  -moz-column-count: 2;
  -moz-column-gap: 80px;
  column-count: 2;
  column-gap: 80px;
}

.alt-two .content-wrapper p, .two-col p {
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

/*
******** 50% FLOAT mit 20 Gutter *************
*/
.subpage.page-grid-1 .article-div > section {
  width: 50%;
  float: left;
}

.subpage.page-grid-1 .article-div > section:nth-child(odd) {
  padding-right: 10px;
}

.subpage.page-grid-1 .article-div > section:nth-child(even) {
  padding-left: 10px;
}

/*
******** 33% FLOAT mit 20 Gutter *************
*/
.subpage.page-grid-2 .article-div > section {
  width: calc(33.3333% - (2 * 20px / 3));
  float: left;
  margin-left: 20px;
}

.subpage.page-grid-2 .article-div > section:nth-child(3n+1) {
  clear: both;
  clear-after: both;
}

.subpage.page-grid-2 .article-div > section:nth-child(3n+1 ) {
  margin-left: 0px;
}

/*
******** 25% FLOAT mit 20 Gutter *************
*/
.subpage.page-grid-3 .article-div > section {
  width: calc(25% - (3 * 20px / 4));
  float: left;
  margin-left: 20px;
}

.subpage.page-grid-3 .article-div > section:nth-child(4n+1) {
  clear: both;
  clear-after: both;
}

.subpage.page-grid-3 .article-div > section:nth-child(4n+1 ) {
  margin-left: 0px;
}

/*
******** 33%/66% FLOAT mit 20 Gutter *************
*/
.subpage.page-grid-4 .article-div > section:nth-child(odd) {
  width: calc(33.3333% - (1 * (20px + 5px) / 2));
  float: left;


}

.subpage.page-grid-4 .article-div > section:nth-child(even) {
  width: calc(66.6666% - (1 * (20px - 5px) / 2));
  float: left;
  margin-left: 20px;

}

.subpage.page-grid-4 .article-div > section:nth-child(2n+1) {
  clear: both;
  clear-after: both;
}


/*
******** 66%/33% FLOAT mit 20 Gutter *************
*/
.subpage.page-grid-5 .article-div > section:nth-child(even) {
  width: calc(33.3333% - (1 * (20px + 5px) / 2));
  float: left;


}

.subpage.page-grid-5 .article-div > section:nth-child(odd) {
  width: calc(66.6666% - (1 * (20px - 5px) / 2));
  float: left;
  margin-left: 20px;

}

.subpage.page-grid-5 .article-div > section:nth-child(2n+1) {
  clear: both;
  clear-after: both;
}


.subpage.page-grid .article-div:after, .subpage.page-grid:after {
  clear: both;
  display: block;
  content: "";
}

.subpage.page-grid .article-div {
  clear: both;
}

.subpage.page-grid .article-div > section > .sectiondiv {
  /*background: #eee url(/layout/test_bullseye.svg) no-repeat center center / auto 100% ;*/
}

.subpage.page-grid .article-div > section > .sectiondiv > .content-block {
  padding: 10px;
  background: rgba(255, 206, 238, 0.13);
}


.column-blocks > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.col-block-1 > div > .co-bl-inn {
  flex-basis: calc(50% - 10px);

}

.col-block-2 > div > .co-bl-inn {
  flex-basis: calc(33.1% - 10px);
}

.col-block-3 > div > .co-bl-inn {
  flex-basis: calc(25% - 10px);
}

.col-block-4 > div > .co-bl-inn:nth-child(1) {
  flex-basis: calc(33.1% - 10px);
}

.col-block-4 > div > .co-bl-inn:nth-child(2) {
  flex-basis: calc(66.666% - 10px);
}

.col-block-5 > div > .co-bl-inn:nth-child(2) {
  flex-basis: calc(33.333% - 10px);
}

.col-block-5 > div > .co-bl-inn:nth-child(1) {
  flex-basis: calc(66.666% - 10px);
}

.col-block-6 > div > .co-bl-inn:nth-child(1) {
  flex-basis: calc(75% - 10px);
}

.col-block-6 > div > .co-bl-inn:nth-child(2) {
  flex-basis: calc(25% - 10px);
}

.col-block-7 > div > .co-bl-inn:nth-child(2) {
  flex-basis: calc(75% - 10px);
}

.col-block-7 > div > .co-bl-inn:nth-child(1) {
  flex-basis: calc(25% - 10px);
}

.co-bl-inn {
  /*border:1px dotted red;*/
}

/*
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
*/
/*
header {
  position: fixed;
  z-index: 50;
  width: 100%;
  top:0;
  left:0;
}
*/
@font-face {
  font-family: "Alegreya-Bold";
  src: url("/css/fonts/Alegreya-Bold.eot?#iefix") format("embedded-opentype"),
  url("/css/fonts/Alegreya-Bold.ttf") format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "Asap-Bold";
  src: url("/css/fonts/Asap-Bold.eot?#iefix") format("embedded-opentype"),
  url("/css/fonts/Asap-Bold.ttf") format("truetype");
  font-display: fallback;
}

@font-face {
  font-family: "Asap-Regular";
  src: url("/css/fonts/Asap-Regular.eot?#iefix") format("embedded-opentype"),
  url("/css/fonts/Asap-Regular.ttf") format("truetype");
  font-display: fallback;
}

body, font, p, tbody {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 11px;
  line-height: 16px;
  font-weight: normal;
}

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

#fancybox-wrap *, #fancybox-outer *, #fancybox-wrap {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/*
video {
  width: 100%    !important;
  height: auto   !important;
}
*/

/* ================================= 
   Content
   ================================= */
.platocontent, .platocontent p, .platocontent tbody, .content-wrapper, .cms_content_content, footer, header, .content-wrapper, .content-wrapper p, .content-block, .content-block p, section {
  font-family: "Asap-Regular", Georgia, serif;
  font-size: 16px !important;
  text-decoration: none;
  line-height: 24px;
  color: #4d4d4d;
}

b, strong {
  font-family: "Asap-Bold", Georgia, serif;
  font-weight: normal !important;
}

.platocontent h1, .cms_h1_content {
  color: #09141a;
  font-size: 45px;
  font-weight: normal !important;
  margin: 0px;
  padding: 0px 0px 10px 0px;
  line-height: normal;
  font-family: "Alegreya-Bold", Georgia, serif;
}

.platocontent h2, .cms_h2_content {
  color: #09141a;
  font-size: 24px;
  font-weight: normal !important;
  margin: 0px;
  padding: 0px 0px 10px 0px;
  line-height: normal;
  font-family: "Alegreya-Bold", Georgia, serif;
}

.platocontent h3 {
  font-size: 16px;
  font-weight: normal !important;
  margin: 0px;
  padding: 9px 0px 4px 0px;

}


h4 {
  color: #09141a;
  font-weight: bold !important;
  margin: 0px;
  padding: 0px;
  line-height: normal;
  font-family: "Alegreya-Bold", Georgia, serif;
  font-size: 19px !important;
}


.contact_form_label {
  font-size: 16px;
  font-weight: bold !important;
  margin: 0px;
  padding: 9px 0px 4px 0px;
}


/* ================================= 
   Margin && Content
   ================================= */
.platocontent p, .platomargin p {
  padding: 10px 0px 0px 0px;
  margin: 0px;
}

.platocontent p.p-block, .platomargin p.p-block {
  margin: 0px;
  padding: 18px 0px 0px 0px;
  clear: both;
}

.cms_h1_content, .cms_h2_content, .cms_h1_margin, .cms_h2_margin {
  margin: 0px;
  padding: 0px;
  line-height: normal;
}

/* ================================= 
   Standard Contents
   ================================= */
cite {
  margin: 0px 0px 0px 20px;
  padding: 0px 0px 0px 15px;
  border-left: 1px solid #CCC;
  display: block;
  font-style: normal;
}

br.invisible-br, .br {
  height: 1px;
  clear: both;
  line-height: 1px;
  overflow: hidden;
  font-size: 1px;
}

/* ================================= 
   Links
   ================================= */
.platocontent a, .platomargin a {
  color: #000;
  text-decoration: none;
  font-size: inherit;
}

.platocontent a:hover, .platomargin a:hover, a:hover {
  color: #00a5d4 !important;
  text-decoration: underline;
}

a.stdlink, a.stdlink-ext, a.stdlink-ext:link, a.internal-link, a.internal-link:link, a.mail-link, a.popup-link {
  color: #000;
  text-decoration: none;
  font-size: inherit;

  /* color fade animation example */
  -o-transition: .25s;
  -ms-transition: .25s;
  -moz-transition: .25s;
  -webkit-transition: .25s;
  transition: .25s;

}

a.stdlink:hover, a.stdlink-ext:hover, a.internal-link:hover, a.mail-link:hover {
  color: #00a5d4;
  text-decoration: underline;
}


/* ================================= 
   Lists UL OL
   ================================= */
ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.platocontent ul.stdlist, .platomargin ul.stdlist {
  margin: 5px 0px 5px 0px;
  padding: 0px;
}

.platocontent ul.stdlist, .platomargin ul.stdlist {
  list-style-type: none;
}

.platocontent ul.stdlist ul, .platomargin ul.stdlist ul {
  margin: 0px 0px 2px 10px;
  padding: 0px;
}

/* IE 
* html .platocontent ul.stdlist ul, * html .platomargin ul.stdlist ul {
margin:0px 0px 2px 0px;
}*/

.platocontent ul.stdlist li, .platomargin ul.stdlist li {
  margin: 0px;
  padding: 0px 0px 0px 12px;
  background: url(/images/layout/list_item.gif) no-repeat 0 10px;
}

.platocontent ol.stdlist, .platomargin ol.stdlist {
  margin: 5px 0px 0px 20px;
  padding: 0px;
}

.platocontent ol.stdlist ol, .platomargin ol.stdlist ol {
  margin: 0px 20px;
  padding: 0;
}

.platocontent ol.stdlist li, .platomargin ol.stdlist li {
  padding: 0px 0px 0px 0px;
  margin: 0;
}

/* Count 1. 1.1 etc. */
.platocontent ol, .platomargin ol {
  counter-reset: item;
}

.platocontent ol li, .platomargin ol li {
  display: block
}

.platocontent ol li:before, .platomargin ol li:before {
  content: counters(item, ".") ". ";
  counter-increment: item;
}


.platocontent ul.cl li, .platomargin ul.cl li {
  margin: 0px;
  padding: 0px 0px 0px 16px;
}

.platocontent ul.cl ul, .platomargin ul.cl ul {
  margin: 0px 10px 2px 16px;
}

/* ================================= 
   Lists DL
   ================================= */
.platocontent dl {
  width: 100%;
  overflow: hidden;
  padding: 0px;
  margin: 0px 0px 10px 0px;
}

.platocontent dt {
  font-weight: bold;
  float: left;
  width: 30%;
  padding: 0px;
  margin: 0px;
}

.platocontent dd {
  float: left;
  width: 70%;
  padding: 0px;
  margin: 0px;
}

.platocontent dd ul {
  margin: 0px !important;
}


/* ================================= 
   Lists Checkmark
   ================================= */
.platocontent ul.cl li.plus, .platomargin ul.cl li.plus {
  background: url(/images/layout/list_item_checkmark.gif) no-repeat 0px 3px;
}

.platocontent ul.cl li.minus, .platomargin ul.cl li.minus {
  background: url(/images/layout/list_item_checkmark_off.gif) no-repeat 0px 3px;
  color: #AAA;
}

/* ================================= 
   CMS Content Classes and Modules
   ================================= */
/* Bild Tag */
.inline-image {
  vertical-align: middle;
}

/* Suchbegriff hervorheben - Search Klasse */
.mark-term {
  color: #CC0000 !important;
  background: yellow !important;
  font-weight: bold;
  font-size: inherit;
  font-family: inherit;
}

/* ================================= 
   Validator, form-table, Inputs
   ================================= */
.platocontent input, .platocontent select, .platocontent textarea, .platocontent button {
  font-family: "Asap-Regular", Georgia, serif !important;
  font-size: 14px !important;
  margin: 0px;
}

label {
  cursor: pointer;
  font-family: "Asap-Bold", Georgia, serif;
}

.contact_label {
  width: 100%;
  overflow: hidden;
  font-family: "Asap-Bold", Georgia, serif;
  font-weight: bold;
  color: #09141a;
  padding-top: 40px;
  padding-bottom: 5px;
}

.tab-row.type-b .b div {
  width: 42%;
  margin-bottom: 9px;
  margin-right: 0px;
}


.val-err, .error {
  color: #CC0000;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  display: inline-block;
  padding-top: 2px;
}

.val-desc-err {
  color: #CC0000;
  font-weight: bold;
}

.val-value {
  color: #666;
}

div.val-input-error .p-ti {
  display: inline;
}

.form-table {
  width: 100%;
}

table.form-table tr td, div.form-table .b, div.form-table .a {
  padding: 3px 0px;
}


table.form-table td.a, div.form-table .a {
  white-space: nowrap;
  padding-right: 15px;
  padding-top: 5px;
  vertical-align: top;
  width: 30%;
}


table.form-table td.captcha {
  padding-top: 10px !important;
  /*height: 40px;*/
}

table.form-table td.b, div.form-table .b {
  width: 70%;
  vertical-align: top;
}


div.form-table {
  display: block;
}

div.form-table .tab-row {
  display: block;
}

div.form-table .a, div.form-table .b {
  display: block;
}

div.form-table .a {
  width: 100%;
}

div.form-table .b {
  width: 100%;
}


.form-table td table.inner td {
  padding: 0px 0px;
  vertical-align: top;
}

.p-ra, .p-cx {
  vertical-align: text-bottom !important;
  margin-right: 3px;
  /*vertical-align:middle\9;*/
}

.p-ta, .p-ti, .p-dd {
  width: 100%;
  border: 1px solid #000;
  padding: 7px 5px;
  margin: 0 0 8px 0 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #FFF;
}


.p-mul {
}

.p-dd {
  cursor: pointer;
}

.p-sb, .p-sb:active, .p-sb:focus {

  border: 1px solid #000;
  padding: 6px 10px !important;
  color: white;
  cursor: pointer;
  background: black;
  font-weight: bold;
  margin: 10px 0 0 0 !important;
}


/* ++++++++++ RADIO +++++++++++++++++ */

.form-table input[type="radio"] {
  position: absolute;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  -o-opacity: 0;
}

.form-table input[type="radio"] + label {
  position: relative;
  padding: 0 30px 0 29px;

}

.form-table input[type="radio"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  height: 20px;
  width: 20px;
  background: white;
  border: 1px solid #000;
  box-shadow: inset 0px 0px 0px 4px white;
  -webkit-box-shadow: inset 0px 0px 0px 4px white;
  -moz-box-shadow: inset 0px 0px 0px 4px white;
  -o-box-shadow: inset 0px 0px 0px 4px white;
  box-shadow: inset 0px 0px 0px 4px white;
  -webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;
  border-radius: 18px;
}

.form-table input[type="radio"]:checked + label:before {
  background: #000;
}


/* ++++++++++ CX +++++++++++++++++ */

.form-table input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  -moz-opacity: 0;
  -webkit-opacity: 0;
  -o-opacity: 0;
}

.form-table input[type="checkbox"] + label {
  position: relative;
  padding: 0 30px 0 29px;

}

.form-table input[type="checkbox"] + label:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  height: 20px;
  width: 20px;
  background: white;
  border: 1px solid #000;
  box-shadow: inset 0px 0px 0px 4px white;
  -webkit-box-shadow: inset 0px 0px 0px 4px white;
  -moz-box-shadow: inset 0px 0px 0px 4px white;
  -o-box-shadow: inset 0px 0px 0px 4px white;
  box-shadow: inset 0px 0px 0px 4px white;
  /*-webkit-border-radius: 18px;
  -moz-border-radius: 18px;
  -o-border-radius: 18px;*/
}

.form-table input[type="checkbox"]:checked + label:before {
  background: #000;
}


.p-ti-error, .p-ta-error, .p-dd-error {
  -moz-box-shadow: 0px 0px 1px rgba(250, 0, 0, 1);
  -webkit-box-shadow: 0px 0px 1px rgba(250, 0, 0, 1);
  box-shadow: 0px 0px 1px rgba(250, 0, 0, 1);
}

.mand-hint {
  color: #666;
  font-size: 12px !important;
  margin-bottom: 10px;
}

.man-err-field {
  padding: 10px;
  border: 1px solid crimson;
  margin-bottom: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}

.mand-hint {
  padding: 10px;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}


div.val-help {
  display: none;
  position: absolute;
  clear: both;
  z-index: 100;
  background: url(/images/std/validator_help_yellow.gif) no-repeat 0px 0px;
  margin: 1px 0px 0px -3px;
}

div.val-help div {
  border-bottom: 1px solid #ffc000;
  border-right: 1px solid #ffc000;
  padding: 8px;
  margin-top: 5px;
}

span.hlp-span {
  padding-left: 4px;
  padding-top: 4px;
}

.val-man-flag {
  font-weight: bold;
  color: #CC0000;
}

.val-view {
  border: 1px dotted #DDD;
  width: 100%;
  display: block;
  padding: 1px 0px;
  text-indent: 3px;
  /*margin:0px 5px;*/
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
}

.pwd-infos {
  font-size: 10px;
  margin-top: 4px;
}

.pwd_invalid {
  color: crimson;
  font-size: 12px;
  border: 1px solid #ddd;
  padding: 0 1px 1px 1px;
  display: inline-block;
  line-height: 12px;
}

.pwd_valid {
  color: green !important;
}


.val-normal * {
  font-weight: normal;
  font-family: "Asap-Regular", Georgia, serif;
}


/* =================================
   Paging
   ================================= */
/*
ul.paging {
margin: 0px;
padding: 0px;
list-style-type: none;
text-align:center;
position:relative;
left:50%;
float:left;
border:1px solid red;
}

ul.paging li {
float:left;
padding:0px 0px 0px 0px !important;
margin:0px 1px 1px 0px !important; 
background-image:none;
right:50%;
position:relative;
line-height:21px;
border:1px solid blue;
}
*/

ul.paging {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  text-align: center;
  position: relative;
  float: left;
}

ul.paging li {
  float: left;
  padding: 0px 0px 0px 0px !important;
  margin: 0px 2px 2px 0px !important; /* IE ? */
  background-image: none;
  position: relative;
  line-height: 21px;
}


ul.paging li a, ul.paging li div {
  color: #444 !important;
  border: 1px solid #EEE;
  padding: 2px 5px;
  display: inline;
  background-image: none;
}

ul.paging li a {
  background: #F5F5F5;
  text-decoration: none;
}

ul.paging li div {
  font-weight: bold;
}

ul.paging li a:hover {
  background: #FFF;
  text-decoration: none;
}

.paging-xitems {
  float: right;
  white-space: nowrap;
  line-height: 21px;
}

.paging-box {
  float: left;
  width: 320px;
}

.paging .next, .paging .prev, .paging .points {
}

/* nur benötigt, wenn Paging-Jump Funktion aktiv
ul.paging .page-textinput, ul.paging .page-submit {
font-size:10px;
color: #444;
border:1px solid #CCC;
background:none;
}
*/


/* =================================
   FAQ
   =================================

div.faq-q {
border-bottom:1px solid #CCC;padding:4px 0px;font-weight:bold;
cursor:pointer;
}

div.faq-q:hover {
background:#F2F2F2;
}

div.faq-active {
background:#F2F2F2;color:red;
}

div.faq-a {
display:none;
background:#F2F2F2;padding:4px 15px;margin-bottom:10px;
}
*/


/* ================================= 
   CMS Content-Types Bilder
   ================================= */
div.thumb {
}

div.thumb div {
}

img.thumb {
}

.left-float-image {
  float: left;
}

.right-float-image {
  float: right;
}

div.image-subscription {
  padding: 1px 4px;
  font-size: 10px;
}

.right-image img {
  float: right;
}

.left-image img {
  float: left;
}

.div-table {
  display: table;
}

.div-trow {
  display: table-row;
}

.div-cell {
  display: table-cell;
  vertical-align: top;
}

.ita-bottom {
  vertical-align: bottom;
}

.ita-middle {
  vertical-align: middle;
}

/* ================================= 
   CMS Content-Types 
   ================================= */
div.dc-first {
}

div.dc-mid {
}

div.dc-last {
}

div.content-block {
}

div.content-div-1 {
  background: #DDD;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #666;
  padding: 8px 12px;
}

div.content-div-1 div.content-div-inner {
}

div.content-div-2 {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #666;
  padding: 8px 12px;
}

div.content-div-3 {
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: #666;
  padding: 8px 12px;
  float: left;
  -webkit-border-radius: 5px 5px 5px 5px;
  -moz-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}

/* TAG: [TRENNER] */
div.ruler, hr {
  margin-bottom: 11px;
  border: 0;
  border-bottom: 1px solid #666;
  height: 12px;
  overflow: hidden;
}


/* ================================= 
   [TAB] Tag
   ================================= */
table.easy-tab td {
  vertical-align: top;
}

table.easy-tab td.first {
}

table.easy-tab-dot {
  width: 100%;
}

table.easy-tab-dot tr {
  background: url(/images/layout/tabdots.gif) repeat-x 0px 0px;
}

table.easy-tab-dot td span.bg {
  background: #FFF;
}

table.easy-tab-dot td span.bg {
  padding: 0px 0px 0px 3px;
}

table.easy-tab-dot td.first span.bg {
  padding: 0px 3px 0px 0px;
}

/* ================================= 
   Sitemap
   =================================*/

#sitemap a {
}

#sitemap a:hover {
}

#sitemap ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

#sitemap ul ul {
  margin: 0px 0px 10px 15px;
}

#sitemap ul li {
  margin: 0px;
  padding: 0px 0px 0px 0px;
}


/* =================================
   Gallery
   ================================= */
.gallery_fancy_image {
  margin-left: -3.33%;
}

.gallery_fancy_image a {
  float: left;
  margin: 3.33% 0 0 3.33%;
  width: 30%;
}

.gallery_fancy_image img {
  width: 100%;
}

.gallery_fancy_image:after {
  display: block;
  clear: both;
  content: " ";
}

.gallery_overview {
  margin-bottom: 20px;
  background: #EEE;
}

.gallery_overview img {
  float: left;
  margin: 0px 20px 0px 0px;
}

.gallery_albuminfo {
}

.gallery_albuminfo a {
  margin-top: 20px;
  display: block;
}


/* =================================
   Content-Type 21 - Tabs
   ================================= */
.ui-tabs-frontend {
  padding: 15px;
}

.ui-tabs-frontend .ui-tabs-nav {
  position: relative;
  z-index: 20 !important;
  list-style: none;
  margin: 0px 0px 0px 0px !important;
  padding: 0px !important;
  text-align: center;
}

.ui-tabs-frontend .ui-tabs-nav a {
  white-space: nowrap;
  display: block;
}

.ui-tabs-frontend .ui-tabs-nav li {
  /*background: url(/images/backend/tab_off.gif) no-repeat;*/
  background: none;
  background-color: #F0F0F0;
  /*margin: 0px 5px 0px 0px;*/
  margin: 0px 5px -1px 0px; /* ohne Abstand 0px -1px 0px 0px;*/
  padding: 0px 5px;
  float: left;
  /*width: 105px;*/
  height: 22px;
  border-top: 1px solid #CCC;
  border-left: 1px solid #CCC;
  border-right: 1px solid #CCC;
  border-bottom: 0px solid #CCC;
}

/*
.ui-tabs-nav li {
background: url(/images/backend/tabk_off.gif) no-repeat !important;
width: 100px;
}
*/

.ui-tabs-frontend .ui-tabs-nav li a:link {
  color: #7c9ead !important;
  text-decoration: none !important;
}

.ui-tabs-frontend .ui-tabs-nav li a:visited {
  color: #7c9ead !important;
  text-decoration: none !important;
}

.ui-tabs-frontend .ui-tabs-nav li a:hover {
  text-decoration: underline !important;
  cursor: pointer;
}

.ui-tabs-frontend .ui-tabs-selected {
  /*background: url(/images/backend/tab_on.gif) no-repeat !important;*/
  background-image: none;
  background-color: #FFF !important;
  position: relative;
  top: 0px;
  z-index: 2;
  margin-top: 0;
}

.ui-tabs-frontend .ui-tabs-selected {
  /*background: url(/images/backend/tabk_on.gif) no-repeat !important;*/
}

.ui-tabs-frontend .ui-tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
  display: block;
  clear: both;
  content: " ";
}

.ui-tabs-frontend .ui-tabs-hide {
  display: none;
}

.ui-tabs-frontend .ui-tabs-nav a, .ui-tabs-frontend .ui-tabs-nav a span {
  /*float: center;  fixes dir=ltr problem and other quirks IE */
}

.ui-tabs-frontend .ui-tabs-nav a span {
  line-height: 22px;
}

.ui-tabs-frontend .ui-tabs-nav .ui-tabs-selected a span {
  font-weight: bold;
}

/* Additional IE specific bug fixes... */
* html .ui-tabs-frontend .ui-tabs-nav { /* auto clear @ IE 6 & IE 7 Quirks Mode */
  display: inline-block;
}

*:first-child + html .ui-tabs-frontend .ui-tabs-nav { /* auto clear @ IE 7 Standards Mode - do not group selectors, otherwise IE 6 will ignore complete rule (because of the unknown + combinator)... */
  display: inline-block;
}

.ui-tabs-frontend .ui-tabs-panel {
  clear: all;
  border: 1px solid #CCC;
  border-width: 1px 1px 1px 1px;
  padding: 10px;
  margin-bottom: 10px;
}

/* ================================= 
   Content Type 19 - Table
   ================================= */
table.tablizer-2, table.tablizer-3 {
}

table.tablizer-2 .td-1 {
  width: 49%;
}

table.tablizer-2 .td-2 {
  width: 51%;
  padding-left: 10px;
}

table.tablizer-3 .td-1 {
  width: 30%;
}

table.tablizer-3 .td-2 {
  width: 35%;
  padding-left: 10px;
}

table.tablizer-3 .td-3 {
  width: 35%;
  padding-left: 10px;
}


/* =================================
   Content Type 11 - Image-Downloads
   ================================= */
.image-dl-float {
  width: 50%;
  float: left;
  margin-bottom: 10px;
}

.image-dl-float-img {
  margin-right: 20px;
  float: left;
}

.image-dl-float-text {
  margin-top: 10px;
  float: left;
}


/* clearfix */
.cf {
  *zoom: 1;
}

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

.cf:after {
  clear: both;
}


/* ++++++++++++ BROWSER SPECIFIC ++++++++++++++ */


header, nav, button, input[type=submit] {
  user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}


::-webkit-input-placeholder {
  color: transparent;
  opacity: 1;
}

:-moz-placeholder { /* Firefox 18- */
  color: transparent;
  opacity: 1;
}

::-moz-placeholder { /* Firefox 19+ */
  color: transparent;
  opacity: 1;
}

:-ms-input-placeholder {
  color: transparent;
  opacity: 1;
}

/* TEXT SELECT COLOR */
::-moz-selection {
  background: #eee;
}

::selection {
  background: #eee;
}

/* NO TEXT SELECT 'user-select'- Values: none | text | toggle | element | elements | all | inherit */
header, footer {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input:focus::-webkit-input-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

input:focus:-moz-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

input:focus::-moz-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

textarea:focus::-webkit-input-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

textarea:focus:-moz-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

textarea:focus::-moz-placeholder {
  opacity: 0 !important;
  color: transparent !important;
}

/*
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
    background: #FFF;
    /*-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.1); * /
}
::-webkit-scrollbar-thumb {
    background: @color_lg;
    /*-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.2); * /
}
::-webkit-scrollbar-thumb:hover {
    background: @color_dg;
}
::-webkit-scrollbar-thumb:active {
    background: #888;
    /*-webkit-box-shadow: inset 1px 1px 2px rgba(0,0,0,0.3); * /
}
*/

/* iPad etc. rounded corners, shadows etc. remove */
input[type=text], input[type=password], input[type=number], input[type=email], input[type=submit], select, textarea, button {
  -webkit-border-radius: 0;
}

input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  -webkit-text-size-adjust: none; /*-webkit-text-size-adjust: 100%;*/
}

/* kein broser-auto-focus */
textarea, input, select, button {
  outline: none;
}

/* windows, ie10> */
a:active {
  background-color: transparent;
}

/*
html *, html a {
  -webkit-font-smoothing: antialiased !important;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004) !important;
}
*/


/* =================================
   LAYOUT
   ================================= */
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #eee;
}

.page {
  min-height: 100%;
  position: relative;
  background: #e6e6e6;

}


.main-content {
  /*padding-bottom: 360px !important; */
  /* height footer */
}



footer {
  min-height: 360px;
  background: #a5a7a9;
  left: 0; /* left:0 ggf auskommentieren */
  padding-top: 30px;
}

nav ul, nav li {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}


/* =================================
   Width Setter Models
   ================================= */

.iwsetter {
  width: 960px;
  margin: 0px auto;
}


.col-main {
}

.col-margin {
}

.col-nav {
}


.box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
align-items: flex-end;
}

.box-container > div {

}

.box-footer {
  position: relative;
}

.box-small {
  width: 220px;
  float: left;
  margin-left: 20px;
  position: relative;
}

.box-large {
  width: 300px;
  float: left;
  margin-left: 20px;
  position: relative;
}

.box-small.padded {
  margin-right: 80px;
}

footer .box-small img {
  /*display: inline-block;*/
}

footer .box-large {
  min-height: 200px;
  width: 30%;
  margin-left: 0px;

}

.box-large.box-1 {
  width: 20%;
  top: 70px;
}

.box-large.box-2 {
  width: 18%
}

footer .box-container {
  margin-left: 0px;
}


footer a {
  color: #3d3e3e;
  font-family: "Asap-Bold", Georgia, serif;
  text-decoration: none;
}

footer a:hover {
}

.xtra {
  border: 1px solid #b3b3b3;
  width: 300px;
  height: 300px;
  float: right;
  background: #cccccc;
  padding: 8px 20px;
}

.xtra h1:nth-of-type(2) {
  font-size: 60px;
}

#platocontent {
  margin-bottom: 50px;
}


.news-icon {
  float: left;
  width: 60px;
  background-position: top center;
  background-repeat: no-repeat;
  padding-top: 58px;
  text-transform: uppercase;
  text-align: center;
  line-height: 18px;
  font-size: 13px;
  margin-right: 20px;
  font-style: italic;
  margin-top: 8px;
}

.news-text {
  float: left;
  width: 460px;
  margin-bottom: 40px;
}

.news-text a {
  color: #000;
  text-decoration: none;
}

.news-text a:hover {
  color: #000;
  text-decoration: underline;
}

.news-ec a {
  color: #000;
  text-decoration: none;
  padding-left: 30px;
  background: url(/layout/icon_0.jpg) no-repeat top left;
  background-size: 24px !important;
  display: inline-block;
  padding-right: 20px;
  line-height: 48px;
  font-family: "Asap-Bold", Georgia, serif;
}

.news-ec a:hover, .news-ec a.active {
  color: #000;
  text-decoration: underline;
}

.news-detail {
}

.news-ec {
  margin: 10px 0 0 0;
  position: absolute;
}

.news-image {
  text-align: center;
  margin: 30px 0 30px 0;
}

.news-image img {
  border: 10px solid white;
}


#slider-next a, #slider-prev a {
  position: absolute;
  cursor: pointer;
  top: 50%;
  margin-top: -25px;
  z-index: 999;
  width: 30px;
  height: 50px;

}

#slider-next a {
  right: -50px;
  background: url(/layout/arr_right.png) no-repeat center center;
}

#slider-prev a {
  left: -50px;
  background: url(/layout/arr_left.png) no-repeat center center;
}

.slider-box {
  max-height: 344px;

  height: 33vw;
}

.bx-wrapper .bx-pager, .bx-wrapper .bx-controls-auto {
  bottom: -25px !important;
  width: 200px !important;
  margin: 0 auto !important;
  left: 50%;
  text-indent: -100px;
  height: 10px !important;
  padding: 0 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  width: 8px !important;
  height: 8px !important;
}


.bx-wrapper .bx-pager.bx-default-pager a:hover, .bx-wrapper .bx-pager.bx-default-pager a.active {
  background: #5f6264 !important;
}

.bx-wrapper .bx-pager.bx-default-pager a {
  background: #8c8e91 !important;
}

.clickstream a {
  color: #000;
  text-decoration: none;
}

.clickstream a:hover {
  color: #000;
  text-decoration: underline;
}


.overlay {
  display: none;
  z-index: 10000 !important;
  left: 0;
  right: 0;
  margin-left: auto;
  width: 560px;
  margin-right: auto;
}

.infopdf {
  /*  margin-top:25px !important;*/
  margin-top: -345px !important;
  width: 310px !important;
}

.infopdf a {
  font-weight: bold !important;
}


.social-icons img {
  height: 43px;
}


.ct-nr-6 h2 {

  margin: 0 18%;
}

.contact-hint {
  display: none;
}


footer .iwsetter {
  max-width: 1150px;
  width: 100%;
  overflow: hidden;
}


body, html, iframe {
  hyphens: manual;
}


.nav-bar {
  background: #000;
  color: #fff;
}



/*328px*/
.p-wrap {
  display: flex;
  flex-wrap: nowrap;
}
.p-marg {
  min-width: 328px;
  margin-left:80px;
}


.lxe-box{

border:1px solid #888;
width:50%;
background:white;
margin:0 auto;
padding:20px;  
box-shadow: 0px 0px 9px -2px rgb(0 0 0 / 35%);
z-index: 999999999;
height:100%;
font-size: 12px;
max-width: 60rem;
  
  
}

.lxe-box-header:after{
  
  background: #fff url(/layout/wohnraum_logo.png) no-repeat top left / 14px auto;
   content:"";
  
 
}

.lxe-box .mfp-close{
  
  position: relative;
  opacity: 1;
  font-family: inherit;
  margin-left: 10px;
}

.lxe-box img{
  
  float: right;
    height: 60px;
    margin-left: 15px;
}
.lxe-buttons .p-sb{
  white-space: nowrap;
      padding: 1.25rem 6rem !important;;
          margin-left: 3px !important;
    text-align: left;
}

.lxe-buttons{
      margin-top:3rem;
}
.lxe-box-header {
    font-size: 13px;
    font-weight: bold;
}

input.p-sb, a.p-sb, button.p-sb {
  cursor: pointer;
  padding: 0.7rem 8rem;
  
  line-height: inherit;
  font-size: inherit;
/*  background: #ffff00;*/
  background: #9A9A9A url(/layout/arrow_right.svg) no-repeat calc(100% - 40px) center / 20px auto;
  color: #fff !important;
  text-transform: uppercase;
}

[class*=wcol] img { 
  width:100%; 
  height:auto;
} 

.cookie-note
{
  background: #EFEFEF;
  position: relative;
}
.cookie-note-text
{
  color: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #fff;
  padding: 1rem;
}

.cookie-note img.inline-image
{
  max-width: 100%;
}