.copy-url-balloon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    margin: 1.5em 0;
    padding: 0px 7px;
    min-height: 50px;
    min-width: 120px;
    max-width: none !important;
    background: #555;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}
.copy-url-balloon::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #555;
}
.copy-url-balloon-fadeout {
    -webkit-transition: linear 1s 1.5s;
    -moz-transition: linear 1s 1.5s;
    -ms-transition: linear 1s 1.5s;
    -o-transition: linear 1s 1.5s;
    transition: all linear 0.5s 1s;
    opacity: 0 !important;
}
.copy-url-balloon p {
    color: #fff !important;
    font-size: 12px !important;
    margin: 5px !important;
}
