/* Tag de documento visualizado */
.tag-visto {
  display: inline-block;
  border-radius: 8px;
  padding: 4px;
  background-color: #34a853;
  color: #fff;
}

/* Chat privado do usuário */
.chat {
  .area-texto {
    padding: 8px;
    height: 330px;
    border: 1px solid #000;
    overflow-y: auto;

    display: flex;
    flex-direction: column;

    .quem {
      font-size: 12px;
      font-weight: bold;
    }

    .usuario {
      padding: 8px;
      max-width: 35%;
      height: auto;
      border-radius: 4px;
      color: #fff;
      background-color: #37365f;
      align-self: flex-end;
      margin-top: 8px;
      .quem {
        color: #fff;
      }
    }

    .administrador {
      margin-top: 8px;
      padding: 8px;
      max-width: 35%;
      height: auto;
      border-radius: 4px;
      background-color: #e6d66b;
      align-self: flex-start;

      .quem {
        color: #000;
      }
    }
  } /* .area-texto */

  #mensagem {
    display: block;
    width: calc(100% - 67px) !important;
    border: 1px solid #000;
    border-radius: 4px;
    margin-right: 7px !important;
    outline: none;
    margin-top: 15px;
    height: 50px;
  }

  #btn-chat {
    height: 50px;
    width: 60px;
    background-color: #36395a;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    font-weight: 100;
    border: 0;
    font-size: 13px;
    text-decoration: unset !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
  }
  #form-chat {
    display: flex;
  }
} /*.chat*/

/* Notificação de mensagens não lidas */
.mensagens-nao-lidas {
  padding: 5px;
  color: #fff;
  border-radius: 5px;
  background-color: #fb1432;
  width: auto;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
}

/* Bag de notificação de mensagens no menu lateral */
.bag-notificacao {
  display: inline-block;
  font-weight: normal !important;
  color: #fff;
  background-color: #fb1432;
  padding: 4px;
  font-size: 10px !important;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  vertical-align: middle;
  text-align: center;
}
