html {
    height: 100%;
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
    background-color: var(--color-background);
    color: var(--color-foreground);
    font-family: var(--font-family);
    height: 100%;
    line-height: 1.4;
    font-size: 100% !important;
}

a {
    border: 0;
    color: var(--color-link-foreground);
    font-weight: 400;
    outline: none;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:focus {
    outline-color: var(--color-focus-border);
}

b {
    font-weight: 600;
}

h1 {
    border: none;
    font-size: 4rem;
    font-weight: 400;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

h2 {
    font-size: 2.2rem;
    font-weight: 200;
    line-height: normal;
    margin: 1em 0 0.3em 0;
    white-space: nowrap;
}

h3 {
    font-size: 1.8rem;
    font-weight: 200;
    line-height: normal;
    margin: 1em 0 0.3em 0;
    white-space: nowrap;
}

h4 {
    font-size: 1rem;
    font-weight: 200;
    line-height: normal;
    margin: 1em 0 0.3em 0;
    white-space: nowrap;
}

button,
input,
select,
textarea {
    font-family: var(--font-family);
    font-size: inherit;
    margin: 0;
}

input[type='checkbox'] {
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
    padding: 0 10px;
    mix-blend-mode: luminosity;
}

input[type='checkbox']:focus {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    outline: none;
}

input[type='checkbox'][disabled] {
    color: var(--color-foreground--75);
    cursor: default;
}

input[type='checkbox']+label {
    margin-right: 10px;
}

input[type='number'],
input[type='text'],
input[type='password'],
input:not([type]),
textarea {
    color: var(--color-foreground);
    margin: 0 10px;
    max-width: 300px;
    padding: 4px;
    width: 100%;
}

input[type='number']:not([disabled]),
input[type='text']:not([disabled]),
input[type='password']:not([disabled]),
input:not([type]):not([disabled]),
textarea:not([disabled]) {
    background: none;
}

.vscode-dark input[type='number'],
.vscode-dark input[type='text'],
.vscode-dark input[type='password'],
.vscode-dark input:not([type]),
.vscode-dark textarea {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.vscode-light input[type='number'],
.vscode-light input[type='text'],
.vscode-light input[type='password'],
.vscode-light input:not([type]),
.vscode-light textarea {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

input[type='number']:focus,
input[type='text']:focus,
input[type='password']:focus,
input:not([type]):focus,
textarea:focus {
    outline-color: var(--color-focus-border);
}

.vscode-light input[type='number']:focus,
.vscode-light input[type='text']:focus,
.vscode-light input[type='password']:focus,
.vscode-light input:not([type]):focus,
.vscode-light textarea:focus {
    background-color: rgba(255, 255, 255, 0.4);
}

.vscode-dark input[type='number']:focus,
.vscode-dark input[type='text']:focus,
.vscode-dark input[type='password']:focus,
.vscode-dark input:not([type]):focus,
.vscode-dark textarea:focus {
    background-color: rgba(0, 0, 0, 0.2);
}

input[type='number'][disabled],
input[type='text'][disabled],
input[type='password'][disabled],
input:not([type])[disabled],
textarea[disabled] {
    color: var(--color-foreground--75);
    cursor: default;
}

input[type='number']::placeholder,
input[type='text']::placeholder,
input[type='password']::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
    color: var(--vscode-input-placeholderForeground);
}

input[type='number'] {
    display: block;
    max-width: 100px;
}

kbd {
    display: inline-block;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 11px;
    line-height: 11px;
    padding: 3px 5px;
    margin: 0 2px;
    vertical-align: baseline;
}

label {
    cursor: pointer;
}

.vscode-light label {
    color: #006ab1;
}

.vscode-dark label {
    color: #3794ff;
}

select {
    background: none;
    color: var(--color-foreground);
    cursor: pointer;
    padding: 2px 23px 2px 8px;
    min-width: 25.6em;
    max-width: 25.6em;
    appearance: none;
    -webkit-appearance: none;
}

.vscode-light select {
    border: 1px solid rgba(0, 0, 0, 0.3);
}

.vscode-dark select {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

select:focus {
    outline-color: var(--color-focus-border);
}

.vscode-light select:focus {
    background-color: rgba(255, 255, 255, 0.4);
}

.vscode-dark select:focus {
    background-color: rgba(0, 0, 0, 0.2);
}

select[disabled] {
    color: var(--color-foreground--75);
    cursor: default;
}

.vscode-light select option {
    background-color: var(--color-background--darken-05);
}

.vscode-dark select option {
    background-color: var(--color-background--lighten-05);
}

select option:focus {
    outline-color: var(--color-focus-border);
}

.vscode-light select option:focus {
    background-color: rgba(255, 255, 255, 0.4);
}

.vscode-dark select option:focus {
    background-color: rgba(0, 0, 0, 0.2);
}

.radio-container {
    display: inline-block;
    position: relative;
    margin: 0 0.75em;
}

.select-container {
    display: inline-block;
    position: relative;
    margin: 0 0.75em;
}

.select-container::after {
    content: '\eab4';
    font-family: codicon;
    font-size: 13px;
    width: 13px;
    height: 13px;
    line-height: 13px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 6px;
    margin: auto;
    pointer-events: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar-corner {
    background-color: transparent !important;
}

code {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-foreground--75);
    border-radius: 3px;
    padding: 2px 4px;
    vertical-align: middle;
}

.button {
    background: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    margin: 1em 0.5em;
    padding: 1em 1.75em;
    text-decoration: none;
    text-transform: uppercase;
    user-select: none;
    white-space: nowrap;
}

.button:focus {
    outline: none;
}

.button[disabled] {
    cursor: default !important;
    opacity: 0.25 !important;
}

.button .shortcut {
    display: block;
    font-size: 0.8rem;
    margin: 5px 0 0 0;
    font-weight: 200;
    opacity: 0.6;
}

.button:hover .shortcut {
    opacity: 1;
}

.button--big {
    font-size: 1.5rem;
}

.button--flat {
    transition: background-color 250ms, border-color 250ms, color 250ms;
}

.vscode-light .button--flat {
    border: 1px solid rgba(0, 0, 0, 0.6);
    color: black;
}

.vscode-dark .button--flat {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
}

.vscode-light .button--flat:not([disabled]):hover,
.vscode-light .button--flat:not([disabled]):focus {
    background-color: var(--color-button-background--darken-30);
    border-color: var(--color-button-background--darken-30);
    color: white;
}

.vscode-dark .button--flat:not([disabled]):hover,
.vscode-dark .button--flat:not([disabled]):focus {
    background-color: white;
    border-color: white;
    color: black;
}

.preload .button--flat {
    transition-duration: 0s !important;
}

.button--flat-inverse {
    background-color: white;
    border: 1px solid white;
    color: black;
    font-weight: 600;
    transition: background-color 250ms, border-color 250ms, color 250ms;
}

.button--flat-inverse:not([disabled]):hover,
.button--flat-inverse:not([disabled]):focus {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
}

.preload .button--flat-inverse {
    transition-duration: 0s !important;
}

.button--flat-primary {
    background-color: var(--color-button-background);
    border: 1px solid var(--color-button-background);
    color: var(--color-button-foreground);
    font-weight: 600;
    transition: background-color 250ms, border-color 250ms, color 250ms;
}

.vscode-dark .button--flat-primary:not([disabled]):hover,
.vscode-dark .button--flat-primary:not([disabled]):focus {
    background-color: white;
    border-color: white;
    color: black;
}

.vscode-light .button--flat-primary:not([disabled]):hover,
.vscode-light .button--flat-primary:not([disabled]):focus {
    background-color: var(--color-button-background--darken-30);
    border-color: var(--color-button-background--darken-30);
    color: white;
}

.preload .button--flat-primary {
    transition-duration: 0s !important;
}

.button--flat-secondary {
    background-color: var(--color-button-secondary-background);
    border: 1px solid var(--color-button-secondary-background);
    color: var(--color-button-foreground);
    font-weight: 600;
    transition: background-color 250ms, border-color 250ms, color 250ms;
}

.vscode-dark .button--flat-secondary:not([disabled]):hover,
.vscode-dark .button--flat-secondary:not([disabled]):focus {
    background-color: white;
    border-color: white;
    color: black;
}

.vscode-light .button--flat-secondary:not([disabled]):hover,
.vscode-light .button--flat-secondary:not([disabled]):focus {
    background-color: var(--color-button-secondary-background--darken-30);
    border-color: var(--color-button-secondary-background--darken-30);
    color: white;
}

.preload .button--flat-secondary {
    transition-duration: 0s !important;
}

.button--flat-subtle {
    transition: background-color 250ms, border-color 250ms, color 250ms;
}

.vscode-light .button--flat-subtle {
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.6);
}

.vscode-dark .button--flat-subtle {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
}

.vscode-light .button--flat-subtle:not([disabled]):hover,
.vscode-light .button--flat-subtle:not([disabled]):focus {
    background-color: var(--color-button-secondary-background--darken-30);
    border-color: var(--color-button-secondary-background--darken-30);
    color: white;
}

.vscode-dark .button--flat-subtle:not([disabled]):hover,
.vscode-dark .button--flat-subtle:not([disabled]):focus {
    background-color: white;
    border-color: white;
    color: black;
}

.preload .button--flat-subtle {
    transition-duration: 0s !important;
}

.button--right {
    margin-left: auto;
}

.vscode-button {
    background-color: var(--color-button-background);
    border: 1px solid var(--color-button-background);
    color: var(--color-button-foreground);
    /* max-width: 100px; */
    box-sizing: border-box;
    /* width: 100%; */
    padding: 4px;
    text-align: center;
    cursor: pointer;
    justify-content: center;
    padding-left: 9px;
    padding-right: 9px;
    align-items: center;
}

.vscode-button:hover:not(:disabled) {
    cursor: pointer;
    color: var(--vscode-button-foreground);
    background: var(--vscode-button-hoverBackground);
}

.vscode-button:disabled {
    opacity: 0.4 !important;
    cursor: default;
}

.vscode-button:focus {
    outline-color: var(--vscode-focusBorder);
    outline-width: 1px;
    outline-style: solid;
    outline-offset: 2spx !important;
}

.vscode-button:hover {
    text-decoration: none !important;
    background-color: var(--color-button-background);
}

.icon {
    background-color: var(--color-foreground);
    display: inline-block;
    height: 24px;
    margin-right: 3px;
    position: relative;
    width: 19px;
    top: 9px;
}

h2 .icon {
    top: 7px;
}

.icon__bulb {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M11.67 8.658c-.338.334-.598.705-.781 1.114-.178.407-.268.85-.268 1.329v1.6a1.304 1.304 0 0 1-.794 1.197c-.159.068-.329.102-.509.102H7.712a1.285 1.285 0 0 1-.922-.379 1.303 1.303 0 0 1-.38-.92v-1.6c0-.479-.092-.921-.274-1.329a3.556 3.556 0 0 0-.776-1.114 4.689 4.689 0 0 1-1.006-1.437A4.187 4.187 0 0 1 4 5.5a4.432 4.432 0 0 1 .616-2.27c.197-.336.432-.64.705-.914.274-.272.578-.506.911-.702.338-.196.7-.348 1.084-.454C7.7 1.053 8.1 1 8.516 1a4.476 4.476 0 0 1 2.276.614 4.475 4.475 0 0 1 1.622 1.616 4.438 4.438 0 0 1 .616 2.27c0 .617-.117 1.191-.353 1.721a4.69 4.69 0 0 1-1.006 1.437zM9.623 10.5H7.409v2.201c0 .081.028.15.09.212.062.061.131.09.213.09h1.606a.289.289 0 0 0 .213-.09.286.286 0 0 0 .09-.212V10.5z" clip-rule="evenodd"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M11.67 8.658c-.338.334-.598.705-.781 1.114-.178.407-.268.85-.268 1.329v1.6a1.304 1.304 0 0 1-.794 1.197c-.159.068-.329.102-.509.102H7.712a1.285 1.285 0 0 1-.922-.379 1.303 1.303 0 0 1-.38-.92v-1.6c0-.479-.092-.921-.274-1.329a3.556 3.556 0 0 0-.776-1.114 4.689 4.689 0 0 1-1.006-1.437A4.187 4.187 0 0 1 4 5.5a4.432 4.432 0 0 1 .616-2.27c.197-.336.432-.64.705-.914.274-.272.578-.506.911-.702.338-.196.7-.348 1.084-.454C7.7 1.053 8.1 1 8.516 1a4.476 4.476 0 0 1 2.276.614 4.475 4.475 0 0 1 1.622 1.616 4.438 4.438 0 0 1 .616 2.27c0 .617-.117 1.191-.353 1.721a4.69 4.69 0 0 1-1.006 1.437zM9.623 10.5H7.409v2.201c0 .081.028.15.09.212.062.061.131.09.213.09h1.606a.289.289 0 0 0 .213-.09.286.286 0 0 0 .09-.212V10.5z" clip-rule="evenodd"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    opacity: 0.8;
}

.icon__chevron-down {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.97602 10.0719L12.3333 5.7146L12.952 6.33332L8.28538 11L7.66666 11L3 6.33332L3.61872 5.7146L7.97602 10.0719Z" /></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.97602 10.0719L12.3333 5.7146L12.952 6.33332L8.28538 11L7.66666 11L3 6.33332L3.61872 5.7146L7.97602 10.0719Z" /></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon__gear {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.1 4.4L8.6 2H7.4l-.5 2.4-.7.3-2-1.3-.9.8 1.3 2-.2.7-2.4.5v1.2l2.4.5.3.8-1.3 2 .8.8 2-1.3.8.3.4 2.3h1.2l.5-2.4.8-.3 2 1.3.8-.8-1.3-2 .3-.8 2.3-.4V7.4l-2.4-.5-.3-.8 1.3-2-.8-.8-2 1.3-.7-.2zM9.4 1l.5 2.4L12 2.1l2 2-1.4 2.1 2.4.4v2.8l-2.4.5L14 12l-2 2-2.1-1.4-.5 2.4H6.6l-.5-2.4L4 13.9l-2-2 1.4-2.1L1 9.4V6.6l2.4-.5L2.1 4l2-2 2.1 1.4.4-2.4h2.8zm.6 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM8 9c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M9.1 4.4L8.6 2H7.4l-.5 2.4-.7.3-2-1.3-.9.8 1.3 2-.2.7-2.4.5v1.2l2.4.5.3.8-1.3 2 .8.8 2-1.3.8.3.4 2.3h1.2l.5-2.4.8-.3 2 1.3.8-.8-1.3-2 .3-.8 2.3-.4V7.4l-2.4-.5-.3-.8 1.3-2-.8-.8-2 1.3-.7-.2zM9.4 1l.5 2.4L12 2.1l2 2-1.4 2.1 2.4.4v2.8l-2.4.5L14 12l-2 2-2.1-1.4-.5 2.4H6.6l-.5-2.4L4 13.9l-2-2 1.4-2.1L1 9.4V6.6l2.4-.5L2.1 4l2-2 2.1 1.4.4-2.4h2.8zm.6 7c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM8 9c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .4 1 1 1z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.icon__info {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.568 1.031A6.8 6.8 0 0 1 12.76 3.05a7.06 7.06 0 0 1 .46 9.39 6.85 6.85 0 0 1-8.58 1.74 7 7 0 0 1-3.12-3.5 7.12 7.12 0 0 1-.23-4.71 7 7 0 0 1 2.77-3.79 6.8 6.8 0 0 1 4.508-1.149zM9.04 13.88a5.89 5.89 0 0 0 3.41-2.07 6.07 6.07 0 0 0-.4-8.06 5.82 5.82 0 0 0-7.43-.74 6.06 6.06 0 0 0 .5 10.29 5.81 5.81 0 0 0 3.92.58zM8.51 7h-1v4h1V7zm0-2h-1v1h1V5z" clip-rule="evenodd"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M8.568 1.031A6.8 6.8 0 0 1 12.76 3.05a7.06 7.06 0 0 1 .46 9.39 6.85 6.85 0 0 1-8.58 1.74 7 7 0 0 1-3.12-3.5 7.12 7.12 0 0 1-.23-4.71 7 7 0 0 1 2.77-3.79 6.8 6.8 0 0 1 4.508-1.149zM9.04 13.88a5.89 5.89 0 0 0 3.41-2.07 6.07 6.07 0 0 0-.4-8.06 5.82 5.82 0 0 0-7.43-.74 6.06 6.06 0 0 0 .5 10.29 5.81 5.81 0 0 0 3.92.58zM8.51 7h-1v4h1V7zm0-2h-1v1h1V5z" clip-rule="evenodd"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--vscode-editorInfo-foreground);
}

.icon__warn {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.56 1h.88l6.54 12.26-.44.74H1.44L1 13.26 7.56 1zM8 2.28L2.28 13H13.7L8 2.28zM8.625 12v-1h-1.25v1h1.25zm-1.25-2V6h1.25v4h-1.25z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.56 1h.88l6.54 12.26-.44.74H1.44L1 13.26 7.56 1zM8 2.28L2.28 13H13.7L8 2.28zM8.625 12v-1h-1.25v1h1.25zm-1.25-2V6h1.25v4h-1.25z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--vscode-editorWarning-foreground);
}

.icon__error {
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.6 1c1.6.1 3.1.9 4.2 2 1.3 1.4 2 3.1 2 5.1 0 1.6-.6 3.1-1.6 4.4-1 1.2-2.4 2.1-4 2.4-1.6.3-3.2.1-4.6-.7-1.4-.8-2.5-2-3.1-3.5C.9 9.2.8 7.5 1.3 6c.5-1.6 1.4-2.9 2.8-3.8C5.4 1.3 7 .9 8.6 1zm.5 12.9c1.3-.3 2.5-1 3.4-2.1.8-1.1 1.3-2.4 1.2-3.8 0-1.6-.6-3.2-1.7-4.3-1-1-2.2-1.6-3.6-1.7-1.3-.1-2.7.2-3.8 1-1.1.8-1.9 1.9-2.3 3.3-.4 1.3-.4 2.7.2 4 .6 1.3 1.5 2.3 2.7 3 1.2.7 2.6.9 3.9.6zM7.9 7.5L10.3 5l.7.7-2.4 2.5 2.4 2.5-.7.7-2.4-2.5-2.4 2.5-.7-.7 2.4-2.5-2.4-2.5.7-.7 2.4 2.5z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" fill="currentColor"><path fill-rule="evenodd" clip-rule="evenodd" d="M8.6 1c1.6.1 3.1.9 4.2 2 1.3 1.4 2 3.1 2 5.1 0 1.6-.6 3.1-1.6 4.4-1 1.2-2.4 2.1-4 2.4-1.6.3-3.2.1-4.6-.7-1.4-.8-2.5-2-3.1-3.5C.9 9.2.8 7.5 1.3 6c.5-1.6 1.4-2.9 2.8-3.8C5.4 1.3 7 .9 8.6 1zm.5 12.9c1.3-.3 2.5-1 3.4-2.1.8-1.1 1.3-2.4 1.2-3.8 0-1.6-.6-3.2-1.7-4.3-1-1-2.2-1.6-3.6-1.7-1.3-.1-2.7.2-3.8 1-1.1.8-1.9 1.9-2.3 3.3-.4 1.3-.4 2.7.2 4 .6 1.3 1.5 2.3 2.7 3 1.2.7 2.6.9 3.9.6zM7.9 7.5L10.3 5l.7.7-2.4 2.5 2.4 2.5-.7.7-2.4-2.5-2.4 2.5-.7-.7 2.4-2.5-2.4-2.5.7-.7 2.4 2.5z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    background-color: var(--vscode-editorError-foreground);
    top: 11px;
}

.icon--md {
    height: 30px;
    width: 24px;
    top: 12px;
}

.icon--lg {
    height: 36px;
    width: 30px;
    top: 15px;
}

body.vscode-light {
    background-color: var(--color-background--darken-05);
}

header {
    grid-area: header;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(265px, 1fr));
    grid-gap: 1em 3em;
    align-items: center;
    justify-items: center;
    margin: 0 3em;
}

.blurb {
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--color-foreground--65);
    margin: 1em;
}

.blurb b {
    color: var(--color-foreground--85);
}

.vscode-light .blurb {
    color: var(--color-foreground--75);
}

.command {
    font-weight: 600;
    padding: 1px 3px;
}

.command--show-view {
    padding: 1px;
    margin-right: 4px;
}

.command--show-view:after {
    content: '\eb14';
    font-family: codicon;
    font-size: 13px;
    font-weight: 400;
    position: relative;
    top: 3px;
    left: 3px;
}

main.col-md-11.col-xl-11.py-md-3.pl-md-4.pr-md-4.bd-content.padding-at-bottom {
    padding-bottom: 11px;
}

.container {
    display: grid;
    grid-template-areas: 'header header' 'hero hero' 'content sidebar';
    grid-template-columns: repeat(1, 1fr min-content);
    grid-gap: 1em 3em;
    margin: 1em auto;
    max-width: 1200px;
    min-width: 450px;
    padding-bottom: 15px;
}

@media all and (max-width: 815px) {
    .container {
        grid-gap: 1em 0;
    }
}

.content__area {
    grid-area: content;
    font-size: 1.3rem;
}

.vscode-dark .content__area {
    background-color: var(--color-background--lighten-05);
}

.vscode-light .content__area {
    background-color: var(--color-background);
}

@media all and (max-width: 768px) {
    .content__area {
        grid-column: span 1;
    }
}

.content__area--full-scroll {
    background-color: unset !important;
    margin-bottom: 90vh;
}

.content__area--full-scroll .section--settings {
    margin: 0 0 1em 0;
}

.cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.3rem;
    margin: 0;
}

.cta p {
    margin-left: 10%;
    margin-right: 10%;
    margin-top: -0.5em;
    opacity: 0.6;
}

.cta--primary {
    margin: 0 1em;
}

.cta--secondary {
    margin: 0 1em;
}

.header__blurb {
    color: var(--color-foreground--75);
    flex: 2 1 55%;
    font-size: 1.5rem;
    font-weight: 200;
    margin: 0;
    min-width: 345px;
}

@media all and (max-width: 880px) {
    .header__blurb {
        margin: 0 2em;
    }
}

.header__link {
    color: var(--color-foreground);
    outline: none;
}

.header__link:hover,
.header__link:active,
.header__link:focus {
    color: var(--color-foreground);
    outline: none;
}

.header__logo {
    display: flex;
    flex-wrap: nowrap;
}

.header__logo--highlight {
    color: #914db3;
}

.header__subtitle {
    color: var(--color-foreground--65);
    font-size: 2rem;
    font-weight: 100;
    margin: -0.2em 0 0 0;
    white-space: nowrap;
}

.hero__area {
    grid-area: hero;
    color: var(--color-foreground--75);
    font-size: 1.5rem;
    font-weight: 200;
    margin: 0 1em;
}

.hero__area b {
    color: var(--color-foreground--85);
}

.image__logo {
    margin: 9px 1em 0 0;
    max-height: 64px;
    max-width: 64px;
}

.image__preview {
    border-radius: 8px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.8), 0px 0px 12px 1px rgba(0, 0, 0, 0.5);
    width: 600px;
}

.image__preview--overlay {
    left: 0;
    position: absolute;
    top: 0;
}

.link__configure,
.link__learn-more {
    margin-left: 10px;
}

.presets {
    align-items: baseline;
    justify-content: center;
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.preset {
    text-align: center;
}

.preset p {
    color: var(--color-foreground--75);
    display: block;
    font-weight: 200;
    font-size: 1.3rem;
    margin: -0.5em 1em 0.5em 1em;
    text-align: center;
}

section {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
    padding: 1em;
}

section h2 {
    flex: 1 0 auto;
    display: flex;
    margin-top: 0;
    margin-bottom: 1em;
}

.section--full {
    flex-flow: column;
}

.section--settings {
    flex: 0 1 auto;
    display: flex;
    flex-wrap: wrap;
    border-radius: 6px;
    margin: 1em;
    padding: 1em;
    max-width: 578px;
}

.vscode-dark .section--settings {
    background: var(--color-background--lighten-075);
}

.vscode-light .section--settings {
    background: var(--color-background--darken-05);
}

.section--collapsible .section__header {
    cursor: pointer;
    flex: 1 0 100%;
    margin-right: 0;
}

.section--collapsible .section__header:after {
    background-color: var(--color-foreground--75);
    content: '';
    height: 40px;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125"><path d="M50 62a3 3 0 0 1-2-1L26 44a3 3 0 0 1 3-5l21 16 21-16a3 3 0 1 1 3 5L52 61a3 3 0 0 1-2 1z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125"><path d="M50 62a3 3 0 0 1-2-1L26 44a3 3 0 0 1 3-5l21 16 21-16a3 3 0 1 1 3 5L52 61a3 3 0 0 1-2 1z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 32px 40px;
    mask-size: 32px 40px;
    position: absolute;
    right: 0;
    top: 0;
    transition: transform 250ms ease-in-out;
    width: 32px;
}

.section--collapsible.collapsed .section__header {
    margin-bottom: 0;
}

.section--collapsible.collapsed .section__header:after {
    transform: translateY(-9px) rotate(-180deg);
}

.section--collapsible.collapsed .section__header h2 {
    margin-bottom: 0;
}

.section--collapsible.collapsed .section__collapsible {
    display: none;
}

.section__collapsible {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-left: 10px;
    width: 100%;
}

.vscode-dark .section__collapsible {
    background-color: var(--color-background--lighten-05);
}

.vscode-light .section__collapsible {
    background-color: var(--color-background);
}

.section__content {
    flex: 1 1 auto;
    display: flex;
    flex-flow: column wrap;
}

.section__group {
    flex: 1 0 100%;
    display: flex;
    flex-flow: wrap-reverse;
}

.section__group+.section__group {
    margin-top: 1em;
}

.section__group.section__group--rev {
    flex-flow: wrap;
}

.section__collapsible .section__group.section__group--rev .section__preview {
    margin-top: 1em;
    margin-bottom: 0;
}

.section__header {
    display: flex;
    align-items: baseline;
    flex: 0 1 auto;
    flex-flow: column;
    margin-bottom: 1em;
    margin-right: 1em;
    position: relative;
}

.section__header h2 {
    margin-bottom: 0;
}

.section__header .link__configure,
.section__header .link__learn-more {
    visibility: hidden;
}

.section__header:hover .link__configure,
.section__header:hover .link__learn-more {
    visibility: visible;
}

.section__header-hint {
    color: var(--color-foreground--75);
    font-weight: 200;
    margin: 0.25em 0;
}

.section__header-info {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 1em;
    align-items: center;
    color: var(--color-foreground--75);
    font-weight: 200;
    margin: 0.25em 0.5em;
}

.section__header-info p {
    margin: 0;
    line-height: 2rem;
}

.section__header-info .icon {
    top: 3px;
}

.section__hint {
    flex: 0 1 auto;
    color: var(--color-foreground--75);
    font-weight: 200;
    margin: 0;
}

.section__hint * {
    word-break: break-word;
}

.section__preview {
    flex: 0 1 auto;
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

.section__collapsible .section__preview {
    margin-bottom: 1em;
}

.section__title {
    flex: 1 0 auto;
    margin: 0;
}

.section__title--primary {
    font-size: 3rem;
    margin: 0.3em 0;
    justify-content: center;
}

.section__title--break {
    margin: 0.3em 15% 0 15%;
    padding-top: 1em;
    justify-content: center;
}

.vscode-dark .section__title--break {
    border-top: 1px solid var(--color-background--lighten-30);
}

.vscode-light .section__title--break {
    border-top: 1px solid var(--color-background--darken-30);
}

.setting {
    flex: 0 1 auto;
    position: relative;
    margin-right: 1em;
}

.setting input[type='checkbox'] {
    flex: 0 0 16px;
    height: 16px;
    margin: 0 10px 0 0;
    position: relative;
    top: 3px;
    width: 16px;
}

.setting__input[disabled] label {
    opacity: 0.25 !important;
    cursor: default;
}

.setting--expandable .setting__expander {
    background-color: var(--color-foreground--75);
    cursor: pointer;
    height: 16px;
    -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125"><path d="M50 62a3 3 0 0 1-2-1L26 44a3 3 0 0 1 3-5l21 16 21-16a3 3 0 1 1 3 5L52 61a3 3 0 0 1-2 1z"/></svg>');
    mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 125"><path d="M50 62a3 3 0 0 1-2-1L26 44a3 3 0 0 1 3-5l21 16 21-16a3 3 0 1 1 3 5L52 61a3 3 0 0 1-2 1z"/></svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 32px 28px;
    mask-size: 32px 28px;
    position: relative;
    margin: 0;
    transform: translate(-9px, 4px) rotate(-90deg);
    transition: transform 250ms ease-in-out;
    width: 32px;
}

.setting--expandable+.settings {
    display: none;
}

.setting--expandable.expanded .setting__expander {
    transform: translate(-4px, 0);
}

.setting--expandable.expanded+.settings {
    display: unset;
}

.setting__input {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: baseline;
    line-height: normal;
}

.setting__input input,
.setting__input select {
    flex-grow: 1;
}

.setting__input input+.link__configure,
.setting__input input+.link__learn-more,
.setting__input select+.link__configure,
.setting__input select+.link__learn-more {
    margin-left: 0;
}

.setting__input input[type='text']:not([data-setting-in-section]),
.setting__input input[type='password']:not([data-setting-in-section]),
.setting__input input[type='number']:not([data-setting-in-section]),
.setting__input input:not([type]):not([data-setting-in-section]),
.setting__input textarea:not([data-setting-in-section]) {
    min-width: 324px;
    max-width: 324px;
}

.setting__input input[type='text'][data-setting-in-section='true'],
.setting__input input[type='password'][data-setting-in-section='true'],
.setting__input input[type='number'][data-setting-in-section='true'],
.setting__input input:not([type])[data-setting-in-section='true'],
.setting__input textarea[data-setting-in-section='true'] {
    min-width: 286px;
    max-width: 286px;
}
.setting__input label {
    flex-grow: 0;
}

.setting__input label>select {
    margin-top: 0.25em;
}

.setting__input .link__learn-more,
.setting__input .link__configure {
    visibility: hidden;
    max-height: 15px;
}

.setting__input .link__learn-more .icon,
.setting__input .link__configure .icon {
    display: block;
    top: unset;
}

.setting__input:hover .link__learn-more,
.setting__input:hover .link__configure {
    visibility: visible;
}

.setting__input--big {
    font-size: 2.2rem;
    font-weight: 200;
    margin: 0;
}

.setting__input--big input[type='checkbox'] {
    flex: 0 0 1.5em;
    height: 1em;
    margin: 0;
    position: relative;
    top: 3px;
    left: -5px;
    width: 1em;
}

.setting__input--big label {
    white-space: nowrap;
}

.setting__input--big .link__learn-more,
.setting__input--big .link__configure {
    max-height: 17px;
}

.setting__input--format {
    display: flex;
}

.setting__input--format input[type='text'],
.setting__input--format input:not([type]) {
    max-width: unset;
}

.setting__input--inner-select label:nth-of-type(1) {
    flex-shrink: 0;
}

.setting__input--inner-select label:nth-of-type(2) {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.setting__hint {
    color: var(--color-foreground--75);
    display: block;
    font-weight: 200;
    font-size: 1.3rem;
    margin: 0 1em 0.5em 130px;
}

.settings {
    flex: 1 0 auto;
    display: flex;
    flex-wrap: wrap;
}

.settings .setting {
    margin-right: 3em;
}

.settings--fixed {
    display: block;
}

.sidebar {
    grid-area: sidebar;
    align-self: flex-start;
    font-size: 1.3rem;
    position: sticky;
    top: 0;
    margin-right: -10px;
    z-index: 2;
}

@media all and (max-width: 815px) {
    .sidebar {
        display: none;
    }
}

.sidebar li {
    white-space: nowrap;
}

.sidebar .button {
    margin: 0;
}

.is-sidebar-hidden {
    display: none;
}

@media all and (max-width: 815px) {
    .is-sidebar-hidden {
        display: initial;
    }
}

.sidebar__group {
    margin-top: 1em;
}

.sidebar__group h2 {
    font-size: 2rem;
}

.sidebar__group p {
    font-weight: 400;
    opacity: 0.5;
    text-align: center;
}

.sidebar__group .button {
    font-size: 0.9rem;
}

.sidebar__jump-link.active {
    font-weight: 700;
}

.sidebar__jump-link.active:before {
    content: ' ';
    border-left: 4px solid var(--color-link-foreground--darken-20);
    position: absolute;
    left: -1em;
    height: 1em;
    padding-bottom: 4px;
}

.vscode-light .sidebar__jump-link.active:before {
    border-left-color: var(--color-link-foreground--lighten-20);
}

.bold {
    font-weight: 600;
}

.center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-05 {
    margin-bottom: 0.5em !important;
}

.mb-1 {
    margin-bottom: 1em !important;
}

.mb-2 {
    margin-bottom: 2em !important;
}

.ml-0 {
    margin-left: 0 !important;
}

.ml-1 {
    margin-left: 1em !important;
}

.ml-2 {
    margin-left: 2em !important;
}

.ml-3 {
    margin-left: 3em !important;
}

.ml-4 {
    margin-left: 4em !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mr-1 {
    margin-right: 1em !important;
}

.mr-2 {
    margin-right: 2em !important;
}

.mt-n1 {
    margin-top: -1em !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-05 {
    margin-top: 0.5em !important;
}

.mt-1 {
    margin-top: 1em !important;
}

.mt-2 {
    margin-top: 2em !important;
}

.non-interactive {
    cursor: default !important;
}

.nowrap {
    white-space: nowrap !important;
}

.vscode-dark .light {
    display: none;
}

.vscode-light .dark {
    display: none;
}

.popup {
    box-shadow: 0px 0px 28px 0 rgba(0, 0, 0, 0.5);
    cursor: default;
    padding: 1em;
    position: absolute;
    top: 72px;
    width: 80vw;
    min-width: 373px;
    max-width: 472px;
    z-index: 1;
}

.popup:before {
    background: transparent;
    border: 12px solid transparent;
    content: '';
    left: 50%;
    position: absolute;
    pointer-events: none;
    top: -24px;
    z-index: 1001;
}

.vscode-light .popup:before {
    border-bottom-color: var(--color-background--darken-05);
}

.vscode-dark .popup:before {
    border-bottom-color: var(--color-background--lighten-075);
}

.vscode-light .popup {
    background: var(--color-background--darken-05);
}

.vscode-dark .popup {
    background: var(--color-background--lighten-075);
}

.token-popup__scroller {
    margin-right: -0.4em;
    max-height: 35vh;
    overflow-y: scroll;
    padding-right: 0.4em;
}

.token-popup__hint {
    color: var(--color-foreground--75);
    display: inline-block;
    font-weight: 200;
    margin: 1.25em 0.5em 0 0.25em;
}

.token-popup__title {
    color: var(--color-foreground);
    font-weight: 400;
    margin: 0.25em 0 1em 0;
    text-align: center;
}

.token-popup__table {
    border-collapse: collapse;
    color: var(--color-foreground--75);
    table-layout: fixed;
}

.vscode-light .token-popup__table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);
}

.vscode-dark .token-popup__table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.04);
}

.token-popup__table td {
    padding: 6px;
}

.token-popup__table td i {
    opacity: 0.6;
}

.token-popup__table td:first-child {
    padding: 6px 12px;
}

.token-popup__table td:last-child {
    padding-right: 12px;
    text-align: end;
}

.token {
    background: var(--color-link-foreground--darken-20);
    border-bottom: 2px solid var(--color-link-foreground--darken-20);
    border-radius: 3px;
    color: white;
    cursor: pointer;
    display: inline-block;
    padding: 1px 8px !important;
}

.token:before {
    content: '${';
}

.token:after {
    content: '}';
}

.vscode-light .token {
    background: var(--color-link-foreground--lighten-20);
    border-bottom-color: var(--color-link-foreground--lighten-20);
}

.sidebar {
    margin-right: 14px;
}

div.error-message {
    position: relative;
    display: block;
    text-align: left;
    left: 130px;
    top: -8px;
    color: var(--vscode-editorError-foreground);
}

div.warn-message {
    position: relative;
    display: block;
    text-align: left;
    left: 130px;
    top: -8px;
    color: var(--vscode-editorWarning-foreground);
}

div.info-message {
    position: relative;
    display: block;
    text-align: left;
    left: 130px;
    top: -8px;
    color: var(--vscode-editorInfo-foreground);
}

span.text-size {
    font-size: 15px;
}

/* Styles for homemade dropdown */


.contain-style {
	top: 2%;
    position: relative;
}

li.li-style {
    padding: .6rem .1rem;
    margin: 0;
    position: relative;
    width: 345px;
}

ul.ul-color {
    width: 75%;
    list-style: none;
    padding: 0;
    /* overflow-x: scroll; */
    /* max-height: 200px; */
    /* overflow: scroll; */
    /* overflow: scroll; */
    margin: -5px;
    left: 4px;
    position: relative;
    color: var(--vscode-foreground);
}

.vscode-light ul.ul-color {
    background-color: var(--color-background);
}

.vscode-dark ul.ul-color {
    background-color: var(--color-background--lighten-05);
}

ul.ul-position {
    position: absolute;
    left: 16px;
    max-height: 159px;
    width: 334px;
    overflow-y: scroll;
    z-index: 1;
}

li.li-style li.li-style:hover { color : var(--vscode-foreground); }

li.li-style li.li-style.current { color : var(--vscode-foreground); background-color : var(--vscode-editor-background) }

.select-list-group, .select-list-group * {
	width: 100%;
}
.select-list-group [data-toggle="false"] {
	display: none;
}
.select-list-group [data-toggle="true"] {
	display: inherit;
	-webkit-box-shadow: 0 3px 7px -2px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0 3px 7px -2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 3px 7px -2px rgba(0, 0, 0, 0.2);
}
.select-list-group li[data-display="false"] {
	display: none;
}
.select-list-group li[data-display="true"] {
	display: inherit;
}
.select-list-group li[data-highlight="false"] {
	border-left: 5px solid transparent;
}
.select-list-group li[data-highlight="true"] {
	border-left: 5px solid var(--vscode-focusBorder);
	background-color: var(--vscode-focusBorder);
}