.CustomMenu{
}
.CustomMenu .MenuList{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        height: 54px;
        border-radius: 4px;
        padding: 5px;
        align-items: center;
        background: #F2F2F2;
}
.CustomMenu .MenuList li{
        flex:1;
        text-align: center;
        padding: 10px;
}
.CustomMenu .MenuList .TopMenuActive{
        background: linear-gradient(#5587D6 100%, #2A58A0 100%);
        border-radius:8px;
}
.CustomMenu .MenuList .TopMenuActive a span {
        font-family: 'Roboto';
        font-size: 15px;
        font-weight: 500;
        line-height: 22px;
        color: #fff;
}
.CustomMenu .MenuList .TopMenu .image{
        display:none;
}
.CustomMenu .MenuList .TopMenu a span{
        font-family: 'Roboto';
        font-size: 15px;
        font-weight: 500;
        line-height: 22px;
}
@media only screen and (max-width: 768px){
        .CustomMenu{
                padding: 0 16px;
        }
        .CustomMenu .MenuList .TopMenuActive{
                background: linear-gradient(#5587D6 100%, #2A58A0 100%) !important;
        }
        .CustomMenu .MenuList{
                width: 100%;
        }
        .CustomMenu .MenuList .TopMenu a span,
        .CustomMenu .MenuList .TopMenuActive a span{
                white-space: nowrap;
        }
}