.code-wrapper {
    display: flex;
    gap: 10px;
    background-color: #fbfbfb;
    border: 1px solid #f3f3f3;
    position: relative;
    line-height: 1.1em;
}
.snippet-content pre{
  background-color: #fbfbfb;
  border: 1px solid #f3f3f3;
}
.code-wrapper > pre{
  margin-bottom: 0;
} 
.code-wrapper .lang {
    position: absolute;
    right: 0;
    font-size: 12px;
    margin-right: 10px;
    color: #d1d1d1;
    text-shadow: 1px 1px 1px #fff;
}
.code-wrapper > pre > code, .code-line-numbers span {
    font-family: var(--code-font)!important;
    font-size: 14px!important;
    line-height: 1.6!important;
}
.code-wrapper .code-line-numbers {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background-color: #ffffff;
    color: #bbbbbb;
    padding: 10px 0;
    border-right: 1px solid #f3f3f3;
}
.code-wrapper > pre > code{
  padding: 10px 0;
  display: block;
}
.code-wrapper .code-line-numbers span {
    display: inline-flex;
    width: 36px;
    justify-content: end;
    margin-right: 6px;
}

.hljs-comment,
.hljs-quote,
.hljs-variable {
  color: #009688;
}

.hljs-keyword,
.hljs-selector-tag,
.hljs-built_in,
.hljs-name,
.hljs-tag {
  color: #1487e2;
}

.hljs-string,
.hljs-title,
.hljs-section,
.hljs-attribute,
.hljs-literal,
.hljs-template-tag,
.hljs-template-variable,
.hljs-type,
.hljs-addition {
  color: #a31515;
}

.hljs-deletion,
.hljs-selector-attr,
.hljs-selector-pseudo,
.hljs-meta {
  color: #2b91af;
}

.hljs-doctag {
  color: #808080;
}

.hljs-attr {
  color: #f00;
}

.hljs-symbol,
.hljs-bullet,
.hljs-link {
  color: #00b0e8;
}

@media screen and (max-width: 640px) {

  .code-wrapper > pre > code{
    padding-left:10px!important;
  }
}


