/*-------------------------------------------------------------------------------------

  Copyright (c) 2014 Pixelzauber GmbH, Switzerland
  CSS definition for basic layout

-------------------------------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");

:root {
  --color-black: rgb(0, 0, 0);
  --color-black-90: rgb(26, 26, 26);
  --color-black-80: rgb(51, 51, 51);
  --color-black-70: rgb(77, 77, 77);
  --color-black-60: rgb(102, 102, 102);
  --color-black-50: rgb(128, 128, 128);
  --color-black-40: rgb(153, 153, 153);
  --color-black-30: rgb(179, 179, 179);
  --color-black-20: rgb(204, 204, 204);
  --color-black-15: rgb(217, 217, 217);
  --color-black-10: rgb(230, 230, 230);
  --color-black-05: rgb(242, 242, 242);
  --color-white: rgb(255, 255, 255);
  --color-orange: rgb(240, 195, 34);
  --color-blue: rgb(0, 100, 140);
  --color-red: rgb(196, 34, 40);
  --color-green-h: rgb(174, 202, 12);
  --color-green-m: rgb(134, 157, 3);
  --color-green-d: rgb(115, 135, 5);
  --color-grey: rgb(108, 108, 110);
  --font-main: "Roboto", Arial, Helvetica, sans-serif;
}

/**
 * normalize
 *
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
select,
input,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}
html {
  height: 100%;
  font-size: 16px;
  line-height: 23px;
}
body {
  height: 100%;
  line-height: 1;
}
body ol,
body ul {
  list-style: none;
  margin-bottom: 0;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a,
a:active,
a:focus,
button,
button:focus,
button:active {
  outline: none;
  outline: 0;
}
input::-moz-focus-inner {
  border: 0;
}
ul,
ol {
  padding: 0;
  margin-left: 25px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 8px;
}

/**
 * Layout
 *
 */
header,
section,
nav,
article,
main,
address,
footer {
  position: relative;
  float: left;
  width: 100%;
}

.inner {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1178px;
  height: auto;
}

.mobile {
  display: none;
}
.desktop {
  display: block;
}
.center {
  text-align: center;
}
.right {
  text-align: right;
}
.gray {
  background-color: var(--color-black-05);
}
.content {
  margin: 0;
  width: 100%;
}
.column-left,
.spalte-links {
  float: left;
  width: calc(100% - 400px);
}
.column-right,
.spalte-rechts {
  float: right;
  width: 378px;
}
.goTop {
  cursor: pointer;
}
.goMore {
  cursor: pointer;
}

.flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.flexbox > * {
  flex-basis: 260px;
  flex-basis: calc(calc(760px - 100%) * 999);
  flex-grow: 1;
}
.two-col {
  flex-grow: 2;
}
.three-col {
  flex-grow: 3;
}
.four-col {
  flex-grow: 4;
}

.block,
.block_05,
.block_10,
.block_15,
.block_20,
.block_25,
.block_30,
.block_33,
.block_35,
.block_40,
.block_45,
.block_50,
.block_55,
.block_60,
.block_65,
.block_66,
.block_70,
.block_75,
.block_80,
.block_85,
.block_90,
.block_95,
.block_100 {
  float: left;
  height: auto;
}
.block {
  display: flex;
  flex-wrap: wrap;
  float: left;
  margin: 0 -11px;
  width: calc(100% + 22px);
}
.block > .block {
  margin: 0 11px;
  display: block;
}
.block.border {
  margin: 11px;
}
.block.half {
  width: calc(50% - 22px);
}
.block.third {
  width: calc(33.3333% - 22px);
}
.block.two-third {
  width: calc(66.6666% - 22px);
}
.block.quarter {
  width: calc(25% - 22px);
}
.block.three-quarter {
  width: calc(75% - 22px);
}
.block.fifth {
  width: calc(20% - 22px);
}
.block.two-fifth {
  width: calc(40% - 22px);
}
.block.three-fifth {
  width: calc(60% - 22px);
}
.block.four-fifth {
  width: calc(80% - 22px);
}
.block.full {
  width: calc(100% - 22px);
}
.block.addr {
  float: right;
  margin: 0 11px;
  width: calc(40% - 22px);
}
.block.form {
  margin: 0 11px;
  width: calc(60% - 22px);
}
.block_05 {
  width: 5%;
}
.block_10 {
  width: 10%;
}
.block_15 {
  width: 15%;
}
.block_20 {
  width: 20%;
}
.block_25 {
  width: 25%;
}
.block_30 {
  width: 30%;
}
.block_33 {
  width: 33.3333%;
}
.block_35 {
  width: 35%;
}
.block_40 {
  width: 40%;
}
.block_45 {
  width: 45%;
}
.block_50 {
  width: 50%;
}
.block_55 {
  width: 55%;
}
.block_60 {
  width: 60%;
}
.block_65 {
  width: 65%;
}
.block_66 {
  width: 66.6666%;
}
.block_70 {
  width: 70%;
}
.block_75 {
  width: 75%;
}
.block_80 {
  width: 80%;
}
.block_85 {
  width: 85%;
}
.block_90 {
  width: 90%;
}
.block_95 {
  width: 95%;
}
.block_100 {
  width: 100%;
}

header {
  position: fixed;
  float: left;
  top: 0;
  left: 0;
  padding: 0;
  height: 125px;
  background-color: var(--color-blue);
  z-index: 100;
  background: var(--color-green-m);
  background-image: linear-gradient(180deg, transparent 0px, transparent 75px, var(--color-white) 75px, var(--color-white) 100%),
    linear-gradient(100deg, var(--color-green-h) 0%, var(--color-green-d) 100%);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.logo {
  float: left;
  margin: 0;
  width: 184px;
}
.logo img {
  float: left;
  margin: 3px 0 0 0;
  width: 100%;
}
footer .logo {
  margin: -50px 0 50px 0;
}

.nav1,
.nav2 {
  float: right;
  width: calc(100% - 200px);
  min-height: 50px;
}
.nav1 {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 70px;
  height: 75px;
}

.header-navLang a,
.header-search a,
.header-login a {
  float: right;
  margin: 0;
  padding: 10px 0 10px 26px;
  cursor: pointer;
  background-image: url("../images/icon_search_white.svg");
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  color: var(--color-white);
}
.header-navLang a {
  margin-left: 10px;
  padding: 10px 0;
  background: unset;
}
.header-login a {
  background-image: url("../images/icon_login_white.svg");
}
.header-navLang a.active {
  color: var(--color-black);
}
.header-search:hover a {
  color: var(--color-black);
  background-image: url("../images/icon_search_black.svg");
}
.header-login:hover a {
  color: var(--color-black);
  background-image: url("../images/icon_login_black.svg");
}

#navMobile .header-search a,
#navMobile .header-login a {
  margin: 0 11px;
  color: var(--color-black);
  background-image: url("../images/icon_search_black.svg");
}
#navMobile .header-login a {
  background-image: url("../images/icon_login_black.svg");
}

#navMobile {
  position: fixed;
  padding-top: 110px;
  right: -100%;
  top: 0;
  width: 100%;
  height: calc(100% - 110px);
  min-height: calc(100% - 110px);
  background: var(--color-black-05);
  z-index: 90;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: none;
  overflow-x: hidden;
  overflow-y: auto;
}

#navMobile.open {
  right: 0;
}

.headerImg {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  background-size: cover;
  background-position: center;
}
.home .headerImg {
  height: 100%;
}
.panorama {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 15vw;
  min-height: calc(90px + 10vw);
  background-image: url(../images/panorama.svg);
  background-position: center top;
  background-size: 102% auto;
  background-repeat: no-repeat;
}
.teaser {
  position: absolute;
  padding: 0;
  left: 0;
  bottom: 20px;
  width: 100%;
  min-height: 50px;
}
.teaser img {
  width: calc(50% - 60px);
}
.klickDown {
  position: absolute;
  left: calc(50% - 20px);
  bottom: 20px;
  width: 40px;
  height: 40px;
  background-image: url(../images/icon_arrow_down.svg);
  background-repeat: no-repeat;
  background-size: 40px auto;
  cursor: pointer;
}

section {
  float: left;
  padding: 100px 0;
  width: 100%;
}

main {
  padding: 50px 0 0 0;
  background-color: var(--color-black-05);
}
main::before {
  content: "";
  position: absolute;
  left: 0;
  top: -15vw;
  width: 100%;
  height: calc(15vw + 1px);
  background-image: url(../images/panorama.svg);
  background-position: center top;
  background-size: 102% auto;
  background-repeat: no-repeat;
  z-index: 10;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -11px 44px -11px;
  width: calc(100% + 22px);
}
.columnNavigation {
  float: left;
  margin: 0 11px 11px 11px;
  width: calc(33.3333% - 22px);
}
.columnContent {
  float: left;
  margin: 0 11px;
  width: calc(66.6666% - 22px);
}
.navigation {
  position: -webkit-sticky;
  position: sticky;
  top: 230px;
  margin: 0;
  width: calc(100% - 30px);
  max-width: 300px;
  min-height: 50px;
}
.content {
  float: left;
  margin: 0;
  width: 100%;
  min-height: 50px;
}
.home #content {
  width: calc(100% - 30px);
}

footer {
  position: relative;
  padding: 16vw 0 33px 0;
  height: auto;
  background-color: var(--color-black-05);
  background-image: url(../images/bg_footer.svg);
  background-position: center top;
  background-size: 102% auto;
  background-repeat: no-repeat;
}
.home footer {
  background-color: var(--color-white);
}

.goUp {
  display: none;
  position: fixed;
  bottom: 44px;
  right: 0;
  height: 40px;
  width: 40px;
  z-index: 100;
  cursor: pointer;
  border-radius: 3px;
  background-color: var(--color-green-m);
  background-image: url("../images/icon_up.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto, auto;
}
#overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
  z-index: 100000;
}
#react-cookie-banner {
  position: fixed;
  padding: 30px;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20px;
  background: var(--color-green-m);
  z-index: 100000;
}

/* Standard Images */
.image-wrapper,
.image-wrapper-left,
.image-wrapper-right,
.image-wrapper-big {
  float: right;
  margin: 0 0 10px 30px;
  width: 40%;
  max-width: 280px;
  height: auto;
}
.image-wrapper-left {
  float: left;
  margin: 4px 30px 10px 0;
}
.image-wrapper-big {
  float: left;
  margin: 4px 0 0 0;
  width: 100%;
  max-width: inherit;
}
.image-wrapper-right {
  float: right;
  margin: 4px 0 10px 30px;
}
.image-wrapper img,
.image-wrapper-left img,
.image-wrapper-right img,
.image-wrapper-big img {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}
.image-zoom-right {
  float: right;
  margin: 0 0 11px 33px;
  width: 40%;
}

/* Images */
.imgFrame,
.imageFrame {
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.05);
  background-position: center;
  -webkit-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.imgFrame::before,
.imageFrame::before {
  content: "";
  display: block;
  padding-top: 56%;
}

/* Video */
.responsive-iframe {
  position: relative;
  margin-top: 0px;
  margin-bottom: 20px;
  padding-bottom: 56.25%;
  padding-top: 0px;
  width: 100%;
  height: 0;
  overflow: hidden;
}
.responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Text Basics
 *
 */
body {
  font-family: var(--font-main);
  color: var(--color-black);
  font-size: 18px;
  font-weight: 300;
  text-align: left;
  -webkit-text-size-adjust: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--font-main);
  margin: 0 0 8px 0;
  color: var(--color-green-m);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1em;
}
p + .h1,
p + h2,
p + .h2,
p + h3,
p + .h3,
p + h4,
p + .h4,
p + h5,
p + .h5,
p + h6,
p + .h6,
ul + .h1,
ul + h2,
ul + .h2,
ul + h3,
ul + .h3,
ol + .h1,
ol + h2,
ol + .h2,
ol + h3,
ol + .h3,
blockquote + .h1,
blockquote + h2,
blockquote + .h2,
blockquote + h3,
blockquote + .h3 {
  margin-top: 30px;
}
h1,
.h1 {
  margin-bottom: 30px;
}
h2,
.h2 {
  font-size: 30px;
}
h3,
.h3 {
  font-size: 22px;
  color: var(--color-black);
}
h4,
.h4 {
  font-size: 22px;
}
h5,
.h5 {
  font-size: 18px;
  color: var(--color-black);
}
h6,
.h6 {
  font-size: 18px;
  color: var(--color-black);
}
.first {
  margin-top: 0;
}
.solo {
  margin: 0;
}
.center {
  text-align: center;
}

p {
  line-height: 1.4;
  margin-bottom: 8px;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

a {
  color: var(--color-green-m);
  text-decoration: none;
}
a:hover {
  color: var(--color-black);
  text-decoration: none;
}
a[name],
a[name]:hover {
  color: var(--color-black-80);
  text-decoration: none;
}

em {
  font-style: italic;
}

pre {
  padding: 10px 19px;
  margin: 18px 0 12px 0;
  line-height: 20px;
  width: auto;
  color: var(--color-blue);

  border: 1px solid var(--color-black-20);
  background-color: var(--color-black-05);

  overflow: auto;
  overflow-y: hidden;
}

sup {
  line-height: 1em;
}

blockquote {
  display: inline-block;
  position: relative;
  margin: 11px 0;
  padding: 20px 60px;
  width: auto;
  max-width: 100%;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 400;
  font-style: italic;
  color: var(--color-black-50);
  border-radius: 8px;
  background-color: var(--color-black-05);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
blockquote::before,
blockquote::after {
  position: absolute;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 1;
  font-size: 80px;
}
blockquote::before {
  content: "\201C";
  top: 10px;
  left: 10px;
}
blockquote::after {
  right: 10px;
  bottom: 0;
  content: "\201D";
}
blockquote cite {
  left: 40px;
  margin-bottom: 8px;
  font-size: 1em;
  color: var(--color-black-30);
}
blockquote cite:before {
  content: "\2014 \2009";
}

ol,
ul {
  margin: 0;
  padding: 0 0 15px 0;
  width: 100%;
}
ul ul,
ol ol {
  margin: 0;
  padding: 0;
  width: 100%;
}
ul li {
  list-style: none;
  text-align: left;
  line-height: 1.5em;
  margin: 0 0 0 24px;
}
ul li::before {
  float: left;
  content: "\25CF";
  color: var(--color-green-m);
  margin: 0 0 -10px -18px;
  display: block;
  font-size: 0.8em;
}
ol li {
  margin-left: 30px;
  line-height: 1.5em;
  list-style: decimal;
}
@media print {
  ol {
    margin: 0 0 0 24px;
    padding: 0;
    list-style: decimal;
  }
  ul {
    margin: 0 0 0 17px;
    padding: 0;
    list-style: disc;
  }
  ol li,
  ul li {
    margin: 0;
    padding: 0;
    background: none;
  }
}

b,
strong {
  font-weight: 500;
}

hr {
  padding: 0 0 20px 0;
  margin: 20px 0 0 0;
  height: 0;
  border: 0;
  border-top: 1px dotted var(--color-black);
}

table {
  margin-bottom: 12px;
  font-family: var(--font-main);
  font-size: 1em;
}
table th {
  border-bottom: 1px dotted var(--color-black);
  font-weight: 500;
  padding: 2px 0;
  text-align: left;
}
table td {
  padding: 4px 0;
  vertical-align: top;
}
table.none,
table.none td {
  padding: 0px;
  margin-bottom: 0px;
}
table.zebra thead tr {
  background-color: var(--color-black-10);
}
table.zebra tbody tr:nth-child(even) {
  background-color: var(--color-black-05);
}

button {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.column {
  column-count: 2;
  column-gap: 30px;
}

/**
 * Text Customising
 *
 */
.content a {
  font-weight: 400;
}
.content a.pdf,
.content a.doc,
.content a.xls,
.content a.ppt,
.content a.jpg,
.content a.zip,
.content a.mp4,
.content a.xd {
  background-color: transparent;
  background-position: 0 2px;
  background-size: 14px auto;
  background-repeat: no-repeat;
  padding-left: 22px;
  padding-right: 0;
}
.content a.pdf {
  background-image: url("../images/icon_files_pdf.svg");
}
.content a.doc {
  background-image: url("../images/icon_files_doc.svg");
}
.content a.xls {
  background-image: url("../images/icon_files_xls.svg");
}
.content a.ppt {
  background-image: url("../images/icon_files_ppt.svg");
}
.content a.jpg {
  background-image: url("../images/icon_files_img.svg");
}
.content a.zip {
  background-image: url("../images/icon_files_zip.svg");
}
.content a.mp4 {
  background-image: url("../images/icon_files_mp4.svg");
}
.content a.xd {
  background-image: url("../images/icon_files_xd.svg");
}
.content a.none,
.content a:hover.none {
  background: none;
  padding-right: 0px;
  padding-left: 0px;
}

p.button {
  padding: 20px 0 30px 0;
}
p.button a {
  padding: 8px 50px;
  cursor: pointer;
  color: var(--color-white);
  background: none;
  background-color: var(--color-green-m);
  border: 1px solid var(--color-green-m);
  border-radius: 3px;
}
p.button a:hover {
  color: var(--color-white) !important;
  border: 1px solid var(--color-black);
  background-color: var(--color-black);
}

blockquote {
  margin: 22px 22px 11px 22px;
  padding: 40px 50px;
  max-width: calc(100% - 44px);
  background-color: var(--color-white);
  box-shadow: 0px 0 20px var(--color-black-10);
}
blockquote::before {
  top: -12px;
  left: -15px;
  height: 60px;
  width: 60px;
  content: "";
  background-image: url(../images/icon_quote.svg);
  background-size: 60px auto;
  background-repeat: no-repeat;
}
blockquote::after {
  display: none;
  content: "";
  right: unset;
  bottom: unset;
}

.toggle-box {
  display: none;
  position: relative;
  float: left;
  width: 100%;
  background-color: #f19700;
}

.toggle {
  float: left;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-black);
  cursor: pointer;
}
.toggle h3 {
  position: relative;
  margin: 0;
  padding: 14px 0 14px 36px;
  line-height: 1.2em;
}
.toggle h3::before,
.toggle h3::after {
  position: absolute;
  display: block;
  content: "";
  top: 31px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: var(--color-green-m);
  transition: 0.3s;
}
.toggle h3::after {
  top: 22px;
  left: 9px;
  width: 2px;
  height: 20px;
}
.toggle .display {
  display: none;
  position: relative;
  float: left;
  padding: 0 0 10px 0;
  margin-left: 40px;
  width: calc(100% - 40px);
}
.toggle.open h3::after {
  transform: rotate(270deg);
}

a.forward {
  font-weight: 400;
  padding-right: 20px;
  background: transparent url("../images/icon_nav_forward.svg") center right no-repeat;
  background-size: auto 16px;
}
a:hover.forward {
  background: transparent url("../images/icon_nav_forward.svg") center right no-repeat;
  background-size: auto 16px;
}
a.back {
  font-weight: 400;
  padding-left: 20px;
  background: transparent url("../images/icon_nav_back.svg") center left no-repeat;
  background-size: auto 16px;
}
a:hover.back {
  background: transparent url("../images/icon_nav_back.svg") center left no-repeat;
  background-size: auto 16px;
}

footer {
  font-size: 18px;
}
footer,
footer p,
footer h1,
footer h2,
footer h3,
footer h4,
footer a {
  color: var(--color-white);
}
footer a:hover {
  color: var(--color-black);
}

#react-cookie-banner {
  font-size: 1.1em;
  font-weight: 400;
  color: var(--color-white);
}
#react-cookie-banner a {
  color: var(--color-white);
  text-decoration: underline;
}
#react-cookie-banner a:hover {
  color: var(--color-black-20);
}
#react-cookie-banner .button {
  float: right;
  margin: 0;
  margin-top: -20px;
}
#react-cookie-banner .button a {
  text-decoration: none;
}

.selectFilter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 33px 0 11px 0;
  width: 100%;
}
.selectFilter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  align-items: center;
  margin: 0;
  padding: 0;

  width: 100%;
}
.selectFilter ul li {
  margin: 0;
  padding: 11px 22px;
  line-height: 1;
  border-radius: 3px;
  background-color: var(--color-white);
  cursor: pointer;
}
.selectFilter ul li.active,
.selectFilter ul li:hover {
  background-color: var(--color-green-h);
}
.selectFilter ul li::before {
  content: none;
  margin: 0;
}
.experience {
  position: relative;
  float: left;
  margin: 11px -11px;
  width: calc(100% + 22px);
}
.farm {
  box-sizing: border-box;
  margin: 11px;
  padding: 22px;
  width: calc(50% - 22px);
  min-height: 280px;
  border-radius: 3px;
  background-color: var(--color-white);
  /*
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  */
}

/**
 * socialmedia
 *
 */
ul.socialmedia {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: left;
  margin: 22px 0;
  padding: 0;
  width: 100%;
  list-style: none;
}
ul.socialmedia li {
  display: inline;
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-black-05);
}
ul.socialmedia li:hover,
ul.socialmedia li:active {
  background-color: var(--color-black-20);
}
ul.socialmedia li::before {
  content: none;
}
ul.socialmedia li a {
  display: inline-block;
  padding-left: 40px;
  width: 40px;
  height: 40px;
  background-size: 40px auto;
  background-position: top left;
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
li.youtube a {
  background-image: url(../images/icon_socialmedia_youtube.svg);
}
li.linkedin a {
  background-image: url(../images/icon_socialmedia_linkedin.svg);
}
li.xing a {
  background-image: url(../images/icon_socialmedia_xing.svg);
}
li.facebook a {
  background-image: url(../images/icon_socialmedia_facebook.svg);
}
li.twitter a {
  background-image: url(../images/icon_socialmedia_twitter.svg);
}
li.whatsapp a {
  background-image: url(../images/icon_socialmedia_whatsapp.svg);
}
li.instagram a {
  background-image: url(../images/icon_socialmedia_instagram.svg);
}
li.pinterest a {
  background-image: url(../images/icon_socialmedia_pinterest.svg);
}
li.mail a {
  background-image: url(../images/icon_socialmedia_mail.svg);
}

/**
 * Navigation
 *
 */
/*  Navigation Desktop  */
.navTop ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  z-index: 1000;
}
.navTop ul li {
  position: relative;
  padding: 0;
  margin: 0;
  white-space: nowrap;
}
.navTop ul li::before {
  content: none;
}
.navTop ul li a {
  display: flex;
  align-items: center;
  height: 50px;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  color: var(--color-black);
}
.navTop ul li:hover a,
.navTop ul li.active a {
  color: var(--color-green-m);
}

/* Level 2 */
.navTop ul li ul {
  position: absolute;
  padding: 0 0 11px 0;
  left: -20px;
  top: 45px;
  min-width: 160px;
  width: auto;
  height: auto;
  display: none;
  background-color: var(--color-white);
  transition: background-color 0.3s ease-in-out;
}
.home header.transparent .navTop ul li ul {
  background-color: unset;
}
.navTop ul li ul li {
  float: left;
  margin: 0;
  padding: 0;
  left: 0;
  height: auto;
  width: 100%;
}
.navTop ul li ul li a,
.navTop ul li:hover ul li a,
.navTop ul li.active ul li a {
  float: left;
  padding: 5px 20px;
  margin: 0;
  height: auto;
  width: 100%;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--color-blacke);
}
.navTop ul li:hover ul li:hover a,
.navTop ul li:hover ul li.active a {
  color: var(--color-green-m);
}
.navTop ul li ul li a:before {
  content: "";
}

.navigation h2 {
  margin: 8px 0 15px 0;
  font-size: 30px;
}
.navigation ul {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}
.navigation ul li {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  border-top: 1px solid var(--color-grey);
}
.navigation ul li:last-child {
  border-bottom: 1px solid var(--color-grey);
}
.navigation ul li:hover {
  background-color: var(--color-white);
}
.navigation ul li.active {
  background-color: var(--color-green-m);
  border-top: 1px solid var(--color-green-m);
}
.navigation ul li.active + li {
  border-top: 1px solid var(--color-green-m);
}
.navigation ul li:last-child.active {
  border-bottom: 1px solid var(--color-green-m);
}

.navigation ul li::before {
  content: none;
}
.navigation ul li a {
  float: left;
  margin: 0;
  padding: 12px 15px;
  width: calc(100% - 30px);
  text-decoration: none;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: var(--color-black);
}
.navigation ul li:hover a {
  color: var(--color-green-m);
}
.navigation ul li.active a {
  color: var(--color-white);
}

/* Level 2 */
.navigation ul li ul {
  margin: 0 0 10px 0;
}
.navigation ul li.active ul li a {
  padding: 4px 0 4px 11px;
  width: calc(100% - 11px);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
  line-height: 1;
}
.navigation ul li.active ul li a:hover,
.navigation ul li.active ul li.active a {
  color: var(--color-green-m);
}

/* Level 3 */
.navigation ul li ul li ul {
  margin: 0 0 5px 0;
}
.navigation ul li.active ul li.active ul li a {
  padding: 4px 0 4px 22px;
  width: calc(100% - 22px);
  color: var(--color-black);
}
.navigation ul li.active ul li.active ul li a:hover,
.navigation ul li.active ul li.active ul li.active a {
  color: var(--color-green-m);
}

/*  Navigation Mobile  */
.navMobileIcon {
  display: none;
  position: relative;
  margin: 0;
  padding: 0 40px 0 0;
  width: auto;
  height: 30px;
  font-family: var(--font-main);
  font-weight: 300;
  font-size: 18px;
  color: var(--color-white);

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none;
  outline: 0;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: transparent;
}
.navMobileIcon:hover,
.navMobileIcon:focus {
  background-color: transparent;
  outline: none;
}
.navMobileIcon span {
  display: block;
  position: absolute;
  top: 14px;
  right: 0;
  height: 2px;
  width: 30px;
  background: var(--color-white);
}
.navMobileIcon span:before,
.navMobileIcon span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-white);
  content: "";
}
.navMobileIcon span:before {
  top: -8px;
}
.navMobileIcon span:after {
  bottom: -8px;
  width: 22px;
}
.navMobileIconX span:before,
.navMobileIconX span:after {
  transition-duration: 0.3s, 0.3s;
  transition-delay: 0.3s, 0s;
}
.navMobileIconX span:before {
  transition-property: top, transform;
}
.navMobileIconX span:after {
  transition-property: bottom, transform;
}

.navMobileIconX.is-active span {
  background: none;
}
.navMobileIconX.is-active span:before {
  top: 0;
  transform: rotate(45deg);
}
.navMobileIconX.is-active span:after {
  bottom: 0;
  width: 30px;
  transform: rotate(-45deg);
}
.navMobileIconX.is-active span:before,
.navMobileIconX.is-active span:after {
  transition-delay: 0s, 0.3s;
}

#navMobile ul {
  position: relative;
  float: left;
  margin: 11px 0 0 0;
  padding: 11px 0 0 0;
  width: 100%;
  border-top: 1px solid var(--color-black-15);
}
#navMobile ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
  list-style: none;
  background-image: none;
}
#navMobile ul li::before {
  content: none;
}
#navMobile ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 11px 20px;
  width: calc(100% - 40px);
  display: block;
  font-size: 22px;
  line-height: 1.1;
  text-decoration: none;
  color: var(--color-black);
  font-weight: 400;
}

/* Level 2 */
#navMobile ul li ul {
  padding: 0;
  margin: 0 0 10px 0;
  width: 100%;
  border: none;
  display: none;
}
#navMobile ul li ul li {
  padding: 0;
}
#navMobile ul li ul li a {
  position: relative;
  float: left;
  margin: 0;
  padding: 6px 0 6px 35px;
  width: calc(100% - 35px);
  display: block;
  text-transform: none;
  font-size: 20px;
  color: var(--color-black);
}

/* Level 3 */
#navMobile ul li ul li ul li a {
  padding: 5px 0 5px 50px;
  font-size: 1em;
}

#navMobile a.starter_active,
#navMobile a.active {
  color: var(--color-green-m);
}

#navMobile ul li .openSubmenu {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 50px;
  text-align: center;
  cursor: pointer;
}

#navMobile ul li.level-1 > ul.menu {
  display: none;
}
#navMobile ul li.level-1.starter_active > ul.menu,
#navMobile ul li.level-2 > ul.menu {
  display: block;
}
#navMobile ul li.level-1 .plus {
  background-image: url("../images/icon_nav_plus.svg");
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 24px auto;
}
#navMobile ul li.level-1 .minus {
  background-image: url("../images/icon_nav_minus.svg");
  background-repeat: no-repeat;
  background-position: right 25px center;
  background-size: 24px auto;
}

/**
 * Formular
 *
 */
form,
fieldset {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
fieldset {
  margin: 0 0 10px 0;
  width: 100%;
}
label,
legend {
  float: left;
  margin: 0 11px;
  padding-top: 13px;
  width: calc(30% - 22px);
}
.group {
  float: left;
  margin: 0;
  padding: 6px 0;
  width: 70%;
}

.required {
  color: var(--color-red);
}
select,
input,
textarea {
  float: left;
  margin: 0 11px 5px 11px;
  padding: 10px 11px;
  width: calc(70% - 22px);
  border-radius: 3px;
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
  outline: none;

  font-family: var(--font-main);
  font-weight: 400;
  font-size: 1em;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input.plz {
  margin-right: 5px;
  width: 100px;
}
input.ort {
  margin-left: 0;
  width: calc(70% - 127px);
}
select {
  padding: 10px 50px 10px 7px;
  background-image: url("../images/icon_down.svg");
  background-position: calc(100% - 11px) center;
  background-repeat: no-repeat;
  background-size: 22px auto;
  cursor: pointer;
}
select:required:invalid {
  color: var(--color-black-30);
}
select option[value=""][disabled] {
  display: none;
}
select option,
select:required:invalid option {
  color: var(--color-black-80);
}
textarea {
  height: 124px;
}

::-webkit-input-placeholder {
  color: var(--color-black-30);
}
:-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--color-black-30);
  opacity: 1;
}
::placeholder {
  color: var(--color-black-30);
}
select.placeholder {
  color: var(--color-black-30);
}

input[type="submit"],
input[type="button"],
input[type="reset"] {
  float: left;
  margin-top: 10px;
  cursor: pointer;
  color: var(--color-white);
  width: calc(35% - 22px);

  border: none;
  border-radius: 3px;
  background-color: var(--color-green-m);
  transition: all 0.2s ease;
}
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  background-color: var(--color-black);
}

.container {
  display: block;
  position: relative;
  margin: 4px 11px 4px 11px;
  padding: 0 0 0 35px;
  width: calc(100% - 22px);
  min-height: 24px;
  line-height: 1.3;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.group.rail .container {
  width: auto;
  margin-right: 33px;
}
.group.rail .container:last-child {
  margin-right: 0;
}
.container input {
  position: absolute;
  opacity: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 0;
  height: 0;
}
.checkmark,
.radiomark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid var(--color-white);
  background-color: var(--color-white);
  border-radius: 3px;
}
.radiomark {
  border-radius: 50%;
}
.error .checkmark,
.error .radiomark {
  border: 1px solid var(--color-red);
}

.checkmark:after,
.radiomark:after {
  content: "";
  position: absolute;
  display: none;
}
.container:hover input ~ .checkmark:after,
.container input:checked ~ .checkmark:after,
.container:hover input ~ .radiomark:after,
.container input:checked ~ .radiomark:after {
  display: block;
}
.container:hover .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-black-10);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container .checkmark:after,
.container:hover input:checked ~ .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-black);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container:hover .radiomark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black-10);
}
.container .radiomark:after,
.container:hover input:checked ~ .radiomark:after {
  top: 5px;
  left: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-black);
}

.switch {
  position: relative;
  display: inline-block;
  margin: 7px 11px;
  padding: 0;
  width: 56px;
  height: 30px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-green);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 15px;
}

.slider.round:before {
  border-radius: 50%;
}

form p {
  /* Pflichtfeld */
  float: left;
  margin-right: 11px;
  margin-left: calc(30% + 11px);
  width: calc(70% - 22px);
}
div.error {
  display: none;
  float: left;
  margin: 0;
  width: 100%;
  color: var(--color-red);
}

/* Form stretched */
form.stretched label {
  display: none;
}
form.stretched label.container {
  display: block;
}
form.stretched legend {
  margin-bottom: 5px;
  width: calc(100% - 30px);
}
form.stretched fieldset .group {
  width: calc(100% - 30px);
}
form.stretched fieldset .group label {
  display: block;
}
form.stretched input[type="text"],
form.stretched input[type="number"],
form.stretched input[type="url"],
form.stretched input[type="tel"],
form.stretched input[type="email"],
form.stretched input[type="password"],
form.stretched select,
form.stretched textarea {
  width: calc(100% - 30px);
}
form.stretched input[type="submit"],
form.stretched input[type="button"],
form.stretched input[type="reset"] {
  width: calc(50% - 30px);
}
form.stretched p {
  float: left;
  margin: 11px;
  width: calc(100% - 22px);
}

.block.addition {
  margin-top: -10px;
  height: 0;
  overflow: hidden;
}

/**
 * Search
 *
 */
.navSearchIconX {
  position: absolute;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: 38px;
  right: 30px;
  width: 30px;
  height: 30px;
  font-size: 0;
  text-indent: -9999px;
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
  background-color: transparent;
}
.navSearchIconX span {
  display: block;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: none;
}
.navSearchIconX span:before,
.navSearchIconX span:after {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-white);
  content: "";
}
.navSearchIconX span:before {
  top: 0;
  transform: rotate(45deg);
}
.navSearchIconX span:after {
  bottom: 0;
  transform: rotate(-45deg);
}
.search form {
  margin: 0;
  padding: 8px;
  margin-left: calc(50% - 300px);
  width: 584px;
  background: var(--color-white);
}
.search input {
  float: left;
  border: none;
  margin: 0;
  padding: 5px 10px;
  height: 44px !important;
  width: calc(100% - 44px);
  color: var(--color-black);
  border: none;
  background: transparent;
}
.search input:focus {
  color: rgba(51, 51, 51, 1);
}
.search input[type="submit"] {
  float: left;
  margin: 0;
  padding: 0;
  height: 44px !important;
  width: 44px;
  background: transparent url("../images/icon_search.svg") center no-repeat;
  background-size: 25px auto;
  box-shadow: none;
}
.search input[type="submit"]:hover {
  border: none;
}

.searchForm {
  float: left;
  margin-bottom: 15px;
  width: 100%;
  height: auto;
}
.searchForm input {
  float: left;
  margin: 0;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  height: 50px;
  width: 60%;
}
.searchForm input[type="submit"] {
  float: left;
  margin: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  height: 50px;
  width: 40%;
}
.searchResult {
  float: left;
  margin-top: 20px;
  margin-bottom: 5px;
  width: 100%;
  cursor: pointer;
}
.searchResult h3,
.searchResult p {
  margin: 0;
}
.searchResult p .resultPath {
  color: rgb(150, 150, 150);
}

/**
 * Loader
 *
 */
.loader {
  position: relative;
  margin: 0 auto;
  top: 35%;
  width: 60px;
  height: 70px;
  text-align: center;
}
.loader > div {
  background-color: var(--color-red);
  height: 100%;
  width: 6px;
  display: inline-block;
  -webkit-animation: loader 1.2s infinite ease-in-out;
  animation: loader 1.2s infinite ease-in-out;
}
.loader .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.loader .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.loader .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.loader .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes loader {
  0%,
  60%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  30% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes loader {
  0%,
  60%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  30% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}

/**
 * Module
 *
 */
/*  HeadlinesExpande  */
.headlinesExpand {
  display: flex;
  flex-wrap: wrap;
  margin: 22px -11px 0 -11px;
  width: calc(100% + 22px);
}
.headlinesExpand article {
  margin: 0 11px;
  width: calc(33.3333% - 22px);
  transition: all 0.2s ease-in-out;
}
.headlinesExpand article .imgFrame {
  margin-bottom: 22px;
}
.headlinesExpand article h3 {
  margin: 0 0 6px 0;
}

/*  Headlines  */
.headlines {
  float: left;
  width: 100%;
}
.headlines article {
  float: left;
  margin: 10px 0;
  width: calc(100% - 44px);
}
.headlines article h3 {
  margin: 0 0 6px 0;
}

/* Impression */
.impression {
  float: left;
  margin: 0 -11px 66px -11px;
  width: calc(100% + 22px);
}
.impression .image {
  display: inline-block;
  position: relative;
  margin: 11px;
  padding: 0;
  width: calc(25% - 22px);
  background-position: center;
  background-size: cover;
}
.impression .image::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.impression .image a {
  display: flex;
  justify-content: center;
  position: absolute;
  align-items: center;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 40px;
  font-weight: 400;
  color: var(--color-white);
  transition: all 0.3s linear;
}
.impression .image:hover a {
  background-color: rgba(0, 0, 0, 0.5);
}
.impression .image a.dark {
  background-color: rgba(0, 0, 0, 0.5);
}
.impression .image:hover a.dark {
  background-color: rgba(0, 0, 0, 0.75);
}

/* News */
.news article {
  float: left;
  margin: 0 0 22px 0;
  width: 100%;
}

/*  Agenda  */
.agenda {
  float: left;
  width: 100%;
}
.agenda article {
  float: left;
  margin: 10px 0;
  width: 100%;
}
.agenda article .date {
  margin-bottom: 0;
}
.agenda article h3 {
  margin: 4px 0;
}

/* Events */
.events {
  float: left;
  width: 100%;
}
.eventBlock {
  float: left;
  margin-bottom: 22px;
  width: 100%;
}
.eventBlock article {
  float: left;
  margin: 11px 0;
  width: 100%;
}
.eventShortDate {
  float: left;
  padding-top: 2px;
  width: 100px;
  font-size: 40px;
  font-weight: 300;
}
.eventInfo {
  float: left;
  width: calc(100% - 100px);
}
.eventInfo h3 {
  margin: 0 0 8px 0;
  font-size: 26px;
}
.eventInfo p {
  margin-bottom: 8px;
}

/* Seating Plan */
.seatingplan,
.seatingplan_row {
  float: left;
  margin: 0 0 20px 0;
  width: 100%;
}
ul.rows,
ul.seats {
  margin: 0;
  padding: 0;
}
li.row {
  float: left;
  margin: 0;
  width: 34px;
  height: 34px;
}
.seatingplan_row:nth-child(odd) li.row {
  width: 50px;
}
li.seat {
  float: left;
  margin: 0 2px 0 0;
  padding-top: 7px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  text-align: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: white;
  font-size: 80%;
  line-height: 1;
  background-color: silver;
  background: linear-gradient(180deg, silver 0%, silver 78%, transparent 78%, transparent 84%, silver 84%, silver 100%);
}
li.row::before,
li.seat::before {
  display: none;
}
li.seat:hover {
  background-color: cadetblue;
  background: linear-gradient(180deg, darkgray 0%, darkgray 78%, transparent 78%, transparent 84%, darkgray 84%, darkgray 100%);
}
/* Reverse */
/*
ul.seats {
  float: left;
  width: auto;
}
li.seat {
  float: right;
}
*/

/* Referenzen */
.references {
  float: left;
  width: 100%;
  background-color: bisque;
}
.references .item {
  position: relative;
  float: left;
  margin: 11px 0;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-color: cadetblue;
}
.references .item .overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  margin: 0;
  padding: 0;
  overflow: hidden;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgb(255, 255, 255);
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.2s linear;
}
/*
.references .item:hover .overlay {
  top: 0;
}
*/

/* Shop */
.shop .categories,
.shop .products,
.shop .product {
  display: flex;
  flex-wrap: wrap;
  margin: 22px -11px;
  width: calc(100% + 22px);
}
.shop article {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  padding: 0;
  margin: 11px;
  width: calc(50% - 22px);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.shop article .infos,
.shop article .image,
.shop article .content,
.shop .prices,
.shop .price_row,
.shop .price_row .unit,
.shop .price_row .price,
.shop .price_row .tobasket {
  float: left;
  margin: 0;
  padding: 0;
  width: 100%;
}
.shop article .infos {
  cursor: pointer;
}
.shop article .image {
  background-color: var(--color-black-05);
  background-position: center;
  background-size: cover;
}
.shop article .image::before {
  content: "";
  display: block;
  padding-bottom: 61.8%;
}
.shop article .content,
.shop article .prices {
  padding: 22px;
  width: calc(100% - 44px);
}
.shop .price_row {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--color-black-60);
}
.shop .price_row .unit {
  width: 30%;
  text-align: right;
}
.shop .price_row .price {
  width: 40%;
  text-align: right;
}
.shop .price_row .tobasket {
  width: 30%;
  text-align: right;
}
button.add-to-cart {
  float: right;
  margin: 2px 0;
  padding: 0 0 0 34px;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--color-white);
  background-image: url(../images/icon_basket_white.svg);
  background-size: 20px auto;
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-color: var(--color-green-m);
}
.product button.add-to-cart {
  width: auto;
  overflow: unset;
}
button.add-to-cart:hover,
button.add-to-cart.active:hover {
  opacity: 1;
  background-color: var(--color-black);
}
button.add-to-cart.active {
  opacity: 0.25;
}
button.add-to-cart:disabled,
button.add-to-cart.active:disabled,
button.add-to-cart:hover:disabled {
  cursor: default;
  opacity: 0.1;
  background-color: var(--color-black);
}

.shop .product .article_image,
.shop .product .article_content {
  float: left;
  margin: 11px;
  width: calc(50% - 22px);
}
.shop .product .prices {
  margin-bottom: 22px;
}
.shop .product .price_row .unit {
  width: 15%;
}
.shop .product .price_row .price {
  width: 25%;
}
.shop .product .price_row .tobasket {
  width: 60%;
}
.product button.add-to-cart {
  padding: 0 44px 0 18px;
  height: 34px;
  width: auto;
  overflow: unset;
  border-radius: 17px;
  background-position: right 18px center;
  font-size: 18px;
}
.shop .frame {
  position: relative;
  float: left;
  margin: 0 0 11px 0;
  width: 100%;
}
.shop .thumb {
  width: 33.3333%;
  cursor: pointer;
}
.shop .frame.thumb:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}
.shop .frame::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.shop .frame .wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.shop .thumb .wrapper {
  padding: 11px;
}
.shop .frame .wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* Warenkorb */
.basket_row {
  display: flex;
  align-items: center;
  margin: 4px 0;
  width: 100%;
}
.bottomline {
  border-bottom: 1px dotted var(--color-black);
  margin: 0 0 11px 0;
  padding-bottom: 8px;
}
.topline {
  margin: 22px 0 44px 0;
}
.basket_row.submit {
  justify-content: space-between;
  margin: 44px 0;
}
.basket_row input {
  margin: 0;
}
.basket_row img {
  cursor: pointer;
}
.basket_frame,
.basket_qty,
.basket_del {
  display: flex;
  align-items: center;
}
.basket_qty input {
  padding: 0;
  width: 40px;
  height: 36px;
  text-align: center;
}
.basket_name {
  width: calc(100% - 520px);
}
.basket_qty {
  width: 100px;
  justify-content: center;
}
.basket_unit {
  width: 100px;
  text-align: right;
}
.basket_price {
  width: 140px;
  text-align: right;
}
.basket_total,
.basket_subtotal {
  width: 140px;
  text-align: right;
}
.basket_del {
  width: 40px;
  justify-content: flex-end;
}
.basket_subname {
  width: calc(100% - 180px);
}

/* Würfelturm */
.cube-tower {
  float: left;
  margin: 22px 0;
  width: 100%;
}
.tower {
  float: left;
  max-width: 200px;
}
.cubes {
  float: right;
  max-width: 528px;
  background-color: skyblue;
}
.tower .item,
.cubes .item {
  float: left;
  position: relative;
  margin: 0 4px 4px 0;
  width: 150px;
  height: 150px;
  border: 2px dashed aqua;
}
.cubes .item {
  width: 80px;
  height: 80px;
}
.tower .current,
.cubes .current {
  background-color: var(--color-black-05);
}
.tower .occupied .current,
.cubes .occupied .current {
  background-color: var(--color-red);
}
.item div {
  float: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  margin: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  cursor: pointer;
  background-color: darkorange;
}

/**
 * FancyBox
 *
 */
.fancybox-enabled {
  overflow: hidden;
}

.fancybox-enabled body {
  overflow: visible;
  height: 100%;
}

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Make sure that the first one is on the top */
.fancybox-container ~ .fancybox-container {
  z-index: 99992;
}

.fancybox-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #0f0f11;
  opacity: 0;
  transition-timing-function: cubic-bezier(0.55, 0.06, 0.68, 0.19);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-container--ready .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  z-index: 99994;
  transition: opacity 0.2s;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  direction: ltr;
}

.fancybox-show-controls .fancybox-controls {
  opacity: 1;
}

.fancybox-infobar {
  display: none;
}

.fancybox-show-infobar .fancybox-infobar {
  display: inline-block;
  pointer-events: all;
}

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: var(--font-main);
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox-buttons {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  pointer-events: all;
}

.fancybox-show-buttons .fancybox-buttons {
  display: block;
}

.fancybox-slider-wrap {
  overflow: hidden;
  direction: ltr;
}

.fancybox-slider-wrap,
.fancybox-slider {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 99993;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  width: 0;
}

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box;
}

.fancybox-slide--image {
  overflow: hidden;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-content {
  display: inline-block;
  position: relative;
  margin: 44px auto;
  padding: 0;
  border: 0;
  width: 80%;
  height: calc(100% - 88px);
  vertical-align: middle;
  line-height: normal;
  text-align: left;
  white-space: normal;
  outline: none;
  font-size: 16px;
  font-family: var(--font-main);
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-overflow-scrolling: touch;
}

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video .fancybox-iframe {
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fancybox-image,
.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  background: transparent;
  background-size: 100% 100%;
}

.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-controls--canzoomIn .fancybox-placeholder {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-controls--canGrab .fancybox-placeholder {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-controls--isGrabbing .fancybox-placeholder {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-tmp {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
}

.fancybox-error {
  position: absolute;
  margin: 0;
  padding: 40px;
  top: 50%;
  left: 50%;
  width: 380px;
  max-width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #fff;
  cursor: default;
}

.fancybox-error p {
  margin: 0;
  padding: 0;
  color: #444;
  font: 16px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer;
}

.fancybox-close-small:after {
  content: "×";
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  font: 20px/30px Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #888;
  font-weight: 300;
  text-align: center;
  border-radius: 50%;
  border-width: 0;
  background: #fff;
  transition: background 0.2s;
  box-sizing: border-box;
  z-index: 2;
}

.fancybox-close-small:focus:after {
  outline: 1px dotted #888;
}

.fancybox-slide--video .fancybox-close-small {
  top: -36px;
  right: -36px;
  background: transparent;
}

.fancybox-close-small:hover:after {
  color: #555;
  background: #eee;
}

/* Caption */
.fancybox-caption-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  z-index: 99998;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.1) 20%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.6) 80%,
    rgba(0, 0, 0, 0.8) 100%
  );
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
}

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: var(--font-main);
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none;
}

.fancybox-caption a,
.fancybox-caption button {
  pointer-events: all;
}

.fancybox-caption a {
  color: #fff;
  text-decoration: underline;
}

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  line-height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  color: #fff;
  box-sizing: border-box;
  vertical-align: top;
  outline: none;
}

.fancybox-button--disabled {
  cursor: default;
  pointer-events: none;
}

.fancybox-infobar__body,
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
}

.fancybox-button:hover {
  background: rgba(0, 0, 0, 0.8);
}

.fancybox-button::before,
.fancybox-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
  border-color: #fff;
  background-color: currentColor;
  color: currentColor;
  opacity: 0.9;
  box-sizing: border-box;
  display: inline-block;
}

.fancybox-button--disabled::before,
.fancybox-button--disabled::after {
  opacity: 0.5;
}

.fancybox-button--left::after {
  left: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.fancybox-button--right::after {
  right: 20px;
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--left {
  border-bottom-left-radius: 5px;
}

.fancybox-button--right {
  border-bottom-right-radius: 5px;
}

.fancybox-button--close {
  float: right;
}

.fancybox-button--close::before,
.fancybox-button--close::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px);
}

.fancybox-button--close::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.fancybox-button--close::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Loading spinner */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  -webkit-animation: fancybox-rotate 0.8s infinite linear;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

@keyframes fancybox-rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-controls {
    text-align: left;
  }
  .fancybox-button--left,
  .fancybox-button--right,
  .fancybox-buttons button:not(.fancybox-button--close) {
    display: none !important;
  }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0;
  }
}

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: 15px;
  top: 16px;
  border: 2px solid;
  background: none;
}

/* Slideshow button */
.fancybox-button--play::before {
  top: 16px;
  left: 18px;
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px;
  background: transparent;
}

.fancybox-button--pause::before {
  top: 16px;
  left: 18px;
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px;
  background: transparent;
}

/* Thumbs */
.fancybox-button--thumbs span {
  font-size: 23px;
}

.fancybox-button--thumbs::before {
  top: 20px;
  left: 21px;
  width: 3px;
  height: 3px;
  box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0;
}

.fancybox-container--thumbs .fancybox-controls,
.fancybox-container--thumbs .fancybox-slider-wrap,
.fancybox-container--thumbs .fancybox-caption-wrap {
  right: 220px;
}

.fancybox-thumbs {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: 220px;
  margin: 0;
  padding: 5px 5px 0 0;
  background: #fff;
  z-index: 99993;
  word-break: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.fancybox-thumbs > ul {
  list-style: none;
  position: absolute;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 0;
}

.fancybox-thumbs > ul > li {
  float: left;
  overflow: hidden;
  max-width: 50%;
  padding: 0;
  margin: 0;
  width: 105px;
  height: 75px;
  position: relative;
  cursor: pointer;
  outline: none;
  border: 5px solid #fff;
  border-top-width: 0;
  border-right-width: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-sizing: border-box;
}

li.fancybox-thumbs-loading {
  background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  max-height: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-thumbs > ul > li:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border: 4px solid #4ea7f9;
  z-index: 99991;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-thumbs {
    display: none !important;
  }
  .fancybox-container--thumbs .fancybox-controls,
  .fancybox-container--thumbs .fancybox-slider-wrap,
  .fancybox-container--thumbs .fancybox-caption-wrap {
    right: 0;
  }
}

/**
 * Responsive
 *
 */
@media only screen and (max-width: 1200px) {
  .navTop ul {
    gap: 20px;
  }
  .navTop ul li a {
    font-size: 16px;
  }
  .selectFilter ul {
    gap: 8px;
  }
  .selectFilter ul li {
    padding: 11px;
  }
}
@media only screen and (max-width: 1080px) {
  .inner {
    width: calc(100% - 40px);
  }
}
@media only screen and (max-width: 960px) {
  footer .block .third {
    width: calc(50% - 22px);
  }
  footer .block .two-third {
    width: calc(100% - 22px);
  }
  footer .block .block:first-child {
    display: none;
  }
}
@media only screen and (max-width: 960px) {
  .desktop,
  header .header-search,
  header .header-login,
  .nav2,
  .columnNavigation,
  .copyright {
    display: none;
  }
  .mobile,
  .navMobileIcon {
    display: block;
  }

  .inner {
    width: calc(100% - 40px);
  }
  header {
    height: 95px;
  }
  .logo {
    margin-left: -4px;
    width: 110px;
  }
  .nav1 {
    width: calc(100% - 120px);
    gap: 50px;
  }

  .headerImg {
    height: 50%;
  }
  .home .panorama {
    min-height: calc(160px + 10vw);
  }
  .teaser {
    bottom: 80px;
  }
  .teaser img {
    width: 100%;
  }
  main {
    padding-top: 20px;
  }
  .columnContent {
    width: 100%;
  }
  section {
    padding: 50px 0;
  }
  .headlines {
    margin-bottom: 50px;
  }

  .impression {
    margin: 0 -3px 66px -3px;
    width: calc(100% + 6px);
  }
  .impression .image {
    margin: 3px;
    width: calc(33.3333% - 6px);
  }
}
@media only screen and (max-width: 660px) {
  footer {
    padding-top: 30vw;
    background-size: 200% auto;
  }
  footer > div:last-child {
    display: none;
  }
  footer .block .third {
    width: calc(100% - 22px);
  }

  footer .block.third {
    padding: 10px 0;
  }
  #searchPage {
    top: 100px;
    height: calc(100% - 220px);
    min-height: calc(100% - 220px);
  }

  .selectFilter ul {
    justify-content: flex-start;
    gap: 8px;
  }

  .farm {
    width: calc(100% - 22px);
    min-height: unset;
  }

  /* Formulare */
  label,
  legend {
    margin: 5px 0 0 0;
    width: 100%;
  }
  label {
    margin-bottom: 8px;
  }
  label.noCaption {
    width: calc(100% - 25px);
  }
  input,
  textarea,
  select {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    width: 100% !important;
    height: inherit;
    padding: 10px 3% !important;
  }
  input[type="submit"],
  input[type="button"],
  input[type="resete"] {
    padding: 15px 0;
    height: auto;
  }
  input[type="checkbox"],
  input[type="radio"] {
    padding: 0;
    width: auto !important;
  }
  .container,
  .group {
    margin: 0 0 5px 0;
    width: 100%;
  }
  form p {
    margin: 0 0 5px 0;
    width: 100%;
  }

  .search input {
    width: calc(100% - 44px) !important;
  }
  .search input[type="submit"] {
    width: 44px !important;
  }

  .block_05,
  .block_10,
  .block_15,
  .block_20,
  .block_25,
  .block_30,
  .block_33,
  .block_35,
  .block_40,
  .block_45,
  .block_50,
  .block_55,
  .block_60,
  .block_65,
  .block_66,
  .block_70,
  .block_75,
  .block_80,
  .block_85,
  .block_90,
  .block_95,
  .block_100 {
    margin: 0;
    width: 100%;
  }
  .block.half,
  .block.third,
  .block.two-third,
  .block.quarter,
  .block.three-quarter,
  .block.fifth,
  .block.two-fifth,
  .block.three-fifth,
  .block.four-fifth,
  .block.full,
  .block.addr,
  .block.form {
    width: calc(100% - 22px);
  }

  /* Texte */
  blockquote {
    margin: 11px 0;
    padding: 25px;
    max-width: calc(100% - 50px);
  }
  blockquote::before,
  blockquote::after {
    font-size: 60px;
  }
  blockquote::before {
    left: -10px;
  }
  blockquote::after {
    right: -20px;
  }

  .column {
    column-count: 1;
    column-gap: 0;
  }
}

/**
 * Print
 *
 */
@media print {
  .inner {
    width: 100%;
    max-width: unset;
  }
}
