.toggle-box {
  display: none;
  font-family: 'Roboto', sans-serif;
}

.toggle-box + label {
	cursor: pointer;
	display: block;
	font-weight: bold;
	line-height: 50px;
	margin-bottom: 5px;
	font-family: 'Roboto', sans-serif;
	color:#333333;
	font-size:18px;
	font-weight: 400;
}

.toggle-box + label + div {
  display: none;
  margin-bottom: 10px;
}

.toggle-box:checked + label + div {
  display: block;
}

.toggle-box + label:before {
  background-color:#9B9B9B;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  color: #FFFFFF;
  content: "+";
  display: block;
  float: left;
  font-weight: bold;
  height: 25px;
  line-height: 25px;
  margin-top: 12px;
  margin-right: 10px;
  text-align: center;
  width: 25px;
  
}

.toggle-box:checked + label:before {
  content: "\2212";
}
