html {
  --steps-color-main: indigo;
  --steps-color-sub: rgba(75, 0, 130, 0.2);
  --steps-color-hover: #6c14ac;
  scroll-behavior: smooth;
}
.steps-widget-section {
  transition: opacity 1s ease-in-out;
  text-align: left !important;
  border: 1px solid #e5e7eb;
  padding: 20px;
}
.steps-widget-section a {
  color: var(--steps-color-main) !important;
}
.steps-widget-section h3 {
  color: #000 !important;
  font-size: 20px !important;
  font-weight: 700;
  margin: 15px 0 !important;
  padding: 0 !important;
}
.steps-widget-section .steps-widget {
  width: 100%;
  counter-reset: list;
  font-size: 18px !important;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.steps-widget-section .steps-widget .steps-widget-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  margin-right: 5px;
  background: #f7f7f7;
}
.steps-widget-section .steps-widget .steps-widget-item-visible {
  opacity: 1;
  transform: translateY(0);
}
.steps-widget-section .steps-widget .steps-widget-item::before {
  counter-increment: list;
  content: counter(list);
  color: #fff;
  background: var(--steps-color-main);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 25px;
  font-size: 14px;
  width: 100%;
  height: 25px;
  font-weight: 900;
}
@media (max-width: 500px) {
  .steps-widget-section .steps-widget {
    font-size: 16px !important;
  }
  .steps-widget-section h3 {
    font-size: 18px !important;
  }
}
@media (max-width: 450px) {
  .steps-widget-section .steps-widget {
    font-size: 14px !important;
  }
  .steps-widget-section .steps-widget .steps-widget-item::before {
    max-width: 20px;
    height: 20px;
    font-size: 12px;
  }
}
.steps-logo {
  max-width: 150px;
}
@keyframes shine {
  to {
    left: 125%;
  }
}
