﻿.float-action-area .float {
    position: fixed;
    /* width: 60px;
    height: 60px;*/
    bottom: 0px;
    left: 10px;
    /*background-color: #25D366;*/
    color: #FFF;
    /*border-radius: 50px;*/
    text-align: center;
    /* box-shadow: 2px 2px 3px #999;*/
    z-index: 10005;
    animation: bot-to-top 2s ease-out;
}

    .float-action-area .float i {
        font-size: 1.3em;
        margin-top: 18px;
    }

.float-action-area ul {
    position: fixed;
    left: 0;
    padding-bottom: 10px;
    bottom: 50px;
    z-index: 1000;
}

    .float-action-area ul li {
        list-style: none;
        margin-bottom: 10px;
        background-color: #40c351;
        border-radius: 10px;
        box-shadow: 2px 2px 3px #999;
        display: flex;
        align-items: center;
        vertical-align: text-top;
        line-height: 24px;
    }

        .float-action-area ul li a {
            color: #FFF;
            text-align: center;
            vertical-align: middle;
            font-size: 1.2em;
            text-decoration: none;
            padding: 15px;
        }

            .float-action-area ul li a i {
                font-size: 20px;padding: 5px;
            }

    .float-action-area ul:hover {
        visibility: visible !important;
        opacity: 1 !important;
    }

.float-action-area a.menu-share + ul {
    visibility: hidden;
}

.float-action-area a.menu-share:hover + ul {
    visibility: visible;
    animation: scale-in 0.5s;
}

.float-action-area a.menu-share i {
    animation: rotate-in 0.5s;
}

.float-action-area a.menu-share:hover > i {
    animation: rotate-out 0.5s;
}

.float-action-area a.menu-call {
    color: #fff;
    font-size: 23px;
    font-weight: bold;
}

@keyframes bot-to-top {
    0% {
        bottom: -40px
    }

    50% {
        bottom: 0px
    }
}

@keyframes scale-in {
    from {
        transform: scale(0);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotate-in {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-out {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@media (max-width: 992px) {
    .float-action-area .float img {
        width: 190px;
    }
}
