/**call*/
.fab {
    transition: all 120ms ease-in-out;
    width: 56px !important;
    height: 56px !important;
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 30px !important;
    bottom: 18px !important;
    user-select: none;
    cursor: pointer;
    color: #FF9500;
    font-size: 5em;
    border: 1px solid #f2f2f2;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 8%), 0px 3px 10px rgb(0 0 0 / 8%);
}

.inner-fabs {
    display: none;
}

.roundCool {
    border-radius: 50%;
    z-index: 99999999;
}

.call-animation {
    background: #fff;
    width: 135px;
    height: 135px;
    position: relative;
    margin: 0 auto;
    border-radius: 100%;
    border: solid 5px #fff;
    animation: play 2s ease infinite;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

div#main-fab {
    right: 30px !important;
    position: fixed;
    bottom: 30px !important;
}

.fab::before {
    content: attr(data-tooltip);
    transition: opacity 120ms cubic-bezier(0.4, 0, 1, 1);
    position: absolute;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 1px 2px rgb(0 0 0 / 15%);
    color: #333333;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FFD057;
    font-size: .6em;
    line-height: 1.2em;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    border-radius: 15px;
    padding: 7px 32px 6px 18px;
    max-width: 200px;
    text-overflow: ellipsis;
    vertical-align: middle;
    font-family: "Roboto";
}

.img-circle {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
}

.inner-fabs .fab {
    display: flex;
    text-align: center;
    width: 48px;
    height: 48px;
    right: 35px;
    bottom: 23px;
    font-size: 1.5em;
    will-change: bottom;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 4%), 0px 3px 10px rgb(0 0 0 / 4%);
}

.inner-fab-icon {
    margin: 0px !important;
    height: 40px;
    width: 40px;
}

.inner-fabs .fab {
    width: 48px;
    height: 48px;
    right: 35px;
    bottom: 23px;
    font-size: 1.5em;
    will-change: bottom;
    box-shadow: 0px 3px 10px rgb(0 0 0 / 4%), 0px 3px 10px rgb(0 0 0 / 4%);
}

.inner-fabs.show {
    display: block
}

.inner-fabs.show .fab::before {
    content: attr(data-tooltip);
    visibility: visible;
    opacity: 1;
    overflow: hidden;
}

.inner-fabs.show .fab:nth-child(1) {
    bottom: 110px !important;
}

.inner-fabs.show .fab:nth-child(2) {
    bottom: 180px !important;
}

.inner-fabs.show .fab:nth-child(3) {
    bottom: 245px !important;
}

.inner-fabs.show .fab:nth-child(4) {
    bottom: 315px !important;
}

.inner-fabs.show + .fab i {
    transform: rotate(135deg);
}

div#main-fab:before {
    display: none;
}

@keyframes play {
    0% {
        transform: scale(1);
    }
    15% {
        box-shadow: 0 0 0 5px rgb(0 0 0 / 40%);
    }
    25% {
        box-shadow: 0 0 0 10px rgb(0 0 0 / 40%), 0 0 0 20px rgb(0 0 0 / 20%);
    }
    25% {
        box-shadow: 0 0 0 15px rgb(0 0 0 / 40%), 0 0 0 30px rgb(0 0 0 / 20%);
    }
}