.wa-dropdown {
    position: relative;
    width: 100%;
}

.wa-dropdown-toggle {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    border: 0;
}

.wa-caret {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
}

.wa-dropdown-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.4rem);
    z-index: 40;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 0.75rem;
    box-shadow: 0 16px 40px rgba(15, 38, 64, 0.16);
    padding: 0.55rem;
    max-height: 20rem;
    overflow: auto;
}

.wa-dropdown-menu[hidden] {
    display: none !important;
}

.wa-dropdown-title {
    margin: 0.2rem 0.45rem 0.55rem;
    font-size: 0.82rem;
    color: #486581;
    font-weight: 600;
}

.wa-dropdown-item {
    display: block;
    padding: 0.7rem 0.8rem;
    border-radius: 0.55rem;
    color: #102a43;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.wa-dropdown-item:hover,
.wa-dropdown-item:focus {
    background: #e6fffa;
    color: #0f8a95;
}

.wa-dropdown.wa-inline {
    width: auto;
    display: inline-block;
}

.wa-dropdown.wa-inline .wa-dropdown-toggle {
    width: auto;
}

.wa-dropdown.wa-float-wrap {
    position: fixed;
    right: 1rem;
    bottom: 5.5rem;
    z-index: 120;
    width: min(17rem, calc(100vw - 2rem));
}

.wa-dropdown.wa-float-wrap .wa-dropdown-toggle {
    background: #11824e;
    color: #fff;
    border-radius: 999px;
    min-height: 3rem;
    padding: 0 1.1rem;
    box-shadow: 0 10px 28px rgba(17, 130, 78, 0.35);
}

.wa-dropdown.wa-float-wrap .wa-dropdown-menu {
    bottom: calc(100% + 0.45rem);
    top: auto;
}

@media (max-width: 720px) {
    .wa-dropdown.wa-float-wrap {
        bottom: 6.5rem;
        right: 0.75rem;
    }
}
