<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/pt-sans-v17-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('../fonts/pt-sans-v17-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}
body {
    font-family: 'PT Sans';
    background-color: #eee;
    visibility: hidden;
}  
.hidden {
    overflow: hidden;
}
main {
    display: flex;
   justify-content: center;
   align-items: center;
}    
    .container {
   /*     position: fixed;*/
    display: grid;
   /* grid-template-columns: repeat(3, 1fr); */
   /* grid-template-columns: 300px 1fr 20%;*/
    grid-template-columns: repeat(3, 1fr) ;
    
    grid-gap: 5px 0px;
    border: solid red 1px;
    border-radius: 10px;
    
}

.header {
    grid-column: 1 / 4;
    grid-row: 1 / 2;
}
.header {
    display:flex;
    background-color: #abc;
    width: 100%;
    height: 100px;
    border-radius: 10px;
    align-items: center; 
    justify-content: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: bold;
}

#headerleft {
    width: 25%;
    text-align: center;
}
#headercenter {
    text-align: center;
    font-size: 1.2em;
    font-style: italic;
    font-weight: bold;
    color: #333;
    width: 50%;
}
#headerright {
    width: 25%;
    text-align: center;
}

.seitentitel {
    text-align:center; 
    color:#555; 
    text-shadow: 6px 6px 5px #aaa;
   visibility: hidden;
    animation: fadeIn 1s;
  
}
.seitentitel .opa {
    opacity: 0.3;
}

/* Menue */
#menu {
   grid-column: 1 / 4;
    grid-row: 2 / 3; 
    background-color: transparent;
    display:grid;
    grid-template-columns: 20% 1fr 20% ;
    place-items: center;   
    height: 25px;
    width: 100%;
    /* einblenden */
   visibility: hidden;
    animation: fadeIn 0.5s; 
}
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
/* drei Bereiche in der Menuzeile*/
#menubuttonleft {
    grid-column: 1 / 2;
 border: solid 0px green;   
}

#menubuttoncenter {
    grid-column: 2 / 3;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
#menubuttoncenter button {
    border: none;
    font-size: 1.2em;
  /*  color: #333;*/
  background-color: transparent;
}

#menubuttonright {   
    grid-column: 3 / 4;
 border: solid 0px black;  
}

/* Nav Icons*/
#nav-icon1, #nav-icon2  {
  width: 40px;
  height: 25px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  
}

#nav-icon1 span, #nav-icon2 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: #999;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon1 span:nth-child(1), #nav-icon2 span:nth-child(1) {
  top: 2px;
}

#nav-icon1 span:nth-child(2), #nav-icon2 span:nth-child(2) {
  top: 10px;
}

#nav-icon1 span:nth-child(3), #nav-icon2 span:nth-child(3) {
  top: 18px;
}

/* nav Icons, wenn geklickt*/
#nav-icon1.open span:nth-child(1), #nav-icon2.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2), #nav-icon2.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3), #nav-icon2.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

/* das Aussehen der eingeschobenen menus */
#menuleft, #menuright {
  box-shadow: inset 0 0 2000px rgba(200, 200, 200, .5);
  background-color: rgba(200, 200, 200, 0.8);
  height: 100vh;
  width: 90%;
 /* transform: translate(-350%);*/ 
  transition: transform 1s ease-in-out;
  
}

#menuleft, #menuright {    /*enthÃ¤lt die menu items */
    width: 80%;
    max-width: 500px;
    height: auto;
    
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    grid-gap: 25px 10px;   
    border: solid red 1px;
    border-radius: 10px;
    margin-top: 5px;   
    padding-bottom: 40px;
    background-color: #eee;
    opacity: 0.9;
    z-index: 20;
}
#menuleft {
    transform: translateX(-500%);
}
#menuright {         
    transform: translateX(-700%);
}    

/*schiebt die Menus von links ein */
#menuleft.menuopen1 {
transform: translateX(0);
}
#menuright.menuopen2 {
transform: translateX(0);
}
/* die MenÃ¼punkte als Buttos */
.navitem {
    width: 80%;
    height: 70px;
    background-color: whitesmoke;
    border: solid 1px red;
    border-radius: 10px;
    font-size: 1.2em;
    color:#333;    
    cursor: pointer;
   
}
.onoff {
    background-color: lightskyblue;
    
}

/* Hauptcontaier  Ã¤ndert sich bei jeder Seite*/
.center {              
    grid-column: 1 / 4;
    grid-row: 4 / 5;
    border-radius:15px;
   /* background-color: #eeeeee; */
    place-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  
}

/* Footer mit Impressum und Datenschutz */

.footer {
    grid-column: 1 / 4;
    grid-row: 6 / 7;
    border-radius:15px;
    border:1px red solid;
    background-color: lightgrey;
    
}
.footer li{
   /*display:inline-block;*/
    text-decoration:none;
    width: 150px;
    height: 25px;
    background-color: #eee;
    border: 1px solid lightskyblue;
    border-radius: 5px;
    padding: 5px;
    margin:10px;
    }
.footer p, a {
    font-size: 18px;
    text-decoration: none;
    color:#555;
    }
.footer a { display:block;}

#scrolltop {
    border: solid red 1px;
    border-radius: 5px;
    color: #333;
    hight:20px;
    font-size: 1em;
    float:right;
    margin-right: 30px;
    cursor: pointer;
  
}

/* Herz und popup Popup enthÃ¤lt den close button*/    
  #herz { 
  top: 55px;
  width:95%;
  left:0;
  right: 0;
  position: fixed;
  margin:0 auto;
  height: 100%;
  margin-bottom: 5%;
  background-color: #eeeeee;
  z-index: 3;
  /*overflow: auto;*/ 
  border-radius: 10px;
  display:flex;
  justify-content: center;
}
#popup {
  width:100%;
  left:0;
  right: 0;
  position:fixed ;
  margin:0 auto;
  background-color: #eee;
  z-index: 3; 
  border-radius: 10px;
}
#popup {
   /* background-color: #888; */
    display:grid;
    grid-template-columns: 20% 1fr 20% ;
    place-items: center;   
    top: 10px;
    width: 100%;
    height: 40px;
    /* einblenden */
    visibility: hidden; 
    animation: fadeIn 4s;
}

#popup .le {
    grid-column: 1 / 2;
    display: flex;
    height: 20px;
    justify-content: center; 
    align-items: center;  
}
#popup .close {  /* close button*/
    height: 40px; 
    font-size: 2em;
    cursor: pointer;
  
    border: none;
    color: #333;
    background-color: transparent;
}
#popup .ce {   /* titel button*/
    grid-column: 2 / 3;
    display: flex;
    height: 25px;
    justify-content: center; 
    align-items: center;
    color: #333;
    background-color: transparent;
 
}
#popup .ri {
    grid-column: 3 / 4;
    display: flex;
    height: 25px;
    justify-content: center; 
    align-items: center;
}
/* Banner im zentrum der Seite */
.banners {
    display: flex;
    flex-wrap: wrap;    /* bei trainer */
   /* flex-direction: column;    bei startseite*/ 
    justify-content: center; 
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: auto;
    
}
    

.banners img {
    width: 100%;
    max-width: 800px;
    
}
.banner {
    cursor: pointer;
    
    border-radius: 10px;
    margin-bottom: 50px;
    border: solid 1px grey;
    box-shadow: 10px 10px 10px grey;
    text-shadow: 6px 6px 6px #619Ed7;
    animation: fadeIn 1s;
    height: auto;
}

.trainerbanner {
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 140px;
    height: 250px;
    margin: 15px;
    padding-bottom: 10px;
    border: solid lightskyblue 1px;
    border-radius: 10px;
    background-color: #eee;
    overflow: hidden;
    cursor: pointer;
  
    box-shadow: 5px 5px 5px grey;
   /* text-shadow: 6px 6px 6px #619Ed7; */
    animation: fadeIn 1s;  
    
}

.gruppenbanner {
    width: 100%;
    height: auto;
    text-align: center;
    background-image: url('papier.png')
    
}

.seminarbanner {
    width: 95%;
    height: 100%;
    border: none;
    
    background-image: url('pinwand.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; 
}
.pin {
    position: absolute;
    top: 0px;   
    width: 0px;    
}
.flip{
   position: relative;
    width: 95%;
    height: 300px;
    top: 0px;
    left: 10px;
    box-shadow: 6px 6px 6px #888;
    background-color: whitesmoke;
    background-image: url('papier.png');
    overflow: hidden;
    cursor: pointer;
    
} 

.fliptext {
    line-height: 28px;
    font-size: 10px;
}


.trainerbanner img {
    margin-top: 7px;
    height: 130px;
    width: auto; 
    padding-bottom: 5px;
}

 .trainerbanner .logo {
  height: 20px;
    width: auto;
  background-color: #eee;
 }

.trainerbanner .text {
    color: #333;
    font-size: 16px;
    text-align: center;
}

.trainerbanner .text h1{
    font-size: 24px;
}
.trainerbanner .text h2{
    font-size: 20px;
}
.trainerbanner .text p{
    font-size: 18px;
}

#plzmenubtn {
   border: 1px red solid;
   font-size: 16px;
   border-radius: 5px;
   background-color: transparent;
   cursor: pointer;
   
}
#plzmenu {
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; 
    height: auto;
    width: 100%;
    background-color: transparent;
   /* border: 1px solid red;
    border-radius: 10px;*/
    font-size: 16px;   
}
.plzschalter, .plztext, #plzinputbtn, .kalender{
    border: 1px red solid;
   font-size: 16px;
   border-radius: 5px;
   height: 40px;
   width: auto;
   min-width: 40px;
   margin: 12px;
   cursor: pointer;
   
   box-shadow: 5px 5px 5px grey;
}
/* alles fÃ¼r Kalender */
.kalender {
    width: 400px;
}
#kalon {
        height: 26px;
        font-size:18px;
        color:#555;
        border-radius: 5px;
        cursor: pointer;
    }
    #kalbox {
        margin-left: 20px;
        cursor: pointer;
    }
    #kalender {
        border: 1px solid blue;
        width: 302px;
        padding:1px;
        cursor: pointer;
    }
    #kalender .heute {
        font-weight: bold;
        cursor: pointer;
    } 
    #kalender button {
        margin: 1px;
        width: 41px;
        height: 22px;
        color: #111;
        font-size: 14px;
        background-color: whitesmoke;
        border: 1px lightblue solid;
        border-radius:1px;
        cursor: pointer;
    }
    #kalender .bold {
        font-weight: bold;
    }
    #kalender .blau {
        background-color: #CED8F6;
    }
    #kalender #kalenderwotage button  {
        font-weight: bold;
        cursor: pointer;
    }
    #kalender #kalenderkopf button {
        font-weight: bold;
        cursor: pointer;
    }    
    #kalender .kace {
       width: 127px; 
    }
    #a1234 {
        color:red;
    }
    .buttonklick {
        cursor: pointer;
        
    }
/* loading-Bereich*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Hintergrundfarbe des Ladebildschirms */
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-content {
  color: #567;
  font-size: 24px;
}



#plzinput {
    width: 200px;
  height: 40px;
  border: 2px solid red;
  border-radius: 5px;
  padding: 5px;
  font-size: 16px;
  color: #555;
  background-color: #f7f7f7;
}

.tooltip, .tooltipmenu, .tooltipplz{
  position: relative;
  display: inline-block;
}

.tooltip::before, .tooltipmenu::before, .tooltipplz::before {
  content: "Jetz finden";
  display: none;
  position: absolute;
  width: 120px;
  background-color: #aaa;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  z-index: 4;
  margin-left: 30px;
}
.tooltipmenu::before {
    content: "HauptmenÃ¼";
}
.tooltipplz::before {
    content: "WÃ¤hlen Sie einen Bereich";
}
/*
.tooltip:hover::before, .tooltipmenu:hover::before, .tooltipplz:hover::before  {
  display: block;
}
*/
#plzinput::placeholder {
  animation: placeholder 3s linear infinite;
}
@keyframes placeholder {
  from { text-indent: 30; }
  to { text-indent: -90%; }
}

#plzinputbtn {
    box-shadow: 5px 5px 5px grey;
}
#plzinputbtn:focus {
background-color: lightblue;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(50, 50, 50, 0.6);
  z-index: 0;
}

h1 .center {
    text-align: center;
}
.titelbild {
    width: 100%;
    max-width:800px;
    padding-bottom: 10px;
    border-radius: 10px;   
}
#vereine a {
        text-decoration:none;
        width: 200px;
        height: 25px;
        background-color: #eee;
        border: 1px solid lightskyblue;
        border-radius: 5px;
        padding:5px;
    }
    #vereine p, a {
        font-size: 20px;
    }
    #vereine table {
        width: 100%;
        border-spacing: 0px;
        
    }
    #vereine tr {
          
    }
    #vereine td {
        text-align: center;
        background-color: #ddd;
        border-bottom: 10px solid #eee;
        
    }
    #vereine hr {
        border:1px solid lightskyblue;
        
    }
    #tagungen {
          margin: 20px;
      }
      #tagungen p {
          color: #333;
          font-size: 20px;
          line-height: 24px;
      }
      #foren a {
        text-decoration:none;
        width: 200px;
        height: 25px;
        background-color: #eee;
        border: 1px solid lightskyblue;
        border-radius: 5px;
        padding:5px;
    }
    #foren p, a {
        font-size: 20px;
    }
    .verdeckt {
    display: none;
}

    .pixabay {
        
            margin-left: 50px;
            font-size:14px;
            color: #777;             
    }
    .pixabay a {
        display: inline-block;
            font-size:14px;
            color:#444;  
    }
    .titelbildklein {
            height: 50px;
            float:left;
            margin-right: 10px;
    }

/* Banner und Flips*/
@media only screen and (max-width: 1200px) {
.seminarbanner {
    display: flex;
   width: 800px;
   width: 100%;
   height: 300px;
   border: none;
   padding-bottom: 90px;
   background-image: url('pinwand.png');
   background-size: 100% 100%;
   background-position: center;
   justify-content: center;
   align-items: center;
}
    
.flipi {
    position: relative;
    width:80%;
    text-align: center;
    margin-top:100px;
    background-image: url('papier.png');
    border-radius:10px;
    padding:20px;
}
.pinnil, .pinnir {  
    display:block;
    position: absolute;
    top:-5px;
    width: 15px;  
}
.pinnil {left:7%;}
.pinnir {left:92%;}
}    
    
@media only screen and (min-width: 1200px) {
    body {    
   /* background-color: lightblue;*/
    }
    .container {
        width: 800px;
    }
    #herz, #popup {
        height: 80%;
        width: 700px;
        margin-bottom: 5%;
    }
    #popup { height: 40px;}
    
    
    .banner { max-width: 600px;}
    .header {
        font-size: 1.5em;
    }
    .trainerbanner {
        width: 160px;
        height: 250px;
    }
    .gruppenbanner {
    width: 100%;
    height: auto;
}
    .trainerbanner img {
       height: 140px;
       
    }
    #menuleft, #menuright { width: 500px; }
    #menuright { margin-left: 200px; }
    .tooltip:hover::before, .tooltipmenu:hover::before, .tooltipplz:hover::before  {
  display: block;
} 

.seminarbanner {
    width: 90%;
    height: 400px;
    border: none;
    padding-bottom: 90px;
    background-image: url('pinwand.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}
.flip {
   background: transparent;
    border:none;
    box-shadow: none;  
}
.fliplinks, fliprechts {
    position: relative;
    width: 37%;
    height: 350px;
    margin-left: 60px;
    margin-top: 60px;
    box-shadow: 10px 10px 10px #888;
    background-image: url('papier.png');
    float:left; 
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
} 
.fliprechts {
    float: right;
    margin-left: 0px;
    margin-right: 60px;
    
}
.fliptext {
    line-height: 28px;
    padding-top: 15px;
    margin: 10px;
}
.pin {
    position: absolute;
    top: 0px;   
    width: 20px;    
}
.pinl {
    left: 7px;
}
.pinr {
    left: 230px;
}
.pinnil, .pinnir {display:none;}
.seminarbanner h1 {font-size:22px;}

.verdeckt {display: none;}

}

</pre></body></html>