.accr_accordion {
	position: relative;
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px 10px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 17px;
  transition: 0.4s;
}

/* .accr_accordion > div:first-child {
  padding-left: 5px;
  padding-right: 5px;
  text-align: center;
} */

.accr_active,
.accr_accordion:hover {
  background-color: #ccc;
}

.accr_accordion:after {
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
  content: "\002B";
  color: #777;
  font-weight: bold;
  font-size: 1.5em;
}

.accr_active:after {
  content: "\2212";
}

.accr_panel {
  background-color: white;
  padding-left: 10px;
  padding-right: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.accr_panel > table {
  background-color: #fff;
}

.accr_panel > *:last-child {
	margin-bottom: 40px;
}
