body {
	background-color: #ffffff;
	color: #25282a;
	font-family: Lato, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
    overflow-x: hidden;
}

/**
 * Die Klasse c-style wird immer als Container für die Content Stile genutzt
 */

/* background */
.bg-white {
    background-color: #fff;
    box-shadow: 0 0 0 100vmax #ffffff;
    clip-path: inset(0 -100vmax);
    padding-top: 60px;
    padding-bottom: 60px;
}
.bg-white .bg-white, .bg-white .bg-lightblue {
    background-color: unset;
    box-shadow: unset;
    clip-path: unset;
}
.bg-lightblue {
    background-color: rgb(36 39 42 / 7%);
    box-shadow: 0 0 0 100vmax rgb(36 39 42 / 7%);
    clip-path: inset(0 -100vmax);
    padding-top: 60px;
    padding-bottom: 60px;
}
.bg-lightblue .bg-lightblue, .bg-lightblue .bg-white {
    background-color: unset;
    box-shadow: unset;
    clip-path: unset;
}

.bg-lightblue + .bg-lightblue,
.bg-white + .bg-white, 
.bg-white + .u-container-padding:not(.bg-lightblue) {
    padding-top: 0!important;
}

.bg-white + .container:not(.bg-white),
.bg-white + .hide + .container:not(.bg-white) {
    padding-top: 60px;
}
.button-container + .bg-white {
    margin-top: 60px
}

/* Headlines */


/* Text & Inline styles */
.c-style p {
	margin-bottom: 16px;
}
p.highlight {
	background-color: #f5f5f5;
	border: 1px solid #888;
	padding: 10px;
}
.text--highlight-red { color: #2e407d;  }
.text--size-up-1 { font-size: 120%;  }
.text--size-down-1 { font-size: 80%;  }
.text--size-down-2 { font-size: 70%;  }

/* Links */
/*
.c-style a:not(.button),
a.link-default {
	position: relative;
	color: #2e407d;
	text-decoration: none;
}
.c-style a:not(.button):after,
a.link-default:after {
	content: '';
	position: absolute;
	left: 0; bottom: -1px;
	display: inline-block;
	width: 100%; height: 1px;
	border-bottom: 1px solid #2e407d;
	opacity: 0;
	transition: opacity 0.18s ease;
	pointer-events: none;
}
.c-style a:not(.button):hover:after,
.c-style a:not(.button):focus:after,
a.link-default:hover:after,
a.link-default:focus:after {
	opacity: 1;
}
*/

.c-style a:not(.button),
a.link-default {
	color: #2e407d;
	text-decoration: none;
}

.c-style a:not(.button):hover,
.c-style a:not(.button):focus,
a.link-default:hover,
a.link-default:focus {
    color: #76488d;
}

a.link-download {
	color: #2e407d;
	text-decoration: none;
}
a.link-download:before {
	margin-right: 6px;
	content: '\f019';
	font-family: Font Awesome\ 5 Free;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
}
a.link-zip {
	color: #2e407d;
	text-decoration: none;
}
a.link-zip:before {
	margin-right: 6px;
	content: '\f1c6';
	font-family: Font Awesome\ 5 Free;
	display: inline-block;
	font-size: 15px;
	font-weight: 600;
}

/* grids */
.container > .row > [class*="col-"] {
    
}

.container > .row > [class*="col-"] .u-container-padding {
    padding-top: 0;
}


/* Buttons */
/*
.button {
	display: inline-block;
	padding: 6px 20px;
	color: #fff;
	font: inherit;
	font-weight: 200;
	background-color: #2e407d;
	background-image: linear-gradient(to bottom, #de0813, #a41815);
	text-decoration: none;
	cursor: pointer;
	border: none;
}
.button:hover,
.button:focus {
	background-image: linear-gradient(to bottom, #de0813, #a41815)-light;
}
.button:active {
	box-shadow: 3px 3px 9px rgba(0, 0, 0, 0.2) inset;
}

.button-download {
	display: inline-block;
	padding: 4px 7px;
	border: 1px solid #ccc;
	text-decoration: none;
	color: #777;
	background-color: #fff;
	background-image: linear-gradient(to bottom, #fff, #f9f9f9);
	border-radius: 1px;
	transition: all 0.18s ease;
}
.button-download:before {
	content: '\f019';
	font-family: Font Awesome\ 5 Free;
	font-size: 14px;
	font-weight: 900;
	display: inline-block;
	margin-right: 6px;
	padding-right: 6px;
	border-right: 1px solid rgba(0, 0, 0, 0.25);
	opacity: 0.7;
} 
.button-download:hover,
.button-download:focus {
	color: #444;
	border-color: #bbb;
}
.button-large {
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 400;
}
.button-secondary {
	background-image: linear-gradient(to bottom, #aaa, #999);
}
.button-secondary:hover,
.button-secondary:focus {
	background-image: linear-gradient(to bottom, #bbb, #aaa);
}
*/

.btn,
.button {
	position: relative;
	display: inline-block;
	min-width: 40px;
	padding: 8px 16px;
	background-color: #2e407d;
	color: #fff;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	letter-spacing: .5px;
	text-align: center;
	text-decoration: none;
	border-radius: 25px;
	outline: none;
	border: none;
	cursor: pointer;
	user-select: none;
	transition: all ease-out .2s;
}
.btn:active,
.button:active {
	box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.btn:hover,
.button:hover {
    background-color: #76488d;
}
.btn-secondary {
	background-color: rgb(150,150,150);
}
.btn-group.submit {
	margin-top: 20px;
	display: block;
}
.button-small {
	padding: 4px 8px;
	font-size: 12px;
}

.intro + .button-container {
    margin-top: 40px;
}
section.main > .button-container:last-child {
    margin-bottom: 50px;
}
.button-container + .bg-lightblue {
    margin-top: 50px;
}
.button-pos-center {
	text-align: center;
}
.button-pos-left {
	text-align: left;
}
.button-pos-right {
	text-align: right;
}
.button[href$=".pdf"] {
	display: inline-flex;
}
.button[href$=".pdf"]::after {
	content: '';
	display: inline-block;
	width: 25px;
	height: 25px;
	background-image: url("/_assets/a4f9f1d7424b0693a509c7e93dc57902/Images/Icons/icon_pdf_01.svg");
	background-repeat: no-repeat;
	background-size: contain;
	line-height: 20px;
	margin-left: 15px;
}

/* Table styles */

table.default-table {
	margin-bottom: 20px;
	border-collapse: collapse;
	text-align: left;
}
table.default-table th {
	padding: 10px 10px;
	background-color: #2e407d;
	color: #fff;
	vertical-align: top;
    font-weight: 400;
}
table.default-table td {
	padding: 10px 10px;
	vertical-align: top;
	border-bottom: 1px solid #00569c5e;
}
table.default-table tr:last-child td {
	border-bottom: none;
}
td.special-td-grey { background-color: #d1d1d1; }
td.special-td-red { background-color: #2e407d; color: #fff; }


.scrollable-table--wrap { position: relative; }
.scrollable-table--wrap.is-active .scrollable-table--inner {
	overflow-x: scroll;
}
.scrollable-table--wrap:after {
	content: '';
}
.scrollable-table--wrap.is-active:after {
	position: absolute;
	z-index: 90;
	right: 0; top: 0; 
	width: 60px; height: 100%;
	background-image: linear-gradient(to left, #f1f1f1 50%, transparent);
	pointer-events: none;
	opacity: 0.8;
	transition: opacity 3s ease;
}
.scrollable-table--wrap.is-active.is-touched:after {
	opacity: 0.4;
}

.content__author {
  margin-top: 15px;
  text-align: right;
  font-style: italic;
  color: #808080;
}

/* List styles */
.c-style ul,
.c-style ol {
	padding-left: 16px;
	margin-bottom: 16px;
	overflow: auto;
}
.c-style ul > li {
	list-style-type: square;
	margin-bottom: 3px;
}
.c-style ol > li {
	margin-bottom: 3px;
}

/* Language Switcher */
.content-language-nav {
	float: right;
	margin-right: 30px;
}
.content-language-nav li {
	list-style-type: none;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3;
	text-align: left;
	background-image: url('@{icon-path}flag_de.png');
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 30px;
}
.content-language-nav li.en {
	background-image: url('@{icon-path}flag_en.png');
}
.content-language-nav a {
	color: #222222;
	text-decoration: none;
	line-height: 23px;
}

.headline-sub {
	/*font-size: 70%;
	opacity: .7;*/
}
.headline-sub::before {
	/*content: '//';
	margin: 0 4px;*/
}
.no-text-transform {
	text-transform: none !important;
}

/* futurezone-feedback */
.feedback__entry .content__text {
  font-size: 16px;
  line-height: 20px;
  font-weight: 200;
}
.feedback__entry:first-child .content__text {
  font-size: 24px;
  line-height: 28px;
}
.feedback__entry .content__headline--h2 {
  margin-bottom: 0.4em;
}
.feedback__entry .content__headline--h2 > * {
  font-weight: 400;
}
.feedback__entry:not(:first-child) .content__headline--h2 > * {
  font-size: 18px;
}
.feedback__entry .content__author {
  font-size: 14px;
}
.feedback__entry:first-child .content__author {
  font-size: 18px;
}
.page-uid-297 .content-box {
  height: 665px;
  overflow: hidden;
  position: relative;
}
.gradient-bg-white {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+73,ffffff+100&0+1,0.62+34,1+99 */
background: -moz-linear-gradient(top, rgba(255,255,255,0) 1%, rgba(255,255,255,0.62) 34%, rgba(255,255,255,0.85) 73%, rgba(255,255,255,1) 99%, rgba(255,255,255,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top, rgba(255,255,255,0) 1%,rgba(255,255,255,0.62) 34%,rgba(255,255,255,0.85) 73%,rgba(255,255,255,1) 99%,rgba(255,255,255,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom, rgba(255,255,255,0) 1%,rgba(255,255,255,0.62) 34%,rgba(255,255,255,0.85) 73%,rgba(255,255,255,1) 99%,rgba(255,255,255,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}
.feedback__entry {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #e8e8e8;
}
.feedback__entry:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}