.dropdown_opt_container {
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 100%;
    height: fit-content;
}

.dropdown_opt_input {
    font-size: var(--fs-14);
    color: var(--text);
    display: flex;
    align-items: center;
    background-color: var(--light-100);
    border: 0px solid var(--outline);
    border-radius: 4px;
    padding: 8px 10px 8px 12px;
    box-shadow: var(--elevation-000);
    width: 100%;
}

.dropdown_opt_input > svg {
    pointer-events: none;
    margin-left: auto;
    min-width: 14px;
    transition: var(--short) linear;
}

.dropdown_opt_input > span {
    pointer-events: none;
}

.dropdown_opt_select {
    position: absolute;
    font-size: var(--fs-12);
    width: fit-content;
    white-space: nowrap;
    height: fit-content;
    max-height: calc(2.5em * 8);
    margin-top: 10px;
    left: 0px;
    box-shadow: var(--elevation-100);
    border-radius: 4px;
    background-color: var(--light-100);
    z-index: 10;
    overflow-y: scroll;
    transition: var(--short);
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.dropdown_opt_select > div {
    width: 100%;
    padding: 8px 12px 8px 12px;
    cursor: pointer;
    display: flex;
    height: 2.5em;
    transition: var(--short);
    color: var(--text);
}

.dropdown_opt_select > div:hover {
    background: var(--secondary);
    color: var(--title);
}

.dropdown_opt_select > div:first-child {
    border-radius: 4px 4px 0px 0px;
}

.dropdown_opt_select > div:last-child {
    border-radius: 0px 0px 4px 4px;
}
