.CustomMenu{
	width: 100%;
	border-top: 1px solid #f3f6fb;
	border-bottom: 1px solid #DADCE0;
	padding: 10px 0;
}

.CustomMenu .MenuList{
	display: flex;
	justify-content: flex-start;
	margin: 0;
	padding: 0;
	gap: 20px;
	flex-wrap: nowrap;
	overflow-x: auto;
}
.CustomMenu .MenuList::-webkit-scrollbar {
    width: 16px; 
}

.CustomMenu .MenuList::-webkit-scrollbar-track {
    background: #ffffff; 
    border: 4px solid #ffffff; 
    background-clip: padding-box;
}

.CustomMenu .MenuList::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 10px; 
    box-shadow: inset 0 0 0 4px #F0F0F0; 
}
.CustomMenu .MenuList li{
	flex: none;
	margin-bottom: 10px;
}
.CustomMenu .MenuList img{
	display: none;
}
.CustomMenu .MenuList li>a>span{
	font-family: 'Merriweather';
	font-size: 14px;
	font-weight: 700;
	line-height: 23px;
	text-align: left;
	color: #3D4043;
}
.CustomMenu .MenuList li.TopMenuActive>a>span{color: var(--color-primary);}

.CustomMenu .MenuList li>a:hover,
.CustomMenu .MenuList li:hover{
	border: 0;

}
@media only screen and (max-width: 768px){
	.CustomMenu .MenuList::-webkit-scrollbar-thumb {
		display: none;
	}
	.CustomMenu .MenuList li{
	margin-bottom: 0;
}
	.CustomMenu{
		border-bottom: 0;
		padding:  0;
		padding-left: 16px;
	}

}

