.message-content{
  position: relative;
}
form#send-reply {
    margin-bottom: 10vw;
}
.record-icons{
  position: absolute;
  width: 35px;
  cursor: pointer;
}
.record-icons.record{
  top: 0px;
  right: 0px;
}
.record-icons.recording{
  top: 45px;
  left: 25px;
  display: none;
}
.record-icons.cancel{
  right: 0px;
  top: 90px;
  display: none;
}
.record-icons.send{
  right: 0px;
  top: 45px;
  display: none;
}
@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}