.top-menu {
    line-height: 17px;
    white-space: nowrap;
}
.top-menu .items {
    overflow: hidden;
	position: relative;
}
.top-menu .items::before, .top-menu .items::after {
	content:"";
	position: absolute;
	z-index: 1;
	top: 0px;
	width: 15px;
	height: 100%;
}
.top-menu .items::before {
	left:0px;
	background: linear-gradient(to right, rgba(249,250,251,1) 0%,rgba(249,250,251,0) 100%);
}
.top-menu .items::after {
	right:0px;
	background: linear-gradient(to right, rgba(249,250,251,0) 0%,rgba(249,250,251,1) 100%);
}
.top-menu .item {
    display: inline-block;
    margin-right: 15px;
    margin-left: 15px;
    padding-bottom: 24px;
}
@media (min-width: 1200px) {
    .top-menu {
        line-height: 21px;
    }
    .top-menu .item {
        display: inline-block;
        margin-right: 17px;
        margin-left: 17px;
        padding-bottom: 26px;
    }
}
.top-menu div.item, .top-menu .item.selected {
    color: #165AB7;
    border-bottom: 2px solid #165AB7;
    transition: all 300ms ease;
}
.top-menu a.item {
    /*color:#818698;*/
    color: #2e3038;
    text-decoration: none !important;
}
.top-menu a.item:hover {
    color:#165AB7;
}
.top-menu .items ul, .top-menu .items li {
	list-style:none;
	margin: 0px;
	padding: 0px;
}