*::-webkit-scrollbar {
    width: 8px;
    height: 100%;
}
*::-webkit-scrollbar:disabled {
    display: none;
}
*::-webkit-scrollbar-button{
    display: none
}
*::-webkit-scrollbar-thumb {
    border-radius: 4px;
    scrollbar-color: rgba(0,0,0,.2)
}
*::-webkit-scrollbar-track {
    background-color: transparent;
}
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,.2) transparent
}
:root {
    --padding: 20px;
    --max-width: 1800px;
    --flex-base: 150px;
    --swiper-theme-color: var(--text-color) !important;
    --main-font: 'Open Sans',sans-serif;
    --green: #ACD214;
    --green-dark: #3E5A02;
    --green-light: #EBFF9D;
    --dark: #202905;
    --main-text-color: #434343;
    --light: #fff;
    --pink: #AD005F;
    --transition-time: 0;
}
html {
    font-size: 18px;
    margin: 0;
    padding: 0;
    max-width: 100%;
}
body {
    margin: 0;
    padding: 0;
    font-weight: 400;
    color: var(--main-text-color);
    font-family: var(--main-font)
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    min-height: 100%;
    min-width: 230px;
    max-width: 100%;
    height: auto;
    position: relative;
}
body * {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
h1, .h1, h2, .h2, h3, .h3 {
    font-weight: 400;
    margin: 25px 0 12.5px;
}
h1 {
    font-size: 32px;
    font-weight: 300;
    margin: 54px 0 10px;
}
h2 {
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: 40px;
}
.inewswrapper h2 {
	margin-bottom:20px;
}
h3 {
  font-size: 24px;
  font-weight: 300;
  margin: 0px 0 10px;
}
h4 {
  font-size: 1em;
  font-weight: bold;
  margin-top: 2em;
}
h5 {
  margin-bottom: 6px;
  font-weight: bold;
}
a, a:focus {
    color: var(--pink);
    text-decoration: none;
    transition: color var(--transition-time) ease-in;
}
a:hover {
    color: #62770b;
}
h1, .h1, h2, .h2, h3, .h3,
h1 > *, .h1 > *, h2 > *, .h2 > *, h3 > *, .h3 > * {
    color: var(--green-dark);
}
.superhighlight, .superhighlight:after {
    background-color: #fb3199;
    border: 0em solid #fff;
}
.superhighlight {
    padding: 0.75rem 1rem;
    transform: rotate(-5deg);
    position: relative;
    filter: drop-shadow(0 0 5px #aaa);
    left: -0.25rem;
    margin-bottom: 1.5rem
}
.superhighlight > * {
    font-weight: 600;
    color: #fff;
    margin: 0.25rem 0;
}
.superhighlight:after {
    content: '';
    position: absolute;
    top: 95%;
    right: 1rem;
    width: 5rem;
    height: 4rem;
    clip-path: polygon(100% 0, 26% 0, 0 70%);
    z-index: 1;
}
.jobsteaser .button {
    width: 100%;
    font-weight: 600;
}
hr {color: #fff;}
strong {
    font-weight: 600 !important;
}
.spendenaktion {
	text-align: center;
	margin-bottom: -30px;
}

.spendenaktion img{
	margin-top: 30px;
}

.gptw {
	text-align: center;
}

.gptw img {
	width: 100px;
}

/* FLEX */
.flex {
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
    width: auto;
    padding: var(--padding)
}
.pad {
    padding: var(--padding)
}
.flex.halfpad {
    padding: calc(.5 * var(--padding));
}
.flex.halfpad > [class*="box"] {
    padding: calc(.5 * var(--padding))
}
.content.flex.halfpad > [class*="box"] {
    padding: calc(1 * var(--padding)) calc(.5 * var(--padding))
}
.flex.nm {
    margin: calc(-1 * var(--padding));
}
.flex.nw {
    flex-flow: row nowrap;
}
.flex.unpad {
    padding: 0;
    margin-left: calc(-1 * var(--padding));
    margin-right: calc(-1 * var(--padding));
    max-width: calc(100% + 2 * var(--padding))
}
.halfpad > .flex.unpad {
    margin: 0 calc(-.5 * var(--padding));
    max-width: calc(100% + 1 * var(--padding))
}
.flex.wr {
    flex-flow: row wrap-reverse;
}
.flex.vcenter {
    align-items: center;
    align-content: center;
}
.flex.vstretch {
    align-items: stretch;
    align-content: stretch;
}
.flex.vstart {
    align-items: flex-start !important;
    align-content: flex-start !important;
}
.flex.vend {
    align-items: flex-end !important;
    align-content: flex-end !important;
}
.vcenter[class*="box"] {
    align-self: center;
}
.vend[class*="box"] {
    align-self: flex-end;
}
.box0 {flex: .5 1 calc(0.5 * var(--flex-base));}
.box1 {flex: 1 1 max(calc(1 * var(--flex-base)), 15%);}
.box2 {flex: 2 1 max(calc(2 * var(--flex-base)), 30%);}
.box3 {flex: 3 1 max(calc(3 * var(--flex-base)), 45%);}
.box4 {flex: 4 1 max(calc(4 * var(--flex-base)), 60%);}
.box5 {flex: 5 1 max(calc(5 * var(--flex-base)), 75%);}
.boxfull {flex: 1 1 100%;}
.box0, .box1, .box2, .box3, .box4, .box5, .box6, .box-po, .boxfull {padding: var(--padding);max-width: 100%;position: relative;order: 2}
.flex.box1.fw, .flex.box2.fw, .flex.box3.fw, .flex.box4.fw, .flex.box5.fw, .flex.box6.fw  {
    width: calc(100% + (2 * var(--padding)));
    max-width: calc(100% + (2 * var(--padding)));
}
.flex > .nopad[class*="box"] {
    padding: 0;
}
.flex > .nopadtop[class*="box"] {
    padding-top: 0 !important;
}
.flex > .nopadbottom[class*="box"] {
    padding-top: 0 !important;
}
.flex > .flex[class*="box"]:not(.fpad) {
    padding: 0;
}
.flex > .flex.halfpad[class*="box"] {
    padding: calc(.5* var(--padding)) 0;
}
.flex > .padleft[class*="box"] {
    padding-left: calc(1.5 * var(--padding)) !important;
}
.flex > .divider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
.flex > .hdivider {
    flex: 0 0 0%;
    padding: 0;
    margin: 0;
}
.flex > .hw + .hdivider {
    flex: 1 1 100%;
    padding: 0;
    margin: 0;
}
@media (max-width: 1220px){
.flex > .divider {
    display: none;
}    
}
img[classbox]:only-child, picture[class^="box"]:only-child, picture[class^="box"] > img {
    width: 100%;
    display: block;
    height: 100%;
}
.hlb {
    background-color: rgba(var(--text-color-rgb),.05);
    box-shadow: var(--shadow2)
}
.wrapper {
    position: relative;
    margin: 0 auto;
    max-width: 1600px;
}
#logo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
#logo img {
    display: block;
    width: 15vw;
    max-width: 220px;
    height: auto;
}
.menu {
    background-color: var(--green);
}
nav.mainnav {
    padding-top: 10px;
    display: block;
    padding-bottom: 10px;
    color: #fff;
    font-size: 15px;
    position: relative;
    white-space: nowrap;
}
nav ul {
    list-style: none;
}
nav ul li > a, nav ul li > button{
    transform: scale(1);
    transition: transform var(--transition-time) ease-in, color var(--transition-time) ease-in;
    display: inline-block;
    padding: 10px;
    text-transform: uppercase;
    text-decoration: none
}
nav ul li:hover > a, nav ul li:hover > button {
    transform: scale(1.05);
}
nav ul li.active > a, nav ul li.active > button {
    font-weight: 700;
}
nav > ul {
    padding: 5px 10px;
}
nav > ul li {
    position: relative;
    cursor: pointer;
}
nav > ul li a, nav > ul li button {
    color: var(--dark);
    text-shadow: 0 0 25px var(--green-light), 0 0 45px var(--green-light);
}
/* Normales Menü */
@media (min-width:1061px) {
nav.wrapper {
    margin-top: 64px;    
}
nav .navbutton, .hassub .cm {
    display: none;
}
nav .navi {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    width: max(calc(100% - 250px), calc(100% - 15vw));
    margin: 0 auto 0 0;
} 
nav > ul li .subnavi{
    position: absolute;
    display: block;
    top: calc(100% + 15px);
    left: -10px;
    height: auto;
    padding: 0 10px;
    z-index: 2;
    background-color: rgba(156, 187, 42, 0.9);
    backdrop-filter: blur(5px);
    transition: padding var(--transition-time) ease-in;
    border-radius: 0 0 10px 10px;
} 
nav > ul li .subnavi li{
    height: auto;
    max-height: 0px;
    opacity: 0;
    transition: max-height var(--transition-time) ease-in, opacity var(--transition-time) ease-in;
    overflow: hidden;
}
nav > ul li .subnavi li a {
    text-shadow: none;
}
nav > ul li .subopen + .subnavi, nav > ul li:hover .subnavi{
    padding: 10px;
    z-index: 3;
}
nav > ul li .subopen + .subnavi li, nav > ul li:hover .subnavi li{
    max-height: 30px;
    opacity: 1;
}
}
nav#breadcrumbs {
    color: var(--green-dark);
    position: absolute;
    left: 30px;
    top: 30px;
    width: calc(100% - 60px);
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    align-content: center;
    justify-content: space-between;
}
nav#breadcrumbs .ssm {
    font-size: 1.4em;
    cursor: pointer;
}
@media (max-width:1060px){
nav#breadcrumbs > span {
    display: none;
}
}
/* Sitemap */ 
aside.embsm {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    left: -300px;
    background-color: #fff;
    border-right: 1px solid var(--green);
    transition: left var(--transition-time) ease-in;
    padding: 0 20px;
    z-index: 100;
    overflow-y: scroll;
}
aside.smloaded.embsm {
    left: 0px;
}
aside.embsm .csm {
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: #ddd;
    z-index: 1;
    transition: all var(--transition-time) ease-in;
}
aside.embsm .csm:hover {
    color: var(--green-dark);
} 
#main ul.sm li {
    list-style-type: none;
    position: relative;
}
#main ul.sm.l1 {
    padding: 0;
}
i.tsm {
    color: var(--green-dark);
    cursor: pointer;
    border-radius: 100%;
    background-color: transparent;
    transform: rotate(0deg);
    height: 1em;
    width: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-time) ease-in;
}
i.tsm:hover {
    color: #fff;
    background-color: var(--green);
}
.sm-open > i.tsm {
    transform: rotate(-45deg);
}
li > .sm {
    overflow: hidden;
    height: auto;
    max-height: 0px;
    opacity: 0;
    margin-left: 1em;
    padding-left: 1em;
    transition: all var(--transition-time) ease-in;
}
li.sm-open > .sm {
    max-height: 2000px;
    opacity: 1;
}
li > .sm > li:before, li > .sm > li:after {
    content: "";
    position: absolute;
    background-color: #ddd;
    left: -1em;
} 
li > .sm > li:before {
    height: 1px;
    width: 1em;
    top: 0.7em;
}
li > .sm > li:after {
    height: 100%;
    width: 1px;
    top: -0.7em;
}
li > .sm > li:last-child:after {
    height: 1.4em;
}
header.header > .headerbottom {
    position: relative;
    color: #fff;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 16vh;
    min-height: 212px;
}
header.header .headerimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
header.header.large > .headerbottom {
    height: 50vh;
}
header.header > * {
    width: 100%;
}
header.header {
    padding-top: calc(var(--padding) + 2rem);
}
header.header  > * > * {
    margin: 0 auto;
}
header.header > .headertop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}
header.header .headertxt {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 30px;
    z-index: 1;
    backdrop-filter: blur(5px);
    width: 100%
}
header.header .headertxt > * {
    width: 90%;
    font-size: 15px;
    max-width: 700px;
    text-align: center;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8), 0px 0px 20px rgba(0, 0, 0, 0.8);
    margin: 10px auto;
    color: var(--light)
}
header.header  .headertxt > .h1 {
    font-size: 21px;
}
header.header .cta {
    margin: 20px auto;
    text-align: center;
    z-index: 1;
    position: relative;
    width: 60%;
    max-width: 300px;
}
header.header .cta .button {
    display: block;
    width: 100%;
}
header.header .cta > button + .ctasubbuttons {
    position: absolute;
    display: block;
    top: calc(100% - 8px);
    padding-top: 8px;
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    background-color: var(--green);
    transition: opacity var(--transition-time) ease-in-out
}
header.header .cta > button[aria-expanded="true"] + .ctasubbuttons {
    opacity: 1;
    pointer-events: all;
}
.telcont {
  position: relative;
  width: 100%;
  background-color: var(--green);
  color: #fff;
  font-size: 16px;
}
.telcont .wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
.telcont .wrapper > picture {
    margin: -20px 0;
    display: block;
    flex: 0 0 100px;
}
.telcont .wrapper > p {
    flex: 1 1 500px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1em 0;
}
.telcont .wrapper > p a {
    padding: 10px 20px;
    color: var(--dark);
}
/* Lauftext */
#lauftextbox {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	text-align: center;
	overflow: hidden;
    position: relative;
}
#lauftextbox p {
    margin: 23px 0;
    line-height: 1;
	position: absolute;
    white-space: nowrap;
    font-size: 30px;
    font-weight: 300;
}
#lauftextbox p span {
	animation: lauftext 50s infinite linear;
    animation-play-state: running;
    display: inline-block;
    position: relative;
}
#lauftextbox:hover p span {
    animation-play-state: paused;
}
#lauftextbox p span a {
    color: var(--green-dark)
}
@keyframes lauftext {
	0% {left: 100vw;}
	100% {left: -100%;}
}
/* Quicklinks */
.quicklinks {
    background-color: #daec90;
    padding: 20px;
}
.quicklinks .wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
}
.quicklinks .wrapper > a {
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-hyphens: auto;
    hyphens: auto;
    overflow: hidden;
    margin: 10px;
    color: var(--dark);
    background-color: var(--green);
    border-radius: 8px;
    transition: all var(--transition-time) ease-in;
}
.quicklinks.qltoggle .wrapper > a {
    max-height: 0px;
    margin: 0px 10px;
    min-height: 0;
    padding: 0 10px;
}
.quicklinks:not(.qltoggle) .wrapper > a, .quicklinks.qltoggle.qlopen .wrapper > a {
    max-height: 160px;
    padding: 10px;
    margin: 10px;
    min-height: 160px;
}
.quicklinks .wrapper > a:hover {
    color: var(--green-dark);
    background-color: #fff;
}
.quicklinks .wrapper .qlt {
    font-size: 1.9rem;
    text-align: center;
    color: var(--green-dark);
}
.quicklinks .wrapper > .qlt {
    text-align: center;
    margin: 0;
}
.quicklinks .wrapper > .qlt i {
    margin-right: 0.5em;
}
.quicklinks:not(.qltoggle) .wrapper > .qlt i {
    display: none;
}
.quicklinks.qltoggle .wrapper > .qlt {
    cursor: pointer;
}
.quicklinks .wrapper > *  p {
    text-align: center;
}
.quicklinks .wrapper > *  p i {
    font-size: 3em;
}
/* Content */
.content .wrapper {
    display: flex;
    flex-flow: row wrap;
    overflow: hidden;
}
.content .wrapper #main {
    padding: 30px 30px 60px;
    position: relative;
}
.content .wrapper #main .contbox {
    background-color: #f6f9eb;
}
.content .wrapper #main .contbox.team > div {
    text-align: center;
    padding: 20px;
}
.content .wrapper #main .contbox.team > div h3{
    margin: 0;
    font-size: 1rem;
}
.content .wrapper #main .contbox.team > div img, .content .wrapper #main .contbox.team > div i {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: block;
    margin: 0 auto 10px;
}
.content .wrapper #main .contbox.team > div i {
    font-size: 3rem;
    background-color: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content .wrapper #main .teamwrapper {
    position: relative;
}
.content .wrapper #main .teamwrapper h3 {
    font-size: 1rem;
}
.content .wrapper #main .teamwrapper h3 a {
    display: inline-block;
    margin-right: 20px;
}
.content .wrapper #main .teamwrapper h3 a.active {
    font-weight: 400;
}
.content .wrapper #main .team-members {
    margin: 0 -20px;
    position: relative;
    max-height: 0px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-time) ease-in;
    -webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.content .wrapper #main .team-members.topen {
    opacity: 1;
    max-height: unset;
}
.content .wrapper #main .team-members p {
    margin: 0;
}
.content .wrapper #main .team-members > div {
    padding: 20px;
}
.content .wrapper #main .team-members > div > div {
    padding: 10px;
}
.content .wrapper #main .team-members > div > div ul {
    padding-left: 1em;
    margin: 5px 0;
    -webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphens: auto;
}
.content .wrapper #main .news-list-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.content .wrapper #main .news-list-item:last-of-type {
    margin-bottom: 0px;
    border-bottom: 0px solid #ddd;
}
.content .pagination li {
    border: none;
}
.content .pagination li span.active {
    color: #fff;
    background-color: var(--green);
}
.inewswrapper {
    margin: 50px 0 30px;
}
.inewswrapper.highlight {
    background-color: #fbffea;
    border: 1px solid var(--green);
    border-radius: 8px;
    padding: 0 30px 30px;
}
.docinfo.highlight {
    background-color: #fbffea;
    border: 1px solid var(--green);
    border-radius: 8px;
    padding: 0 30px;
    margin-bottom: 20px;
}
p {
    margin: 0 0 .5rem
}
#main table {
    border-collapse: collapse;
    margin-bottom: 1rem;
}
#main table td {
    padding: .2rem .5rem 0 0;
}
#main ul {
    padding: 0;
}
#main ul li {
  list-style: none;
    position: relative;
    padding-left: 1em;
}
#main ul:not(.pagination) li:before {
    content: '';
    width: .5em;
    height: .5em;
    border-radius: 100%;
    background-color: var(--green);
    display: block;
    position: absolute;
    left: 0;
    top: .5em
}
#main > p:last-child {
  margin-bottom: 60px;
}
#main #allprax > div {
    padding-bottom: 80px;
}
#main #allprax > div.nopadt {
    padding-bottom: 20px;
}
#main #allprax > div.nopadt:empty {
    padding-bottom: 0;
    padding-top: 0;
}
#main #allprax > div ul {
    list-style: none;
    padding: 0;
}
#main #allprax > div .button {
    position: absolute;
    bottom: 30px;
    left: calc(var(--padding) - 5px);
    right: calc(var(--padding) - 5px);
}
#main .stellespec > span {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
#main .stellespec > span > strong {
    flex: 1 1 100px;
}
#main .stellespec > span > span {
    flex: 3 1 300px;
}
#main .relatedpages {
    margin: 0 -20px;
}
#main .relatedpages > h2 {
    margin: 50px 0 0;
}
#main .relatedpages > * {
    padding: 20px;
}
/* Sidebar */
.content .wrapper #right {
    padding: 30px 20px;
    display: flex;
    flex-flow: row wrap;
    align-content: flex-start;
}
.greybox {
  background: #fdfdfd;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eeeeef), color-stop(1, #fdfdfd));
  background: -ms-linear-gradient(bottom, #eeeeef, #fdfdfd);
  background: -moz-linear-gradient(center bottom, #eeeeef 0%, #fdfdfd 100%);
  background: -o-linear-gradient(#fdfdfd, #eeeeef);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fdfdfd', endColorstr='#eeeeef', GradientType=0);
  position: relative;
  z-index: 5;
}
.content .wrapper #right > * {
    flex: 1 1 400px;
}
.content .wrapper #right ul {
    list-style: none;
    padding: 0;
}
.content .wrapper #right > ul {
    padding: 0 10px;
}
.content .wrapper #right ul li:not(.heading) {
    padding-bottom: 20px;
}
.content .wrapper #right .newslist li > * {
}
.content .wrapper #right .newslist li div {
    font-size: 0.7rem;
}
.content .wrapper #right .newslist li a h3{
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.content .wrapper #right .archives ul .year {
    cursor: pointer;
    font-weight: 400;
    color: #9cbd13;
}
.content .wrapper #right .archives ul .year i {
    display: inline-block;
    transform: rotate(0deg);
    transition: transform var(--transition-time) ease-in;
}
.content .wrapper #right .archives ul.shmo .year i {
    transform: rotate(-180deg);
}
.content .wrapper #right .archives ul li {
    padding: 0;
}
.content .wrapper #right .archives ul li:not(.year) {
    height: auto;
    max-height: 0;
    overflow: hidden;
}
.content .wrapper #right .archives ul li:not(.year) {
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-time) ease-in;
}
.content .wrapper #right .archives ul.shmo li:not(.year) {
    max-height: 30px;
}
.content .wrapper #right .links {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    align-content: flex-end;
    margin: 20px -10px
}
.content .wrapper #right ul.links li {
    padding: 10px;
    margin: 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}
.content .wrapper #right ul.links li.small {
    flex: 1 1 max(calc(40px), 27%);
}
.content .wrapper #right ul.links li.medium {
    flex: 1 1 max(calc(100px), 40%);
}
.content .wrapper #right ul.links li.large {
    flex: 1 1 100%;
}
.content .wrapper #right ul.links li.wide {
    flex: 1 1 100%;
}
.content .wrapper #right ul.openings li {
    padding-bottom: 5px;
}
.content .wrapper #right .links li a, .content .wrapper #right .links li img {
    display: block;
}
.content .wrapper #right .links li img {
    width: auto;
    height: auto;
}
.openings > span, .openings > li:not(.heading) {
    display: flex;
}
.openings > span span, .openings > li:not(.heading) span {
    display: inline-block;
    flex: 3 1 210px;
}
.openings > span span.day, .openings > li:not(.heading) span.day {
    flex: 1 1 70px;
}
.content .wrapper #right .subnavinav li a.active {
    font-weight: 700;
}
.content .wrapper #right .subnavinav li:last-child a {
    border-bottom: 0;
}
.red {
  color: #ED8788;
}
.light {
  color: #A9A9A9;
}
.nowrap {
  white-space: nowrap;
}
.pinned-bottom {
    margin-top: 100px;
    margin-bottom: -30px;
}
.imgframe {
    border: 2px solid #daec90;
}
#main img {
    max-width: 100%;
    height: auto;
}
#main img.floatright {
    width: 100%;
    float: right;
    max-width: 350px;
    margin-left: 10px;
    margin-bottom: 10px;
}
img.more-padding {
  margin: 40px 0;
}
.img-left,
.doctor-portrait {
  float: left;
  max-width: 200px !important;
  max-height: 255px !important;
  margin: 6px 10px 4px 0;
}
.img-left-md {
  float: left;
  margin: 6px 10px 4px 0;
}
@media screen and (max-width: 420px) {
  .img-left-md {
    float: none;
    display: block;
    margin: 6px 10px 10px 0;
  }
 .box5 {
   	-webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
}
}
.gallery {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.tpl-praxis .gallery {
    background-color: #ddd;
}
.gallery img {
    display: block;
    flex: 0 0 200px;
}
.gallery a {
    flex: 1 1 200px;
}
#totop {
  display: block;
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 5000;
}
.member {
  margin-bottom: 20px;
}
.member .name {
  font-weight: bold;
}
.member .tasks, .smaller {
  font-size: 0.8em;
}
form {
  margin: 40px 0;
}
label {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 300;
}
input[type=text],
input[type=date],
input[type=email],
textarea,
input[type=select] {
  border-radius: 3px;
  border: 1px solid #999;
  color: #707070;
  font-size: 15px;
  margin-bottom: 12px;
  width: 100%;
  max-width: 320px;
  padding: 4px 12px;
  line-height: 1.6em;
}

.bordered-img{
  border: 1px solid #CFCFCF
}
.links * {
  vertical-align: bottom;
}
.qualification, .jameda, .jameda div {
    display: inline-block;
    vertical-align: top;
}
.qualification {
    width: 55%;
    margin-right: -10px;
    margin-bottom: 40px;
}
.jameda {
    width: 45%;
    min-width: 230px;
    text-align: right;
    padding-left: 50px;
    box-sizing: border-box;
    margin-bottom: -40px;
}
div[id^="jameda-widget-container"] {
    transform: scale(0.7);
    transform-origin: top right;
    margin: 0px 0px 0px -50px !important;
    text-align: left;
}
div[id^="jameda-widget-container"]:last-child {
    background-position: center -3px;
}

.doctext {
    min-height: 170px;
}

button:not(.nobutton) , .button:not(.nobutton) {
    background-color: var(--green);
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    color: var(--dark);
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    padding: 6px 20px;
    font-size: 18px;
    line-height: 1.42857143;
    border-radius: 8px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color var(--transition-time) ease-in, color var(--transition-time) ease-in;
}
button:not(.nobutton), .button:not(.nobutton):hover {
    background-color: #94b411;
    color: var(--dark);
}
button.nobutton {
    background-color: transparent;
    font: inherit;
    border: none;
    cursor: pointer
}
.button.moreimg {
    border-radius: 0;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
    margin: 0;
}
.button.moreimg i {
    font-size: 4rem;
}

/* Formular */
form {
    text-align: left;
    display: flex;
    flex-flow: row wrap;
    width: calc(100% + 40px);
    margin: 0px -20px;
    padding: 0px;
}
form .form-field, form .form-spacer, .form-actions.secondary-accent, form > label {
    display: block;
    width: 100%;
    margin: 0px 0px 20px;
    padding: 0px 20px;
}
form .form-field.ges {
    display: none;
}
form .form-field.ges.showges {
    display: block;
}
form .form-field.avatar .form-data {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: stretch;
}
form .form-field.avatar .form-data:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-size: cover;
}
form .form-field.avatar .form-data .form-input-file.dropzone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    opacity: 0.2;
    transition: opacity var(--transition-time) ease-in;
}
form .form-field.empty {
    margin-bottom: 0;
    margin-top: 0;
    padding-bottom: 0;
    padding-top: 0;
}
form .form-field.avatar .form-data:hover .form-input-file.dropzone, form .form-field.avatar .form-data .form-input-file.dropzone.dz-drag-hover, form .form-field.avatar .form-data .form-input-file.dropzone.dz-started {
    opacity: 1;
}
form .form-spacer {
    margin-top: -20px;
}
form .form-field {
    box-sizing: border-box;
}
form .form-field.half {
    flex: 1 1 350px;
}
form .form-field.full {
    flex: 1 1 100%;
}
form .form-field .form-label {
    margin-bottom: 5px;
}
.form-input-wrapper, .form-input-wrapper input  {
    width: 100%;
    max-width: none;
}
.checkboxes {
    display: block;
}
.buttons {
    width: 100%;
    padding: 0px 20px;
    flex: 1 1 350px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    box-sizing: border-box;
    align-self: flex-end;
}
.buttons button {
    border: none;
    box-sizing: border-box;
    flex: 1 1 150px;
    max-width: 150px;
    margin: 0px 0px 20px;
}
.form-textarea-wrapper, .form-textarea-wrapper textarea {
    width: 100%;
}
.form-textarea-wrapper textarea {
    min-width: 100%;
    max-width: 100%;
    min-height: 200px;
    resize: none;
}
input, textarea, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: 'Open Sans', sans-serif;
} 
input, textarea {
    border: 1px solid #999;
    padding: 10px;
    font-size: 1em;
    box-sizing: border-box;
    font-weight: 300;
    background-color: #f8f8f8;
    color: #444;
    transition: border var(--transition-time) ease-in;
}
input:focus, textarea:focus {
    border: 1px solid var(--green);
}
input[readonly="readonly"] {
    cursor: not-allowed;
    background-color: rgba(255,255,255,0.1);
    color: #fff;
}
.radio {
	display: block;
}
form input[type='checkbox'],
form input[type='radio'] {
  width:auto;
  float:left;
  margin-right: .75em;
  background:transparent;
  border:none;
}

form input[type='checkbox']:checked,
form input[type='checkbox']:not(:checked),
form input[type='radio']:checked,
form input[type='radio']:not(:checked) {
  background: transparent;
  position: absolute;
  visibility: hidden;
  margin:0;
  padding:0;
}

form input[type='checkbox'] + label,
form input[type='radio'] + label {
    cursor: pointer;
    position: relative;
    display: block !important;
	padding-left: 1.5rem;
}

form input[type='checkbox'][disabled] + label,
form input[type='radio'][disabled] + label {
    pointer-events: none;
    filter: grayscale(100%);
}

form input[type='checkbox']:checked + label::before,
form input[type='checkbox']:not(:checked) + label::before,
form input[type='radio']:checked + label::before,
form input[type='radio']:not(:checked) + label::before {
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    position: absolute;
    top: .11em;
	left: 0;
    background-color: var(--green);
    background-image: url(../img/layout/check.png);
    background-size: 0%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all var(--transition-time) ease-in;
    text-align: center;
    font-size: 2rem;
    line-height: 0.5em;
}

form input[type=radio]:checked + label::before,
form input[type=radio]:not(:checked) + label::before {
  border-radius: 50%;
}

form input[type='checkbox']:hover  + label::before,
form input[type='radio']:hover  + label::before {
    background-color: var(--green);
    background-size: 65%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all var(--transition-time) ease-in;
}

form input[type='checkbox']:checked  + label::before,
form input[type='radio']:checked  + label::before {
    background-color: var(--green);
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all var(--transition-time) ease-in;
}
#form-result {
    position: fixed;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 35%;
    height: 35%;
    max-width: 500px;
    max-height: 500px;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-time) ease-in;
    z-index: 200000;
}
#form-result.shownotice {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}
div.notices {
    position: absolute;
    height: 100%;
    padding: 0 20px;
    margin: 0;
    position: relative;
    z-index: 2000;
    width: 100%;
    background-color: transparent;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
div.notices p > i {
    display: block;
    font-size: 4em;
    margin: -0.3em 0 0.3em;
}
#form-result.shownotice div.notices p > i.fa-check-circle {
    animation: bubb 5s linear;
}

#form-result.shownotice div.notices p > i.fa-circle-notch {
    animation: turn 1s linear infinite;
}
@keyframes bubb {
    0% {transform: scale(1);}
    7% {transform: scale(1);}
    10% {transform: scale(1.1);}
    13% {transform: scale(1);}
    16% {transform: scale(1.1);}
    19% {transform: scale(1);}
    100% {transform: scale(1);}
}
@keyframes turn {
    0% {transform: rotate(0deg);}
    100% {transform: rotate(360deg);}
}
#closeform {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10000;
    cursor: pointer;
}
div.notices.yellow {
    border-left: 0px solid #ba9800 !important;
    background: #fff;
    color: #d89b26 !important;
}
div.notices.red {
    border-left: 0px solid #f14101 !important;
    background: #fff;
    color: #9f1d1d !important;
}
div.notices.blue {
    border-left: 0px solid #005498 !important;
    background: #fff;
    color: #0d5d7f !important;
}
div.notices.green {
    border-left: 0px solid #1d4774 !important;
    background: #fff;
    color: #1d4e1d !important;
}
div.notices p {
    margin: 0 !important;
}


/* Footer */
#footer,
#footer a {
    color: var(--dark);
    font-size: 13px;
}
#footer .box1 p {
    padding-right: 5px;
}
#footer #toplink {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
}
#footer .wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px;
}
.footer-green {
    padding-top: 10px;
    padding-bottom: 40px;
    background: var(--green);
}
dialog.popupdatabox {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 30vw;
    min-width: 300px;
    height: 50vh;
    padding: 54px 20px 20px;
    margin: auto;
    background-color: var(--green);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-time) ease-in;
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
    border-radius: 8px;
    z-index: 10;
}
.shpu .popupdatabox {
    opacity: 1;
    pointer-events: all;
}
body:before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-time) ease-in;
    z-index: 10;
}
.shpu:before {
    opacity: 1;
}
body.shpu {
    overflow: hidden;
}
.popupdatabox .closepud {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
}
.popupdatabox #popupdata *{
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 1rem;
}
.popupdatabox #popupdata .wichtig, .popupdatabox #popupdata .wichtig * {
    color: inherit;
}
.popupdatabox #popupdata {
    position: absolute;
    top:54px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    overflow-y: scroll;
    width: auto;
}
.popupdatabox #popupdata *:not(i) {
    font-weight: 400;
}
.popupdatabox #popupdata h2 {
    font-size: 1.2rem;
}
.popupdatabox #popupdata div > * {
    margin-bottom: 10px;
}

/* POPUPS */
dialog {
    border: none;
    outline: none;
}
.modal {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 800px;
    max-height: 95vh;
    margin: auto;
    display: block;
    background-color: var(--light);
    opacity: 0;
    box-shadow: 0 0 100vh 100vh rgba(var(--blue-rgb),.7);
    pointer-events: none;
    z-index: 2100;
    border-radius: var(--border-radius);
    transition: opacity var(--transition-time) ease-in-out;
}
.mac .modal {
    height: 85vh;
}
.searchoverlay {
    max-width: calc(100% - 2 * var(--padding))
}
.modal[open] {
    opacity: 1;
    pointer-events: all;
}
.searchoverlay[open] {
    height: auto
}
.sharebuttons .shbox, #form-result div.notices, #form-result p, dialog.modal > div {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: var(--padding);
    background-color: transparent;
    max-height: 100%;
    overflow: scroll;
}
#form-result p span {
    display: block;
    margin-bottom: .5em
}
.modal .close {
    position: absolute;
    z-index: 3000;
    cursor: pointer;
    top: calc(.5 * var(--padding));
    right: calc(.5 * var(--padding));
    height: 2rem;
    width: 2rem;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
}
.sharebox {
    position: absolute;
    height: 38px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    left: 0;
    top: -50px;
}
.share {
    display: flex;
    flex-flow: column;
    align-items: center;
    position: relative;
}
.showshare  {
    display: inline-flex;
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    margin: 0;
    padding: var(--padding);
    align-items: center;
}
.sharebuttons .shbox, #form-result div.notices, #form-result p, dialog.modal > div {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
    padding: var(--padding);
    background-color: transparent;
    max-height: 100%;
    overflow: scroll;
}
#form-result p span {
    display: block;
    margin-bottom: .5em
}
.modal .close {
    position: absolute;
    z-index: 3000;
    cursor: pointer;
    top: calc(.5 * var(--padding));
    right: calc(.5 * var(--padding));
    height: 2rem;
    width: 2rem;
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
}
.sharebuttons {
    text-align: center;
}
.sharebuttons .shariff ul {
    justify-content: center;
    margin-top: 1rem
}
.sharebuttons .shariff .orientation-horizontal li, .sharebuttons .shariff .orientation-horizontal li a i {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    overflow: visible;
}
.sharebuttons .tosoc {
    font-size: .7rem;
    line-height: 1.2em;
}
/* Lightbox */
img.pu {
    cursor: pointer;
}
.pu-imagebox {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    max-width: 100vw;
    max-height: 100vh;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    width: auto;
    height: auto;
    padding: 40px;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-time) ease-in;
}
.pu-imagebox.pu-show {
    pointer-events: all;
    opacity: 1;
    transition: opacity var(--transition-time) ease-in;
}
.pu-sign {
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    position: absolute;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none; 
    opacity: 0.7;
    transition: opacity var(--transition-time) ease-in;
}
.pu-sign:hover {
    opacity: 1;
}
.pu-arr {
    top: 0;
    bottom: 0;
    margin: auto;
    height: 1em;
    margin-bottom: auto !important;
}
.pu-arr#pu-left {
    left: 20px;
}
.pu-arr#pu-right {
    right: 20px;
}
.pu-close {
    top: 15px;
    right: 20px;
}
.pu-imagewrapper {
    position: relative;
    height: calc(100% - 80px);
    width: calc(100% - 80px);
    margin: 0 auto;
}
.pu-imagewrapper img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    animation: pu-fadein var(--transition-time) ease-in;
}
@keyframes pu-fadein {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.pu-text {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
}

.flex.contentitem {
	align-items: stretch;
	margin-left: -10px;
}

.contentitem a {
	display: flex;
	justify-content: center;
	align-items: center;
	-webkit-hyphens: auto;
	hyphens: auto;
	overflow: hidden;
	margin: 10px;
	color: #fff;
	background-color: var(--green);
	border-radius: 8px;
	transition: all var(--transition-time) ease-in;
	text-align: center;
	padding: 10px;
}

.contentitem i {
	font-size: 1.5em;
	margin-right: 10px;
}

.contentitem p {
	font-weight: 600 !important;
	font-size: 1.5em;
}
/* Smartphone */
@media (max-width:1060px) {
.navbutton {
    width: 1.8rem;
    height: 1.8rem;
    position: fixed;
    margin: 0;
    z-index: 200;
    cursor: pointer;
    top: calc(.5 * var(--padding));
    left: var(--padding);
}
#menubutton {
    position: absolute;
    width: 270%;
    height: 250%;
    top: -79%;
    left: -93%;
    right: -40%;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}
#menubutton path {
    fill: none;
    -webkit-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -moz-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -o-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    -ms-transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    transition: stroke-dashoffset var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke-dasharray var(--transition-time) cubic-bezier(.25, -.25, .75, 1.25), stroke var(--transition-time) ease-in;
    stroke-width: 40px;
    stroke-linecap: round;
    stroke: var(--green-dark);
    stroke-dashoffset: 0px;
}
#menubutton path#top,
#menubutton path#bottom {
    stroke-dasharray: 240px 950px;
}
#menubutton path#middle {
    stroke-dasharray: 240px 240px;
}
.mopen #menubutton path#top,
.mopen #menubutton path#bottom {
    stroke-dashoffset: -650px;
    stroke-dashoffset: -650px;
}
.mopen #menubutton path#middle {
    stroke-dashoffset: -115px;
    stroke-dasharray: 1px 220px;
}
nav {
    margin-top: 0px;    
}
nav .navi {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
} 
#logo {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: 2;
}
#logo img {
    width: 100px;
    margin: 20px auto;
}
    body {
        margin-top: 0
    }
.showshare  {
    right: 0;
    left: auto;
}
    header.header > .menu {
        position: fixed;
        top: 0;
        left: -600px;
        width: 90%;
        max-width: 600px;
        height: 100%;
        z-index: 1000;
        padding: calc(var(--padding) + 2.6rem) calc(var(--padding));
        display: flex;
        justify-content: stretch;
        align-items: center;
        transition: left var(--transition-time) ease-in-out;
    }
    .mopen header.header > .menu {
        left: 0;
    }
    header.header > .menu nav {
        flex: 1 1 100%;
        margin: 0;
    }
nav .navbutton {
    display: block;
}
    header.header.large > .headerbottom {
        height: 30vh
    }
header.header .headertxt {
    display: none;
}
nav .navi {
    display: block;
    width: 100%;
    margin: calc(-.5 * var(--padding));
    padding: 0;
} 
nav > ul > li{
    display: block;
    font-size: 1.5rem;
    height: auto;
    padding: 0;
    transition: max-height var(--transition-time) ease-in, opacity var(--transition-time) ease-in, padding var(--transition-time) ease-in;
} 
nav > ul.open > li:not(.navbutton){
    padding: 5px 0;
    max-height: 600px;
    opacity: 1;
}
nav > ul > li.hassub > ul li {
    font-size: 1rem;
    flex: 1 1 100%
}
nav > ul > li.hassub .cm {
    position: fixed;
    font-size: 2rem;
    line-height: 1;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-time) ease-in-out;
}
    nav > ul > li.hassub .subopen + ul .cm {
        opacity: 1;
        pointer-events: all
    }

    nav > ul > li.hassub > ul {
        position: fixed;
        top: 0;
        left: -600px;
        width: 90%;
        max-width: 600px;
        height: 100%;
        z-index: 1000;
        padding: calc(var(--padding) + 2.6rem) calc(var(--padding));
        display: flex;
        flex-flow: row wrap;
        justify-content: stretch;
        align-items: center;
        align-content: center;
        transition: left var(--transition-time) ease-in-out;
        background-color: var(--green)
    }
    nav > ul > li.hassub > ul.sopen {
        left: 0;
    }
}
@media screen and (max-width: 767px) {
#totop {
    bottom: 50px;
    right: 5px;
}
#lauftextbox p {
    font-size: 20px;
}
#lauftextbox {
	height: 70px;
}
h1 {
    font-size: 22px;
}
h2 {
  font-size: 20px;
}
h3 {
  font-size: 18px;
}
header.header.large {
  height: 35vh;
}
}
@media (max-width:600px){
.content .wrapper #main {
    padding: 30px 20px 60px;
}   
nav#breadcrumbs {
    left: 20px;
}
}
@media (max-width:400px){
    h1, h2 {
        -webkit-hyphens: auto;
        hyphens: auto;
    }    
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/open-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 300 800;
  font-stretch: 100%;
  font-display: swap;
  src: url(../fonts/open-sans-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body.loaded {
    opacity: 1;
    --transition-time: .5s;
}