@charset "UTF-8";
#speakButton {
  display: inline-block;
  font-size: 13px;
  color: #fff;
  padding: 12px 22px 12px 45px;
  background: #070707;
  position: relative;
  border: 0;
  transition: all 0.2s linear;
}
#speakButton:hover {
  box-shadow: none;
}
#speakButton:before {
  content: "🔊";
  position: absolute;
  display: inline-block;
  width: 18px;
  height: 18px;
  font-size: 18px;
  line-height: 18px;
  left: 15px;
  top: calc(50% - 9px);
}
#speakButton.speaking:before {
  content: "⏸";
}
#speakButton.speaking.paused:before {
  content: "🔊";
}
