/* Universalselektor benutzen, um ALLE Voreinstellungen zu Nullen */
* {
    box-sizing: border-box;
 }

  .row::after {
	content: "";
	clear: both;
	display: table;
  }
  
  [class*="col-"] {
	float: left;
	padding: 15px;
  }
  
  html {
	font-family: "Lucida Sans", sans-serif;
  }
  

  *img {
	width: 100%;
	height: auto;
  }
  
  .h2bw {
	color:white;
	background-color: darkblue;
	border-radius: 3px; 
	padding: 5px;
  }
/* -----------------------------------------------------------------------*/

input, button {
	margin: 20px;
	border: 2px solid #ccc; 
	padding: 5px; 
	font-size: 1em; 
	background-color: #eee;
	border-radius: 3px; 
	box-shadow: 5px 5px 10px silver;
	text-decoration: none;
       }

input, button:hover {
	outline: 3px solid darkblue;
}

  .alarm {
	color: #ffffff;
	background-color: #c54626;
	font-size: 1em;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.5), 0 3px 3px rgba(0,0,0,0.5);
  } 

  .kasten {
	color: #000000;
	background-color: #fdf8ed;
	font-size: 1em;
	padding: 15px;
	border-radius: 3px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.5), 0 3px 3px rgba(0,0,0,0.5);
  } 


  .merke {
	color: #000000;
	background-color: #71ee71;
	font-size: 1em;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.5), 0 3px 3px rgba(0,0,0,0.5);
  } 

  .hinweis {
	color: #0536d6;
	background-color: #f5eb65;
	font-size: 1em;
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.5), 0 3px 3px rgba(0,0,0,0.5);
  } 

/*-------------------------------------------------------------------------*/ 

  .menu ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
  }
  
  .menu li a {
	display: block;
	margin: 20px;
	border: 2px solid #ccc; 
	padding: 5px; 
	font-size: 1em;
	color: black;
	background-color: #eee;
	border-radius: 3px; 
	box-shadow: 5px 5px 10px silver;
	text-decoration: none;
  }
 

  .menu li a:hover {
	outline: 3px solid darkblue;
  }
  
  .menu li:visited {
	background-color: #2e9605;
	color: #000000;
  }

  .mailbutton {
	display: block;
	margin: 20px;
	border: 2px solid #ccc; 
	padding: 5px; 
	font-size: 1em;
	color: black;
	background-color: #eee;
	border-radius: 3px; 
	box-shadow: 5px 5px 10px silver;
	text-decoration: none;
  }
 

  .mailbutton:hover {
	outline: 3px solid darkblue;
  }

   .aside {
	background-color: #eee;
	padding: 15px;
	color: #000;
	text-align: left;
	font-size: 14px;
	border-radius: 5px;
	box-shadow: 0 3px 3px rgba(0,0,0,0.5), 0 3px 3px rgba(0,0,0,0.5);
  }
  
  .footer {
	background-color: #0099cc;
	color: #ffffff;
	text-align: center;
	font-size: 12px;
	padding: 15px;
  }
  
  /* For mobile phones: */
  [class*="col-"] {
	width: 100%;
  }
  
  @media only screen and (min-width: 600px) {
	/* For tablets: */
	.col-s-1 {width: 8.33%;}
	.col-s-2 {width: 16.66%;}
	.col-s-3 {width: 25%;}
	.col-s-4 {width: 33.33%;}
	.col-s-5 {width: 41.66%;}
	.col-s-6 {width: 50%;}
	.col-s-7 {width: 58.33%;}
	.col-s-8 {width: 66.66%;}
	.col-s-9 {width: 75%;}
	.col-s-10 {width: 83.33%;}
	.col-s-11 {width: 91.66%;}
	.col-s-12 {width: 100%;}
  }
  @media only screen and (min-width: 768px) {
	/* For desktop: */
	.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%;}
  }

  /* Tooltip container */
.tooltip {
	position: relative;
	display: inline-block;
	border-bottom: 1px black ; /* dotted;  If you want dots under the hoverable text */
  }
  
  /* Tooltip text */
  .tooltip .tooltiptext {
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
   
	/* Position the tooltip text - see examples below! */
	position: absolute;
	z-index: 1;
  }
  
  /* Show the tooltip text when you mouse over the tooltip container */
  .tooltip:hover .tooltiptext {
	visibility: visible;
  }