.angie-dropdown-wrapper-d8bad9c9 {
    position: relative;
    display: inline-block;
    --slide-dist: -10px;
}

.angie-dropdown-trigger-d8bad9c9 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease;
    user-select: none;
    text-decoration: none !important;
}

.angie-dropdown-icon-d8bad9c9 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Rotates the arrow on hover */
.angie-dropdown-wrapper-d8bad9c9:hover .angie-dropdown-icon-d8bad9c9 {
    transform: rotate(180deg);
}

/* Dropdown Menu Container */
.angie-dropdown-menu-d8bad9c9 {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(var(--slide-dist));
    pointer-events: none;
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
    display: flex;
    flex-direction: column;
}

/* Hidden bridge element to bridge gap and avoid cursor flicker */
.angie-dropdown-wrapper-d8bad9c9::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    height: 10px;
    display: block;
    z-index: 998;
    pointer-events: none;
}

.angie-dropdown-wrapper-d8bad9c9:hover::after {
    pointer-events: auto;
}

/* Show on Hover */
.angie-dropdown-wrapper-d8bad9c9:hover .angie-dropdown-menu-d8bad9c9 {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Individual list item styles */
.angie-dropdown-item-d8bad9c9 {
    display: block;
    text-decoration: none !important;
    box-sizing: border-box;
    transition: background-color 0.2s ease, color 0.2s ease;
}
