/* *:not(.fa) {
  font-family: "TitilliumWeb-Regular", Verdana, Arial, Helvetica, sans-serif !important;
  color: #53565a;
}

.app {
  font-family: "TitilliumWeb-Regular", Verdana, Arial, Helvetica, sans-serif !important;
}

.fullWindow {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.fullWindow .chat-messages {
  background: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
}

.fullWindow .chat-header {
  display: none !important;
}

.fullWindow .chat-suggestions {
  background: rgba(255, 255, 255, 0.25) !important;
}

.fullWindow .chat-footer {
  background: rgba(255, 255, 255, 0.25) !important;
  border: none !important;
} */

#chat-container .chat-box {
  width: 25em;
  height: 35em;
  position: fixed;
  bottom: 1.5em;
  right: -30em;
  display: flex;
  flex-direction: column;
  z-index: 999999999999999999;
  transition: 1s;
}

#chat-container .chat-box .chat-messages {
  flex: 1;
  background: #f6f6f6;
  padding: 1em;
  overflow-y: auto;
  border: 0.05em solid #ccc;
}

#chat-container .chat-box .chat-messages .chat-message {
  display: flex;
  margin-bottom: 1em;
  align-items: center;
}

#chat-container .chat-box .chat-messages .chat-message.left {
  justify-content: flex-start;
}

#chat-container .chat-box .chat-messages .chat-message.rigth {
  justify-content: flex-end;
}

#chat-container .chat-box .chat-messages .chat-message .chat-picture {
  width: 4.5em;
  height: 4.5em;
  border-radius: 100%;
  background: white;
  padding: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

#chat-container .chat-picture i {
  font-size: 3em !important;
  color: white;
}

#chat-container .chat-box .chat-messages .chat-message .chat-picture.left {
  margin-right: 1em;
  width: 3.5em;
  height: 3.5rem;
  object-fit: contain;
  background-color: white;
  padding: 0.5rem;
}

#chat-container .chat-box .chat-messages .chat-message .chat-picture.rigth {
  margin-left: 1em;
  background: #134484;
  border: 4px solid white;
}

#chat-container .chat-box .chat-messages .chat-message .balloon {
  background: white;
  border-radius: 0.5em;
  padding: 0.5em 1em;
  width: 70%;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
}

#chat-container .chat-box .chat-messages .chat-message .balloon .date {
  font-size: 0.75em;
  text-align: right;
}

#chat-container .chat-box .chat-suggestions {
  background: #ddd;
  display: flex;
  overflow-x: auto;
  width: 100%;
  justify-content: space-around;
}

#chat-container .chat-box .chat-suggestions .chat-suggestion {
  margin: 0.5em;
  padding: 0.5em;
  border-radius: 0.5em;
  background: white;
  cursor: pointer;
  white-space: nowrap;
}

#chat-container .chat-box .chat-suggestions .chat-suggestion i {
  color: white;
  font-size: 2em !important;
  padding: 0 0.5em;
}

#chat-container .chat-box .chat-footer {
  display: flex;
  /* background: #335b8c; */
  /* padding: 1em; */
  background: white;
  padding: 0.1em 0.5em;
  margin: 0;
  /* border: 1px solid #ccc; */
  border-radius: 0px 0px 2px 2px;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16), 0 3px 12px 0 rgba(0, 0, 0, 0.08);
}

#chat-container .chat-box .chat-footer input {
  flex: 1;
  background: white;
  font-size: 1em;
}

#chat-container input,
#chat-container textarea,
#chat-container select {
  padding: 0.5em 1em;
  /* border: .05em solid #335b8c; */
  border: none;
  width: 100%;
  border-radius: 2em;
}

#chat-container input:focus,
#chat-container textarea:focus,
#chat-container select:focus,
#chat-container button:focus {
  outline: none;
}

#chat-container .button-rounded {
  border-radius: 100%;
  font-size: 1.5em;
  width: 2em;
  height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  margin-left: 0.5em;
  border: 0;
  cursor: pointer;
}

#chat-container .button-rounded img {
  width: 80%;
}

#chat-container .button-rounded.active {
  background: lime;
  animation-name: mic;
  animation-duration: 3s;
  animation-iteration-count: 2;
}

@keyframes mic {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.5;
  }
}

#chat-container .mail-form {
  width: 92%;
  min-height: 10em;
  background: white;
  border-radius: 0.5em;
  padding: 0.5em 1em;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 1em;
}

#chat-container .mail-inputs-container {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

#chat-container .mail-inputs-label {
  color: #134484;
}

#chat-container .mail-inputs-input {
  border: 1px solid gray;
  width: 94%;
  border-radius: 5px;
  margin: 0.25em 0 1em 0;
  color: gray;
  font-size: 1em;
  padding: 0.25em 0.5em;
}

#chat-container .mail-inputs-input-file {
  margin-bottom: 1em;
}

#chat-container .send-mail-error-not-show {
  visibility: hidden;
  opacity: 0;
  height: 0;
}

#chat-container .send-mail-error {
  color: white;
  border: 1px solid red;
  background-color: rgba(255, 0, 0, 0.5);
  padding: 1em;
  border-radius: 5px;
  margin-bottom: 1em;
  transition: 1s;
  visibility: visible;
  opacity: 1;
}

#chat-container .send-mail-button {
  width: 100%;
  background: #134484;
  color: white;
  border: none;
  padding: 0.5em;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  font-size: 1em;
}

#chat-container .send-mail-button:hover {
  background: #c15615;
  /* background: rgba(216, 96, 24, 0.7); */
}

#chat-container .chat-header {
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #134484;
  border-radius: 2px 2px 0px 0px;
}

#chat-container .chat-header .rigth {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 3.5em;
}

#chat-container .chat-header .title {
  font-size: 1.1em;
  font-weight: 800;
  color: white;
}

#chat-container .chat-header .rigth i {
  cursor: pointer;
  color: white;
  font-size: 1.5em;
}

#chat-container .chat-button {
  border-radius: 100%;
  width: 4em;
  height: 4em;
  object-fit: contain;
  background-color: white;
  padding: 1rem;
  cursor: pointer;
  position: fixed;
  bottom: 1.25em;
  right: 1.5em;
  border: 0.05em solid #ccc;
  z-index: 999999999999999999;
  box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 16%);
}

#chat-container .writting {
  padding: 1em;
  color: white;
}

#chat-container .dataMessage {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.2em;
  min-height: 1.8em;
}

#chat-container .playControls {
  margin: 0 0.5em;
  width: 2em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

#chat-container .playControls img {
  width: 80%;
}

#chat-container i {
  font-size: 1.2em !important;
  color: #134484;
}

#chat-container .infoModal {
  width: 15em;
  min-height: 6em;
  background: #f6f6f6;
  position: fixed;
  bottom: 8.4em;
  border-radius: 2px;
  right: 1.25em;
  box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.16);
  z-index: 999999999999999999;
}

#chat-container .infoModal img.info {
  position: absolute;
  top: -1.3em;
  left: 0.5em;
  width: 3em;
  max-height: 3em;
}

#chat-container .infoModal img.logos {
  width: 12em;
  display: block;
  margin-top: 1rem;
}

#chat-container .pico {
  position: fixed;
  bottom: 7.4em;
  right: 5em;
  width: 0;
  height: 0;
  border-right: 10px solid #f6f6f6;
  border-top: 10px solid #f6f6f6;
  border-left: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

#chat-container .cross {
  position: absolute;
  right: 0.5em;
  top: 0.5em;
  width: 1em;
  height: 1em;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
  font-weight: bold;
  color: #134484;
}

#chat-container .textInfo {
  margin: 1.8em 1em 1em 1em;
  color: #134484;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: justify;
}

#chat-container a {
  background-color: #f8f9fa;
  text-decoration: none;
  display: block;
  padding: 4px 9px;
  font-size: 12px;
  margin: 10px 3px 10px 3px;
  border: 1px solid #3e3e3e1f;
  border-radius: 4px;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  color: rgb(128, 128, 128);
  text-align: center;
}

#chat-container ::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

/* Track */
#chat-container ::-webkit-scrollbar-track {
  background: #bbb;
}

/* .fullWindow ::-webkit-scrollbar-track {
  background: transparent;
} */

/* Handle */
#chat-container ::-webkit-scrollbar-thumb {
  background: #134484;
}

#chat-container .seeMoreDiv {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#chat-container .seeMoreButton {
  margin: 0.5em 0em;
  padding: 0.5em 1em;
  text-align: center;
  background: #ccc;
  border-radius: 0.5em;
  cursor: pointer;
}

#chat-container .seeMoreButton:hover {
  background: black;
  color: white;
}

#chat-container iframe {
  width: 100%;
}

#chat-container .chat-box .chat-messages .chat-message .balloon img {
  width: 100%;
  max-width: 30em;
}

#chat-container .chat-box .chat-messages .chat-message .balloon .text {
  text-align: justify;
  padding: 0.2em 0;
}

#chat-container .chat-box .chat-messages .chat-message .balloon .text img {
  border-radius: 1em;
  box-shadow: 0 0 1em #ccc;
}

#chat-container .crossHeader {
  color: white;
  font-size: 1.5em !important;
}

#chat-container .externalLinkMessage {
  width: 14em;
  min-height: 3em;
  background: rgba(246, 246, 246, 0.95);
  position: absolute;
  top: -2.7em;
  border-radius: 2px;
  right: 5.8em;
  box-shadow: 0px 3px 5px 0px rgb(0 0 0 / 16%);
  padding: 1em;
  text-align: justify;
  display: none;
}

#chat-container .externalLinkMessage::after {
  position: absolute;
  right: -1em;
  content: "";
  border-left: 10px solid rgba(246, 246, 246, 0.95);
  border-bottom: 10px solid rgba(246, 246, 246, 0.95);
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
}

#chat-container .chat-messages ul {
  padding-left: 2rem;
  /* margin-bottom: -2rem; */
}

#chat-container .chat-messages ul li {
  /* margin-bottom: -2rem; */
}
