/* Dropdown Menu Color Override - Change from red to #1C82FF */

/* Bootstrap Dropdown Menu Active States */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
    background-color: #1C82FF !important;
    color: #fff !important;
}

/* Dropdown Menu Hover States */
.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
    background-color: rgba(28, 130, 255, 0.1) !important;
    color: #1C82FF !important;
}

/* Chosen Dropdown Active/Highlighted States */
.chosen-container .chosen-results li.highlighted,
.chosen-container .chosen-results li.result-selected {
    background-color: #1C82FF !important;
    color: #fff !important;
}

.chosen-container .chosen-results li:hover {
    background-color: rgba(28, 130, 255, 0.1) !important;
    color: #1C82FF !important;
}

/* Navigation Dropdown Menu Items */
.navigation .level0 .submenu li > a:hover,
.navigation .level0 .submenu li > a:focus {
    color: #1C82FF !important;
}

/* All other dropdown menu hover states */
.dropdown-menu li:hover > a,
.dropdown-menu li.active > a {
    color: #1C82FF !important;
}

