.dropdown-menu {
    > li > a {
        clear: both;
        color: #333;
        display: block;
        font-weight: 400;
        line-height: 40px;
        padding: 3px 20px;
        white-space: nowrap;
        &:focus,
        &:hover {
            background-color: var(--gray-200);
            color: var(--puma);
            text-decoration: none;
        }
    }
}

.dropdown,
.dropup {
    position: relative;
}

.dropdown-toggle:focus {
    outline: 0;
}

.open > .dropdown-menu {
    display: block;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background-color: #337ab7;
    color: var(--white);
    outline: 0;
    text-decoration: none;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    color: #777;
}

.dropdown-menu > .disabled > a:focus,
.dropdown-menu > .disabled > a:hover {
    background-color: transparent;
    background-image: none;
    cursor: not-allowed;
    filter: progid:dximagetransform.microsoft.gradient(enabled=false);
    text-decoration: none;
}

.open > a {
    outline: 0;
}

.dropdown-menu-right {
    left: auto;
    right: 0;
}

.dropdown-menu-left {
    left: 0;
    right: auto;
}

.dropdown-header {
    color: #777;
    display: block;
    font-size: 12px;
    line-height: 1.43;
    padding: 3px 20px;
    white-space: nowrap;
}

.dropdown-backdrop {
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 990;
}

.pull-right > .dropdown-menu {
    left: auto;
    right: 0;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    border-top: 0;
    content: '';
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: 100%;
    margin-bottom: 2px;
    top: auto;
}

.navbar-right .dropdown-menu {
    left: auto;
    right: 0;
}
