<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">


/* = = = = = = = = = = = = = = = = = datei boxfenster.css = = = = = = = = = = = = = = = = = = = = = = = = = */


/* -------------------------------------- */
/* diese datei enthält  die BOX-FENSTER mit box-fenster-öffnen/schliessen-funktionen */
/* -------------------------------------- */





/* ############################################################ */
/* INFO-FENSTER */
/* ############################################################ */

/* - - - - - INFOFENSTER FORMATIERUNG - - - - - */

.schalter  {position:relative; }

#boxfenster-primus1 ,
#boxfenster-primus2 ,
#boxfenster-primus3 {display:block;
font-size:15px;
position:fixed;
top:0;
left:0;
overflow:auto;
box-shadow: 0 0 1px black;
text-align:left;
font-size:1.7rem;
line-height:2.5rem;
height:100vh;
width:100vw;
margin-top:-260vh;
overflow:hidden;
}


.boxinhalt {display:block;overflow:auto;position:relative;
background:#7B9999;
color:#E8EEEE;
height:100%;
padding:7rem 2.5rem 2rem 2.5rem ;
margin:0;
}

.boxinhalt    h1, .boxinhalt   h2, .boxinhalt   h3  {
background:#7B9999;
color:#fff;
}

h2:after  {
border-top: 4px solid #E8EEEE ;
}

.boxinhalt a {
background:#7B9999;
color:#fff;
}


/* - - - oeffnen-schalter für box-fenster -  - - - */

/* öffnen-schalter für box-fenster  formatierung */
.schalter label.button-open  {display:inline-block;
position:relative;
z-index:3;
padding:1rem 0;
cursor:pointer;
}


/* - - - schließen-schalter für box-fenster -  - - - */

.schalter label.button-close {display:table;
position: absolute;
top:1rem;right:0%;
z-index:3;
cursor:pointer;
background:transparent;
text-align:center;
width:100%;vertical-align:middle;
}


/* - - - icons  -  - - - */

.schalter  .fas ,
.schalter  .fab ,
.schalter  .far  {display:table-cell;vertical-align:middle;
color:#fff;
margin:0rem;
padding: 0;
font-size:4rem;
width:5rem;
height:5rem;
line-height:5rem;
border-radius:100%;
}

.schalter .fas:hover ,
.schalter .fab:hover ,
.schalter .far:hover   {
color:#ffeecd;
}


/* - - - toggle-funkton mit CHECKED- - - */
/* schaltet boxfenster ein/aus , schaltet hintergrund bei boxfenster halbtransparent (ab 960px sichtbar)*/


input[type=checkbox]{
display: none;
}



/*  fenster primus1  */
input#open-info-primus1:checked ~ #boxfenster-primus1  {
z-index:4;
margin:0;
background:rgba(0,0,0,.6);
}

/*  fenster primus2 */
input#open-info-primus2:checked ~ #boxfenster-primus2  {
z-index:4;
margin:0;
background:rgba(0,0,0,.6);
}

/*  fenster primus3  */
input#open-info-primus3:checked ~ #boxfenster-primus3  {
z-index:4;
margin:0;
background:rgba(0,0,0,.6);
}






/* ############################################################ */
/* M E D I A   Q U E R I E S - RESPONSIVE-BILDSCHIRMABFRAGEN*/
/* ############################################################ */


/* ==================================== ab 640 pixel ================================== */

@media (min-width: 640px) {

/* fenster-schliessen-button wird neu positioniert */
.schalter label.button-close {top:2rem;right:3rem; width:auto; }

.boxinhalt {padding:2rem 2.5rem 2rem 2.5rem ; }


}


/* ==================================== ab 960 pixel ================================== */
@media (min-width: 960px) {

.boxinhalt {
width:80rem;
height:84vh;margin:0 auto;
margin-top:8vh;
margin-bottom:8vh;
}

}


/* = = = = = = = = = = = = = = = = = = = = = Code Ende = = = = = = = = = = = = = = = = = = = = = */</pre></body></html>