.tag-area {
    outline: none;
    width: 100%;
    border: 1px solid #e5e6e7;
    border-radius: 5px;
    transition: all 0.2s;
    cursor: text;
    display: flex;
    align-items: center;
    position: relative;
}

.label {
    position: absolute;
    background: #1f2023;
    padding: 0 0.3rem;
    color: #adadad;
    top: 22px;
    transition: all 0.1s;
}

.label-active {
    color: #8d29ff;
    font-size: 13px;
}

.tag-area ul {
    display: flex;
    align-items: center;
    padding-left: 0px;
    margin: 12px 6px;
    width: 100%;
    column-gap: 3px;
    flex-wrap: wrap;
    row-gap: 7px;
}


.tag {
    padding-left: 0.8rem;
    background-color: #386a80;
    border-color: #0d4c69;
    color: white;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tag-input {
    padding: 0.5rem;
    outline: none;
    border: none;
    margin-left: 0.5rem;
    background: transparent;
    font-size: 14px;
    /*color: #fff;*/
}

.cross {
    cursor: pointer;
    display: flex;
    margin-left: 0.5rem;
    justify-content: center;
    align-items: center;
    padding: 1.3rem;
    transform: rotate(45deg);
    border-radius: 50%;
    background-color: #0d4c69;
    border-color: #0d4c69;
}

.cross:hover {
    background-color: #386a80;
    border-color: #0d4c69;
}

.cross::before {
    content: "";
    width: 2px;
    height: 8px;
    position: absolute;
    background: rgb(255, 255, 255);
}

.cross::after {
    content: "";
    height: 2px;
    width: 8px;
    position: absolute;
    background: rgb(255, 255, 255);
}
