.qc_voice_search_wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
  min-width: 110px;
}

.qc_voice_search_wrapper.qc_voice_inline{
  position: absolute;
  top: 8px;
  right: 130px;
}

/*.qc_voice_search_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;
}*/
.qc_voice_search_audio_record {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: transparent;
    color: #EB993B;
    border-radius: 50%;
    text-decoration: none;
    font-size: 30px;
    cursor: pointer;
    line-height: 30px;
    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);
  }
}

.qc_voice_search_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;
}

.qc_voice_search_audio_status{
  margin-left: 10px; 
  font-size: 12px !important; 
  font-weight: bold !important; 
  color: #666;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  min-width: 150px;
  min-width: 50px;
}
/*
body .qc_voice_search_wrapper .qc_voice_search_language{
  border: 1px solid #ddd !important;
  padding: 0px 5px !important;
  max-width: 75px !important;
  text-align: left !important;
  margin: 0px 3px !important;
  font-size: 13px !important;
  line-height: 16px !important;
  font-weight: bold !important;
  background: transparent !important;
  height: 22px;
}*/

body .qc_voice_search_wrapper .qc_voice_search_language {
    border: 1px solid #ddd !important;
    padding: 0px 5px !important;
    max-width: 50px !important;
    text-align: left !important;
    margin: 0px 3px !important;
    font-size: 16px !important;
    line-height: 16px !important;
    font-weight: bold !important;
    height: 25px;
}

.qc_voice_search_audio_record.qc_voice_search_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);
  }

}