.whatsapp-bt {
    position: absolute;
    z-index: 99;
    top: 52px;
}

.whatsapp-bt:hover a i {
    color: #fff;
}

.call-btn {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 99;
    transition: all 0.4s ease-out;
}

.meeting-btn {
    position: absolute;
    top: -132px;
    left: -78px;
    z-index: 99;
    transform: rotate(-90deg) translateX(0%);
}

.call-icon {
    background: #0c009d;
    border-radius: 5px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border: 1px solid #fff;
}

.meeting-icon {
    background: #0585eb;
    border-radius: 0px 0px 5px 5px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 12px;
    font-size: 19px;
    line-height: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    color: #fff;
    border: 1px solid #fff;
}

.call-icon i {
    color: #fff;
    animation: phoneani 1s ease infinite;
    font-size: 16px;
    margin: 0;
}

.meeting-icon i {
    color: #fff;
    animation: phoneani 1s ease infinite;
    font-size: 16px;
    margin: 0;
}

@keyframes phoneani {
    0% {
        transform: translateX(0%);
    }
    15% {
        transform: translateX(-12%) rotate(-5deg);
    }
    30% {
        transform: translateX(10%) rotate(3deg);
    }
    45% {
        transform: translateX(-8%) rotate(-3deg);
    }
    60% {
        transform: translateX(6%) rotate(2deg);
    }
    75% {
        transform: translateX(-3%) rotate(-1deg);
    }
    100% {
        transform: translateX(0%);
    }
}

.whatsapp_click {
    height: 42px;
    width: 42px;
    z-index: 11;
    opacity: 1;
    overflow: hidden;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    background: #27b336;
    border-radius: 5px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #27b336;
    border: 1px solid #fff;
}

.whatsapp_click i {
    color: #fff;
    font-size: 22px;
    animation: phoneani 1s ease infinite;
}

.call-btn .show_btn {
    position: fixed;
    bottom: 20px;
    left: 20px !important;
    display: none;
}

.call-btn .show_btn .show_icon {
    z-index: 11;
    opacity: 1;
    pointer-events: all;
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, .06), 0 2px 32px 0 rgba(0, 0, 0, .16);
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff;
    width: 50px;
    position: fixed;
    bottom: 20px;
    background: linear-gradient(1deg, rgb(11, 0, 154) 0%, rgb(5, 133, 235) 100%);
    border-radius: 50px;
    height: 50px;
    text-align: center;
    overflow: inherit;
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 2s;
    -moz-animation-name: grow;
    -moz-animation-duration: 3s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
}

.call-btn .show_btn .show_icon span {
    color: #fff;
    background: linear-gradient(1deg, rgb(11, 0, 154) 0%, rgb(5, 133, 235) 100%);
    width: 42px;
    border-radius: 40px;
    border: 2px solid #fff;
    height: 42px;
}

.call-btn .show_btn .show_icon i {
    font-size: 23px;
    line-height: 34px;
    animation: phoneani 2s ease infinite;
}

.call-btn.active {
    left: 0;
    transition: all 0.4s ease-out;
}

@-webkit-keyframes grow {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
        background-color: linear-gradient(1deg, rgb(11, 0, 154) 0%, rgb(5, 133, 235) 100%);
    }
    100% {
        transform: scale(1);
    }
}

@media only screen and (max-width: 575px) {
    .call-btn .show_btn {
        display: block;
    }
    .call-btn {
        left: -43px;
    }
}