.spel-steps-panel {
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border: 1px solid rgb(235 235 235);
  border-radius: 10px;
  display: flex;
  padding: 22px 0;

  .item-list {
    position: relative;
    list-style: none;
    padding-left: 20px;

    &::after {
      content: "";
      position: absolute;
      left: 32px;
      top: 2px;
      bottom: 5px;
      width: 1px;
      background-color: #c4cdd5;
    }

    li {
      font-size: 16px;
      margin: 16px 0;
      position: relative;
      padding-left: 35px;
      z-index: 1;
      line-height: 25px;
      &:first-child {
        margin-top: 0 !important;
      }
      &:last-child {
        margin-bottom: 0 !important;
      }
      .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        height: 32px;
        width: 32px;
        border-radius: 50%;
        background-color: var( --e-global-color-accent );
        left: -4px;
        border: 5px solid #ffffff;
        i {
          color: #fff;
          font-weight: 500;
          font-size: 12px;
        }
        svg {
          height: 10px;
          width: 10px;
        }
      }

    }
  }

  .ordered {
    counter-reset: list-counter; // Reset the counter for ordered lists
    li {
      counter-increment: list-counter; // Increment the counter for each list item
      position: relative;
      padding-left: 50px;

      &::before {
        content: counter(list-counter); // Default numeric counter
        position: absolute;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 32px;
        width: 32px;
        border-radius: 50%;
        background-color: var( --e-global-color-accent );
        left: 0;
        border: 5px solid #ffffff;
        color: #fff;
        font-weight: 500;
        font-size: 12px;
        transition: all 0.3s ease;
      }
    }

    &.alpha {
      li::before {
        content: counter(list-counter, lower-alpha); // Alphabetic (a, b, c...)
      }
    }

    &.roman {
      li::before {
        content: counter(list-counter, upper-roman); // Roman numerals (I, II, III...)
      }
    }
  }

}

