/* ROOT */
.adv-dropdown {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: #494949;
    border-radius: 5px;
    padding: 0 5px;
    font-size: .92em;
    color: #fdfdfd;
    user-select: none;
    width: max-content;
}

.btn-icon>i:first-child {
    margin: 0px 10px 0px 0px;
}

.adv-dropdown>div:first-child {
    padding: 2px 8px 2px 8px;
}

/* TRIGGER */
.adv-dropdown__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    height: 100%;
}

/* ARROW */
.adv-dropdown__arrow {
    transition: transform .35s ease;
    margin-left: 10px;
}

.adv-dropdown.is-open .adv-dropdown__arrow {
    transform: rotate(180deg);
}

/* CONTENT */
.adv-dropdown__content {
    position: absolute;
    top: 100%;
    min-width: max-content;
    max-width: 90vw;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, .4);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity .2s ease, transform .2s ease;
}

/* OPEN */
.adv-dropdown.is-open .adv-dropdown__content {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}


/* ALIGN LEFT */
.adv-dropdown[data-align="left"] .adv-dropdown__content {
    left: 0;
    right: auto;
    margin-top: 5px;
}

/* ALIGN RIGHT */
.adv-dropdown[data-align="right"] .adv-dropdown__content {
    right: 0;
    left: auto;
    margin-top: 5px;
}