@import url(https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Cormorant+Garamond:wght@500&family=Dancing+Script:wght@500&family=Indie+Flower&family=Open+Sans&family=Oswald&family=Permanent+Marker&family=Playfair+Display&display=swap);

.notification {
    background-color: #cce5ff;
    border: 1px solid #78a2b3;
    border-radius: 6px;
    color: #004085;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    max-width: 300px;
    min-width: 150px;
    padding: 15px 20px;
    position: fixed;
    right: -10px;
    text-align: left;
    top: 20%;
    z-index: 1000
}

.notification.success {
    background-color: #d4edda;
    border-color: #7cca8e;
    color: #155724
}

.notification.error {
    background-color: #d08f96;
    border-color: #f5c6cb;
    color: #721c24
}

.notification.alert {
    background-color: #dbc789;
    border-color: #ffeeba;
    color: #856404
}

header {
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #cacaca;
    box-shadow: 0 0 3px 0 rgba(50, 50, 50, .25);
    display: flex;
    height: 92px;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    text-align: left;
    width: 100%
}

header .separator {
    background-color: #ddd;
    height: 35px;
    margin-left: 20px;
    width: 1px
}

button,
header .separator {
    display: inline-block;
    vertical-align: middle
}

button {
    background-color: transparent;
    border: 1px solid #555;
    border-radius: 6px;
    cursor: pointer;
    padding: 5px 20px
}

button img,
button svg {
    height: 16px;
    pointer-events: none;
    vertical-align: middle;
    width: 16px
}

button:focus {
    outline: 0
}

.floating-menu {
    background-color: #fff;
    border: 1px solid #cacaca;
    box-shadow: 0 1px 4px 0 rgba(50, 50, 50, .2);
    left: 100px;
    position: absolute;
    top: 100px
}

.floating-menu div {
    border-bottom: 1px solid #dbdbdb;
    cursor: pointer;
    padding: 5px 20px
}

.floating-menu div:hover {
    background-color: #eee;
    color: #000
}

.menu {
    cursor: pointer
}

.toolbar {
    background-color: #fff;
    border-right: 1px solid #ccc;
    box-shadow: 0 0 3px 0 rgba(50, 50, 50, .25);
    line-height: 0;
    width: 64px
}

.toolbar button {
    border: 0;
    border-radius: 0;
    border-radius: initial;
    clear: both;
    height: 54px;
    opacity: .55;
    position: relative;
    width: 100%
}

.toolbar button img,
.toolbar button svg {
    height: 22px;
    width: 22px
}

.toolbar button:focus {
    outline: 0
}

.toolbar button.active,
.toolbar button:hover {
    border-bottom: 1px solid #ccc;
    border-top: 1px solid #ccc;
    box-shadow: inset 5px 0 10px 0 rgba(50, 50, 50, .1);
    opacity: 1
}

.toolbar .separator {
    background-color: #ddd;
    clear: both;
    height: 1px;
    margin: 15px auto;
    width: 75%
}

.canvas-holder {
    align-content: center;
    box-sizing: border-box;
    height: calc(100% - 92px);
    left: 64px;
    overflow: auto;
    position: fixed;
    top: 92px;
    width: calc(100% - 64px)
}

.canvas-container {
    background-color: #fefefe;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAHUlEQVQ4jWNgYGAQIYAJglEDhoUBg9+FowbQ2gAARjwKARjtnN8AAAAASUVORK5CYII=);
    background-position: 0 0, 15px 15px;
    background-size: 30px 30px;
    border: 1px solid #ccc;
    box-sizing: initial;
    display: inline-block;
    margin: 50px
}

.canvas-info {
    color: #999;
    font-size: 13px;
    line-height: 18px;
    margin-top: -42px;
    position: relative;
    text-align: left;
    text-align: center;
    width: 100%
}

.toolpanel {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-sizing: border-box;
    color: #777;
    font-size: 13px;
    height: 100%;
    padding: 20px 5px 20px 20px;
    text-align: left;
    transition: all .4s;
    width: 300px
}

.toolpanel .holder {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 30px;
    width: 100%
}

.toolpanel .minimizer {
    background-color: #f9f9f9;
    background-image: url(redSVGnIMG/panel-closer-arrow.svg);
    background-position: 5px;
    background-repeat: no-repeat;
    background-size: 10px;
    border: 1px solid #ddd;
    border-bottom-right-radius: 10px;
    border-left: 0;
    border-top-right-radius: 10px;
    cursor: pointer;
    height: 70px;
    position: absolute;
    right: -25px;
    top: 33%;
    width: 25px
}

.toolpanel.visible.minimized {
    left: -230px
}

.toolpanel.visible.minimized .holder {
    display: none
}

.toolpanel.visible.minimized .minimizer {
    background-image: url(redSVGnIMG/panel-opener-arrow.svg)
}

.toolpanel .title {
    border-bottom: 1px solid #ddd;
    color: #333;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
    padding-bottom: 10px;
    width: 100%
}

.toolpanel .subtitle {
    color: #555;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 20px;
    text-transform: uppercase;
    width: 100%
}

.toolpanel .title+p {
    margin-top: 22px
}

.toolpanel .setting {
    clear: both;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%
}

.toolpanel .setting.flex {
    grid-row-gap: 10px;
    display: grid;
    grid-template-columns: repeat(6, 1fr)
}

.toolpanel .setting .function,
.toolpanel .setting .label {
    box-sizing: border-box;
    float: left;
    line-height: 28px;
    width: 50%
}

.toolpanel .setting .label {
    clear: left;
    padding-right: 10px;
    vertical-align: top
}

.toolpanel .setting.disabled .label {
    color: #bbb
}

.toolpanel .setting .function {
    padding-left: 10px
}

.toolpanel input[type=number],
.toolpanel input[type=text] {
    background-color: #fff;
    border: 2px solid #e4e4e4;
    border-radius: 6px;
    display: inline-block;
    font-size: 13px;
    line-height: 18px;
    max-width: 100%;
    min-width: auto;
    padding: 4px 10px;
    width: inherit
}

.toolpanel select:disabled {
    border-color: #eee;
    color: #bbb
}

.toolpanel .input-with-unit {
    display: table
}

.toolpanel .input-with-unit input,
.toolpanel .input-with-unit span {
    display: table-cell
}

.toolpanel .input-with-unit input {
    width: 99%
}

.toolpanel .input-with-unit span {
    padding-left: 5px;
    vertical-align: middle;
    white-space: nowrap;
    width: 1%
}

.toolpanel input[type=checkbox] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    border: 2px solid #e4e4e4;
    border-radius: 2px;
    cursor: pointer;
    height: 20px;
    position: relative;
    top: 5px;
    width: 20px
}

.toolpanel input[type=checkbox]:checked {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAA0ElEQVQ4jZXToWqCURgG4CeIiGmIGA1Lu4CxCzB4ASK7jAXDos24tCQLuwCT2WDYJSwsjrGwNMaCyMLQ4K/8HD75z//Cad/znnPgHOrlCgvc1HSnrLHDP57Rq4NvC1xeH7m4jc+gYJ5bMAvwD7o5+BLboOAud/dlgF/RSAc7AR4GeIdBOjgujvlQKmriLcCLFF/gqzTwjQmmAd6gnxbMzxwzWtPgmp4cXlYVfkcrKoBrvFQUjM7hcsbFTile5eBjWrjHb4H/HH5h7fTwqOLF7QEbvF70RrzdLwAAAABJRU5ErkJggg==);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 11px
}

.toolpanel select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url(redSVGnIMG/panel-selectdown-arrow.svg);
    background-position: right 10px top 50%;
    background-repeat: no-repeat;
    background-size: 8px;
    border: 2px solid #e4e4e4;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    height: 30px;
    padding-left: 5px;
    padding-right: 20px;
    width: 100%
}

.toolpanel .small-buttons button {
    height: 32px;
    padding: 0;
    width: 32px
}

.input-color {
    background-color: #e4e4e4;
    border: 2px solid #e4e4e4;
    cursor: pointer;
    height: 30px
}

.input-color,
.input-color .color {
    border-radius: 6px;
    position: relative;
    width: 100%
}

.input-color .color {
    background-clip: content-box;
    background-color: #fff;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAHUlEQVQ4jWNgYGAQIYAJglEDhoUBg9+FowbQ2gAARjwKARjtnN8AAAAASUVORK5CYII=);
    background-position: 0 0, 15px 15px;
    background-size: 30px 30px;
    height: 100%;
    overflow: hidden
}

.input-color .color .fill {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.picker-holder {
    display: none;
    margin-top: 10px;
    width: 100%
}

.picker-holder.visible {
    display: inline-block
}

.tabs .tablist {
    margin-bottom: 10px;
    width: 100%
}

.tabs .tablist div {
    color: #aaa;
    display: inline-block;
    vertical-align: middle
}

.tabs .tablist .button {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase
}

.tabs .tablist .button.active {
    color: #333
}

.tabs .tablist .sep {
    color: #ddd;
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -4px
}

.tabs .tab {
    display: none
}

.tabs .tab.active {
    display: block
}

.gradientpicker {
    width: 100%
}

.gradientpicker .palette {
    margin: 0 auto 15px;
    position: relative;
    width: 100%;
    width: calc(100% - 8px)
}

.gradientpicker .palette svg {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAHUlEQVQ4jWNgYGAQIYAJglEDhoUBg9+FowbQ2gAARjwKARjtnN8AAAAASUVORK5CYII=);
    border-radius: 9px;
    height: 18px;
    overflow: hidden
}

.gradientpicker .palette .stopholder {
    height: 100%;
    left: 11px;
    position: absolute;
    top: 0;
    width: calc(100% - 22px)
}

.gradientpicker .palette .stopholder:hover {
    cursor: copy
}

.gradientpicker .palette .stop {
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    height: 14px;
    left: 0;
    margin: 4px 4px 4px -7px;
    position: absolute;
    top: -2px;
    width: 14px
}

.gradientpicker .palette .stop.active {
    border: 4px solid #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .5);
    height: 22px;
    margin: 0 0 0 -11px;
    width: 22px
}

.gradientpicker .palette .stop.active:after {
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 50%;
    content: "";
    height: 22px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 22px
}

.gradientpicker .orientation {
    margin-top: 10px
}

.gradientpicker .setting {
    clear: both;
    display: inline-block;
    margin-bottom: 10px;
    width: 100%
}

.gradientpicker .setting .function,
.gradientpicker .setting .label {
    box-sizing: border-box;
    float: left;
    width: 50%
}

.gradientpicker .setting .label {
    padding-right: 10px;
    padding-top: 3px
}

.gradientpicker .button-2-options {
    background-color: #e4e4e4;
    border-radius: 6px;
    height: 30px;
    overflow: hidden;
    width: 100%
}

.gradientpicker .button-2-options .option {
    border: 2px solid transparent;
    cursor: pointer;
    float: left;
    font-size: 13px;
    height: 30px;
    line-height: 26px;
    overflow: hidden;
    text-align: center;
    width: 50%
}

.gradientpicker .button-2-options .option.active {
    background-clip: padding-box;
    background-color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
    color: #333
}

.gradientpicker .button-amount {
    background-color: #e4e4e4;
    border-radius: 6px;
    height: 30px;
    position: relative;
    text-align: center;
    width: 100%
}

.gradientpicker .button-amount * {
    box-sizing: border-box
}

.gradientpicker .button-amount input {
    background-color: transparent;
    border: 0;
    float: left;
    font-size: 13px;
    height: 30px;
    margin: 0 auto;
    text-align: center;
    width: 36%
}

.gradientpicker .button-amount div {
    background-clip: padding-box;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 6px;
    color: #333;
    float: left;
    font-size: 16px;
    height: 30px;
    line-height: 26px;
    width: 32%
}

.gradientpicker .button-amount .decrease,
.gradientpicker .button-amount .increase {
    cursor: pointer
}

.gradientpicker input[type=range] {
    width: 100%
}

[type=range] {
    -webkit-appearance: none;
    background: transparent;
    vertical-align: middle;
    width: 100%
}

[type=range]::-moz-focus-outer {
    border: 0
}

[type=range]:focus {
    outline: 0
}

[type=range]:focus::-webkit-slider-runnable-track {
    background: #e1e1e1
}

[type=range]:focus::-ms-fill-lower {
    background: #d4d4d4
}

[type=range]:focus::-ms-fill-upper {
    background: #e1e1e1
}

[type=range]::-webkit-slider-runnable-track {
    background: #d4d4d4;
    border: 0 solid #cfd8dc;
    border-radius: 5px;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2);
    cursor: default;
    height: 5px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%
}

[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2);
    box-sizing: border-box;
    cursor: pointer;
    height: 20px;
    margin-top: -7.5px;
    width: 20px
}

[type=range]::-moz-range-track {
    background: #d4d4d4;
    border: 0 solid #cfd8dc;
    border-radius: 5px;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2);
    cursor: default;
    height: 5px;
    height: 2.5px;
    -moz-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%
}

[type=range]::-moz-range-thumb {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2);
    box-sizing: border-box;
    cursor: pointer;
    height: 20px;
    width: 20px
}

[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 10px;
    color: transparent;
    cursor: default;
    height: 5px;
    -ms-transition: all .2s ease;
    transition: all .2s ease;
    width: 100%
}

[type=range]::-ms-fill-lower {
    background: #c7c7c7
}

[type=range]::-ms-fill-lower,
[type=range]::-ms-fill-upper {
    border: 0 solid #cfd8dc;
    border-radius: 10px;
    box-shadow: 0 0 0 rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2)
}

[type=range]::-ms-fill-upper {
    background: #d4d4d4
}

[type=range]::-ms-thumb {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2), 0 0 0 hsla(0, 0%, 5%, .2);
    box-sizing: border-box;
    cursor: pointer;
    height: 20px;
    margin-top: 1.25px;
    width: 20px
}

[type=range]:disabled::-moz-range-thumb,
[type=range]:disabled::-ms-fill-lower,
[type=range]:disabled::-ms-fill-upper,
[type=range]:disabled::-ms-thumb,
[type=range]:disabled::-webkit-slider-runnable-track,
[type=range]:disabled::-webkit-slider-thumb {
    cursor: not-allowed
}

.button-amount {
    background-color: #e4e4e4;
    border-radius: 6px;
    height: 30px;
    position: relative;
    text-align: center;
    width: 100%
}

.button-amount.disabled {
    background-color: #eee
}

.button-amount * {
    box-sizing: border-box
}

.button-amount input[type=text] {
    background-color: transparent;
    border: 0;
    float: left;
    font-size: 13px;
    height: 30px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    width: 36%
}

.button-amount.disabled input[type=text] {
    color: #aaa
}

.button-amount div {
    background-clip: padding-box;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 6px;
    color: #333;
    float: left;
    font-size: 16px;
    height: 30px;
    line-height: 26px;
    width: 32%
}

.button-amount .decrease,
.button-amount .increase {
    cursor: pointer
}

.input-select {
    background-color: #e4e4e4;
    border-radius: 6px;
    height: 30px;
    position: relative;
    width: 100%
}

.input-select svg {
    display: inline-block;
    height: 5px;
    max-width: 100%;
    width: auto
}

.input-select .select {
    background-clip: padding-box;
    background-color: #fff;
    background-image: url(redSVGnIMG/panel-selectdown-arrow.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 6px;
    border: 2px solid transparent;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    height: 100%;
    padding-left: 10px;
    padding-right: 30px;
    position: relative;
    width: 100%
}

.input-select .select .active-option * {
    max-width: 100%
}

.input-select .select .list {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .15);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1
}

.input-select.open .list {
    display: block
}

.input-select .option {
    background-color: #fff;
    clear: both;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
    width: 100%
}

.input-select .option:hover {
    background-color: #eee
}

.shapes {
    grid-row-gap: 20px;
    grid-column-gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 22px
}

.shapes .button {
    cursor: pointer;
    height: 32px;
    line-height: 0;
    overflow: hidden;
    padding: 0;
    width: 32px
}

.shapes .button svg {
    height: auto;
    max-height: 36px;
    opacity: .5;
    width: 100%
}

.shapes .button:hover svg {
    opacity: 1
}

.file-upload {
    margin-top: 22px
}

.file-upload.no-support svg {
    display: block;
    margin: 40px auto 0;
    opacity: .2;
    width: 75%
}

.file-upload .drop {
    background-color: #fff;
    border: 2px dashed #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    margin-top: 20px;
    padding: 40px;
    text-align: center;
    width: 100%
}

.file-upload .drop .info {
    color: #999;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
    -webkit-text-size-adjust: 100%;
    line-height: 1.15
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: initial;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: initial
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: initial
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0
}

button,
input {
    overflow: visible
}

button,
select {
    text-transform: none
}

[type=button],
[type=reset],
[type=submit],
button {
    -webkit-appearance: button
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText
}

fieldset {
    padding: .35em .75em .625em
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal
}

progress {
    vertical-align: initial
}

textarea {
    overflow: auto
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

details {
    display: block
}

summary {
    display: list-item
}

[hidden],
template {
    display: none
}

#app,
#root,
body,
html {
    min-height: 100%
}

body {
    background-color: #eaeaea;
    color: #333;
    font-family: Open Sans, sans-serif;
    font-size: 14px;
    line-height: 22px;
    overflow-y: hidden;
    -webkit-user-select: none;
    user-select: none;
    width: 100%
}

body * {
    box-sizing: border-box
}

#app {
    position: relative;
    text-align: center
}

#app,
#root {
    height: 100%;
    min-height: 100vh
}

p {
    margin-top: 0
}

select {
    -webkit-appearance: none;
    appearance: none;
    background-clip: padding-box;
    background-color: #fff;
    background-image: url(redSVGnIMG/panel-selectdown-arrow.svg);
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 6px;
    border: 2px solid #e4e4e4;
    border-radius: 6px;
    color: #333;
    cursor: pointer;
    height: 30px;
    padding-left: 5px;
    padding-right: 20px;
    position: relative
}

.sbar::-webkit-scrollbar {
    width: 8px
}

.sbar {
    scrollbar-color: #c9c9c9 #e4e4e4;
    scrollbar-width: thin
}

.sbar::-webkit-scrollbar-track {
    background: #e4e4e4
}

.sbar::-webkit-scrollbar-thumb {
    background-color: #c9c9c9;
    border-radius: 3px
}

header {
    z-index: 3
}

header .menu button {
    background-color: transparent;
    background-position: 50%;
    background-repeat: no-repeat;
    border: 2px solid #000;
    border-radius: 50%;
    clear: both;
    cursor: pointer;
    height: 32px;
    margin-left: 20px;
    opacity: .6;
    padding: 0;
    width: 32px
}

header .menu button.close {
    background-color: #000
}

header .menu button.close svg {
    fill: #fff
}

header .menu button:hover {
    opacity: 1
}

header .menu button img,
header .menu button svg {
    height: 12px;
    width: 12px
}

header .menu button.disabled {
    opacity: .2
}

header .floating-menu {
    bottom: auto;
    left: auto;
    right: 65px;
    top: 91px
}

.canvas-holder {
    z-index: 0
}

.toolbar {
    left: 0;
    min-height: calc(100% - 91px);
    position: absolute;
    top: 91px;
    z-index: 2
}

.toolpanel {
    box-shadow: 0 0 2px 0 rgba(50, 50, 50, .25);
    height: calc(100% - 90px);
    left: -300px;
    position: absolute;
    top: 90px;
    z-index: 1
}

.toolpanel.visible {
    left: 63px
}

.toolpanel .minimizer {
    box-shadow: 1px 0 2px 0 rgba(50, 50, 50, .1)
}

.toolpanel button {
    background-color: #fff;
    border: 1px solid #ddd;
    text-align: center
}

.toolpanel button:hover {
    border-color: #555
}

.toolpanel button img,
.toolpanel button svg {
    height: 18px;
    opacity: .7;
    vertical-align: middle;
    width: 18px
}

.toolpanel button img:hover,
.toolpanel button svg:hover {
    opacity: 1
}

.bottom-info {
    bottom: 20px;
    color: #999;
    font-size: 13px;
    line-height: 18px;
    position: fixed;
    right: 20px
}

.bottom-info img,
.bottom-info svg {
    height: 16px;
    margin-right: 5px;
    opacity: .4;
    vertical-align: middle;
    width: 16px
}

.bottom-info select {
    width: 70px
}

.chrome-picker {
    background-color: transparent !important;
    box-shadow: none !important;
    font-family: Open Sans !important
}

.chrome-picker .flexbox-fix div:nth-child(2)>div:nth-child(2) {
    border: 1px solid #eee
}

.tabs {
    margin-top: 22px
}

.tabs .tablist {
    margin-bottom: 15px
}

.tabs .tablist .button {
    font-size: 13px
}

.tabs .tablist .button.active {
    color: #555
}

/*# sourceMappingURL=main.99bf5717.css.map*/
