.page-container{
    position: relative;
    min-height: 100vh;
}
.content{
    /*padding-top: 40px;*/
    padding-bottom: 2.5rem;
}
.content-table{
    table-layout: fixed;  /*fix for ie11*/
    width: 100%;
    margin-bottom: 16px;
}
#sidenav-desktop{
    vertical-align:top;
    padding-top: 0px;
    width: 250px;
    overflow:hidden;
    transition: 0.5s;
}
#rightContent{
    vertical-align:top;
    width: 100%;
    padding: 20px;
    background-color: #fbfbfd;
}
body{
    margin: 0px;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color:#3c4043;  /* #929292; */
    font-size: 14px;
    background-color:#f5f5f7 !important;
}
h1{
    text-align: center;
    font-size: 30px;
    margin-bottom: 10px;
}
h3{ /* Card-Titel */
    font-size: 20px;
    margin-top: 6px;
    margin-bottom: 1px;
    text-align:left;
}
a{
    text-decoration: none;
    color: #078CE1;
}
button:not(.dropbtn):not(.navbar-toggler){
    font-size: 14px;
    background-color: #8bc34a;
    color: white;
    border: 1px solid #8bc34a;
    border-radius: 4px;
    padding: 5px;
    cursor: pointer;
}
button:hover:not(.dropbtn):not(.navbar-toggler){
    color: black;
    background-color:white;
}
.header-image-container, .body-image-container, .icon-image-container{
    display:flex;
    justify-content: center;
}
.body-image-container{
    padding: 6px 6px 12px 6px;
}
.header-image-container, .body-image-container{
    flex-wrap: wrap;
}

.header-image:first-child{
    border-radius: 5px 5px 0 0;
}
.icon-image{
    height: 50px;
    width: 50px;
    object-fit: contain;
    border: 2px solid #8bc34a;
    border-radius: 50%;
    padding: 3px;
    margin: 3px;
    font-size: 30px;
    color: black;
    text-align: center;
    line-height: 53px;
}
/* allows responsive floating layout */
.flex-container{
    display: flex;
    flex-direction: row;
    /* justify-content:space-around;  */  /* fallback for internet-explorer*/
    /* justify-content: space-evenly; */
    flex-wrap: wrap;
}
/* some padding */
.container{
    padding: 16px;
}
/* needed for anchor/bookmark links because the header is fixed */
.anchor{
    display: block;
    height: 60px;      /*same height as header*/
    margin-top: -60px; /*same height as header*/
    visibility: hidden;
}
/* sections ----------------------------------------------------------*/
.topic{
    padding: 0px;
}
.topic h1{
    padding-top: 30px;
    margin-top: 0;
}
.topic.type2{
    background-color: #f1f1f1;
}

/* all cards ---------------------------------------------------------*/
.small-card, .medium-card, .full-width-card {
    background-color: white;
    /* box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); */
    /* box-shadow: 0 2px 1px 0 rgba(0,0,0,0.1); */
    /* border-top: 1px solid #f1f1f1;           */
    margin: 0px 0px 6px 6px;
    border-radius: 5px;
    
    border: 1px solid #f1f1f1;
    
    /* auto. Silbentrennung */
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}
.small-card[onclick]:hover, .medium-card[onclick]:hover, .full-width-card[onclick]:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    cursor: pointer;
    /* transition: 0.3s; */
}

/* small card --------------------------------------------------------*/
.small-card {
    border-radius: 5px; /* 5px rounded corners */
    width: 32%;
    text-align:justify;
    
    
}
.small-card .body-image, .small-card .header-image{
    width: 100%;
}
@media screen and (max-width: 600px) {  .small-card{ width: 80%;}  }

/* Medium-Card -------------------------------------------------------------*/
.medium-card{
    width: 64.5%;
    text-align:left;
}

.medium-card .body-image, .medium-card .header-image{
    max-width: 100%;
    min-width: 1px; /*fix for ie11*/
}

/* full-width-card  ---------------------------------------------------------*/
.full-width-card{
    width: 97%;
    background-color: white;
}

.full-width-card .body-image, .full-width-card .header-image{
    max-width: 100%;
    min-width: 1px; /*fix for ie11*/
}
/* hero-image ---------------------------------------------------------------------------- */
.hero-image {
    height: 500px;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: static;
}
.hero-text{
    text-align: center;
    position: relative;
    top: 35%;
    /* left: 50%; => error IE BGImage*/
    /* transform: translate(-50%, -50%); */
    color: white;
}
.hero-text p, .hero-text h1{
    color: white;
}


/* Hide smartphone menu items on big screens */
.topnav .icon, .topnav .pagetitle, .topnav .back {
    display: none;
}

/* On smaller screens hide topnav and leftContent */
@media screen and (max-width: 600px) {
    .topnav-right{
        display: none;
    }
    .topnav.back .logo{
        display: none;
    }
    .topnav .pagetitle{
        display: block;
        float: left;
        font-size: 21px;
        font-weight: bold;
        color: #47944d;
        outline: none;
        padding: 14px 16px;
    }
    .topnav.back .back{
        display: block;
        float: left;
        font-size: 21px;
        padding: 14px 16px;
    }
    .topnav .icon{
        display:block;
        float: right;
    }
    #sidenav-desktop, #openSideNavDesktop{
        display:none;
    }
    #openSideNavMobile{
        display:block;
    }
    
    .small-card, .medium-card, .full-width-card {
        width: 97%;
    }
}

.topnav .logo, .back{
    float: left;
    padding: 0px 16px;
    height: 60px;
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 40px;
    width: 100%;
    align-items: center;
    color: white;
    font-size: 20px;
    position: fixed;
    background-color: #8bc34a;
    box-shadow: 0 1px 1px rgba(0,0,0,.2);
}
.header-item{
    cursor: pointer;
    padding: 0px 16px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #f1f1f1;
    overflow-x: auto; /* Enable horizontal scroll */
    border-right: lightgray 1px solid;
    transition: 0.5s;
    padding-top: 10px;
}
.sidenav .category:not(:first-child), .sitemap .category:not(:first-child){
    border-top: lightgray 0.5px solid;  /* MV border-top: lightgray 1px solid; */  /* line per section */
    padding-left: 4px;
    padding-top: 15px;
}
.sidenav .category, .sitemap .category{
    padding-left: 4px;
}
.sidenav a.home{
    font-size: 14px;  /* 23px MV */
}

.sidenav a:hover, .sidenav a.active, .back:hover, .sitemap a:hover, .sitemap a.active{
    color: #8bc34a;
}
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}
.logo-sidenav{
    height: 60px;
    padding-left: 4px;
}




/* Footer ----------------------------------------------------------------------------------------- */
.footer {
    background-color: #f5f5f7;
    overflow: hidden;
    border-top:1px solid lightgray;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 3.5rem;
}
.footer a{
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    border-bottom: 3px solid transparent;
    color:#929292;
    float: right;
}

.copyright{
    float: right;
    padding: 14px 16px;
    color:#929292;
}

.footer a:hover,.footer a.active {
    color: #47944D;
    border-bottom: 3px solid #8bc34a;
}

textarea, input, button, select, .file_upload, .textfield_readonly, .form-control, .form-control-rating {
    border-radius:3px;
    border-style: solid;
    border-width: 1px;
    border-color: #d0d0d0;
    color: #202020;
    padding:4px;
    font-size: 14px;
}
textarea, input, select, .file_upload, .textfield_readonly, .form-control, .form-control-rating {
    margin:4px 0px 8px 0px;
}
button {
    margin:0px 0px 0px 0px;
}

fieldset {
    border-radius:3px;
    margin:4px 0px 8px 0px;
    padding: 0.35em;
    border: thin solid #d0d0d0;
}
label,legend{
    color: #47944D;
}

.responsemessage {
    margin: 2px;
    padding: 8px;
    border-radius:5px;
    border: 2px solid #8bc34a;
}