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

header {
  min-height: 150px;
}

.main-content {
}

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

footer {
  min-height: 200px;
}

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

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

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

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

/* Holy Grail */


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

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

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

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

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

/* FULLWIDTH ALTERNATIVE, Achtung bei slide-show ct27
.fullwidth-div {
  position: relative;
  padding: 20px 0;

}
.fullwidth-div .content-div-inner {
  position: relative;
  z-index: 1;
  padding:0;
}
.fullwidth-div:before {
  content:"";
  background: rgba(204, 192, 0, 0.6);
  position: absolute;
  top:0;
  left:-100vw;
  right:-100vw;
  bottom:0;
  z-index: 0;
}
*/

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

/*
.owsetter {
max-width:80%;
min-width:320px;
margin:0 auto;
}
*/

/* ODER */

/*
.iwsetter {
  max-width: 1200px;
  width: 100%;
  min-width: 320px;
  margin: 0 auto;
}
*/

/*
.col-margin {
  background: #f0ead8;
  padding: 10px 20px;
}

.col-nav nav {
  background: #c6d8f1;
}

.col-nav nav:empty, .col-margin:empty {
  padding: 0 !important;
}
*/


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

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

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

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


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

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

.top-linkbox {

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

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

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

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

.subpage {
}

.subpage.sp-1 {
}

.subpage.sp-2 {
}


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

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

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

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

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

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

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

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

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

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

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

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

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


}

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

}

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


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


}

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

}

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


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

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

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

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


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

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

}

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

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

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

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

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

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

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

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

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

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

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

/*
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
******** ONEPAGE MODEL *************
*/
/*
header {
  position: fixed;
  z-index: 50;
  width: 100%;
  top:0;
  left:0;
}
*/
.footerlogo {
  width: 80px;
}
.arrr {
  width: 16px;
  height: auto;
  margin-left: 10px;
  margin-top: 6px;
}
.newsdate {
  padding: 0 0 20px 0;
  font-size: 1.4rem;
}

.newstitle {
  font-size: 2.6rem;
  font-weight: 500;
  padding-bottom: 9%;
}

.newsbox {
  padding: 9% 5%;
  margin-bottom: 20px;
  cursor: pointer;
}

.newsthumb {
  margin-bottom: 5%;
}

.newsbox a {
  color: #000;
}

.newsrow .xcol-3 {
  width: 25%;
}
.newsdetail h1 {
  padding-top: 5px;
}
.newsdetail-image {
  margin-right: 40px;
  margin-top: 15px;
}
.newsdetail-image:first-child {
  margin-top: 50px;
}
.narrow-div {
  max-width: 700px;
  margin: auto;
}
.grid-item {
  float: left;
  /*width: calc(25% - 20px);*/
  /* 20px * COLUMNS - 1 / COLUMNS */
  width: calc(25% - (20px * 3 / 4));
}
.grid-item-2 {
  float: left;
  width: calc(50% - 10px);
}
.newsdetail-tag {
  font-size: 1.4rem;
  padding-bottom: 20px;
}
.newsdetail-tag span {
  padding-left: 30px;
}
.tag-filter {
  margin: 20px 0;
}

#detailview .article-div {
  padding: 0;
}
#detailview {
  /*padding-right: 20px;*/
}

.newsdetail {
  background: #fff;
  padding: 5%;
  position: relative;
  margin-bottom: 20px;
}

.platocontent .reverse-white, .platocontent .reverse-white *, .platocontent .reverse-white a {
  color: #fff !important;
}

a.tag-link {
  padding: 5px 10px;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.25s ease-in-out;
  color: #000;
  text-decoration: none;
  margin-bottom:10px;
}

.tag-link.active {
  border-radius: 0;
}

.tag-link:hover {
  border-radius: 0;
  transition: all 0.25s ease-in-out;
  color: #000;
}

.tgvhead {
  position: absolute;
  width: 250px;
  height: auto;
}

.footerlinks a:not(:last-child) {
  margin-right: 20px;
}
.headerlinks {
  padding:20px 0 0 0;
}
.conbox {
  padding:15px 25px;
  margin-bottom:20px;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
.tgvhead.tyellow.moved {
  transform: translate(-110px, -40px) rotate(3deg);
  opacity: 1;
  transition: transform 0.7s ease-in-out, opacity 0.4s ease-in-out;
}

.tgvhead.tyellow {
  transform: translate(-30px, -10px) rotate(-2deg);
  opacity: 0;
}

.tgvhead.tgreen.moved {
  transform: translate(-210px, -10px) rotate(4deg);
  opacity: 1;
  transition: transform 1.2s ease-in-out, opacity 0.8s ease-in-out;
}

.tgvhead.tgreen {
  transform: translate(-50px, 0px) rotate(2deg);
  opacity: 0;
}

.tgvhead.tpink.moved {
  transform: translate(170px, 30px) rotate(10deg);
  opacity: 1;
  transition: transform 1.0s ease-in-out, opacity 0.6s ease-in-out;
}

.tgvhead.tpink {
  transform: translate(20px, 0px) rotate(-2deg);
  opacity: 0;
}

.tgvhead.tred.moved {
  transform: translate(210px, -20px) rotate(-10deg);
  opacity: 1;
  transition: transform 1.0s ease-in-out, opacity 0.9s ease-in-out;
}

.tgvhead.tred {
  transform: translate(90px, 20px) rotate(8deg);
  opacity: 0;
}

.tgvhead.tsand.moved {
  transform: translate(100px, -10px) rotate(-18deg);
  opacity: 1;
  transition: transform 0.5s ease-in-out, opacity 0.7s ease-in-out;
}

.tgvhead.tsand {
  transform: translate(20px, 30px) rotate(-2deg);
  opacity: 0;
}


.tgvhead.tblack.moved {
  transform: translate(-50px, 20px) rotate(-5deg);
  opacity: 1;
  transition: transform 1.0s ease-in-out, opacity 1.0s ease-in-out;
}

.tgvhead.tblack {
  /*transform: translate(90px, 20px) rotate(8deg);*/
  opacity: 0;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */
.tgv-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  cursor: pointer;
}

/* ---------------------------------- */
/* ---------------------------------- */
/* ---------------------------------- */