.dropdownMenu .dropdown-menu{
    left: 85%;
    top: unset;
    padding-top: 15px;
    margin-top: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    display: none;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    width: 80vw;
    padding-left: 30px;
    overflow: auto;
    height: 65vh;
    margin-top: -31px;
}
.dropdownMenu .dropdown-submenu {
    width: 187px;
    display: inline-grid;
    margin-bottom: 20px;
}
.dropdownMenu .dropdown-submenu .menuDep {
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}
.dropdown-sub, .dropdown-sub li {
    width: 150px;
}
.dropdown-submenu .dropdown-sub li a{
    color: #000;
    font-weight: normal;
    font-size: 12px;
}
.openMenu{
    display: block !important;
}
.dropdownMenu:hover .dropdown-menu{
    display: block;
}