/* Haravy Contact Buttons Styles - Version 3.1 */

.haravy-contact-buttons a {
    display: block;
    position: fixed;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease-in-out;
}

.haravy-contact-buttons a:hover {
    transform: scale(1.1);
}

#messengerbutton {
    bottom: 174px;
    background-size: 43px 43px;
    background-position: center;
    background-repeat: no-repeat;
}

#floating-sms {
    bottom: 122px;
    background-color: #05a3e5;
    background-size: 43px;
    background-position: center;
    background-repeat: no-repeat;
}

#floating-phone {
    bottom: 70px;
    background-color: #46C11E;
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
}

.haravy-animated a {
    animation: haravy-shake 2.5s infinite;
}

@keyframes haravy-shake {
    0%, 50%, 100% {
        transform: rotate(0deg);
    }
    5%, 15%, 25%, 35%, 45% {
        transform: rotate(13deg);
    }
    10%, 20%, 30%, 40% {
        transform: rotate(-13deg);
    }
}