.audioRecording a {
  color: #337ab7;
}

.audioRecording a:hover {
  color:#23527c;
}
.audioRecording a:visited {
  color: #8d75a3;
}


.audioRecording h1 {
  text-decoration: underline red;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
  font-size: 220%;
  font-weight: bold;
}

.audioRecording h2 {
  font-weight: bold;
  color: #005A9C;
  font-size: 140%;
  text-transform: uppercase;
}

.audioRecording  #controls {
  display: flex;
  margin-top: 0;
  align-items: center;
  justify-content: center;
}
.audioRecording #controls li {
    padding: 0 15px;
}
.audioRecording button {
  flex-grow: 1;
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 10px;
  background: #fff;
  margin-left: 2px;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#ffffff;
  font-weight: bold;
  font-size: 1rem;
  border: 1px solid rgba(153,153,153,0.5);
}
.audioRecording button.recording-btn {
    width: 60px;
    height: 60px;
    border: 0;
    box-shadow: 0 0 15px rgba(0, 0, 0 , 0.15);
}
/*.audioRecording button:hover, .audioRecording button:focus {
  outline: none;
  background: #c72d1c;
}*/

.audioRecording button::-moz-focus-inner {
  border: 0;
}

.audioRecording button:active {
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.2);
  line-height: 3rem;
}

.audioRecording button:disabled {
  pointer-events: none;
  background: #d0d4df;
  cursor: not-allowed;
}
.audioRecording button:first-child {
  margin-left: 0;
}

.audioRecording audio {
  display: block;
  width: 100%;
  margin-top: 0.2rem;
}

.audioRecording li {
  list-style: none;
  margin-bottom: 0;
}

.audioRecording #formats {
  margin-top: 0.5rem;
  font-size: 80%;
}

.audioRecording #recordingsList{
  max-width: 28em;
}

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.4;}
}

.recording-btn:disabled svg{
  text-decoration: blink;
  -webkit-animation-name: blinker;
  -webkit-animation-duration: 0.6s;
  -webkit-animation-iteration-count:infinite;
  -webkit-animation-timing-function:ease-in-out;
  -webkit-animation-direction: alternate;
}