/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

 .sayit{
    background: #efcf92;
    border-radius: 4px;
    cursor: pointer;
    padding: .2em .3em;
    transition: all .2s;
 }

 .sayit:hover{
    background: #f8e4a7;
 }

 .sayit.active{
    /* background: #c3d7dc; */
    animation: speaking 1.5s infinite linear;
 }

 @keyframes speaking {
   0% { box-shadow: 0 0 0px #f78da7; }
   50% { box-shadow: 0 0 10px #f78da7; }
   100% { box-shadow: 0 0 0px #f78da7; }
 }
 .sayit:before{
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 52.4 (67378) - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Ebutton%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='button' fill='%23ff4710' fill-rule='nonzero'%3E%3Cpolygon id='play' points='14 10 8 5.5 8 14.5'%3E%3C/polygon%3E%3Cpath d='M10,1 C5.05228475,1 1,5.05228475 1,10 C1,14.9477153 5.05228475,19 10,19 C14.9477153,19 19,14.9477153 19,10 C19,5.05228475 14.9477153,1 10,1 Z' id='circle' stroke='%23ff4710' stroke-width='2' fill-opacity='0'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  content: '';
  width: 16px;
  height: 16px;
  display: inline-block;
  position: relative;
  top: 2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-right: 5px;
}
.sayit:hover:before{
  background-image: url("data:image/svg+xml;charset=utf8,%3C?xml version='1.0' encoding='UTF-8'?%3E%3Csvg width='20px' height='20px' viewBox='0 0 20 20' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3C!-- Generator: Sketch 52.4 (67378) - http://www.bohemiancoding.com/sketch --%3E%3Ctitle%3Ebutton%3C/title%3E%3Cdesc%3ECreated with Sketch.%3C/desc%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='button' fill-rule='nonzero'%3E%3Cpath d='M10,1 C5.05228475,1 1,5.05228475 1,10 C1,14.9477153 5.05228475,19 10,19 C14.9477153,19 19,14.9477153 19,10 C19,5.05228475 14.9477153,1 10,1 Z' id='circle' stroke='%23FF510D' stroke-width='2' fill='%23FF4710'%3E%3C/path%3E%3Cpolygon id='play' fill='%23FFFFFF' points='14 10 8 5.5 8 14.5'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}


