* {
  font-family: quicksand,sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

#content {
  width: 100%;
}

#content #header {
  background: #075e54;
  padding: 26px 15px 10px 15px;
}

#content #header #foto {
  width: 40px;
  height: 40px;
  float: left;
}

#content #header #foto img {
  background: white;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

#content #header #nome_status {
  float: left;
  padding: 2px 0 2px 10px;
}

#content #header #nome_status #nome {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}

#content #header #nome_status #status {
  color: #fff;
  font-size: 12px;
}

#content #header #icones {
  float: right;
}

#content #header #icones #video {
  font-size: 25px;
  color: #fff;
  padding: 5px 0 0;
  display: inline-block;
}

#content #header #icones #telefone {
  font-size: 25px;
  color: #fff;
  padding: 5px 10px 0;
  display: inline-block;
}
#content #chat_fundo {
  background: url(../images/whatsapp_bg.jpg) #efe7de;
}
#content #header #icones #pontinhos {
  font-size: 25px;
  color: #fff;
  padding: 5px 0 0;
  display: inline-block;
} 

#content #chat {
  overflow: auto;
  height: calc(100vh - 168px);
  padding: 15px 0;
}

#content #chat .recebida {
  background: #e1ffc7;
  margin: 5px 10px 5px 50px;
  padding: 5px;
  display: inline-block;
  float: right;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
}

#content #chat .recebida .mensagem {
  font-size: 13px;
}

#content #chat .recebida .mensagem img {
  width: 100%;
}

#content #chat .recebida .horario {
  font-size: 11px;
  color: rgba(0,0,0,.45);
  text-align: right;
}

#content #chat .enviada {
  background: #fff;
  margin: 5px 50px 5px 10px;
  padding: 5px;
  display: inline-block;
  float: left;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
}

#content #chat .enviada .mensagem {
  font-size: 13px;
}

@-webkit-keyframes btn-pulsando {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes btn-pulsando {
  to {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}


#content #chat .enviada.botao {
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 15px;
  max-width: 180px;
  width: 100%;
  text-align: center;
  color: #3ab5e6;
  font-weight: 600;
}

.pulsar {
  -webkit-animation-name: btn-pulsando;
  animation-name: btn-pulsando;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}

#content #chat .enviada.botao:hover {
  cursor: pointer;
  background: #f3f3f3;
}

#content #chat .enviada .mensagem img {
  width: 100%;
}

#content #chat .enviada .horario {
  font-size: 11px;
  color: rgba(0,0,0,.45);
  text-align: right;
}

#content #chat .tick {
  display: inline-block;
  margin-left: 2px;
  position: relative;
  top: 4px;
  height: 16px;
  width: 16px;
}

#content #chat .tick svg {
  position: absolute;
  transition: .5s ease-in-out;
  margin-left: -16px!important;
}

#content #chat .tick svg:first-child {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: perspective(800px) rotateY(180deg);
  transform: perspective(800px) rotateY(180deg);
}

#content #chat .tick-animation svg:first-child {
  -webkit-transform: perspective(800px) rotateY(0);
  transform: perspective(800px) rotateY(0);
}

#content #chat .tick svg:last-child {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: perspective(800px) rotateY(0deg);
  transform: perspective(800px) rotateY(0deg);
}

#content #chat .tick-animation svg:last-child {
  -webkit-transform: perspective(800px) rotateY(-179.9deg);
  transform: perspective(800px) rotateY(-179.9deg);
}

#content #footer {
  padding: 5px 20px 17px 20px;
}

#content #footer #campo {
  background: #fff;
  height: 40px;
  margin-right: 5px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  -webkit-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
  box-shadow: 1px 1px 2px 0 rgba(0,0,0,.1);
}

#content #footer #campo #smile {
  width: 25px;
  padding: 6px 10px 0;
}

#content #footer #campo #input input {
  width: 100%;
  font-size: 14px;
  color: #000;
  padding: 11px 0;
  border: none;
}

#content #footer #campo #anexo {
  color: #858b90;
  width: 16px;
  font-size: 22px;
  padding: 0 10px;
}

#content #footer #campo #foto {
  color: #858b90;
  width: 16px;
  font-size: 22px;
  padding: 0 10px 0 0;
}

#content #footer #campo ::placeholder {
  color: #ccc;
}

#content #footer #campo :-ms-input-placeholder {
  color: #ccc;
}

#content #footer #campo ::-ms-input-placeholder {
  color: #ccc;
}

#content #footer #enviar {
  width: 40px;
  padding-left: 5px;
}

#content #footer #enviar button {
  background: #00897b;
  color: #fff;
  padding: 4px 0 0 6px;
  width: 40px;
  height: 40px;
  text-align: center;
  border: none;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}

.clear-both {
  clear: both;
}

.fancybox-close {
  top: 2px!important;
  right: 2px!important;
}

.fancybox-lock .fancybox-overlay {
  overflow: hidden!important;
}