html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, input, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
textarea, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
main, article, aside, canvas, details, figcaption, figure, footer, header,
hgroup, menu, nav, section, summary{
  display: block;
}
html {
  line-height: 1.2;
}
/* entfernt Aufzählzeichen */
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
body{
  font-family: helvetica, arial, sans-serif;
  font-size: 100%;
  background: #FBFBEF;
  margin: 0;
}
h1{
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-top: 10px;
}
h2{
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 8px;
}
h3{
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 8px;
}
h4{
  padding-top: 10px;
  padding-bottom: 8px;
  font-weight: bold;
  }
p{
  padding-left: 5px;
}

#wrapper{
  max-width: 1040px;
  min-height: 100%;
  margin: 0 auto 0 auto;
}
.main{
  position: relative;
  top: 120px;
}

/**********/
/* header */
/*********/
header{
  height: 120px;
  background-color: rgb(128, 192, 240);

  position: fixed;
  max-width: 1040px;
  width: 100%;
  top: 0;
  z-index: 10;
  border-radius: 8px 8px 8px 8px;
}
header h1{
  padding: 20px 0px 0px 20px;
}
img.logo{
  height: 82px;
  width: 90px;
  float: right;
  background: transparent;
  padding-right: 20px;
  padding-top: 20px;
}

/**************/
/* Navigation */
/*************/
nav {
  height: 30px;
  padding-top: 5px;
  position: fixed;
  top: 60px;
  margin-left: 10px;
  z-index: 20;
  background: transparent;
}
nav li{
  float: left;
  padding:0 3px;
}
/* entfernt underline des Links */
nav li a {
  text-decoration: none;
  display: inline-block;
  margin: 5px 0px 5px 0px;
  border-radius: 8px 8px 8px 8px;
  padding: 8px 5px;
  text-transform: uppercase;
  background-color: rgb(30, 45, 67);
}
nav li a:link, nav li a:visited {
  color: #FFFFFF;
}
/* Link mit Focus aber nicht aktiv unterstreichen */
nav li a:link:hover, nav li a:visited:hover {
  text-decoration: underline;
}
/* Link aktiv einfärben */
nav li a.aktiv{
  color: #000000;
  background-color: rgb(255, 255, 255);
}
/*  Checkbox und Hamburger ausblenden */
input.toggle,
label.toggle {
    display: none;
}
/* Formatierung des Hamburgers */
label.toggle {
    font-weight: 900;
    font-size: 1.2em;
    padding: 0px 20px;
}
a.zurueckbtn {
  position: fixed;
  top: 60px;
  z-index: 20;
  text-decoration: none;
  text-transform: uppercase;
  margin: 10px 0px 0px 20px;
  padding: 8px 5px;
  border-radius: 8px 8px 8px 8px;
  background-color: rgb(128, 192, 240);
  color: #000000;
}

/**********/
/* footer */
/**********/

footer{
  height: 35px;
  background-color: rgb(128, 192, 240);
  clear: both;
  padding-top: 10px;
  text-align: center;
  display: grid;
  margin-top: 6px;
  border-radius: 8px 8px 8px 8px;
}

/**********************/
/* Spaltendarstellung */
/*********************/

.columns {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	}
.column {
	flex: 1;
  box-shadow: -5px 5px 15px 0px #BABABA;
  margin: 5px;
  padding: 10px;
	&:first-child { margin-left: 0; }
	&:last-child { margin-right: 0; }
}
.column li{
  list-style: circle;
  margin-left: 25px;
  margin-bottom: 10px;
}

/****************************/
/* Accordion Darstellung    */
/****************************/

.accordion {
  width: 100%;
  margin: auto;
}
.accordion .panel {
  margin: auto;
  height: 0;
  overflow: auto;
  line-height: 28px;
  padding: 0 20px;
  box-sizing: border-box;
  transition: 0.5s;
}
.accordion .acclabel {
  cursor: pointer;
  background-image: linear-gradient(to right, #80C0F0, #FFFFFF);
  display: block;
  padding: 15px 0px 15px 20px;
  width: 100%;
  box-sizing: border-box;
  border-radius: 8px 8px 8px 8px;
}
.acclabel{
  text-transform: uppercase;
}
/* blendet Radiobutton aus */
.accordion input{
  display: none;
}
/* Verändert Farbe des aktuellen Panels */
.accordion input:checked+label {
  color: #FFFFFF;
  background-image: linear-gradient(to right, #1E2D43, #FFFFFF);
}
/* Verändert Farbe des aktuellen Panels */
.accordion input:focus {
  text-decoration: underline;
}
/* Schliesst vorheriges Panel langsam */
.accordion input:checked+label:before {
  transition: 0.5s;
}
/* öffnet gewwähltes Panel */
.accordion input:checked~.panel {
  height: auto;
  padding: 20px;
  transition: 0.5s;
}
/* Darstellung Pseudoelement mit +/- links im Label Element */
.accordion label.acclabel::after { content: " + "; color: black; font-size: 22px; font-weight: bold; float: right; margin-right: 30px}
.accordion input:checked+label.acclabel::after { content: "  "}

/****************************/
/* Tabellen Darstellung     */
/****************************/

.tabvolley table, th, td {
   height: 20px;
   padding: 5px 15px;
}
.tabvolley table{
  margin: auto;
}
.tabvolley td.colicon{
  vertical-align: top;
}
.tabvolley th {
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background-color: rgb(31,134,197);
}
.tabvolley tr:nth-child(even) {
    background-color: rgb(130,195,235);
}
.tabvolley div.restab{
  style="overflow-x: auto;"
  }
.tabvolley td.colcenter {
  text-align: center;
  font-weight: bold;
}

/********/
/* Home */
/********/

img.home{
  height: 200px;
  width: 300px;
  padding-left: 10px;
  align-items: center;
}

/****************/
/* Turnen       */
/***************/

#maphalle{
  align-content: center;
  height: 300px;
  width: 400px;
}

/****************/
/* Programm     */
/***************/

.filteredtable tbody tr{
    display:none;
    overflow-x: scroll;
}

#class1.tablefilter:checked ~ table tbody tr.class1,
#class2.tablefilter:checked ~ table tbody tr.class2,
#class3.tablefilter:checked ~ table tbody tr.class3,
#class4.tablefilter:checked ~ table tbody tr.class4 {
    display:table-row;
}

label.proglabel{
  display: inline-block;
  padding: 8px 3px 8px 0px;
  font-size: 14px;
  text-transform: uppercase;
}
.tablefilter {
    margin: 20px 0px 20px 15px;
}
.tablefilter:focus + label{
}
.tablefilter:checked + label{
}
.filterCol{
  display: none;
}

/****************/
/* Berichte    */
/***************/

h2.h2Bildergalerie{
  margin-left: 20px;
}

#minigalerie {
  padding: 20px;
}

#minigalerie a {
  display: inline-flex;
  padding: 3px 3px;
  vertical-align: middle;
}

#minigalerie img{
  transition: 1s;
  -moz-transition: 1s;
  -o-transition: 1s;
  -webkit-transition: 1s;
}

#minigalerie img:target {
  width: 480px;
  height: 320px;
  padding: 10px  10px 10px 0px;
}

/****************/
/* Über uns     */
/***************/

/* Kontaktseite */

.kontaktformular fieldset,
.kontaktformular legend {
  border: 1px solid #BABABA;
  border-right: 2px solid #BABABA;
  border-bottom: 2px solid #BABABA;
  border-radius: 10px;
}

.kontaktformular legend {
  padding: 5px 25px 5px 5px;
  background-color: rgb(128,192,240);
  color: #000000;
}

.kontaktformular fieldset {
  width: 500px;
  padding: 15px;
}

.kontaktformular label{
  float: left;
  display: block;
  width: 100px;
  margin: 1px;
  text-align: right;
  clear: both;
}

.kontaktformular input,
.kontaktformular textarea {
  float: left;
  display: block;
  width: 350px;
  margin: 3px;
  padding: 5px;
  border: 1px solid #BABABA;
}

.kontaktformular textarea{
  height: 150px;
}

.kontaktformular input:focus,
.kontaktformular input:hover,
.kontaktformular textarea:focus,
.kontaktformular textarea:hover {
  background-color: #F2F2F2;
  border: 2px solid #BABABA;
  outline: none;
}

.kontaktformular input[type="submit"],
.kontaktformular input[type="reset"] {
  width: auto;
  margin: 12px 6px 5px 5px;
  background-color: rgb(130,195,235);
  border-radius: 8px 8px 8px 8px;
  padding: 8px;
  border-style: none;
  border-width: 3px;
  text-decoration: none;
}
.error{
  color: rgb(197, 31, 51);
  text-decoration: underline;
  padding-left: 110px;
  float: left;
}
p.pformDanke {
  margin-left: 20px;
  font-style: italic;
}

li.links {
  list-style-type: none;
  padding-left: 40px;
  margin-left: 25px;
  background-image:url('../img/icon_link.png');
  background-repeat:no-repeat;
  background-position:left center;
  color: rgb(128,192,240);
}

/****************/
/* Slider Home   */
/***************/

.gallery {
  position: relative;
}
/* Bilder werden übereinandergelegt */
.gallery figure {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
/* nachfolgende Elemente nicht verdecken */
.gallery figure:last-of-type {
  position: relative;
}

.gallery figcaption {
  position: absolute;
  left: 1em;
  bottom: 0.5em;
/* Caption wird über Bild gelegt */
  z-index: 2;
}
/* Taktung der Animation - alle 5sec */
.gallery figure {
  animation-name: wechseln;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}
.gallery figure:nth-of-type(2) {
  animation-delay: 5s;
  opacity: 0;
}
.gallery figure:nth-of-type(3) {
  animation-delay: 10s;
  opacity: 0;
}
/* Animationsschritte */
@keyframes wechseln {
    0% {opacity: 0;}
   20% {opacity: 1;}
   40% {opacity: 1;}
   60% {opacity: 0;}
  100% {opacity: 0;}
}

/*********************/
/* responsive design */
/********************/

@media only screen and (max-width: 640px) {
h1{
  font-size: 22px;
}
h2{
  font-size: 16px;
}
h3{
  font-size: 14px;
}
nav {
  display: none;
  height: 210px;
  margin-left: 0px;
  margin-top: 45px;
  background-color: rgb(128, 192, 240);
  border-radius: 8px 8px 8px 8px;
}
input.toggle, .toggle span {display: none}
input[type=checkbox]:checked ~ nav, label.toggle
  {display: block;
   position: fixed;
   top: 75px;
   cursor: pointer;
   z-index: 10;
}
nav li {
  float: none;
}
nav li:hover ul {
  display: block;
  position: relative;
}
nav li ul {
  display: block;
}
nav li ul li {
  margin-left: 20px;
}
nav li a {
  display: block;
  margin-left: 5px;
}

img.lage{
  height: 240px;
  width: 320px;
}

.columns .column {
  flex-basis: 100%;
  margin: 0 0 5px 0;
}

#minigalerie a {
  display: grid;
  vertical-align: middle;
}

#minigalerie img:target {
  width: 320px;
  height: 210px;
}

/*Padding reduzieren*/
.tabvolley table, th, td {
   padding: 5px;
}
.tablefilter{
  margin-left: 5px;
}
/*Spalten ausblenden*/
.medianondisplay{
  display: none;
}

/* Breite Eingabefelder reduzieren*/
.kontaktformular fieldset {
  width: 300px;
}
.kontaktformular input,
.kontaktformular textarea {
    width: 200px;
}
.kontaktformular label{
  text-align: left;
  clear: both;
}
.error{
  padding-left: 0px;
}

/* @media end */
}
