<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    /* dropdown sub menu positioning */
    margin: 0;
    left: 100%;
}
    
.dropdown-menu {
    padding: 0;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 10%);
}
    
.dropdown .dropdown-submenu {
    top: 0;
    left: 100%;
    margin-left: 0.125rem;
}
    
.navbar .dropdown-item {
    padding: 0.5rem;
    color: #009ee0;
}
@media (max-width: 1199.98px) {
    .navbar .dropdown-item {
        padding: 0.5rem;
        color: #fff;
    }    
}

.dropdown-item:hover,
.dropdown-item:focus {
    /* Item that could be selected now */
    background-color: transparent!important;
    color: #008ec9 !important;
}
@media (max-width: 1199.98px) {
    .dropdown-item:hover,
    .dropdown-item:focus {
        /* Item that could be selected now */
        color: #fff !important;
    }    
}
    
.dropdown-item.active,
.dropdown-item:active {
    /* Selected item (ie page now active) */
    background-color: transparent;
    color: #008ec9;
}
@media (max-width: 1199.98px) {
    .dropdown-item.active,
    .dropdown-item:active {
        color: #fff;
    }    
}
    
.nav-item a {
    /* ensure No flashing in links */
    transition: none !important;
}
    
.navbar-nav li:hover&gt;ul.dropdown-menu {
    /* controversial will open on hover */
    display: block;
}
    
@media (min-width: 992px) {
    /* ONLY DESKTOP - Convert toggle to right &gt; in deeper levels */
    .at_depth_1 .dropdown-toggle::after,
    .at_depth_2 .dropdown-toggle::after,
    .at_depth_3 .dropdown-toggle::after {
        display: inline-block;
        margin-left: 1.5em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        left: 0;
        /* rotate right */
        -ms-transform: rotate(-90deg);
        /* IE 9 */
        -webkit-transform: rotate(-90deg);
        /* Chrome, Safari, Opera */
        transform: rotate(-90deg);
    }
}
    
@media (max-width: 991.98px) {
    /* Smaller devices remove shadow &amp; border from children */
    .offcanvas .dropdown-menu {
        border: none;
        box-shadow: none;
    }
    /* Smaller devices offcanvas, add indent */
    .depth_1 .dropdown-item {
        margin-left: 10px;
    }
    .depth_2 .dropdown-item {
        margin-left: 15px;
    }
    .depth_3 .dropdown-item {
        margin-left: 20px;
    }
}</pre></body></html>