/* fonts */
.dropdowns {font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; }

:root{
	--navfont: 'Oxygen', sans-serif;
	--mainfont: 'Oxygen', sans-serif;
	--mainfontsize: 16px;
}
/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    background: #fff;
    color: #000;
}

/* general navigation background colors */
.navnew {
     /*background: #f8f8f8;
	 border: 1px solid #f0f0f0;*/
}

/* general navigation link font color */
.navnew a {
    color:#666;
}

/* first level items borders */
.navnew > li {
	
}

/* navigation hover colors */
.navnew > li > .parent:hover{
	background-color: transparent;
}

.navnew a:hover{
	background-color: #28df99;
	color: #fff;
}

/* second level navigation colors */
.navnew li li a {
    background: #eeeeee;
    border-bottom: 1px solid #c0c0c0;
}

/* third level navigation colors */
.navnew li li li a {
    background:#cccccc;
    border-bottom: 1px solid #c0c0c0;;
}

/* ---------------- */
/*      layout      */
/* -----------------*/

/* main div */
.dropdowns {
	width:auto;
}

/* small screens menu button */
a.toggleMenu {
	padding: 10px 0;
	width:100%;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
}

/* second and third level menus */
.navnew ul {
	width:14vw;
}

/* general paddings and other stuff */
.navnew a {
	padding: 10px 14px;
}

/* parents that have submenus */
.navnew > li > .parent{
	color: #fff;
	font-family: var(--navfont);
	font-size: var(--mainfontsize);
	/*text-transform: uppercase;*/
}

/* small screen adjustments*/
@media screen and (max-width: 768px) {
	.navnew ul {
		width: 100%;
	}
	.navnew > li > .parent{
		color: #fff;
		background-color: #075a9c;
	}
}
