.accordion {
  background: transparent;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

.accordion-button:focus,
.accordion-button {
  box-shadow: none;
  padding: 10px;
}

.accordion-button {
	background:	white; /* default state of closed buttons */
	color: black;
}

.accordion-button:not(.collapsed) {
	background: white; /* default state of the open button */
	color: black !important;
}

.accordion-button:hover {
  background-color: #ddd; /* hover state of button */
	color: black;
}

.accordion-body {
  border: 1px solid #ddd;
	margin-bottom: -1px;
}
