.content_dg {

  --background-body: #fff;
  --background: #efefef;
  --background-alt: #f7f7f7;
  --selection: #9e9e9e;
  --text-main: #363636;
  --text-bright: #000;
  --text-muted: #70777f;
  --links: #0076d1;
  --focus: #0096bfab;
  --border: #dbdbdb;
  --code: #000;
  --animation-duration: 0.1s;
  --button-base: #d0cfcf;
  --button-hover: #9b9b9b;
  --scrollbar-thumb: rgb(200, 200, 200);
  --scrollbar-thumb-hover: var(--button-hover);
  --form-placeholder: #949494;
  --form-text: #1d1d1d;
  --variable: #39a33c;
  --highlight: #ff0;
  --select-arrow: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='62.5' width='116.9' fill='%23161f27'%3E %3Cpath d='M115.3,1.6 C113.7,0 111.1,0 109.5,1.6 L58.5,52.7 L7.4,1.6 C5.8,0 3.2,0 1.6,1.6 C0,3.2 0,5.8 1.6,7.4 L55.5,61.3 C56.3,62.1 57.3,62.5 58.4,62.5 C59.4,62.5 60.5,62.1 61.3,61.3 L115.2,7.4 C116.9,5.8 116.9,3.2 115.3,1.6Z'/%3E %3C/svg%3E");
  scrollbar-color: rgb(170, 170, 170) #fff;
  scrollbar-color: var(--scrollbar-thumb) var(--background-body);
  scrollbar-width: thin;

  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
  line-height: 1.4;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px 20px;
  word-wrap: break-word;
  color: #363636;
  color: var(--text-main);
  background: #fff;
  background: var(--background-body);
  text-rendering: optimizeLegibility;
}

.content_dg_text-right {
  text-align: right;
}

.content_dg_text-center {
  text-align: center;
}
.content_dg_pb-4 {
  padding-bottom: 1rem;
}
.content_dg_box {
  border: 1px solid black;
  padding: 1rem;
}
.content_dg_mb-16 {
  margin-bottom: 4rem;
}

.content_dg h1,
.content_dg h2{
  margin-bottom: 12px;
  margin-top: 24px;
}

.content_dg h2 {
  font-size: 1.2em;
  margin-top: 10px;
  margin-bottom: 0px;
  text-align: left;
}

.content_dg h3 {
  font-size: 1.1em;
  margin-top: 20px;
  margin-bottom: 0px;
  text-indent: 0em;
}

.content_dg h4 {
  font-size: 1em;
  margin-top: 10px;
  margin-bottom: 0px;
  text-indent: -1em;
  padding-left: 1em;
}

.content_dg h5 {
  font-size: 1em;
  margin-top: 0;
  margin-bottom: 0.1em;
  text-indent: 0em;
  padding-left: 1em;
}

.content_dg h6 {
  font-size: 1em;
  margin-top: 20px;
  margin-bottom: 20px;
  text-indent: 0em;
  padding-left: 1em;
}

.content_dg h1 {
  color: #000;
  color: var(--text-bright);
}

.content_dg h2{
  color: #000;
  color: var(--text-bright);
}

.content_dg h3 {
  color: #000;
  color: var(--text-bright);
}

.content_dg strong {
  color: #000;
  color: var(--text-bright);
}

.content_dg h1,
.content_dg h2,
.content_dg h3,
.content_dg b,
.content_dg strong,
.content_dg th {
  font-weight: 600;
}

.content_dg mark {
  background-color: #ff0;
  background-color: var(--highlight);
  border-radius: 2px;
  padding: 0 2px 0 2px;
  color: #000;
}

.content_dg p {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.content_dg ol {
display: block;
list-style-type: lower-latin;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
margin-top: 0;
}

.content_dg ol1 {
display: block;
list-style-type: disc;
margin-block-start: 1em;
margin-block-end: 1em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 40px;
margin-top: 0;
}

.content_dg li {
display: list-item;
text-align: -webkit-match-parent;
margin-bottom: 0.1em;
}

.content_dg a > code,
.content_dg a > strong {
color: inherit;
}