/*
Author : Scott Hazell (based on Rhys Rob)
Last Updated : 15/01/17
*/

@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;
	padding: 5px;
    border-radius: 5px;
}

.button-wrap {
	margin:40px auto 40px;	
}

.button-wrap .true, .button-wrap .false {
	min-height:80px;
}

.checkBox {
	position:absolute;
	right:20px;
	top:5px;
	background:#dddddd;
	border:solid;
	width:70px;
	height:70px;
	display:block;
	border-radius:6px;
}

.button-wrap .selected:after {
	content: "X";
    position: absolute;
    right: 32px;
    text-align: center;
    top: 0px;
    font-size: 64px;
    color: #000;
    font-family:"Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "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:rgba(66,159,0,0.4);
}
#answer.false {
	background:rgba(157,11,12,0.4);
}


.btn-choice{
	background:#333332;
	border-color: #e3b81d;
	color:#FFF;
}
.btn-choice:hover, .btn-choice:focus, .btn-choice.active  {
  background-color: #e3b81d;
  border-color: #333332;
  color: #333332;
  outline: none;
  text-decoration: none;
}

.btn-question {
    margin-top: 0.7em!important;
	margin-bottom: 1em!important;
}

#activityControls button {
margin-bottom:4px;
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;
}

.edit{
	background: rgba(227,184,29,0.4);
}

#sortable tr td{
	cursor:move;
}

#sortable tr td.edit{
	cursor:text;
}

@page {
    size: A4;
	margin-bottom: 2cm;
}

@media print {
  .btn-container {
    visibility: hidden;
  }
}
