
.ac-container {
   /* You can add CSS for the accorion container here */
   background-color: white;
}

.ac-header {
   cursor: pointer;
   position: relative;
}

.ac-toggler {
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   transition: 0.4s transform;
}

.ac-header.expanded .ac-toggler {
   transform: translateY(-50%) rotate(180deg);
}

.ac-pane {
   overflow: hidden;
   max-height: 0;
   min-height: unset !important;
   transition: 0.4s max-height;
}