/*
You can import external fonts to your CSS using @import method, like:
@import url('https://fonts.googleapis.com/css?family=Roboto');
             */
/* Dialog main screen background              */
.image_background_chat {
  background: url();
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* Color font chat              */
.color_background_chat {
  background-color: white;
}
/* Bot's message container              */
.message_bot {
  background-color: #70c2b2;
  border-radius: 10px;
}
/* Bot's message              */
.text_bot {
  color: #ffffff;
  font-size: 16px;
  font-family: trebuchet,sans-serif;
}
/* Bot's avatar arrow              */
.message_bot_seta {
  border-right: 6px solid #70c2b2;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
/* User message container              */
.message_user {
  font-size: 17px;
  text-align: center;
  background-color: wheat;
  border: 0px black solid;
  width: calc(84% - 50px);
  padding: 5px 10px;
}
/* VISITOR'S PRESENTATION              */
/* User's message '             */
.text_user {
  color: black;
  font-size: 1em;
  font-family: sans-serif;
}
/* User's avatar arrow              */
.message_user_seta {
  border-left: 9px solid wheat;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
/* User's avatar'              */
.avatar_user {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: cover;
  position: relative;
  float: right;
  border: solid 0px silver;
  background: url(images/account.png) center center no-repeat;
}
/* LIST ITEMS              */
/* List items container              */
.container_list {
  width: 98%;
  border: 0px red solid;
}
/* Items to be selected by visitor (lists)               */
#itens_list {
  margin-top: 3px;
  float: left;
  margin-left: 3px;
  background-color: #3a9dbe;
  color: white;
  text-align: center;
  cursor: pointer;
  width: auto;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
/* MULTIPLE CHOICE              */
/* Multiple choice container              */
.container_multiple {
  width: 98%;
  margin-left: auto;
  margin-right: auto;
}
/* Items to be selected by visitor (without images)              */
.itens_multiple {
  margin-top: 5px;
  float: left;
  margin-left: 3px;
  background-color: #f3f3f3;
  color: #808080;
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-family: trebuchet,sans-serif;
  font-size: 16px;
  border-radius: 10px;
}
/* CAROUSEL              */
/* Carrousel container              */
.carousel {
  width: calc(100% - 50px);
  height: 350px;
  float: left;
}
/* Name of each carrousel item, used in the multi-choice component              */
.label_carrousel_image {
  color: white;
  background-color: blue;
  text-align: center;
  cursor: pointer;
  height: auto;
  width: auto;
  padding-top: 6px;
  padding-bottom: 0px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Description of the carrousel item used in the multi-choice component              */
.description_carrousel {
  width: 260px;
  height: auto;
  font-size: 13px;
  cursor: default;
  color: black;
}
/* Labels of carrousel items (url name, proceed and back)              */
.title_carrousel_image {
  color: blue;
  font-size: 12px;
  cursor: pointer;
  display: grid;
}
/* TYPING AREA              */
/* Send message button (class)              */
.button_message {
  background-color: lightcoral;
}
/* Send message button (id)              */
#sendButton {
  background-image: url('images/send_chat.png');
  background-repeat: no-repeat;
  cursor: pointer;
  background-position-x: 4px;
  background-position-y: 3px;
  float: right;
  margin-left: 10px;
  padding: 11px !important;
  width: 32px;
  height: 30px;
  border-radius: 0% !important;
  background-size: 25px;
}
/* Text field for user input              */
.field_user {
  margin: 5px 10px 3px 0px !important;
  height: 30px;
  padding-left: 5px !important;
  width: 50% !important;
  float: right;
}
/* GENERAL              */
/* Container to store your facebook and gmail login options (facebook and google images)              */
#container_login {
  border: 0px red solid;
  width: 99%;
  margin-top: 10px;
}
/* Start chat button              */
.button_start {
  background-color: #f3f3f3;
  width: auto;
  height: auto;
  color: #808080;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-family: trebuchet,sans-serif;
  color: white;
  font-size: 16px;
  border-radius: 10px;
}
/* Button to restart dialog              */
.button_proceed {
  background-color: #3a9dbe;
  margin-top: 6px;
  float: left;
  margin-left: 3px;
  color: white;
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Chat structure              */
body {
  border: 0px red solid;
  overflow: auto;
}
/* Image simulating a bot typing a message              */
.icon_typing {
  float: left;
  border-color: blue;
  border-width: 0px;
  border-style: solid;
  height: 35px;
  width: 55px;
  background-size: cover;
}
/* Close button in embbeded plugin dialog (deprecated)              */
.button_finish {
  background-color: #3a9dbe;
  margin-top: 6px;
  float: left;
  margin-left: 3px;
  color: white;
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Used on all buttons changing the color after clicking              */
.button_clicked {
  background-color: #f3f3f3 !important;
  border: none !important;
  font-family: trebuchet,sans-serif !important;
  font-size: 16px !important;
  color: #808080 !important;
  border-radius: 10px !important;
}
/* Applied to user text after message is sent              */
.text_clicked {
  font-style: italic;
}
/* Used in all option boxes applied after clicking (clicked)              */
.btn_multiple_click {
  background-color: #f3f3f3;
  color: #808080;
  text-align: center;
  cursor: pointer;
  height: auto;
  width: auto;
  margin-left: 3px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  font-family: trebuchet,sans-serif;
  font-size: 16px;
  border-radius: 10px;
}
/* QUALIFICATION              */
/* Container of the qualification              */
.option_qualification {
  background-color: lightskyblue;
  height: auto;
}
/* Button to start the qualification              */
.button_continue {
  background-color: #3a9dbe;
  float: left;
  margin-left: 3px;
  color: white;
  text-align: center;
  cursor: pointer;
  width: auto;
  height: auto;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
/* Qualification options              */
.templateQualification {
  margin-top: 3px;
  float: left;
  margin-left: 3px;
  background-color: #3a9dbe;
  color: white;
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
}
/* INTERACTIVE PUBLISHING              */
/* General exhibition area for interactive publishing              */
.content_dynamic {
  width: 59%;
  margin-left: 20.5%;
  margin-right: 20.5%;
  color: #000000;
  font-family: 'trebuchet ms,geneva';
  font-size: 19px;
  line-height: 1.5;
}
/* Container of information exhibition              */
.content_information {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 0px;
}
/* KNOWLEDGE BASE              */
/* Container to display article's items found in the knowledge base              */
.container_knowledge {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
  border: 0px red solid;
  /*width:98%;*/
  width: auto;
  display: table;
}
/* Item of each article found in the knowledge base              */
.knowledge {
  float: left;
  margin-left: 3px;
  background-color: #3a9dbe;
  color: white;
  width: auto;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 3px;
}
/* BOT'S PRESENTATION              */
/* BOT's avatar              */
.avatar_bot {
  background-size: cover;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin: 0 7px 0 0;
  position: relative;
  border: solid 0px silver;
  float: left;
}
/* BACKGROUND HTML              */
html {
  background: white;
  font-family: sans-serif;
}
/* Input message              */
#inputMessage {
  width: 95%;
  margin-left: 13px;
  margin: 0 0 2px 8px !important;
}
.option_press {
  background: #f3f3f3 !important;
  font-family: trebuchet,sans-serif;
  color: #808080 !important;
  font-size: 16px;
  border-radius: 10px;
}
.option_press_hidden {
  display: block;
}