.term-description {
  padding: var(--adebeo-spacing-xl) 0 0;
  border-radius: var(--adebeo-border-radius-xs);
  position: relative;
  transition: max-height 0.3s;
}

.products {
  transition: opacity 0.25s ease-in-out;
}

.products[aria-busy='true'] {
  opacity: 0;
}

#products-loader {
  margin: var(--adebeo-spacing-xm) 0;
  background: var(--adebeo-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.spinner {
  border: 8px solid var(--adebeo-gray);
  border-top: 8px solid var(--adebeo-accent-color);
  border-radius: 50%;
  width: var(--adebeo-spacing-l);
  height: var(--adebeo-spacing-l);
  animation: spin 1s linear infinite;
}

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