.sticky-wa-container {
    position: fixed;
    z-index: 99999;
    transition: all 300ms ease;
    /* Reset opposite side */
    left: auto;
    right: auto;
}

.sticky-wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 300ms ease;
}

.sticky-wa-icon svg {
    width: 50%;
    height: 50%;
    fill: white;
}

.sticky-wa-icon:hover {
    transform: scale(1.1);
}