@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: local("Inter"),url(./Inter-Medium-CKLJZXR2.ttf) format("truetype");
    font-display: swap
}

.hy-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursor-pointer, pointer);
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 15px;
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    zoom:1;transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s,filter .05s;
    height: 32px
}

.hy-button .hy-size-small {
    height: 24px
}

.hy-button .hy-size-tiny {
    height: 18px
}

.hy-button {
    color: #222;
    background: #fafafa
}

.hy-button:not(.hy-disabled):hover,.hy-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.hy-button:not(.hy-disabled):focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):focus-visible:hover,.hy-button:not(.hy-disabled):focus-visible:active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3),0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):active {
    filter: brightness(.9)
}

.hy-button.hy-disabled {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff;
    cursor: inherit
}

.hy-button.hy-primary-btn {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.hy-button.hy-primary-btn.hy-disabled {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff
}

.hy-button.hy-primary-btn:hover:not(.hy-disabled):not(:active) {
    filter: brightness(1.1)
}

.dark-mode .hy-button {
    border-color: #686868;
    color: silver;
    background: #444
}

.dark-mode .hy-button:not(.hy-disabled):hover,.dark-mode .hy-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.4);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-button:not(.hy-disabled):focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-button.hy-disabled {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.dark-mode .hy-button.hy-primary-btn {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.dark-mode .hy-button.hy-primary-btn.hy-disabled {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.hy-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.hy-popover {
    touch-action: none;
    position: fixed;
    visibility: visible;
    border-radius: 10px;
    background: #fff;
    pointer-events: all;
    transform-origin: center;
    filter: drop-shadow(0 5px 2.5px rgba(0,0,0,.2)) drop-shadow(0 8px 5px rgba(0,0,0,.14)) drop-shadow(0 3px 7px rgba(0,0,0,.12))
}

.dark-mode .hy-popover {
    background: #383838
}

.hy-popover .hy-popover-arrow-positioner {
    visibility: hidden;
    position: relative;
    width: 0;
    height: 0;
    background: inherit;
    border: inherit
}

.hy-popover .hy-popover-arrow-positioner .hy-popover-arrow {
    visibility: visible;
    position: absolute;
    background: inherit;
    left: 0;
    top: 0;
    border: inherit;
    transform: rotate(45deg);
    box-sizing: border-box
}

.hy-popover .hy-popover-content-container {
    position: relative;
    background: inherit;
    overflow: hidden;
    border-radius: inherit;
    visibility: hidden;
    height: 100%;
    width: 100%
}

.hy-popover:not(.hy-popover-hidden) .hy-popover-content-container>* {
    visibility: visible
}

.hy-popover-fade-enter-active {
    transition: opacity .1s ease-in,transform .1s
}

.hy-popover-fade-leave-active {
    transition: opacity .1s ease-out,transform .1s
}

.hy-popover-fade-enter-from,.hy-popover-fade-leave-to {
    opacity: 0
}

.hy-dropdown {
    padding: 4px 8px
}

.hy-dropdown-button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%
}

.hy-dropdown-button-label {
    text-align: start;
    flex: 1 1 auto;
    overflow: hidden
}

.hy-dropdown-popover.hy-popover-fade-enter-from,.hy-dropdown-popover.hy-popover-fade-leave-to {
    transform: scaleY(0)
}

.hy-tooltip {
    z-index: 100;
    color: #fff;
    background: #555;
    border-radius: 5px
}

.hy-tooltip-content {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400
}

.dark-mode .hy-tooltip {
    color: #080808;
    background: #ddd
}

.hy-radio {
    display: inline-flex;
    align-items: center;
    cursor: var(--cursor-pointer, pointer);
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    zoom:1;transition: background .1s,color .1s;
    font-size: 14px;
    height: 32px
}

.hy-radio .hy-size-small {
    height: 24px
}

.hy-radio .hy-size-tiny {
    height: 18px
}

.hy-radio input {
    position: relative;
    display: inline-block;
    line-height: 1;
    width: 16px;
    height: 16px;
    border-width: 1px;
    border-style: solid;
    border-radius: 50%;
    margin: 0;
    background-color: transparent;
    border-color: #b8b8b8;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: inherit;
    transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s
}

.hy-radio input:active {
    background-color: rgb(var(--accent-color-comp)/.15)
}

.hy-radio.hy-selected input {
    border-color: var(--accent-color);
    border-width: 1px
}

.hy-radio.hy-selected input:hover,.hy-radio.hy-selected input:active {
    background-color: transparent
}

.hy-radio.hy-selected input:after {
    content: "";
    position: absolute;
    margin: 2px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%
}

.hy-radio.hy-disabled {
    color: silver;
    cursor: inherit
}

.hy-radio.hy-disabled input {
    background-color: #fff;
    border-color: #e0e0e0
}

.hy-radio.hy-disabled.hy-selected input:after {
    background-color: silver
}

.hy-radio:not(.hy-disabled):hover input {
    border-color: var(--accent-color)
}

.hy-radio:not(.hy-disabled) input:focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-radio .hy-radio-label {
    padding-right: 8px;
    padding-left: 8px
}

.dark-mode .hy-radio {
    color: silver
}

.dark-mode .hy-radio input {
    background-color: #383838;
    border-color: #686868
}

.dark-mode .hy-radio input:focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-radio.hy-selected input {
    border-color: var(--accent-color)
}

.dark-mode .hy-radio.hy-disabled {
    color: #5c5c5ccc
}

.dark-mode .hy-radio.hy-disabled input {
    background-color: transparent;
    border-color: #5c5c5ccc
}

.dark-mode .hy-radio.hy-disabled.hy-selected input:after {
    background-color: #5c5c5ccc
}

.hy-button,.hy-radio-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursor-pointer, pointer);
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 15px;
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    zoom:1;transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s,filter .05s;
    height: 32px
}

.hy-button .hy-size-small,.hy-radio-button .hy-size-small {
    height: 24px
}

.hy-button .hy-size-tiny,.hy-radio-button .hy-size-tiny {
    height: 18px
}

.hy-button,.hy-radio-button {
    color: #222;
    background: #fafafa
}

.hy-button:not(.hy-disabled):hover,.hy-radio-button:not(.hy-disabled):hover,.hy-button:not(.hy-disabled):active,.hy-radio-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.hy-button:not(.hy-disabled):focus-visible,.hy-radio-button:not(.hy-disabled):focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):focus-visible:hover,.hy-radio-button:not(.hy-disabled):focus-visible:hover,.hy-button:not(.hy-disabled):focus-visible:active,.hy-radio-button:not(.hy-disabled):focus-visible:active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3),0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):active,.hy-radio-button:not(.hy-disabled):active {
    filter: brightness(.9)
}

.hy-button.hy-disabled,.hy-disabled.hy-radio-button {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff;
    cursor: inherit
}

.hy-button.hy-primary-btn,.hy-primary-btn.hy-radio-button {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.hy-button.hy-primary-btn.hy-disabled,.hy-primary-btn.hy-disabled.hy-radio-button {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff
}

.hy-button.hy-primary-btn:hover:not(.hy-disabled):not(:active),.hy-primary-btn.hy-radio-button:hover:not(.hy-disabled):not(:active) {
    filter: brightness(1.1)
}

.dark-mode .hy-button,.dark-mode .hy-radio-button {
    border-color: #686868;
    color: silver;
    background: #444
}

.dark-mode .hy-button:not(.hy-disabled):hover,.dark-mode .hy-radio-button:not(.hy-disabled):hover,.dark-mode .hy-button:not(.hy-disabled):active,.dark-mode .hy-radio-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.4);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-button:not(.hy-disabled):focus-visible,.dark-mode .hy-radio-button:not(.hy-disabled):focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-button.hy-disabled,.dark-mode .hy-disabled.hy-radio-button {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.dark-mode .hy-button.hy-primary-btn,.dark-mode .hy-primary-btn.hy-radio-button {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.dark-mode .hy-button.hy-primary-btn.hy-disabled,.dark-mode .hy-primary-btn.hy-disabled.hy-radio-button {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.hy-radio-button {
    position: relative
}

.hy-radio-button input {
    position: absolute;
    opacity: 0;
    margin: 0;
    inset: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.hy-radio-button .hy-radio-label {
    display: flex;
    pointer-events: none
}

.hy-radio-button:not(.hy-disabled).hy-focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-radio-button:not(.hy-disabled).hy-focus-visible:hover,.hy-radio-button:not(.hy-disabled).hy-focus-visible:active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3),0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-radio-button:not(.hy-disabled).hy-selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff
}

.hy-radio-button:not(.hy-disabled).hy-selected.hy-focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hue-ring[data-v-45800461] {
    position: relative;
    background: inherit
}

.hue-ring .outer-circle[data-v-45800461] {
    position: relative;
    display: flex;
    border-radius: 50%;
    border: 2px solid transparent;
    margin: 2px;
    overflow: hidden;
    isolation: isolate;
    background: inherit
}

.hue-ring .outer-circle[data-v-45800461]:focus-visible {
    box-shadow: 0 0 0 2px rgb(var(--accent-color-comp)/.4)
}

.hue-ring .hue-gradient-canvas[data-v-45800461] {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s
}

.hue-ring .hue-segments-canvas[data-v-45800461] {
    display: block;
    flex: 0 0 auto
}

.hue-ring .outer-circle-shadow[data-v-45800461] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 1px 5px #0000001a,inset 0 2px 2px #00000012,inset 0 3px 1px -2px #0000000f;
    outline: none
}

.hue-ring .inner-circle[data-v-45800461] {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border-radius: 50%;
    background: inherit;
    box-shadow: 0 1px 5px #0000001a,0 2px 2px #00000012,0 3px 1px -2px #0000000f
}

.hue-ring .inner-circle .content-container[data-v-45800461] {
    position: relative;
    margin: 15%;
    width: 70%;
    height: 70%
}

.hue-ring .h-indicator[data-v-45800461] {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 12px;
    height: 20px;
    margin: -8px 0 0 -2px;
    border-radius: 8px;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #0006;
    pointer-events: none
}

.hy-checkbox {
    display: inline-flex;
    align-items: center;
    cursor: var(--cursor-pointer, pointer);
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    zoom:1;transition: background .1s,color .1s;
    font-size: 14px;
    height: 32px
}

.hy-checkbox .hy-size-small {
    height: 24px
}

.hy-checkbox .hy-size-tiny {
    height: 18px
}

.hy-checkbox input {
    position: relative;
    display: inline-block;
    outline: none;
    cursor: inherit;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-color: #b8b8b8;
    border-width: 1px;
    border-style: solid;
    border-radius: 2px;
    margin: 0;
    background-position: center;
    background-size: cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: color .1s,background .1s,border-color .1s,box-shadow .1s
}

.hy-checkbox input:active {
    background-color: rgb(var(--accent-color-comp)/.15)
}

.hy-checkbox.hy-selected:not(.hy-disabled) input {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M3.5 10l4 4l8.5-8.5'/%3e%3c/svg%3e")
}

.hy-checkbox.hy-selected:not(.hy-disabled) input:hover:not(:active) {
    filter: brightness(1.1)
}

.hy-checkbox.hy-disabled {
    color: silver;
    cursor: inherit
}

.hy-checkbox.hy-disabled input {
    background-color: #fff;
    border-color: #e0e0e0
}

.hy-checkbox.hy-disabled.hy-selected input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23c0c0c0' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M3.5 10l4 4l8.5-8.5'/%3e%3c/svg%3e")
}

.hy-checkbox:not(.hy-disabled):hover input,.hy-checkbox:not(.hy-disabled):active input {
    border-color: var(--accent-color)
}

.hy-checkbox:not(.hy-disabled) input:focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-checkbox .hy-checkbox-label {
    padding-left: 8px
}

.dark-mode .hy-checkbox {
    color: silver
}

.dark-mode .hy-checkbox input {
    background-color: #383838;
    border-color: #686868
}

.dark-mode .hy-checkbox input:focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-checkbox input:active {
    filter: brightness(.9)
}

.dark-mode .hy-checkbox.hy-selected:not(.hy-disabled) input {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M3.5 10l4 4l8.5-8.5'/%3e%3c/svg%3e")
}

.dark-mode .hy-checkbox.hy-selected:not(.hy-disabled) input:hover:not(:active) {
    filter: brightness(1.1)
}

.dark-mode .hy-checkbox.hy-disabled {
    color: #5c5c5ccc
}

.dark-mode .hy-checkbox.hy-disabled input {
    background-color: transparent;
    border-color: #5c5c5ccc
}

.dark-mode .hy-checkbox.hy-disabled.hy-selected input {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23gba(92, 92, 92, 0.8)' stroke-linecap='round' stroke-linejoin='round' stroke-width='3.5' d='M3.5 10l4 4l8.5-8.5'/%3e%3c/svg%3e")
}

.hy-button,.hy-checkbox-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: var(--cursor-pointer, pointer);
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 0 15px;
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    overflow: hidden;
    white-space: nowrap;
    text-decoration: none;
    font-size: 14px;
    zoom:1;transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s,filter .05s;
    height: 32px
}

.hy-button .hy-size-small,.hy-checkbox-button .hy-size-small {
    height: 24px
}

.hy-button .hy-size-tiny,.hy-checkbox-button .hy-size-tiny {
    height: 18px
}

.hy-button,.hy-checkbox-button {
    color: #222;
    background: #fafafa
}

.hy-button:not(.hy-disabled):hover,.hy-checkbox-button:not(.hy-disabled):hover,.hy-button:not(.hy-disabled):active,.hy-checkbox-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.hy-button:not(.hy-disabled):focus-visible,.hy-checkbox-button:not(.hy-disabled):focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):focus-visible:hover,.hy-checkbox-button:not(.hy-disabled):focus-visible:hover,.hy-button:not(.hy-disabled):focus-visible:active,.hy-checkbox-button:not(.hy-disabled):focus-visible:active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3),0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-button:not(.hy-disabled):active,.hy-checkbox-button:not(.hy-disabled):active {
    filter: brightness(.9)
}

.hy-button.hy-disabled,.hy-disabled.hy-checkbox-button {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff;
    cursor: inherit
}

.hy-button.hy-primary-btn,.hy-primary-btn.hy-checkbox-button {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.hy-button.hy-primary-btn.hy-disabled,.hy-primary-btn.hy-disabled.hy-checkbox-button {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff
}

.hy-button.hy-primary-btn:hover:not(.hy-disabled):not(:active),.hy-primary-btn.hy-checkbox-button:hover:not(.hy-disabled):not(:active) {
    filter: brightness(1.1)
}

.dark-mode .hy-button,.dark-mode .hy-checkbox-button {
    border-color: #686868;
    color: silver;
    background: #444
}

.dark-mode .hy-button:not(.hy-disabled):hover,.dark-mode .hy-checkbox-button:not(.hy-disabled):hover,.dark-mode .hy-button:not(.hy-disabled):active,.dark-mode .hy-checkbox-button:not(.hy-disabled):active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.4);
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-button:not(.hy-disabled):focus-visible,.dark-mode .hy-checkbox-button:not(.hy-disabled):focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-button.hy-disabled,.dark-mode .hy-disabled.hy-checkbox-button {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.dark-mode .hy-button.hy-primary-btn,.dark-mode .hy-primary-btn.hy-checkbox-button {
    color: #fff;
    border-color: var(--accent-color);
    background-color: var(--accent-color)
}

.dark-mode .hy-button.hy-primary-btn.hy-disabled,.dark-mode .hy-primary-btn.hy-disabled.hy-checkbox-button {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.hy-checkbox-button {
    position: relative
}

.hy-checkbox-button input {
    position: absolute;
    opacity: 0;
    margin: 0;
    inset: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.hy-checkbox-button .hy-checkbox-label {
    display: inline-flex
}

.hy-checkbox-button:not(.hy-disabled).hy-focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-checkbox-button:not(.hy-disabled).hy-focus-visible:hover,.hy-checkbox-button:not(.hy-disabled).hy-focus-visible:active {
    box-shadow: inset 0 0 0 1px rgb(var(--accent-color-comp)/.3),0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-checkbox-button.hy-selected {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff
}

.slider[data-v-e73895bb] {
    position: relative;
    height: 100%;
    width: 18px;
    touch-action: none;
    cursor: ns-resize;
    padding: 6px 0;
    border-radius: 3px
}

.slider[data-v-e73895bb]:focus-visible {
    box-shadow: 0 0 0 2px rgb(var(--accent-color-comp)/.4)
}

.slider .track[data-v-e73895bb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 0;
    height: 100%;
    width: 100%
}

.slider .track-background[data-v-e73895bb] {
    position: relative;
    top: 0;
    height: 100%;
    width: 16px;
    background: content-box url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAHElEQVR42mM8wwAExiCCiQEOCDIZ/4PIs6RqAwDNHgLeFwMXyAAAAABJRU5ErkJggg==) repeat fixed;
    border-radius: 4px;
    overflow: hidden
}

.slider .track-overlay[data-v-e73895bb] {
    position: absolute;
    inset: 0
}

.slider .indicator[data-v-e73895bb] {
    position: absolute;
    left: 0;
    right: 0;
    height: 18px;
    margin-top: -9px;
    border: 2px solid #fff;
    border-radius: 9px;
    box-shadow: 0 0 0 1px #0006
}

.hy-input-number {
    display: flex;
    align-items: center;
    justify-content: stretch;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background-color: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 2px;
    transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s;
    min-width: 32px;
    height: 32px;
    text-align: right
}

.hy-input-number.hy-size-s {
    height: 26px
}

.hy-input-number.hy-size-xs {
    height: 20px
}

.hy-input-number ::selection {
    background: rgb(var(--accent-color-comp)/.4)
}

.hy-input-number input {
    border: none;
    color: inherit;
    background-color: transparent;
    display: inline-block;
    outline: none;
    height: 100%;
    margin: 0;
    padding: 0 4px;
    text-align: inherit;
    font-variant-numeric: tabular-nums;
    flex: 1 1 0;
    min-width: 0;
    width: 64px
}

.hy-input-number:hover:not(.hy-disabled) {
    border-color: var(--accent-color)
}

.hy-input-number:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-input-number.hy-disabled {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff
}

.dark-mode .hy-input-number {
    color: silver;
    background-color: #222;
    border-color: #686868
}

.dark-mode .hy-input-number ::selection {
    background: rgb(var(--accent-color-comp)/.6)
}

.dark-mode .hy-input-number:focus-within {
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-input-number.hy-disabled {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: transparent
}

.dark-mode .hy-input-number:hover:not(.hy-disabled) {
    border-color: var(--accent-color)
}

.hy-input-number:hover:not(.hy-disabled) .hy-input-number-buttons {
    opacity: 1
}

.hy-input-number.hy-disabled * {
    pointer-events: none
}

.hy-input-number-buttons {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    height: 100%;
    opacity: 0;
    transition: opacity .25s;
    margin-left: 2px;
    color: #b8b8b8;
    cursor: var(--cursor-pointer, pointer)
}

.hy-input-number-buttons>span {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 16px;
    margin: 0;
    padding: 0;
    border: none;
    border-color: #b8b8b8;
    border-left-width: 1px;
    border-left-style: solid;
    overflow: hidden;
    background: #f8f8f8
}

.hy-input-number-buttons>span:first-child {
    border-bottom-width: 1px;
    border-bottom-style: solid
}

.hy-input-number-buttons>span:last-child {
    border-top-width: 1px;
    border-top-style: solid
}

.hy-input-number-buttons>span:active {
    filter: brightness(.9)
}

.hy-input-number-buttons>span * {
    pointer-events: none
}

.hy-input-number-buttons:hover>span:hover {
    border-color: var(--accent-color);
    color: var(--accent-color)
}

.dark-mode .hy-input-number-buttons {
    color: silver
}

.dark-mode .hy-input-number-buttons>span {
    border-color: #686868;
    background: #383838
}

.dark-mode .hy-input-number-buttons>span:active {
    background-color: rgb(var(--accent-color-comp)/.1)
}

.dark-mode .hy-input-number-buttons:hover>span {
    border-color: var(--accent-color)
}

.dark-mode .hy-input-number-buttons:hover:hover {
    color: var(--accent-color)
}

.hy-group>.hy-input:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.hy-group>.hy-input:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.hy-input {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #222;
    background-color: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 2px;
    transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s;
    width: 100%;
    height: 32px;
    text-align: start
}

.hy-input .hy-size-small {
    height: 24px
}

.hy-input .hy-size-tiny {
    height: 18px
}

.hy-input input {
    flex: 1 1 auto;
    border: none;
    display: inline-block;
    outline: none;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: .4em;
    color: inherit;
    background-image: none;
    background-color: inherit;
    transition: color .1s,background-color .1s,border-color .1s,box-shadow .1s;
    text-align: inherit
}

.hy-input input::placeholder {
    color: silver
}

.hy-input:hover:not(.hy-disabled) {
    border-color: var(--accent-color)
}

.hy-input:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-input:disabled {
    color: silver;
    border-color: #e0e0e0;
    background-color: #fff
}

.hy-input ::selection {
    background: rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-input {
    color: silver;
    background-color: #222;
    border-color: #686868
}

.dark-mode .hy-input input::placeholder {
    color: #5c5c5ccc
}

.dark-mode .hy-input:focus-within {
    border-color: rgb(var(--accent-color-comp)/.8)
}

.dark-mode .hy-input.hy-input-disabled {
    color: #5c5c5ccc;
    border-color: #484848;
    background-color: #2a2a2a
}

.dark-mode .hy-input ::selection {
    background: rgb(var(--accent-color-comp)/.6)
}

.grid[data-v-1fa4da8a] {
    grid-area: 1/1;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    column-gap: 4px
}

.number-input[data-v-1fa4da8a] {
    text-align: center;
    width: calc(3ch + 16px);
    height: 26px
}

.dropdown-button[data-v-1fa4da8a] {
    border: none;
    margin-left: 0;
    padding: 8px;
    background: transparent
}

.dropdown-content[data-v-1fa4da8a] {
    padding: 8px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.dropdown-content .hy-button[data-v-1fa4da8a] {
    border: none;
    background: transparent;
    padding: 0 16px
}

.dropdown-separator[data-v-1fa4da8a] {
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin: 4px 0
}

.dark-mode .dropdown-separator[data-v-1fa4da8a] {
    border-color: #484848
}

.color-swatches[data-v-3e6dee20] {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 16px
}

.color-array[data-v-3e6dee20] {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 6px
}

.color-swatch[data-v-3e6dee20] {
    border: 1px solid #b8b8b8;
    border-radius: 50%;
    width: 18px;
    height: 18px
}

.dark-mode .color-swatch[data-v-3e6dee20] {
    border-color: #686868
}

.color-picker[data-v-653ed195] {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: inherit
}

.color-picker .controls[data-v-653ed195] {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    background: inherit
}

.color-picker .controls .preview-panel[data-v-653ed195] {
    height: 42px;
    margin: 8px;
    box-sizing: border-box
}

.color-picker .controls .hsb-selector[data-v-653ed195] {
    background: inherit;
    width: 228px;
    height: 228px
}

.color-picker .controls .sb-selector[data-v-653ed195] {
    position: relative;
    height: calc(100% + 4px);
    width: calc(100% + 4px);
    margin: -2px;
    cursor: crosshair;
    border: 2px solid transparent
}

.color-picker .controls .sb-selector[data-v-653ed195]:focus-visible {
    box-shadow: 0 0 0 1px rgb(var(--accent-color-comp)/.4)
}

.color-picker .controls .sb-selector .white-gradient[data-v-653ed195],.color-picker .controls .sb-selector .black-gradient[data-v-653ed195] {
    position: absolute;
    inset: 0
}

.color-picker .controls .sb-selector .white-gradient[data-v-653ed195] {
    background: linear-gradient(to right,#fff 0,#fff0)
}

.color-picker .controls .sb-selector .black-gradient[data-v-653ed195] {
    background: linear-gradient(to bottom,#0000 0,#000)
}

.color-picker .controls .sb-selector .sb-indicator[data-v-653ed195] {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: -6px 0 0 -6px;
    box-shadow: 0 0 0 1px #0006
}

.color-picker .controls .opacity-slider[data-v-653ed195] {
    margin: 16px 0 16px 18px
}

.color-picker .eyedropper-button[data-v-653ed195] {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%
}

.color-picker .color-input[data-v-653ed195] {
    margin-top: 16px
}

.color-picker .comp-field[data-v-653ed195]:not(:last-child) {
    margin-right: 6px
}

.color-picker .comp-input[data-v-653ed195] {
    width: 52px;
    margin-top: 8px;
    text-align: center
}

.color-picker .color-swatches[data-v-653ed195] {
    margin-top: 16px
}

.dropdown-content[data-v-0c5079d8] {
    padding: 16px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;
    gap: 16px
}

.dropdown-content .zoom-input[data-v-0c5079d8] {
    padding: 0 24px
}

.dropdown-content .zoom-input .button[data-v-0c5079d8] {
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%
}

.dropdown-content .zoom-input .input[data-v-0c5079d8] {
    width: 64px;
    text-align: right
}

.dropdown-content .dropdown-separator[data-v-0c5079d8] {
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin: 4px 0
}

.dark-mode .dropdown-content .dropdown-separator[data-v-0c5079d8] {
    border-color: #484848
}

.bg-button[data-v-0c5079d8] {
    width: 24px;
    height: 24px;
    padding: 0;
    background: none
}

.bg-button[data-v-0c5079d8]:hover:not(.hy-disabled) {
    background: rgb(var(--accent-color-comp)/.2)
}

.bg-button[data-v-0c5079d8]:hover:not(.hy-disabled):active {
    background: rgb(var(--accent-color-comp)/.3)
}

.dark-mode:not(.hy-disabled) .bg-button[data-v-0c5079d8] {
    color: silver;
    background: #383838
}

.dark-mode:not(.hy-disabled) .bg-button[data-v-0c5079d8]:hover {
    background: #4a4a4a
}

.dark-mode:not(.hy-disabled) .bg-button[data-v-0c5079d8]:hover:active {
    background: #575757
}

.status-bar[data-v-3509d06a] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 22px;
    background: #fff;
    transition: background .1s;
    padding: 0;
    gap: 16px
}

.status-bar .spacer[data-v-3509d06a] {
    width: 80px;
    flex: 0 1 auto
}

.status-bar .coordinate[data-v-3509d06a] {
    flex: 0 0 auto;
    width: 64px;
    text-align: left;
    overflow: hidden;
    white-space: nowrap;
    background: inherit;
    font-variant-numeric: tabular-nums
}

.status-bar .zoom[data-v-3509d06a] {
    width: 100px;
    text-align: left;
    margin-left: 16px
}

.dark-mode .status-bar[data-v-3509d06a] {
    background: #2a2a2a
}

.ruler[data-v-415810ae] {
    position: relative;
    overflow: hidden;
    background: #fff;
    height: 18px;
    width: 18px
}

.ruler.horizontal[data-v-415810ae] {
    width: 100%
}

.ruler.horizontal .indicator[data-v-415810ae] {
    top: 0;
    width: 1px;
    height: 100%;
    margin-left: -2px;
    border-width: 4px 3px 0 3px;
    border-top-color: currentColor
}

.ruler.horizontal .indicator[data-v-415810ae]:before {
    width: 1px;
    height: 100%
}

.ruler.vertical[data-v-415810ae] {
    height: 100%
}

.ruler.vertical .indicator[data-v-415810ae] {
    left: 0;
    width: 100%;
    height: 1px;
    margin-top: -2px;
    border-width: 3.5px 0 3.5px 4px;
    border-left-color: currentColor
}

.ruler.vertical .indicator[data-v-415810ae]:before {
    width: 100%;
    height: 1px
}

.ruler .indicator[data-v-415810ae] {
    color: #00000080;
    position: absolute;
    border-style: solid;
    border-color: transparent;
    box-sizing: content-box
}

.ruler .indicator[data-v-415810ae]:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: currentColor;
    opacity: .6
}

.dark-mode .ruler .indicator[data-v-415810ae] {
    color: #fff6
}

.ruler .scale-canvas[data-v-415810ae] {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%
}

.hy-scrollview-container {
    display: grid;
    grid-template-columns: 1fr;
    position: relative;
    overflow: hidden
}

.hy-scrollview {
    position: relative;
    overflow: hidden;
    overscroll-behavior: contain;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.hy-scrollview::-webkit-scrollbar {
    display: none;
    -webkit-appearance: none;
    width: 0;
    height: 0
}

.hy-scrollview.hy-scrollview-horizontal {
    overflow-x: auto
}

.hy-scrollview.hy-scrollview-vertical {
    overflow-y: auto
}

.hy-scrollview-content {
    position: relative;
    min-width: 100%;
    min-height: 100%
}

.hy-scrollview-horizontal .hy-scrollview-content {
    width: fit-content
}

.hy-scrollview-vertical .hy-scrollview-content {
    height: fit-content
}

.hy-scrollbar {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .25s,background .25s;
    overflow: hidden
}

.hy-scrollview-container:hover>.hy-scrollbar,.hy-active-x>.hy-scrollbar,.hy-active-y>.hy-scrollbar {
    opacity: 1
}

@media(hover: none),(pointer:coarse) {
    .hy-scrollview-container:focus-within .hy-scrollbar,.hy-scrollview-container:focus .hy-scrollbar {
        opacity:1!important
    }
}

.hy-scrollbar.hy-scrollbar-x {
    height: 14px;
    left: 0
}

.hy-scrollbar.hy-scrollbar-x>.hy-scrollbar-thumb {
    height: 14px;
    width: 50%
}

.hy-scrollbar.hy-scrollbar-x>.hy-scrollbar-thumb:before {
    inset: 2px -1px
}

.hy-active-x .hy-scrollbar.hy-scrollbar-x>.hy-scrollbar-thumb {
    opacity: 1
}

.hy-scrollbar.hy-scrollbar-y {
    width: 14px;
    top: 0
}

.hy-scrollbar.hy-scrollbar-y>.hy-scrollbar-thumb {
    width: 14px;
    height: 50%
}

.hy-scrollbar.hy-scrollbar-y>.hy-scrollbar-thumb:before {
    inset: -1px 2px
}

.hy-active-y .hy-scrollbar.hy-scrollbar-y>.hy-scrollbar-thumb {
    opacity: 1
}

.hy-active-x .hy-scrollbar.hy-scrollbar-x,.hy-active-y .hy-scrollbar.hy-scrollbar-y {
    background: #f8f8f8b3
}

.hy-scrollbar .hy-scrollbar-thumb {
    position: relative;
    cursor: default;
    transition: opacity .25s;
    opacity: .6
}

.hy-scrollbar .hy-scrollbar-thumb:before {
    background: #888;
    position: absolute;
    content: "";
    border-radius: 5px;
    border: 1px solid rgba(255,255,255,.5)
}

.hy-scrollbar .hy-scrollbar-thumb:hover {
    opacity: .8
}

.hy-scrollbar:hover {
    background: #f8f8f8b3
}

.dark-mode .hy-scrollbar>.hy-scrollbar-thumb:before {
    background: #999;
    border-color: #2a2a2a80
}

.dark-mode .hy-active-y .hy-scrollbar-y,.dark-mode .hy-active-x .hy-scrollbar-x,.dark-mode .hy-scrollbar:hover {
    background: #383838b3
}

.hy-field {
    display: grid;
    grid-template-columns: minmax(100px,auto) 1fr;
    grid-auto-rows: 32px;
    column-gap: 16px;
    align-items: center;
    justify-content: start;
    line-height: 1.3
}

.hy-field .hy-field-label {
    color: #222;
    font-size: 14px;
    text-align: right;
    transition: color .1s
}

.hy-field .hy-field-content {
    display: flex;
    align-items: center;
    gap: 8px 16px;
    min-width: 48px
}

.hy-field.hy-field-disabled .hy-field-label,.dark-mode .hy-field .hy-field-label {
    color: silver
}

.dark-mode .hy-field.hy-field-disabled .hy-field-label {
    color: #5c5c5ccc
}

.hy-group {
    display: flex;
    align-items: stretch
}

.hy-group>.hy-element {
    position: relative
}

.hy-group>.hy-element:focus-within {
    z-index: 2
}

.hy-group>.hy-element:hover {
    z-index: 1
}

.hy-group>.hy-element:not(:last-child) {
    margin-right: -1px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.hy-group>.hy-element:not(:first-child) {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.modal {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    outline: 0
}

.blocking-modal {
    pointer-events: auto;
    background: #fff6
}

.dark-mode .blocking-modal {
    background: #2a2a2a66
}

.non-blocking-modal {
    pointer-events: none;
    background: transparent
}

.hy-dialog {
    position: absolute;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: #fff;
    pointer-events: auto;
    transform-origin: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    user-select: none;
    box-shadow: 0 6px 6px #0003,0 10px 14px #00000024,0 4px 18px #0000001f
}

.hy-dialog.dragging {
    box-shadow: 0 2px 4px #0003,0 4px 5px #00000024,0 1px 10px #0000001f
}

.dark-mode .hy-dialog {
    background: #2a2a2a
}

.dark-mode .hy-dialog .hy-dialog-header {
    border-bottom-color: #5a5a5a
}

.dark-mode .hy-dialog .hy-dialog-header .title,.dark-mode .hy-dialog .hy-dialog-header .close-button {
    color: silver
}

.dark-mode .hy-dialog .hy-dialog-header .close-button:hover {
    background: #c0c0c04d;
    opacity: 1
}

.dark-mode .hy-dialog .hy-dialog-header .close-button:active {
    background: #c0c0c066
}

.hy-dialog .hy-dialog-header {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 46px;
    padding: 0 24px;
    border-bottom: 1px solid #d0d0d0
}

.hy-dialog .hy-dialog-header .title {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .03em;
    opacity: .7;
    pointer-events: none;
    padding-top: .2em
}

.hy-dialog .hy-dialog-header .close-button {
    opacity: .7;
    position: absolute;
    right: 8px;
    color: #222;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    padding: 2px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    text-align: center;
    transition: opacity .25s,background .1s;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent
}

.hy-dialog .hy-dialog-header .close-button:focus-visible {
    opacity: 1;
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.hy-dialog .hy-dialog-header .close-button:hover {
    background: #2223;
    opacity: 1
}

.hy-dialog .hy-dialog-header .close-button:active {
    background: #2222224d
}

.hy-dialog .hy-dialog-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin: 16px 24px
}

.hy-dialog-content-container {
    position: relative;
    background: inherit;
    overflow: hidden;
    min-height: 16px;
    flex: 1 1 auto
}

.hy-dialog-fade-enter-active,.hy-dialog-fade-enter-active .hy-dialog,.hy-dialog-fade-leave-active,.hy-dialog-fade-leave-active .hy-dialog {
    transition: opacity .1s,transform .1s
}

.hy-dialog-fade-enter-from,.hy-dialog-fade-leave-to {
    opacity: .999;
    background: transparent
}

.dark-mode .hy-dialog-fade-enter-from,.dark-mode .hy-dialog-fade-leave-to {
    background: transparent
}

.hy-dialog-fade-enter-from .hy-dialog,.hy-dialog-fade-leave-to .hy-dialog {
    opacity: 0;
    transform: scaleY(0)
}

.hy-scrollable {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0
}

.hy-scrollable::-webkit-scrollbar {
    background: #f0f0f0;
    width: 8px;
    height: 8px
}

.hy-scrollable::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px
}

.hy-scrollable::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 4px
}

.hy-scrollable::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px
}

.dark-mode .hy-scrollable {
    scrollbar-color: #666 #444
}

.dark-mode .hy-scrollable::-webkit-scrollbar {
    background: #444
}

.dark-mode .hy-scrollable::-webkit-scrollbar-thumb {
    background: #666
}

.dark-mode .hy-scrollable::-webkit-scrollbar-thumb:hover {
    background: gray
}

.dark-mode .hy-scrollable::-webkit-scrollbar-track {
    background: #444
}

.dark-mode .hy-scrollable::-webkit-scrollbar-corner {
    background: #444
}

@media(hover: hover)and (pointer:fine) {
    .hy-notouch-scrollable {
        scrollbar-width:thin;
        scrollbar-color: #bbb #f0f0f0
    }

    .hy-notouch-scrollable::-webkit-scrollbar {
        background: #f0f0f0;
        width: 8px;
        height: 8px
    }

    .hy-notouch-scrollable::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 4px
    }

    .hy-notouch-scrollable::-webkit-scrollbar-thumb:hover {
        background: #888;
        border-radius: 4px
    }

    .hy-notouch-scrollable::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px
    }

    .dark-mode .hy-notouch-scrollable {
        scrollbar-color: #666 #444
    }

    .dark-mode .hy-notouch-scrollable::-webkit-scrollbar {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable::-webkit-scrollbar-thumb {
        background: #666
    }

    .dark-mode .hy-notouch-scrollable::-webkit-scrollbar-thumb:hover {
        background: gray
    }

    .dark-mode .hy-notouch-scrollable::-webkit-scrollbar-track {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable::-webkit-scrollbar-corner {
        background: #444
    }
}

.hy-select.hy-button {
    padding-right: 8px;
    padding-left: 0
}

.hy-select.hy-button .hy-select-button-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%
}

.hy-select-items-container {
    display: flex;
    flex-direction: column;
    max-height: 320px;
    overflow-y: auto
}

.hy-select-item {
    display: block;
    text-align: start;
    width: 100%;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    color: #222;
    background: #fff
}

.hy-select-item:hover {
    background: #f2f2f2
}

.hy-select-item:active,.hy-select-item.hy-select-item-selected {
    color: #fff;
    background: var(--accent-color)
}

.dark-mode .hy-select-item {
    color: silver;
    background: #383838
}

.dark-mode .hy-select-item:hover {
    background: #454545
}

.dark-mode .hy-select-item:active {
    color: #fff;
    background: var(--accent-color)
}

.content[data-v-2ceba815] {
    padding: 40px 32px 24px;
    align-items: flex-start
}

.fields-container[data-v-2ceba815] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 16px
}

[data-v-2ceba815] .filename-input {
    width: auto
}

[data-v-2ceba815] .filename-input>.hy-input-input {
    text-align: right
}

[data-v-2ceba815] .filetype-select {
    width: 84px;
    text-align: left
}

.dimension-input[data-v-2ceba815] {
    width: 82px
}

.keep-ratio-group[data-v-2ceba815] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0;
    margin-left: 8px
}

.keep-ratio-indicator-top[data-v-2ceba815],.keep-ratio-indicator-bottom[data-v-2ceba815] {
    height: 100%;
    border: 2px solid #b8b8b8;
    width: 9px;
    border-left-width: 0;
    box-sizing: border-box;
    transition: border-color .1s;
    margin: 2px 0
}

.keep-ratio-indicator-top.disabled[data-v-2ceba815],.keep-ratio-indicator-bottom.disabled[data-v-2ceba815] {
    opacity: .7;
    border-color: #e0e0e0
}

.dark-mode .keep-ratio-indicator-top[data-v-2ceba815],.dark-mode .keep-ratio-indicator-bottom[data-v-2ceba815] {
    border-color: #686868
}

.dark-mode .keep-ratio-indicator-top.disabled[data-v-2ceba815],.dark-mode .keep-ratio-indicator-bottom.disabled[data-v-2ceba815] {
    border-color: #484848
}

.keep-ratio-indicator-top[data-v-2ceba815] {
    border-bottom-width: 0
}

.keep-ratio-indicator-bottom[data-v-2ceba815] {
    border-top-width: 0
}

.content-container[data-v-1643aa64] {
    margin: 24px 32px
}

.hy-label {
    font-size: 14px;
    transition: color .1s
}

.hy-label.hy-label-disabled {
    color: silver
}

.dark-mode .hy-label.hy-label-disabled {
    color: #5c5c5ccc
}

.hy-list {
    padding: 0;
    margin: 0
}

.hy-list .hy-list-item {
    display: block;
    text-align: start;
    width: 100%;
    border: none;
    padding: 16px 32px;
    transition: background .1s;
    font-size: 14px;
    color: #222;
    background: transparent
}

.hy-list .hy-list-item:hover {
    background: rgb(var(--accent-color-comp),.2)
}

.hy-list .hy-list-item:active,.hy-list .hy-list-item.hy-list-item-selected {
    color: #fff;
    background: var(--accent-color)
}

.dark-mode .hy-list .hy-list-item:not(.hy-list-item-selected) {
    color: silver
}

.hy-switch {
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    line-height: 1.3;
    cursor: var(--cursor-pointer, pointer);
    outline: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    color: #222;
    white-space: nowrap;
    text-decoration: none;
    zoom:1;transition: background .1s,color .1s
}

.hy-switch input {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    outline: none;
    cursor: inherit;
    width: 40px;
    height: 24px;
    background-color: #b8b8b8;
    border-color: #b8b8b8;
    border-width: 1px;
    border-style: solid;
    border-radius: 12px;
    margin: 0;
    background-position: center;
    background-size: cover;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: color .1s,background .1s,border-color .1s,box-shadow .1s;
    touch-action: pan-y;
    padding-left: 1px
}

.hy-switch input:before {
    width: 20px;
    height: 20px;
    background: #fff;
    content: "";
    border-radius: 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #b8b8b8
}

.dark-mode .hy-switch input:before {
    border-color: #686868
}

.hy-switch:not(.hy-disabled) input:active:before {
    filter: brightness(.9)
}

.hy-switch:not(.hy-disabled) input:not(:active):hover:before {
    filter: brightness(1.1)
}

.hy-switch.hy-selected input {
    padding-left: 17px
}

.hy-switch.hy-selected:not(.hy-disabled) input {
    background-color: var(--accent-color);
    border-color: var(--accent-color)
}

.hy-switch.hy-disabled {
    color: silver;
    cursor: inherit
}

.hy-switch.hy-disabled input {
    background-color: #fff;
    border-color: #e0e0e0
}

.hy-switch:not(.hy-disabled):hover input,.hy-switch:not(.hy-disabled):active input {
    border-color: var(--accent-color)
}

.hy-switch:not(.hy-disabled) input:focus-visible {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-switch {
    color: silver
}

.dark-mode .hy-switch input {
    background-color: #686868;
    border-color: #686868
}

.dark-mode .hy-switch input:focus-visible {
    border-color: rgb(var(--accent-color-comp)/.8);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.4)
}

.dark-mode .hy-switch input:before {
    background: #2a2a2a
}

.dark-mode .hy-switch.hy-selected:not(.hy-disabled) input {
    background-color: var(--accent-color);
    border-color: var(--accent-color)
}

.dark-mode .hy-switch.hy-disabled {
    color: #5c5c5ccc
}

.dark-mode .hy-switch.hy-disabled input {
    background-color: #2a2a2a;
    border-color: #5c5c5ccc
}

[data-v-2c5e0195],[data-v-2c5e0195]:before,[data-v-2c5e0195]:after {
    box-sizing: border-box
}

body[data-v-2c5e0195],h1[data-v-2c5e0195],h2[data-v-2c5e0195],h3[data-v-2c5e0195],h4[data-v-2c5e0195],p[data-v-2c5e0195],figure[data-v-2c5e0195],blockquote[data-v-2c5e0195],dl[data-v-2c5e0195],dd[data-v-2c5e0195] {
    margin: 0
}

ul[role=list][data-v-2c5e0195],ol[role=list][data-v-2c5e0195] {
    list-style: none
}

html[data-v-2c5e0195] {
    height: 100vh;
    height: 100dvh
}

html[data-v-2c5e0195]:focus-within {
    scroll-behavior: smooth
}

body[data-v-2c5e0195] {
    height: 100%;
    width: 100%
}

a[data-v-2c5e0195]:not([class]) {
    text-decoration-skip-ink: auto
}

img[data-v-2c5e0195],picture[data-v-2c5e0195] {
    max-width: 100%;
    display: block
}

input[data-v-2c5e0195],button[data-v-2c5e0195],textarea[data-v-2c5e0195],select[data-v-2c5e0195] {
    font: inherit
}

[data-v-2c5e0195]:root {
    --accent-color: #2092FC;
    --accent-color-comp: 32, 146, 252;
    cursor: var(--cursor-default, default)
}

body[data-v-2c5e0195] {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    transition: color .1s,background-color .1s;
    font-family: Inter,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    background: #fff
}

body.dark-mode[data-v-2c5e0195] {
    color: silver;
    background: #2a2a2a
}

[data-v-2c5e0195] {
    user-select: none;
    outline: none
}

.hy-elevation-1[data-v-2c5e0195] {
    filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.2)) drop-shadow(0 1px .5px rgba(0,0,0,.14)) drop-shadow(0 2px .5px rgba(0,0,0,.12))
}

.hy-elevation-2[data-v-2c5e0195] {
    filter: drop-shadow(0 1px 2.5px rgba(0,0,0,.2)) drop-shadow(0 2px 1px rgba(0,0,0,.14)) drop-shadow(0 3px .5px rgba(0,0,0,.12))
}

.hy-elevation-3[data-v-2c5e0195] {
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.2)) drop-shadow(0 3px 2px rgba(0,0,0,.14)) drop-shadow(0 3px 1.5px rgba(0,0,0,.12))
}

.hy-elevation-4[data-v-2c5e0195] {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.2)) drop-shadow(0 4px 2.5px rgba(0,0,0,.14)) drop-shadow(0 1px 5px rgba(0,0,0,.12))
}

.hy-elevation-5[data-v-2c5e0195] {
    filter: drop-shadow(0 3px 2.5px rgba(0,0,0,.2)) drop-shadow(0 5px 4px rgba(0,0,0,.07)) drop-shadow(0 1px 7px rgba(0,0,0,.06))
}

.hy-elevation-6[data-v-2c5e0195] {
    filter: drop-shadow(0 3px 2.5px rgba(0,0,0,.2)) drop-shadow(0 6px 5px rgba(0,0,0,.14)) drop-shadow(0 1px 9px rgba(0,0,0,.12))
}

.hy-elevation-7[data-v-2c5e0195] {
    filter: drop-shadow(0 4px 2.5px rgba(0,0,0,.2)) drop-shadow(0 7px 5px rgba(0,0,0,.14)) drop-shadow(0 2px 8px rgba(0,0,0,.12))
}

.hy-elevation-8[data-v-2c5e0195] {
    filter: drop-shadow(0 5px 2.5px rgba(0,0,0,.2)) drop-shadow(0 8px 5px rgba(0,0,0,.14)) drop-shadow(0 3px 7px rgba(0,0,0,.12))
}

.hy-elevation-9[data-v-2c5e0195] {
    filter: drop-shadow(0 5px 3px rgba(0,0,0,.2)) drop-shadow(0 9px 6px rgba(0,0,0,.14)) drop-shadow(0 3px 8px rgba(0,0,0,.12))
}

.hy-elevation-10[data-v-2c5e0195] {
    filter: drop-shadow(0 6px 3px rgba(0,0,0,.2)) drop-shadow(0 10px 7px rgba(0,0,0,.14)) drop-shadow(0 4px 9px rgba(0,0,0,.12))
}

.hy-toolbar-element[data-v-2c5e0195] {
    border: none;
    padding: 8px 12px
}

.hy-toolbar-element[data-v-2c5e0195]:not(.hy-primary-btn) {
    background: transparent
}

.hy-toolbar-element:not(.hy-disabled) .svg-icon[data-v-2c5e0195] {
    opacity: .8
}

.hy-toolbar-element.hy-button[data-v-2c5e0195],.hy-toolbar-element.hy-radio-button[data-v-2c5e0195],.hy-toolbar-element.hy-checkbox-button[data-v-2c5e0195] {
    padding-left: 8px;
    padding-right: 8px;
    transition: color .1s,background-color .1s
}

.hy-toolbar-element.hy-button:not(.hy-disabled).hy-selected[data-v-2c5e0195],.hy-toolbar-element.hy-button:not(.hy-disabled).hy-primary-btn[data-v-2c5e0195],.hy-toolbar-element.hy-radio-button:not(.hy-disabled).hy-selected[data-v-2c5e0195],.hy-toolbar-element.hy-radio-button:not(.hy-disabled).hy-primary-btn[data-v-2c5e0195],.hy-toolbar-element.hy-checkbox-button:not(.hy-disabled).hy-selected[data-v-2c5e0195],.hy-toolbar-element.hy-checkbox-button:not(.hy-disabled).hy-primary-btn[data-v-2c5e0195] {
    color: #fff;
    background: var(--accent-color);
    border-color: rgb(var(--accent-color-comp)/1)
}

.dark-mode .hy-toolbar-element.hy-button[data-v-2c5e0195]:not(.hy-selected):not(.hy-primary-btn),.dark-mode .hy-toolbar-element.hy-radio-button[data-v-2c5e0195]:not(.hy-selected):not(.hy-primary-btn),.dark-mode .hy-toolbar-element.hy-checkbox-button[data-v-2c5e0195]:not(.hy-selected):not(.hy-primary-btn) {
    background: transparent
}

.dark-mode .hy-toolbar-element.hy-button.hy-selected[data-v-2c5e0195]:not(.hy-disabled),.dark-mode .hy-toolbar-element.hy-radio-button.hy-selected[data-v-2c5e0195]:not(.hy-disabled),.dark-mode .hy-toolbar-element.hy-checkbox-button.hy-selected[data-v-2c5e0195]:not(.hy-disabled) {
    color: #fff;
    background: var(--accent-color)
}

.header[data-v-2c5e0195] {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 16px;
    font-size: 16px;
    padding: 16px 16px 16px 8px;
    background: #f0f0f0
}

.dark-mode .header[data-v-2c5e0195] {
    background: #2a2a2a
}

.arrow[data-v-2c5e0195] {
    transition: transform .1s
}

.content[data-v-2c5e0195] {
    font-size: 14px;
    text-align: left;
    line-height: 1.4em;
    overflow: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding: 8px 16px
}

.content[data-v-2c5e0195] p {
    margin-bottom: .8em
}

.list-container[data-v-408e1307] {
    border-right: 1px solid #e0e0e0;
    overflow: hidden;
    min-width: 140px
}

.dark-mode .list-container[data-v-408e1307] {
    border-color: #484848
}

.nav-item[data-v-408e1307] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.nav-item svg[data-v-408e1307] {
    flex: 0 0 auto
}

.nav-item span[data-v-408e1307] {
    overflow: hidden;
    text-overflow: ellipsis
}

[data-v-408e1307] .hy-list-item {
    padding: 16px
}

.content[data-v-408e1307] {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 16px
}

.content-container[data-v-1db8eb9f] {
    margin: 48px;
    display: flex
}

.logo-container[data-v-1db8eb9f] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 48px
}

.text-container[data-v-1db8eb9f] {
    display: flex;
    flex-direction: column;
    text-align: left
}

.text-container[data-v-1db8eb9f] :link,.text-container[data-v-1db8eb9f] :visited,.text-container[data-v-1db8eb9f] :link:active,.text-container[data-v-1db8eb9f] :visited:active {
    color: currentColor
}

.text-container[data-v-1db8eb9f] {
    line-height: 1.5
}

@media(max-width: 580px) {
    .content-container[data-v-1db8eb9f] {
        flex-direction:column
    }

    .logo-container[data-v-1db8eb9f] {
        margin-right: 0;
        margin-bottom: 32px
    }

    .text-container[data-v-1db8eb9f] {
        text-align: center
    }
}

.item-button {
    border: none;
    background: none;
    margin: 4px 16px;
    cursor: pointer;
    color: #222
}

.dark-mode .item-button {
    color: silver
}

.licence-content {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    gap: 8px
}

@media(max-device-width: 480px) {
    .hy-dialog.license-dialog {
        width:90%;
        height: 90%;
        max-height: 90vh
    }
}

.container[data-v-b600bd09] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    flex: 1 1 auto
}

.size-container[data-v-b600bd09] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    border: none;
    margin: 0;
    padding: 0
}

.size-grid[data-v-b600bd09] {
    display: grid;
    grid-template-columns: 80px 32px 80px 1fr;
    gap: 12px 0;
    align-items: center
}

.create-button-container[data-v-b600bd09] {
    display: flex;
    justify-content: right;
    grid-row: 2;
    grid-column: 4
}

.compact .create-button-container[data-v-b600bd09] {
    justify-content: center;
    grid-row: 3;
    grid-column: 1/4;
    margin-top: 16px
}

.create-button-container>button[data-v-b600bd09] {
    min-width: 120px
}

.list-container[data-v-b600bd09] {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
    border: none;
    margin: 0;
    padding: 0
}

.list-header[data-v-b600bd09] {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding-left: 8px
}

.list-title[data-v-b600bd09] {
    text-align: left
}

.list-scrollview[data-v-b600bd09] {
    flex: 1 0 20px;
    background: #fff;
    border: 1px solid #b8b8b8;
    border-radius: 4px;
    overflow: hidden
}

.dark-mode .list-scrollview[data-v-b600bd09] {
    background: #222;
    border-color: #686868
}

.list-scrollview[data-v-b600bd09]:has(:focus-visible) {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgb(var(--accent-color-comp)/.3)
}

.sizes-list[data-v-b600bd09] {
    list-style-type: none;
    padding: 0;
    margin: 0
}

.list-item[data-v-b600bd09] {
    margin: 0;
    border-bottom: 1px solid #f0f0f0
}

.list-item[data-v-b600bd09]:last-child {
    border-bottom: none
}

.list-item.active[data-v-b600bd09] {
    background: #2092fc33
}

.list-item[data-v-b600bd09]:hover:not(.active) {
    background: #f0f0f0
}

.dark-mode .list-item[data-v-b600bd09] {
    border-bottom-color: #444
}

.dark-mode .list-item[data-v-b600bd09]:hover:not(.active) {
    background: #2a2a2a
}

.size-item[data-v-b600bd09] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: 36px;
    padding: 0 12px;
    cursor: pointer
}

.new-document-panel[data-v-8720db43] {
    width: 420px;
    height: 340px;
    padding: 32px
}

.new-document-panel.compact[data-v-8720db43] {
    width: 200px;
    height: 120px
}

.content-container[data-v-8720db43] {
    padding: 24px 48px
}

.content-container[data-v-8c8550e2] {
    margin: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 240px
}

.color-preview[data-v-5e8c56d6] {
    height: 32px;
    margin: 20px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,.1)
}

.dark-mode .color-preview[data-v-5e8c56d6] {
    border: 1px solid rgba(255,255,255,.1)
}

.color-picker-container[data-v-5e8c56d6] {
    background: inherit;
    padding: 12px 16px 32px
}

.content[data-v-5e8c56d6] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: inherit
}

.hy-menu-item {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 8px;
    height: 32px;
    border-radius: 4px;
    margin: 0 8px;
    color: #222;
    background: #fff;
    transition: background-color .1s
}

.hy-menu-item.hy-disabled {
    color: silver
}

.hy-menu-item.hy-disabled .hy-menu-item-shortcut {
    opacity: .4
}

.hy-menu-item.hy-selected {
    background: rgb(var(--accent-color-comp)/.2);
    transition: background-color 0ms
}

.hy-menu-item.hy-selected:active {
    background: rgb(var(--accent-color-comp)/.3)
}

.hy-menu-item .hy-menu-item-icon {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    pointer-events: none;
    opacity: .7
}

.hy-menu-item .hy-menu-item-icon svg {
    width: 100%;
    height: 100%
}

.hy-menu-item .hy-menu-item-label {
    text-align: left;
    font-size: 14px;
    flex: 0 1 auto
}

.hy-menu-item .hy-menu-item-arrow {
    display: flex;
    align-items: center;
    padding: 2px 0;
    margin-left: auto
}

.hy-menu-item .hy-menu-item-shortcut {
    color: #222;
    background: #00000014;
    padding: 4px 8px;
    flex: 0 0 auto;
    font-size: 12px;
    border-radius: 32px;
    margin-left: auto;
    font-weight: 400;
    opacity: .8
}

.hy-menu-item .hy-menu-item-mnemonic {
    text-decoration: underline;
    text-decoration-color: currentColor;
    transition: text-decoration .3s
}

.dark-mode .hy-menu-item {
    color: silver;
    background: #383838
}

.dark-mode .hy-menu-item.hy-disabled {
    color: #5c5c5ccc
}

.dark-mode .hy-menu-item.hy-selected {
    background: #4a4a4a
}

.dark-mode .hy-menu-item.hy-selected:active {
    background: #575757
}

.dark-mode .hy-menu-item .hy-menu-item-shortcut {
    color: silver;
    background: #ffffff1a
}

.hy-menu-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    user-select: none;
    padding: 8px 0;
    cursor: var(--cursor-default, default);
    min-width: 280px
}

.hy-menu-separator {
    border-top: 1px solid #e0e0e0;
    margin: 10px 0 8px
}

.dark-mode .hy-menu-separator {
    border-color: #484848
}

*,*:before,*:after {
    box-sizing: border-box
}

body,h1,h2,h3,h4,p,figure,blockquote,dl,dd {
    margin: 0
}

ul[role=list],ol[role=list] {
    list-style: none
}

html {
    height: 100vh;
    height: 100dvh
}

html:focus-within {
    scroll-behavior: smooth
}

body {
    height: 100%;
    width: 100%
}

a:not([class]) {
    text-decoration-skip-ink: auto
}

img,picture {
    max-width: 100%;
    display: block
}

input,button,textarea,select {
    font: inherit
}

:root {
    --accent-color: #2092FC;
    --accent-color-comp: 32, 146, 252;
    cursor: var(--cursor-default, default)
}

body {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-align: center;
    transition: color .1s,background-color .1s;
    font-family: Inter,sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #222;
    background: #fff
}

body.dark-mode {
    color: silver;
    background: #2a2a2a
}

* {
    user-select: none;
    outline: none
}

.hy-elevation-1 {
    filter: drop-shadow(0 1px 1.5px rgba(0,0,0,.2)) drop-shadow(0 1px .5px rgba(0,0,0,.14)) drop-shadow(0 2px .5px rgba(0,0,0,.12))
}

.hy-elevation-2 {
    filter: drop-shadow(0 1px 2.5px rgba(0,0,0,.2)) drop-shadow(0 2px 1px rgba(0,0,0,.14)) drop-shadow(0 3px .5px rgba(0,0,0,.12))
}

.hy-elevation-3 {
    filter: drop-shadow(0 1px 4px rgba(0,0,0,.2)) drop-shadow(0 3px 2px rgba(0,0,0,.14)) drop-shadow(0 3px 1.5px rgba(0,0,0,.12))
}

.hy-elevation-4 {
    filter: drop-shadow(0 2px 2px rgba(0,0,0,.2)) drop-shadow(0 4px 2.5px rgba(0,0,0,.14)) drop-shadow(0 1px 5px rgba(0,0,0,.12))
}

.hy-elevation-5 {
    filter: drop-shadow(0 3px 2.5px rgba(0,0,0,.2)) drop-shadow(0 5px 4px rgba(0,0,0,.07)) drop-shadow(0 1px 7px rgba(0,0,0,.06))
}

.hy-elevation-6 {
    filter: drop-shadow(0 3px 2.5px rgba(0,0,0,.2)) drop-shadow(0 6px 5px rgba(0,0,0,.14)) drop-shadow(0 1px 9px rgba(0,0,0,.12))
}

.hy-elevation-7 {
    filter: drop-shadow(0 4px 2.5px rgba(0,0,0,.2)) drop-shadow(0 7px 5px rgba(0,0,0,.14)) drop-shadow(0 2px 8px rgba(0,0,0,.12))
}

.hy-elevation-8 {
    filter: drop-shadow(0 5px 2.5px rgba(0,0,0,.2)) drop-shadow(0 8px 5px rgba(0,0,0,.14)) drop-shadow(0 3px 7px rgba(0,0,0,.12))
}

.hy-elevation-9 {
    filter: drop-shadow(0 5px 3px rgba(0,0,0,.2)) drop-shadow(0 9px 6px rgba(0,0,0,.14)) drop-shadow(0 3px 8px rgba(0,0,0,.12))
}

.hy-elevation-10 {
    filter: drop-shadow(0 6px 3px rgba(0,0,0,.2)) drop-shadow(0 10px 7px rgba(0,0,0,.14)) drop-shadow(0 4px 9px rgba(0,0,0,.12))
}

.hy-toolbar-element {
    border: none;
    padding: 8px 12px
}

.hy-toolbar-element:not(.hy-primary-btn) {
    background: transparent
}

.hy-toolbar-element:not(.hy-disabled) .svg-icon {
    opacity: .8
}

.hy-toolbar-element.hy-button,.hy-toolbar-element.hy-radio-button,.hy-toolbar-element.hy-checkbox-button {
    padding-left: 8px;
    padding-right: 8px;
    transition: color .1s,background-color .1s
}

.hy-toolbar-element.hy-button:not(.hy-disabled).hy-selected,.hy-toolbar-element.hy-button:not(.hy-disabled).hy-primary-btn,.hy-toolbar-element.hy-radio-button:not(.hy-disabled).hy-selected,.hy-toolbar-element.hy-radio-button:not(.hy-disabled).hy-primary-btn,.hy-toolbar-element.hy-checkbox-button:not(.hy-disabled).hy-selected,.hy-toolbar-element.hy-checkbox-button:not(.hy-disabled).hy-primary-btn {
    color: #fff;
    background: var(--accent-color);
    border-color: rgb(var(--accent-color-comp)/1)
}

.dark-mode .hy-toolbar-element.hy-button:not(.hy-selected):not(.hy-primary-btn),.dark-mode .hy-toolbar-element.hy-radio-button:not(.hy-selected):not(.hy-primary-btn),.dark-mode .hy-toolbar-element.hy-checkbox-button:not(.hy-selected):not(.hy-primary-btn) {
    background: transparent
}

.dark-mode .hy-toolbar-element.hy-button.hy-selected:not(.hy-disabled),.dark-mode .hy-toolbar-element.hy-radio-button.hy-selected:not(.hy-disabled),.dark-mode .hy-toolbar-element.hy-checkbox-button.hy-selected:not(.hy-disabled) {
    color: #fff;
    background: var(--accent-color)
}

body.global-cursor * {
    cursor: inherit!important
}

.editor {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: auto 1fr;
    min-width: 100px;
    min-height: 100px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #e8e8e8
}

.dark-mode .editor {
    background: #2a2a2a;
    border-color: #404040
}

.svg-container {
    position: relative;
    width: 2400px;
    height: 2400px;
    overflow: hidden;
    box-sizing: content-box;
    background: #f0f0f0
}

.svg-container>svg {
    display: block;
    position: absolute;
    overflow: visible
}

.svg-container>svg text,.svg-container>svg tspan {
    font-kerning: normal;
    letter-spacing: 0;
    word-spacing: 0
}

.svg-container>svg:nth-of-type(1)>* {
    pointer-events: none
}

.svg-container .hyvector-text-selection {
    fill: #81bcff;
    fill-opacity: .7
}

.dark-mode .svg-container {
    background: #1a1a1a
}

.outside-mask-path {
    pointer-events: none;
    fill: #f0f0f0;
    fill-opacity: .5
}

.dark-mode .outside-mask-path {
    fill: #1a1a1a
}

.document-background {
    width: 1024px;
    height: 1024px;
    position: absolute;
    box-shadow: 0 1px 8px #0003,0 3px 4px #00000024,0 3px 3px -2px #0000001f;
    background: #fff
}

.__selGroup {
    --unitradius: 1px;
    --pointradius: 5px;
    --pointradiussmall: 3px;
    --overlay-color: #0087C6
}

.__selGroup .curve-point {
    fill: #3af069;
    stroke: #088e2b;
    stroke-width: 1.5px;
    vector-effect: non-scaling-stroke;
    r: var(--pointradiussmall, "3px")
}

.__selGroup .node-points circle,.__selGroup .sel-node-points>circle,.__selGroup .control-points>circle {
    fill: #fff;
    stroke: #0080bc;
    stroke-width: 1.5px;
    vector-effect: non-scaling-stroke
}

.__selGroup .node-points circle,.__selGroup .sel-node-points>circle {
    transition: r .1s;
    r: var(--pointradius, "5px")
}

.__selGroup .node-points circle.hover:not(.primary),.__selGroup .sel-node-points>circle.hover:not(.primary) {
    r: calc(var(--pointradius, "5px") * 1.25)
}

.__selGroup .node-points circle.primary,.__selGroup .sel-node-points>circle.primary {
    r: calc(var(--pointradius, "5px") * 1.125)
}

.__selGroup .node-points circle.outline {
    stroke: #ffffff80;
    stroke-width: 3;
    fill: none
}

.__selGroup .control-points>circle {
    transition: r .1s;
    r: var(--pointradiussmall, "3px")
}

.__selGroup .control-points>circle.hover:not(.primary) {
    r: calc(var(--pointradiussmall, "3px") * 1.5)
}

.__selGroup .control-points>circle.primary {
    r: calc(var(--pointradiussmall, "3px") * 1.25)
}

.__selGroup .sel-node-points>circle,.__selGroup .control-points>circle {
    fill: #6ab6e2;
    stroke: #016695
}

.__selGroup .sel-node-points>circle.primary,.__selGroup .control-points>circle.primary {
    filter: brightness(.8)
}

.__selGroup .handle-lines>polyline {
    fill: none;
    stroke: #307290;
    stroke-width: 1;
    vector-effect: non-scaling-stroke
}

.__selGroup .path-point {
    r: var(--pointradiussmall, "2px");
    vector-effect: non-scaling-stroke;
    fill: #6ab6e2;
    stroke: #016695
}

.__selGroup circle.start-end-node {
    fill: url(#startEndNodeGradient);
    stroke: url(#startEndNodeBorderGradient);
    transform-box: fill-box;
    transform-origin: center;
    transform: rotate(45deg)
}

.__selGroup circle.start-node {
    fill: #d0fbcb;
    stroke: #48963f
}

.__selGroup circle.end-node {
    fill: #ffd3d3;
    stroke: #ac3d3d
}

.__selGroup .sel-node-points circle.start-node {
    fill: #84d97b
}

.__selGroup .sel-node-points circle.end-node {
    fill: #f38282
}

.__selGroup circle.start-end-node.hover {
    fill: url(#startEndNodeGradient)
}

.__selGroup .sel-node-points circle.start-end-node {
    fill: url(#startEndNodeSelGradient)
}

.__selGroup .selector-polygon {
    stroke: #009ffa;
    stroke-width: 1;
    vector-effect: non-scaling-stroke;
    fill: #ade1fa;
    fill-opacity: .3;
    fill-rule: nonzero
}

.__selGroup .selection-path {
    fill: none;
    stroke: var(--overlay-color);
    stroke-width: 1;
    vector-effect: non-scaling-stroke
}

.__selGroup .selection-path.selection-path-highlight {
    fill: url(#highlightFillPattern)
}

.__selGroup .selection-path.add-mode-overlay {
    fill: url(#addFillPattern);
    stroke: var(--overlay-color)
}

.__selGroup .selection-path.remove-mode-overlay {
    fill: url(#removeFillPattern);
    stroke: red
}

.__selGroup .bounds-rect {
    fill: none;
    stroke: #169cdb;
    opacity: .5;
    stroke-width: 1;
    vector-effect: non-scaling-stroke
}

.__selGroup .bounds-rect.outline {
    stroke: #fff3;
    stroke-width: 3
}

.__selGroup .selection-rect {
    fill: none;
    stroke: #169cdb;
    stroke-width: 1;
    vector-effect: non-scaling-stroke
}

.__selGroup .selection-rect.outline {
    stroke: #fff6;
    stroke-width: 3
}

.__selGroup .selection-handle {
    fill: #fff;
    stroke: #169cdb;
    stroke-width: 1px;
    vector-effect: non-scaling-stroke;
    r: var(--pointradius, "5px");
    font-size: calc((var(--pointradius, "5px")) * 1.8)
}

.__selGroup .selection-handle.outline {
    stroke: #ffffff80;
    stroke-width: 3;
    fill: none
}

.__selGroup .selection-handle.hover {
    fill: #a1dcf7
}

.__selGroup .guide-line-center {
    vector-effect: non-scaling-stroke;
    r: var(--pointradiussmall, "3px")
}

.__selGroup .gradient-stop>circle {
    transition: r .05s;
    vector-effect: non-scaling-stroke;
    r: calc((var(--unitradius, "1px")) * 7)
}

.__selGroup .gradient-stop>circle:nth-child(1) {
    fill: url(#checkeredPattern);
    stroke: #0006;
    stroke-width: 4px
}

.__selGroup .gradient-stop>circle:nth-child(2) {
    stroke: #fff;
    stroke-width: 2px;
    fill: currentColor;
    color: inherit
}

.__selGroup .gradient-stop.selected>circle {
    r: calc((var(--unitradius, "1px")) * 9)
}

.__selGroup .gradient-line {
    fill: none;
    stroke: #fff;
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke
}

.__selGroup .gradient-line.outline {
    stroke: #0006;
    stroke-width: 3
}

.__selGroup .gradient-guide-line {
    fill: none;
    stroke: #ffffffb3;
    stroke-width: 1.5;
    stroke-dasharray: 4 6;
    vector-effect: non-scaling-stroke;
    transition: opacity .12s ease-out
}

.__selGroup .gradient-guide-line.outline {
    stroke: #00000026;
    stroke-dashoffset: 5
}

.ruler-corner {
    width: 18px;
    height: 18px;
    overflow: hidden;
    background: #f0f0f0
}

.dark-mode .ruler-corner {
    background: #222
}

.viewport {
    position: relative;
    background: gray;
    outline: none;
    min-width: 100px;
    min-height: 100px
}

.content[data-v-ca538c4d] {
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.row-group[data-v-ca538c4d] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.row-group[data-v-ca538c4d] .hy-field .hy-field-content {
    justify-content: stretch
}

.row-group[data-v-ca538c4d] .hy-field .hy-field-content>.hy-group>.hy-radio-button {
    flex: 1 1 0
}

.row-group[data-v-ca538c4d] .hy-field {
    flex: 1 1 auto;
    width: 100%
}

.row-group[data-v-ca538c4d]:not(:last-child) {
    margin-bottom: 16px
}

.hy-slider {
    display: flex;
    align-items: center;
    width: 100%;
    height: 20px
}

.hy-slider .hy-slider-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: #e8e8e8;
    border-color: #e8e8e8;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px
}

.hy-slider .hy-slider-track-fill {
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 0;
    background: #b8b8b8;
    border-color: #b8b8b8;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px
}

.hy-slider .hy-slider-knob {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #858585;
    border-radius: 50%;
    top: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: -8px
}

.hy-slider.hy-disabled .hy-slider-track,.hy-slider.hy-disabled .hy-slider-track-fill,.hy-slider.hy-disabled .hy-slider-knob {
    background: #fff;
    border-color: #e0e0e0
}

.hy-slider:focus .hy-slider-track-fill {
    background: var(--accent-color);
    border-color: var(--accent-color)
}

.hy-slider:focus .hy-slider-knob {
    border: 2px solid var(--accent-color)
}

.hy-slider input {
    display: none;
    -webkit-appearance: none
}

.hy-slider::-webkit-slider-thumb {
    -webkit-appearance: none
}

.dark-mode .hy-slider .hy-slider-track {
    background: #2a2a2a;
    border-color: #686868
}

.dark-mode .hy-slider .hy-slider-track-fill {
    background: #686868;
    border-color: #686868
}

.dark-mode .hy-slider .hy-slider-knob {
    background: #444;
    border-color: silver
}

.dark-mode .hy-slider.hy-disabled .hy-slider-track,.dark-mode .hy-slider.hy-disabled .hy-slider-track-fill,.dark-mode .hy-slider.hy-disabled .hy-slider-knob {
    background: #2a2a2a;
    border-color: #484848
}

.color-var-picker[data-v-356f9471] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px
}

.colors-dropdown-item[data-v-356f9471] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 8px
}

.color-button[data-v-160709a9] {
    padding: 0;
    width: 32px;
    height: 32px;
    overflow: visible;
    border-radius: 50%
}

.color-circle[data-v-160709a9] {
    width: 100%;
    height: 100%;
    border-radius: 50%
}

.global-color-circle[data-v-160709a9] {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    filter: drop-shadow(0 0 1px rgba(0,0,0,.7))
}

.dark-mode .global-color-circle[data-v-160709a9] {
    stroke: #2a2a2a
}

.tabs[data-v-160709a9] {
    display: flex;
    justify-content: stretch;
    overflow: hidden
}

.tab-button[data-v-160709a9] {
    flex: 1 1 0;
    border: none;
    border-top: 4px solid transparent;
    border-bottom: 1px solid rgba(184,184,184,.5);
    vertical-align: middle;
    border-radius: 0;
    height: 42px;
    padding: 0;
    color: #555
}

.tab-button.hy-selected[data-v-160709a9] {
    color: var(--accent-color);
    background: transparent;
    border-top-color: #2092fc;
    border-bottom-color: transparent;
    z-index: 1;
    box-shadow: 0 -1px 5px #0003
}

.tab-button.hy-selected[data-v-160709a9]:hover {
    border-top-color: #2092fc;
    border-bottom-color: transparent;
    color: #2092fc
}

.tab-button[data-v-160709a9]:hover {
    border-top-color: transparent;
    border-bottom-color: #b8b8b880;
    color: #2092fc;
    box-shadow: none
}

.dark-mode .tab-button[data-v-160709a9] {
    color: #aaa;
    background: #2a2a2a;
    border--bottom-color: rgba(104,104,104,.5)
}

.dark-mode .tab-button.hy-selected[data-v-160709a9] {
    color: var(--accent-color);
    background: #444;
    border-top-color: #2092fc;
    border-bottom-color: transparent
}

.icon-container[data-v-160709a9] {
    border-radius: 4px;
    overflow: hidden;
    width: 22px;
    height: 22px
}

.icon-container>svg[data-v-160709a9] {
    width: 100%;
    height: 100%
}

.tab-icon[data-v-160709a9],.icon-none[data-v-160709a9],.icon-pattern[data-v-160709a9],.icon-radgrad[data-v-160709a9],.icon-lingrad[data-v-160709a9],.icon-color[data-v-160709a9] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ffffff
}

.icon-color[data-v-160709a9] {
    background: #fff
}

.icon-lingrad[data-v-160709a9] {
    background: linear-gradient(-45deg,#fff 30%,#ffffffb3 30% 50%,#fff6 50% 70%,#ffffff1a 70%)
}

.icon-radgrad[data-v-160709a9] {
    background: radial-gradient(circle at center,#ffffff1a 20%,#fff6 20% 40%,#ffffffb3 40% 60%,#fff 60%)
}

.icon-pattern[data-v-160709a9] {
    background-size: 6px 6px;
    background-position: 50% 50%;
    background-image: linear-gradient(0,transparent 2px,rgba(255,255,255,.8) 2px,rgba(255,255,255,.8) 4px,transparent 4px),linear-gradient(90deg,transparent 2px,rgba(255,255,255,.8) 2px,rgba(255,255,255,.8) 4px,transparent 4px)
}

.icon-none[data-v-160709a9] {
    background-image: linear-gradient(135deg,transparent 46%,rgba(255,255,255,.5) 46%,rgba(255,255,255,.5) 54%,transparent 54%)
}

.tab-content-container[data-v-160709a9] {
    background: inherit;
    width: 320px;
    height: 348px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 0 24px
}

.tab-content[data-v-160709a9] {
    background: inherit;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch
}

.hy-scrollable[data-v-1d17a52d] {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0
}

.hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar {
    background: #f0f0f0;
    width: 8px;
    height: 8px
}

.hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px
}

.hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 4px
}

.hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px
}

.dark-mode .hy-scrollable[data-v-1d17a52d] {
    scrollbar-color: #666 #444
}

.dark-mode .hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar {
    background: #444
}

.dark-mode .hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb {
    background: #666
}

.dark-mode .hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb:hover {
    background: gray
}

.dark-mode .hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-track {
    background: #444
}

.dark-mode .hy-scrollable[data-v-1d17a52d]::-webkit-scrollbar-corner {
    background: #444
}

@media(hover: hover)and (pointer:fine) {
    .hy-notouch-scrollable[data-v-1d17a52d] {
        scrollbar-width:thin;
        scrollbar-color: #bbb #f0f0f0
    }

    .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar {
        background: #f0f0f0;
        width: 8px;
        height: 8px
    }

    .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb:hover {
        background: #888;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d] {
        scrollbar-color: #666 #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb {
        background: #666
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-thumb:hover {
        background: gray
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-track {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-1d17a52d]::-webkit-scrollbar-corner {
        background: #444
    }
}

.gradient-picker[data-v-1d17a52d] {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: inherit
}

.stops-editor-container[data-v-1d17a52d] {
    flex: 1 0 auto;
    position: relative;
    height: 72px;
    padding-top: 20px;
    background: inherit;
    border-bottom: 1px solid rgba(0,0,0,.25)
}

.dark-mode .stops-editor-container[data-v-1d17a52d] {
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.stops-editor[data-v-1d17a52d] {
    position: relative;
    height: 100%;
    margin: 0 20px;
    background: inherit;
    visibility: hidden
}

.stops-editor[data-v-1d17a52d]>* {
    visibility: visible
}

.gradient-preview[data-v-1d17a52d] {
    position: relative;
    height: 32px;
    box-sizing: border-box;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAHElEQVR42mM8wwAExiCCiQEOCDIZ/4PIs6RqAwDNHgLeFwMXyAAAAABJRU5ErkJggg==) repeat fixed;
    border-radius: 0
}

.gradient-preview>div[data-v-1d17a52d] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px #0000001a
}

.dark-mode .gradient-preview>div[data-v-1d17a52d] {
    box-shadow: inset 0 0 0 1px #ffffff1a
}

.controls[data-v-1d17a52d] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch
}

.stops-dropdown-item[data-v-1d17a52d] {
    display: flex;
    gap: 8px
}

.stops-dropdown-item[data-v-1d17a52d] *:first-child {
    width: 20px;
    text-align: center
}

.stops-dropdown-item[data-v-1d17a52d] :last-child {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid #b8b8b8
}

.dark-mode .stops-dropdown-item[data-v-1d17a52d] :last-child {
    border-color: #686868
}

.color-stop[data-v-1d17a52d] {
    position: absolute;
    top: 23px;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(0,0,0,.4);
    border-radius: 9px;
    margin-left: -9px;
    transition: width .1s,height .1s,top .1s,margin-left .1s;
    background: inherit
}

.dark-mode .color-stop[data-v-1d17a52d] {
    border: 1px solid rgba(255,255,255,.3)
}

.hover-color-stop[data-v-1d17a52d],.sel-color-stop[data-v-1d17a52d] {
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 14px;
    margin-left: -14px
}

.hover-color-stop .color-stop-overlay[data-v-1d17a52d],.sel-color-stop .color-stop-overlay[data-v-1d17a52d] {
    width: 22px;
    height: 22px;
    border-radius: 11px
}

.sel-color-stop[data-v-1d17a52d] {
    z-index: 1
}

.color-stop-overlay[data-v-1d17a52d] {
    position: relative;
    width: 12px;
    height: 12px;
    color: inherit;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAHElEQVR42mM8wwAExiCCiQEOCDIZ/4PIs6RqAwDNHgLeFwMXyAAAAABJRU5ErkJggg==) repeat fixed;
    pointer-events: none;
    overflow: hidden;
    isolation: isolate;
    border-radius: 6px;
    margin: 2px;
    transition: width .1s,height .1s
}

.color-stop-overlay[data-v-1d17a52d]:after {
    position: absolute;
    inset: 0;
    content: "";
    background: currentColor
}

.color-stops-enter-active[data-v-1d17a52d] {
    transition: transform .1s
}

.color-stops-leave-active[data-v-1d17a52d] {
    transition: transform .2s
}

.color-stops-enter-from[data-v-1d17a52d],.color-stops-leave-to[data-v-1d17a52d] {
    transform: scale(0) translate(-9px,18px)
}

.pattern-picker .controls[data-v-207216c5] {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: stretch
}

.pattern-picker .preview-container[data-v-207216c5] {
    height: 72px;
    padding: 20px;
    border-bottom: 1px solid rgba(0,0,0,.25)
}

.dark-mode .pattern-picker .preview-container[data-v-207216c5] {
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.pattern-picker .preview-container .preview[data-v-207216c5] {
    width: 100%;
    height: 32px;
    background: #fff;
    overflow: hidden;
    border: 1px solid #b8b8b8
}

.tabs[data-v-eacfc9ee] {
    display: flex;
    justify-content: stretch;
    overflow: hidden
}

.tab-button[data-v-eacfc9ee] {
    flex: 1 1 0;
    border: none;
    border-bottom: 4px solid rgba(184,184,184,.5);
    vertical-align: middle;
    border-radius: 0;
    height: 42px;
    padding: 0;
    color: #555
}

.tab-button.hy-selected[data-v-eacfc9ee] {
    color: var(--accent-color);
    background: transparent;
    border-color: transparent;
    z-index: 1;
    box-shadow: 0 -1px 5px #0003
}

.dark-mode .tab-button[data-v-eacfc9ee] {
    color: #aaa;
    background: #2a2a2a;
    border-color: #68686880
}

.dark-mode .tab-button.hy-selected[data-v-eacfc9ee] {
    color: var(--accent-color);
    background: #444;
    border-color: transparent
}

.icon-container[data-v-eacfc9ee] {
    border-radius: 4px;
    overflow: hidden;
    width: 22px;
    height: 22px
}

.icon-container>svg[data-v-eacfc9ee] {
    width: 100%;
    height: 100%
}

.tab-icon[data-v-eacfc9ee],.icon-none[data-v-eacfc9ee],.icon-pattern[data-v-eacfc9ee],.icon-radgrad[data-v-eacfc9ee],.icon-lingrad[data-v-eacfc9ee],.icon-color[data-v-eacfc9ee] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ffffff
}

.icon-color[data-v-eacfc9ee] {
    background: #fff
}

.icon-lingrad[data-v-eacfc9ee] {
    background: linear-gradient(-45deg,#fff 30%,#ffffffb3 30% 50%,#fff6 50% 70%,#ffffff1a 70%)
}

.icon-radgrad[data-v-eacfc9ee] {
    background: radial-gradient(circle at center,#ffffff1a 20%,#fff6 20% 40%,#ffffffb3 40% 60%,#fff 60%)
}

.icon-pattern[data-v-eacfc9ee] {
    background-size: 6px 6px;
    background-position: 50% 50%;
    background-image: linear-gradient(0,transparent 2px,rgba(255,255,255,.8) 2px,rgba(255,255,255,.8) 4px,transparent 4px),linear-gradient(90deg,transparent 2px,rgba(255,255,255,.8) 2px,rgba(255,255,255,.8) 4px,transparent 4px)
}

.icon-none[data-v-eacfc9ee] {
    background-image: linear-gradient(135deg,transparent 46%,rgba(255,255,255,.5) 46%,rgba(255,255,255,.5) 54%,transparent 54%)
}

.tab-content-container[data-v-eacfc9ee] {
    background: inherit;
    width: 320px;
    height: 420px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    padding: 0 0 24px
}

.tab-content[data-v-eacfc9ee] {
    background: inherit;
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch
}

.color-preview-container[data-v-eacfc9ee] {
    height: 72px;
    border-bottom: 1px solid rgba(0,0,0,.25);
    padding: 20px;
    margin-bottom: 20px
}

.dark-mode .color-preview-container[data-v-eacfc9ee] {
    border-bottom: 1px solid rgba(255,255,255,.2)
}

.color-preview[data-v-eacfc9ee] {
    position: relative;
    height: 32px;
    overflow: hidden;
    background: content-box url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAAAAACoWZBhAAAAHElEQVR42mM8wwAExiCCiQEOCDIZ/4PIs6RqAwDNHgLeFwMXyAAAAABJRU5ErkJggg==) repeat fixed
}

.color-preview[data-v-eacfc9ee]:before {
    content: "";
    position: absolute;
    inset: 0;
    background: currentColor;
    box-shadow: inset 0 0 0 1px #00000026
}

.dark-mode .color-preview[data-v-eacfc9ee]:before {
    box-shadow: inset 0 0 0 1px #ffffff1a
}

.paint-button[data-v-dba07730] {
    position: relative;
    padding: 0;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr
}

.paint-button:disabled>svg[data-v-dba07730] {
    display: none
}

.dark-mode .paint-button[data-v-dba07730] {
    background: #2a2a2a
}

.stroke-inner-rect[data-v-dba07730] {
    position: absolute;
    inset: 7px;
    background: inherit;
    border-radius: 0;
    border: inherit
}

.preview-circle[data-v-dba07730] {
    stroke: #fff;
    filter: drop-shadow(0 0 1px rgba(0,0,0,.7));
    stroke-width: 2px
}

.dark-mode .preview-circle[data-v-dba07730] {
    stroke: #2a2a2a
}

.paint-button-dialog.hy-popover-fade-enter-from,.paint-button-dialog.hy-popover-fade-leave-to {
    transform: scaleY(0)
}

.container[data-v-afd78878] {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.container .label[data-v-afd78878] {
    width: 100%;
    text-align: start;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    background: #f0f0f0
}

.dark-mode .container .label[data-v-afd78878] {
    background: #383838
}

.container .paint[data-v-afd78878] {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.container .paint .paint-field[data-v-afd78878] {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 12px;
    padding-left: 16px;
    margin: 8px 0
}

.collapsed .container .paint .paint-field[data-v-afd78878] {
    padding-left: 0
}

.disabled[data-v-4e6cb2e5] {
    color: silver
}

.dark-mode .disabled[data-v-4e6cb2e5] {
    color: #5c5c5ccc
}

.row[data-v-4e6cb2e5] {
    display: flex;
    gap: 8px
}

.row[data-v-4e6cb2e5]:not(:last-child) {
    margin-bottom: 12px
}

.field[data-v-4e6cb2e5] {
    display: flex;
    align-items: center
}

.field span[data-v-4e6cb2e5] {
    width: 28px
}

.transform-buttons[data-v-4e6cb2e5] {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 16px;
    margin-top: 16px
}

.transform-button[data-v-4e6cb2e5] {
    padding-left: 10px;
    padding-right: 10px
}

.top-container[data-v-ad53b3db] {
    min-height: 0;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #e0e0e0
}

.dark-mode .top-container[data-v-ad53b3db] {
    border-color: #484848
}

.top-container.collapsed[data-v-ad53b3db] {
    width: 48px;
    min-width: 48px;
    padding-left: 8px;
    padding-right: 8px
}

.top-container>.container[data-v-ad53b3db] {
    display: flex;
    flex-direction: column;
    align-items: stretch
}

.top-container>.container .group[data-v-ad53b3db] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    flex: 0 0 auto;
    width: 100%
}

.top-container>.container .group-header[data-v-ad53b3db] {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
    background: #f0f0f0
}

.dark-mode .top-container>.container .group-header[data-v-ad53b3db] {
    background: #383838
}

.top-container>.container .group-content[data-v-ad53b3db] {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 8px 24px 8px 16px
}

.top-container>.container.collapsed .group[data-v-ad53b3db] {
    padding: 8px 0
}

.hy-menu-bar .hy-menu-bar-item {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    outline: none;
    border-radius: 3px;
    font-size: 14px;
    border: 1px solid transparent
}

.hy-menu-bar .hy-menu-bar-item:hover {
    background: #e6e6e6
}

.hy-menu-bar .hy-menu-bar-item.hy-selected {
    border-color: var(--accent-color)
}

.hy-menu-bar .hy-menu-bar-item.hy-selected.hy-menu-bar-item-open {
    color: #fff;
    background: var(--accent-color)
}

.hy-menu-bar .hy-menu-bar-item .hy-menu-mnemonic {
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration .3s
}

.dark-mode .hy-menu-bar .hy-menu-bar-item:hover:not(.hy-selected.hy-menu-bar-item-open) {
    background: #525252
}

.hy-menu-bar.active .hy-menu-bar-item .hy-menu-mnemonic {
    text-decoration-color: currentColor
}

.hy-menu-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    outline: none;
    user-select: none
}

.zoom-editor[data-v-88c9756a] {
    display: flex;
    align-items: center
}

.dropdown-content[data-v-88c9756a] {
    padding: 8px;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    gap: 2px;
    min-width: 120px
}

.dropdown-content .zoom-input[data-v-88c9756a] {
    padding: 0 24px;
    margin: 8px 0
}

.dropdown-content .zoom-input .button[data-v-88c9756a] {
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%
}

.dropdown-content .zoom-input .input[data-v-88c9756a] {
    width: 64px;
    text-align: right
}

.dropdown-content .dropdown-separator[data-v-88c9756a] {
    width: 100%;
    border-top: 1px solid #e0e0e0;
    margin: 4px 0
}

.dark-mode .dropdown-content .dropdown-separator[data-v-88c9756a] {
    border-color: #484848
}

.menu-button[data-v-88c9756a] {
    width: 100%;
    justify-content: left;
    padding: 8px 24px;
    border: none;
    border-radius: 0;
    box-shadow: none!important;
    background: none
}

.menu-button[data-v-88c9756a]:hover:not(.hy-disabled) {
    background: rgb(var(--accent-color-comp)/.2)
}

.menu-button[data-v-88c9756a]:hover:not(.hy-disabled):active {
    background: rgb(var(--accent-color-comp)/.3)
}

.dark-mode:not(.hy-disabled) .menu-button[data-v-88c9756a] {
    color: silver;
    background: #383838
}

.dark-mode:not(.hy-disabled) .menu-button[data-v-88c9756a]:hover {
    background: #4a4a4a
}

.dark-mode:not(.hy-disabled) .menu-button[data-v-88c9756a]:hover:active {
    background: #575757
}

.top-bar[data-v-df099bde] {
    display: flex;
    align-items: center;
    justify-content: stretch;
    column-gap: 16px;
    padding: 4px 8px 6px;
    height: 48px
}

.top-bar.small-top-bar[data-v-df099bde] {
    column-gap: 0;
    padding: 0 0 0 4px
}

.dark-mode .top-bar[data-v-df099bde] {
    border-bottom-color: #484848
}

.settings-panel[data-v-df099bde] {
    flex: 1;
    display: flex;
    padding: 0 8px 0 0;
    gap: 16px
}

.small-top-bar .settings-panel[data-v-df099bde] {
    gap: 8px
}

.hy-scrollable[data-v-b87b1a3c] {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0
}

.hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar {
    background: #f0f0f0;
    width: 8px;
    height: 8px
}

.hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px
}

.hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 4px
}

.hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px
}

.dark-mode .hy-scrollable[data-v-b87b1a3c] {
    scrollbar-color: #666 #444
}

.dark-mode .hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar {
    background: #444
}

.dark-mode .hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb {
    background: #666
}

.dark-mode .hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb:hover {
    background: gray
}

.dark-mode .hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-track {
    background: #444
}

.dark-mode .hy-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-corner {
    background: #444
}

@media(hover: hover)and (pointer:fine) {
    .hy-notouch-scrollable[data-v-b87b1a3c] {
        scrollbar-width:thin;
        scrollbar-color: #bbb #f0f0f0
    }

    .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar {
        background: #f0f0f0;
        width: 8px;
        height: 8px
    }

    .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb:hover {
        background: #888;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c] {
        scrollbar-color: #666 #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb {
        background: #666
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-thumb:hover {
        background: gray
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-track {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-b87b1a3c]::-webkit-scrollbar-corner {
        background: #444
    }
}

.container[data-v-b87b1a3c] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    gap: 24px;
    padding: 24px 32px;
    height: 100%
}

.header[data-v-b87b1a3c] {
    font-size: 18px
}

.items-list[data-v-b87b1a3c] {
    flex: 1 1 0;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: stretch;
    width: 100%;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    overflow: hidden
}

.dark-mode .items-list[data-v-b87b1a3c] {
    border-color: gray
}

.items-list div[data-v-b87b1a3c] {
    border-bottom: 1px solid #d0d0d0
}

.dark-mode .items-list div[data-v-b87b1a3c] {
    border-color: gray
}

.button[data-v-b87b1a3c] {
    padding: 0 48px;
    margin: auto
}

.tree-node {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    padding: 0 16px 0 0;
    overflow: hidden
}

.tree-node:after {
    position: absolute;
    inset: 0;
    content: "";
    border: 1px solid transparent;
    border-left-style: none;
    border-right-style: none;
    pointer-events: none
}

.tree-node.tree-node-in-selection {
    background: rgb(var(--accent-color-comp)/.1)
}

.tree-node.tree-node-in-selection.tree-node-selected {
    background: rgb(var(--accent-color-comp)/.2)
}

.tree-node .thumbnail {
    width: 20px;
    height: 20px;
    margin-left: 4px;
    pointer-events: none;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,.4))
}

.dark-mode .tree-node .thumbnail {
    filter: drop-shadow(0 1px 1px rgba(255,255,255,.4))
}

.tree-node .content {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    pointer-events: none;
    margin-left: 4px
}

.tree-node.tree-node-hover:not(.tree-node-selected):not(.tree-node-in-selection) {
    background: rgb(var(--accent-color-comp)/.1);
    transition: background-color 0ms
}

.tree-node.tree-node-hover:after {
    border-color: var(--accent-color)
}

.tree-node.tree-node-hidden>.content {
    opacity: .5
}

.tree-node .label {
    flex: 1 1 auto;
    padding-left: 12px;
    text-align: left;
    white-space: nowrap;
    pointer-events: all
}

.tree-lines {
    fill: none;
    stroke: #ccc;
    width: 100%;
    height: 100%
}

.dark-mode .tree-lines {
    stroke: #525252
}

.arrow,.arrow-placeholder {
    width: 17px
}

.arrow-container {
    flex: 0 0 auto;
    height: 100%;
    margin: -1px 0;
    display: grid;
    justify-items: end;
    align-items: center
}

.arrow-container>* {
    grid-area: 1/1
}

.arrow-container .arrow {
    font-size: 0;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 5px
}

.arrow-container .arrow>svg {
    display: block;
    transition: transform .1s
}

.open .arrow-container .arrow>svg {
    transform: rotate(90deg)
}

.dark-mode .arrow-container .arrow {
    color: #ddd;
    background: #2a2a2a;
    border-color: #666
}

.actions-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: none;
    color: #222;
    opacity: .7;
    width: 24px;
    height: 24px;
    padding: 0;
    transition: background-color .1s
}

.tree-node-hover .actions-menu-button:hover {
    background: rgb(var(--accent-color-comp)/.3)
}

.dark-mode .actions-menu-button {
    color: silver
}

.container[data-v-6fce9e46] {
    overflow: hidden;
    position: relative;
    touch-action: none
}

.container[data-v-6fce9e46] *:not(.container) {
    touch-action: none
}

.positioner[data-v-6fce9e46] {
    position: relative;
    will-change: transform;
    background: inherit
}

.insert-indicator[data-v-6fce9e46] {
    position: absolute;
    right: 0;
    height: 8px;
    margin-top: -6px;
    margin-left: -12px;
    pointer-events: none;
    border-bottom: 2px solid var(--accent-color);
    visibility: hidden
}

.insert-indicator[data-v-6fce9e46]:before {
    position: absolute;
    left: 0;
    content: "";
    border-left: 2px solid var(--accent-color);
    width: 2px
}

.end-insert[data-v-6fce9e46]:before {
    bottom: 0;
    height: 6px
}

.middle-insert[data-v-6fce9e46]:before {
    bottom: -6px;
    height: 10px
}

.no-objects-message[data-v-6fce9e46] {
    position: absolute;
    top: 32px;
    width: 100%;
    text-align: center;
    opacity: .5
}

.tree-sidebar[data-v-63547a31] {
    width: 240px;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    touch-action: none
}

.header[data-v-63547a31] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    padding: 8px 4px 8px 16px;
    background: #f0f0f0
}

.dark-mode .header[data-v-63547a31] {
    background: #383838
}

.close-button[data-v-63547a31] {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent!important;
    border: none;
    color: inherit;
    opacity: .6;
    cursor: pointer;
    padding: 7px;
    line-height: 1;
    transition: opacity .3s ease
}

.dark-mode .close-button[data-v-63547a31] {
    background: #5a5a5a
}

.close-button[data-v-63547a31]:hover {
    opacity: .8
}

.tree-container[data-v-63547a31] {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    flex: 1 1 0;
    border-right: 1px solid;
    border-color: #c8c8c8
}

.dark-mode .tree-container[data-v-63547a31] {
    border-color: #444
}

.container[data-v-c2f73969] {
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    justify-items: start;
    align-items: center;
    margin: 32px 24px 32px 40px
}

.group-header[data-v-c2f73969] {
    grid-column: 1/2;
    text-align: left
}

.option[data-v-c2f73969] {
    grid-column: 2
}

.free-angle[data-v-c2f73969] {
    display: flex;
    flex-direction: row;
    align-items: center
}

.fixed-angles[data-v-c2f73969] {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px
}

.container[data-v-d238f54a],.container[data-v-baa11207] {
    display: grid;
    grid-template-columns: auto auto;
    gap: 32px;
    justify-items: start;
    align-items: center;
    margin: 32px 40px
}

.container[data-v-bb9cd651] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin: 8px
}

.group-header[data-v-bb9cd651] {
    grid-column: 1/2;
    text-align: left
}

.option[data-v-bb9cd651] {
    grid-column: 2
}

.free-angle[data-v-bb9cd651] {
    display: flex;
    flex-direction: row;
    align-items: center
}

.fixed-angles[data-v-bb9cd651] {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px
}

.container[data-v-643c7b47] {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    margin: 16px 32px
}

.property[data-v-643c7b47] {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px
}

.property-input[data-v-643c7b47] {
    display: grid;
    grid-template-columns: 120px 42px;
    gap: 16px;
    align-items: center
}

.container[data-v-d9fe9aa5] {
    overflow: hidden;
    position: relative;
    pointer-events: none
}

.positioner[data-v-d9fe9aa5] {
    position: relative;
    will-change: transform
}

.hy-scrollable[data-v-64462e7a] {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0
}

.hy-scrollable[data-v-64462e7a]::-webkit-scrollbar {
    background: #f0f0f0;
    width: 8px;
    height: 8px
}

.hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px
}

.hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 4px
}

.hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px
}

.dark-mode .hy-scrollable[data-v-64462e7a] {
    scrollbar-color: #666 #444
}

.dark-mode .hy-scrollable[data-v-64462e7a]::-webkit-scrollbar {
    background: #444
}

.dark-mode .hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb {
    background: #666
}

.dark-mode .hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb:hover {
    background: gray
}

.dark-mode .hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-track {
    background: #444
}

.dark-mode .hy-scrollable[data-v-64462e7a]::-webkit-scrollbar-corner {
    background: #444
}

@media(hover: hover)and (pointer:fine) {
    .hy-notouch-scrollable[data-v-64462e7a] {
        scrollbar-width:thin;
        scrollbar-color: #bbb #f0f0f0
    }

    .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar {
        background: #f0f0f0;
        width: 8px;
        height: 8px
    }

    .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb:hover {
        background: #888;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a] {
        scrollbar-color: #666 #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb {
        background: #666
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-thumb:hover {
        background: gray
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-track {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-64462e7a]::-webkit-scrollbar-corner {
        background: #444
    }
}

.font-item[data-v-64462e7a] {
    position: relative;
    font-size: 14px;
    height: 38px;
    display: flex;
    align-items: center;
    padding: 5px 12px 0;
    margin: 0 4px 0 6px;
    border-radius: 3px;
    transition: background .1s ease;
    background: transparent;
    pointer-events: auto
}

.font-item>div[data-v-64462e7a] {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 4px 6px;
    background: #fffc;
    font-size: 10px;
    opacity: 0;
    transition: opacity .1s
}

.font-item svg>path[data-v-64462e7a] {
    transition: transform .15s
}

.font-item[data-v-64462e7a]:hover {
    background: #f0f0f0
}

.font-item:hover>div[data-v-64462e7a] {
    transition-delay: .5s;
    opacity: 1
}

.font-item:hover svg>path[data-v-64462e7a] {
    transform: scale(1.2)
}

.font-item.font-item-selected[data-v-64462e7a] {
    background: rgb(var(--accent-color-comp)/.3)
}

.dark-mode .font-item>div[data-v-64462e7a] {
    background: #38383899
}

.dark-mode .font-item[data-v-64462e7a]:hover {
    background: #444
}

.dark-mode .font-item.font-item-selected[data-v-64462e7a] {
    background: rgb(var(--accent-color-comp)/.3)
}

.scroller[data-v-64462e7a] {
    margin-right: 4px;
    overscroll-behavior: contain
}

.loading-indicator[data-v-64462e7a] {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px
}

.loading-indicator div[data-v-64462e7a] {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    margin: 8px;
    border-width: 3px;
    border-style: solid;
    border-color: #888 transparent transparent transparent;
    border-radius: 50%;
    animation: loading-indicator-64462e7a 1.2s cubic-bezier(.5,0,.5,1) infinite
}

.loading-indicator div[data-v-64462e7a]:nth-child(1) {
    animation-delay: -.45s
}

.loading-indicator div[data-v-64462e7a]:nth-child(2) {
    animation-delay: -.3s
}

.loading-indicator div[data-v-64462e7a]:nth-child(3) {
    animation-delay: -.15s
}

@keyframes loading-indicator-64462e7a {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

.vue-recycle-scroller__item-wrapper {
    pointer-events: none
}

.shape-options-container {
    display: grid;
    align-items: start
}

.shape-options {
    grid-area: 1/1;
    display: flex;
    gap: 8px
}

.hidden {
    visibility: hidden;
    pointer-events: none
}

.drop-target[data-v-b060c2f3] {
    width: 600px;
    height: 400px;
    max-width: 80vw;
    max-height: calc(80vh - 80px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px dashed rgba(184,184,184,.7);
    border-radius: 16px;
    margin: 16px 16px 8px;
    transition: border-color .25s
}

.drop-target div[data-v-b060c2f3] {
    margin-bottom: 20px;
    font-size: 18px
}

.drop-target-active[data-v-b060c2f3] {
    border-color: var(--accent-color)
}

.hy-scrollable[data-v-a3d67d1c] {
    scrollbar-width: thin;
    scrollbar-color: #bbb #f0f0f0
}

.hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar {
    background: #f0f0f0;
    width: 8px;
    height: 8px
}

.hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px
}

.hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb:hover {
    background: #888;
    border-radius: 4px
}

.hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px
}

.dark-mode .hy-scrollable[data-v-a3d67d1c] {
    scrollbar-color: #666 #444
}

.dark-mode .hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar {
    background: #444
}

.dark-mode .hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb {
    background: #666
}

.dark-mode .hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb:hover {
    background: gray
}

.dark-mode .hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-track {
    background: #444
}

.dark-mode .hy-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-corner {
    background: #444
}

@media(hover: hover)and (pointer:fine) {
    .hy-notouch-scrollable[data-v-a3d67d1c] {
        scrollbar-width:thin;
        scrollbar-color: #bbb #f0f0f0
    }

    .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar {
        background: #f0f0f0;
        width: 8px;
        height: 8px
    }

    .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb {
        background: #bbb;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb:hover {
        background: #888;
        border-radius: 4px
    }

    .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 4px
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c] {
        scrollbar-color: #666 #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb {
        background: #666
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-thumb:hover {
        background: gray
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-track {
        background: #444
    }

    .dark-mode .hy-notouch-scrollable[data-v-a3d67d1c]::-webkit-scrollbar-corner {
        background: #444
    }
}

.toolbar[data-v-a3d67d1c] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0 auto;
    padding: 12px 8px;
    flex: 0 0 auto
}

.toolbar .toolbar-buttons[data-v-a3d67d1c] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px
}

.tool-button[data-v-a3d67d1c] {
    border: none;
    border-radius: 50%;
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    width: 38px;
    height: 38px;
    padding: 0;
    cursor: var(--cursor-pointer, pointer);
    transition: opacity,color,background;
    transition-duration: .1s
}

.tool-button[data-v-a3d67d1c]:hover:not(.hy-selected) {
    color: var(--accent-color);
    opacity: 1
}

.tool-button.hy-selected[data-v-a3d67d1c] {
    background: var(--accent-color);
    color: #fff
}

.tool-button[data-v-a3d67d1c]:not(.hy-selected) {
    background: transparent
}

.icon-container[data-v-a3d67d1c] {
    padding: 6px
}

.icon-container svg[data-v-a3d67d1c] {
    width: 100%;
    height: 100%
}

.tool-options[data-v-a3d67d1c] {
    display: flex;
    align-items: center;
    background: #383838;
    border-radius: 24px;
    background: #f0f0f0
}

.dark-mode .tool-options[data-v-a3d67d1c] {
    background: #383838
}

.options-bar[data-v-ce1f017c] {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 6px 16px 6px 70px;
    flex: 1 1 auto
}

.options-bar .options-container[data-v-ce1f017c] {
    flex: 1 1 auto;
    min-width: 0;
    height: 32px;
    overflow: hidden
}

.options-bar .options-container>div[data-v-ce1f017c] {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: left;
    flex-wrap: wrap;
    column-gap: inherit;
    row-gap: 32px;
    flex: 1 1 auto
}

.options-bar[data-v-ce1f017c] .options-dropdown {
    background: none;
    border: none;
    border-radius: 50%;
    padding: 6px 4px;
    margin-left: auto;
    flex: 1 0 auto
}

.options-dropdown-content[data-v-ce1f017c] {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.compact[data-v-96aed5e7] {
    width: 320px
}

.dialog-header[data-v-96aed5e7] {
    display: flex;
    justify-content: center;
    height: 86px;
    padding: 12px 32px 6px;
    border-bottom: 2px solid #ccc;
    background: #fff
}

.version-badge[data-v-96aed5e7] {
    position: absolute;
    top: 6px;
    left: 454px;
    padding: 6px;
    border-radius: 8px;
    transform: rotate(18deg);
    color: #fff;
    font-size: 16px;
    font-weight: 600
}

.compact .version-badge[data-v-96aed5e7] {
    top: 8px;
    left: 268px
}

.dialog-body[data-v-96aed5e7] {
    display: flex;
    align-items: stretch;
    width: 580px;
    background: #e8e8e8;
    overflow: hidden
}

.dark-mode .dialog-body[data-v-96aed5e7] {
    background: #1a1a1a
}

.container-compact[data-v-96aed5e7] {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    background: #f8f8f8
}

.dark-mode .container-compact[data-v-96aed5e7] {
    background: #2a2a2a
}

.content-group[data-v-96aed5e7] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 16px;
    border-radius: 5px;
    background: #fff
}

.dark-mode .content-group[data-v-96aed5e7] {
    background: #383838
}

.content-group[data-v-96aed5e7]>:first-child {
    font-size: 18px;
    line-height: 1.6
}

.tabs[data-v-96aed5e7] {
    display: flex;
    flex-direction: column
}

.tabs-wrapper[data-v-96aed5e7] {
    position: relative;
    display: flex;
    flex-direction: column
}

.tab-indicator[data-v-96aed5e7] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: #fff;
    border-left: 5px solid #2092FC;
    transition: transform .2s cubic-bezier(.38,.8,.32,1.07);
    z-index: 0
}

.dark-mode .tab-indicator[data-v-96aed5e7] {
    background: #2a2a2a
}

.tab-indicator.indicator-open[data-v-96aed5e7] {
    transform: translateY(100%)
}

.tab[data-v-96aed5e7] {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
    width: 120px;
    padding: 24px 16px;
    cursor: pointer;
    transition: color .3s ease,opacity .3s ease;
    border-left: 5px solid transparent;
    opacity: .8
}

.tab svg[data-v-96aed5e7] {
    width: 32px;
    height: 32px
}

.tab[data-v-96aed5e7]:hover {
    opacity: 1
}

.tab:hover svg[data-v-96aed5e7] {
    transform: scale(1.1);
    transition: transform .2s
}

.tab-input[data-v-96aed5e7] {
    position: absolute;
    opacity: 0;
    pointer-events: none
}

.tab-input:checked+.tab[data-v-96aed5e7] {
    opacity: 1
}

.tab-input:focus-visible+.tab[data-v-96aed5e7] {
    outline: 2px solid rgba(32,146,252,.5);
    outline-offset: -12px
}

.content[data-v-96aed5e7] {
    position: relative;
    flex: 1 1 auto;
    height: 380px;
    background: #fff;
    overflow: hidden
}

.dark-mode .content[data-v-96aed5e7] {
    background: #2a2a2a
}

.content-panel[data-v-96aed5e7] {
    position: absolute;
    inset: 0;
    padding: 24px 48px;
    display: flex;
    flex-direction: column
}

.drop-target[data-v-96aed5e7] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 4px dashed rgba(184,184,184,.7);
    border-radius: 16px;
    transition: border-color .25s,background-color .2s
}

.drop-target div[data-v-96aed5e7] {
    margin-bottom: 20px;
    font-size: 18px
}

.drop-target.drop-target-active[data-v-96aed5e7] {
    border-color: #2092fc;
    background: #2092fc0d
}

.fade-leave-active[data-v-96aed5e7] {
    transition: opacity .05s ease-in
}

.fade-enter-active[data-v-96aed5e7] {
    transition: opacity .1s ease-out
}

.fade-enter-from[data-v-96aed5e7],.fade-leave-to[data-v-96aed5e7] {
    opacity: 0
}

.main-panel[data-v-edcfbbb0] {
    touch-action: none;
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    overflow: hidden;
    user-select: none
}

.center-element[data-v-edcfbbb0] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden
}

.editor-container[data-v-edcfbbb0] {
    display: grid;
    place-content: start center;
    min-height: 100px;
    flex: 1 1 auto
}

.editor-container[data-v-edcfbbb0]>* {
    grid-area: 1/1
}

.show-tree-button[data-v-edcfbbb0] {
    position: absolute;
    left: -1px;
    top: 0;
    padding: 0 4px;
    background: #f0f0f0!important;
    border-radius: 0 5px 5px 0;
    height: 44px;
    transition: margin-right .3s ease,padding-left .3s ease,opacity .3s ease
}

.dark-mode .show-tree-button[data-v-edcfbbb0] {
    background: #383838!important
}

.show-tree-button svg[data-v-edcfbbb0] {
    opacity: .5!important
}

.show-tree-button[data-v-edcfbbb0]:hover {
    padding-left: 12px
}

.show-tree-button:hover svg[data-v-edcfbbb0] {
    opacity: .8!important
}

html,body {
    overflow: hidden;
    overscroll-behavior: contain
}

@media screen {
    #print-content {
        display: none
    }
}

@media print {
    html,body {
        min-height: auto;
        padding: 0!important;
        margin: 0!important;
        background: none!important
    }

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center
    }

    body>*:not(#app),#app>*:not(#print-content) {
        display: none!important
    }
}

.no-transition,.no-transition * {
    transition: none!important
}

.zoom-input[data-v-2c997ecc] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 8px
}

.button[data-v-2c997ecc] {
    padding: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%
}

.label[data-v-2c997ecc] {
    width: 54px;
    text-align: right
}
