/**support**/
CSS
.btn-shake:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

.btn-shake:hover {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%, 90% {
        transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
        transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
        transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
        transform: translate3d(4px, 0, 0);
    }
}

#ntg-call-bottom .box-support-mobile {
    display: none;
}

#ntg-call-bottom .box-support a {
    display: block;
    margin: 10px 0;
    position: relative;
    transition: 0.3s ease-in-out;
}
#ntg-call-bottom .box-support a img {
    transition: 0.3s ease-in-out;
}
#ntg-call-bottom .box-support a  img.img_icon_bot{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

#ntg-call-bottom .box-support a:hover img {
    animation-name: shake;
    cursor: pointer;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: reverse;
}

#ntg-call-bottom .box-support .aml-tooltiptext {
    background-image: linear-gradient(180deg, #4fc3f7 0%, #0277bd 100%);
    color: #fff;
}



#ntg-call-bottom .box-support a:hover .aml-tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 900px) {
    #ntg-call-bottom .box-support {
        display: none;
    }

    #ntg-call-bottom .box-support-mobile {
        display: block;
    }

    div#ntg-call-bottom {
        justify-content: center !important;
        text-align: center;
        background: #fff;
        padding: 5px 16px;
        position: fixed;
        bottom: 0px;
        width: 100%;
        z-index: 9999;
        box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.1);
    }

    div#ntg-call-bottom .box-support-mobile a {
        width: 19% !important;
        margin: 0.00px !important;
        display: inline-block;
    }

    div#ntg-call-bottom .box-support-mobile a img {
        width: 30px;
        height: 30px;
        margin: auto;
        display: block;
    }
    div#ntg-call-bottom .box-support-mobile a img.img_icon_bot
    {

        width: 50px;
        height: 50px;
        border-radius: 50%;
    }
    div#ntg-call-bottom .box-support-mobile a span {
        color: #6c738d;
        font-size: 11px !important;
        text-align: center;
        display: block;
    }

}