.gnc-whatsapp {
    bottom: 88px;
    position: fixed;
    right: 26px;
    z-index: 999;
}

.gnc-whatsapp__button {
    align-items: center;
    background: #25d366;
    border: 0;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(18, 140, 126, .28);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    height: 60px;
    justify-content: center;
    list-style: none;
    padding: 0;
    position: relative;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    width: 60px;
}

.gnc-whatsapp__button::after {
    animation: gncWhatsappPulse 2.8s ease-out infinite;
    border: 1px solid rgba(37, 211, 102, .5);
    border-radius: 50%;
    content: "";
    inset: -5px;
    position: absolute;
}

.gnc-whatsapp__button::-webkit-details-marker {
    display: none;
}

.gnc-whatsapp__button:hover {
    background: #1fbd5b;
    box-shadow: 0 14px 34px rgba(18, 140, 126, .34);
    transform: translateY(-1px);
}

.gnc-whatsapp__icon {
    align-items: center;
    display: flex;
    height: 34px;
    justify-content: center;
    letter-spacing: 0;
    position: relative;
    width: 34px;
    z-index: 1;
}

.gnc-whatsapp__icon svg {
    display: block;
    fill: currentColor;
    height: 34px;
    width: 34px;
}

.gnc-whatsapp__label {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.gnc-whatsapp__panel {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    bottom: calc(100% + 10px);
    box-shadow: 0 18px 40px rgba(9, 44, 73, .18);
    min-width: 230px;
    padding: 8px;
    position: absolute;
    right: 0;
}

@keyframes gncWhatsappPulse {
    0% {
        opacity: .7;
        transform: scale(.96);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

.gnc-whatsapp__link {
    color: #092c49;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    padding: 13px 14px;
    text-decoration: none;
}

.gnc-whatsapp__link:hover {
    background: #f2f6f4;
    color: #1f9d55;
}

@media (max-width: 991px) {
    .gnc-whatsapp {
        bottom: 24px;
        right: 18px;
    }
}

@media (max-width: 520px) {
    .gnc-whatsapp__button {
        height: 56px;
        width: 56px;
    }
}
