.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 26px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
 
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.dualcolumn {
  float: left;
  width: 50%;
  padding: 5px;
  height: 68px; /* Should be removed. Only for demonstration */
  box-sizing: border-box;
}

/* Clear floats after the columns */
.dualcolumnrows:after {
  content: "";
  display: table;
  clear: both;
  box-sizing: border-box;
}
#stepbody{
	width: 90%;
}

#list{
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 400px;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 15px;
}
#list:hover{
  background-color: #d6d6d6;
}

@media only screen and (max-width: 768px) {

.dualcolumn {
  float: left;
  width: 100%;
  padding: 5px;
  height: 68px; /* Should be removed. Only for demonstration */
  box-sizing: border-box;
}
}