.wpp-button {
    border-radius: 30px;
    background-color: #25d366;
    position: fixed;
    right: 33px;
    bottom: 150px;
    z-index: 999;
}

.b24-widget-button-position-bottom-right {
    bottom: 90px !important;
    right: 33px !important;
}

.b24-widget-button-block {
    height: 42px !important;
    width: 42px !important;
}

.b24-widget-button-inner-mask {
    height: 60px !important;
    min-width: 60px !important;
}

.b24-widget-button-inner-block {
    height: 42px !important;
    width: 42px !important;
}

.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    z-index: 9999;
}

.btn-accept {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
}

.btn-deny {
    background-color: #dc3545;
    color: #fff;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    margin-left: 10px;
}

.fake-bitrix-btn {
    position: fixed;
    bottom: 90px;
    right: 33px;
    width: 45px;
    height: 45px;
    background-color: #0b66c3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.fake-bitrix-btn:hover {
    transform: scale(1.05);
}

.esconder-botao {
    display: none !important;
}

.aviso-chat-balao {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    bottom: 160px;
    right: 25px;
    background-color: #333;
    color: #fff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    width: 250px;
    text-align: center;
    transition: opacity 0.3s, visibility 0.3s;
}

.aviso-chat-balao::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 22px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.aviso-chat-balao.mostrar {
    visibility: visible;
    opacity: 1;
}

.destaque-banner {
    animation: piscar 1s;
}

@keyframes piscar {
    0% {
        transform: scale(1);
        box-shadow: none;
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: none;
    }
}