.qItem {
/*
	
	background: #e7f2fa
	background: #6ab0de

	border: 1px solid gray;
	margin-top: 25px;
	margin-bottom: 25px;
	
*/
}

.qHeader {
}

.qQuestion {
	font-weight:bold;
}

.qAnswer label {
	display: inline;
	padding-bottom: 3px;
	padding-left: 10px;
}

.qSubmit input {
	background-color: #999999; 
	border: none;
	color: white;
	padding: 5px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	width: 100%;
}

/* On mouse-over, add a grey background color */
.qSubmit:hover input {
    opacity: 0.5 !important;
}

.qSubmit {
	margin: 10px 0px 5px 0px;
}


.wrongButton {
	background-color: #de6a6a !important;
}

.correctButton {
	background-color: #00cc99 !important;
}

.wrongHeader {
	background-color: #de6a6a !important;
}

.correctHeader {
	background-color: #00cc99 !important;
}

/*
.qScore {
	color: lightgray;
	display: none;
}

.qCorrectMsg {
	color: green;
	font-weight:bold;
	padding: 10px 0px 0px 0px;
}

.qWrongMsg {
	color: red;
	font-weight:bold;
	padding: 10px 0px 0px 0px;
}

.hiddenButton {
	display: none;
}

.hiddenElement {
	display: none;
}
*/


/* Customize the label (the container) */
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkbox {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkbox {
  background-color: #999;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkbox {
  background-color: #6ab0de;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkbox:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkbox:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}


/* Create a custom radio button */
.radio {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .radio {
  background-color: #999;
}

/* When the radio button is checked, add a blue background */
.container input:checked ~ .radio{
  background-color: #6ab0de;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radio:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .radio:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .radio:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}