/* ############################################# 
   # 
   # fuer Geraete mit schmalem Bildschirm
   # Screen max 990px   
   #
   ############################################# */

@media only screen and (max-width:990px) {
	
/*  ******************************
	+
	+        Basic Styles
	+		   
	****************************** */

	body {
		font-size: 14px;
	}
	
	
/*  ******************************
	+
	+        Layout
	+		   
	****************************** */
   
	#wrapper {
	   min-height: 95vh;
	   width: 90vw;
	   margin: 0 auto;
	   background-image: url("../img/hg-head-small.jpg");
	}
	
	#header,
	#container {
	   padding: 0 2vw;
	}
	
	#header {
	   background-position: top left;
	   background-repeat: no-repeat;
	}
	
	#container {
		padding: 4rem 3vw;
		display: flex;
		flex-flow: column wrap;
	}
	
	#main, #left {
		float: unset;
	}
	
	#main {
		padding: 0 0 3rem;
		width: 100%;
		order: 1;
	}

	#left {
		width: 100%;
		right: unset;
		padding-left: 0;
		order: 2;
	}

/*  ******************************
	+
	+        Menue
	+		   
	****************************** */

	/* Desktop Menue ausblenden */
	#menu-main {
		display: none;
		visibility: hidden;
	}

	/* 
	  Burger-Menue Button 
	*/
	#mobile-menu-button {
		position: absolute;
		right: 0;
		height: 32px;
		width: 80px;
		margin-top: 5%;
		padding: 3px;
		background-color: var(--menu-mobile-button-bg);
		border: 2px solid var(--menu-mobile-button-border);
		border-radius: 5px;
		font-variant:small-caps;
		display: flex; 
		justify-content: left; 
		align-content: center; 
	}
		#mobile-menu-button a {
			text-decoration: none;
			color: var(--mobile-menu-button-col);
			display: flex;
		}
		#mobile-menu-button p {
			padding-right: 3px;
			padding-top: 0.25rem;
		}


/*  ******************************
	+
	+        Terminlisten
	+		   
	****************************** */

	tr:nth-of-type(even) {
		background: rgba(255,255,255,0.3);
	}
	tr:nth-of-type(odd) {
		background: rgba(255,255,255,0.5);
	}

/*  ******************************
	+
	+        Content
	+		   
	****************************** */

#left .mod_article {
    display: flex;
    flex-flow: column;
}
#left .mod_article > * {
    align-self: center;
    /* flex-grow: 0;
    margin: 0 auto;
    width: auto; */
}

} /* end media query */