﻿	/* ***** NAVIGATIONS-KLASSEN ****** */	
	/* Klassen für Title-Navigation */

	.navbarprime {
	  width: 100%;
	  background-color: rgba(0, 0, 0, 0.2);
	  overflow: hidden;
	  padding-left: 0px;
	  border-top: 1px #80371e solid;
	  border-bottom: 1px #80371e outset;
	}
	
	.navbarprime a {
	  float: left;
	  display: block;
	  padding: 8px 20px;
	  color: white;
	  text-decoration: none;
	  font-size: 17px;
	}
	
	.navbarprime div.linktext{
	  display: inline;
	}
	
	/* Add an active class to highlight the current page */
	.navbarprime a:hover {
	  background-color: #000000;
	}
	
	/* Hide the link that should open and close the topnav on small screens */
	.navbarprime .icon {
		display: none;
		font-size: 15px;
	}
	
	.navbarprime .active {
	  background-color: #80371e;
	}

	/* Dropdown container - needed to position the dropdown content */
	.dropdown {
	  float: left;
	  overflow: hidden;
	}
	
	/* Style the dropdown button to fit inside the topnav */
	.dropdown .dropbtn {
	  font-size: 17px;
	  border: none;
	  outline: none;
	  color: white;
	  padding: 8px 20px;
	  background-color: inherit;
	  font-family: inherit;
	  margin: 0;
	}
	
	.dropdown a {
	  padding: 0px 0px;
	}
	
	/* Style the dropdown content (hidden by default) */
	.dropdown-content {
	  display: none;
	  position: absolute;
	  background-color: #f9f9f9;
	  min-width: 160px;
	  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  z-index: 1;
	}
	
	/* Style the links inside the dropdown */
	.dropdown-content a {
	  float: none;
	  color: black;
	  padding: 12px 16px;
	  text-decoration: none;
	  display: block;
	  text-align: left;
	}
	
	/* Add a dark background on topnav links and the dropdown button on hover */
	.navbarprime a:hover, .dropdown:hover .dropbtn {
	  background-color: #cc9900;
	  color: white;
	}
	
	
	/* Add a grey background to dropdown links on hover */
	.dropdown-content a:hover {
	  background-color: #ddd;
	  color: #000000;
	}
	
	/* Show the dropdown menu when the user moves the mouse over the dropdown button */
	.dropdown:hover .dropdown-content {
	  display: block;
	}
	

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */

	@media screen and (max-width: 1440px) {
	  .navbarprime {
	  	background-color: rgba(128,55,30,0.5);
	  	border-top: 1px #80371e solid;
	  	border-bottom: 1px #80371e solid;
	  	border-right: 1px #80371e solid;
	  }
	  	
	  .navbarprime div.linktext {
	   	display: none;	
	  }
	  
	  .navbarprime  a:hover div.linktext {
	 	display: inline;
	  	background-color: #dc9d00;
	  	color: white;
	  }
	  .navbarprime .active {
		float: left;
		}

	  .navbarprime a.icon {
	    float: right;
	    display: block;
	    font-size: 15px;
	  }


	}
	
	@media screen and (max-width: 992px) {
	  .navbarprime {
	  	max-width: 100%;
	  }	
	}
		
	@media screen and (max-width: 880px) {
	  .navbarprime {
	  	position: relative;
	  	top: 0px;
	  	left: 0px;
	  	padding-left: 0px;
	  	max-width: 100%;
	  	background-color: rgba(128,55,30,0.5);
	  	border-top: 1px #80371e solid;
	  	border-bottom: 1px #80371e solid;
	  	border-right: 1px #80371e solid;
	  }
	  
	  .navbarprime div.linktext {
	   	display: inline;	
	  }
	  
	  .navbarprime a:not(:first-child), .dropdown .dropbtn {
	    display: none;
	  }

	  .navbarprime a.icon {
	    float: right;
	    display: block;
	    font-size: 15px;
	  }
	  
	  /* Style the dropdown content (hidden by default) */
	  .dropdown-content {
	  	display: none;
	  	position: absolute;
	  	background-color: rgba(220,157,0,0.25);

	 	min-width: 160px;
	  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  	z-index: 1;
	  }

	/* Style the links inside the dropdown */
	  .dropdown-content a {
	  	float: none;
	  	color: white;
	  	padding: 12px 16px 12px 66px;
	  	text-decoration: none;
	  	display: block;
	  	text-align: left;
	  }
	}

	@media screen and (max-width: 768px) {
	  .navbarprime {
	  	max-width: 100%;
	  }	
	}

	@media screen and (max-width: 600px) {
	  .navbarprime {
	  	max-width: 100%;
	  }
	}

	@media screen and (max-width: 480px) {
	  .navbarprime {
	  	max-width: 100%;
	  }	
	}
		
	/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
	@media screen and (max-width: 1440px) {
	  .navbarprime.responsive {
	  	position: relative;
	  }
	  
	  .navbarprime.responsive a.icon {
	    position: absolute;
	    right: 0;
	    top: 0;
	  }
	  
	  .navbarprime.responsive a {
	    float: none;
	    display: block;
	    text-align: left;
	  }
	  
	  .navbarprime.responsive div.linktext {
	   	display: inline;	
	  }
	  
	  .navbarprime.responsive .dropdown {float: none;}
	  .navbarprime.responsive .dropdown .dropbtn {
	    display: block;
	    width: 100%;
	    text-align: left;
	  }
	  
	  /* Style the dropdown content (hidden by default) */
	  .navbarprime.responsive .dropdown-content {
	  	display: none;
	  	position: relative;
	  	background-color: rgba(220,157,0,0.25);

	 	min-width: 160px;
	  	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	  	z-index: 1;
	  }

	/* Style the links inside the dropdown */
	  .navbarprime.responsive .dropdown-content a {
	  	float: none;
	  	color: white;
	  	padding: 12px 16px 12px 66px;
	  	text-decoration: none;
	  	display: block;
	  	text-align: left;
	  }
	  

	  .navbarprime.responsive .dropdown:hover .dropdown-content{
		display: block;
	  }

	  .navbarprime.responsive .dropdown:hover .dropdown-content a:hover{
		color: black;
	  }
	  
	}



