.title {
	padding-left: 20px;
}

.content {
	padding-left: 20px;
}

.pictures {
	overflow:hidden;
	padding: 10px;
}

.picImage {
  max-width: 50vw;
  max-height: 75vh;
}

.questions {
	float: left;
	width: 460px;
}

.inputLine {
	display: block;
	padding: 2px;
	position: relative;
}

.inputText {
	width: 260px;
	height: 1.5em;
}

.inputName {
	display: inline-block;
	width: 8em;
}

.inputAnswer {
	width: 250px;
	height: 1.5em;
	display: none;
	color: gray;
}

.inputFeedback {
	display: inline-block;
	width: 2em;
	float: right;
	height: 1.5em;
}

.answerImg {
	height: 1.5em;
	width: 1.5em;
	position: absolute;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.rangeContainer {
	float: left;
	text-align: center;
}

.rangeImg {
	width: 130px;
	display: block;
	padding-right: 10px;
}

.quizOptionsButton {
	text-decoration: underline;
	width: 7em;
	padding-top: 0px;
	margin: 0px;
	margin-bottom: 100px;
	margin-top: 50px;
}

.exitButton {
	position: absolute;
	top: 10px;
	right: 10px;
}

.psBox {
	width: 83px;
	text-align: center;
	display: inline-block;
	padding: 3px 0px 3px 0px;
}

.yellowBox {
	background: #FFF54C;
}

.redBox {
	background: #FF4A6B;
}

.blueBox {
	background: #1D99CC;
}

#optionsBox {
	background: rgba(0,0,0,0.8);
	display: none;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	overflow-y: auto;
}

#optionsBoxInside {
	position: relative;
	background-color: white;
	margin: 50px;
	padding: 15px;	
}


/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}