﻿

.whats-float {
    position: fixed;
    transform: translate(104px,0px);
    top: 81%;
    right: 0;
    width: 151px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 15px 0 0 15px;
    z-index: 10;
    transition: all 0.9s ease-in-out;
    vertical-align: middle
}

    .whats-float a span {
        color: white;
        font-size: 15px;
        padding-top: 8px;
        padding-bottom: 10px;
        position: absolute;
        line-height: 16px;
        font-weight: bolder;
    }

    .whats-float i {
        font-size: 30px;
        color: white;
        line-height: 30px;
        padding: 10px;
        transform: rotate(0deg);
        transition: all 0.5s ease-in-out;
        text-align: center;
    }

    .whats-float:hover {
        color: #FFFFFF;
        transform: translate(0px,0px);
    }

        .whats-float:hover i {
            transform: rotate(360deg);
        }






.call-float {
    position: fixed;
    transform: translate(104px,0px);
    top: 88%;
    right: 0;
    width: 150px;
    overflow: hidden;
    background-color: deepskyblue;
    color: #FFF;
    border-radius: 15px 0 0 15px;
    z-index: 10;
    transition: all 0.9s ease-in-out;
    vertical-align: middle
}

    .call-float a span {
        color: white;
        font-size: 15px;
        padding-top: 8px;
        padding-bottom: 10px;
        position: absolute;
        line-height: 16px;
        font-weight: bolder;
    }

    .call-float i {
        font-size: 30px;
        color: white;
        line-height: 30px;
        padding: 10px;
        transform: rotate(0deg);
        transition: all 0.5s ease-in-out;
        text-align: center;
    }

    .call-float:hover {
        color: #FFFFFF;
        transform: translate(0px,0px);
    }

        .call-float:hover i {
            transform: rotate(360deg);
        }
