/* Das Layout - Angaben die Bootstrap überschreiben! */
/* Eigene CSS-Deklarationen */
html {
  position: relative;
  min-height: 100%;
}
body {
color:#999;
font-family: Helvetica, Arial, sans-serif;
/*margin-bottom: 60px; Sticky */
}
body > .container {
  padding: 180px 15px 60px 15px;
}
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}
/* Header 
-------------------------------------------- */
    
header {
    display:flex;
    justify-content: space-between;
    padding:12px;
}
header div.suche {
    width: 55px;
}
header div.suche a img {
    margin-top: 0px;
    width:40px;
    height:40px;
    background:none;  
}
header div.suche a img:hover {
    transition: width 1s, height 1s, margin-top 1s;
    margin-top: -6px;
    width:45px;
    height:45px;
}



header div.burger img {
    width:40px;
    height:40px;
    background:none;
}

div.desc {
    display:block;
}
div.smart {
    display:none;
}
.navbar-default {
background-color: transparent;
border-color: transparent;
}
.navbar {
    border-radius: 0px;
}
h1, h2, h3, h4 {
	padding-bottom:24px;
}
/* Footer */
.right > p > a > img {
width:30px;
height:auto;
}
.right > p > a > img:hover {
opacity:0.5;
}
/* WYSIWYG EDITOR ALIGNMENT CLASSES
-------------------------------------------- */
.left, .text-left {
text-align: left
}
.center, .text-center {
text-align: center
}
.right, .text-right {
text-align: right
}
.justify, .justify-text {
text-align: justify;
hyphens: auto;
}
/* LINK-Kontur
-------------------------------------------- */
a {
    outline:0!important;
}
/* Trennungen
-------------------------------------------- */
.trennungen, .Trennungen {
	  -webkit-hyphens: auto;
      -moz-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
	/*word-break: break-all; */
}
.trennlinie, .Trennlinie {
	column-rule-style: solid;
	column-rule-width: 1px;
	column-rule-color: #ffffff;
	column-gap: 20px;
}

/* Rahmen div spalten3 
---------------------------------------------*/
div.ContainerSpalten2 {
    margin-top: 1.8ex;
    column-count: 2;
    column-gap: 2em;
    orphans: 2;
    widows:2;
    margin-bottom:24px;
}
div.ContainerSpalten3 {
    margin-top: 1.8ex;
    column-count: 3;
    column-gap: 2em;
    orphans: 2;
    widows:2;
    margin-bottom:24px;
}
div.ContainerSpalten4 {
    margin-top: 1.8ex;
    column-count: 4;
    column-gap: 2em;
    orphans: 2;
    widows:2;
    margin-bottom:24px;
}
#noncol {
    column-count: 1!important;
    column-gap: 0;
    /*column-width:100%;*/
}



/* IMAGES
-------------------------------------------- */
img {
height: auto; /* resets the image height so that it maintains its aspect ratio when width is set */
background: transparent url(../images/ajax-loader.gif) no-repeat center center;
width:100%;
}
img[src*=".png"], img[src*=".svg"] { 
    background:none;
}
img.left {
float: left;
max-width: 50%;
margin: 5px 20px 10px 0;
}
img.right {
float: right;
max-width: 50%; /* Responsive width */
margin: 5px 0 10px 20px;
}
img.leftAlone {
float: left;
margin-right: 100%;
margin-bottom: 10px;
clear: both;
}
img.center {
float: none;
margin-left: auto;
margin-right: auto;
display: block;
margin-bottom: 10px;
clear: both;
}
.captionImage {
max-width: 100%;
}
div.svgcontainer img {
background:none;
}
/* SVG */
img[src$=".svg"] {
    background:none;
}
/* Videos Responsiv 
-------------------------------------------------*/
.responsiv.embed.ss-htmleditorfield-file {
    width: 100% !important;
}
iframe {
    width:100%;
}
/* Content
-------------------------------------------------*/
.contentcontainer {
    min-height: 500px;
}

p.colactiv {
column-count: 2;
column-rule-style: solid;
column-rule-width: 2px;
column-rule-color: #000;
column-gap: 12px;
}

/* Startseite ImageBox */

div.content.start p {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    padding:0;
}
div.content.start p a {
    max-width:224px;
    margin-right: 8px;
    margin-bottom: 8px;
    border:1px solid transparent;
}
div.content.start p a:hover {
    /*border:1px solid rgb(205,45,50);*/
}
div.content a img, .imagebox a div img {
    border: 1px solid #ccc;
}
div.content a img:hover {
    border: 1px solid transparent!important;
}
/* OtherContent **************************************/
.otherContent {
    position: relative;
}

/* ImageBox ******************************************/
div.imagebox {
    display: flex; 
    justify-content: start;
    flex-wrap: wrap;
}
div.imageboxcontent {
    margin-bottom:12px;
    margin-right:12px;
    background-color: rgba(255,255,255,0.2);
}
p.boxtitle {
    font-weight: bold;
    margin: 8px 0px 0px 0px;
}
div.imageboxcontent p {
    hyphens: none;
}
.imagebox a div img {
    border: 1px solid transparent;
}
.imagebox > a:hover > div > img {
    border: 1px solid rgb(205,45,50);
}
div.content .imagebox a img:hover {
    border: 1px solid rgb(205,45,50)!important;
}
div.imageboxcontent div {
    padding: 5px;
}

/* Tabellen *************************************/
.tabelconsole img {
    width: 55px;
    background: none;
    position :relative;
    animation: tablego 15s infinite;
}
.tabelconsole {
    display:none;
    position:fixed;
    z-index:900;
    height:75px;
    width:100%;
    background-color:transparent;
    opacity:0.7;
    top: 50vh; 
}
@keyframes tablego {
    0%   {left:60%;}
    25%  {left:40%;}
    75%  {left:40%;}
    100% {left:60%;}
}
/* MultiPage **************************************/
div.multipage {
    margin: 0;
    padding: 91px 0 0 0;
    width: 100%;
}
div.multipage article {
    padding:15px;
}
div.multipage section {
    padding-top:20px;
}
/* OnePage **************************************/
div.onepage {
    margin: 0;
    padding: 91px 0 0 0;
    width: 100%;
}
div.onepage article {
    padding:15px;
}
div.onepagecontent {
    padding:24px 0;
}
.chaptertop {
    float: right;
    width: 28px;
    text-align: right;
}
a.chaptertop img {
    width: 28px;
    height: 32px;
    background: none;
    margin-left: 0px;
    padding-top: 6px;
    padding-bottom: 0px;
}
/* PopupPage *************************************/
div.popupcontent {
    margin-top:91px;
}
div.trigger {
    width:60px;
    height:60px;
    cursor:pointer;
}
section.modal {
    width:100%;
    margin:auto;
    
}
button.close {
    font-size:50px;
    margin-top: -12px !important;
}
div.modal-content {
    padding:24px;
}
.modal-header {
    min-height: 16.43px;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}
button.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0;
    opacity: 1;
    outline:none;
}
button.close span.pop-button{
    width: 35px;
    height: 35px;
    background-color: transparent;
    display: block;
    opacity: 1;
}
button.close span.pop-button img {
    width: 35px;
    height: 35px;
    background: none;
}

/* KachelPage *************************************/
div.kacheln {
    display:flex;
    flex-wrap: wrap;
}
div.kachelcontent {
    width:300px;
    height:300px;
    margin: 0px 12px 12px 0px;
    border:1px solid #ccc;
    background-size:cover;
    background-position: center center;
    overflow:hidden;
}

a .kacheltitel {
    font-size: 1.8em;
    font-weight: bold;
    text-align: left;
    width: 100%;
    display: block;
    padding:6px;
}
a.kachel {
    text-decoration:none;
}
a .kachelcontent {
    border:1px solid #ccc;
}
a .kachelcontent:hover {
    border:1px solid red;
}

/* ArchivePage *************************************/
div.archivkacheln {
    display:flex;
    flex-wrap: wrap;
}
div.archivkachelcontent {
    width:300px;
    height:300px;
    margin: 0px 12px 12px 0px;
    border:1px solid #9cc;
    background-size:cover;
    background-position: center center;
    overflow:hidden;
}

a .archivkacheltitel {
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    width: 100%;
    display: block;
    padding: 0;
    margin-top:-8px;
    margin-bottom: 12px;
}
a.archivkachel {
    text-decoration:none;
    color:#000;
}
a .archivkachelcontent {
    border:1px solid #ccc;
box-shadow: 2px 1px 4px rgba(0,0,0,0.3);
}
a .archivkachelcontent:hover {
    border:1px solid red;
}
div.archivcontent p {
    margin-bottom: 24px;
    color:#000;
}


/* Form Search ***********************************/
form .btn-toolbar {
    margin: 12px 0;
    width: 200px;
}
form input {
    min-width: 200px;
    padding:2px 6px;
}
div.results a {
    font-size: 1.4em;
}

div.results a span.rank {
    color: #ccc;
}
div.results span.pos, div.results span.urlsegment {
    color:#999;
    font-size:0.8em;
}
div.results p.kurz {
    display:none;
}
/* FOOTER
-------------------------------------------------*/
.footer {
    /*position: absolute;
    bottom: 0px;
    min-height: 100px;*/ 
    width: 100%;
}
footer div.right a.social {
    display: inline-block;
    width: 30px;
    text-decoration:none;
    margin:8px 2px;
    padding-bottom:2px;
}
footer div.right a:hover {
    border-bottom:0px;
}
footer div.right a img {
    background:none;
}
p.weiter, .weiter {
    width: 100%;
    background: #333;
    font-size: 1.2em;
    margin-bottom: 12px;
    padding-left:8px;
}
.weiter a {
    margin:auto;
    padding: 10px;
    display:flex;
    text-decoration:none;
}
.weiter a svg {
    max-width:20px;
}
.weiter a span {
    padding-left: 8px;
}
.adress {
    padding-top: 6px;
}



/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	body {
		/*margin-bottom: 60px;*/
	}

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	body {
		margin-bottom: 120px;
	}

	section {
			padding:15px;
		}
	/* Rahmen div spalten3 ****************************/
	div.ContainerSpalten2 {
	    column-count: 2;
	}
	div.ContainerSpalten3 {
	    column-count: 3;
	}
	div.ContainerSpalten4 {
	    column-count: 3;
	}
	article.onepagecontent {
	    padding: 40px 24px!important;
	}
    .Content {
        /*column-count: 2!important;*/
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {


    /*.tabelconsole {
        display: block;
    }

	div.container {
	    background-color: transparent;
	}
    div.trigger {
        width:50px;
        height:50px;
        cursor:pointer;
    }

	div.ContainerSpalten2 {
	    column-count: 2;
	}
	div.ContainerSpalten3 {
	    column-count: 2;
	}
	div.ContainerSpalten4 {
	    column-count: 2;
	}
	article.onepagecontent {
	    padding: 40px 24px!important;
	}
    #contencols {
        column-count: 2 ;
    }*/
    .container {
        width:100%!important;
        margin: 0;
    }
    div #popuptrigger img {
        width: 30px;
        height: 30px;
    }
    nav.collapsenav {
        display:none;
    }
    .TopSpaceCollapsenavi {
        margin-top: -24px !important;
    }

    .tabelconsole {
        display: block;
    }

    div.container {
        background-color: transparent;
    }
    div.otherContent {
        margin:0!important;
    }
    div.trigger {
        width:50px;
        height:50px;
        cursor:pointer;
    }
    img.leftAlone {
        margin-right: 100%;
        margin-bottom: 0;
        clear: both;
    }
    /* OnePage ****************************************/
    div.OnePageContent {
        /*background-attachment: scroll !important;*/
    }

    /* Rahmen div spalten3 ****************************/
    div.ContainerSpalten2 {
        column-count: 2;
    }
    div.ContainerSpalten3 {
        column-count: 2;
    }
    div.ContainerSpalten4 {
        column-count: 2;
    }
    article.onepagecontent {
        padding: 40px 15px;
    }
    #contencols {
        column-count: 2 !important;
    }
    #col {
        column-count: 2!important;
    }
    .ifogramspalte {
        margin-top: 36px;
    }
        
    #cookie_container {
        max-height: 200px !important;
        height: 200px;
    }
    div.innercont {
        margin:0!important;
    }
    .modal-content {
        width: 90%; 
        margin: 40% 5%; 
        padding: 15px;
    }
	    
	
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 610px) {
    .Content, .colactiv {
        /*column-count: 1!important;*/
    }
}
/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {

    nav ul.suche {
        width: 38px;
        border: transparent;
        padding: 0;
        margin: 0;
        position: absolute;
        right: 0px;
        left: 15px;
        top: 17px;
        background-color: transparent;
    }
    .breadnavcontainer.navihome {
        min-height: 32px !important;
        margin-left: -22px;
    }
    nav.breadnav ul li a {
        display:block;
        margin-right:9px;
    }
    nav.breadnav ul.levelhome {
        width:100%;
        list-style-type: none;
        padding:0;
        background-color: #333;
        margin-left:14px;
        text-align: left;
    }
    ul.nav.levelhome a {
        font-size: 17px;
        display: block;
        height: auto;
        padding-right: 5px;
        margin:2px 2px 2px 8px;
        line-height: 1.3em;
    }
    div.content.start p a {
        max-width: 140px;
        margin-right: 8px;
        margin-bottom: 8px;
        border: 1px solid transparent;
    }
    div.imageboxcontent {
        margin-bottom: 12px;
        margin-right: 12px;
        /*width: calc(50% - 10px)!important;*/
    }
    div #popuptrigger img {
        width: 20px;
        height: 20px;
    }

    form input, button.neusuche {
        min-width: 282px;
        font-size: 1.6em;
    }
    div.trigger {
        width:30px;
        height:30px;
        cursor:pointer;
    }
    .otherContent {
        margin: 0;
        -moz-hyphens: auto;
       -o-hyphens: auto;
       -webkit-hyphens: auto;
       -ms-hyphens: auto;
       hyphens: auto; 
    }
    h1 {
        margin: 24px 0 !important;
        -moz-hyphens: auto;
       -o-hyphens: auto;
       -webkit-hyphens: auto;
       -ms-hyphens: auto;
       hyphens: auto; 
    }

    /* OnePage ****************************************/
    .onepagecontent, article.onepagecontent {
        padding:0;
        margin: 0;
        column-count: 1!important;
        -moz-hyphens: auto;
       -o-hyphens: auto;
       -webkit-hyphens: auto;
       -ms-hyphens: auto;
       hyphens: auto; 
    }
    div.OnePageContent {
        background-attachment: scroll !important;
    }
     /* Rahmen div spalten3 ****************************/
    div.ContainerSpalten2 {
        column-count: 1;
    }
    div.ContainerSpalten3 {
        column-count: 1;
    }
    div.ContainerSpalten4 {
        column-count: 1;
    }
    #contencols {
        column-count: 1!important;
    }
    #col {
        column-count: 1!important;
    }
    .sharewhatsup {
        display:inline-block;
    }
    div.desc {
        display:none;
    }
    div.pad {
        display:none;
    }
    div.smart {
        display:block;
    }
    #cookie_container {
        max-height: 220px !important;
        height: 220px;
    }
    
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 360px) {
	/*.kachelcontent {
		width:140px!important;
		height:140px!important;
	}
	header div.logo img {
	    max-width: 160px;
	    height: auto;
	    background: none;
	    margin-left: -60px;
	}*/
    

}