.label-container {
    position: fixed;
    bottom: 48px;
    right: 105px;
    display: table;
    visibility: hidden;
}

.label-text {
    color: #FFF;
    background: rgba(51, 51, 51, 0.5);
    display: table-cell;
    vertical-align: middle;
    padding: 10px;
    border-radius: 3px;
}

.label-arrow {
    display: table-cell;
    vertical-align: middle;
    color: #333;
    opacity: 0.5;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #00b9e5;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    z-index: 9;
    animation-name: mymove1;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes mymove1 {
    from {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 0px;
        background-color: #00b9e5;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        z-index: 9;
    }

    to {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
        background-color: #00b9e5;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        z-index: 9;
    }
}

.float2 {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    z-index: 9;
    animation-name: mymove2;
    animation-duration: 0.7s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes mymove2 {
    from {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 90px;
        right: 0px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        z-index: 9;
    }

    to {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 90px;
        right: 20px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        z-index: 9;
    }
}

.my-float {
    font-size: 24px;
    margin-top: 18px;
    color: white;
}

.my-float2 {
    width: 38px;
    margin-top: 10px;
    margin-left: 0px;
}

a.float+div.label-container {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

a.float:hover+div.label-container {
    visibility: visible;
    opacity: 1;
}

#notification {
    position: fixed;
    height: 42px;
    bottom: 97px;
    z-index: 100;
    right: 85px;
    white-space: nowrap;
    font-size: 17px;
    line-height: 17px;
    border-radius: 16px;
    padding: 10px 15px;
    box-shadow: rgb(0 18 46 / 24%) 0px 6px 32px 0px;
    background: rgb(255, 255, 255);
    animation-name: mymove;
    animation-duration: 1s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes mymove {
    from {
        position: fixed;
        height: 42px;
        bottom: 0px;
        z-index: 100;
        right: 85px;
        white-space: nowrap;
        font-size: 17px;
        line-height: 17px;
        border-radius: 16px;
        padding: 10px 15px;
        box-shadow: rgb(0 18 46 / 24%) 0px 6px 32px 0px;
        background: rgb(255, 255, 255);
    }

    to {
        position: fixed;
        height: 42px;
        bottom: 97px;
        z-index: 100;
        right: 85px;
        white-space: nowrap;
        font-size: 17px;
        line-height: 17px;
        border-radius: 16px;
        padding: 10px 15px;
        box-shadow: rgb(0 18 46 / 24%) 0px 6px 32px 0px;
        background: rgb(255, 255, 255);
    }
}