.inkka-whatsapp{

    position:fixed;

    right:22px;
    bottom:22px;

    width:64px;
    height:64px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:
    rgba(251,248,245,.55);

    backdrop-filter:
    blur(22px);

    -webkit-backdrop-filter:
    blur(22px);

    border:
    1px solid rgba(74,15,27,.12);

    box-shadow:
    0 12px 35px rgba(74,15,27,.10),
    0 0 40px rgba(74,15,27,.08);

    color:#4A0F1B;

    z-index:99999;

    transition:
    transform .3s ease,
    box-shadow .3s ease;

}

.inkka-whatsapp svg{

    width:30px;
    height:30px;

}

.inkka-whatsapp:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 45px rgba(74,15,27,.15),
    0 0 60px rgba(74,15,27,.12);

}

.inkka-whatsapp::before{

    content:"";

    position:absolute;

    inset:-15px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(74,15,27,.18) 0%,
        rgba(74,15,27,.08) 40%,
        transparent 75%
    );

    filter:blur(20px);

    z-index:-1;

}

@media(max-width:768px){

    .inkka-whatsapp{

        width:58px;
        height:58px;

        right:16px;
        bottom:16px;

    }

    .inkka-whatsapp svg{

        width:28px;
        height:28px;

    }

}