#floaty-copyright{
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    background: black;
    line-height: 24px;
    margin-left: -24px;
    text-align: center;
    font-size: 20px;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s ease, background-color 0.2s ease;
    z-index: 9999999;
}
#floaty-copyright:hover{
    opacity:1 !important;
    pointer-events: auto !important;
    opacity: 0.8;
}
#floaty-copyright.open{
    border-radius: 0 12px 12px 0;
}
#floaty-copyright.open:after{
    content:attr(title);
    display:block;
    position: absolute;
    right: 0;
    top: 0;
    background:black;
    color: white;
    font-size:12px;
    line-height: 16px;
    padding: 4px 32px 4px 16px;
    min-width: 240px;
    text-align:left;
    border-radius: 12px;
    z-index: -1;
}