.cec-step {
  display: none;
  position: absolute;
  width: 100%;
  transition: all 0.4s ease;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}

.cec-step.active {
  display: block;
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.cec-step.backward {
  transform: translateX(-100%);
}
