#chat-widget {
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 99999;
}

#chat-widget-button {
    width: 55px;
    height: 55px;
    background: #ce1e47 !important;
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: 0.3s;
}

#chat-window {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
}

#chat-widget iframe {
    border-radius: 4px !important;
    width: 430px !important;
}

#chat-widget-button img {
    width: 30px;
    height: 30px;
}

#chat-widget-button::before, #chat-widget-button::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #CE1E47;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    animation-delay: 0s;
    animation-delay: 0s;
    opacity: 0;
    backface-visibility: hidden;
  }

#chat-widget-button:after{
    animation-delay: .5s;
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 480px) {
    #chat-window {
        right: -3px;
        bottom: 40px;
    }

    #chat-widget iframe {
  border-radius: 4px !important;
  width: 340px !important;
}

#chat-widget {
  position: fixed;
  bottom: 80px;
  right: 10px;
  z-index: 99999;
}

#chat-widget-button {
    width: 40px;
  height: 40px;
}

#chat-window iframe {
    height: 600px !important;
}

#chat-widget-button img {
    width: 24px;
    height: 24px;
}

#chat-widget-button::before, #chat-widget-button::after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #CE1E47;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    animation-delay: 0s;
    animation-delay: 0s;
    opacity: 0;
    backface-visibility: hidden;
  }

}