.accordion {
  cursor: pointer;
  width: 100%;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--grey-color);
}

/* Style the accordion panel. Note: height 0 by default */
.panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}

.panel.active {
  max-height: 2000px;
}

.highlight-words {
  background-color: transparent;
  text-decoration: underline;
}

.loader {
  border: 2px solid var(--grey-color);
  border-top: 2px solid var(--brand-color);
  border-radius: 50%;
  width: 1.2rem;
  height: 1.2rem;
  animation: spin 1.3s linear infinite;
  margin-left: 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
