.form-content.expandible{
    height: auto;
}
.customInputTag{
    --tag-bg                  : transparent;
    --tag-remove-bg : transparent;
    width: 100%;
    min-height: 45px;
    border-radius: 8px;
    border: 1px solid #263238;    
    padding-top: 7px;
    padding-right: 5px;
    --tags-hover-border-color: #000;
    --tags-focus-border-color: #000;
    --placeholder-color-focus: rgba(38, 50, 56, .5);
}


.customInputTag:not(.tagify--focus) .tagify__input{
    position: absolute;
}

.customInputTag .tagify__input{
    padding-left: 12px;
    margin-left: 0;
}


.customInputTag .tagify__input.no-editable{
    display: none;
}

.customInputTag:focus-within {
    border-width: 2px;
}

.customInputTag .tagify__tag{
    border: 1px solid rgba(38, 50, 56, .5);
    border-radius: 3px;
    --tag-hover: transparent;
    --tag-remove-btn-bg: var(--color-01);
    --tag-remove-btn-bg--hover: var(--color-02);
}

.customInputTag:not(.tagify--empty) .tagify__input::before{
    content: "";
}

.customInputTag .tagify__input{
    min-width: 10px;
}

.customInputTag .tagify__tag__removeBtn {
    width: 16px;
    height: 16px;
}
.customInputTag .tagify__tag__removeBtn::after {
    content: url(/img/x.svg);    
}


.tagify__dropdown{
    background: white;
    
}
.tagify__dropdown__item{
    background: white;
    margin: 0;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
    color: #000;
}

.tagify__dropdown__item:hover{
    background: var(--color-02);
}

.customInputTag,
.customSuggestionsList{
    font-size: 1.2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.customSuggestionsList > div{
    max-height: 102px;
    overflow: auto;
    border-color: #000;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 5px;
    padding-bottom: 5px;
  }