.CustomMenu{
	max-width: 1200px;
	background-color: #e7e7e7;
	border-bottom: 2px solid #900000;
	margin: 0 auto;
}

.CustomMenu .MenuList{
	display: flex;
	justify-content: flex-start;
	margin: 0;
	padding: 0 5px;
	gap: 30px;
	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; */
	/* height: 100%; */
	position: relative;
}
.CustomMenu .MenuList li:not(li:last-child):after{
	content: '';
	height: 20px;
	width: 1px;
	background-color: #900000;
	position: absolute;
	right: -15px;
	top: 10px;
}
.CustomMenu .MenuList img{
	display: none;
}
.CustomMenu .MenuList li>a>span{
	font-family: Arial;
	font-size: 15px;
	font-weight: 600;
	line-height: 46px;
	text-align: left;
	color: #900000;
}
.CustomMenu .MenuList li.TopMenuActive>a>span,.CustomMenu .MenuList li.TopMenu:hover>a>span{color: #D30000;}

.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;
		overflow-x: hidden;
	}

}

