@-webkit-keyframes pulseChatPravaler {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(#ff6315);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

#chatbot-cta-ver-pravaler {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 80px;
    z-index: 1000000;
}

#chatbot-cta-ver-pravaler > #chatbot-btn-mundiale > .blc-01 {
    position: fixed;
    bottom: 90px;
    right: 12px;
    z-index: 1041;
}

#chatbot-cta-ver-pravaler > #chatbot-btn-mundiale > .blc-01 > .blc-02 {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: visible;
    opacity: 1;
    bottom: 0;
    right: 0;
    position: absolute;
    background: #ff6315;
    width: 56px;
    height: 56px;
    border-radius: 100%;
    padding: 0;
    border: solid 2px #ff6315;
    box-shadow: 0 0 0 #ff6315;
    -webkit-animation-name: pulseChatPravaler;
    animation-name: pulseChatPravaler;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

#chatbot-cta-ver-pravaler > #chatbot-btn-mundiale > .blc-01 > .blc-02 > img {
    width: 40px;
    height: 40px;
}

#chatbot-cta-ver-pravaler > #chatbot-btn-mundiale > .blc-01 > .blc-02 > .title {
    display: none;
    color: #000;
    text-align: left;
    font-family: sans-serif;
    line-height: 21px;
    font-weight: 600;
    font-size: 13px;
    position: absolute;
    right: 74px;
    top: 17px;
    white-space: nowrap;
    background: rgb(255 255 255 / 0.9);
    padding: 4px 10px;
    border-radius: 3px;
    box-shadow: 1px 1px 1px #b0b0b0;
    width: auto;
}

/* Regra especial aplicada para a estrutura da MUNDIALE */
body #blip-chat-container > #chatbot-cta > #chat-dots {
    bottom: 90px;
}

#chatbot-cta-ver-pravaler #loading-spin {
    display: none;
    align-self: center;
    margin: 15px;
    border-radius: 50%;
    -webkit-animation: 2.4s linear infinite loading-spin;
    animation: 2.4s linear infinite loading-spin;
    width: 30px;
    height: 30px;
    border-top: 4px solid #fff;
    border-right: 4px solid transparent;
    position: absolute;
    left: calc(50% - 30px);
}

@keyframes loading-spin {
    0% {
      transform: rotate(0deg);
      border-color: #fff;
    }
    25%,
    75% {
      transform: rotate(360deg);
    }
    25.001%,
    75.001%,
    50.001% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(360deg);
      border-color: #fff;
    }
    100% {
      transform: rotate(360deg);
      border-color: #fff;
    }
}

@media (min-width: 992px) {

    #chatbot-cta-ver-pravaler > #chatbot-btn-mundiale > .blc-01 {
        bottom: 20px;
    }

    /* Regra especial aplicada para a estrutura da MUNDIALE */
    body #blip-chat-container > #chatbot-cta > #chat-dots {
        bottom: 20px;
    }
}