a {
  color: #337ab7;
}
p {
  margin-top: 1rem;
}
a:hover {
  color:#23527c;
}
a:visited {
  color: #8d75a3;
}

body {
	line-height: 1.5;
	font-family: sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	color:black;
	margin:2em;
}

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

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

red {
	color: red;
}

#controls {
  display: flex;
  margin-top: 2rem;
  max-width: 28em;
}

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

li {
  list-style: none;
  margin-bottom: 1rem;
}

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

#recordingsList{
  max-width: 28em;
  margin-top: 100px;
}

#transTxtBox {
  min-width: 300px;
  min-height: 500px;
  border: 3px solid #ccc;
  padding: 0 30px;
  /* position: absolute;
  right: 200px;
  top: 200px; */
}
#transTxtBox p{
  font-size: 20px;
}
audio:focus {
  outline: none;
}

.recordBox {
  min-width: 300px;
  height: 40px;
  line-height: 40px;
  border: 2px solid #515151;
  border-radius: 20px;
  position: relative;
  margin: 20px 0;
}
#recordButton,
#stopButton {
  height: 30px;
  width: 30px;
  position: absolute;
  left: 5px;
  top: 5px;
  display: none;
}
img {
  width: 100%;
  height: 100%;
  display: block;
}
#recordTxt {
  width: 90%;
  height: 40px;
  line-height: 40px;
  border: 0;
  position: absolute;
  left: 40px;
  top: 0;
  padding: 0;
  font-size: 16px;
}
input:focus {
  outline: none;
}
.recoding {
  left: 30px;
  display: block !important;
  animation: recording 1.5s reverse infinite;
}
.stop {
  display: block !important;
}
@keyframes recording {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.errorTips {
  color: #d81e06;
  font-size: 14px;
  padding-left: 40px;
  position: absolute;
  top: 40px;
  margin: 0;
  height: 24px;
  line-height: 24px;
  display: none;
}
.errorShow {
  display: block;
}
.refresh {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 10px;
  top: 7px;
  display: none;
}
.refreshShow {
  display: block;
}
.refresh.on {
  animation: refreshing 1s linear;
}
.refresh.loading {
  animation: refreshing 1s linear infinite;
}
@keyframes refreshing {
  0% {
    transform:rotate(0deg);
  }
  50% {
    transform:rotate(180deg);
  }
  100% {
    transform:rotate(360deg);
  }
}

#recRate {
  width: 110px;
  font-size: 20px;
}
select:focus {
  outline: none;
}

button  {
  width: 100%;
  height: 35px;
  border: 1px dashed;
  border-radius: 5px;
  font-size: 19px;
  background: #b0e8f9;
}
