.accordion {
	background-color: #FF8C00;
	color: white;
	cursor:  pointer;
	padding: 18px;
	border: none;
	text-align: left;
	outline:  none;
	font-size:  15px;
	transition: 0.4s;
	width: 60%;
}

.active, .accordion:hover {
	background-color: #ccc;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: inherit;
	overflow: visble;
}

/* Add the icon */
.accordion:after {
  content: '\02795'; /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2796"; /* Unicode character for "minus" sign (-) */
}

.row {
	display:flex;
	align-items:center;
	justify-content:center;
/*	background:orange;*/
	margin:3px;
}

@media screen and (max-width: 800px) {

	.accordion {
		width: 100%;
	  }
	}