/**
 * @file
 * Responsive Voice TTS Play Pause buttons styling.
 */

.responsive-voice-player {
  line-height: 37px;
  background: #05629b;
  padding: 12px 20px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  width: auto;
  display: inline-block;
}
.voicettsBtn {
  font-size: 16px;
  cursor: pointer;
  color: #fff;
  border: none;
  text-indent: -999px;
  outline: none !important;
}
.voicettsBtn.play {
  background: url('../images/sound-on.png') no-repeat;
  background-size: contain;
  display: inline-block;
  width: 50px;
  margin-left: 40px;
  height: 32px;
  top: 3px;
  position: relative;
}
.voicetts-actionbtn.pause {
  background: url('../images/res-tt-stop.png') no-repeat;
  background-size: contain;
  display: inline-block;
  width: 46px;
  height: 35px;
  position: relative;
  top: 2px;
  transition: all 0.2s ease-in-out;
}
.voicetts-actionbtn.resume {
  background: url('../images/resume-icon.png') no-repeat;
  background-size: contain;
  display: inline-block;
  width: 46px;
  position: relative;
  top: 2px;
  transition: all 0.2s ease-in-out;
}
