body {
    text-align: center
}

#error-messages {
    margin: 32px 8px;
    color: red;
    font-weight: bold
}

.demo {
    display: flex;
    flex-flow: row wrap;
    align-items: flex-start;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.logo {
    display: block;
    position: relative;
    width: 64px;
    height: 64px;
    margin: 8px auto 16px;
    border-radius: 50%;
    user-select: none;
    box-sizing: border-box
}

.logo, .logo:hover, .logo:focus, .logo:active {
    border-width: 1px;
    border-style: solid;
    border-color: #009688;
    border-color: var(--var-color-control-accent, #009688)
}

.logo::before, .logo svg.logo-icon, .logo::after {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    pointer-events: none
}

.logo svg.logo-icon {
    stroke: #009688;
    stroke: var(--var-color-control-accent, #009688);
    fill: #009688;
    fill: var(--var-color-control-accent, #009688)
}

.logo::before {
    content: "";
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: .1s ease;
    -webkit-transition: .1s ease
}

.logo.logo-animate-fill .logo::before {
    content: "";
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transition: .1s ease;
    -webkit-transition: .1s ease
}

.logo:hover::before {
    transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1)
}

.logo.logo-animate-fill {
    background: #eeeeee;
    background: var(--var-color-block-background, #eeeeee)
}

.logo.logo-animate-fill::before {
    background: #009688;
    background: var(--var-color-control-accent, #009688)
}

.logo.logo-animate-fill:hover svg.logo-icon {
    fill: #fff;
    stroke: #fff
}

.logo.logo-animate-empty {
    background: #009688;
    background: var(--var-color-control-accent, #009688)
}

.logo.logo-animate-empty::before {
    top: 0;
    left: 0;
    width: 62px;
    height: 62px;
    background: #eeeeee;
    background: var(--var-color-block-background, #eeeeee)
}

.intro {
    margin: auto;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c9c9c9;
    border: var(--var-color-block-border, 1px solid #c9c9c9);
    background: #eeeeee;
    background: var(--var-color-block-background, #eeeeee);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px
}

.intro h1 {
    margin-top: 0;
    text-align: center
}

@media only screen and (min-width: 560px) {
    .intro {
        background: white;
        max-width: 480px;
        border-width: 1px
    }
}

.description {
    justify-content: center;
    line-height: 125%;
    text-align: justify;
    text-indent: 1em
}

.project-links {
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    text-indent: 0
}

a {
    color: #009688;
    color: var(--var-color-control-accent, #009688);
    font-weight: bold;
    text-decoration: none;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border-width: 0 0 2px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0)
}

a:focus, a:hover {
    border-color: #009688;
    border-color: var(--var-color-control-accent, #009688)
}

.canvas-button {
    width: 32px;
    height: 32px;
    cursor: pointer
}

#canvas-container {
    position: relative;
    margin-bottom: 16px;
    background: #000;
    overflow: hidden;
    min-height: 400px
}

@media only screen and (min-width: 540px) {
    #canvas-container {
        margin: 16px
    }
}

#canvas-container > canvas {
    width: 100%;
    height: 100%;
    z-index: 10
}

#canvas-container > .loader {
    display: none
}

#indicators {
    display: none !important;
    position: absolute;
    top: 1px;
    left: 1px;
    flex-direction: column;
    align-items: flex-start;
    color: #fff;
    font-family: "Lucida Console", Monaco, monospace;
    text-align: left;
    z-index: 20
}

#indicators > div {
    flex: 0 0 1em;
    margin: 1px;
    padding: 1px 4px;
    background: #000
}

#canvas-buttons-column {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    z-index: 30
}

#fullscreen-toggle-id {
    display: none !important;
    background-image: url("../images/resize.svg");
    background-position: 0 0;
    background-size: 200%
}

#fullscreen-toggle-id:hover {
    background-position-x: 100%
}

#side-pane-toggle-id {
    display: none;
    background-image: url("../images/gear.svg");
    transition: transform .1s ease-in-out;
    -webkit-transition: transform .1s ease-in-out
}

#side-pane-toggle-id:hover {
    transform: rotate(-30deg);
    -webkit-transform: rotate(-30deg);
    -ms-transform: rotate(-30deg)
}

#side-pane-checkbox-id:checked + #canvas-container #side-pane-toggle-id:hover {
    transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg)
}

.hidden {
    display: none
}

#fullscreen-checkbox-id:checked + .demo {
    position: fixed;
    overflow: hidden
}

#fullscreen-checkbox-id:checked + .demo #canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    z-index: 5
}

#fullscreen-checkbox-id:checked + .demo #canvas-container #canvas-buttons-column {
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out
}

#fullscreen-checkbox-id:checked + .demo #canvas-container #fullscreen-toggle-id {
    background-position-y: 100%
}

@media only screen and (min-width: 500px) {
    #fullscreen-checkbox-id:checked + .demo #canvas-container #side-pane-toggle-id {
        display: block
    }
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id:checked + #canvas-container #canvas-buttons-column {
    transform: translateX(-400px)
}

.loader {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 120px;
    margin: auto
}

.loader > span {
    color: #fff;
    font-size: 32px;
    line-height: 120px;
    text-shadow: 1px 1px #000, -1px 1px #000, 1px -1px #000, -1px -1px #000, 1px 0 #000, -1px 0 #000, 0 1px #000, 0 -1px #000
}

.loader-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    animation: spin 1.1s linear infinite
}

.loader-animation:before {
    position: absolute;
    top: -1px;
    left: -1px;
    width: 122px;
    height: 122px;
    border: 6px solid rgba(0, 0, 0, 0);
    border-top: 6px solid #000;
    border-radius: 50%;
    content: "";
    z-index: 50;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.loader-animation:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    border: 4px solid rgba(0, 0, 0, 0);
    border-top: 4px solid #fff;
    border-radius: 50%;
    content: "";
    z-index: 51;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(360deg)
    }
}

.canvas-button {
    width: 32px;
    height: 32px;
    cursor: pointer
}

.controls-block {
    max-width: 480px;
    margin: 16px auto;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #c9c9c9;
    border: var(--var-color-block-border, 1px solid #c9c9c9);
    background: #eeeeee;
    background: var(--var-color-block-background, #eeeeee);
    z-index: 0
}

@media only screen and (min-width: 560px) {
    .controls-block {
        background: white;
        margin: 16px auto;
        border-width: 1px
    }
}

.controls-block > hr {
    display: none !important;
    margin: 12px 0;
    clear: both;
    border: none;
    border-top: 1px solid #c9c9c9;
    border-top: var(--var-color-block-border, 1px solid #c9c9c9)
}

.controls-section {
    display: flex;
    flex-flow: row wrap;
    align-items: baseline;
    margin: 0 16px
}

.controls-section > h2 {
    width: 7em;
    margin: 0;
    font-size: medium;
    font-weight: bold;
    line-height: 2em;
    text-align: left
}

.controls-section > .controls-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.controls-list > .control {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    min-width: 300px;
    padding: 3px 0
}

.control > label {
    min-width: 8em;
    font-size: 95%;
    line-height: 95%;
    text-align: left
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block {
    position: fixed;
    top: 0;
    left: 100%;
    width: 400px;
    max-height: calc(100% - 48px);
    margin: 0;
    border-width: 0 0 1px 1px;
    border-radius: 0 0 0 8px;
    z-index: 50;
    overflow-x: hidden;
    overflow-y: auto;
    transition: transform .2s ease-in-out;
    -webkit-transition: transform .2s ease-in-out
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar {
    width: 16px
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar-track {
    border-radius: 8px;
    background-color: #eeeeee;
    background-color: var(--var-color-block-background, #eeeeee)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar-thumb {
    border-width: 3px 5px;
    border-style: solid;
    border-radius: 8px;
    border-color: #eeeeee;
    border-color: var(--var-color-block-background, #eeeeee);
    background-color: #a5a5a5;
    background-color: var(--var-color-scrollbar, #a5a5a5)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar-thumb:focus, #fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar-thumb:hover {
    background-color: #b2b2b2;
    background-color: var(--var-color-scrollbar-hover, #b2b2b2)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block::-webkit-scrollbar-thumb:active {
    background-color: #959595;
    background-color: var(--var-color-scrollbar-active, #959595)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id ~ .controls-block:hover::-webkit-scrollbar-thumb {
    border-width: 3px
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id:checked ~ .controls-block {
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id:checked ~ .controls-block .tooltip {
    transform: translateX(-100vw) translateX(400px);
    -webkit-transform: translateX(-100vw) translateX(400px);
    -ms-transform: translateX(-100vw) translateX(400px)
}

#fullscreen-checkbox-id:checked + .demo #side-pane-checkbox-id:checked ~ .controls-block > #side-pane-close-toggle-id {
    display: block
}

#side-pane-close-toggle-id {
    display: none;
    position: absolute;
    top: 0;
    right: 0
}

#side-pane-close-toggle-id svg {
    stroke: #5e5e5e;
    stroke: var(--var-color-block-actionitem, #5e5e5e)
}

#side-pane-close-toggle-id svg:focus, #side-pane-close-toggle-id svg:hover {
    stroke: #7e7e7e;
    stroke: var(--var-color-block-actionitem-hover, #7e7e7e)
}

#side-pane-close-toggle-id svg:active {
    stroke: #535353;
    stroke: var(--var-color-block-actionitem-active, #535353)
}

.file-control {
    position: relative
}

.file-control > input.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0
}

.file-control > .file-control-button {
    display: inline-block;
    position: relative;
    padding: 6px 12px 6px 2em;
    border-width: 2px;
    border-style: solid;
    border-radius: 4px;
    font-size: 87.5%;
    font-weight: bold;
    cursor: pointer;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.file-control > .file-control-button > svg {
    position: absolute;
    top: 0;
    left: .2em;
    width: 1.5em;
    height: 100%
}

.file-control.compact > .file-control-button {
    padding: 4px 12px 4px 2em;
    font-size: 75%
}

.file-control > input.file-input + .file-control-button {
    border-color: #009688;
    border-color: var(--var-color-control-accent, #009688);
    color: #009688;
    color: var(--var-color-control-accent, #009688)
}

.file-control > input.file-input + .file-control-button > svg {
    fill: #009688;
    fill: var(--var-color-control-accent, #009688)
}

.file-control > input.file-input:focus + .file-control-button, .file-control > input.file-input:hover:not(:disabled) + .file-control-button {
    border-color: #26a69a;
    border-color: var(--var-color-control-accent-hover, #26a69a);
    color: #26a69a;
    color: var(--var-color-control-accent-hover, #26a69a)
}

.file-control > input.file-input:focus + .file-control-button > svg, .file-control > input.file-input:hover:not(:disabled) + .file-control-button > svg {
    fill: #26a69a;
    fill: var(--var-color-control-accent-hover, #26a69a)
}

.file-control > input.file-input:active:not(:disabled) + .file-control-button {
    border-color: #00897b;
    border-color: var(--var-color-control-accent-active, #00897b);
    color: #00897b;
    color: var(--var-color-control-accent-active, #00897b);
    background: rgba(0, 150, 136, .1)
}

.file-control > input.file-input:active:not(:disabled) + .file-control-button > svg {
    fill: #00897b;
    fill: var(--var-color-control-accent-active, #00897b)
}

.file-control > input.file-input:disabled + .file-control-button {
    border-color: #a5a5a5;
    color: #a5a5a5
}

.file-control > input.file-input:disabled + .file-control-button > svg {
    fill: #a5a5a5
}

.tabs {
    display: flex;
    position: relative;
    flex-flow: row wrap;
    flex-grow: 1;
    width: auto;
    border-radius: 4px;
    background: none;
    overflow: hidden
}

.tabs::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-width: 2px;
    border-style: solid;
    border-color: #c9c9c9;
    border-color: var(--var-color-control-neutral, #c9c9c9);
    border-radius: 4px;
    content: "";
    z-index: 1;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.tabs.compact > input + label {
    padding: 6px 14px;
    font-size: 75%
}

.tabs > input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0
}

.tabs > input + label {
    flex: 1;
    padding: 8px 14px;
    font-size: 87.5%;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    z-index: 2
}

.tabs > input:disabled + label, .tabs > input[type=radio]:checked + label {
    cursor: default
}

.tabs > input + label {
    background: none;
    color: #009688;
    color: var(--var-color-control-accent, #009688)
}

.tabs > input:checked + label {
    background: #009688;
    background: var(--var-color-control-accent, #009688);
    color: #fff
}

.tabs > input:disabled + label {
    background: none;
    color: #a5a5a5
}

.tabs > input:disabled:checked + label {
    background: #a5a5a5;
    color: #fff
}

.tabs > input[type=checkbox]:not(:disabled):hover + label, .tabs > input[type=checkbox]:not(:disabled):focus + label {
    background: rgba(0, 150, 136, .05)
}

.tabs > input[type=checkbox]:not(:disabled):hover:checked + label, .tabs > input[type=checkbox]:not(:disabled):focus:checked + label {
    background: #26a69a;
    background: var(--var-color-control-accent-hover, #26a69a)
}

.tabs > input[type=checkbox]:not(:disabled):active + label {
    background: rgba(0, 150, 136, .1)
}

.tabs > input[type=checkbox]:not(:disabled):active:checked + label {
    background: #00897b;
    background: var(--var-color-control-accent-active, #00897b)
}

.tabs > input[type=radio]:not(:disabled):not(:checked):hover + label, .tabs > input[type=radio]:not(:disabled):not(:checked):focus + label {
    background: rgba(0, 150, 136, .05)
}

.tabs > input[type=radio]:not(:disabled):not(:checked):active + label {
    background: rgba(0, 150, 136, .1)
}

.range-container {
    display: inline-block;
    position: relative;
    flex: 1 1 0%;
    width: 100%;
    min-width: 15px;
    height: 26px
}

.range-container input[type=range] {
    width: 100%;
    min-width: 128px;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0
}

.range-container input[type=range]:not(:disabled) {
    cursor: pointer
}

.range-container .range-skin-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    flex-flow: nowrap;
    width: 100%;
    height: 100%;
    pointer-events: none;
    user-select: none
}

.range-container .range-stub {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    width: 7px
}

.range-container .range-progress {
    display: flex;
    flex: 1;
    flex-flow: row nowrap
}

.range-container .range-progress-left {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    width: 85%
}

.range-container .range-progress-right {
    position: relative;
    flex-grow: 1
}

.range-container .range-bar {
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 0
}

.range-container .range-bar.range-bar-left {
    top: 12px;
    height: 3px
}

.range-container .range-bar.range-bar-right {
    top: 12px;
    height: 3px;
    background: #c9c9c9;
    background: var(--var-color-control-neutral, #c9c9c9)
}

.range-container .range-bar.range-stub-left {
    border-radius: 3px 0 0 3px
}

.range-container .range-bar.range-stub-right {
    border-radius: 0 3px 3px 0
}

.range-container .range-handle {
    position: absolute;
    top: 5.5px;
    right: -7.5px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 1
}

.range-container .range-bar-left, .range-container .range-handle {
    background: #009688;
    background: var(--var-color-control-accent, #009688)
}

.range-container input[type=range]:not(:disabled):hover + .range-skin-container .range-handle, .range-container input[type=range]:not(:disabled):focus + .range-skin-container .range-handle {
    background: #26a69a;
    background: var(--var-color-control-accent-hover, #26a69a)
}

.range-container input[type=range]:not(:disabled):active + .range-skin-container .range-handle {
    background: #00897b;
    background: var(--var-color-control-accent-active, #00897b)
}

.range-container input[type=range]:disabled + .range-skin-container .range-bar-left, .range-container input[type=range]:disabled + .range-skin-container .range-handle {
    background: #a5a5a5
}

.range-container .range-tooltip {
    position: absolute;
    top: -28px;
    right: 0;
    min-width: 24px;
    padding: 4px;
    transform: translateX(50%);
    transition: opacity .1s ease-in-out;
    border-radius: 4px;
    background: #535353;
    color: #eee;
    font-size: 87.5%;
    text-align: center;
    opacity: 0;
    z-index: 2
}

.range-container input[type=range]:hover + .range-skin-container .range-tooltip, .range-container input[type=range]:active + .range-skin-container .range-tooltip, .range-container input[type=range]:focus + .range-skin-container .range-tooltip {
    opacity: 1
}

.range-container .range-tooltip::after {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0px;
    height: 12px;
    margin-left: -6px;
    border-width: 6px;
    border-style: solid;
    border-color: #535353 rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
    content: ""
}

.checkbox {
    display: block;
    position: relative;
    text-align: left;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.checkbox > input[type=checkbox] {
    width: 1px;
    height: 1px;
    opacity: 0
}

.checkbox > input[type=checkbox] + label.checkmark, .checkbox > input[type=checkbox] + label.checkmark-line {
    margin-left: 24px;
    line-height: 26px;
    cursor: pointer
}

.checkbox > input[type=checkbox]:disabled + label.checkmark, .checkbox > input[type=checkbox]:disabled + label.checkmark-line {
    cursor: default
}

.checkbox > input[type=checkbox] + label.checkmark::before {
    position: absolute;
    top: calc(.5 * (100% - 20px));
    left: 0;
    width: 20px;
    height: 20px;
    border-width: 2px;
    border-style: solid;
    border-radius: 2px;
    background: none;
    content: "";
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box
}

.checkbox > input[type=checkbox] + label.checkmark::after {
    position: absolute;
    top: calc(.5 * (100% - 20px) + .5 * (20px - 14px));
    right: 0;
    bottom: 0;
    left: 6.5px;
    width: 7px;
    height: 14px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    background: none;
    content: "";
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    transform: translate(0, -1px) scale(0) rotate(45deg);
    -webkit-transform: translate(0, -1px) scale(0) rotate(45deg);
    -ms-transform: translate(0, -1px) scale(0) rotate(45deg)
}

.checkbox > input[type=checkbox]:checked + label.checkmark::after {
    transform: translate(0, -1px) scale(1) rotate(45deg);
    -webkit-transform: translate(0, -1px) scale(1) rotate(45deg);
    -ms-transform: translate(0, -1px) scale(1) rotate(45deg)
}

.checkbox > input[type=checkbox] + label.checkmark::before {
    border-color: #009688;
    border-color: var(--var-color-control-accent, #009688)
}

.checkbox > input[type=checkbox]:checked + label.checkmark::before {
    background: #009688;
    background: var(--var-color-control-accent, #009688)
}

.checkbox > input[type=checkbox]:hover + label.checkmark::before, .checkbox > input[type=checkbox]:focus + label.checkmark::before {
    border-color: #26a69a;
    border-color: var(--var-color-control-accent-hover, #26a69a)
}

.checkbox > input[type=checkbox]:hover:checked + label.checkmark::before, .checkbox > input[type=checkbox]:focus:checked + label.checkmark::before {
    background: #26a69a;
    background: var(--var-color-control-accent-hover, #26a69a)
}

.checkbox > input[type=checkbox]:active + label.checkmark::before {
    border-color: #00897b;
    border-color: var(--var-color-control-accent-active, #00897b)
}

.checkbox > input[type=checkbox]:active:checked + label.checkmark::before {
    background: #00897b;
    background: var(--var-color-control-accent-active, #00897b)
}

.checkbox > input[type=checkbox]:disabled + label.checkmark::before {
    border-color: #a5a5a5
}

.checkbox > input[type=checkbox]:disabled:checked + label.checkmark::before {
    background: #a5a5a5
}

:root {
    --var-color-theme: white;
    --var-color-page-background: #ededed;
    --var-page-background-image: url("../images/noise-light.png");
    --var-color-block-background: white;
    --var-color-block-border: 1px solid #c9c9c9;
    --var-color-title: #535353;
    --var-color-text: #676767;
    --var-color-block-actionitem: #5e5e5e;
    --var-color-block-actionitem-hover: #7e7e7e;
    --var-color-block-actionitem-active: #535353;
    --var-color-scrollbar: #a5a5a5;
    --var-color-scrollbar-hover: #b2b2b2;
    --var-color-scrollbar-active: #959595;
    --var-color-control-neutral: #c9c9c9;
    --var-color-control-accent: #009688;
    --var-color-control-accent-hover: #26a69a;
    --var-color-control-accent-active: #00897b
}


:root {
    color-scheme: light dark
}

html {
    display: flex;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif
}

body {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 100vh;
    margin: 0px;
    background-attachment: fixed;
    background: #ededed;
    background: var(--var-color-page-background, #ededed);
    background-image: url("../images/noise-light.png");
    background-image: var(--var-page-background-image, url("../images/noise-light.png"));
    color: #676767;
    color: var(--var-color-text, #676767)
}

main {
    background: white;
    display: block;
    flex-grow: 1;
    padding-bottom: 32px
}

h1, h2, h3 {
    color: #535353;
    color: var(--var-color-title, #535353)
}

.badge {
    width: 32px;
    height: 32px;
    margin: 8px 12px;
    border: none
}

.badge > svg {
    width: 32px;
    height: 32px
}

.badge, .badge:hover, .badge:focus, .badge:active {
    border: none
}

.badge svg {
    fill: #5e5e5e;
    fill: var(--var-color-block-actionitem, #5e5e5e)
}

.badge svg:focus, .badge svg:hover {
    fill: #7e7e7e;
    fill: var(--var-color-block-actionitem-hover, #7e7e7e)
}

.badge svg:active {
    fill: #535353;
    fill: var(--var-color-block-actionitem-active, #535353)
}

.badge-shelf {
    display: flex;
    flex-flow: row;
    justify-content: center
}

footer {
    align-items: center;
    padding: 8px;
    text-align: center;
    border-top: 1px solid #c9c9c9;
    border-top: var(--var-color-block-border, 1px solid #c9c9c9);
    background: #eeeeee;
    background: var(--var-color-block-background, #eeeeee)
}
