#forcarRoleta {
    display: flex;
    border: 0;
    background: transparent;
    color: var(--textColor) !important;
    font-size: 13px;
    padding: 0;
    border-radius: 0;
    cursor: pointer;
    text-transform: capitalize;
    margin: 20px 0 0 0;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

#forcarRoleta b {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

button#forcarRoleta i {
    display: flex;
    font-size: 14px;
}

div#containerIframe.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #080909a1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 10px 0 0 0;
}

iframe#iframeIA.fullscreen {
    height: calc(100vh - 90px);
    margin: 0;
}

button#fullscreenButton {
    display: flex;
    gap: 5px;
    margin: 0;
    border-radius: 5px;
    width: auto;
    font-size: 13px;
    background: #16d572;
    padding: 3px 8px;
    font-weight: 600;
    color: #000000 !important;
    text-transform: capitalize;
    position: absolute;
    right: 20px;
    top: 10px;
}

button#fullscreenButton.fullscreen.active {
    width: auto !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
}

button#fullscreenButton i {
    display: inline-flex;
}

div#containerIframe {
    position: relative;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.app_coluna .roleta {
    text-align: center;
}

button#fullscreenButton i {
    animation: none;
    transition: none;
    transform: none;
}

.typing-dots {
    display: inline-flex;
    align-items: flex-end;
}

.typing-dots::after {
    content: "";
    display: inline-block;
    animation: typing 1.5s steps(3, end) infinite;
}

@keyframes typing {
    0% {
        content: "";
    }

    33% {
        content: ".";
    }

    66% {
        content: "..";
    }

    100% {
        content: "...";
    }
}

div#liveChat {
    position: relative;
}

.iconIa {
    width: 40px!important;
    height: 40px!important;
    border-radius: 50px!important;
    background: #ffffff0f!important;
    /* padding: 10px; */
    position: absolute!important;
    top: -5px!important;
    left: 0!important;
}

div#mensagemEnviadaContainer {
    position: relative;
    margin-left: 55px;
    min-height: 100px;
    padding: 22px 20px;
}

div#mensagemEnviada {
    font-size: 15px;
    display: block;
    line-height: 1.3;
}

.chat-bubble {
    background-color: #ffffff0f;
    border-radius: 0px 15px 15px 15px;
}

.chat-bubble::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -15px;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-bottom-color: #ffffff0f;
    border-top: 0;
    transform: rotate(-90deg);
}

.usuarioChat {
    font-weight: 600;
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 20px;
    margin-top: -10px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
}

@media screen and (max-width: 500px) {
    .usuarioChat {
        justify-content: space-between;
    }

}

span.statusChat {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 12px;
    color: #fff;
    font-weight: 500;
}

.pulsar-resultados {
    background: #1ee800;
    box-shadow: 0 0 0 0 rgb(154 239 166);
    animation: pulse-online 1s infinite;
}

.pulsar-resultados {
    text-align: center;
    border-radius: 50%;
    margin: 10px 3px 0px 8px;
    height: 7px;
    width: 7px;
    transform: scale(1);
    margin-top: 0px;
}

.offline .pulsar-resultados {
    background: #e80000!important;
    box-shadow: 0 0 0 0 rgb(239, 154, 154)!important;
    animation: pulse-offline 1s infinite!important;
}


@keyframes pulse-offline {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(230, 80, 80, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@keyframes pulse-online {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgb(133 230 80 / 70%);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

@media screen and (min-width: 690px) {
    .casa {
        max-width: 1040px;
    }
}

header .logo {
    max-width: var(--logo-games-size);
}

button#forcarRoleta b {
    font-size: 13px;
}

.sugestaoEntrada {
    display: flex;
    flex-direction: column;
}

.app_content.sugestaoEntrada .app {
    max-width: 100%!important;
    padding: 0;
    width: 100%;
}

.app_content.sugestaoEntrada {
    margin: 30px 0 0 0;
}