/* fonts */
.dropdowns {font-family: 'Roboto', serif; }

/* colors */
/* ------ */
/* togle menu button for narrow screens */
.toggleMenu {
    background: #666;
    color: #fff;
}

/* general menuigation background colors */
.menu {
    background: #172224;
    border: 1px solid #172224;
    font-weight: 700;
}

/* general menuigation link font color */
.menu a {
    color:#fff;
}

/* first level items borders */
.menu > li {
	border-left: 1px solid #172224;
}

/* menuigation hover colors */
.menu a:hover {
	background-color: #ef4323;
	color:#fff;
}

/* second level menuigation colors */
.menu li li a {
    background: #172224;
    border-bottom: 1px solid #172224;
}

/* third level menuigation colors */
.menu li li li a {
    background:#172224;
    border-bottom: 1px solid #172224;
}

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

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

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

/* second and third level menus */
.menu ul {
	width:10em;
}

/* general paddings and other stuff */
.menu a {
	padding: 15px 30px;
}

/* parents that have submenus */
.menu > li > .parent {
	padding-right: 25px;
	background-position: 90% 50%;
}

/* small screen adjustments*/
@media screen and (max-width: 768px) {
	.menu ul {
		width: 100%;
	}
}
