* {
  padding: 0;
  margin: 0;
  /* user-select: none; supported by Chrome and Opera */
  /* -webkit-user-select: none; /* Safari */
  /* -moz-user-select: none; Firefox */
  font-size: 0.95rem;
}
a {
  color: #337ab7;
}
p {
  margin-top: 1rem;
}
a:hover {
  color:#23527c;
}
a:visited {
  color: #8d75a3;
}
body {
  /* margin: 1rem;
  padding: 1rem;
  font-family: sans-serif;
  max-width: 28rem;
  margin: 0 auto;
  position: relative; */
  font-family: 'Open Sans', sans-serif;
  background-color: #000000;
  color: #eeeeee;
}


#container {
  height:100%;
  display: flex;
  align-items:flex-start;
  justify-content:flex-start;
  margin-left: 3rem;
  margin-right: 3rem;
  /* user-select: none; 
  -webkit-user-select: none; 
  -moz-user-select: none;  */
}
/* #controls {
  display: table-cell;
  vertical-align: middle;
} */
#instructionText {
  text-justify:distribute;
  text-align: justify;
}


button {
  outline: none;
  border: none;
  border-radius: 50%;
  background: #ed341d; 
  /* box-shadow: inset 0 -0.15rem 0 rgba(0, 0, 0, 0.2); */
  /* cursor: pointer; */
  /* justify-content: center;
  align-items: center; */
  color:#ffffff;
  font-weight: bold;
  
}

#recordButton {
  height: 12rem;
  width: 12rem;
  font-size: 2.4rem;
}
#recordButtonHolder {
  text-align: center;
}

#recAgain {
  height: 3rem;
  width: 3rem;
  font-size: 1.1rem;
  left: 50%;
}
/* button:hover, button:focus {
  outline: none;
  background: #c72d1c;
} */
button::-moz-focus-inner {
  border: 0;
}
button:hover, button:active {
  outline: none;
  background: #530800;
}
button:disabled {
  pointer-events: none;
  background: lightgray;
}


#myProgress {
  padding: 0;
  margin: 0;
  width: 100%;
  /* background-color: grey; */
}
#myBar {
  padding: 0;
  margin: 0;
  width: 0%;
  height: 4rem;
  background-color: #530800;
}
#timerLabelContainer {
  width: 100%;
  text-align: center;
}


#controller {
  width: 100%;
  background: radial-gradient(circle, rgba(65,65,65,1) 0%, rgba(37,37,37,1) 39%, rgba(0,0,0,1) 100%);
  margin: 0;
  padding: 0;
}
#controllerContainer {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  background-color: #313131;
  background: linear-gradient(0deg, rgba(77,77,77,1) 0%, rgba(0,0,0,1) 26%, rgba(33,33,33,1) 100%);
  color: #eeeeee;
  visibility: hidden;
  /* background-color: #8d75a3; */
}


.slidecontainer {
  display: flex;
  width: calc(100% - 20px);
  margin: 0;
  margin-top: 10px;
  margin-left: 10px;
}

.leftControls {
  width: 80%;
  margin: 0;
  padding: 0;
  /* float: left; */
}
.rightControls {
  width: 20%;
  margin: 0;
  /* margin-left: 80%; */
  padding: 0;
  /* float:right; */
}

.sliderLabel {
  width: 30%;
  margin: 0;
  padding: 0;
  float: left;
  height: 50px;
  font-size: 0.8rem;
  vertical-align: middle;
}
.sliderDiv {
  width: 70%;
  margin-left: 30%;
  padding: 0;
  height: 50px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 30px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.linear {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+5,d60300+100 */
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(left,  #ffffff 5%, #d60300 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #ffffff 5%,#d60300 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #ffffff 5%,#d60300 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d60300',GradientType=0 ); /* IE6-9 */
}

.polar {
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ff0000+0,ffffff+48,ffffff+52,05abe0+100 */
  background: -moz-linear-gradient(left,  #ff0000 0%, #ffffff 48%, #ffffff 52%, #05abe0 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(left,  #ff0000 0%,#ffffff 48%,#ffffff 52%,#05abe0 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,  #ff0000 0%,#ffffff 48%,#ffffff 52%,#05abe0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#05abe0',GradientType=0 ); /* IE6-9 */
}



.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  background: rgb(107, 2, 2);
  border: #000000;
  border-block: 2px;
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: rgb(125, 194, 226);
  cursor: pointer;
}