.bb_accordion {
    color: #444;
    cursor: pointer;
    padding: 1.4rem 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    justify-content: space-between;
    display: flex;
    align-items: anchor-center;
}
.bb_accordion i{
	transition: 0.3s;
}
.bb_accordion.bb_active i{
    rotate: 180deg;
	transition: 0.3s;
}
.bb_active, .bb_accordion:hover {
  background-color: #ccc;
}

.bb_panel {
  padding: 0 0px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.bb_panel.bb_open{
	padding-bottom: 2rem;
	max-height: 500px !important;
	transition: max-height 0.4s ease-out;
}
.bb_accordion-item button{
	font-size: 1.2rem;
	font-family: "Bree Serif";
}
