.dropdown {
    position: relative;
}

.dropdown > .dropdown-items {
    display: none;
    flex-direction: column;
    row-gap: 0.1em;
    right: 0;
    position: absolute;
    padding: 0.3em;
    margin-top: 0.5em;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
}

.dropdown > .dropdown-items :is(a, button) {
    text-align: center;
    display: block;
    padding: 0.6em 1em;
    text-decoration: none;
    color: #000;
    transition: all 0.1s ease-out;
    border-radius: 4px;
}

.dropdown > .dropdown-items :is(a, button):hover {
    color: #fff;
    background: var(--col-brand);
}

.dropdown > .dropdown-items.active {
    display: flex;
}

.dropdown > .dropdown-btn i {
    transform: rotate(0deg);
    transition: transform 0.15s ease;
    pointer-events: none;
}

.dropdown > .dropdown-btn-circle {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.dropdown > .dropdown-btn-circle:hover,
.dropdown > .dropdown-btn-circle.active {
    background: rgb(240, 240, 240);
}

.dropdown > .dropdown-btn-circle i {
    transform: unset;
    transition: unset;
}


.dropdown > .dropdown-btn.active i {
    transform: rotate(180deg);
}