.conditional {
  margin: 1em 0 0.5em;
  border-top: 2px dotted #eee;
  padding-top: 1em;
  color: rgba(0,0,0,.7);
  font-size: .9em;
}
.conditional > .conditional {
  color: rgba(0,0,0,.5);
}

#demo {
  text-align: center;
  padding: 1.5em 1.5em;
  /*background: #ddd;*/
  width: 90%;
  margin: 1.5em auto;
  border-radius: .5em;
  font: 24px/30px 'Open Sans', Arial, Verdana, serif;
}

label {
  vertical-align: middle;
  position: relative;
}

label + label {
  margin-left: 1em;
}

input + span{
	position: absolute;
	left: 0;
  top: 4px;
	width: 15px;
	height: 15px;
  border: 2px solid #6ab5a8;
}

input[type=radio] + span {
  border-radius: 50%;
}

input[type=radio]:checked + span {
  background: rgba(106,181,169,1);
  background: -moz-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(44%, rgba(106,181,169,1)), color-stop(45%, rgba(255,255,255,1)), color-stop(46%, rgba(255,255,255,1)), color-stop(55%, rgba(255,255,255,1)));
  background: -webkit-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
  background: -o-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
  background: -ms-radial-gradient(center, ellipse cover, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
  background: radial-gradient(ellipse at center, rgba(106,181,169,1) 44%, rgba(255,255,255,1) 45%, rgba(255,255,255,1) 46%, rgba(255,255,255,1) 55%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6ab5a9', endColorstr='#ffffff', GradientType=1 );
}

input[type=checkbox]:checked + span:after {
  content: "\00d7";
  font-weight: bold;
  position: absolute;
  top: -7px;
  left: 1px;
  font-size: 20px;
  color: #6ab5a8;
}
 
input[type=radio],
input[type=checkbox] {
	/*hide the radio button*/
	filter:alpha(opacity=0);
	-moz-opacity:0;
	-khtml-opacity: 0;
	opacity: 0;
}

select,
input[type=text] {
  border-radius: 5px;
  padding: 6px 10px;
  border: 2px solid #9fc7c0;
  font-color: #666;
  font-size: 15px;
}
input[type="radio"] {
  background-color: transparent;
  border: .0625em solid #0080ff;
  border-radius: 50%;
  box-shadow: inset 0 0 0 0 black;
  cursor: pointer;
  font: inherit;
  height: 1em;
  outline: none;
  width: 1em;
  -moz-appearance: none;
  -webkit-appearance: none;
  
}

input[type="radio"]:checked {
    background-color: grey;
    box-shadow: inset 0 0 0 .1875em #white;
    -webkit-transition: background .15s, box-shadow .1s; 
    transition: background .15s, box-shadow .1s; 
}
#wrap_a {
  max-width: 800px;
  margin: 0 auto;
}

#output_a {
  margin: 2em 1em;
  text-align: left;
  /* font-family: monospace; */
  font-size: 1.1em;
  line-height: 1.5;
  color: #fc9;
}
#output_a .title {
  color: white;
  text-align: center;
}
#output_a ul {
  color: white;
}
#output_a ul li {
  margin: 1em;
}
#output_a ul a {
  color: lightblue;
  text-decoration: none;
}
#output_a ul a.win {
  color: limegreen;
}
#output_a ul a.lose {
  color: red;
}
#output_a ul a:hover {
  color: white;
}
#output_a .inv {
  color: #ca9;
  font-size: 0.8em;
  padding-top: 2em;
}
