.smart-menu {
	position: fixed;
	overflow: hidden;
	width: 100%;
	margin: 0 auto;
	top: 0;
	left: 0;
	right: 0;
	line-height: 1;
	background-color: #191919;
	z-index: 80;
	height: 0;
/* 	box-shadow: -1px 6px 22px -6px rgba(0, 0, 0, .5); */
	text-overflow: ellipsis;
	white-space: nowrap;
	transition-property: height;
	transition-duration: .2s;
	transition-timing-function: linear
}

.smart-menu.shown {
	height: 44px
}

.smart-menu.shown .smart-wrapper {
	padding-bottom: 20px;
	overflow: auto
}

.smart-menu .smart-wrapper {
	width: 100%
}

.smart-menu .smart-wrapper .menu-centered {
	text-align: center
}

.smart-menu .smart-wrapper .menu {
	display: inline-block;
	vertical-align: top;
	margin: 0;
	list-style-type: none
}

.smart-menu .smart-wrapper .menu li {
	display: table-cell;
	vertical-align: middle
}

.smart-menu .smart-wrapper .menu a {
	display: block;
	padding: .9rem 1rem;
	line-height: 1;
	position: relative;
	color: #fff;
	font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

 .smart-menu .smart-wrapper .menu a:after {
	content: "|";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	color: #6b6c6c
} 

.smart-menu .smart-wrapper .menu a.active {
	color: #e55a22;
}

.smart-menu .smart-wrapper .menu>li:last-child a:after {
	display: none
}


/*# sourceMappingURL=smartMenu.css.map */