#copy-url-message {
    padding: 21px;

    position: fixed;
    /* top: 0; */
    bottom: 0;
    right: 0;
    
    border: 1px solid #B08F76;
    background: #fff;

    transition: all .35s ease-in-out;

    z-index: 99999;
    /* opacity: 0.7; */
}

#copy-url-message.active {
    transform: translateY(0);
    opacity: .7;
}

#copy-url-message:not(.active) {
    transition: all .75s ease-in-out;
    
    transform: translateY(400px);
    opacity: 0;
}