
/*  - - - - - - - - - - - - - - - - - - - -  */
/*  BAS - header-mobile.css  */
/*  - - - - - - - - - - - - - - - - - - - -  */


	/*  - - - - - - - - - - - - - - - - - - - - - - - */
	/*
	/*  header - mobile
	/*
	/*  - - - - - - - - - - - - - - - - - - - - - - - */
	
	/*  - - - - - - - - - - - - - */
	/*  mobile - container 
	/*  - - - - - - - - - - - - - */
	
	#header_mobile {

		position: relative;
		width: 100%;
		min-width: 400px;
		margin: 0 auto;
	}

	/*  - - - - - - - - - - - - - */
	/*  mobile - logo 
	/*  - - - - - - - - - - - - - */
	
	#mobile_logo {

		position: relative;
		top: 25px;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	#mobile_logo_image {
	
		width: 280px;
		height: 96px;
	}
	
	#mobile_logo_text {

		position: absolute;
		top: 62px;
		left: 116px;
	}

	/*  - - - - - - - - - - - - - */
	/*  mobile - menu toggle  */
	/*  - - - - - - - - - - - - - */

	#mobile_menu_toggle {
	
		position: absolute;
		top: 15px;
		left: 15px;
		width: 50px;
		height: 50px;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		cursor: pointer;
	}
	
	.mobile_menu_stripe {
	
		width: 100%;
		height: 18%;
		background: #46535B;
	}
	
	.mobile_menu_stripe_highlighted {
	
		background: white;
	}
	
	/*  - - - - - - - - - - - - - */
	/*  mobile - navigation
	/*  - - - - - - - - - - - - - */
	
	#mobile_navigation_container {
	
		display: none;
	}
	
	#mobile_navigation_background {
	
		position: fixed;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
		z-index: 400;
		background: rgb( 60, 60, 60, 0.5 );
	}
	
	#mobile_navigation {
	
		box-sizing: border-box;
		position: absolute;
		top: 30px;
		left: 20%;
		width: 60%;
		background: #EEEEEE;
		padding: 15px 15px 7px 15px;
		border: 1px #46535B solid;
		border-radius: 8px;
		text-align: center;
		z-index: 500;
		filter: drop-shadow( 6px 6px 4px #444444 );
	}
	
	#mobile_navigation li {
	
		margin-bottom: 10px;
		font-size: 125%;
	}
	
	.mobile_navigation_divider {
	
		height: 10px;
		border-top: 2px #BBBBBB dotted;
		margin: 15px;
	}
	
	#mobile_menu_header {
	
		font-size: 150% !important;
		font-weight: 600;
		padding: 8px 0;
		margin-bottom: 20px !important;
		border-radius: 6px;
		background: #44535C;
		color: #EEEEEE;
	}

