/**
 * Copyright 2024-2025 Kronseder & Reiner GmbH, smartics
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/*
   ... Steps Counter Configuration ..........................................
 */

body div.projectdoc-steps {
  counter-reset: step1 step2 step3 step4 step5 step6;
}

div.projectdoc-steps .projectdoc-has-id-or-tags.step.step-level-1.step-number,
div.projectdoc-steps .step-level-1.step-number,
div.projectdoc-steps .step-level-1.step-number:first-child {
  counter-increment: step1;
  counter-reset: step2 step3 step4 step5 step6;
}

div.projectdoc-steps .step-level-1.step-number:before {
  content: counter(step1) " ";
}

div.projectdoc-steps .step-level-2.step-number {
  counter-increment: step2;
  counter-reset: step3 step4 step5 step6;
}

div.projectdoc-steps .step-level-2.step-number:before {
  content: counter(step1) "." counter(step2) " ";
}

div.projectdoc-steps .step-level-3.step-number {
  counter-increment: step3;
  counter-reset: step4 step5 step6;
}

div.projectdoc-steps .step-level-3.step-number:before {
  content: counter(step1) "." counter(step2) "." counter(step3) " ";
}

div.projectdoc-steps .step-level-4.step-number {
  counter-increment: step4;
  counter-reset: step5 step6;
}

div.projectdoc-steps .step-level-4.step-number:before {
  content: counter(step1) "." counter(step2) "." counter(step3) "." counter(step4) " ";
}

div.projectdoc-steps .step-level-5.step-number {
  counter-increment: step5;
  counter-reset: step6;
}

div.projectdoc-steps .step-level-5.step-number:before {
  content: counter(step1) "." counter(step2) "." counter(step3) "." counter(step4) "." counter(step5) " ";
}

div.projectdoc-steps .step-level-6.step-number {
  counter-increment: step6;
}

div.projectdoc-steps .step-level-6.step-number:before {
  content: counter(step1) "." counter(step2) "." counter(step3) "." counter(step4) "." counter(step5) "." counter(step6) " ";
}

