.social-float {
    position: fixed;
    width: 80px;
    height: 80px;
    bottom: 130px;
    right: 35px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

@keyframes socialIconBlinker {
    15% {
        opacity: 0;
    }
}

.social-icon-float {
    height: 80px;
    width: 80px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 55px;
}

.social-icon-float:hover {
    animation: socialIconBlinker 1s linear infinite;
}
