/* dropdowns/popout menus */

/*needs header added, removed for style guide*/
.dropdown-menu-right {
    right: -10px;
}
/*needs header added, removed for style guide*/

.dropdown-menu {
    z-index: 2000;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.dropdown-menu a{
    text-decoration:none !important;
    text-align:left;
 
}

.dropdown-menu:after {
    content: "";
    position: absolute;
    right: 7px;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

.dropdown-menu:before {
    content: "";
    position: absolute;
    right: 7px;
    top: -9px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(0, 0, 0, .15);
}

.dropdown-button .dropdown-menu:before {
    content: "";
    position: relative;
    border: none;
}

.dropdown-button .dropdown-menu:after {
    content: "";
    position: relative;
    border: none;
}

.dropdown-item {
    white-space: nowrap;
    font-size: .938em;
    padding: .5rem 1.5rem;
    position: relative;
}

.dropdown-item .badge {
    position: absolute;
    right: 10px;
    top: -2px;
}

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0;
    vertical-align: middle;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-left: .3em solid transparent;
}

/* end dropdowns/popout menus */