div.scrollmenu {
	background-color: #FFF;
	overflow: hidden;
	white-space: nowrap;
	border: 1px solid #e2e2e2;
	border-left: none;
	border-right: none;
	box-shadow: 0px 2px 4px #e2e2e2;
	z-index: 1;
}

div.scrollmenu a {
	display: inline-block;
	color: gray;
	text-align: center;
	text-decoration: none;
  
	font-size: 13px;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
}

.nav#tabNav {
	white-space: nowrap;
	overflow-x: auto;
	overflow-y: hidden;
	display: -webkit-box;
	display: -moz-box;
	
	-ms-overflow-style: none;
	overflow: -moz-scrollbars-none;
	scrollbar-width: none;
	
	padding-top: 2px;
}
.nav#tabNav::-webkit-scrollbar {
	display: none;
}

.nav#tabNav .active {
	border-bottom: 3px solid #3777f7;
}

.tab-content#tabContent {
	/*margin-top: 10px;*/
}

/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
	position: fixed;
	top: 0;
	width: 100%;
}

.sticky + .tab-content {
	padding-top: 46px;
}