/* Allgemeines, u.a. wie die Schrift im Inhalt aussieht */
:root {
  --primarycolor: #000;
  --secondarycolor: #000;
  --text-color: #535353;
  --text-color2: #bb88c0;
  --background-dark: #49709c;
  --background-middle: #eee;
  --background-middle2: #ddd;
  --background-light: #fff;
  --highlight-one: #bb88c0;
  --highlight-two: #e3c6e6;
  --boxshadow: 1px 1px 4px 0 rgba(0,0,0,.1);
  --boxshadow-strong: 1px 2px 4px 0 rgba(0,0,0,.3);
  
  --pastell: #dfc1e8;
  
  --fett: #edb67f;
  --dunkler: #89bcf0;
  --input-submit: #d86a86;
  --textarea-background: #f9efef;
  --textarea-border: #dea4b3; /* #c68282 */
}    /*F4EF86*/

@font-face {
    font-family: Raleway-Alternative;
    font-display: swap;
    src: url('../static/Raleway-Alternative.ttf')
} 

* {
  box-sizing: border-box;
  scrollbar-color: #636363 #3d3d3d;
  scrollbar-width: thin;
	font-family: 'Raleway-Alternative', sans-serif;
  letter-spacing: 0.2px;
  outline: none;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #3d3d3d; }
::-webkit-scrollbar-thumb { background: #636363; }
::-webkit-scrollbar-thumb:hover { background: #777; }

input[type=submit], button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}


body {
	color: var(--text-color);
	font-size: 0.875rem;
	text-align: left;
	/* text-shadow:1px 1px 0 rgb(222,221,221); */
	margin: 0px;
	border: 0px;
	padding: 0px;
	height: 100%;
	background: var(--background-middle);
}

#wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}


.bgbild {
    /*background-image: url('../images/bg1.jpg');*/
 	background-repeat: no-repeat;
	width: 100%;
	height: 70vh;
    background-size: contain;
    background-position: bottom left;
    bottom: 0;
    left: 0;
    position: fixed;
    z-index: -1;
	}

#content, footer {
    background: rgba(255,255,255,0.8);
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
}

footer {
    font-size: 0.8rem;
    padding-top: 0px;
    padding-bottom: 10px;
    margin-top: 5px;
    text-align: right;
    background: transparent;
  box-shadow: none;
}



p {
    /*text-align: justify;*/
    margin: 0;
    margin-bottom: 5px;
}

i,em {
    font-style: italic;
    color: #1d8cab;
    text-decoration: none;
}

s, strike {
    font-family: "tahoma", sans-serif;
    color: #1d8cab;}

u {
    font-family: "tahoma", sans-serif;
    color: #5f5f5f;
    border-bottom: 1px solid;
    border-color: #cc4bb7;
    text-decoration: none;}

b, strong {
    font-family: "tahoma", sans-serif;
    color: var(--highlight-one);
    text-decoration: none;}

		
img {		
    border: 0px;
    margin: 0px;
}
		
blockquote {
    width: 95%;
	margin: 20px 10px;
    background: rgba(255,255,255,0.5);
	box-shadow: var(--boxshadow);
    padding: 10px;
    border-left: 10px solid #ddd;
    font-family: Cambria, serif; /* Consolas */
    font-style: italic;
    letter-spacing: 1px;
    font-size: 1rem;
    color: var(--background-dark);
}
blockquote i {
    font-family: Cambria, serif; /* Consolas */
    font-size: 1rem;
    font-style: normal;
    color: var(--highlight-one);
}	

@media (min-width: 48em) {
   blockquote { width: 70%;}
}

    
h1 {
	  font-size: 1.2rem;
      font-family: "georgia", serif;
	  font-style: italic;
      text-align: center;
      color: #6699cc;
      margin: 0px 0px 5px 0px;
      padding: 5px 5px 5px 8px;
      //text-shadow:1px 1px 0 rgb(255,255,255);
      text-shadow:1px 1px 0 rgb(222,221,221);
      }
    
h2 {
	  font-size: 13px;
      font-family: "georgia", serif;
      font-style: italic;
      text-align: center;
      color: #edb67f;
      margin: 20px 0px 5px 0px;
      padding: 5px 5px 5px 8px;
      text-shadow:1px 1px 0 rgb(255,255,255); 
      }
      
h3 {
    font-size: 0.95rem;
    text-align: left;
    margin: 0;
    margin-bottom: 5px;
    //font-weight: 400;
    font-variant: small-caps;
    font-style: italic;
    //border-left: 10px solid rgba(237, 182, 127, 0.5); /* #edb67f */
    padding-left: 10px;
}
    

/*--- A Underline ---*/

a:link{color: var(--dunkler); letter-spacing: 1px;  text-decoration: none;}
a:visited {color: var(--dunkler); letter-spacing: 1px;  text-decoration: none;}
a:active{color:#6699cc; letter-spacing: 1px;  text-decoration: none;}
a:hover {color:#6699cc; letter-spacing: 1px;  text-decoration: none;}


#content a:link {
    position: relative;
    font-weight: 600;
}

#content a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--highlight-one);
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}

#content a:hover:before {
  visibility: visible;
  width: 100%;
}

/*---------------- TABLES ----------------*/

table {
    width:400px;
	margin-left: auto;
    margin-right: auto;
	margin-top: 10px;
	margin-bottom: 20px;
	border-radius: 10px;
	//-webkit-border-radius: 10px;
	//-moz-border-radius: 10px;
    //box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-align: left;
}

@media (max-width: 600px) {
   table { width: 100%;}
}

table tr {
    padding: 15px;
}

/*---------------- INPUT FELDER ----------------*/
textarea, select, input[type=text], input[type=password], input[type=email], input[type=number] {
	background: #fff;
	border: 1px #ddd solid;
	padding: 10px 5px;
    border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
    /* box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.19); */
    box-shadow: var(--boxshadow);
    width: 250px;
    font-family: 'Raleway-Alternative';
    
    margin: 3px 0;
}

textarea {
	height: 150px;
}

input[type=submit], button {
	background:  var(--dunkler);
	border: 0;
	margin-top:5px;
	margin-bottom:5px;
	padding: 10px;
	color: #fff;
    cursor: pointer;
    border-radius: 5px;
    font-weight: normal;
}

button a, button a:link, button a:visited, button a:active, button a:hover {
    color: #fff;
    font-weight: normal;
}

input[type=submit]:hover, button:hover {
	background: #73a9de;
}

input[type=submit]:active, button:active {
	background: #6699cc;
}

input[type=submit]:disabled, input[type=submit]:disabled:active, button:disabled, button:disabled:active {
    background: #999;
    cursor: not-allowed;
}

button > a::before {
    content: none;
}

.labl >  input { /* HIDE RADIO */
    visibility: hidden; /* Makes input not-clickable */
    position: absolute; /* Remove input from document flow */
}
.labl >  input + div{ /* DIV STYLES */
    cursor:pointer;
}
.labl >   input:checked + div { /* (RADIO CHECKED) DIV STYLES */
    /* box-shadow: 5px 10px #888888; */
    border-radius: 22px;
     box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.4);
}


/* ---------- TOOLTIP ---------- */

.csstooltip {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  color: #ff0000;
  cursor: crosshair;
}

.csstooltip span {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
  font-variant: none;
  font-size: 12px;
}

.csstooltip span::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.csstooltip:hover span {
  visibility: visible;
}

.fehlermeldung {
  cursor: help;
}

/* ------------------- UPDATES STARTSEITE ----------------------- */

.update {
    padding: 10px;
    display: flex;
    align-items: center;
    flex-wrap:wrap; 
}

.update > div {
    float: left;
    margin-right: 15px;
}

.websiteicon > img, .avatar {
    height: 80px;
    width: 80px;
}
.rest {
    width: calc(100% - 110px);
    min-width: 150px;
}

ul {
    margin: 10px 0;
}

ul li{
   list-style: none;
}

ul li::before {
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
    background-image: url('../images/icons/pixelperfect-close.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: -20px;
    margin-right: 10px;
    filter: invert(63%) sepia(7%) saturate(1730%) hue-rotate(247deg) brightness(94%) contrast(91%);
}


/* ---------- SPALTEN LAYOUT ---------- */

.col-1 {width: 8.33%;}
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}

.row::after {
  content: "";
  clear: both;
  display: table;
}

[class*="col-"] {
  float: left;
}

@media only screen and (max-width: 800px) {
    [class*="col-"] {
        width: 100%;
      }
}


/* ---------- ICONS ---------- */
  
.block {
    display: inline-block;
    width: 130px;
    height: auto;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10%;
    padding: 15px;
    text-align: center;
    margin: 5px;
}

.kreis {
    background-color: #6699cc;
    width: 90px;
    height: 90px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 50%;
    text-align: center;
    display:flex;
    justify-content:center;
    align-items:center;
    clear: both;
    margin-bottom: 10px;
}

.icon {
  width: 50px;
  height: 50px;
  overflow: hidden;
  //fill: currentColor;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  margin-bottom: -4px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100%;
}

.icon2 {
  position: relative;
  display: inline-block;
  width: 25px;
  height: 25px;
  overflow: hidden;
  fill: currentColor;
  margin-bottom: -4px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% {  transform: rotate(359deg); }
}
.spinner {
    animation: spin 2s linear infinite;
}
/* https://codepen.io/sosuke/pen/Pjoqqp */
.icon--red { filter: invert(17%) sepia(80%) saturate(5506%) hue-rotate(355deg) brightness(101%) contrast(79%);  /* #e52d27 */ }
.icon--green { filter: invert(79%) sepia(18%) saturate(5397%) hue-rotate(45deg) brightness(84%) contrast(76%);  /* #60b023 */ }
.icon--blue { filter: invert(53%) sepia(15%) saturate(2071%) hue-rotate(189deg) brightness(90%) contrast(92%);  /* #5d7cde */ }
.icon--yellow { filter: invert(93%) sepia(19%) saturate(2522%) hue-rotate(354deg) brightness(90%) contrast(93%);  /* #dec60d */ }
.icon--white { filter: invert(100%) sepia(1%) saturate(7340%) hue-rotate(260deg) brightness(121%) contrast(101%);  /* #fff */ }

.--orange { background-color: #edb67f; }
.--yellow { background-color: #f0e778; }
.--purple { background-color: #dbaddb; }
.--teal { background-color: #ace3c6; }
.--red { background-color: #d68989; }
.--pink { background-color: #d698b2; }
.--green { background-color: #b0c98d; } /* cde8ae */


.meter { 
	height: 5px;  /* Can be anything */
	position: relative;
	background: #ccc;
	margin-top: 5px;
	box-shadow: inset 0 -1px 1px rgba(255,255,255,0.3);
    width: 67%;
    margin: 0 auto;
    margin-top: 5%;
}
.meter > span {
  display: block;
  height: 5px;
  background: #e16969;
  box-shadow: 
    inset 0 2px 9px  rgba(255,255,255,0.3),
    inset 0 -2px 6px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
}


/* ---------- ALERT ---------- */

 /* The alert message box */
.alert, .alert2, .alert3 {
    padding: 20px;
    background-color: var(--highlight-two); /* #f44336; Red */
    color: #fff;
    margin-bottom: 15px;
}

.alert2 { background-color: #95c991; }
.alert3 { background-color: #cf3a3a; }

/* The close button */
.closebtn, .closebtn2, .closebtn3  {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn3, .closebtn:hover { color: #000; }
.closebtn3:hover { color: grey; } 

.alert i, .alert2 i, .alert3 i {
	color: var(--dunkler);
}
.alert b, .alert2 b, .alert3 b {
    color: var(--fett);
}
.alert u, .alert2 u, .alert3 u {
    color: #fff;
    border-color: var(--dunkler);
}

/* --------------------------------- RESPONSIVE MENU --------------------------------- */
/* https://codepen.io/mutedblues/pen/MmPNPG */


#header {
	background: url('../images/header2.jpg') center top #eee;
    height: 200px;
    width: 100%;
    box-shadow: var(--boxshadow);
    background-size: cover;
    background-position: center; 
}


#navi {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 3;
  text-align: center;
}

#navi ul, #navi ul li::before {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background: none;
}

#navi li a {
  display: block;
  padding: 20px 20px;
  border-right: 1px solid #f4f4f4;
  text-decoration: none;
  background: #fff;
  transition: .5s;
}

#navi li a:hover,
#navi .menu-btn:hover {
  background-color: rgba(255,255,255,0.8);
  text-shadow:
       2px 2px 0 #fff,
     -2px -2px 0 #fff,  
      2px -2px 0 #fff,
      -2px 2px 0 #fff,
       2px 2px 0 #fff;
}


#navi .logo {
  display: block;
  float: left;
  font-size: 2em;
  padding: 10px 20px;
  text-decoration: none;
}

/* menu */

#navi .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

#navi .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

#navi .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

#navi .menu-icon .navicon:before,
#navi .menu-icon .navicon:after {
  background: #333;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

#navi .menu-icon .navicon:before {
  top: 5px;
}

#navi .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

#navi .menu-btn {
  display: none;
}

#navi .menu-btn:checked ~ .menu {
  max-height: 500px;
}

#navi .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

#navi .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

#navi .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

#navi .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
#navi .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
    #header {
      display:flex;
      align-items:flex-end;    
    }
    #navi {
      background-color: transparent;
      position: static;
    }
  #navi li {
    float: left;
  }
  #navi li a {
    padding: 20px 30px;
  }
  #navi .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  #navi .menu-icon {
    display: none;
  }
  
  #content {
    padding: 20px;
  }
  .avatar, .websiteicon > img {
    width: 100px;
    height: 100px;
    }
    
.rest {
    width: calc(100% - 130px);
}
}


/* --------------------------------- ACCORDION --------------------------------- */

.acc-tabs {
  overflow: hidden;
  border: 1px solid #ccc;
  background: url('../images/layout/textur.jpg') var(--background-middle);
}

/* Style the buttons inside the tab */
.acc-tabs button {
  background-color: transparent;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
  margin: 0;
  border-radius: 0;
}

/* Change background color of buttons on hover */
.acc-tabs button:hover {
  background-color: rgba(255,255,255,0.4);
  transition: background .2s ease-out;
}

/* Create an active/current tablink class */
.acc-tabs button.active {
    color: #888;
  background-color: #fff;
}

/* Style the tab content */
.acc-content {
    position: absolute;
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
  transition: opacity 1s ease-out;
    opacity: 0;
    width: 100%;
}

.acc-visible {
  display: block;
  opacity: 1;
}



/* --------------------------------- LINKS ALS BLOCK MIT ICON --------------------------------- */
/* Links als Block wie unter Boutique */
.menubanner, .menubanner-small {
    margin-bottom: 10px;
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 15px ;
    /* min-height: 50px; */
    margin-left:auto;margin-right:auto;
    
    position: relative;
    display:flex;
    align-items: center;
}
.menubanner-small {
    display: inline-block;
    text-align: left;
}
    
a.menubanner::before {
   content: none !important;
}

a.menubanner {
    text-decoration: none;
     box-shadow: var(--boxshadow-strong);
}

.menubanner:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.menubanner-txt {
    display: inline-block;
    margin-left: 20px;
    text-align: left;
}
.menubanner-icon {
    display: inline-block;
    /* float: left; */
}

.icon-small {
    height: 20px;
    width: 20x;
}
.icon-middle {
    height: 40px;
    width: 40px;
}
.icon-big {
    height: 50px;
    width: 50px;
}

@media (min-width: 48em) {
    .menubanner-small {
        width: 50%;
        max-width: 200px;
    text-align: center;
    }
}


/* ------------------- CHECKBOX ----------------------- */

/* http://jsfiddle.net/0qjozqtc/1/ */
/*
.checkbox { position: absolute; opacity: 0; z-index: -1;  outline:none;}
.checkbox+span:before, .checkbox:checked+span:before { content: url('../images/icons/checkbox-unchecked.svg'); display: inline-block; width: 16pt; padding: 2px 0 0 3px; margin-right: 0.5em; outline: none; }
.checkbox:checked+span:before { content: url('../images/icons/checkbox-checked.svg'); }
.checkbox:focus+span:before { outline: 1px dotted #aaa; }
.checkbox:disabled+span { color: #999; }
.checkbox:not(:disabled)+span:hover:before { text-shadow: 0 1px 2px #77F; }

.checkbox::-moz-focus-inner,
.checkbox:checked+span:before::-moz-focus-inner,
.checkbox+span:before::-moz-focus-inner,
.checkbox:focus+span:before::-moz-focus-inner { border: 0; outline:none; } /* komischer gepunkteter Umriss in Firefox */
.checkbox {
  position: absolute;
  opacity: 0;
}
.checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.checkbox + label:before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: #000;
}
.checkbox:hover + label:before {
  background: #f35429;
}
.checkbox:focus + label:before {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
}
.checkbox:checked + label:before {
  background: #f35429;
}
.checkbox:disabled + label {
  color: #b8b8b8;
  cursor: auto;
}
.checkbox:disabled + label:before {
  box-shadow: none;
  background: #ddd;
}
.checkbox:checked + label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
  transform: rotate(45deg);
}

/* ---------- ACCORDION ---------- */

 /* Style the buttons that are used to open and close the accordion panel */
.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin: 0px;
  font-family: 'Raleway', sans-serif;
  border-radius: 0;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 10px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  box-shadow: var(--boxshadow);
}
.accordion:after {
  content: '\025BE'; /* 25BC Unicode Dreieck nach unten */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordionactive:after {
  content: "\25B5"; /* 25B4, 25B2 Unicode Dreieck nach oben */
}

.panel p{
  padding: 10px 0px;
}


/* ------------------------- CHECKBOX GRÜN UND ROT ----------------------------- */
.kinc, .kexc {
    display: inline;
    padding: 2px;
    background-color: #afa;
}

.kexc { background-color: red; }

.feldbox {
    padding: 5px;
    background-color: var(--background-middle);
    box-shadow: var(--boxshadow-strong);
    display: inline-block;
    margin: 1px;
}