#container-chat {
  height: calc(100vh - 60px) !important;
  margin-top: 15px;
}
#chat-header {
  padding: 10px;
  margin-bottom: 0px;
}
#container-chat {
  display: flex;
}
#container-chat > div {
  height: inherit;
}
#busca {
  padding: 10px;
}
#panel-left {
  flex: 100%;
  height: 100%;
  display: flex;
  max-width: 100%;
  flex-direction: column;
  background-color: #eaeaea;
  border-right: 1px solid #cecece;
}
.linha-horizontal {
  border-bottom: 1px solid #cecece;
}
#panel-right {
  width: 100%;
  height: 94.5%;
}
#info-contato {
  height: 67px;
  padding: 5px;
  display: flex;
  align-items: center;
  background-color: #eaeaea;
  border-bottom: 1px solid #cecece;
}
#info-contato p {
  font-size: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px 0px 0px 10px;
}
#info-contato i.fa-arrow-left {
  font-size: 24px;
  padding: 0px 10px;
  cursor: pointer;
}
.wrapper-img {
  width: 56px;
  height: 56px;
}
.wrapper-img * {
  border-radius: 35px;
  background-color: #fff;
  height: inherit;
  width: inherit;
  color: #666;
}
.wrapper-img img {
  padding: 2px;
}
.wrapper-img i {
  display: flex;
  font-size: 38px;
  align-items: center;
  justify-content: center;
}
#historico-conversas {
  flex: 1 1 auto;
  overflow-y: auto;
}
#conversa {
  padding: 5px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 65px);
}
#sem-conversa {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sem-conversa img {
  max-height: 50%;
  opacity: 0.5;
}
#com-conversa {
  display: unset;
}
#mensagens {
  flex: 1;
  height: 0px;
  display: flex;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 5px;
  flex-direction: column;
}
#mensagens > *:not(.carregando-mensagens) {
  margin-bottom: 5px;
}
.carregando-mensagens {
  display: flex;
  height: 100%;
  font-size: 48px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.carregando-mensagens .loading {
  background-color: #ccc;
  padding: 5px;
  border-radius: 50%;
  font-size: 32px;
  position: absolute;
  top: 5px;
}
.linha-input {
  display: flex;
  flex-direction: row;
}
#input-mensagem {
  display: flex;
  flex: 0 0 auto;
  margin: 5px;
  flex-direction: column;
  transition-delay: 2s;
}
.btn-opcao {
  font-size: 22px;
  padding: 10px 10px 10px 20px;
}
.btn-opcao:hover {
  cursor: pointer;
  color: #000;
}
.timer {
  margin: 11px 3px 0px 10px;
  display: flex;
}
.timer-redball {
  margin-top: 5px;
  font-size: 16px;
}
.timer-clock {
  padding-left: 4px;
  font-size: 16px;
}
.mensagem {
  min-width: calc(10% + 25px);
  max-width: 75%;
  border-radius: 6px;
  width: fit-content;
  line-height: 1.8em;
  padding: 5px 10px 0px 10px;
}
.mensagem p {
  font-size: 16px;
  word-break: break-word;
}
.mensagem .info-msg {
  float: right;
  font-size: 11px;
  opacity: 0.7;
}
.mensagem .info-msg .icon-status {
  margin-left: 2px;
}
.mensagem h5 {
  margin-bottom: -5px;
  margin-top: -5px;
}
.mensagem span.anexo {
  margin-left: 2px;
}
.mensagem .anexo .imagem {
  margin: 5px 0px;
  cursor: pointer;
  border-radius: 5px;
  object-fit: cover;
  width: 200px;
  height: 200px;
}
.mensagem .anexo .arquivo {
  display: flex;
  font-size: 16px;
  margin-top: -23px;
  border-radius: 2px;
  margin-bottom: 4px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  cursor: pointer;
  color: #fff;
}
.mensagem .anexo .audio {
  width: 200px;
  height: 12px;
  display: flex;
  justify-content: flex-end;
}
.mensagem .anexo .audio .btn-play {
  margin-top: -8px;
  margin-right: 10px;
  font-size: 18px;
}
.mensagem .anexo .audio .btn-play:hover {
  cursor: pointer;
}
.mensagem .anexo .audio .audio-slider {
  -webkit-appearance: none;
  appearance: none;
  display: inline-block;
  height: 3px;
  border-radius: 5px;
  background-color: white;
  outline: #999;
}
.mensagem .anexo .audio .audio-img {
  height: 45px;
  margin-right: 10px;
  margin-top: -22px;
  border-radius: 50%;
}
.mensagem .anexo .audio .seletor::-webkit-slider-thumb {
  all: unset;
  /* limpa os estilos iniciais */
  -webkit-appearance: none;
  /* remove a aparencia padão */
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #31B404;
}
.recebida {
  background-color: #dcdcdc;
}
.recebida p {
  margin-bottom: 20px;
}
.recebida .info-msg {
  margin-top: -25px;
}
.recebida h5 {
  color: #696969;
}
.recebida .anexo .arquivo {
  background-color: #adadad;
}
.recebida .anexo .arquivo:hover {
  background-color: #656565;
}
.enviada {
  color: #fff;
  align-self: flex-end;
  background-color: #336699;
}
.enviada p {
  margin: 0;
}
.enviada .info-msg {
  margin-top: -5px;
}
.enviada .anexo .arquivo {
  background-color: #2a5582;
}
.enviada .anexo .arquivo:hover {
  background-color: #264b71;
}
#banner-novo-chat {
  color: #fff;
  height: 60px;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  background-color: #2E6923;
  border-bottom: 1px solid #cecece;
}
#banner-novo-chat:hover {
  cursor: pointer;
  background-color: #489C34;
}
#banner-novo-chat:active {
  -webkit-box-shadow: inset -9px -8px 23px -16px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: inset -9px -8px 23px -16px rgba(0, 0, 0, 0.75);
  box-shadow: inset -9px -8px 23px -16px rgba(0, 0, 0, 0.75);
  cursor: pointer;
  background-color: #489C34;
}
#btn-novo-chat {
  position: absolute;
  bottom: 25px;
  right: 13px;
  color: white;
  font-size: 20px;
  z-index: 9;
}
#btn-novo-chat > span {
  padding: 13px 17px;
  background-color: #2E6923;
  border-radius: 50%;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 4px 4px 10px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.25);
}
#btn-novo-chat > span:active {
  background-color: #489C34;
}
#tres-pontos {
  position: relative;
}
#msg-opcoes {
  right: 0px;
  width: 70px;
  bottom: 55px;
  padding: 6px;
  display: none;
  height: 165px;
  font-size: 24px;
  border-radius: 4px;
  position: absolute;
  background-color: #eaeaea;
}
#msg-opcoes .opcao {
  margin: 18px;
  color: #777;
  flex: 1 0 21%;
  line-height: 2.19em;
}
#msg-opcoes .opcao:hover {
  color: #000;
}
.bloco-contato {
  height: 75px;
  display: flex;
  padding: 10px;
  position: relative;
  border-bottom: 1px solid #cecece;
}
.bloco-contato:hover {
  cursor: pointer;
  background-color: #cecece;
}
.bloco-contato.active {
  background-color: #aeaeae;
}
.bloco-contato-info {
  display: flex;
  padding: 10px;
  max-width: calc(80% - 75px);
  line-height: 1.8em;
  position: relative;
  flex-direction: column;
  justify-content: center;
}
.bloco-contato-info span:not(.icone) {
  max-width: 100%;
  min-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bloco-contato-info span:not(.icone).contato-nome {
  font-size: 16px;
  color: #505050;
  font-weight: 700;
}
.bloco-contato-info span:not(.icone).contato-mensagem-conteudo {
  margin-top: 3px;
  font-size: 14px;
  min-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.bloco-contato-info span:not(.icone).contato-mensagem-conteudo .icone {
  font-size: 12px;
}
.bloco-contato-info span.icone {
  margin-right: 2px;
}
.bloco-contato-info + p.contato-mensagem-data {
  top: 2px;
  right: 7px;
  position: absolute;
}
#num-mensagens {
  top: 35px;
  right: 13px;
  width: 20px;
  height: 20px;
  color: #fff;
  padding: 11px;
  display: flex;
  font-weight: bold;
  border-radius: 50%;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #2063a7;
}
@media (max-height: 992px) {
  #container-chat {
    height: calc(100vh - 60px) !important;
  }
}
@media (min-width: 768px) {
  #panel-left {
    flex: 30%;
    min-width: 0px;
  }
  #panel-right {
    flex: 70%;
  }
  #chat-wrapper {
    height: 100%;
  }
  #input-mensagem {
    margin: 5px 0px 0px 0px;
  }
  #container-chat {
    height: calc(100vh - 60px) !important;
  }
  .mensagem {
    min-width: calc(10% + 15px);
  }
  .mensagem .anexo .imagem {
    object-fit: cover;
    width: 300px;
    height: 300px;
  }
  .mensagem .anexo .audio {
    object-fit: cover;
    width: 270px;
    height: 15px;
  }
  .mensagem .anexo .audio .audio-img {
    margin-top: -20px;
  }
}
