/*
 * =========================================================
 * SpeedaCure Quick WhatsApp Floating Button
 * =========================================================
 */

.sc-floating-whatsapp-v2 {
    position: fixed;

    right: 18px;
    bottom: 112px;

    z-index: 9998;

    min-height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    padding: 0 16px;

    border: 1px solid #128a58;
    border-radius: 999px;

    background: #ffffff;

    color: #128a58;

    box-shadow:
        0 6px 18px
        rgba(18, 80, 60, .12);

    font-size: 12px;
    font-weight: 850;

    text-decoration: none;

    white-space: nowrap;

    transition:
        background-color .16s ease,
        color .16s ease,
        transform .16s ease,
        box-shadow .16s ease;
}


.sc-floating-whatsapp-v2:hover,
.sc-floating-whatsapp-v2:focus-visible {
    background: #128a58;

    color: #ffffff;

    transform: translateY(-1px);

    box-shadow:
        0 8px 22px
        rgba(18, 138, 88, .20);
}


.sc-floating-wa-icon {
    width: 20px;
    height: 20px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 20px;
}


.sc-floating-wa-icon svg {
    display: block;

    width: 20px;
    height: 20px;

    stroke: currentColor;
}


/*
 * Mobile
 */

@media (max-width: 600px) {

    .sc-floating-whatsapp-v2 {
        right: 12px;
        bottom: 108px;

        min-height: 38px;

        padding: 0 13px;

        font-size: 11px;
    }


    .sc-floating-wa-icon,
    .sc-floating-wa-icon svg {
        width: 18px;
        height: 18px;
    }
}
