.qcld_stt_unique_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.qcld_stt_unique_audio_record {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: transparent;
  color: #EB993B;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  cursor: pointer;
  line-height: 20px;
  position:relative;
}

@keyframes stt_pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.35, 1.35, 1.35);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.qcld_stt_unique_pulse {
  animation-name: stt_pulse;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  color: #e57373 !important;
  /*border: #!important;*/
  background-color: #ffe6e6 !important;
  padding: 4px 5px !important;
  border-radius: 50px !important;
}

.qcld_stt_unique_audio_status{
  margin-left: 10px; 
  font-size: 12px !important; 
  font-weight: bold !important; 
  color: #666;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  min-width: 250px;
}

body .qcld_stt_unique_wrapper .qcld_stt_language{
  border: 0px !important;
  padding: 5px 5px !important;
  max-width: 100px !important;
  text-align: left !important;
  margin: 0px 3px !important;
  font-size: 13px !important;
  line-height: 16px !important;
  font-weight: bold !important; 
  background: transparent !important; 
}

.qcld_stt_unique_audio_record.qcld_stt_unique_spin {
  animation-name: stt_spin_pulse;
  animation-fill-mode: both;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-iteration-count: infinite;
  color: #fff !important;
  background-color: #EB993B !important;
  padding: 4px 5px !important;
  border-radius: 50px !important;
}


@keyframes stt_spin_pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  25% {
    transform: scale3d(1.2, 1.2, 1.2);
  }

  50% {
    transform: scale3d(1.6, 1.6, 1.6);
  }

  75% {
    transform: scale3d(1.4, 1.4, 1.4);
  }

  to {
    transform: scale3d(1, 1, 1);
  }

}