@keyframes widget-feedback-whatsapp-pulse {
    50% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(2, 2);
        opacity: 0;
    }
}

.widget-feedback-whatsapp {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25em;
    height: 1.25em;
    font-size: 3.5rem;
    border-radius: 50%;
    background-color: rgba(32, 176, 56, 0.2);
}

.widget-feedback-whatsapp.widget-feedback-whatsapp_fixed-bottom-right {
    position:fixed;
    right: 48px;
    bottom: 48px;
}

body:has(.b24-widget-button-visible) .widget-feedback-whatsapp.widget-feedback-whatsapp_fixed-bottom-right {
    bottom: 136px;
}

.widget-feedback-whatsapp .widget-feedback-whatsapp__pulse {
    position: absolute;
    inset: calc(0.125em + 1px);
    border: 1px solid rgb(32, 176, 56);
    border-radius: 50%;
    z-index: -1;
    animation-name: widget-feedback-whatsapp-pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease;
    animation-delay: 0.5s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
}

.widget-feedback-whatsapp .widget-feedback-whatsapp__link {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
}

.widget-feedback-whatsapp svg {
    width: 1em;
    height: 1em;
}