/*--------------------Navigation----------------*/

			
/*------------------- Menübutton --------------------*/			
			.burgerbutton {	
				display: block;
				position: fixed;
				z-index: 200;
				margin: 1% 1%;
				cursor: pointer;
				color: white; 
			}	
/*------------------- Buttonbars --------------------*/			
			.bar {
				display: inline-block;
				margin-top: 3px;
				cursor: pointer;
				padding: 13px 15px;
				border: 2px solid;
				border-color: #f90;
				border-radius: 5px;
				background-color: #999;
				box-shadow: 0px 0px 6px 6px white;
			}
			.bar1, .bar2, .bar3 {
				width: 35px;
				height: 4px;
				background-color: #fff;
				margin: 6px 0;
				transition: 0.4s;
			}
			.change .bar1 {
				transform: rotate(-45deg) translate(-7px, 6px);
			}
			.change .bar2 {opacity: 0;}
			.change .bar3 {
				transform: rotate(45deg) translate(-8px, -8px);
			}
/*------------------------ Liste ---------------------*/
            strong {
                color: #f90;
            }
			ul {
				margin: 0;
				list-style: none;
                padding: 90px 0 0 0;
                z-index: -10;
			}
			li {
				position: relative;
                width: 16em;
				padding: 1em;
				border-bottom: 0.1em solid  #f90;
			}
			li a {
				color: white;
				text-decoration: none;
				padding-left:10px;
			}
			li a:hover {
				color:orange;
			}
			a {
				display: block;
			}
			ul > img {
				position: absolute;
				bottom: 10px;
				left: 10px;
				width: 90%;
				border-radius: 50%;
				box-shadow: 0px 0px 5px 5px #fff;
			}
			/*html Validator i.O.
			ul > li >img {
				position: relative;
				bottom: -450px;
				left: 10px;
				width: 90%;
				border-radius: 50%;
				box-shadow: 0px 0px 5px 5px #fff;
			}
			ul.Horizontal :last-child {
				border: none;
			}*/
			.Horizontal {
					position: fixed;
					z-index:150;
					height: 100vh;
					width: 0;
					overflow: hidden;
					background-color: gray;
                    box-shadow: 0px 0px 5px 5px #f90;
			}
/*------------per Menubutton öffnen mit kleinen effekt*----------*/ 
			.show-menu + .Horizontal {
				width: 250px;
				transition: width 800ms ease-in-out;
				border: 2px solid #f90;
				box-shadow: 0px 0px 10px 10px white;	
			}	
			img#logo {
				position: absolute;
				top: 10px;
				width: 40%;
				left: 50%;
				border-radius: 0%;
			}
/*-----------------------Tooltip 2 im Nav------------------------*/

/* Tooltip container */
.tooltip1 {
  position: absolute;
  left: 20px;
  bottom:250px;
  display: block;
  /*border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}
/* Tooltip text */
.tooltip1 .tooltiptext1 {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 10px;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: -20%;
  left: 50%;
  margin-left: -80px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip1 .tooltiptext1::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip1:hover .tooltiptext1 {
  visibility: visible;
  opacity: 1;
}
/* ================================

- Handyscreen css 
- Breakpoint 480px

================================ */ 

@media screen and (max-width: 480px) {
	
    .burgerbutton {
		margin: 2% 2%;
	}
	.Horizontal {
		height: 345px;
		box-shadow: 0px 0px 0px 0px #f90;
	}
	.show-menu + .Horizontal {
		width: 100vw;
	}
	ul {
    padding: 77px 0 0 0;
	}
	ul > img {
		top: 10px;
		left: 67%;
		width: 30%;
	}
    .tooltip1 {
	position: absolute;
	left: 229px;
	bottom: 169px;
	display: block;
    }
}