.page {
  display: none;
}

.page p {
  max-width: 640px;
  margin: 10px auto;
  font-size: 16px;
  text-align:center;
}

.page h1 {
  text-align: center;
}

#overview {
  display: block;
}

.real {
  display: none;
}

.counter {
  display: none;
}

.placebo {
  display: none;
}

#game1 {
  height: 600px;
}

#reminderInstruction {
  margin-top: 100px;
}

#question {
  color: #000000;
  font-size: 38pt;
  margin: auto;
  position: relative;
  text-align: center;
  top: 100px;
  width: 400px;
  font-weight:bold;
}

#answer {
	display: none;
  color: #000000;
  font-size: 24px;
  font-weight: bold;
  height: 30px;
  left: calc(50% - 100px);
  margin: auto;
  position: relative;
  top: 150px;
  width: 200px;
}

#hint {
	display: none;
  color: #000000;
  height: 95px;
  left: calc(50% + 120px);
  position: relative;
  top: 82px;
  width: 175px;
}

#hint span {
	display:table-cell;
}

.larrow {
  font-size: 48px;
	width: 55px;
  font-weight: bold;
  padding-top: 15px;
}

#hint_txt {
  height: 95px;
	font-size: 18px;
	vertical-align: middle;
}

.topRow {
  height: 30px;
}

#round_display {
  float:left;
  font-size: 18px;
}

#timer {
  float: right;
  font-size: 18px;
}

.timeRemaining {
  min-width: 20px;
  font-weight: bold;
  display: inline-block;
  text-align: right;
}

#game2 {
  max-width: 640px;
  margin: auto;
}

#question2 {
  max-width: 640px;
  font-size: 18px;
}

.vignetteQuestions li {
  margin: 20px;
  font-size: 16px;
}

.sliderHeading {
  height: 10px;
}

.heading0 {
  float: left;
}

.heading10 {
  float: right;
}

#demographic {
  max-width: 640px;
  margin: auto;
}

.buttonPanel {
  max-width: 640px;
  margin: auto;
}

#next {
  float:right;
}

/*https://www.w3schools.com/howto/howto_js_rangeslider.asp*/
.slidecontainer {
  width: 100%; /* Width of the outside container */
}

/* The slider itself */
.slider {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  width: 100%; /* Full-width */
  height: 25px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}

/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */ 
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #4CAF50; /* Green background */
  cursor: pointer; /* Cursor on hover */
}