.dropdown_menu {
    display: none;    
}

.dropdown_menu-item a {
    position: relative !important;
    background-color: rgb(208, 212, 215) !important;
    padding-left: 2.8em !important;
    color: rgb(53, 60, 70) !important;
}

.dropdown_menu-item a::before {
    content: '';
    position: absolute;
    left: 1.9em;
    top: 50%;
    transform: translateY(-3px);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background-color: rgb(110, 118, 131);
}

.dropdown_menu-item a:hover {
    background-color: #343F50 !important;
    color: #fff !important;
}

.dropdown_menu-item a:hover::before {
    background-color: #fff;
}