.tooltip {
    position: absolute;
    background: var(--black);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 12px;
    top: 32px;
    right: -5px;
    width: 300px;
    display: none;
    z-index: 3;
    pointer-events: none;
}

.tooltip-btn:hover .tooltip {
    display: block;
}

.tooltip-btn:hover {
    z-index: 3;
}

.tooltip::before {
    content: "";
    z-index: 3;
    position: absolute;
    top: -4px;
    right: 4%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid var(--black);
}

.tooltip-btn {
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    position: absolute;
    z-index: 1;
    right: 8px;
    top: 5px;
    background: var(--white);
    border: 1px solid var(--light);
    padding: 8px;
    display: flex;
    align-items: center;
    color: var(--gray);
    column-gap: 2px;
    margin-left: auto;
    line-height: 17px;
}

.tooltip-btn i {
    font-size: 16px;
    color: var(--primary);
}

.my_page .profile_form_item {
    position: relative;
}
