@charset "utf-8";
/*@import url('https://fonts.cdnfonts.com/css/myriad-pro');*/
@font-face{
    font-family:myriad pro;
    font-style:normal;
    font-weight:400;
    src:local('Myriad Pro'),url(fonts/MYRIADPRO-REGULAR.woff) format('woff');
}

*{
    font-size: 15px;
    font-family: "Myriad Pro","Times New Roman", Times, Verdana,sans-serif;
    margin:0;
    padding:0;
    box-sizing: border-box;
    text-decoration: none;
    color:#000;
    vertical-align: top;
}

html,body{
    background-color: #f9f7e7;
}
html{
    overflow-y: scroll;
}
body{
    padding-top:180px;
}
a {
    cursor:pointer;
}


header{
    height: 140px;
    padding: 10px 30px;
    position: fixed;
    left:calc(50% - 450px);
    top:0px;
    width:900px;
    margin:auto;
    z-index:100;
    background-color: #f9f7e7;
}
header *,footer *{
    color: #12b3c5;
}
header a{
    display:inline-block;
    width:220px;
    height: 120px;
    position: absolute;
    left:7%;
    top:15px;
}
#burger{
    display:none;
}
header img{
	-webkit-filter: drop-shadow(0px 0px 4px rgba(249,247,231,1));
    	filter: drop-shadow(0px 0px 4px rgba(249,247,231,1));
    max-height:100%;
}
header hgroup{
    position:absolute;
    right:50px;
    top:35px;
    width:520px;
}
header hgroup h2{
    font-weight:normal;
    font-size:19px;
    font-style: italic;
    font-family:"Times New Roman";
}
header hgroup h1{
    font-weight:normal;
    font-size:36px;
   /* text-shadow: 0px 0px 0px  rgba(0,0,0,0.0); */
}
header hgroup h1 span{
    font-weight:normal;
    font-size:24px;
    vertical-align: baseline;
    display:inline-block;
    margin-left:5px;
    text-shadow:none;
}

menu{
    height: 40px;
    line-height: 43px;
    background-color: #12b3c5;
    text-align: center;
    position: fixed;
    /*
    left:0px;
    width:100%;
    */
    left:calc(50% - 450px);
    width:900px;
    top:140px;
    z-index:100;
}

menu li{
    display:inline-block;
    line-height: inherit;
    padding:0px 15px;
    color:#f9f7e7;
    text-transform:uppercase;
    position:relative;
}
menu li a{
    color:#f9f7e7;
}
menu li:after{
    content:"";
    display:block;
    height:3px;
    width:0%;
    background-color:#f9f7e7;
    position:absolute;
    bottom:3px;
    left:50%;
    transition:all 0.6s;
}

menu li:hover:after, menu li.aktiv:after{
    width:84%;
    left:8%;
}

menu #closer{
    display:none;
}

main{
    color:#595959;
    padding:20px 20px 40px 20px;
    display:block;
}

main *{
    color:#595959;
}
main section{
    width:900px;
    margin:auto;
    margin-bottom:20px;
    position: relative;
}
main section.g11{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-areas: "links rechts";
}
main section.g12{
    display: grid;
    grid-template-columns: 33% 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-areas: "links rechts";
}
main section.g21{
    display: grid;
    grid-template-columns: 1fr 33%;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-areas: "links rechts";
}

main section.g3{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

article{
    background-color:rgba(255,255,255,0.3);
    padding:15px;
    border-radius:8px;
    border:1px solid #dddddd;
}

main section.g3 article:last-of-type{
    display:none;
}

article.bg{
    background-color:rgba(255,255,255,0.3) !important;
    border:1px solid #dddddd !important;
}

article img{
    max-width:100%;
    max-height:100%;
    border-radius:5px;
}

section > h6,article >h6{
    display:none;
}

main section.g12 article:first-of-type,main section.g21 article:last-of-type{
    background-color:rgba(255,255,255,0);
    border:1px solid transparent;
}

.border{
    border:1px solid #dddddd !important;
}

footer{
    height: 30px;
    line-height: 30px;
    position: fixed;
    left:calc(50% - 450px);
    bottom:0px;
    width:100%;
    margin:auto;
    z-index:100;
    background-color: #12b3c5;
    text-align: right;
    padding:0px 20px;
    width:900px;
}
footer a{
    color:#f9f7e7;
    display:inline-block;
    margin-right:20px;
    font-size:0.9em;
}
.fancybox-infobar__body *{
    color:inherit;
}

/* ------------------------------ [+] Formular ------------------------------------------------- */

form{
    width: 89%;
    margin:auto;
    line-height:34px;
}
#kontakt a{
    color:inherit;
    font-size:inherit;
}
form label{
    display:inline-block;
    vertical-align:top;
    width:20%;
    padding-left:20px;
}

form input,form textarea{
    width:72%;
    padding:5px 7px;
    border-radius:5px;
    border:1px solid #969696;
}

form input[type=submit],form input[type=reset]{
    width:35.3%;
    background-color: rgba(84,93,133,0.7);
    color:#fff;
    cursor:pointer;
    transition:all 0.5s;
}

form input[type=submit]:hover,form input[type=reset]:hover{
    background-color: #12b3c5;
}
form input[name=vorname]{
    display:none;
}

form textarea{
    margin-top:3px;
    margin-bottom:6px;
    height:9em;
    resize: none;
}

form div{
    text-align: center;
    color:#EA5F00;
}

.fehler{
    color:#EA5F00;
    font-weight:bold;
}
.erfolg{
    color:#339966;
    font-weight:bold;
}
/* ------------------------------ [-] Formular ------------------------------------------------- */


/* ------------------------------ [+] Galerie -------------------------------------------------- */
figcaption.galerie{
    margin-top:-10px;
}
.galeriethumb{
    width:78px;
    height:76px;
    background-size:cover;
    margin:5px;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity:0.7;
    border-radius:8px;
    display:inline-block;
    transition:all 0.4s;
}
.galeriethumb:hover,.galeriethumb.aktiv{
    cursor:pointer;
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity:1;
}
.galeriethumb a{
    display:block;
    width:100%;
    height:100%;
}

/* ------------------------------ [-] Galerie -------------------------------------------------- */

/* ------------------------------ [+] Adminbereich --------------------------------------------- */

.adminlink{
    display:inline-block;
    width:100px;
    height:100px;
    border-radius:8px;
    background-color:rgba(255,255,255,0.3) !important;
    border:1px solid #C0C0C0;
    margin:5px;
}
.adminlink[class*="icon"]:before{
    font-size:65px;
    position:relative;
    top:15px;
    left:17px;
    color:#12b3c5;
}
table{
    border-spacing:0px;
    width:100%;
}
table tr:nth-of-type(2n){
    background-color:rgba(0,0,0,0.1);
}
table tr td:first-of-type{
    padding:4px 6px;
}
table tr:hover{
    background-color:rgba(0,0,0,0.7);
}
table tr:hover *{
    color:#fff;
}

.ui-widget-header{
    background-color:#12b3c5 !important;
}
.ui-dialog-title{
    color:#fff;
}
select,option{
    width:100%;
    padding:3px 6px;
    color:#000;
}
option{
    width:100%;
    color:#000;
}
button#upload{
    width:100%;
    margin: auto;
    padding: 8px;
    border-radius:7px;
    border:1px solid #C0C0C0;
    margin-top:7px;
}
.progress{
    width:100%;
    margin: auto;
    margin-top:7px;
    border-radius:10px;
    border:1px solid #C0C0C0;
    padding: 0px;
    display: none;
}
#rasterauswahl a img{
    transition:all 0.6s;
    opacity:0.6;
    border:3px solid transparent;
}
#rasterauswahl a:hover img{
    border:3px solid #339966;
    opacity:1;
}
section > .icon-trash{
    position: absolute;
    top:-15px;
    right:-20px;
    height:40px;
    width:40px;
    border-radius:20px;
    border:1px solid #FF9900;
    background-color:rgba(255,255,255,0.7);
    line-height:40px;
    text-align:center;
    opacity:0.2;
    transition:all 0.6s;
}
section:hover > .icon-trash{
    opacity:1;
}
.trumbowyg-insertImage-button{
    display: none !important;
}
/* ------------------------------ [-] Adminbereich --------------------------------------------- */