/*Strip the ul of padding and list styling*/

ul#menu-main-menu {
	position: relative;
}

.menu ul {
	list-style-type:none;
	margin:0;
	padding:0;
	position: absolute;
	z-index: 999;
}
.menu li {
	margin:0;
	padding:0;
}

/*Create a horizontal list with spacing*/
.menu li {
	display:inline-block;
	float: left;
	border-right: #8cb2bd 1px solid;
}

/*Style for menu links*/
.menu li a {
	display:block;
	min-width:100px;
	height: 40px;
	text-align: center;
	line-height: 40px;
	color: #569bbe;;
	background: url(/wp-content/themes/socialhost2018/images/bkg_light_angles.png);
	background-color: #00b8f0;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 15px;
}

/*Hover state for top level links*/
.menu li:hover a {
	background: #ffffff;
	background-image: none;
	text-decoration: underline;
}

/*Style for dropdown links*/
.menu li:hover ul a {
	background: #00b8f0;
/* 	height: 40px; */
	line-height: 40px;
}

/*Hover state for dropdown links*/
.menu li:hover ul a:hover {
	background: #c1381a;
	color: #fff;
}

/*Hide dropdown links until they are needed*/
.menu li ul {
	display: none;
}

/*Make dropdown links vertical*/
.menu li ul li {
	display: block;
	float: none;
	line-height: inherit;
}

/*Prevent text wrapping*/
.menu li ul li a {
	width: auto;
	min-width: 100px;
/* 	padding: 0; */
}

/*Display the dropdown on hover*/
.menu ul li a:hover + .sub-menu, .sub-menu:hover, .menu ul li a:hover + .show-menu, .show-menu:hover .menu {
	display: block;
}

/*Style 'show menu' label button and hide it by default*/
.menuplus .show-menu {
	text-decoration: none;
	color: #fff;
	background: #00b8f0;
	text-align: center;
	padding: 10px 0;
	display: none;
}

.menu ul li ul li ul {
	position:absolute;
	left:150px;
	margin-top:-40px;
}

/*Hide checkbox*/
.menuplus .show-menu {
    display: none;
    -webkit-appearance: none;
}


/*Responsive Styles*/

@media (min-width: 768px){
/* 	.menu li {width: 14%;} */
	.menu-container {
/* 		background: #60365a; */
	    width: 100%;
	    position: relative;
	    display: flex;
	    justify-content: center;
	}
	
	.menu li ul {
	    width: 150px;
	    background: #00b8f0;
	}
	.menu li ul li a {
	    width: 150px;
	    padding: 5px 15px;
	    margin: 0px;
	    line-height: 15px !important;
	    display: table-cell;
	    align-content: left;
	    vertical-align: middle;
	    text-align: left;
	}

	.mobile-button {display:none;}
}

@media (max-width : 768px) {
	/*Make dropdown links appear inline*/
	.menu ul {
		position: relative;
		display: none;
	}
	/*Create vertical spacing*/
	.menu li {
		margin-bottom: 1px;
	}
	/*Make all menu links full width*/
	.menu ul li, .menu li a {
		width: 100%;
	}
	
	.menuplus:hover .menu{
	    display: block;
	}
	
	/*Display 'show menu' link*/
	.menuplus .show-menu {
		display:block;
	}
	.menu ul li ul li ul {
		position: inherit;
		display: inline-block;
		width: 100%;
		margin-top:0;
	}

	.mobile-menu-button {
		width: 90px;
	}


}