.audioRecorderHolder{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.recodingBtnStyling img{
    /* width: 100%; */
}
.recodingBtnStyling{
    width: 40px;
    height: 40px;
    border-radius: 7px;
    margin-right: 12px;
}
#recordButton{
    display: none;
}

#bars {
    /* display: none; */
    /* background: white; */
    position: absolute;
    top: -25px;
    left: 73%;
    height: 19px;
    width: 180px;
    margin: -30px 0 0 -20px;
    transform: scale(2) translateX(-50%);
  }

  .bar {
    position: absolute;
    bottom: 0px;
    height: 3px;
    width: 1px;
    background: #DC3545;
    animation: sound 0ms -800ms linear infinite alternate;
    transform: translateY(20%);
  }

  @keyframes sound {
      0% {
         opacity: .35;
          height: 3px;
      }
      100% {
          opacity: 1;
          height: 20px;
      }
  }