 .textspeach-player{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #333333;
  padding: 5px 12px 5px 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  color: #fff;
  font-family: var(--fontFamily);
  width: 100%;
  max-width: 400px;
}

.textspeach-btn {
  background: #ef3e42;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  border: none;
  width: 30px;
  height: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1px;
  font-size: 16px;
}

.textspeach-btn span{
  width:17px;
  height:17px;
  line-height:100em;
  display:block;
  overflow:hidden;
  background-repeat:no-repeat;
  background-position:center center;
  background-size:100% auto;
}

.textspeach-btn span.pause{
  background-image:url(../images/pause.svg);
}

.textspeach-btn span.play{
  background-image:url(../images/play.svg);
}

.textspeach-btn:hover {
  background: #bf1d21;
}

.textspeach-progress {
  flex: 1;
  height: 6px;
  border-radius: 6px;
  background: #7e8989;
  position: relative;
  cursor: pointer;  width: 100px;
}

.textspeach-progress-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  background: #fff;
  border-radius: 6px;
  width: 0%;
}

.textspeach-time {
  font-size: 13px;
  color: #fff;
  text-align: right;  
  word-break: keep-all;
}