button.copy-value {
    background-color: unset;
    border: none;
    transition: all 0.3s;
    margin-left: 1rem;
}
button.copy-value .fa-share-alt {
    color: black;
    pointer-events: none;
}

.share-wrap {
    display: flex;
}
button.do-copy {
    position: relative;
}
button.do-copy:after {
    position: absolute;
    content: 'copied!';
    background-color: lightgrey;
    font-size: 10px;
    padding: 2px 10px;
    border-radius: 0.8rem;
    opacity: 0.8;
    border: 1px solid lightslategray;
    right: -40px;
    top: 11px;
}