/*

Visual Studio-like style based on original C# coloring by Jason Diamond <jason@diamond.name>

*/
.hljs {
  display: block;
  overflow-x: auto;
  padding: 0.5em;
  background: rgba( 255, 255, 255 ,  1 );
  background: rgba( var(--palette-neutral-0,255, 255, 255) ,  1 );
  color: rgba( 0, 0, 0 ,  1 );
  color: rgba( var(--palette-neutral-100,0, 0, 0) ,  1 );
  -webkit-text-size-adjust: none;
}

.hljs-comment,
.hljs-annotation,
.diff .hljs-header,
.hljs-chunk,
.apache .hljs-cbracket {
  color: rgba( 16, 124, 16 ,  1 );
  color: rgba( var(--palette-accent2-dark,16, 124, 16) ,  1 );
}

.hljs-keyword,
.hljs-id,
.hljs-built_in,
.smalltalk .hljs-class,
.hljs-winutils,
.bash .hljs-variable,
.tex .hljs-command,
.hljs-request,
.hljs-status,
.nginx .hljs-title,
.xml .hljs-tag,
.xml .hljs-tag .hljs-value {
  color: rgba(0, 90, 158, 1);
  color: var(--communication-foreground,rgba(0, 90, 158, 1));
}

.hljs-string,
.hljs-title,
.hljs-parent,
.hljs-tag .hljs-value,
.hljs-rule .hljs-value,
.ruby .hljs-symbol,
.ruby .hljs-symbol .hljs-string,
.hljs-template_tag,
.django .hljs-variable,
.hljs-flow,
.hljs-stream,
.apache .hljs-tag,
.hljs-date,
.tex .hljs-formula,
.coffeescript .hljs-attribute,
.hljs-name {
  color: rgba( 168, 0, 0 ,  1 );
  color: rgba( var(--palette-accent1-dark,168, 0, 0) ,  1 );
}

.ruby .hljs-string,
.hljs-decorator,
.hljs-filter .hljs-argument,
.hljs-localvars,
.hljs-array,
.hljs-attr_selector,
.hljs-pseudo,
.hljs-pi,
.hljs-doctype,
.hljs-envvar,
.hljs-shebang,
.hljs-preprocessor,
.hljs-pragma,
.userType,
.apache .hljs-sqbracket,
.nginx .hljs-built_in,
.tex .hljs-special,
.hljs-prompt {
  color: #2b91af;
}

.hljs-doctag,
.hljs-xmlDocTag {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.hljs-type,
.hljs-typename {
  font-weight: bold;
}

.vhdl .hljs-string {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
}

.vhdl .hljs-literal {
  color: rgba( 168, 0, 0 ,  1 );
  color: rgba( var(--palette-accent1-dark,168, 0, 0) ,  1 );
}

.vhdl .hljs-attribute {
  color: rgba( 43, 136, 216 ,  1 );
  color: rgba( var(--palette-primary-tint-10,43, 136, 216) ,  1 );
}

.xml .hljs-attribute {
  color: rgba( 218, 10, 0 ,  1 );
  color: rgba( var(--palette-accent1,218, 10, 0) ,  1 );
}

.hljs-addition {
  background: rgba(51, 153, 51, 0.2);
}

.hljs-deletion {
  background: rgba(172, 0, 0, 0.2);
}

.markdown-renderer-async {
  color: rgba(0, 0, 0, .9);
  color: var(--text-primary-color,rgba(0, 0, 0, .9));
  word-wrap: break-word;
  font-size: 14px;
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
}

.markdown-renderer-async > *:first-child:not(.bolt-table) {
  margin-top: 0px;
}

.markdown-renderer-async > *:last-child:not(.bolt-table) {
  margin-bottom: 0px;
}

.markdown-renderer-async table:not(.bolt-table) {
  margin-top: 10px;
  margin-bottom: 10px;
}

.markdown-renderer-async table:not(.bolt-table).metadata-yaml-table {
  font-size: 12px;
  line-height: 1;
}

.markdown-renderer-async table:not(.bolt-table) th {
  border-style: solid;
  border-width: thin;
  border-color: rgba( 166, 166, 166 ,  1 );
  border-color: rgba( var(--palette-neutral-30,166, 166, 166) ,  1 );
  padding: 8px 10px;
}

.markdown-renderer-async table:not(.bolt-table) td {
  border-style: solid;
  border-width: thin;
  border-color: rgba( 166, 166, 166 ,  1 );
  border-color: rgba( var(--palette-neutral-30,166, 166, 166) ,  1 );
  padding: 8px 10px;
  min-width: 50px;
  max-width: 1000px;
}

.markdown-renderer-async table:not(.bolt-table) tr:nth-child(even) {
  background: rgba( 248, 248, 248 ,  1 );
  background: rgba( var(--palette-neutral-2,248, 248, 248) ,  1 );
}

.markdown-renderer-async code {
  font-family: Menlo, Consolas, Courier New, monospace;
  font-size: 12px;
  background-color: rgba( 234, 234, 234 ,  1 );
  background-color: rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
  padding: 2px 4px;
}

.markdown-renderer-async pre {
  white-space: pre;
  word-wrap: normal;
  background-color: rgba( 234, 234, 234 ,  1 );
  background-color: rgba( var(--palette-neutral-8,234, 234, 234) ,  1 );
  padding: 15px;
  overflow-x: auto;
}

.markdown-renderer-async pre code {
  padding: 0px;
}

.markdown-renderer-async blockquote {
  color: rgba(0, 0, 0, .55);
  color: var(--text-secondary-color,rgba(0, 0, 0, .55));
  border-left:  solid;
  border-left-color: rgba( 166, 166, 166 ,  1 ) 3px;
  border-left-color: rgba( var(--palette-neutral-30,166, 166, 166) ,  1 ) 3px;
  padding-left: 15px;
  margin-left: 0px;
  margin-top: 12px;
  margin-bottom: 12px;
  padding-bottom: 1px;
  padding-top: 1px;
}

.markdown-renderer-async blockquote > p,
.markdown-renderer-async blockquote ol,
.markdown-renderer-async blockquote ul {
  margin: 4px 0;
}

.markdown-renderer-async img {
  max-width: 100%;
}

.markdown-renderer-async ul {
  padding-left: 20px;
}

.markdown-renderer-async ul li.task-list-item {
  list-style-type: none;
  margin-left: -20px;
}

.markdown-renderer-async ol {
  padding-left: 25px;
}

.markdown-renderer-async li {
  list-style: inherit;
}

.markdown-renderer-async li.task-list-item {
  min-height: 18px;
}

.markdown-renderer-async .task-list input.task-list-item-checkbox {
  vertical-align: middle;
  margin: 4px;
  float: none;
}

.markdown-renderer-async h1 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 28px;
  font-weight: 300;
  border: none;
  margin: 14px 0;
  line-height: 1.2;
  margin-top: 28px;
}

.markdown-renderer-async h1 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async h1:first-child {
  margin-top: 0;
}

.markdown-renderer-async h2 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 21px;
  font-weight: normal;
  border: none;
  margin: 14px 0;
  line-height: 1.2;
  margin-top: 28px;
}

.markdown-renderer-async h2 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async h3 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 17px;
  font-weight: 600;
  border: none;
  margin: 14px 0;
  line-height: 1.2;
  margin-top: 28px;
}

.markdown-renderer-async h3 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async h4 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 15px;
  font-weight: 600;
  border: none;
  margin: 14px 0;
  line-height: 1.2;
  margin-top: 28px;
}

.markdown-renderer-async h4 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async h5 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 14px;
  font-weight: 600;
  border: none;
  margin: 14px 0;
}

.markdown-renderer-async h5 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async h6 {
  font-family: "Segoe UI VSS (Regular)","Segoe UI","-apple-system",BlinkMacSystemFont,Roboto,"Helvetica Neue",Helvetica,Ubuntu,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
  font-size: 12px;
  font-weight: 600;
  border: none;
  margin: 14px 0;
}

.markdown-renderer-async h6 .bowtie-icon {
  font-size: unset;
}

.markdown-renderer-async .toc-container {
  border:  1px solid;
  border-color: rgba( 0, 0, 0 ,  0.08 );
  border-color: rgba( var(--palette-neutral-100,0, 0, 0) ,  0.08 );
  border-radius: 4px;
  display: inline-block;
  padding: 10px 16px 10px 0px;
  margin-bottom: 14px;
  min-width: 250px;
}

.markdown-renderer-async .toc-container .toc-container-header {
  font-weight: 600;
  margin: 0px 16px 5px 16px;
}

.markdown-renderer-async .toc-container ul {
  list-style: none;
  margin: 0px;
  padding-left: 16px;
  color: rgba(0, 90, 158, 1);
  color: var(--communication-foreground,rgba(0, 90, 158, 1));
}

.markdown-renderer-async .toc-container li::before {
  content: "\2022 ";
}

.markdown-renderer-async .toc-container a {
  margin-left: 5px;
  display: inline-block;
  vertical-align: top;
  width: auto;
  max-width: 400px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}

.markdown-renderer-async ol {
  padding-left: 40px;
}

.markdown-renderer-async .video-spinner {
  left: 48%;
  top: 48%;
  position: absolute;
}

.markdown-renderer-async .video-learn-more-link {
  left: 245px;
  top: 71%;
  position: absolute;
  pointer-events: none;
}
