#voiceflow-chat-root, 
.v-chat-widget, 
iframe[id^="voiceflow-"] {
    position: fixed !important;
    bottom: 20px !important;
    right: 90px !important;
    width: 450px !important;
    height: 600px !important;
    max-width: 90vw !important;
    max-height: 85vh !important;
    z-index: 999999 !important;
    display: block !important;
}


#voiceflow-chat-root *, 
.v-chat-widget * {
    text-align: left !important;
    box-sizing: border-box !important;
}

#voiceflow-chat-root img {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
}

/* Evita que el widget se salga de la pantalla en tablet/movil (mismo punto de
   quiebre que usa styles.css para el menu hamburguesa: 900px). */
@media (max-width: 900px) {
    #voiceflow-chat-root,
    .v-chat-widget,
    iframe[id^="voiceflow-"] {
        right: 12px !important;
        bottom: 12px !important;
        width: calc(100vw - 24px) !important;
        max-width: calc(100vw - 24px) !important;
        max-height: calc(100vh - 24px) !important;
    }
}