﻿/**
 * @fileoverview  Archivo con los estilos para configurar el Chatbot Voltbot de Industrias Voltaic.
 * @version       styleChatbot v1.0.0 
 * Copyright      2023-2023 Voltaic
 * Supuestos      Se utiliza en conjunto con el archivo jsChatbot.js 
 * @autor         ETW. Gerardo Alejandro Ornelas Guerrero <gerardoa.ornelasguerrero@hotmail.com>
 * -----
 * History
 * v1.0.0 - Oct 2023 – Versión inicial de la Librería
 * -----
 * La primera versión de VoltBot fue escrita por Gerardo A. Ornelas Guerrero
 * Licensed under Voltaic Inc.
 */

.logoWhatsApp {
    z-index: 2000;
}

.logoWhatsApp:hover {
    opacity: 0.7;
}

.btnWhatsApp {
    position: fixed;
    bottom: 30px;
    right: 80px;
}

.chatbot {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 250px;
    height: 330px;
    background-color: white;
    z-index: 2100;
}

.chatbotHide {
    position: fixed;
    bottom: 0;
    right: 20px;
    width: 250px;
    height: 30px;
    background-color: white;
    z-index: 2100;
}

.textoChatbot {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    height: 80px;
    overflow-y: scroll;
    opacity: 1.0;
}

.textoChatbotDialogo {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    height: 150px;
    overflow-y: scroll;
    opacity: 1.0;
}

.textoChatbotInput {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
}

.TituloChatbot {
    background-color: darkgreen;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    width: 250px;
    height: 30px;
    vertical-align: central;
    padding-top: 5px;
}

.Bienvenidabot {
    border-radius: 8px;
    margin: 0;
    background-color: #D9FDD3;
    padding-left: 20px;
    width: 200px;
    float: right;
    z-index: 90;
    position: relative;
    top: -60px;
}

/* Posicionar imagen a la izquierda del texto de bienvenida */
/*URL: https://www.mclibre.org/consultar/htmlcss/css/css-posicionamiento-flotante.html#:~:text=Si%20se%20quiere%20que%20una,como%20muestran%20los%20ejemplos%20siguientes.*/
.robotIzquierdo {
    float: left;
    height: 60px;
    background-color: white;
}

.robotDerecho {
    float: left;
    height: 60px;
    z-index: 1200;
    position: relative;
    top: 0px;
    left: 0px;
}

.spanTextoBold {
    font-weight: bold;
    color: #2D8B45;
}

.spanTextoBoldVoltBot {
    font-weight: bold;
    color: #2D8B45; /* Verde */
}

.spanTextoBoldUsuario {
    font-weight: bold;
    color: #3784C4; /* Azul */
}

.closeIcon {
    width: 24px;
    float: right;
    margin-right: 5px;
    cursor: pointer;
}
