/* add your css rules here */

@import("/css/bt_business_v2/bootstrap-4.4.1/scss/bootstrap.min.css?v=2977");
@import("/css/bt_business_v2/scss/fragments.min.css?v=2977");
@import("/css/bt_business_v2/fonts/btfont/fonts.min.css?v=2977");

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
}
ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}
ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;
}
li ol > li {
  margin: 0;
}
li ol > li:before {
  content: counters(item, ".") " ";
}
ol[type="a"] {
  counter-reset: a;
  list-style-type: lower-alpha;
}
ol[type="a"] li {
  counter-increment: a;
}
ol[type="a"] li:before {
  content: counter(a, lower-alpha);
}
ol[type="i"] {
  counter-reset: i;
  list-style-type: lower-roman;
}
ol[type="i"] li {
  counter-increment: i;
}
ol[type="i"] li:before {
  content: counter(i, lower-roman);
}