
/* Styles for Enigmalytics Website Header Page*/

.topBar {
	width: 100%;
	margin: 0;
	height: 80px;
	background-color: #FF6600;
}

.logoContainer {
	width: 90%;
	height: 80px;
	margin: 0;
	float: left;
	background-color: #FF6600;
}

.toggleContainer {
	width: 10%;
	height: 80px;
	float: left;
	background-color: #FF6600;
}

.toggleIcon {
	display: none;
}

.menuBar {
	display: block;
	float: left;
	width: 100%;
	height: 44px;
	margin-top: 0px;
	margin-bottom: 0px;
	background-color: #444;
	color: white;
}

.menuBar a {
	text-decoration: none;
	color: white;
	padding: 10px 14px;
	height: 32px;
	display: inline;
}

.menuBar ul {
	margin-left: 20%;
}

.menuBar li {
	display: inline;
	padding: 10px 14px;
}

.menuBar li:hover, .menuBar a:hover {
	background-color: #FF9D5C;
}

@media screen and (max-width: 780px) {

	.menuBar {
		display: none;
	}

	.menuBar li {
		display: block;
		margin-left: 10px;
	}

	.menuBar.small {
		display: block;
		width: 100%;
		transition: height 2s;
		height: auto;
		background-color: #444;
		color: white;
	}

	.menuBar.small ul {
		margin-top: 0;
		margin-bottom: 0;
		margin-left: 10px;
		padding-left: 1px;
		z-index: 9;
	}

	.menuBar.small li {
		display: block;
		margin-left: 0px;
		padding-left: 10px;
		font-size: 18px;
		line-height: 18px;
		border-bottom: 0.5px solid #777;
	}

	.menuBar.small a {
		display: block;
		padding-top: 10px;
		padding-bottom: 5px;
		height: 24px;
	}

	.logoContainer {
		width: 60%;
		text-align: right;
	}

	.toggleContainer {
		width: 40%;
		height: 80px;
		float: left;
		background-color: #FF6600;
	}

	.toggleIcon {
		display: block;
		text-decoration: none;
		height: 40px;
		font-size: 32px;
		line-height: 32px;
		font-weight: bold;
		color: white;
		padding: 20px 10px;
	}
}



