@charset "UTF-8";

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-SemiBold.eot');
    src: url('OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-SemiBold.woff2') format('woff2'),
        url('OpenSans-SemiBold.woff') format('woff'),
        url('OpenSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-SemiBoldItalic.eot');
    src: url('OpenSans-SemiBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-SemiBoldItalic.woff2') format('woff2'),
        url('OpenSans-SemiBoldItalic.woff') format('woff'),
        url('OpenSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-LightItalic.eot');
    src: url('OpenSans-LightItalic.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-LightItalic.woff2') format('woff2'),
        url('OpenSans-LightItalic.woff') format('woff'),
        url('OpenSans-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-ExtraBold.eot');
    src: url('OpenSans-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-ExtraBold.woff2') format('woff2'),
        url('OpenSans-ExtraBold.woff') format('woff'),
        url('OpenSans-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-ExtraBoldItalic.eot');
    src: url('OpenSans-ExtraBoldItalic.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-ExtraBoldItalic.woff2') format('woff2'),
        url('OpenSans-ExtraBoldItalic.woff') format('woff'),
        url('OpenSans-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-BoldItalic.eot');
    src: url('OpenSans-BoldItalic.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-BoldItalic.woff2') format('woff2'),
        url('OpenSans-BoldItalic.woff') format('woff'),
        url('OpenSans-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular.eot');
    src: url('OpenSans-Regular.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-Regular.woff2') format('woff2'),
        url('OpenSans-Regular.woff') format('woff'),
        url('OpenSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Light.eot');
    src: url('OpenSans-Light.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-Light.woff2') format('woff2'),
        url('OpenSans-Light.woff') format('woff'),
        url('OpenSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Bold.eot');
    src: url('OpenSans-Bold.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-Bold.woff2') format('woff2'),
        url('OpenSans-Bold.woff') format('woff'),
        url('OpenSans-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Italic.eot');
    src: url('OpenSans-Italic.eot?#iefix') format('embedded-opentype'),
        url('OpenSans-Italic.woff2') format('woff2'),
        url('OpenSans-Italic.woff') format('woff'),
        url('OpenSans-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
}



/* --------------------------------------Allgemein-------------------------------------- */

html, body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 100%;
}
body {
    font-size: 100%;
    font-family: 'Open Sans', sans-serif;
}
* {
    outline: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.clearfix {
    clear: both;
}
hr {
    width: 100%;
    max-width: 400px;
    height: 2px;
    background-color: #000;
    margin: 0 auto;
    margin-top: 20px;
    border: none;
}
noscript span {
    width: 100%;
    height: auto;
    padding: 15px;
    color: #FFF;
    background-color: #000;
    display: block;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999999999999999999;
    text-align: center;
    line-height: 145%;
}
noscript span a {
    color: #FFF !important;
    font-weight: bold !important;
    text-decoration: underline !important;
    text-transform: none;
}
/* --------------------------------------Sticky Layout-------------------------------------- */

.wrapper {
	height: 100%;
	width: 100%;
	display: table;
	table-layout: fixed;
    position: absolute;
	right: 0px;
	-webkit-transition: all .03s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.header, .pagecontent, .footer {
	display: table-row;
}
.pagecontent {
	height: 100%;
}

.wrapper-active {
	right: 280px;
	border-right: 1px solid #E5E5E5;
}


.noscroll {
    overflow: hidden !important;
}

.wrapper-off {
    right: 110vw;
}


/* --------------------------------------Text-------------------------------------- */

p {
    margin: 0;
    padding: 0;
}
h2 {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
}
a:link, a:visited, a:active {
    font-weight: bold;
    text-decoration: none;
    color: #000;
    margin: 0 !important;
}
a:focus, a:hover {
    text-decoration: underline;
}

/* --------------------------------------Header-------------------------------------- */

.header {
    width: 100%;
    display: block;
    top: 0px;
    padding: 5px 15px 5px 15px;
    position: fixed;
    z-index: 5;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#cce0d1+0,ffffff+91 */
    background: #cce0d1; /* Old browsers */
    background: -moz-linear-gradient(top, #cce0d1 0%, #ffffff 91%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #cce0d1 0%, #ffffff 91%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #cce0d1 0%, #ffffff 91%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cce0d1', endColorstr='#ffffff', GradientType=0 ); /* IE6-9 */
}
#headerlogo {
    width: 100%;
    max-width: 260px;
    height: auto;
    display: inline-block;
}

@media only screen and (max-width: 360px) {
#headerlogo {
    max-width: 180px;
}
}
.header h1 {
    text-align: left;
    margin: 0;
    padding: 0;
    color: #2D6306;
    display: inline-block;
    position: absolute;
    top: 20px;
}
/* --------------------------------------Footer-------------------------------------- */

.footer {
    width: 100%;
    height: auto;
    text-align: center;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+9,cce0d1+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 9%, #cce0d1 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 9%, #cce0d1 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 9%, #cce0d1 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cce0d1', GradientType=0 ); /* IE6-9 */
    margin-top: 40px;
}

.footer-inner {
padding: 20px;
}

.footerlogo {
    width: auto;
    height: 90px;
    display: inline-block;
    padding: 5px;
    border: 1px solid #DDDDDD;
    background-color: #FFF;
}

@media only screen and (max-width: 360px) {
.footerlogo {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 3px;
}
}
.imprint {
    font-size: 0.9em !important;
}
/* --------------------------------------Suche-------------------------------------- */

.headersearch {
    position: fixed;
    top: 17px;
    right: 70px;
    display: inherit;
}
.mobilesearch {
    display: none;
}

@media only screen and (max-width: 625px) {
.headersearch {
    display: none;
}
.mobilesearch {
    display: inherit;
}
}
.searchbt {
    width: 20px;
    height: 20px;
    background-image: url(../images/icon_search.svg);
    background-size: cover;
    background-color: transparent;
    border: none;
    position: relative;
    top: 0px;
    right: 3px;
    margin-left: -30px;
    cursor: pointer;
}
.mobilesearch .searchbt {
    background-image: url(../images/icon_search.svg);
    background-size: cover;
    background-color: transparent;
    border: none;
    position: relative;
    top: -2px;
    margin-left: -35px;
    cursor: pointer;
    z-index: 10;
}
.searchbox {
    border: 1px solid #016839;
    padding: 8px 35px 8px 8px !important;
    width: 100%;
    max-width: 280px;
    display: inline-block;
    height: auto;
    background-color: #FFF;
    border-radius: 25px;
    background-image: url(../images/icon_search.svg);
    background-size: 20px 20px;
    background-position: right 6px center;
    background-repeat: no-repeat;
    -webkit-box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
}
.searchbox:focus {
    background-color: #EDEAEA;
}

@media only screen and (max-width: 625px) {
.searchbox {
    margin-bottom: 30px;
}
}
.indexsearch {
    position: relative;
    margin: 0 auto;
}
.indexsearch .searchbox {
    padding: 14px 40px 14px 14px !important;
    width: 100%;
    max-width: 350px;
    background-image: url(../images/icon_search.svg);
    background-size: 24px 24px;
    background-color: transparent;
    background-position: right 10px center;
    background-repeat: no-repeat;
}
.searchresults {
    width: 100%;
    max-width: 1200px;
    text-align: left !important;
    margin: 0 auto;
}
.resultheader {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 1.2em;
    color: #FFF;
    background-color: #086C3E;
    text-transform: none;
    text-align: left;
    margin-top: 25px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 0px;
    border-radius: 10px 0 0 0;
}
.result {
    display: inline-block;
    width: 100%;
    padding: 10px 30px 10px 50px;
    font-weight: bold;
    background-image: url(../images/icon_resultlink.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.extract {
    display: inline-block;
    width: 100%;
    padding: 10px 30px 10px 50px;
    font-weight: normal;
    border-left: 15px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-bottom: 1px solid #FFF;
}
/* --------------------------------------Sections-------------------------------------- */


.main {
    width: 100%;
    height: auto;
/*    min-height: 700px;*/
    margin: 0 auto;
    text-align: center;
    margin-top: 100px;
    padding: 0 20px 0 10px;
}
/* --------------------------------------Säulen-------------------------------------- */

.column {
    width: 100%;
    max-width: 22%;
    height: auto;
    display: inline-block;
    margin: 5px;
    vertical-align: top;
    border-radius: 15px;
}

@media only screen and (max-width: 1235px) {
.column {
    max-width: 45%;
}
}

@media only screen and (max-width: 625px) {
.column {
    max-width: 100%;
}
}
.column h2 {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 100%;
    padding: 0 5px 0 5px;
}
.prosilwa {
    background-color: #50B74A !important;
    color: #FFF !important;
}
.person {
    background-color: #fbe5d6 !important;
    color: #F3B286 !important;
}
.organisation {
    background-color: #dae3f3;
    color: #8FAADA;
}
.technik {
    background-color: #f2f2f2;
    color: #ABABAB;
}
.extern {
    background-color: #FFF2CC;
    color: #FFC92E;
}
.abschluss {
    border-radius: 0 0 15px 15px !important;
}
.column a:link, .column a:visited, .column a:active {
    display: block;
    text-align: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    border-top: 1px solid #FFF !important;
    text-decoration: none !important
}
.column a:focus, .column a:hover {
    background-color: #E8E8E8;
}

/* --------------------------------------Navigation-------------------------------------- */

.navigation {
    width: 100%;
    display: block;
    height: auto;
    position: fixed;
    top: 0;
    right: -100vw;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.navigation-on {
    right: 0;
    position: fixed;
}
.navigation-content {
    text-align: center;
    margin: 0 auto;
    padding: 100px 20px 50px 10px;
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
}
nav {
    display: none;
}
navigation {
    float: right;
}
navigation ul, navigation li {
    list-style-type: none;
}
navigation li {
    display: inline-block;
    padding: 0 15px 0 0;
    font-weight: bold;
    cursor: pointer;
}
navigation li ul {
    display: none;
    position: absolute;
}
navigation li:hover > ul {
    display: block;
}
navigation li ul li {
    display: block;
    padding: 10px;
}
.hamburger {
    display: block;
    cursor: pointer;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    margin: 0;
    overflow: visible;
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 10;
    width: 35px;
    height: 35px;
}
.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 30px;
    height: 4px;
    background-color: #016839;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}
.hamburger-inner::before {
    top: -10px;
}
.hamburger-inner::after {
    bottom: -10px;
}
.hamburger--squeeze .hamburger-inner {
    transition-duration: 0.1s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.1s 0.14s ease, opacity 0.1s ease;
}
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.1s 0.14s ease, -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.1s 0.14s ease, transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.1s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition-delay: 0.14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease, opacity 0.1s 0.14s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transition: bottom 0.1s ease, -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.1s ease, transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.1s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--3dy .hamburger-box {
    -webkit-perspective: 40px;
    perspective: 40px;
}
.hamburger--3dy .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 6px, 0) rotate(45deg);
    transform: translate3d(0, 6px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
    transform: translate3d(0, -6px, 0) rotate(-45deg);
}
/*
 * 3DY Reverse
 */
    
.hamburger--3dy-r .hamburger-box {
    -webkit-perspective: 80px;
    perspective: 80px;
}
.hamburger--3dy-r .hamburger-inner {
    transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger--3dy-r.is-active .hamburger-inner {
    background-color: transparent;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
    -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
    transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
}
/* --------------------------------------Startseite-------------------------------------- */


#organigramm {
    width: 100%;
    max-width: 884px;
    height: auto;
    padding-bottom: 20px;
}
.nozoom {
    display: inherit;
}
.zoom {
    display: none;
}

@media only screen and (max-width: 625px) {
.nozoom {
    display: none;
}
.zoom {
    display: inline-block;
    position: relative;
}
}
/* --------------------------------------Schaltflächen-------------------------------------- */

.bt {
    padding: 12px 18px 12px 18px;
    background-color: #000;
    color: #FFF;
    text-align: center;
    display: inline-block;
    width: auto;
    font-size: 1em;
    cursor: pointer;
    line-height: normal;
    border: none;
}
.bt:hover {
    background-color: #7F7F7F;
}
/* --------------------------------------Inhalte-------------------------------------- */

.infobt {
    display: inline-block;
    padding: 15px 15px 15px 50px;
    background-color: #50B74A;
    color: #FFF !important;
    font-size: 1.2em;
    text-decoration: none !important;
   
    background-position: 15px center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    border-radius: 15px;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.infobt:hover {
    background-color: #71CB6C;
}

.icon-info {
 background-image: url(../images/icon_info.svg);
}

.icon-analyse {
background-image: url(../images/icon_analyse.svg);
}

@media only screen and (max-width: 625px) {
.infobt {
    width: 100%;
    margin-bottom: 0px;
}
}
#caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 400px;
    padding: 10px;
    background-color: #D4D4D4;
    color: #000;
    z-index: 999;
    display: none;
}
.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-align: left;
    position: relative;
    font-size: 1em;
    padding: 0 10px 0 10px;
}
.content a {
    text-decoration: none !important;
}
.content h2 {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 1.2em;
    color: #FFF;
    background-color: #086C3E;
    text-transform: none;
    text-align: left;
    margin-top: 25px;
    border-bottom: 1px solid #FFF;
    margin-bottom: 0px;
    border-radius: 10px 0 0 0;
}
.headline {
    padding: 10px 10px 10px 15px;
    font-weight: bold;
    font-size: 1.6em;
    display: block;
    width: 100%;
    text-transform: uppercase;
    border-bottom: 1px solid #FFF;
    border-radius: 15px 0 0 0;
}
.subline {
    padding: 10px 10px 10px 15px;
    font-weight: bold;
    font-size: 1.2em;
    display: block;
    width: 100%;
    color: #000 !important;
    margin-bottom: 15px;
}
.htop {
    display: inline-block;
    font-size: 1.4em;
}
.hbottom {
    display: block;
    width: 100%;
    font-size: 1.2em;
}
[title] {
    padding-left: 20px;
    display: block;
}
.pdf {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    background-image: url(../images/icon_pdf.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.youtube {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_youtube.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.video {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_video.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.word {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_msword.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.excel {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_msexcel.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.powerpoint {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_mspowerpoint.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.dokument {
    display: inline-block;
    width: 100%;
    padding: 10px 40px 10px 50px;
    font-weight: bold;
    margin-bottom: 4px;
    background-image: url(../images/icon_doc.png);
    background-repeat: no-repeat;
    background-position: 10px 8px;
    background-size: 24px 24px;
    border-left: 15px solid #FFF;
    border-bottom: 1px solid #FFF;
    background-color: #50B74A !important;
    color: #FFF !important;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pdf:hover, .youtube:hover, .video:hover, .word:hover, .powerpoint:hover, .excel:hover, .dokument:hover {
    background-color: #A2A2A2;
    border-left: 5px solid #FFF;
}
.pdf::after, .youtube::after, .video::after, .word::after, .powerpoint::after, .excel::after, .dokument::after {
    content: "";
    background-image: url(../images/icon_info.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 22px;
    height: 22px;
    position: absolute;
    right: 20px;
    display: inherit;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.pdf:hover:after, .youtube:hover:after, .video:hover:after, .word:hover:after, .powerpoint:hover:after, .excel:hover:after, .dokument:hover:after {
    display: none;
}
/* --------------------------------------Tabelle-------------------------------------- */
.tabelle {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 10px !important;
    background-color: #EDEDED !important;
    border-collapse: collapse !important;
    border-radius: 10px !important;
    overflow-x: auto !important;
}
.tabelle th, td {
    border: 1px solid #FFF !important;
    padding: 10px !important;
}

/* --------------------------------------Login-------------------------------------- */

#login-loginbox {
	position: relative;
	width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
	height: auto;
	z-index: 1;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	text-align: center;
    background-color: #FDFDFD;
    padding: 20px 20px 35px 20px;
    border: 1px solid #DDD;    
    border-radius: 6px;
}

.login-errorbox {
    font-family: 'Open Sans';
	position: relative;
	width: 100%;
	top: 20px;
	margin: 0 auto;
    display: block;
    
}

.login-error {
	font-weight: bold;
	color: #FFF;
	background-color: #F00;
	padding: 12px;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
	display: block;
}

.login-logout {
	font-weight: bold;
	color: #FFF;
	background-color: #50B74A;
	padding: 12px;
	text-align: center;
	position: relative;
	margin-bottom: 40px;
	display: block;
}


#login-loginform {
	position: relative;
	top: 10px;
	width: 100%;
    display: block;
	}

.login-loginformcenter {
	text-align: center;
	}

#login-logintable {
	margin: 0 auto;
	position: relative;
	top: 15px;
	width: 100%;
}

#ididlogintable td {
    border: 0;
    padding: 12px;
    border-spacing: 6px;
}

#login-loginth {
    padding-top: 15px;
}

.login-logininput {
    border: 1px solid #016839;
padding: 15px !important;
width: 100%;
display: block;
height: auto;
background-color: #FFF;
-webkit-box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
-moz-box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
box-shadow: inset 0px 0px 5px -1px rgba(0,0,0,0.75);
	}

.login-logininput:focus {
    background-color: #EDEAEA;
}

label {
display: block;
text-align: left;
font-weight: bold;
margin-bottom: 5px;
}

.login-bt {
    display: inline-block;
    padding: 15px 15px 15px 50px;
    background-color: #50B74A;
    border: none;
    cursor: pointer;
    color: #FFF !important;
    font-size: 1.2em;
    text-decoration: none !important;
    background-image: url("../images/icon_login.svg");
    background-position: 15px center;
    background-size: 24px 24px;
    background-repeat: no-repeat;
    border-radius: 15px;
    -webkit-transition: all .03s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.login-bt:hover {
    background-color: #71CB6C;
}


#login-logoutmessage {
	position: relative;
	left: 24px;
	top: 45px;
	width: 424px;
	height: 149px;
	z-index: 2;
	text-align: center;
	font-weight: bold;
}

.logout-bt {
width: 30px;
height: 30px;
float: right;
margin-bottom: 20px;
}

/* -------------------------------------- Formulare-------------------------------------- */

/*Keine optische Verlinkung der Telefonnummer in IOS*/

a[href^=tel] {
    text-decoration: inherit;
    color: inherit;
}
/*Keine abgerundeten Formularfelder in IOS*/

input, select, textarea {
    -webkit-appearance: none;
    border-radius: 0;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
/*Formular Versandnachricht*/

.mailermsg {
    display: none;
    width: auto;
    height: auto;
    padding: 30px;
    margin: 5px;
    background-color: #40A52B;
    font-size: 1em;
    color: #fff;
    z-index: 8;
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/icon_close.png);
    background-position: 98% 10px;
    background-size: 15px;
    background-repeat: no-repeat;
    cursor: pointer;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}
.mailermsg h1 {
    font-size: 1.6em;
    color: #fff;
}
/* --------------------------------------Formular Validierung-------------------------------------- */

/*Farbliche Validierung*/

input.error, textarea.error, select.error {
    background-color: #FA9881;
}
input.valid, textarea.valid, select.valid {
    background: transparent;
}
label.error {
    color: #FF0004;
    font-weight: bold;
}

@media only screen and (max-width: 800px) {
body {
    font-size: 90%;
}
}

/* --------------------------------------Nicht gefunden-------------------------------------- */

.notfound-cointainer {
position: relative;
height: 40vh;
}

.notfound {
width: 100%;
display: block;
text-align: center;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.notfound h1 {
font-size: 2em;
color: #50B74A;
}

.notfound p {
line-height: 150%;
}

/* --------------------------------------Cookie Disclaimer-------------------------------------- */


.cookie-disclaimer {
    width: 100%;
    background-color: #515151;
    padding: 20px;
      position: fixed;
    bottom: 0px;
    z-index: 6;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, -webkit-transform 0.5s;
    transition: opacity 0.3s, transform 0.5s;
    transition: opacity 0.3s, transform 0.5s, -webkit-transform 0.5s;
}
.cookie-disclaimer p {
    font-size: .9em !important;
    color: #FFF !important;
}
.cookie-disclaimer.is-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.cookie-disclaimer :first-child {
    margin-top: 0;
}
.cookie-disclaimer :last-child {
    margin-bottom: 0;
}
.cookie-disclaimer span {
    padding-right: 20px;
    line-height: 145%;
}
.cookie-disclaimer a:link, .cookie-disclaimer a:visited, .cookie-disclaimer a:active {
    text-decoration: underline!important;
    color: #FFF !important;
    font-weight: normal !important;
}
.cookie-disclaimer a:focus, .cookie-disclaimer a:hover {
    color: #E0E0E0 !important;
}
.cookie-button {
    width: auto;
    height: auto;
    padding: 12px;
    font-weight: bold;
    font-size: 1em;
    background-color: #50B74A;
    color: #FFF;
    position: relative;
    cursor: pointer;
    border-radius: 4px;
    border: none;
    vertical-align: middle;
}
.cookie-button:hover {
    background: #61C05C;
}

@media only screen and (max-width:650px) {
.cookie-disclaimer {
    width: 100%;
    text-align: center;
    display: block;
}
.cookie-disclaimer span {
    padding: 0 0 15px 0;
    display: block;
}
.cookie-button {
    position: relative;
    display: block;
    margin: 0 auto;
}
}

