@charset "UTF-8";
/* sattes grün */
/* gold */
/*nur im Moment des Klickens */
html {
  height: 100%;
}

body {
  background-color: white;
  background-size: cover;
  background-attachment: fixed;
  font-family: "Ubuntu Sans", sans-serif;
  color: black;
  font-size: 16px;
  line-height: 25.6px;
  height: 100%;
  overflow-x: hidden;
  align-content: center;
  text-align: center;
}

main {
  display: flex;
  width: 100%;
  justify-content: center;
}

a {
  font-weight: 600;
  /*	color: vorlagen.$a-color;*/
}

a:link {
  font-weight: 600;
  /*	color: vorlagen.$a-color;*/
  text-decoration: underline;
  text-underline-offset: 4px;
}

/*
a:visited {
	text-decoration: none;
	color: violet;
}
*/
a:focus {
  color: darkred;
  text-decoration: unset;
  background-color: rgba(255, 215, 0, 0.2);
}

a:hover {
  text-decoration: none;
  color: darkred;
  background-color: rgba(255, 215, 0, 0.2);
}

a:active {
  text-decoration: none;
  color: darkred;
  font-weight: 600;
}

article a {
  text-wrap-mode: nowrap;
  /*verbesserung?: mit dem unten wird auch white space erhalten, deshalb verschiebung nach rechts und unten, bei hover und focus mit background-farbe verschiebt sich backgroundfarbe - andere möglichkeit: whitespace löschen? aber wo ist der ?
  white-space: pre; /*kein Umbruch innerhalb des Hyperlinks, wenn im Article (also alle außer Footer und Menü ) pre: nur bei neuem Zeilenanfang und nach <br>*/
}

/*
a.extern::before {
	content: "\27A1 ";
}
*/
/*
.hauptmulti {display: grid;}
//hauptmulti muss am ende nach def. von gitter-kindern noch mal stehen

.multiflex {
	grid-area: multi;
	align-self: center;
}
.flexfuss {grid-area: fuss;}

.hauptmulti {
  display: grid;
  grid-template-areas:
	"multi"
	"fuss";
}
//ENDE HAUPTMULTI-GERÜST
*/
*.multiflex {
  align-items: center;
}

.multiflex {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center; /*main-axis = waagrecht */
  align-items: start; /*cross-axis = senkrecht */
  align-content: space-around;
}

section.multikasten {
  border: 1px ridge darkgreen;
  border-radius: 5px;
  margin: 20px 25px 20px 25px;
  flex: 250px;
  max-width: 400px;
}

section.multikasten div {
  padding: 10px;
}

section.multikasten p {
  text-align: center;
  font-size: 14.8px;
  line-height: 23.808px;
  padding: 5px 0;
  margin: 0;
}

section.multikasten h1,
section.multikasten h2,
section.multikasten h3,
section.multikasten h4 {
  line-height: 1.1;
  padding-bottom: 0;
  margin-bottom: 2px;
  text-align: center;
}

.startflex {
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center; /*main-axis = waagrecht */
  align-items: start; /*cross-axis = senkrecht */
  /* align-items: stretch; -> alle boxen hätten gleiche lhöhe wie die höchste. Ist auch default, also wenn gar kein align-items deklariert. */
  align-content: space-around;
  border: 0;
}

section.startzeile {
  width: 100%;
}

section.startkasten {
  padding: 10px;
  flex: 150px;
  max-width: 200px;
  display: flex;
  margin-bottom: 100px; /*sonst kann man die untertitel nicht lesen*/
  border: 0px;
}

section.startkasten a {
  font-family: "Ubuntu Condensed", sans-serif;
  font-size: 18.4px;
  height: 150px;
  line-height: 29.44px;
  padding: 20px 0;
  text-decoration: none;
}
section.startkasten a:focus {
  color: darkred;
  /*	background-color definiert in vorlagen */
}
section.startkasten a:hover {
  color: #8b0000; /*darkred*/
  /*	background-color definiert in vorlagen */
  height: 160px;
  padding: 10px 0;
}

.starttext {
  text-align: center;
  width: 100%;
}
.starttext li {
  display: inline;
}

.simplekasten {
  max-width: 780px;
}

/*
//alles mittig bei article class="simple" in defaultsimple
h1.simple,
h2.simple,
h3.simple,
h4.simple,
p.simple {
	text-align: center;
}
*/
.low {
  margin-bottom: -10px;
}

hgroup.solokopf {
  grid-area: kopf;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  flex-wrap: nowrap;
}

.nebenpic {
  margin: 30px 10px;
  width: fit-content; /* min-content geht nicht, dann umbruch in h1 -> soll nur wenn nötig umbrechen.*/
}

.solotext1 {
  grid-area: text1;
}

.solotext2 {
  grid-area: text2;
}

.solotext3 {
  grid-area: text3;
}

.solotext4 {
  grid-area: text4;
}

.solotext5 {
  grid-area: text5;
}

.solobild1 {
  grid-area: bild1;
}

.solobild2 {
  grid-area: bild2;
}

.solobild3 {
  grid-area: bild3;
}

.solobild4 {
  grid-area: bild4;
}

.solobild5 {
  grid-area: bild5;
}

.rechtslinksgitter {
  display: grid;
  gap: 0px;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "kopf 	kopf" "text1 	bild1" "bild2 	text2" "text3 	bild3" "bild4 	text4" "text5 	bild5";
  grid-auto-flow: row;
  justify-content: center; /*waagrecht weil autoflow row ist.*/
  margin-bottom: 20px; /*soll weißen Rand zw. bilderbackground und footer machen */
  align-items: center; /*senkrecht, weil autoflow row ist.*/
  align-content: space-evenly;
}

.rechtslinksgitter p {
  text-align: left; /* vorher: justify; */
}

.rechtslinksgitter div {
  min-width: 200px;
  max-width: 100%;
  border-radius: 0px; /*rundung: 5px */
  margin: 0px;
  padding: 5px 40px;
  background-color: white;
  /*	border-radius: 15px;
  	margin: 10px 15px 10px 15px;
  	padding: 10px;
  	background-color: #ffffff;*/
}

/*
.rechtslinksgitter div:nth-of-type(1n+3) {
	background-color: vorlagen.$bg-pics;
}
.rechtslinksgitter section:last-child {}
*/
.rechtslinksgitter section {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.rechtslinksgitter section img src:empty {
  display: none;
  border-style: none;
  border-width: 0;
}

.startfarben div {
  background-color: white;
  border: 0px ridge darkgreen; /*grünerRand: 0px*/
}

.wegefarben div {
  background-color: white;
}
.wegefarben div a {
  color: darkgreen;
}

.wegefarbenrand div {
  border: 2px ridge darkgreen; /*grünerRand: */
}

.wegefarben article a,
.wegefarben h1,
.wegefarben h2 {
  color: darkgreen;
}

.suvifarben div {
  background-color: white;
  border: 0px ridge darkred; /*roterRand*/
}
.suvifarben div a {
  color: rgb(117, 2, 2);
}

.suvifarbenrand div {
  border: 2px ridge darkred; /*roterRand*/
}

.suvifarben article a {
  color: rgb(117, 2, 2);
}

.suvifarben h1,
.suvifarben h2 {
  color: rgb(117, 2, 2);
  font-weight: bold;
}

.suvikasten {
  max-width: 850px;
}

.keinrand {
  border: 0px;
}

div.keinrand {
  border: none;
}

.themabild {
  max-height: 400px;
  max-width: 80%;
  text-align: center;
}

/*
.rechtslinksgitter div a {
	font-weight: 400;
	color: darkgreen;
	text-decoration: underline;
}
.rechtslinksgitter div a:link {
	font-weight: 400;
	color: darkgreen;
	text-decoration: underline;
}
.rechtslinksgitter div a:focus {
	color: darkred;
}
.rechtslinksgitter div a:hover {
	text-decoration: none;
	color: darkred;
	font-weight: bold;
}
*/
.solokasten {
  border: 1px ridge darkgreen;
  border-radius: 0px; /*rundung: 5px */
  margin: 0px;
  padding: 10px;
}

.menorange a {
  color: darkred;
}

.menorange a:hover {
  color: gold;
}

.flexfuss {
  background-color: lightgrey;
  grid-template-columns: 1fr 1fr;
  padding: 10px 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

footer {
  font-size: 12.8px;
  line-height: 76.8px;
  font-weight: 400;
  color: black;
}

footer ul li {
  list-style: none;
  margin: 0 20px;
  display: block;
  padding: 0px 0px;
}

footer a {
  padding: 20px 10px;
  text-transform: none;
}

footer a:link {
  text-decoration: none;
  color: black;
}

footer a:active {
  text-decoration: none;
}

footer a:visited {
  text-decoration: underline;
  color: darkgreen;
}

footer a:hover {
  text-decoration: underline overline;
  color: darkred;
  background-color: #e2c877;
}

footer a:target {
  text-decoration: underline overline;
  color: darkred;
  background-color: #e2c877;
}

.suvifooter {
  color: rgb(117, 2, 2);
}

.suvifooter a:link {
  color: rgb(117, 2, 2);
}

.inverted {
  color: white;
  background-color: darkgreen;
  padding: 8px 0;
  width: 100%;
  font-size: 12.8px;
  font-style: italic;
}

.sprung {
  visibility: hidden;
  height: 100px !important;
  position: absolute;
  margin: -100px;
}

h1.titelmini {
  font-weight: 600;
  font-size: 28.8px;
  line-height: 25.6px;
  color: rgb(52, 131, 48);
  text-align: left;
  width: 100%;
}

h1 {
  font-weight: 800;
  font-size: 44.8px;
  line-height: 40.96px;
  color: rgb(52, 131, 48);
  width: 100%;
  padding-bottom: 3px;
}

h2 {
  /*	text-transform: uppercase; */
  font-weight: 600;
  color: black; /*#2d6e29 grün wie menü */
  font-size: 24px;
  line-height: 25.6px;
}

.aktuell h2 {
  line-height: 2rem; /*muss so groß wenn icons daneben sind--nur inaktuelles.html?*/
}

h3 {
  font-weight: 600;
  font-size: 20.8px;
  line-height: 28.16px;
}

h4 {
  font-weight: 600;
  font-size: 19.2px;
  line-height: 20.48px;
  padding-left: 5px;
}

hgroup {
  font-weight: 600;
  text-align: center;
}
hgroup a {
  text-decoration: none;
}

.flex-zentriert {
  display: flex;
  flex: content;
  text-align: center;
  align-items: center;
  align-self: center;
  justify-content: center;
  align-content: center;
}

.zentriert {
  text-align: center;
}

.textleft {
  text-align: left;
}

.fett {
  font-weight: bold;
}

.miniprint {
  font-size: 12.8px;
}

.mittelprint {
  font-size: 14.4px;
}

.maxiprint {
  font-size: 17.6px;
}

.zeiten {
  font-style: oblique;
} /* in wspecialshort */
.leicht {
  font-weight: 200;
}

.runter200 {
  height: 200px;
} /* in defaultstart */
.nulldrueber {
  margin-top: 0;
  padding-top: 0;
}

.drueber30 {
  margin-top: 30px;
}

.kein-umbruch {
  text-wrap-mode: nowrap;
}

.aenderungsdatum {
  visibility: hidden;
}

hr {
  color: green;
  height: 2px;
  width: 100%;
  text-align: center;
  margin: 20px 0;
  /*	visibility: hidden;*/
}

.schwarz {
  color: black;
  font-weight: 400;
  font-size: 0.8rem;
}

.blauselbst {
  color: darkblue;
  font-weight: 200;
  font-size: 0.9rem;
}

.rot {
  font-size: 1rem;
  color: darkred;
  font-weight: 600;
}

.partner {
  font-size: 1rem;
  color: mediumblue;
  font-weight: 600;
}

.dates {
  color: darkblue;
  font-weight: 600;
}

.blau {
  color: mediumblue;
  font-weight: 600;
}

.minipic {
  height: 70px;
  float: left;
}

.multi-icon {
  height: 60px;
  float: left;
}

.minipic a {
  background-color: white;
}

.minipic a:hover {
  background-color: gold;
  height: 55px;
}

img {
  max-height: 100%;
}

.micropic {
  height: 30px;
  top: -200px;
  margin: 5px 10px 5px 2px;
  float: left;
}

.netzfreunde {
  width: 150px;
  margin: 15px 10px 15px 10px;
  text-align: center;
  vertical-align: top;
  position: static;
  float: left;
}

.oben {
  margin-top: 100px; /*sonst vom menü abgeschnitten*/
  height: 180px;
  width: 100%;
  padding: 0;
  overflow: hidden;
  height: min-content;
  width: 100%;
  display: flex;
  justify-items: center;
}

.fit {
  object-fit: cover;
  width: 100%;
}

.fit > img {
  justify-self: center;
  z-index: 1;
}

/*
#drin, #drunten, #droben, #drechts {width: 100%;}
#drin {object-position: center center;}
#drunten {object-position: center bottom;}
#droben {object-position: center top;}
#drechts {object-position: left center;}
*/
.lizenzliste li {
  list-style: none;
  text-align: left;
  padding: 0 0 0 45%;
  line-height: 60px;
}

.lizenzname {
  padding-left: 20px;
}

.lizenzpic {
  height: 50px;
  float: left;
}

.terminliste li {
  text-align: left;
  padding: 0 0 0 30%;
  line-height: 33.28px;
  list-style-type: circle;
  list-style-position: inside;
}

.datum {
  color: blue;
  font-weight: 600;
}

.preisliste li {
  text-align: left;
  padding: 10px 0 5px 27%;
  list-style-type: none;
}

.loadliste li {
  list-style-type: circle;
  list-style-position: inside;
  text-align: left;
  padding: 10px 0;
}

.coachingliste {
  text-align: left;
  padding: 0 0 0 0;
  margin-left: 0px;
  line-height: 33.28px;
  list-style-type: circle;
  list-style-position: inside;
}

.suviliste li {
  text-align: left;
  padding: 0 0 0 20%;
  line-height: 33.28px;
  list-style-type: circle;
  list-style-position: inside;
}

.waagrecht-liste {
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.waagrecht-liste li {
  display: inline;
}

.aktionen {
  list-style-type: circle;
  list-style-position: inside;
  padding: 0 0 0 25%;
  text-align: left;
  line-height: 2em;
}

.angebot {
  list-style-type: circle;
  list-style-position: inside;
  padding: 0 0 0 5px;
  text-align: left;
  font-size: 12.8px;
}

ul {
  padding: 0;
  list-style: none;
}

ul.mit-circle li {
  list-style-type: circle;
  list-style-position: inside;
  padding: 0 30px;
}

ul li {
  padding: 4px 0 0 4px;
}

ul li ul {
  padding-left: 4px;
}

ol.preisliste {
  padding-left: 10px;
  list-style: none;
}

ol.preisliste li {
  padding: 4px 0 0 4px;
}

ol.preisliste li ul {
  padding-left: 4px;
}

.mittelbox {
  display: flex;
  justify-content: center;
  align-content: start;
}

.ablauf ol {
  list-style: none;
  margin-bottom: 20px;
  margin-left: 8%;
  text-align: left;
}

.ablauf ol li {
  padding: 0 0 0 10px;
  color: black;
  font-weight: 600;
  line-height: 60px;
}

.ablauf ol li a {
  text-decoration: none;
  /*padding-left: 10px;*/
  font-size: 1.1rem;
  color: darkblue;
}

.ablauf a:hover {
  text-decoration: underline overline;
  color: cornflowerblue;
}

ol.ablauf a:active {
  text-decoration: none;
  color: green;
}

ol.ablauf a:visited {
  text-decoration: none;
  color: green;
}

table {
  border-collapse: collapse;
  border: 2px solid rgb(140, 140, 140);
  align-self: center;
  text-align: left;
  width: 90%;
}

caption {
  caption-side: top;
  font-weight: 600;
}

tr {
  line-height: 24.32px;
}

td {
  border: 5px solid rgb(255, 255, 255); /*weiß*/
  padding: 5px 10px;
}

tr.seetage-odd {
  line-height: 30.72px;
}

td.seetage-odd {
  padding: 2px 10px;
}

td a {
  color: black;
}

.winter {
  text-align: center;
  background-color: rgba(228, 240, 245, 0.1);
  line-height: 25.6px;
}

tbody.winter-odd > tr:nth-of-type(even),
tbody.firma-odd > tr:nth-of-type(even),
tbody.firma-even > tr:nth-of-type(odd),
tbody.seetage-odd > tr:nth-of-type(even) {
  background-color: rgb(245, 245, 245); /* hellgrau */
  font-weight: 400;
}

tbody.firma-odd > tr:nth-of-type(odd),
tbody.firma-even > tr:nth-of-type(even) {
  background-color: rgba(78, 238, 78, 0.273); /*hellgrün */
  font-weight: 600;
}

tbody.seetage-odd > tr:nth-of-type(odd) {
  background-color: rgba(80, 217, 238, 0.387); /*hellblau */
  font-weight: 600;
  color: black;
}
tbody.seetage-odd > tr:nth-of-type(odd) a {
  text-decoration: underline;
  color: darkblue;
  font-weight: 600;
}
tbody.seetage-odd > tr:nth-of-type(odd) a:hover {
  color: darkred;
  background-color: white;
  padding: 4px;
  padding-left: 0;
}

tbody.winter-odd > tr:nth-of-type(odd) {
  background-color: rgba(33, 131, 222, 0.2); /*himmelblau */
  font-weight: 600;
  color: black;
}
tbody.winter-odd > tr:nth-of-type(odd) a {
  text-decoration: underline;
  color: darkblue;
  font-weight: 600;
}
tbody.winter-odd > tr:nth-of-type(odd) a:hover {
  color: darkred;
  background-color: white;
}

.ablaufpic {
  margin: 2px auto 2px 6px;
  align-self: center;
}

/*
thead,
tfoot {background-color: rgb(228 240 245);}
td:last-of-type {text-align: center;}
tfoot th {text-align: right;}
tfoot td {font-weight: bold;}
*/
/*
ol li ol.winter {
	list-style: none;
  margin-bottom: 20px;
	margin-left: 8%;
}
ol li ol.winter li {
	/*padding-left: 10px;
	color: darkblue;
	font-weight: 400;
	line-height: $line-height * 1.3;
}
ol li ol.winter li a:link {
	text-decoration: underline;
	/*padding-left: 10px;
	font-size: 1.1rem;
	color: darkred;
}

ol li ol.winter a:focus {
	color: cornflowerblue;
}
ol li ol.winter a:hover {
	text-decoration: underline,overline;
	color: cornflowerblue;
}
ol li ol.winter a:active {
	text-decoration: none;
	color: green;
}
.action {
	background-color:  rgb(100, 230, 100, 2%);/*hellgrün, 0.02 alpha
	font-weight: 200;
}
.pause {
	background-color:  rgb(250, 210, 0, 2%); /*orange, 0.02 alpha
	font-weight: bolder;
}
*/
details > summary {
  padding: 2px 6px;
  width: 15em;
  background-color: #ddd;
  border: none;
  box-shadow: 3px 3px 4px black;
  cursor: pointer;
  align-self: center;
  margin: 30px 30%;
}

details > div {
  border-radius: 0 0 10px 10px;
  background-color: #ddd;
  padding: 2px 6px;
  margin: 0;
  box-shadow: 3px 3px 4px black;
}

details:open > summary {
  background-color: #ccf;
}

dt {
  font-weight: bold;
  line-height: 40px;
}

/*
dl,dd {
// font-size: 0.9rem;
}
*/
dd {
  margin-bottom: 1em;
}

@media (min-width: 1500px) {
  .rechtslinksgitter {
    justify-content: space-evenly;
  }
  .rechtslinksgitter div {
    max-width: 1500px;
  }
}
@media (max-width: 860px) {
  body {
    font-size: 14.4px;
  }
  .rechtslinksgitter {
    grid-template-columns: 1fr;
    grid-template-areas: "kopf" "text1" "bild1" "text2" "bild2" "text3" "bild3" "text4" "bild4" "text5" "bild5";
    align-items: stretch;
    justify-content: center;
    align-content: space-between;
    grid-auto-flow: row;
  }
  .rechtslinksgitter div {
    padding: 5px 5px;
  }
  section.multikasten {
    margin: 10px 2px;
  }
  section.multikasten div {
    padding: 3px;
  }
  /*wegweiser in obenleiste:*/
  .fit {
    object-fit: contain;
    object-position: center;
  }
  /* oben:margin-top: im bigscreen-modus geht der margin durch das nav hindurch, im mobile nicht, weil nav position: absolute; ist. Deshalb soll hier margin-top weg, sonst zu viel abstand zu nav)*/
  .oben {
    margin-top: 70px;
  }
  .fit > img {
    justify-self: center;
    z-index: 1;
  }
  .multikasten {
    min-width: 300px;
  }
  .minipic {
    display: none;
  }
  .micropic, .multi-icon, .solo-icon {
    display: none;
  }
  .lizenzliste li,
  .terminliste li,
  .loadliste li,
  .ablauf li,
  .mit-circle li {
    padding: 0 0 0 10%;
  }
  .preisliste li {
    padding: 10px 0 5px 5%;
  }
  .suviliste li,
  .coachingliste li {
    padding: 0 0 0 5%;
    line-height: 25.6px;
  }
}
@media (max-width: 320px) {
  body {
    font-size: 12.8px;
  }
  .rechtslinksgitter * {
    line-height: 23.808px;
    width: 100%;
    margin: 0;
    margin-left: 0;
    padding: 0;
    padding-left: 0;
    float: none;
  }
  .micropic, .multi-icon, .solo-icon {
    display: none;
  }
  .lizenzliste,
  .terminliste li,
  .preisliste,
  .loadliste,
  .ablauf,
  .suviliste,
  .coachingliste,
  .mit-circle {
    padding: unset;
  }
  .lizenzliste li,
  .terminliste li li,
  .preisliste li,
  .loadliste li,
  .ablauf li,
  .suviliste li,
  .coachingliste li,
  .mit-circle li {
    padding: unset;
  }
  .wegefarbenrand div,
  .suvifarbenrand div {
    border: 0px;
  }
}
.a11y-nav {
  position: absolute;
  top: -20em;
  width: 100%;
  z-index: 9;
}

.a11y-nav a {
  background-color: white;
  font-weight: 800;
  font-family: "Ubuntu Sans", sans-serif;
  left: 0;
  padding: 0.8rem;
  position: absolute;
  right: 0;
  text-align: center;
}

.a11y-nav a:focus,
.a11y-nav a:hover {
  color: darkblue;
  top: 19em;
}

/*
@media(max-width:768px){
.a11y-nav a{
//  padding: 1.125rem;
  }
}
*/
.plain {
  text-transform: lowercase;
}

.plain ul {
  display: flex;
  flex-wrap: nowrap;
  font-size: 20.8px;
  line-height: 33.28px;
  flex-direction: column;
  justify-items: start;
  align-content: space-around;
  margin-left: 20px;
}
.plain ul li {
  text-align: left;
  color: darkgreen;
  padding-left: 0px;
  list-style-type: circle;
  list-style-position: inside;
}
.plain ul li a {
  text-decoration: none;
  color: black;
  width: 100%;
  white-space: pre;
  padding: 10px 80% 10px 10px; /* das wird bei hover markiert !!*/
}
.plain ul li a:hover, .plain ul li a:focus {
  background-color: lightgrey;
}
.plain ul li ul li {
  font-size: 19.2px;
}

.plain h2 {
  text-transform: uppercase;
  text-align: left;
  color: darkgreen;
  padding-left: 5px;
}

nav ul li {
  display: block;
}
nav ul li:hover, nav ul li:focus-within {
  cursor: pointer;
}
nav ul li ul {
  position: absolute; /*  ACHTUNG veränderung zu original: position static!!?? */
  left: -60px;
  display: none;
}
nav ul li ul li {
  width: 100%;
}
nav ul li:hover > ul, nav ul li:focus-within > ul,
nav ul li ul:hover,
nav ul li ul:focus {
  display: block;
  z-index: 6;
  /* kein styling - color, padding etc, hier möglich */
}

@media (max-width: 860px) {
  nav ul,
  nav li {
    display: block;
  }
}
:root {
  --background-color: #ffffff;
  --text-hover: darkorange;
  --navbar-height: 50px;
}

nav * {
  font-family: "Ubuntu Condensed", "Ubuntu Sans", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.startlogotext {
  font-family: "Ubuntu Sans", sans-serif, Arial, Helvetica, sans-serif;
  font-size: 14.4px;
  text-decoration: none;
  position: fixed;
  z-index: 6;
}
.startlogotext a {
  text-decoration: none;
  color: white;
}
.startlogotext a:hover {
  color: gold;
}

.pos1 {
  left: 80px;
  top: -5px;
  padding: 1px 10px;
  font-weight: 800;
}

.pos1 a {
  font-weight: 800;
  font-size: 22px;
  color: gold;
}

.pos1 a:hover {
  margin: 2px 0;
}

.pos2 {
  left: 80px;
  top: 30px;
  padding: 1px 4px;
  font-weight: 400;
}

.pos2 a {
  font-weight: 400;
}

.pos2 a:hover {
  font-weight: 800;
}

.logo1 {
  height: 70px; /* height+top = .oben{height}!*/
  top: 6px;
  left: 2px;
  float: left;
  position: fixed;
  z-index: 7;
}

.logo2 {
  display: none;
  height: 70px; /* height+top = .oben{height}!*/
  top: 6px;
  left: 2px;
  float: left;
  position: fixed;
  z-index: 5;
}

.linksuvi {
  color: white;
  background-color: rgb(117, 2, 2);
}

.linkswege {
  color: white;
  background-color: darkgreen;
}

.wegecolor a {
  color: darkgreen;
  background-color: white;
}

.suvicolor a {
  color: rgb(117, 2, 2);
  background-color: white;
}

.hauptmenue {
  position: fixed;
  height: var(--navbar-height);
  top: 0px;
  vor: var(--background-color);
  z-index: 5;
  width: 100%;
  padding: 10px 0px 50px;
  display: flex;
  flex-direction: column; /* DAS führt dazu, dass das Menü an der rechten Seite ist. */
  justify-content: space-between;
  z-index: 4;
}

.hauptmenue > ul { /* nur das ul direkt nach nav -> >    */
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-end;
  margin-right: 20px;
  align-items: center;
  width: 82%;
  margin-left: 18%; /*width und margin-left verhindern, dass sich links menü und start-logos überschneiden*/
  list-style: none;
  background-color: var(--background-color);
}
.hauptmenue > ul > li {
  padding: 0 8px; /* lücke zwischen hauptebenen-links, wird nicht bei hover markiert. */
  text-align: center;
}

nav ul.navkasten {
  border: 1px ridge darkgreen;
  border-radius: 5px;
  margin: 2px;
  margin-left: 0;
  padding: 4px;
  height: min-content;
}

nav li { /* für alle li innerhalb nav, auch zweite Ebene)*/
  height: 100%;
  position: relative;
  text-wrap: nowrap; /*kein Umbruch innerhalb des Menü-Begriffs*/
  text-decoration: none;
}

nav li:hover {
  color: darkorange;
  text-decoration: none;
}

nav ul a {
  height: 100%;
  width: 100%;
  display: flex;
  /*   justify-content: center;  ->wenn nicht an, dann untermenü-items links ausgerichtet */
  align-items: center;
  text-decoration: none;
}

nav ul a:link,
nav ul a:visited,
nav ul a:active {
  text-decoration: none;
}

.activity {
  text-align: left;
  font-size: 19.2px;
}
.activity::before {
  content: "∘";
  margin-left: 10px;
}

.eigenname {
  font-style: italic;
}

.selbst {
  font-weight: 600;
  color: rgb(16, 139, 3);
  text-decoration: none;
}

.suviselbst {
  color: rgb(219, 0, 0);
  font-weight: bold;
}

.no-unterstrich {
  text-decoration: none;
}

.dropdown {
  position: absolute;
  left: -80px;
  height: min-content;
  width: min-content;
  background-color: var(--background-color);
  flex-direction: column;
  justify-content: flext-start;
  align-self: start;
  text-align: left;
}

.dropdown a {
  padding: 4px;
  text-decoration: none;
  font-weight: 200;
  font-size: 0.95px;
}
.dropdown a:focus {
  display: block;
}
.dropdown a:hover {
  color: darkorange;
}

nav li:hover .dropdown {
  display: flex;
  z-index: 6;
}

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

.toggle_button {
  width: 30px;
  height: 30px; /* bei bg-image!!  */
  padding: 5px;
  background-color: var(--background-color);
  border-radius: 30px;
  position: absolute;
  top: 15px;
  left: 25px;
  display: none;
}

@media (max-width: 860px) {
  .toggle_button {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 20;
  }
  nav label {
    cursor: pointer;
    background: url(https://cdn2.iconfinder.com/data/icons/ios-tab-bar/25/Hamburger_Round-48.png) no-repeat center center;
    background-size: 25px;
    padding: 4px;
    z-index: 20;
  }
  #toggle_button {
    display: none;
  }
  #toggle_button:checked + label {
    background-image: url(https://cdn1.iconfinder.com/data/icons/feather-2/24/x-512.png);
    background-size: 28px;
  }
  nav * {
    font-size: 18px;
    line-height: 20.48px;
  }
  .hauptmenue {
    position: fixed;
    display: flex;
    align-items: start;
    justify-items: stretch;
    cursor: pointer;
    left: -250px;
    top: var(--navbar-height);
    height: 95%; /* on bigscreen: height: var(--navbar-height);  */
    width: 250px;
    margin-left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: unset; /*um bg-color weiss zu löschen, wie im bigscreen-mode*/
  }
  .hauptmenue ul {
    display: flex;
    width: 100%;
    position: static; /*auf bigscreen: fixed*/
    height: min-content;
    margin-bottom: 100px;
    top: var(--navbar-height);
    background-color: rgb(239, 237, 237);
    border-bottom: 1px ridge darkgreen;
  }
  input:checked ~ label {
    background-image: url(https://cdn1.iconfinder.com/data/icons/feather-2/24/x-64.png);
    z-index: 20;
  }
  #toggle_button:checked ~ .hauptmenue {
    left: 0;
  }
  nav li {
    height: min-content;
    width: 100%;
    padding: 0px 5px;
  }
  nav li a {
    padding: 0;
  }
  nav ul a {
    padding: 5px 0px;
    /*  transition: all 0.5s ease 0.1s;*/
  }
  .dropdown {
    position: static; /*on bigscreen: absolute*/
    width: 100%;
    justify-content: center;
    align-items: start;
    display: block;
    background-color: rgb(239, 237, 237);
  }
  .dropdown li {
    display: block;
    position: static;
    font-size: 12px;
    line-height: 20.48px;
  }
  .dropdown li a {
    width: 100%;
    text-decoration: none;
    font-weight: 400;
    padding-left: 0;
  }
  /*nur das gleiche wie im bigscreen..
    .startlogotext {
      font-family: vorlagen.$family, Arial, Helvetica, sans-serif;
      font-size: vorlagen.$middle-font;
      text-decoration: none;
      position: fixed;
      padding: 1px 4px 0 1px;
      font-weight: 600;
      z-index: 6;
    }*/
  .pos1 {
    left: unset;
    right: 2px;
    top: -5px;
  }
  .pos2 {
    left: unset;
    right: 2px;
    top: 25px;
  }
  .logo1 {
    height: 60px; /* height+top = .oben{height}!*/
    top: 6px;
    left: unset;
    position: absolute;
    z-index: 5;
  }
  .logo2 {
    display: none;
    height: 50px; /* height+top = .oben{height}!*/
    top: 6px;
    left: unset;
    position: absolute;
    z-index: 5;
  }
  /*als band oben:
    .startlogotext {
      padding: 15px;
      margin: 10px 0;
      z-index: 19;
    }
    */
}
/*
@use "wege/vorlagen";
@use "wege/wegespezial";
@use "wege/navigate";


vorher hab ich im zwischenschritt "wege.scss" gehabt, wo alles stand, was jetzt oben steht(ohne frontmatter-strichte), und hier in styles.scss stand nur @use "wege"
*/

/*# sourceMappingURL=styles.css.map */