/*
Author : Rhys Rob
Last Updated : 30/11/16
*/

@charset "utf-8";
/* CSS Document */

#instructions p {
	font-size:16px
}

.text-input-wrap {display:none; margin:20px auto}
.text-input {
	position:relative;
	border:solid 1px #E3E3E3;
	background:#FFF;
	width:100%;
	min-height:120px;
}

.button-wrap {
	margin:40px auto 40px;
}

.button-wrap .true, .button-wrap .false {
	min-height:80px;
}

.checkBox {
	position:absolute;
	right:20px;
	top:5px;
	background:#FFF;
	border:solid;
	width:70px;
	height:70px;
	display:block;
	border-radius:6px;
}

.button-wrap .selected:after {
	content: "X";
    position: absolute;
    right: 30px;
    text-align: center;
    top: 0px;
    font-size: 64px;
    color: #000;
    font-family: sans-serif;
}


#hiddenComment {
	margin:20px auto;
	display:none;
}

#hiddenComment h4 {
	margin-left:-10px;
	padding:4px 10px;
	display:inline-block;
	padding-right:300px;
	color:#FFF;
}

#answer.true {
	background:#429F00;
}
#answer.false {
	background:#9D0B0C;
}


.btn-choice{
	background:#241D3C;
	color:#FFF;
}
.btn-choice:hover, .btn-choice:focus, .btn-choice.active  {
  background-color: #241D3C;
  border-color: #241D3C;
  color: #EEE;
  outline: none;
  text-decoration: none;
}

#activityControls button {
margin-bottom: 20px;
position:relative;
}

#activityControls button.answered:after{
	content:"";
	position:absolute;
	display:block;
	width:8px;
	height:8px;
	border-radius:100%;
	background:#241D3C;
	bottom:-15px;
	left:50%;
	margin-left:-4px;
}