.bc-accordion {
  margin-bottom: 1.5rem;
  overflow: hidden;
}

button.bc-accordion-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  margin: 0.5rem auto;
  border: 1px solid #828282;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}
p.bc-accordion-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.5rem auto;
  transition: transform 0.3s ease;
  cursor: pointer;
  color: #828282;
}

.bc-accordion-icon {
  width: 9px;
  height: 9px;
  background-image: url('../img/chevron-bottom.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

p.bc-accordion-toggle .bc-accordion-icon {
  width: 10px;
  height: 10px;
  background-image: url('../img/chevron-bottom.svg');
  margin: 0 6px;
}

.bc-accordion.is-open .bc-accordion-toggle .bc-accordion-icon {
  transform: rotate(180deg);
}

.bc-accordion-content {
  padding: 0 1rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
}

.bc-accordion.is-open .bc-accordion-content {
  opacity: 1;
}
