/* Добавление элемента копирования телефона и почты */
.copy-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    line-height: normal;
}

.copy-icon {
    display: flex;
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: .6;
    transition: .2s;
    position: relative;
}

.copy-wrapper .copy-icon svg path {
    fill: #63b56d;
}

.copy-icon:hover {
    opacity: 1;
}

.copy-tooltip {
    position: absolute;
    bottom: 140%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
}

.copy-icon:hover .copy-tooltip {
    opacity: 1;
}

.t-btnflex__text {
    user-select: text;
}