.accordion {
	overflow: hidden;
}
.accordion-header {
	cursor: pointer;
	font-weight: bold;
	transition: background-color 0.3s ease;
}
.accordion-header h3 {
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  background-position: left 50%;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.66%22%20height%3D%2212.66%22%20viewBox%3D%220%200%2012.66%2012.66%22%3E%0D%0A%20%20%3Cg%20id%3D%22orange-plus%22%20transform%3D%22translate(145.99%20-6)%20rotate(90)%22%3E%0D%0A%20%20%20%20%3Cpath%20id%3D%22Path_7428%22%20data-name%3D%22Path%207428%22%20d%3D%22M7%2C0H17.66%22%20transform%3D%22translate(0%20139.659)%22%20fill%3D%22none%22%20stroke%3D%22%23ff8300%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0D%0A%20%20%20%20%3Cpath%20id%3D%22Path_9030%22%20data-name%3D%22Path%209030%22%20d%3D%22M7%2C0H17.66%22%20transform%3D%22translate(12.33%20151.99)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23ff8300%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%222%22%2F%3E%0D%0A%20%20%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A');
  background-repeat: no-repeat;
  background-size: 16px;
  position: relative;
  padding: 2rem;
  border-bottom: 1px solid #bdbdbd;
  -webkit-transition: background .2s ease-in-out;
  transition: background .2s ease-in-out;
}
.accordion-header.active h3 {
	color:inherit;
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20width%3D%2226%22%20height%3D%2226%22%20viewBox%3D%220%200%2026%2026%22%3E%0D%0A%20%20%3Cdefs%3E%0D%0A%20%20%20%20%3CclipPath%20id%3D%22clip-path%22%3E%0D%0A%20%20%20%20%20%20%3Crect%20id%3D%22Rectangle_10351%22%20data-name%3D%22Rectangle%2010351%22%20width%3D%2226%22%20height%3D%2226%22%20transform%3D%22translate(1002%201190)%22%20fill%3D%22none%22%20stroke%3D%22%23ff8300%22%20stroke-width%3D%221%22%2F%3E%0D%0A%20%20%20%20%3C%2FclipPath%3E%0D%0A%20%20%3C%2Fdefs%3E%0D%0A%20%20%3Cg%20id%3D%22orange-minus%22%20transform%3D%22translate(-1002%20-1190)%22%20clip-path%3D%22url(%23clip-path)%22%3E%0D%0A%20%20%20%20%3Cg%20id%3D%22Group_5238%22%20data-name%3D%22Group%205238%22%20transform%3D%22translate(1158.229%201187.692)%20rotate(90)%22%3E%0D%0A%20%20%20%20%20%20%3Cpath%20id%3D%22Path_9173%22%20data-name%3D%22Path%209173%22%20d%3D%22M0%2C0H16.8%22%20transform%3D%22translate(15.4%20151.13)%20rotate(-90)%22%20fill%3D%22none%22%20stroke%3D%22%23ff8300%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%223%22%2F%3E%0D%0A%20%20%20%20%3C%2Fg%3E%0D%0A%20%20%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A');
	border-bottom: none;
}
.accordion-header.active h3, .accordions .accordion:last-of-type h3 {
	border:none;
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
	background-color: #fff;
}
.accordion-content-inner {
    padding: 0 0 0 30px;
}
.accordion-content p {
	margin: 0 0 10px 0;
}