/* Sidescroll Navigation - CSS */

#navcontainer {
    width:100%;
    height: 42px;		/* 47px default */
    overflow: hidden;
	-ms-overflow-style: none !important;
}

.navcontainer:-webkit-scrollbar {
    display: none;
}

.navcontainer {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

#navmodules {
    height:60px; /* 40px - more place for scrollbar, is hidden under parent box */
    padding:2px;
    white-space:nowrap;
    overflow-x: scroll;
    overflow-y: none;
	scrollbar-width: none;
	-webkit-overflow-scrolling:touch;	
	-webkit-scrollbar: none;
	-ms-overflow-style: none !important;
}
.navmodule {
    display:inline-block;
 /*   width:120px;	*/
    height:42px;
    line-height:42px;
    text-align:center;
}
.navmodule + .navmodule {
    margin-left:-5px;
}