.card.accordion {
  border: 1px solid #E9EADE;
  box-sizing: border-box;
  border-radius: 10px;
  background: #F9F9F9;
}

.card.accordion .card-header {
  cursor: pointer;
}
.card.accordion .card-content {
  height: 0px;
  overflow:hidden;
  transition: height 0.3s ease-in-out;
}

.card.accordion.toggled .card-content {
  
}

.card.accordion .card-expand {
  position: absolute;
  right: 24px;
  width: 24px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.59 0.590088L6 5.17009L1.41 0.590088L0 2.00009L6 8.00009L12 2.00009L10.59 0.590088Z' fill='%232E8782'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform 0.3s ease-in-out;
}

.card.accordion.toggled .card-expand {
  transform: rotate(180deg);
}