.dropdown {
    display: flex;
    flex-direction: column;
}

.dropdown .dd-entry {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    padding-right: 1rem;
}

.dropdown .dd-entry input {
    border: none;
    flex: 1;
    outline-color: rgb(9, 61, 112);
}

.dropdown .dd-empty {
    padding: 1rem;
    background: white;
    position: relative;
    box-shadow: 1px 0.5px 15px #33333325;
}

.dropdown .dd-entry .tag {
    background: rgb(233, 233, 233);
    color: rgb(9, 61, 112);
    font-size: 14px;
    border-radius: 4px;
    padding: 0.2rem;
    margin-right: 1rem;
    margin-left: 1rem;
    margin-top: 0.1rem;
    margin-bottom: 0.1rem;
}

.dropdown .dd-list {
    padding: 1rem;
    background: white;
    position: relative;
    box-shadow: 1px 0.5px 15px #33333325;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dropdown .dd-list .value {
    color: rgb(9, 61, 112);
    font-size: 12px;
    transition: 0.4s;
}

.dropdown .dd-list .value:hover {
    cursor: pointer;
    opacity: 0.5;
}

.dropdown .hide {
    display: none;
}