
.kxlab-docs-section h1 {
  padding-top: 2rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section h2 {
  padding-top: 1.75rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section h3 {
  padding-top: 1.5rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section h4 {
  padding-top: 1.25rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section h5 {
  padding-top: 1rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section h6 {
  padding-top: .75rem;
  padding-bottom: .25rem;
  font-family: 'Fira Sans';
}

.kxlab-docs-section p {
  text-align: justify;
  padding-top: .5rem;
}
@media screen and (max-width: 576px) {
  .kxlab-docs-section p {
    text-align: left;
 }
}

.kxlab-docs-section p.lead {
  padding-top: 1rem;
}

/***************************************************************
  Author's NOTE rule and paragraph
 ***************************************************************/
p.authors-note {
  text-align: right;
  width: 60%;

  color: var(--bs-kxlab-link-color);
  border-top: 1px solid var(--bs-kxlab-link-color);

  margin: 0 .25rem 0 auto; /* top, right, bottom, left */
  margin-left: auto
  padding-left: .1rem;
  padding-right: .1rem;
  padding-top: .1rem;
  padding-bottom: .25rem;

  font-family: 'Fira Sans';
  font-size: .875rem; /* 14px */
  font-weight: 400;
}

p.authors-note.gray {
  color: var(--bs-secondary-color);
  border-top: 1px solid var(--bs-secondary-color);
}


/***************************************************************
  Legal styles:
 */
ol.list {
  list-style-type: none;
  counter-reset: list;
  padding-left: 0;
  text-align: justify;
}
@media screen and (max-width: 576px) {
  ol.list {
    text-align: left;
 }
}

/* Первый уровень */
ol.list > li {
  counter-increment: list;
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5em;
  text-indent: -.1rem
}

ol.list > li::before {
  content: counter(list) ". ";
  position: absolute;
  left: 0;
}

/* Второй уровень */
ol.list > li ol.list {
  list-style-type: none;
  counter-reset: list;
  padding-left: 0;
  padding-top: .5rem;
  text-align: justify;
}
@media screen and (max-width: 576px) {
  ol.list > li ol.list {
    text-align: left;
 }
}

ol.list > li ol.list > li {
  counter-increment: list;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
  text-indent: -.1rem
}

ol.list > li > ol.list li::before {
  content: counters(list, ".") ". ";
  position: absolute;
  left: 0;
}

/* Третий уровень */
ol.list > li ol.list > li ol.list {
  list-style-type: none;
  counter-reset: list;
  padding-left: 0;
  padding-top: .5rem;
  text-align: justify;
}
@media screen and (max-width: 576px) {
  ol.list > li ol.list > li ol.list {
    text-align: left;
 }
}

ol.list > li ol.list > li ol.list > li {
  counter-increment: list;
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 0.5em;
  text-indent: -.1rem
}

ol.list > li > ol.list > li > ol.list li::before {
  content: counters(list, ".") ". ";
  position: absolute;
  left: 0;
}


ol.alpha {
  counter-reset: alpha;
  padding-left: .25rem;
  padding-top: .25rem;
}
ol.alpha > li {
  list-style: none;
  padding-top: .5rem;
  position: relative;
  padding-left: 1.75rem;
  text-indent: -1.4rem;
  text-align: left;
}
ol.alpha > li:before {
  counter-increment: alpha;
  content: counter(alpha, upper-alpha) ")" !important;
  position: relative !important;
  left: 0 !important;
}
ol.alpha.lower > li:before {
  content: counter(alpha, lower-alpha) ")" !important;
}


ol.dash {
  counter-reset: dash;
  padding-left: .25rem;
}
ol.dash > li {
  list-style: none;
  padding-top: .5rem;
  padding-left: 1.5rem;
  text-indent: -1.25rem;
  text-align: left;
}
ol.dash > li:before {
  counter-increment: dash;
  content: "\2013\00A0" !important;
  position: relative !important;
  left: 0 !important;
  font-weight: 700;
}


/*
  Terms of Service
 */
ul.dash {
  padding-top: 1rem;
  margin-bottom: 0.625rem; /* 10px */
}
ul.dash li {
  padding-left: .5rem;
  text-align: justify;
}
@media screen and (max-width: 576px) {
  ul.dash li {
    text-align: left;
 }
}

ul.dash li::marker {
/*
  content: "– ";
  content: "\2013\00A0"; = "–&nbsp;"
 */
  content: "\2013 ";
  font-weight: 500;
}
/*
  End of Legal Styles.
 ***************************************************************/

/***************************************************************
  The font style modificators:
 */
.bold {
  font-weight: 700 !important;
}
.italic {
  font-style: italic !important;
}
.mono {
  font-family: 'Roboto Mono';
  font-size: smaller;
}
/*
  End of the font style modificators:
 ***************************************************************/


pre {
  margin-top: 1rem;
  margin-left: .1rem;
  margin-right: .1rem;
  margin-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--bs-pre-bg-color);
  border: var(--bs-pre-border);
  text-align: left;
  font-family: 'Roboto Mono';
  font-size: .875rem; /* 14px; */
  font-weight: 400;
  line-height: 133%;
  white-space: pre;
  overflow-x: auto;
}

.make-tab {
  font-weight: bold;
  color: var(--bs-pre-make-tab); 
}


.picture {
  margin-left: .25rem;
  margin-right: .25rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  text-align: left;
  font-family: 'Fira Sans';
  font-size: .75rem;
}

.blog-main-picture {
  margin: 0;
  padding: 1rem 0 0 0;
  text-align: center;
}

.pix-area {
  margin-left: .25rem;
  margin-right: .25rem;
}

.pix-align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pix-note {
  margin-left: .25rem;
  margin-right: .25rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: .5rem;
  text-align: center;
  font-family: 'Fira Sans';
  font-size: .875rem;
}

