.field-wrap {
    position: relative;
}

.field-clear {
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--input-border);
    color: var(--text-secondary);
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
}

.field-clear:hover {
    background: var(--accent);
    color: #fff;
}

.field-clear.visible {
    display: flex;
}