
.accordion_group {
	padding: 0;
	padding-left: 0;
}

.accordion {
	background: #fff;
  border: 2px solid rgba(0, 0, 0, .125);
  margin-bottom: 5px;
  border-radius: 8px;
}
.accordion_btn {
	padding: 10px 11px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  background: none;
  width: 100%;
  border: none;
  text-align: left;
}
.accordion_btn::after {
  content: '\F4FE';
  font-family: 'bootstrap-icons';
  font-size: 1.2em;
  color: #0046ad;
}
.accordion_btn.active::after {
  content: '\F2EA';
}
.accordion_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s cubic-bezier(0, 1, 0, 1), opacity .5s ease;
  opacity: 0;
  visibility: hidden;
}
.accordion_content.active {
  overflow: visible;
  max-height: 9999px;
  transition: max-height 1s ease-in-out, opacity .5s ease;
  opacity: 1;
  visibility: visible;
  padding: 10px 11px;
  overflow: auto;
}