/* Custom styles to move the arrows */

.arrow-icon {
  transition: transform 0.2s ease-in-out;
  margin-right: 5px;
}

.accordion-toggle {
  cursor: pointer;
}

.accordion-toggle.collapsed .arrow-icon {
  transform: rotate(0deg);
}

.accordion-toggle .arrow-icon {
  transform: rotate(180deg);
}