/* generic customisations to the fwtheme app (not ceda specific) */

/* Dropdown-submenu from 
 * https://stackoverflow.com/questions/44467377/bootstrap-4-multilevel-dropdown-inside-navigation
 * Makes the .dropdown-submenu class work (as is used in Mezzanine, 
 * but could be useful in other contexts)
 */
 .dropdown-submenu{
    position: relative;
}
.dropdown-submenu a::after{
    transform: rotate(-90deg);
    position: absolute;
    right: 3px;
    top: 40%;
}
.dropdown-submenu:hover .dropdown-menu, .dropdown-submenu:focus .dropdown-menu{
    display: flex;
    flex-direction: column;
    position: absolute !important;
    margin-top: -30px;
    left: 100%;
}
@media (max-width: 992px) {
    .dropdown-menu{
        width: 50%;
    }
    .dropdown-menu .dropdown-submenu{
        width: auto;
    }
}