@charset "UTF-8";
.contao-cookiebar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  padding: 15px;
  max-height: 100vh;
  box-sizing: border-box;
  pointer-events: none;
  overflow: hidden;
}
.contao-cookiebar * {
  box-sizing: border-box;
}
.contao-cookiebar .cc-inner {
  display: inline-block;
  overflow-y: auto;
  max-height: 100%;
  max-width: 100%;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-size: 1rem;
  text-align: left;
}
.contao-cookiebar .cc-inner .cc-head p:first-child {
  margin-top: 0;
}
.contao-cookiebar.cc-top {
  align-items: flex-start;
}
.contao-cookiebar.cc-top.cc-active .cc-inner {
  animation: cookiebar-top-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-top.cc-saved .cc-inner {
  animation: cookiebar-top-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom {
  align-items: flex-end;
}
.contao-cookiebar.cc-bottom.cc-active .cc-inner {
  animation: cookiebar-bottom-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-bottom.cc-saved .cc-inner {
  animation: cookiebar-bottom-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle {
  align-items: center;
  justify-content: center;
}
.contao-cookiebar.cc-middle.cc-active .cc-inner {
  animation: cookiebar-middle-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-middle.cc-saved .cc-inner {
  animation: cookiebar-middle-out 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-left {
  justify-content: flex-start;
}
.contao-cookiebar.cc-right {
  justify-content: flex-end;
}
.contao-cookiebar .cc-head h1:first-child, .contao-cookiebar .cc-head h2:first-child, .contao-cookiebar .cc-head h3:first-child, .contao-cookiebar .cc-head h4:first-child, .contao-cookiebar .cc-head h5:first-child, .contao-cookiebar .cc-head h6:first-child {
  margin-top: 0;
}
.contao-cookiebar .cc-head p {
  margin-bottom: 15px;
}
.contao-cookiebar .cc-btn {
  display: inline-block;
  cursor: pointer;
  width: 100%;
  padding: 8px 14px;
  margin-bottom: 8px;
  font-size: 15px;
  outline: 0 none;
  border: 1px solid #cfcfcf;
  border-radius: 4px;
  color: #444;
  background: #f5f5f5;
}
.contao-cookiebar .cc-btn:hover {
  background: #ececec;
}
.contao-cookiebar .cc-btn:last-child {
  margin-bottom: 0;
}
.contao-cookiebar .grayscale .cc-btn {
  background: #f1efef;
}
.contao-cookiebar .grayscale .cc-btn:hover {
  background: #ececec;
}
.contao-cookiebar .grayscale .cc-btn.success {
  background: #fbfbfb;
}
.contao-cookiebar .grayscale .cc-btn.success:hover {
  background: #f7f7f7;
}
.contao-cookiebar .highlight .cc-btn.success {
  background: #4e9e3e;
  border-color: #3e7830;
  color: #fff;
}
.contao-cookiebar .highlight .cc-btn.success:hover {
  background: #4c933f;
}
.contao-cookiebar label {
  position: relative;
  display: block;
  padding: 8px 13px 8px 0;
  line-height: 1.2rem;
}
.contao-cookiebar label.group {
  font-weight: 600;
}
.contao-cookiebar input {
  position: absolute;
  width: 1px;
  height: 1px;
  outline: 0 none;
  opacity: 0;
}
.contao-cookiebar input + label {
  padding: 8px 13px 8px 45px;
  cursor: pointer;
}
.contao-cookiebar input + label:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 35px;
  height: 18px;
  margin: 0;
  box-sizing: content-box;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #9c9b99;
  transition: border-color 0.2s;
}
.contao-cookiebar input + label:after {
  display: block;
  content: "";
  position: absolute;
  top: 11px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 10px;
  background: #9c9b99;
  transition: background 0.2s, margin-left 0.2s, padding 0.2s;
}
.contao-cookiebar input + label:active:after {
  padding-left: 5px;
}
.contao-cookiebar input.cc-group-half + label:after {
  background: linear-gradient(to right, #9c9b99 0%, #9c9b99 50%, #399d32 50%, #399d32 100%);
}
.contao-cookiebar input:checked + label:after {
  background: #399d32;
  margin-left: 17px;
}
.contao-cookiebar input:checked + label:active:after {
  margin-left: 12px;
}
.contao-cookiebar input:checked + label:before {
  background: #dcf3db;
  border-color: #399d32;
}
.contao-cookiebar input:disabled + label {
  pointer-events: none;
}
.contao-cookiebar input:disabled + label:after {
  background: #c8c7c5;
}
.contao-cookiebar input:disabled + label:before {
  background: #f4f4f4;
  border-color: #c8c7c5;
}
.contao-cookiebar.cc-active .cc-inner {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.contao-cookiebar.cc-active.cc-blocked {
  pointer-events: auto;
  animation: cookiebar-overlay-in 0.5s ease-in-out forwards;
}
.contao-cookiebar.cc-saved.cc-inner {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.contao-cookiebar.cc-saved.cc-blocked {
  pointer-events: none;
  animation: cookiebar-overlay-out 0.5s ease-in-out forwards;
}

@media (min-width: 768px) {
  .contao-cookiebar .cc-btn {
    width: auto;
    margin-bottom: 0;
  }
  .contao-cookiebar .cc-inner {
    max-width: 750px;
  }
}
@keyframes cookiebar-overlay-in {
  0% {
    background: rgba(0, 0, 0, 0);
  }
  100% {
    background: rgba(0, 0, 0, 0.75);
  }
}
@keyframes cookiebar-overlay-out {
  0% {
    background: rgba(0, 0, 0, 0.75);
  }
  100% {
    background: rgba(0, 0, 0, 0);
    visibility: hidden;
  }
}
@keyframes cookiebar-top-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-top-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }
}
@keyframes cookiebar-middle-in {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes cookiebar-middle-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
  }
}
@keyframes cookiebar-bottom-in {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiebar-bottom-out {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }
}
.contao-cookiebar {
  color: #444444;
}
.contao-cookiebar p {
  color: #868686;
  line-height: 1.4;
}
.contao-cookiebar .cc-inner {
  padding: 23px;
  border-radius: 3px;
  box-shadow: rgba(99, 99, 99, 0.2) 0 2px 8px 0;
  background: #fff;
}
.contao-cookiebar .cc-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  position: relative;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  margin-bottom: 10px;
}
.contao-cookiebar .cc-group > label {
  flex-grow: 1;
  margin: 5px 0 5px 10px;
}
.contao-cookiebar .cc-group .cc-detail-btn {
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  color: #a2a2a2;
  padding: 8px 10px;
  line-height: 1.2rem;
}
.contao-cookiebar .cc-group .cc-detail-btn span:nth-child(2) {
  display: none;
}
.contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(1) {
  display: none;
}
.contao-cookiebar .cc-group .cc-detail-btn.cc-active span:nth-child(2) {
  display: inline;
}
.contao-cookiebar .cc-group .cc-detail-btn:hover {
  color: #717171;
}
.contao-cookiebar .cc-group .cc-detail-btn-details {
  display: inline-block;
  border: 0 none;
  outline: 0 none;
  background: transparent;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: initial;
  cursor: pointer;
  color: #a2a2a2;
  text-decoration: underline;
  padding: 0;
  margin: 0 0 10px;
}
.contao-cookiebar .cc-group .cc-detail-btn-details span:nth-child(2) {
  display: none;
}
.contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(1) {
  display: none;
}
.contao-cookiebar .cc-group .cc-detail-btn-details.cc-active span:nth-child(2) {
  display: inline;
}
.contao-cookiebar .cc-group .cc-detail-btn-details:hover {
  color: #717171;
}
.contao-cookiebar .cc-cookies {
  display: none;
  width: 100%;
  background: #fbfbfb;
  border-radius: 0 0 5px 5px;
}
.contao-cookiebar .cc-cookies > p {
  font-size: 0.875rem;
}
.contao-cookiebar .cc-cookies > p, .contao-cookiebar .cc-cookies > .cc-cookie {
  margin: 0;
  padding: 15px;
  border-top: 1px solid #e6e6e6;
}
.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info {
  font-size: 0.875rem;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #efefef;
}
.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div > span {
  font-weight: 600;
}
.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info > div + div {
  margin-top: 5px;
  word-wrap: break-word;
}
.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-info + button.cc-detail-btn-details {
  margin-top: 15px;
}
.contao-cookiebar .cc-cookies .cc-cookie .cc-cookie-desc > p {
  margin-bottom: 0;
}
.contao-cookiebar .cc-cookies .cc-cookie label.cookie + p, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + .cc-cookie-info, .contao-cookiebar .cc-cookies .cc-cookie label.cookie + button.cc-detail-btn-details {
  margin-top: 10px;
}
.contao-cookiebar .cc-cookies .cc-cookie p {
  margin: 0 0 15px;
  font-size: 0.875rem;
}
.contao-cookiebar .cc-footer, .contao-cookiebar .cc-info {
  text-align: center;
}
.contao-cookiebar .cc-info {
  margin-top: 15px;
}
.contao-cookiebar .cc-info > p {
  font-size: 0.875rem;
}
.contao-cookiebar .cc-info > a {
  display: inline-block;
  font-size: 0.813rem;
  color: #a2a2a2;
  text-decoration: none;
}
.contao-cookiebar .cc-info > a:hover {
  color: #717171;
}
.contao-cookiebar .cc-info > a + a:before {
  display: inline-block;
  content: "·";
  margin-right: 5px;
}
@charset "UTF-8";
/*
    Created on : 21.06.2021, 10:00:00
*/
/* open-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 300;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-300italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 400;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 500;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 500;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-500italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 600;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-600italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 700;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-700italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 800;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* open-sans-800italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Open Sans";
  font-style: italic;
  font-weight: 800;
  src: url("../../files/theme-demo/fonts/open-sans-v40-latin-800italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/**
 * Contao Open Source CMS
 *
 * Copyright (c) 2005-2015 Leo Feyer
 *
 * @license LGPL-3.0+
 */
/**
 * Reset the margin and padding of the block elements
 */
body, div, h1, h2, h3, h4, h5, h6, p, blockquote, pre, code, ol, ul, li, dl, dt, dd, figure, table, th, td, form, fieldset, legend, input, textarea {
  margin: 0;
  padding: 0;
}

/**
 * Basic element formatting
 */
table {
  border-spacing: 0;
  border-collapse: collapse;
}

caption, th, td {
  text-align: left;
  text-align: start; /* see #4596 */
  vertical-align: top;
}

abbr, acronym {
  font-variant: normal;
  border-bottom: 1px dotted #666;
  cursor: help;
}

blockquote, q {
  quotes: none;
}

fieldset, img {
  border: 0;
}

ul {
  list-style-type: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

del {
  text-decoration: line-through;
}

ins {
  text-decoration: none;
}

header, footer, nav, section, aside, article, figure, figcaption {
  /* display:block; */
}

/**
 * Default font settings
 */
body {
  font: 12px/1 sans-serif;
  color: #000;
}

input, button, textarea, select {
  font-family: inherit;
  font-size: 99%;
  font-weight: inherit;
}

pre, code {
  font-family: Monaco, monospace;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

h1 {
  font-size: 1.8333em; /* 22px */
}

h2 {
  font-size: 1.6667em; /* 20px */
}

h3 {
  font-size: 1.5em; /* 18px */
}

h4 {
  font-size: 1.3333em; /* 16px */
}

table {
  font-size: inherit;
}

caption, th, b {
  font-weight: bold;
}

a {
  color: inherit;
}

/**
 * Default margins
 */
/*h1,h2,h3,h4,h5,h6 {
    margin-top:1em;
}
h1,h2,h3,h4,h5,h6,p,pre,blockquote,table,ol,ul,form {
    margin-bottom:12px;  Should match the font size 
}*/
/*
    Created on : 03.02.2015, 08:44:48
    Description: Some SASS mixins
*/
.clearfix, .inside {
  zoom: 1;
}
.clearfix::after, .inside::after, .clearfix::before, .inside::before {
  content: "";
  display: table;
}
.clearfix::after, .inside::after {
  clear: both;
}

.fg-white {
  color: #fff;
}

.bg-white {
  background-color: #fff;
}

.fg-black {
  color: #000;
}

.bg-black {
  background-color: #000;
}

/*
    Created on : 17.04.2015, 09:34:00
    Descroption: Custom Contao 3.x Grid with fixed with
                 http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
                 Default Breaks...
                 @768 for portrait > sm
                 @1024 for landscape > md
                 @1280 for desktops > lg
                 Percenatgegrid uses bootstrap-like classes col-xs-*, col-sm-*...

                 Add some more breakoint by extent $arrBreakpoints
                 08.07.2016: Fixed clear-floating
                 23.09.2016: tuned grid, fixed col-xx-hide
*/
/*
 Created on : 22.07.2015, 16:12:20
 Changes :
 07.10.2015 - included percentage grid and rename old one to generatePixelGrid
 28.10.2015 - introduced prefixes
 27.01.2016 - added/fixed boxed behavior
 17.02.2016 - removes pixel-based grid calculation
 15.04.2016 - replace with css-calc
 24.06.2016 - remove junk
 23.09.2016 - tuned
 21.06.2021 - sass math package!
*/
/* STOP edit here! */
.grid {
  /*min-width: 320px;*/
  margin-left: auto;
  margin-right: auto;
}
.grid-fluid {
  max-width: 100% !important;
}

*[class*=col-] {
  /*display: inline;*/
  box-sizing: border-box;
  float: left;
  margin-left: 15px;
  margin-right: 15px;
}
*[class*=col-][class*=push-], *[class*=col-][class*=pull-] {
  position: relative;
}

.mod_article[class*=col-] {
  margin-left: 0;
  margin-right: 0;
}

.row {
  clear: left;
  margin-left: -15px;
  margin-right: -15px;
}

.col-xs-0 {
  width: calc(100% * 0 / 12 - 31px);
}
.col-xs-0.mod_article, .col-xs-0.no-margin {
  width: 0%;
}
.col-xs-0.no-margin-left, .col-xs-0.no-margin-right {
  width: calc(100% * 0 / 12 - 16px);
}

.offset-xs-0 {
  margin-left: calc(100% * 0 / 12 + 16px);
}
.offset-xs-0.mod_article {
  margin-left: 0%;
}

.push-xs-0 {
  left: 0%;
}

.pull-xs-0 {
  right: 0%;
}

.col-xs-1 {
  width: calc(100% * 1 / 12 - 31px);
}
.col-xs-1.mod_article, .col-xs-1.no-margin {
  width: 8.3333333333%;
}
.col-xs-1.no-margin-left, .col-xs-1.no-margin-right {
  width: calc(100% * 1 / 12 - 16px);
}

.offset-xs-1 {
  margin-left: calc(100% * 1 / 12 + 16px);
}
.offset-xs-1.mod_article {
  margin-left: 8.3333333333%;
}

.push-xs-1 {
  left: 8.3333333333%;
}

.pull-xs-1 {
  right: 8.3333333333%;
}

.col-xs-2 {
  width: calc(100% * 2 / 12 - 31px);
}
.col-xs-2.mod_article, .col-xs-2.no-margin {
  width: 16.6666666667%;
}
.col-xs-2.no-margin-left, .col-xs-2.no-margin-right {
  width: calc(100% * 2 / 12 - 16px);
}

.offset-xs-2 {
  margin-left: calc(100% * 2 / 12 + 16px);
}
.offset-xs-2.mod_article {
  margin-left: 16.6666666667%;
}

.push-xs-2 {
  left: 16.6666666667%;
}

.pull-xs-2 {
  right: 16.6666666667%;
}

.col-xs-3 {
  width: calc(100% * 3 / 12 - 31px);
}
.col-xs-3.mod_article, .col-xs-3.no-margin {
  width: 25%;
}
.col-xs-3.no-margin-left, .col-xs-3.no-margin-right {
  width: calc(100% * 3 / 12 - 16px);
}

.offset-xs-3 {
  margin-left: calc(100% * 3 / 12 + 16px);
}
.offset-xs-3.mod_article {
  margin-left: 25%;
}

.push-xs-3 {
  left: 25%;
}

.pull-xs-3 {
  right: 25%;
}

.col-xs-4 {
  width: calc(100% * 4 / 12 - 31px);
}
.col-xs-4.mod_article, .col-xs-4.no-margin {
  width: 33.3333333333%;
}
.col-xs-4.no-margin-left, .col-xs-4.no-margin-right {
  width: calc(100% * 4 / 12 - 16px);
}

.offset-xs-4 {
  margin-left: calc(100% * 4 / 12 + 16px);
}
.offset-xs-4.mod_article {
  margin-left: 33.3333333333%;
}

.push-xs-4 {
  left: 33.3333333333%;
}

.pull-xs-4 {
  right: 33.3333333333%;
}

.col-xs-5 {
  width: calc(100% * 5 / 12 - 31px);
}
.col-xs-5.mod_article, .col-xs-5.no-margin {
  width: 41.6666666667%;
}
.col-xs-5.no-margin-left, .col-xs-5.no-margin-right {
  width: calc(100% * 5 / 12 - 16px);
}

.offset-xs-5 {
  margin-left: calc(100% * 5 / 12 + 16px);
}
.offset-xs-5.mod_article {
  margin-left: 41.6666666667%;
}

.push-xs-5 {
  left: 41.6666666667%;
}

.pull-xs-5 {
  right: 41.6666666667%;
}

.col-xs-6 {
  width: calc(100% * 6 / 12 - 31px);
}
.col-xs-6.mod_article, .col-xs-6.no-margin {
  width: 50%;
}
.col-xs-6.no-margin-left, .col-xs-6.no-margin-right {
  width: calc(100% * 6 / 12 - 16px);
}

.offset-xs-6 {
  margin-left: calc(100% * 6 / 12 + 16px);
}
.offset-xs-6.mod_article {
  margin-left: 50%;
}

.push-xs-6 {
  left: 50%;
}

.pull-xs-6 {
  right: 50%;
}

.col-xs-7 {
  width: calc(100% * 7 / 12 - 31px);
}
.col-xs-7.mod_article, .col-xs-7.no-margin {
  width: 58.3333333333%;
}
.col-xs-7.no-margin-left, .col-xs-7.no-margin-right {
  width: calc(100% * 7 / 12 - 16px);
}

.offset-xs-7 {
  margin-left: calc(100% * 7 / 12 + 16px);
}
.offset-xs-7.mod_article {
  margin-left: 58.3333333333%;
}

.push-xs-7 {
  left: 58.3333333333%;
}

.pull-xs-7 {
  right: 58.3333333333%;
}

.col-xs-8 {
  width: calc(100% * 8 / 12 - 31px);
}
.col-xs-8.mod_article, .col-xs-8.no-margin {
  width: 66.6666666667%;
}
.col-xs-8.no-margin-left, .col-xs-8.no-margin-right {
  width: calc(100% * 8 / 12 - 16px);
}

.offset-xs-8 {
  margin-left: calc(100% * 8 / 12 + 16px);
}
.offset-xs-8.mod_article {
  margin-left: 66.6666666667%;
}

.push-xs-8 {
  left: 66.6666666667%;
}

.pull-xs-8 {
  right: 66.6666666667%;
}

.col-xs-9 {
  width: calc(100% * 9 / 12 - 31px);
}
.col-xs-9.mod_article, .col-xs-9.no-margin {
  width: 75%;
}
.col-xs-9.no-margin-left, .col-xs-9.no-margin-right {
  width: calc(100% * 9 / 12 - 16px);
}

.offset-xs-9 {
  margin-left: calc(100% * 9 / 12 + 16px);
}
.offset-xs-9.mod_article {
  margin-left: 75%;
}

.push-xs-9 {
  left: 75%;
}

.pull-xs-9 {
  right: 75%;
}

.col-xs-10 {
  width: calc(100% * 10 / 12 - 31px);
}
.col-xs-10.mod_article, .col-xs-10.no-margin {
  width: 83.3333333333%;
}
.col-xs-10.no-margin-left, .col-xs-10.no-margin-right {
  width: calc(100% * 10 / 12 - 16px);
}

.offset-xs-10 {
  margin-left: calc(100% * 10 / 12 + 16px);
}
.offset-xs-10.mod_article {
  margin-left: 83.3333333333%;
}

.push-xs-10 {
  left: 83.3333333333%;
}

.pull-xs-10 {
  right: 83.3333333333%;
}

.col-xs-11 {
  width: calc(100% * 11 / 12 - 31px);
}
.col-xs-11.mod_article, .col-xs-11.no-margin {
  width: 91.6666666667%;
}
.col-xs-11.no-margin-left, .col-xs-11.no-margin-right {
  width: calc(100% * 11 / 12 - 16px);
}

.offset-xs-11 {
  margin-left: calc(100% * 11 / 12 + 16px);
}
.offset-xs-11.mod_article {
  margin-left: 91.6666666667%;
}

.push-xs-11 {
  left: 91.6666666667%;
}

.pull-xs-11 {
  right: 91.6666666667%;
}

.col-xs-12 {
  width: calc(100% * 12 / 12 - 31px);
}
.col-xs-12.mod_article, .col-xs-12.no-margin {
  width: 100%;
}
.col-xs-12.no-margin-left, .col-xs-12.no-margin-right {
  width: calc(100% * 12 / 12 - 16px);
}

.offset-xs-12 {
  margin-left: calc(100% * 12 / 12 + 16px);
}
.offset-xs-12.mod_article {
  margin-left: 100%;
}

.push-xs-12 {
  left: 100%;
}

.pull-xs-12 {
  right: 100%;
}

@media screen and (max-width: 479px) {
  .col-xs-12 {
    clear: left;
  }
  .col-xs-hide {
    display: none;
  }
}
@media screen and (min-width: 481px) {
  .col-xsm-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-xsm-0.mod_article, .col-xsm-0.no-margin {
    width: 0%;
  }
  .col-xsm-0.no-margin-left, .col-xsm-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-xsm-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-xsm-0.mod_article {
    margin-left: 0%;
  }
  .push-xsm-0 {
    left: 0%;
  }
  .pull-xsm-0 {
    right: 0%;
  }
  .col-xsm-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-xsm-1.mod_article, .col-xsm-1.no-margin {
    width: 8.3333333333%;
  }
  .col-xsm-1.no-margin-left, .col-xsm-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-xsm-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-xsm-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-xsm-1 {
    left: 8.3333333333%;
  }
  .pull-xsm-1 {
    right: 8.3333333333%;
  }
  .col-xsm-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-xsm-2.mod_article, .col-xsm-2.no-margin {
    width: 16.6666666667%;
  }
  .col-xsm-2.no-margin-left, .col-xsm-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-xsm-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-xsm-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-xsm-2 {
    left: 16.6666666667%;
  }
  .pull-xsm-2 {
    right: 16.6666666667%;
  }
  .col-xsm-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-xsm-3.mod_article, .col-xsm-3.no-margin {
    width: 25%;
  }
  .col-xsm-3.no-margin-left, .col-xsm-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-xsm-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-xsm-3.mod_article {
    margin-left: 25%;
  }
  .push-xsm-3 {
    left: 25%;
  }
  .pull-xsm-3 {
    right: 25%;
  }
  .col-xsm-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-xsm-4.mod_article, .col-xsm-4.no-margin {
    width: 33.3333333333%;
  }
  .col-xsm-4.no-margin-left, .col-xsm-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-xsm-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-xsm-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-xsm-4 {
    left: 33.3333333333%;
  }
  .pull-xsm-4 {
    right: 33.3333333333%;
  }
  .col-xsm-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-xsm-5.mod_article, .col-xsm-5.no-margin {
    width: 41.6666666667%;
  }
  .col-xsm-5.no-margin-left, .col-xsm-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-xsm-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-xsm-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-xsm-5 {
    left: 41.6666666667%;
  }
  .pull-xsm-5 {
    right: 41.6666666667%;
  }
  .col-xsm-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-xsm-6.mod_article, .col-xsm-6.no-margin {
    width: 50%;
  }
  .col-xsm-6.no-margin-left, .col-xsm-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-xsm-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-xsm-6.mod_article {
    margin-left: 50%;
  }
  .push-xsm-6 {
    left: 50%;
  }
  .pull-xsm-6 {
    right: 50%;
  }
  .col-xsm-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-xsm-7.mod_article, .col-xsm-7.no-margin {
    width: 58.3333333333%;
  }
  .col-xsm-7.no-margin-left, .col-xsm-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-xsm-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-xsm-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-xsm-7 {
    left: 58.3333333333%;
  }
  .pull-xsm-7 {
    right: 58.3333333333%;
  }
  .col-xsm-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-xsm-8.mod_article, .col-xsm-8.no-margin {
    width: 66.6666666667%;
  }
  .col-xsm-8.no-margin-left, .col-xsm-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-xsm-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-xsm-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-xsm-8 {
    left: 66.6666666667%;
  }
  .pull-xsm-8 {
    right: 66.6666666667%;
  }
  .col-xsm-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-xsm-9.mod_article, .col-xsm-9.no-margin {
    width: 75%;
  }
  .col-xsm-9.no-margin-left, .col-xsm-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-xsm-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-xsm-9.mod_article {
    margin-left: 75%;
  }
  .push-xsm-9 {
    left: 75%;
  }
  .pull-xsm-9 {
    right: 75%;
  }
  .col-xsm-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-xsm-10.mod_article, .col-xsm-10.no-margin {
    width: 83.3333333333%;
  }
  .col-xsm-10.no-margin-left, .col-xsm-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-xsm-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-xsm-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-xsm-10 {
    left: 83.3333333333%;
  }
  .pull-xsm-10 {
    right: 83.3333333333%;
  }
  .col-xsm-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-xsm-11.mod_article, .col-xsm-11.no-margin {
    width: 91.6666666667%;
  }
  .col-xsm-11.no-margin-left, .col-xsm-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-xsm-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-xsm-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-xsm-11 {
    left: 91.6666666667%;
  }
  .pull-xsm-11 {
    right: 91.6666666667%;
  }
  .col-xsm-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-xsm-12.mod_article, .col-xsm-12.no-margin {
    width: 100%;
  }
  .col-xsm-12.no-margin-left, .col-xsm-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-xsm-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-xsm-12.mod_article {
    margin-left: 100%;
  }
  .push-xsm-12 {
    left: 100%;
  }
  .pull-xsm-12 {
    right: 100%;
  }
  .grid {
    max-width: 480px;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .col-xsm-12 {
    clear: left;
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .col-xsm-hide {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .col-sm-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-sm-0.mod_article, .col-sm-0.no-margin {
    width: 0%;
  }
  .col-sm-0.no-margin-left, .col-sm-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-sm-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-sm-0.mod_article {
    margin-left: 0%;
  }
  .push-sm-0 {
    left: 0%;
  }
  .pull-sm-0 {
    right: 0%;
  }
  .col-sm-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-sm-1.mod_article, .col-sm-1.no-margin {
    width: 8.3333333333%;
  }
  .col-sm-1.no-margin-left, .col-sm-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-sm-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-sm-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-sm-1 {
    left: 8.3333333333%;
  }
  .pull-sm-1 {
    right: 8.3333333333%;
  }
  .col-sm-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-sm-2.mod_article, .col-sm-2.no-margin {
    width: 16.6666666667%;
  }
  .col-sm-2.no-margin-left, .col-sm-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-sm-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-sm-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-sm-2 {
    left: 16.6666666667%;
  }
  .pull-sm-2 {
    right: 16.6666666667%;
  }
  .col-sm-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-sm-3.mod_article, .col-sm-3.no-margin {
    width: 25%;
  }
  .col-sm-3.no-margin-left, .col-sm-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-sm-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-sm-3.mod_article {
    margin-left: 25%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .col-sm-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-sm-4.mod_article, .col-sm-4.no-margin {
    width: 33.3333333333%;
  }
  .col-sm-4.no-margin-left, .col-sm-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-sm-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-sm-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-sm-4 {
    left: 33.3333333333%;
  }
  .pull-sm-4 {
    right: 33.3333333333%;
  }
  .col-sm-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-sm-5.mod_article, .col-sm-5.no-margin {
    width: 41.6666666667%;
  }
  .col-sm-5.no-margin-left, .col-sm-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-sm-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-sm-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-sm-5 {
    left: 41.6666666667%;
  }
  .pull-sm-5 {
    right: 41.6666666667%;
  }
  .col-sm-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-sm-6.mod_article, .col-sm-6.no-margin {
    width: 50%;
  }
  .col-sm-6.no-margin-left, .col-sm-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-sm-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-sm-6.mod_article {
    margin-left: 50%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .col-sm-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-sm-7.mod_article, .col-sm-7.no-margin {
    width: 58.3333333333%;
  }
  .col-sm-7.no-margin-left, .col-sm-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-sm-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-sm-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-sm-7 {
    left: 58.3333333333%;
  }
  .pull-sm-7 {
    right: 58.3333333333%;
  }
  .col-sm-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-sm-8.mod_article, .col-sm-8.no-margin {
    width: 66.6666666667%;
  }
  .col-sm-8.no-margin-left, .col-sm-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-sm-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-sm-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-sm-8 {
    left: 66.6666666667%;
  }
  .pull-sm-8 {
    right: 66.6666666667%;
  }
  .col-sm-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-sm-9.mod_article, .col-sm-9.no-margin {
    width: 75%;
  }
  .col-sm-9.no-margin-left, .col-sm-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-sm-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-sm-9.mod_article {
    margin-left: 75%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .col-sm-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-sm-10.mod_article, .col-sm-10.no-margin {
    width: 83.3333333333%;
  }
  .col-sm-10.no-margin-left, .col-sm-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-sm-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-sm-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-sm-10 {
    left: 83.3333333333%;
  }
  .pull-sm-10 {
    right: 83.3333333333%;
  }
  .col-sm-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-sm-11.mod_article, .col-sm-11.no-margin {
    width: 91.6666666667%;
  }
  .col-sm-11.no-margin-left, .col-sm-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-sm-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-sm-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-sm-11 {
    left: 91.6666666667%;
  }
  .pull-sm-11 {
    right: 91.6666666667%;
  }
  .col-sm-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-sm-12.mod_article, .col-sm-12.no-margin {
    width: 100%;
  }
  .col-sm-12.no-margin-left, .col-sm-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-sm-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-sm-12.mod_article {
    margin-left: 100%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .grid {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .col-sm-12 {
    clear: left;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .col-sm-hide {
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .col-md-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-md-0.mod_article, .col-md-0.no-margin {
    width: 0%;
  }
  .col-md-0.no-margin-left, .col-md-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-md-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-md-0.mod_article {
    margin-left: 0%;
  }
  .push-md-0 {
    left: 0%;
  }
  .pull-md-0 {
    right: 0%;
  }
  .col-md-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-md-1.mod_article, .col-md-1.no-margin {
    width: 8.3333333333%;
  }
  .col-md-1.no-margin-left, .col-md-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-md-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-md-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-md-1 {
    left: 8.3333333333%;
  }
  .pull-md-1 {
    right: 8.3333333333%;
  }
  .col-md-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-md-2.mod_article, .col-md-2.no-margin {
    width: 16.6666666667%;
  }
  .col-md-2.no-margin-left, .col-md-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-md-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-md-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-md-2 {
    left: 16.6666666667%;
  }
  .pull-md-2 {
    right: 16.6666666667%;
  }
  .col-md-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-md-3.mod_article, .col-md-3.no-margin {
    width: 25%;
  }
  .col-md-3.no-margin-left, .col-md-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-md-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-md-3.mod_article {
    margin-left: 25%;
  }
  .push-md-3 {
    left: 25%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .col-md-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-md-4.mod_article, .col-md-4.no-margin {
    width: 33.3333333333%;
  }
  .col-md-4.no-margin-left, .col-md-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-md-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-md-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-md-4 {
    left: 33.3333333333%;
  }
  .pull-md-4 {
    right: 33.3333333333%;
  }
  .col-md-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-md-5.mod_article, .col-md-5.no-margin {
    width: 41.6666666667%;
  }
  .col-md-5.no-margin-left, .col-md-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-md-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-md-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-md-5 {
    left: 41.6666666667%;
  }
  .pull-md-5 {
    right: 41.6666666667%;
  }
  .col-md-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-md-6.mod_article, .col-md-6.no-margin {
    width: 50%;
  }
  .col-md-6.no-margin-left, .col-md-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-md-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-md-6.mod_article {
    margin-left: 50%;
  }
  .push-md-6 {
    left: 50%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .col-md-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-md-7.mod_article, .col-md-7.no-margin {
    width: 58.3333333333%;
  }
  .col-md-7.no-margin-left, .col-md-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-md-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-md-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-md-7 {
    left: 58.3333333333%;
  }
  .pull-md-7 {
    right: 58.3333333333%;
  }
  .col-md-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-md-8.mod_article, .col-md-8.no-margin {
    width: 66.6666666667%;
  }
  .col-md-8.no-margin-left, .col-md-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-md-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-md-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-md-8 {
    left: 66.6666666667%;
  }
  .pull-md-8 {
    right: 66.6666666667%;
  }
  .col-md-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-md-9.mod_article, .col-md-9.no-margin {
    width: 75%;
  }
  .col-md-9.no-margin-left, .col-md-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-md-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-md-9.mod_article {
    margin-left: 75%;
  }
  .push-md-9 {
    left: 75%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .col-md-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-md-10.mod_article, .col-md-10.no-margin {
    width: 83.3333333333%;
  }
  .col-md-10.no-margin-left, .col-md-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-md-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-md-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-md-10 {
    left: 83.3333333333%;
  }
  .pull-md-10 {
    right: 83.3333333333%;
  }
  .col-md-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-md-11.mod_article, .col-md-11.no-margin {
    width: 91.6666666667%;
  }
  .col-md-11.no-margin-left, .col-md-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-md-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-md-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-md-11 {
    left: 91.6666666667%;
  }
  .pull-md-11 {
    right: 91.6666666667%;
  }
  .col-md-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-md-12.mod_article, .col-md-12.no-margin {
    width: 100%;
  }
  .col-md-12.no-margin-left, .col-md-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-md-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-md-12.mod_article {
    margin-left: 100%;
  }
  .push-md-12 {
    left: 100%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .grid {
    max-width: 1024px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1170px) {
  .col-md-12 {
    clear: left;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1170px) {
  .col-md-hide {
    display: none;
  }
}
@media screen and (min-width: 1171px) {
  .col-lg-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-lg-0.mod_article, .col-lg-0.no-margin {
    width: 0%;
  }
  .col-lg-0.no-margin-left, .col-lg-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-lg-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-lg-0.mod_article {
    margin-left: 0%;
  }
  .push-lg-0 {
    left: 0%;
  }
  .pull-lg-0 {
    right: 0%;
  }
  .col-lg-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-lg-1.mod_article, .col-lg-1.no-margin {
    width: 8.3333333333%;
  }
  .col-lg-1.no-margin-left, .col-lg-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-lg-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-lg-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-lg-1 {
    left: 8.3333333333%;
  }
  .pull-lg-1 {
    right: 8.3333333333%;
  }
  .col-lg-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-lg-2.mod_article, .col-lg-2.no-margin {
    width: 16.6666666667%;
  }
  .col-lg-2.no-margin-left, .col-lg-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-lg-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-lg-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-lg-2 {
    left: 16.6666666667%;
  }
  .pull-lg-2 {
    right: 16.6666666667%;
  }
  .col-lg-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-lg-3.mod_article, .col-lg-3.no-margin {
    width: 25%;
  }
  .col-lg-3.no-margin-left, .col-lg-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-lg-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-lg-3.mod_article {
    margin-left: 25%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .col-lg-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-lg-4.mod_article, .col-lg-4.no-margin {
    width: 33.3333333333%;
  }
  .col-lg-4.no-margin-left, .col-lg-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-lg-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-lg-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-lg-4 {
    left: 33.3333333333%;
  }
  .pull-lg-4 {
    right: 33.3333333333%;
  }
  .col-lg-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-lg-5.mod_article, .col-lg-5.no-margin {
    width: 41.6666666667%;
  }
  .col-lg-5.no-margin-left, .col-lg-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-lg-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-lg-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-lg-5 {
    left: 41.6666666667%;
  }
  .pull-lg-5 {
    right: 41.6666666667%;
  }
  .col-lg-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-lg-6.mod_article, .col-lg-6.no-margin {
    width: 50%;
  }
  .col-lg-6.no-margin-left, .col-lg-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-lg-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-lg-6.mod_article {
    margin-left: 50%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .col-lg-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-lg-7.mod_article, .col-lg-7.no-margin {
    width: 58.3333333333%;
  }
  .col-lg-7.no-margin-left, .col-lg-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-lg-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-lg-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-lg-7 {
    left: 58.3333333333%;
  }
  .pull-lg-7 {
    right: 58.3333333333%;
  }
  .col-lg-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-lg-8.mod_article, .col-lg-8.no-margin {
    width: 66.6666666667%;
  }
  .col-lg-8.no-margin-left, .col-lg-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-lg-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-lg-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-lg-8 {
    left: 66.6666666667%;
  }
  .pull-lg-8 {
    right: 66.6666666667%;
  }
  .col-lg-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-lg-9.mod_article, .col-lg-9.no-margin {
    width: 75%;
  }
  .col-lg-9.no-margin-left, .col-lg-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-lg-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-lg-9.mod_article {
    margin-left: 75%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .col-lg-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-lg-10.mod_article, .col-lg-10.no-margin {
    width: 83.3333333333%;
  }
  .col-lg-10.no-margin-left, .col-lg-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-lg-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-lg-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-lg-10 {
    left: 83.3333333333%;
  }
  .pull-lg-10 {
    right: 83.3333333333%;
  }
  .col-lg-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-lg-11.mod_article, .col-lg-11.no-margin {
    width: 91.6666666667%;
  }
  .col-lg-11.no-margin-left, .col-lg-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-lg-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-lg-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-lg-11 {
    left: 91.6666666667%;
  }
  .pull-lg-11 {
    right: 91.6666666667%;
  }
  .col-lg-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-lg-12.mod_article, .col-lg-12.no-margin {
    width: 100%;
  }
  .col-lg-12.no-margin-left, .col-lg-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-lg-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-lg-12.mod_article {
    margin-left: 100%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .grid {
    max-width: 1170px;
  }
}
@media screen and (min-width: 1171px) and (max-width: 1280px) {
  .col-lg-12 {
    clear: left;
  }
}
@media screen and (min-width: 1171px) and (max-width: 1280px) {
  .col-lg-hide {
    display: none;
  }
}
@media screen and (min-width: 1281px) {
  .col-xl-0 {
    width: calc(100% * 0 / 12 - 31px);
  }
  .col-xl-0.mod_article, .col-xl-0.no-margin {
    width: 0%;
  }
  .col-xl-0.no-margin-left, .col-xl-0.no-margin-right {
    width: calc(100% * 0 / 12 - 16px);
  }
  .offset-xl-0 {
    margin-left: calc(100% * 0 / 12 + 16px);
  }
  .offset-xl-0.mod_article {
    margin-left: 0%;
  }
  .push-xl-0 {
    left: 0%;
  }
  .pull-xl-0 {
    right: 0%;
  }
  .col-xl-1 {
    width: calc(100% * 1 / 12 - 31px);
  }
  .col-xl-1.mod_article, .col-xl-1.no-margin {
    width: 8.3333333333%;
  }
  .col-xl-1.no-margin-left, .col-xl-1.no-margin-right {
    width: calc(100% * 1 / 12 - 16px);
  }
  .offset-xl-1 {
    margin-left: calc(100% * 1 / 12 + 16px);
  }
  .offset-xl-1.mod_article {
    margin-left: 8.3333333333%;
  }
  .push-xl-1 {
    left: 8.3333333333%;
  }
  .pull-xl-1 {
    right: 8.3333333333%;
  }
  .col-xl-2 {
    width: calc(100% * 2 / 12 - 31px);
  }
  .col-xl-2.mod_article, .col-xl-2.no-margin {
    width: 16.6666666667%;
  }
  .col-xl-2.no-margin-left, .col-xl-2.no-margin-right {
    width: calc(100% * 2 / 12 - 16px);
  }
  .offset-xl-2 {
    margin-left: calc(100% * 2 / 12 + 16px);
  }
  .offset-xl-2.mod_article {
    margin-left: 16.6666666667%;
  }
  .push-xl-2 {
    left: 16.6666666667%;
  }
  .pull-xl-2 {
    right: 16.6666666667%;
  }
  .col-xl-3 {
    width: calc(100% * 3 / 12 - 31px);
  }
  .col-xl-3.mod_article, .col-xl-3.no-margin {
    width: 25%;
  }
  .col-xl-3.no-margin-left, .col-xl-3.no-margin-right {
    width: calc(100% * 3 / 12 - 16px);
  }
  .offset-xl-3 {
    margin-left: calc(100% * 3 / 12 + 16px);
  }
  .offset-xl-3.mod_article {
    margin-left: 25%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .col-xl-4 {
    width: calc(100% * 4 / 12 - 31px);
  }
  .col-xl-4.mod_article, .col-xl-4.no-margin {
    width: 33.3333333333%;
  }
  .col-xl-4.no-margin-left, .col-xl-4.no-margin-right {
    width: calc(100% * 4 / 12 - 16px);
  }
  .offset-xl-4 {
    margin-left: calc(100% * 4 / 12 + 16px);
  }
  .offset-xl-4.mod_article {
    margin-left: 33.3333333333%;
  }
  .push-xl-4 {
    left: 33.3333333333%;
  }
  .pull-xl-4 {
    right: 33.3333333333%;
  }
  .col-xl-5 {
    width: calc(100% * 5 / 12 - 31px);
  }
  .col-xl-5.mod_article, .col-xl-5.no-margin {
    width: 41.6666666667%;
  }
  .col-xl-5.no-margin-left, .col-xl-5.no-margin-right {
    width: calc(100% * 5 / 12 - 16px);
  }
  .offset-xl-5 {
    margin-left: calc(100% * 5 / 12 + 16px);
  }
  .offset-xl-5.mod_article {
    margin-left: 41.6666666667%;
  }
  .push-xl-5 {
    left: 41.6666666667%;
  }
  .pull-xl-5 {
    right: 41.6666666667%;
  }
  .col-xl-6 {
    width: calc(100% * 6 / 12 - 31px);
  }
  .col-xl-6.mod_article, .col-xl-6.no-margin {
    width: 50%;
  }
  .col-xl-6.no-margin-left, .col-xl-6.no-margin-right {
    width: calc(100% * 6 / 12 - 16px);
  }
  .offset-xl-6 {
    margin-left: calc(100% * 6 / 12 + 16px);
  }
  .offset-xl-6.mod_article {
    margin-left: 50%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .col-xl-7 {
    width: calc(100% * 7 / 12 - 31px);
  }
  .col-xl-7.mod_article, .col-xl-7.no-margin {
    width: 58.3333333333%;
  }
  .col-xl-7.no-margin-left, .col-xl-7.no-margin-right {
    width: calc(100% * 7 / 12 - 16px);
  }
  .offset-xl-7 {
    margin-left: calc(100% * 7 / 12 + 16px);
  }
  .offset-xl-7.mod_article {
    margin-left: 58.3333333333%;
  }
  .push-xl-7 {
    left: 58.3333333333%;
  }
  .pull-xl-7 {
    right: 58.3333333333%;
  }
  .col-xl-8 {
    width: calc(100% * 8 / 12 - 31px);
  }
  .col-xl-8.mod_article, .col-xl-8.no-margin {
    width: 66.6666666667%;
  }
  .col-xl-8.no-margin-left, .col-xl-8.no-margin-right {
    width: calc(100% * 8 / 12 - 16px);
  }
  .offset-xl-8 {
    margin-left: calc(100% * 8 / 12 + 16px);
  }
  .offset-xl-8.mod_article {
    margin-left: 66.6666666667%;
  }
  .push-xl-8 {
    left: 66.6666666667%;
  }
  .pull-xl-8 {
    right: 66.6666666667%;
  }
  .col-xl-9 {
    width: calc(100% * 9 / 12 - 31px);
  }
  .col-xl-9.mod_article, .col-xl-9.no-margin {
    width: 75%;
  }
  .col-xl-9.no-margin-left, .col-xl-9.no-margin-right {
    width: calc(100% * 9 / 12 - 16px);
  }
  .offset-xl-9 {
    margin-left: calc(100% * 9 / 12 + 16px);
  }
  .offset-xl-9.mod_article {
    margin-left: 75%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .col-xl-10 {
    width: calc(100% * 10 / 12 - 31px);
  }
  .col-xl-10.mod_article, .col-xl-10.no-margin {
    width: 83.3333333333%;
  }
  .col-xl-10.no-margin-left, .col-xl-10.no-margin-right {
    width: calc(100% * 10 / 12 - 16px);
  }
  .offset-xl-10 {
    margin-left: calc(100% * 10 / 12 + 16px);
  }
  .offset-xl-10.mod_article {
    margin-left: 83.3333333333%;
  }
  .push-xl-10 {
    left: 83.3333333333%;
  }
  .pull-xl-10 {
    right: 83.3333333333%;
  }
  .col-xl-11 {
    width: calc(100% * 11 / 12 - 31px);
  }
  .col-xl-11.mod_article, .col-xl-11.no-margin {
    width: 91.6666666667%;
  }
  .col-xl-11.no-margin-left, .col-xl-11.no-margin-right {
    width: calc(100% * 11 / 12 - 16px);
  }
  .offset-xl-11 {
    margin-left: calc(100% * 11 / 12 + 16px);
  }
  .offset-xl-11.mod_article {
    margin-left: 91.6666666667%;
  }
  .push-xl-11 {
    left: 91.6666666667%;
  }
  .pull-xl-11 {
    right: 91.6666666667%;
  }
  .col-xl-12 {
    width: calc(100% * 12 / 12 - 31px);
  }
  .col-xl-12.mod_article, .col-xl-12.no-margin {
    width: 100%;
  }
  .col-xl-12.no-margin-left, .col-xl-12.no-margin-right {
    width: calc(100% * 12 / 12 - 16px);
  }
  .offset-xl-12 {
    margin-left: calc(100% * 12 / 12 + 16px);
  }
  .offset-xl-12.mod_article {
    margin-left: 100%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .grid {
    max-width: 1280px;
  }
}
@media screen and (min-width: 1281px) {
  .col-xl-12 {
    clear: left;
  }
  .col-xl-hide {
    display: none;
  }
}
/*@import "_gridViewLayout";*/
:root {
  --default-text: #333333;
  --default-font-family: "Open Sans", sans-serif;
  --color-default-background: #fff;
  --color-primary: #e6d1c6;
  --color-primary-contrast: #fff;
  --color-primary-dark: #e1b096;
  --color-primary-darker: #d6926e;
  --color-secondary: #343534;
  --color-secondary-contrast: #fff;
  --color-highlight: #f7f7f7;
  --color-warn: red;
  --color-success: green;
  --color-warn: yellow;
  --color-info: blue;
  --font-size: 18px;
  --line-height: 27px;
  --border-radius-small: 8px;
}

/* 
    Created on : 26.02.2015, 13:21:0
    Changes    : 
        22.07.2015, 11:24:00
        07.07.2016 - fixed gallery-listing, remove junk
*/
.invisible {
  position: absolute;
  left: -6000px;
  top: -6000px;
  display: none;
}

nav ul {
  margin: 0;
}
nav a {
  text-decoration: none;
}

a img {
  display: block;
}

figure.float_right {
  float: right;
}
figure.float_left {
  float: left;
}
figure img {
  display: block;
}

.ce_gallery ul {
  margin-top: 0;
}
.ce_gallery li {
  float: left;
  vertical-align: middle;
  margin-top: 0;
  margin-right: 15px;
  margin-bottom: 15px;
}
.ce_gallery figure {
  margin: 0;
}
.ce_gallery img {
  max-width: 100%;
  height: auto;
}
.ce_gallery .cols_1 li {
  width: 100%;
  margin-right: 0;
}
@media screen and (max-width: 480px) {
  .ce_gallery .cols_2 li,
  .ce_gallery .cols_3 li,
  .ce_gallery .cols_4 li,
  .ce_gallery .cols_5 li,
  .ce_gallery .cols_6 li,
  .ce_gallery .cols_7 li,
  .ce_gallery .cols_8 li,
  .ce_gallery .cols_9 li,
  .ce_gallery .cols_10 li,
  .ce_gallery .cols_11 li,
  .ce_gallery .cols_12 li {
    margin-right: 0;
  }
}
@media screen and (min-width: 481px) {
  .ce_gallery .cols_2 li,
  .ce_gallery .cols_3 li,
  .ce_gallery .cols_4 li,
  .ce_gallery .cols_5 li,
  .ce_gallery .cols_6 li,
  .ce_gallery .cols_7 li,
  .ce_gallery .cols_8 li,
  .ce_gallery .cols_9 li,
  .ce_gallery .cols_10 li,
  .ce_gallery .cols_11 li,
  .ce_gallery .cols_12 li {
    width: calc((100% - 15px) / 2);
  }
}
@media screen and (min-width: 481px) and (max-width: 768px) {
  .ce_gallery .cols_2 li:nth-child(2n+1),
  .ce_gallery .cols_3 li:nth-child(2n+1),
  .ce_gallery .cols_4 li:nth-child(2n+1),
  .ce_gallery .cols_5 li:nth-child(2n+1),
  .ce_gallery .cols_6 li:nth-child(2n+1),
  .ce_gallery .cols_7 li:nth-child(2n+1),
  .ce_gallery .cols_8 li:nth-child(2n+1),
  .ce_gallery .cols_9 li:nth-child(2n+1),
  .ce_gallery .cols_10 li:nth-child(2n+1),
  .ce_gallery .cols_11 li:nth-child(2n+1),
  .ce_gallery .cols_12 li:nth-child(2n+1) {
    clear: left;
  }
  .ce_gallery .cols_2 li:nth-child(2n),
  .ce_gallery .cols_3 li:nth-child(2n),
  .ce_gallery .cols_4 li:nth-child(2n),
  .ce_gallery .cols_5 li:nth-child(2n),
  .ce_gallery .cols_6 li:nth-child(2n),
  .ce_gallery .cols_7 li:nth-child(2n),
  .ce_gallery .cols_8 li:nth-child(2n),
  .ce_gallery .cols_9 li:nth-child(2n),
  .ce_gallery .cols_10 li:nth-child(2n),
  .ce_gallery .cols_11 li:nth-child(2n),
  .ce_gallery .cols_12 li:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) {
  .ce_gallery .cols_2 li {
    width: calc((100% - 15px) / 2);
  }
  .ce_gallery .cols_2 li:nth-child(2n+1) {
    clear: left;
  }
  .ce_gallery .cols_2 li:nth-child(2n) {
    margin-right: 0;
  }
  .ce_gallery .cols_3 li {
    width: calc((100% - 30px) / 3);
  }
  .ce_gallery .cols_3 li:nth-child(3n+1) {
    clear: left;
  }
  .ce_gallery .cols_3 li:nth-child(3n) {
    margin-right: 0;
  }
  .ce_gallery .cols_4 li {
    width: calc((100% - 45px) / 4);
  }
  .ce_gallery .cols_4 li:nth-child(4n+1) {
    clear: left;
  }
  .ce_gallery .cols_4 li:nth-child(4n) {
    margin-right: 0;
  }
  .ce_gallery .cols_5 li {
    width: calc((100% - 60px) / 5);
  }
  .ce_gallery .cols_5 li:nth-child(5n+1) {
    clear: left;
  }
  .ce_gallery .cols_5 li:nth-child(5n) {
    margin-right: 0;
  }
  .ce_gallery .cols_6 li {
    width: calc((100% - 75px) / 6);
  }
  .ce_gallery .cols_6 li:nth-child(6n+1) {
    clear: left;
  }
  .ce_gallery .cols_6 li:nth-child(6n) {
    margin-right: 0;
  }
  .ce_gallery .cols_7 li {
    width: calc((100% - 90px) / 7);
  }
  .ce_gallery .cols_7 li:nth-child(7n+1) {
    clear: left;
  }
  .ce_gallery .cols_7 li:nth-child(7n) {
    margin-right: 0;
  }
  .ce_gallery .cols_8 li {
    width: calc((100% - 105px) / 8);
  }
  .ce_gallery .cols_8 li:nth-child(8n+1) {
    clear: left;
  }
  .ce_gallery .cols_8 li:nth-child(8n) {
    margin-right: 0;
  }
  .ce_gallery .cols_9 li {
    width: calc((100% - 120px) / 9);
  }
  .ce_gallery .cols_9 li:nth-child(9n+1) {
    clear: left;
  }
  .ce_gallery .cols_9 li:nth-child(9n) {
    margin-right: 0;
  }
  .ce_gallery .cols_10 li {
    width: calc((100% - 135px) / 10);
  }
  .ce_gallery .cols_10 li:nth-child(10n+1) {
    clear: left;
  }
  .ce_gallery .cols_10 li:nth-child(10n) {
    margin-right: 0;
  }
  .ce_gallery .cols_11 li {
    width: calc((100% - 150px) / 11);
  }
  .ce_gallery .cols_11 li:nth-child(11n+1) {
    clear: left;
  }
  .ce_gallery .cols_11 li:nth-child(11n) {
    margin-right: 0;
  }
}

.ce_accordion ul li,
.ce_accordion ol li,
.ce_text ul li,
.ce_text ol li,
.ce_list ul li,
.ce_list ol li {
  margin-left: 2rem;
}
.ce_accordion ul,
.ce_text ul,
.ce_list ul {
  list-style-type: disc;
}
.ce_accordion ol,
.ce_text ol,
.ce_list ol {
  list-style-type: decimal;
}

.ce_accordion .toggle {
  cursor: pointer;
}
.ce_accordion .content {
  overflow: hidden;
  transition: max-height 420ms;
}

label > span.mandatory {
  display: inline;
}

.video_wrapper {
  background-image: url("../../files/theme-demo/dist/images/16_9_youtube_placeholder.jpg");
  background-size: cover;
  position: relative;
  width: 100%;
  margin-bottom: 27px;
}
.video_wrapper input {
  margin: auto;
  display: block;
}
.video_wrapper .video_trigger {
  padding: 60px 20px;
  height: calc(100% - 120px);
  width: calc(100% - 40px);
  position: absolute;
  /*bottom        : 0;*/
  z-index: 9;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}
@media (min-width: 769px) {
  .video_wrapper .video_trigger {
    padding: 130px 30px;
    height: calc(100% - 260px);
    width: calc(100% - 60px);
  }
}
.video_wrapper .video_trigger_title {
  font-size: 25px;
  font-size: 1.5625rem;
  line-height: 27px;
  line-height: 1.6875rem;
  background-color: #FF0000;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  padding: 5px 0 5px 15px;
  width: 100%;
  box-sizing: border-box;
}
.video_wrapper .video_trigger_text {
  text-align: center;
}
.video_wrapper .video_trigger_button {
  background-color: #FF0000;
  color: #fff;
}
.video_wrapper .video_layer {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video_wrapper .video_layer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*
    Created on : xx.xx.xxxx, xx:xx:00
*/
body {
  font: 100%/1em var(--default-font-family);
  color: var(--default-text);
  background-color: var(--color-default-background);
}

h1,
.h1 {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 54px;
  line-height: 3.375rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

h2,
.h2 {
  font-size: 28.8px;
  font-size: 1.8rem;
  line-height: 40.5px;
  line-height: 2.53125rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 40.5px;
  margin-bottom: 2.53125rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

h3,
.h3 {
  font-size: 23.4px;
  font-size: 1.4625rem;
  line-height: 27px;
  line-height: 1.6875rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #575757;
}

h4,
.h4 {
  font-size: 21.6px;
  font-size: 1.35rem;
  line-height: 27px;
  line-height: 1.6875rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

h5,
.h5 {
  font-size: 19.8px;
  font-size: 1.2375rem;
  line-height: 27px;
  line-height: 1.6875rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

p,
ul,
ol,
table,
dl,
.ce_hyperlink,
div.submit,
h6,
.h6 {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  line-height: 1.6875rem;
  /*top: $lineHeight + px;*/
  /*top: rempharize($lineHeight);*/
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

figcaption,
label,
.text {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  line-height: 1.6875rem;
}

.icon-large {
  font-size: 64px;
  font-size: 4rem;
  line-height: 81px;
  line-height: 5.0625rem;
  color: #575757;
}

p.error,
span.error {
  color: red;
}

p.error {
  margin-bottom: 0;
}

hr {
  border: 1px solid #e6d1c6;
  border-width: 0 0 1px;
  margin-bottom: 27px;
}
@media (min-width: 769px) {
  hr {
    margin-left: 20%;
  }
}
@media (min-width: 769px) {
  hr.text-center {
    margin-left: 20%;
    margin-right: 20%;
  }
}

.ce_form label, .mod_form label {
  display: none;
}
.ce_form label > span.error, .mod_form label > span.error {
  display: block !important;
  transform: translateY(-50%);
}
.ce_form .checkbox_container label, .mod_form .checkbox_container label {
  margin-bottom: 27px;
  display: block;
}
.ce_form .checkbox_container > span, .mod_form .checkbox_container > span {
  display: flex;
  align-items: baseline;
}
.ce_form .checkbox_container legend, .mod_form .checkbox_container legend {
  display: none;
}
.ce_form .checkbox_container input, .mod_form .checkbox_container input {
  margin-right: 12px;
}
.ce_form .radio_container, .mod_form .radio_container {
  display: flex;
  flex-direction: row;
  margin-bottom: 27px;
}
.ce_form .radio_container span, .mod_form .radio_container span {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 16px;
}
.ce_form .radio_container input, .mod_form .radio_container input {
  margin-right: 6px;
}
.ce_form .radio_container label, .mod_form .radio_container label {
  display: block;
}
.ce_form .grecaptcha-badge, .mod_form .grecaptcha-badge {
  margin-bottom: 27px;
}
.ce_form .widget-submit, .mod_form .widget-submit {
  margin-bottom: 27px;
}
.ce_form .formbody, .mod_form .formbody {
  display: flex;
  flex-direction: column;
}
.ce_form .formbody .widget, .mod_form .formbody .widget {
  padding-left: 15px;
  padding-right: 15px;
  flex: 0 0 calc(100% - 15px - 15px);
}
.ce_form .formbody .widget-submit, .mod_form .formbody .widget-submit {
  margin-bottom: 27px;
  text-align: right;
  margin-top: 17px;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea,
select,
.btn,
input[type=button],
input[type=submit],
button {
  outline: none;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 27px;
  line-height: 1.6875rem;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
textarea,
select {
  display: block;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  width: 100%;
  border: 1px solid #e5e5e5;
}
form.large input[type=text],
form.large input[type=email],
form.large input[type=password],
form.large input[type=number],
form.large input[type=tel],
form.large input[type=url],
form.large textarea,
form.large select {
  padding-top: 22.5px;
  padding-bottom: 22.5px;
  padding-left: 25px;
}

select {
  height: 37px;
}
form.large select {
  height: 47px;
}

.btn,
input[type=button],
input[type=submit],
button {
  border-width: 0;
  cursor: pointer;
  padding: 8px 32px 6px;
  text-decoration: none;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 2px;
}

.btn-primary {
  transition: color 240ms, background 240ms;
  background-color: var(--color-primary-dark);
  color: var(--color-primary-contrast);
}
.btn-primary:hover {
  background-color: var(--color-primary-darker);
  color: var(--color-primary-contrast);
}
.btn-secondary {
  transition: color 240ms, background 240ms;
  background-color: var(--color-secondary);
  color: var(--color-secondary-contrast);
}
.btn-secondary:hover {
  background-color: #414241;
  color: var(--color-secondary-contrast);
}

button.mfp-arrow {
  opacity: 1;
  width: 50px;
  height: 50px;
}
button.mfp-arrow:before {
  display: none;
  border: none;
}
button.mfp-arrow:after {
  display: none;
  border: none;
}
button.mfp-arrow.mfp-arrow-left {
  background: url(../../files/theme-demo/images/arrow-lightbox.svg) no-repeat center center;
}
button.mfp-arrow.mfp-arrow-right {
  background: url(../../files/theme-demo/images/arrow-lightbox-next.svg) no-repeat center center;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #232424;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #232424;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #232424;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #232424;
}

figure {
  margin-bottom: 27px;
}
figure.float_right {
  margin-left: 15px;
}
figure.float_left {
  margin-right: 15px;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

.mod_breabcrumb ul {
  list-style: none;
}
@media (min-width: 769px) {
  .mod_breabcrumb li {
    display: inline-block;
  }
  .mod_breabcrumb li::before {
    display: inline-block;
    content: ">>";
  }
}

.display-flex {
  display: flex;
  flex-wrap: wrap;
}

.content-table table {
  width: 100%;
}
.content-table th {
  padding: 2px 12px;
  font-weight: normal;
}
.content-table td {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 4px;
}
.content-table td.col_first {
  border-left-width: 0;
}
.content-table td.col_last {
  border-right-width: 0;
}
.content-table tr.row_last td {
  border-bottom-width: 0;
}
.content-table.text-center td,
.content-table.text-center th {
  text-align: center;
}

.content-youtube .responsive-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 15px;
  height: 0;
  overflow: hidden;
}
.content-youtube .responsive-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-hyperlink {
  margin-bottom: 27px;
}

.content-accordion {
  border-top: 1px solid #ddd;
}
.content-accordion .handorgel__header {
  border-width: 1px 0;
  margin: 0;
}
.content-accordion .handorgel__header__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.content-accordion .handorgel__header__button .fa-solid {
  flex: 0 0 27px;
  text-align: center;
  transform: rotate(90deg);
  transition: transform 420ms;
}
.content-accordion .handorgel__header__button[aria-expanded=true] .fa-solid {
  transform: rotate(-90deg);
}
.content-accordion .handorgel__content {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
  display: block !important;
}
.content-accordion .handorgel__content__inner {
  overflow: hidden;
}
.content-accordion .handorgel__header__button {
  border: 0;
  padding: 27px 0;
  color: #e6d1c6;
  width: 100%;
  text-align: left;
  background-color: transparent;
}

#article-4 .content-element-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
#article-4 .content-element-group .content-static {
  margin-bottom: 54px;
  display: flex;
  flex-direction: column;
  box-shadow: 1px 1px 12px 1px rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  padding: 27px;
}
#article-4 .content-element-group .icon-large {
  flex: 1 1 auto;
}

#main .inside {
  padding-top: 27px;
}
@media (min-width: 1025px) {
  #main .inside {
    padding-top: 54px;
    padding-bottom: 27px;
  }
}
@media (min-width: 1281px) {
  #main .inside {
    padding-top: 81px;
    padding-bottom: 54px;
  }
}
#slideshow .inside {
  padding: 0 !important;
}

@media (min-width: 1025px) {
  #main > .bg-highlight2 .inside {
    padding-bottom: 0 !important;
  }
}
#main > .bg-highlight2 .inside figure {
  margin: 0;
}

#preloader {
  display: none;
}

#header .logo {
  padding-top: 8px;
  padding-bottom: 8px;
}
@media (min-width: 1025px) {
  #header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
    background-color: #fff;
  }
  #header .inside {
    display: flex;
    align-items: center;
  }
}

#header-slide {
  position: relative;
}
#header-slide .header-text {
  text-align: center;
}
@media (min-width: 1025px) {
  #header-slide h1,
  #header-slide .h1,
  #header-slide h2,
  #header-slide .h2,
  #header-slide h3,
  #header-slide .h3 {
    color: #fff;
    text-shadow: 1px 1px 2px black;
  }
  #header-slide h1 {
    font-size: 54px;
    font-size: 3.375rem;
    line-height: 54px;
    line-height: 3.375rem;
  }
  #header-slide .header-text {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 54px;
  }
  #header-slide > .content-image figure {
    margin: 0;
    background: #5d5d5d;
    background: #000;
  }
  #header-slide > .content-image figure img {
    opacity: 0.8;
  }
}

#footer {
  text-align: center;
  background-color: var(--color-highlight);
}
#footer .inside {
  padding-bottom: 27px;
}
@media (min-width: 769px) {
  #footer .inside {
    padding-top: 54px;
    padding-bottom: 54px;
  }
}
#footer a {
  text-decoration: none;
  font-weight: bold;
}
#footer .socials .fa-brands {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 54px;
  line-height: 3.375rem;
}
#footer .socials a {
  margin-left: 8px;
  margin-right: 8px;
}

#copyright {
  background-color: var(--color-secondary);
  color: var(--color-secondary-contrast);
}
#copyright .content-static,
#copyright .nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#copyright .text,
#copyright .nav {
  font-size: 14.4px;
  font-size: 0.9rem;
  line-height: 54px;
  line-height: 3.375rem;
}
#copyright .nav {
  margin-bottom: 0;
}
@media (min-width: 621px) {
  #copyright .content-static {
    flex-direction: row;
    justify-content: center;
  }
  #copyright .nav {
    flex-direction: row;
    justify-content: center;
    margin-left: 24px;
  }
  #copyright .nav .block, #copyright .nav figure.full-responsive img, figure.full-responsive #copyright .nav img, #copyright .nav figure.responsive img, figure.responsive #copyright .nav img, #copyright .nav img.full-responsive, #copyright .nav img.responsive, #copyright .nav .block-center, #copyright .nav img.center, #copyright .nav label[for=nav-trigger] span, label[for=nav-trigger] #copyright .nav span, #copyright .nav label[for=nav-trigger] span::before, label[for=nav-trigger] #copyright .nav span::before, #copyright .nav label[for=nav-trigger] span::after, label[for=nav-trigger] #copyright .nav span::after, #copyright .nav #toplink {
    display: inline !important;
  }
  #copyright .nav li::after {
    content: "|";
    margin-left: 3px;
    margin-right: 6px;
  }
  #copyright .nav li:last-child::after {
    content: none;
  }
}

.contao-cookiebar .cc-inner {
  margin: auto;
}

#toplink {
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  position: fixed;
  transition: opacity 420ms;
  font-size: 0;
  background-color: #575757;
  opacity: 1;
}
#toplink::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 8px;
  display: block;
  border: 12px solid #e6d1c6;
  border-left-color: transparent;
  border-right-color: transparent;
  border-top-color: transparent;
}

.ce_rsce_google_map_optin {
  margin-bottom: 27px;
}
.ce_rsce_google_map_optin > div {
  background: rgba(0, 0, 0, 0.6) url("../../files/theme-demo/images/map_meviso.svg") no-repeat 50% 50%;
  background-size: cover;
  width: 100%;
  margin: 0;
  padding: 0;
  min-height: 450px;
  position: relative;
}
.ce_rsce_google_map_optin > div p {
  margin-bottom: 27px;
}
.ce_rsce_google_map_optin > div p a {
  color: inherit;
}
.ce_rsce_google_map_optin > div p a:hover {
  color: black;
}

.maps_allow_wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333333;
}
.maps_allow_wrapper input {
  display: block;
  margin: auto;
}

.js .sticky-wrapper {
  background-color: rgba(255, 0, 0, 0.3);
}
@media (min-width: 1025px) {
  .js #sticked {
    padding-bottom: 70px;
    margin-bottom: 27px;
    position: relative;
  }
  .js .sticky-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }
  .js .sticked .sticky-wrapper {
    position: fixed;
    z-index: 1030;
  }
}

/*@import "_mobile_slide-in-menu";*/
/*@import "_mobile_menu";*/
/*
    Created on : 09.06.2017, 16:33:00
    Description: Allround menu tempalte
*/
body.no-scroll {
  position: fixed;
  overflow-y: hidden;
  width: 100%;
}

label[for=nav-trigger] {
  position: absolute;
  margin: 12px;
  float: left;
  display: block;
  cursor: pointer;
  right: 0;
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 0;
  line-height: 0;
  z-index: 1000005;
  top: 0;
}
label[for=nav-trigger] span {
  top: 0px;
}
label[for=nav-trigger] span, label[for=nav-trigger] span::before, label[for=nav-trigger] span::after {
  content: "";
  background-color: #e6d1c6;
  position: relative;
  width: 25px;
  height: 5px;
}
label[for=nav-trigger] span::before {
  top: 10px;
}
label[for=nav-trigger] span::after {
  top: 15px;
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] {
  /*top: -84px;*/
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span {
  height: 0;
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span::before {
  top: 10px;
  transform: rotate(45deg);
}
#nav-trigger:checked ~ #wrapper label[for=nav-trigger] span::after {
  top: 5px;
  transform: rotate(-45deg);
}
@media (min-width: 1024px) {
  label[for=nav-trigger] {
    display: none !important;
  }
}

#root a,
#root strong {
  display: block;
  white-space: nowrap;
}
#root .level_1 > li.nav-primary > a {
  background-color: #e6d1c6;
  color: #fff !important;
}
#root .level_1 > li > a,
#root .level_1 > li > strong {
  text-transform: uppercase;
}
#root ul ul {
  overflow: hidden;
  transition: max-height 800ms;
}
@media (max-width: 1024px) {
  #root {
    display: none;
    width: 100%;
    margin: 0;
    z-index: 12345;
    background-color: #fff;
    position: fixed;
    overflow: scroll;
    left: 0;
    top: 103px;
    top: 0px;
    bottom: 0;
    right: 0;
  }
  #root ul {
    font-size: 16px;
    font-size: 1rem;
    line-height: 48px;
    line-height: 3rem;
    margin: 0;
  }
  #root li.trail > a, #root li.active > a {
    color: #e6d1c6;
  }
  #root li.submenu > a::after,
  #root li.submenu > strong::after {
    content: url("../../files/theme-demo/images/submenu-caret-mobile.svg");
    display: inline-block;
    margin-left: 12px;
    position: relative;
    top: 0;
    transform: rotatez(-90deg);
    transition: transform 200ms;
  }
  .no-js #root li.submenu > a::after,
  .no-js #root li.submenu > strong::after {
    transform: rotatez(0deg);
  }
  .js #root li.submenu > ul {
    display: none;
  }
  #root li.submenuOpen > a::after,
  #root li.submenuOpen > strong::after {
    transform: rotatez(0deg);
  }
  .js #root li.submenuOpen > ul {
    display: block;
  }
  #root li li > a,
  #root li li > strong {
    padding-left: 54px;
  }
  #root li li li > a,
  #root li li li > strong {
    padding-left: 81px;
  }
  #root li li li li > a,
  #root li li li li > strong {
    padding-left: 108px;
  }
  #root a,
  #root strong {
    border-bottom: 1px solid rgba(179, 179, 179, 0.5);
    padding-left: 27px;
  }
  #nav-trigger:checked ~ #wrapper #root {
    display: block;
  }
}
@media (min-width: 1025px) {
  #root {
    position: relative;
    z-index: 1;
    font-weight: bold;
  }
  #root .showJustMobile {
    display: none !important;
  }
  #root ul {
    font-size: 16px;
    font-size: 1rem;
    line-height: 72px;
    line-height: 4.5rem;
    display: flex;
    flex-direction: row;
  }
  #root ul ul {
    transition: max-height 420ms;
  }
  #root a,
  #root strong {
    padding-left: 16px;
    padding-right: 16px;
    text-transform: uppercase;
  }
  #root a {
    transition: color 480ms;
  }
  #root a:hover {
    transition-duration: 240ms;
    color: #e6d1c6;
  }
  #root strong {
    color: #e6d1c6;
  }
  #root .submenu > ul {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.8);
    right: 0;
  }
  #root .submenu.submenuOpen > ul {
    z-index: 2;
  }
  html:not(.js) #root .submenu:hover > ul {
    display: block;
  }
  #root .level_1 {
    display: flex;
    flex-wrap: nowrap;
    /*align-content: stretch;*/
  }
  #root .level_1 > li {
    /*flex-grow: 1;*/
  }
  #root .level_1 > li.bg-primary > a {
    background-color: #e6d1c6;
    color: #fff;
  }
}
#nav-trigger:checked ~ #wrapper #container {
  position: relative;
}
#nav-trigger:checked ~ #wrapper #container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1234;
  background-color: rgba(0, 0, 0, 0.7);
}

/*
    Created on  : 08.05.2015, 10:15:00
    Description : Some usefull classes
    Changes     :
        09.06.2015, 16:04:00
        03.07.2015, 10:27:00
        15.07.2015, 11:57:00
*/
.hidden {
  display: none;
}

.block, figure.full-responsive img, figure.responsive img, img.full-responsive, img.responsive, .block-center, img.center, #toplink, label[for=nav-trigger] span, label[for=nav-trigger] span::before, label[for=nav-trigger] span::after {
  display: block;
}
.block-center, img.center {
  margin-left: auto;
  margin-right: auto;
}

.inline {
  display: inline;
}
.inline-block {
  display: inline-block;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}

.align-flex-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-flex-end {
  align-items: flex-end;
}

.clear-both, hr {
  clear: both;
}
@media screen and (min-width: 481px) {
  .clear-xsm-both {
    clear: both;
  }
}
@media screen and (min-width: 769px) {
  .clear-sm-both {
    clear: both;
  }
}
@media screen and (min-width: 1025px) {
  .clear-md-both {
    clear: both;
  }
}
@media screen and (min-width: 1171px) {
  .clear-lg-both {
    clear: both;
  }
}
@media screen and (min-width: 1281px) {
  .clear-xl-both {
    clear: both;
  }
}
.clear-left {
  clear: left;
}
@media screen and (min-width: 481px) {
  .clear-xsm-left {
    clear: left;
  }
}
@media screen and (min-width: 769px) {
  .clear-sm-left {
    clear: left;
  }
}
@media screen and (min-width: 1025px) {
  .clear-md-left {
    clear: left;
  }
}
@media screen and (min-width: 1171px) {
  .clear-lg-left {
    clear: left;
  }
}
@media screen and (min-width: 1281px) {
  .clear-xl-left {
    clear: left;
  }
}
.clear-right {
  clear: right;
}
@media screen and (min-width: 481px) {
  .clear-xsm-right {
    clear: right;
  }
}
@media screen and (min-width: 769px) {
  .clear-sm-right {
    clear: right;
  }
}
@media screen and (min-width: 1025px) {
  .clear-md-right {
    clear: right;
  }
}
@media screen and (min-width: 1171px) {
  .clear-lg-right {
    clear: right;
  }
}
@media screen and (min-width: 1281px) {
  .clear-xl-right {
    clear: right;
  }
}
.clear-none {
  clear: none;
}
@media screen and (min-width: 481px) {
  .clear-xsm-none {
    clear: none;
  }
}
@media screen and (min-width: 769px) {
  .clear-sm-none {
    clear: none;
  }
}
@media screen and (min-width: 1025px) {
  .clear-md-none {
    clear: none;
  }
}
@media screen and (min-width: 1171px) {
  .clear-lg-none {
    clear: none;
  }
}
@media screen and (min-width: 1281px) {
  .clear-xl-none {
    clear: none;
  }
}

.text-center {
  text-align: center;
}
@media screen and (min-width: 481px) {
  .text-xsm-center {
    text-align: center;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-center {
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-center {
    text-align: center;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-center {
    text-align: center;
  }
}
.text-left {
  text-align: left;
}
@media screen and (min-width: 481px) {
  .text-xsm-left {
    text-align: left;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-left {
    text-align: left;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-left {
    text-align: left;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-left {
    text-align: left;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-left {
    text-align: left;
  }
}
.text-right {
  text-align: right;
}
@media screen and (min-width: 481px) {
  .text-xsm-right {
    text-align: right;
  }
}
@media screen and (min-width: 769px) {
  .text-sm-right {
    text-align: right;
  }
}
@media screen and (min-width: 1025px) {
  .text-md-right {
    text-align: right;
  }
}
@media screen and (min-width: 1171px) {
  .text-lg-right {
    text-align: right;
  }
}
@media screen and (min-width: 1281px) {
  .text-xl-right {
    text-align: right;
  }
}
.text-justify {
  text-align: justify;
  -webkit-word-break: break-word;
  -moz-word-break: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.underline {
  text-transform: underline;
}

.line-through {
  text-transform: line-through;
}

.ultra-thin {
  font-weight: 100;
}

.thin {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.normal {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semi-bold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extra-bold {
  font-weight: 800;
}

.ultra-bold {
  font-weight: 900;
}

.italic {
  font-style: italic;
}

figure.full-responsive img, figure.responsive img, img.full-responsive, img.responsive {
  height: auto;
}
figure.responsive img, img.responsive {
  max-width: 100%;
}
figure.full-responsive img, img.full-responsive {
  width: 100%;
}

img.circle {
  border-radius: 50%;
}

.no-transform {
  text-transform: none;
}
.no-strong, strong.no-strong {
  font-weight: inherit;
}
.no-decoration {
  text-decoration: none;
}
.no-outline {
  outline: none;
}
.no-border {
  border-width: 0;
}
.no-border-top {
  border-top-width: 0;
}
.no-border-right {
  border-right-width: 0;
}
.no-border-bottom {
  border-bottom-width: 0;
}
.no-border-left {
  border-left-width: 0;
}
.no-padding {
  padding: 0;
}
.no-padding-top {
  padding-top: 0;
}
.no-padding-right {
  padding-right: 0;
}
.no-padding-bottom {
  padding-bottom: 0;
}
.no-padding-left {
  padding-left: 0;
}
.no-margin {
  margin: 0;
}
.no-margin-top {
  margin-top: 0;
}
.no-margin-right {
  margin-right: 0;
}
.no-margin-bottom {
  margin-bottom: 0;
}
.no-margin-left {
  margin-left: 0;
}

/* fancy frame animation for images */
.frame-animation {
  width: 380px;
  height: 380px;
  position: relative;
  background: rgb(255, 255, 255);
  display: inline-block;
  margin: 0;
  cursor: pointer;
  color: #2c3e50;
  box-shadow: inset 0 0 0 3px #2c3e50;
  -webkit-transition: background 0.4s 0.5s;
  transition: background 0.4s 0.5s;
}
.frame-animation svg {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 0;
  bottom: 0;
}
.frame-animation svg line {
  stroke-width: 5;
  stroke: #fff;
  fill: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.frame-animation svg line.top {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.bottom {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.left {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.right {
  stroke-dasharray: 410 320;
}
.frame-animation svg line.top {
  transform: translateX(-380px);
}
.frame-animation svg line.bottom {
  transform: translateX(380px);
}
.frame-animation svg line.left {
  transform: translateY(380px);
}
.frame-animation svg line.right {
  transform: translateY(-380px);
}
.frame-animation:hover {
  background: rgba(255, 255, 255, 0);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.frame-animation:hover svg line {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.frame-animation:hover svg line.top {
  transform: translateX(0);
}
.frame-animation:hover svg line.bottom {
  transform: translateX(0);
}
.frame-animation:hover svg line.left {
  transform: translateY(0);
}
.frame-animation:hover svg line.right {
  transform: translateY(0);
}

/*
    Created on : 01.09.2015, 12:30:50
    Description: easy-accordion minimal required css
*/
.ce_accordion,
.ce_accordion .content {
  overflow: hidden;
}
.js .ce_accordion .toggle {
  cursor: pointer;
}

/*@import "js/_easy-coverImage";*/
.fg-primary {
  color: #e6d1c6;
}

.bg-primary {
  background-color: #e6d1c6;
}

.fg-secondary {
  color: #343534;
}

.bg-secondary {
  background-color: #343534;
}

.fg-highlight {
  color: #f7f7f7;
}

.bg-highlight {
  background-color: #f7f7f7;
}

.bg-highlight2 {
  background: linear-gradient(rgba(230, 209, 198, 0), #e6d1c6);
}

.full-transparent {
  opacity: 0;
}

/*
    Created on : 27.07.2015, 16:33:17
    Description: CSS-Anweisungen für vordefiniertes Browserverhalten
    History
        2015-12-07: Added contao-like label handling
        2016-01-18: Fixed label handling
        2017-07-07: Fixed label handling
*/
.need-svg,
.need-js {
  display: none;
}

html.js .need-js {
  display: block;
}
html.svg .svg-fallback {
  display: none;
}
html.svg .need-svg {
  display: block;
}
html.touch .mobile-scroll {
  padding: 0 1px;
  position: relative;
}
@media (max-width: 1024px) {
  html.touch .mobile-scroll {
    overflow-x: scroll;
  }
}
html.touch .scroll-guide {
  position: absolute;
  left: 50%;
  top: 200px;
  width: 150px;
  line-height: 150px;
  margin-left: -75px;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  cursor: pointer;
}
html.touch .scroll-guide .flaticon-swipe {
  color: #fff;
}
html.touch .scroll-guide .flaticon-swipe::before {
  margin: 0;
  font-size: 64px;
  line-height: 150px;
  display: block;
}
@media (min-width: 1025px) {
  html.touch .scroll-guide {
    display: none !important;
    left: -1000%;
    top: -1000%;
  }
}

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