body {
  font-family: Helvetica, Arial;
  line-height: 1.4em;
  font-size: 14pt;
  margin: 1em;
  background-color: #777777;
}

#title,
#browserCompat {
  font-size: 18pt;
  text-align: center;
  margin: auto;
}

#loading {
  font-size: 14pt;
  text-align: center;
  margin: 2em auto;
  max-width: 60%;
}

.instructionsText {
  display: block;
  max-width: 60%;
  margin: auto;
}

#beforeRealTrials,
#videoInstructions,
#sliderInstructions,
#break {
  text-align: center;
  margin: 1em auto;
}

#stimCanvas,
#responseCanvas {
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 64px;
}

input {
  position: relative;
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.button {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  color: black;
  font-size: 16pt;
  border: 3px outset gray;
  background-color: #cccccc;
  padding: 4px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  width: 200px;
}

.button:hover {
  border: 3px inset gray;
}

.button:active {
  border: 3px inset gray;
  background: gray;
}

#progressContainer {
  text-align: center;
}

.progress {
  height: 15px;
}

#progressText {
  font-size: 14pt;
  color: black;
  font-weight: bold;
  margin: 10px;
}

#progressOutline {
  display: inline-block;
  background: white;
  border: 3px solid black;
  width: 100px;
  margin: 10px;
}

#progressBar {
  background: gray;
  width: 0px;
}

#navVideoContainer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.navVideo {
  width: 100%;
  height: auto;
}

.slider {
  width: 600px;
  margin: 2em auto;
}

#endQuestions {
  margin: auto;
  text-align: center;
}

.endQuestion {
  padding: 2em;
}

#saving {
  margin: auto;
  text-align: center;
  font-weight: bold;
}

#loading-container {
  width: 80%;
  max-width: 600px;
  background-color: #f3f3f3;
  position: relative;
  height: 30px;
  border-radius: 15px;
  margin: 20px auto;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

#loading-bar {
  width: 0%;
  height: 100%;
  background-color: #007bff;
  position: absolute;
  border-radius: 15px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  background: #999999;
  outline: none;
  border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: navy;
  cursor: pointer;
  border-radius: 50%;
  border-color: navy;
  margin-top: -9.5px;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: navy;
  cursor: pointer;
  border-radius: 50%;
  border-color: navy;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  cursor: pointer;
  background: #999999;
  border-radius: 5px;
}

input[type="range"]::-moz-range-track {
  height: 5px;
  cursor: pointer;
  background: #999999;
  border-radius: 5px;
}
