/* Floating WhatsApp (Gemzie layout) */
.info-link {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 9990;
    margin: 40px;
}

.info-link.info-wp-link {
    left: auto;
    right: 0;
}

.info-link.info-wp-link a {
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    text-align: center;
    font-size: 28px;
    position: relative;
    text-decoration: none;
}

.info-link.info-wp-link a:hover {
    color: #fff;
}

.info-link.info-wp-link a i {
    line-height: 50px;
    transition: transform 0.3s ease;
}

.info-link.info-wp-link a:hover i {
    animation: quick-alo-circle-img-anim 1s infinite ease-in-out;
}

.info-link.info-wp-link a::before,
.info-link.info-wp-link a::after {
    border-radius: 50%;
    position: absolute;
    content: "";
    border: solid 2px #25d366;
    left: 0;
    top: 0;
    transform: scale(1);
    opacity: 0.5;
    animation: sonarEffectNew 1.5s ease-out infinite;
}

.info-link.info-wp-link a::before {
    height: 50px;
    width: 50px;
}

.info-link.info-wp-link a::after {
    height: 90px;
    width: 90px;
    left: -20px;
    top: -20px;
    opacity: 0;
    animation: sonarEffectNew 1.5s ease-out 2s infinite;
}

.info-link .info_label {
    position: absolute;
    right: 100%;
    left: auto;
    top: 10px;
    background: #111;
    border-radius: 5px;
    padding: 8px 10px;
    color: #fff;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0 42px 0 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, margin 0.35s ease, visibility 0.35s;
    z-index: 5;
    pointer-events: none;
}

.info-link.info-wp-link:hover .info_label {
    visibility: visible;
    margin: 0 12px 0 0;
    opacity: 1;
}

.info-link .info_label::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -4px;
    margin: auto 0;
    width: 8px;
    height: 8px;
    background: #111;
    transform: rotate(45deg);
}

@keyframes sonarEffectNew {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

@keyframes quick-alo-circle-img-anim {
    0% {
        transform: rotate(0) scale(1);
    }
    10% {
        transform: rotate(-12deg) scale(1);
    }
    20% {
        transform: rotate(12deg) scale(1);
    }
    30% {
        transform: rotate(-12deg) scale(1);
    }
    40% {
        transform: rotate(12deg) scale(1);
    }
    50%,
    100% {
        transform: rotate(0) scale(1);
    }
}

@media (max-width: 767px) {
    .info-link {
        margin: 20px;
    }
}
