:root {
    --color-a: #194052;
    --color-b: #1bb0c4;
    --color-footer: #194052;
    --color-bg: #194052;
    --color-header: #222;
    --color-text: #464646;
    --color-light-text: #999;
    --color-border: #ddd;
    --color-bg-grey: #f7f7f7;
    --font-text: sans-serif;
    --font-header: sans-serif
}

.ck-body-wrapper {
    width: 0;
    height: 0
}

[data-formtype=group] {
    display: flex;
    justify-content: space-between
}

[data-formtype=group]>h2 {
    width: 35%;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    padding-top: 15px
}

[data-formtype=group]>div {
    width: 60%
}

@media (max-width:991px) {
    [data-formtype=group] {
        flex-direction: column
    }

    [data-formtype=group]>div, [data-formtype=group]>h1 {
        width: 100%
    }
}

[data-formtype=group-fullwidth] {
    display: flex;
    flex-direction: column
}

[data-formtype=group-fullwidth]>h2 {
    width: 35%;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    padding-top: 15px
}

[data-formtype=group-fullwidth]>div {
    width: 100%
}

[data-formtype=tabs-horizontal] {
    display: flex;
    flex-direction: column;
    margin-top: 30px
}

[data-formtype=tabs-horizontal] [data-labels] {
    white-space: nowrap;
    overflow-x: hidden
}

[data-formtype=tabs-horizontal] [data-labels]>label {
    display: inline-block;
    font-weight: 700;
    margin: 0 30px 0 0;
    font-size: 20px
}

[data-formtype=tabs-horizontal] [data-labels]>label.active {
    border-bottom: 2px solid var(--color-a)
}

[data-formtype=tabs-horizontal] [data-tabs] {
    overflow: hidden;
    position: relative
}

[data-formtype=tabs-horizontal] [data-tabs]>input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: -10000px
}

[data-formtype=tabs-horizontal] [data-tabs]>div {
    display: none
}

[data-formtype=tabs-horizontal] [data-tabs]>input:checked+div {
    display: block
}

[data-formtype=blk-1-1] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

[data-formtype=blk-1-1]>h2 {
    width: 100%;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    padding-top: 15px
}

[data-formtype=blk-1-1]>div {
    width: calc(50% - 7.5px)
}

@media (max-width:767px) {
    [data-formtype=blk-1-1] {
        flex-direction: column
    }

    [data-formtype=blk-1-1]>div {
        width: 100%
    }
}

[data-formtype=blk-2-1] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

[data-formtype=blk-2-1]>h2 {
    width: 100%;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    padding-top: 15px
}

[data-formtype=blk-2-1]>div:nth-child(2) {
    width: calc(66.66667% - 7.5px)
}

[data-formtype=blk-2-1]>div:nth-child(3) {
    width: calc(33.33334% - 7.5px)
}

@media (max-width:767px) {
    [data-formtype=blk-2-1] {
        flex-direction: column
    }

    [data-formtype=blk-2-1]>div:nth-child(2), [data-formtype=blk-2-1]>div:nth-child(3) {
        width: 100%
    }
}

[data-formtype=blk-1-2] {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

[data-formtype=blk-1-2]>h2 {
    width: 100%;
    margin: 0;
    margin-top: 15px;
    padding: 0;
    font-size: 22px;
    font-weight: 400;
    color: #333;
    padding-top: 15px
}

[data-formtype=blk-1-2]>div:nth-child(2) {
    width: calc(33.33334% - 7.5px)
}

[data-formtype=blk-1-2]>div:nth-child(3) {
    width: calc(66.66667% - 7.5px)
}

@media (max-width:767px) {
    [data-formtype=blk-1-2] {
        flex-direction: column
    }

    [data-formtype=blk-1-2]>div:nth-child(2), [data-formtype=blk-1-2]>div:nth-child(3) {
        width: 100%
    }
}

[data-formtype=date], [data-formtype=text], [data-formtype=time] {
    padding-top: 15px;
    position: relative
}

[data-formtype=date]>label, [data-formtype=text]>label, [data-formtype=time]>label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=date]>label>div:first-child, [data-formtype=text]>label>div:first-child, [data-formtype=time]>label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=date]>label>div:nth-child(2), [data-formtype=text]>label>div:nth-child(2), [data-formtype=time]>label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=date]>label>div:nth-child(2)>span, [data-formtype=text]>label>div:nth-child(2)>span, [data-formtype=time]>label>div:nth-child(2)>span {
    display: none
}

[data-formtype=date]>label>div:nth-child(2)>span.success, [data-formtype=text]>label>div:nth-child(2)>span.success, [data-formtype=time]>label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=date]>label>div:nth-child(2)>span.warning, [data-formtype=text]>label>div:nth-child(2)>span.warning, [data-formtype=time]>label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=date]>label>div:nth-child(2)>span.error, [data-formtype=text]>label>div:nth-child(2)>span.error, [data-formtype=time]>label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=date]>div, [data-formtype=text]>div, [data-formtype=time]>div {
    position: relative;
	display: flex;
	gap: 1rem;
}
[data-formtype=date]>div>input, [data-formtype=text]>div>input, [data-formtype=time]>div>input {
	order: 2;
    outline: none;
    width: 100%;
    height: 3rem;
    border: 1px solid #eee;
    color: #676767;
    background: hsla(0, 0%, 100%, .8);
    padding: .66rem 1rem;
    line-height: 1rem;
    font-size: 1rem;
    font-weight: 400;
    min-width: calc(100% - 1rem);
}




[data-formtype=text]>div>div:empty {
	display: none;
}
[data-formtype=text]>div>div.icon-left {
	flex: 0 0 2rem;
	padding: .3rem 0;
	order:1;
}
[data-formtype=text]>div>div.icon-left>a>svg {
	height: 100%;
	order:1;
}
[data-formtype=text]>div>input {
	flex: 1 0 calc(100% - 3rem);
	width: auto;
	min-width: auto;
}
.disabled-button {
	pointer-events: none;
	opacity: .5;
}



[data-formtype=date]>div>input:disabled, [data-formtype=text]>div>input:disabled, [data-formtype=time]>div>input:disabled {
    opacity: .5;
    pointer-events: none
}

[data-formtype=date]>div>input::placeholder, [data-formtype=text]>div>input::placeholder, [data-formtype=time]>div>input::placeholder {
    font-size: 13px;
    letter-spacing: .5px;
    font-weight: 300;
    text-overflow: ellipsis;
    color: #ddd
}

[data-formtype=datetime] {
    padding-top: 15px;
    position: relative
}

[data-formtype=datetime]>label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=datetime]>label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=datetime]>label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=datetime]>label>div:nth-child(2)>span {
    display: none
}

[data-formtype=datetime]>label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=datetime]>label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=datetime]>label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=datetime]>div {
    display: flex;
    justify-content: space-between
}

[data-formtype=datetime]>div>div {
    width: calc(50% - 7.5px);
    position: relative
}

[data-formtype=datetime]>div>div>div.icon-left svg {
    position: absolute
}

[data-formtype=datetime]>div>div>input {
    outline: none;
    width: 100%;
    height: 44px;
    border: 1px solid #eee;
    color: #676767;
    background: hsla(0, 0%, 100%, .8);
    padding: 10px 15px;
    line-height: 16px;
    font-size: 16px;
    font-weight: 400
}

[data-formtype=datetime]>div>div>input:disabled {
    opacity: .5;
    pointer-events: none
}

[data-formtype=datetime]>div>div>input::placeholder {
    font-size: 13px;
    letter-spacing: .5px;
    font-weight: 300;
    text-overflow: ellipsis;
    color: #ddd
}

[data-formtype=select] {
    padding-top: 15px;
    position: relative
}

[data-formtype=select]>label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=select]>label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=select]>label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=select]>label>div:nth-child(2)>span {
    display: none
}

[data-formtype=select]>label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=select]>label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=select]>label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=select]>div {
    position: relative
}

[data-formtype=select]>div .select_arrow {
    position: absolute;
    bottom: 1.16rem;
    right: 1rem;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: .5rem .3rem 0;
    border-color: #ddd transparent transparent;
    z-index: 1
}

[data-formtype=select]>div>select {
    outline: none;
    line-height: 1rem;
    font-weight: 400;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: .66rem 1rem;
    outline: 0;
    border: 1px solid #eee;
    border-radius: 0;
    background: hsla(0, 0%, 100%, .8);
    color: #676767;
    font-size: 1rem;
    height: 3rem;
    font-weight: 300;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none
}

[data-formtype=select]>div>select::-ms-expand {
    display: none
}

[data-formtype=select]>div>select:disabled {
    opacity: .5;
    pointer-events: none
}

[data-formtype=select]>div>select:focus~.select_arrow, [data-formtype=select]>div>select:hover~.select_arrow {
    border-top-color: #676767
}

[data-formtype=select]>div>select:disabled~.select_arrow {
    border-top-color: #999
}

[data-formtype=checkgroup] h3 {
    padding-top: 15px;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    color: #333
}

[data-formtype=checkgroup]>div {
    columns: 2
}

[data-formtype=check] {
    padding-top: 15px
}

[data-formtype=check]>label {
    display: block;
    position: relative;
    color: #333;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px
}

[data-formtype=check]>label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: -10000px
}

[data-formtype=check]>label .control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 21px;
    width: 21px;
    background: #fff;
    border: 1px solid #eee
}

[data-formtype=check]>label:hover input~.control_indicator {
    background: #fafafa
}

[data-formtype=check]>label input:checked~.control_indicator {
    background: #fff
}

[data-formtype=check]>label:hover input:not([disabled]):checked~.control_indicator {
    background: #fafafa
}

[data-formtype=check]>label input:disabled~.control_indicator {
    background: #fff;
    opacity: .3;
    pointer-events: none
}

[data-formtype=check]>label .control_indicator:after {
    box-sizing: unset;
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 3px;
    height: 8px;
    border: solid var(--color-a);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

[data-formtype=check]>label input:checked~.control_indicator:after {
    display: block
}

[data-formtype=check]>label:hover input~.control_indicator:after, [data-formtype=check]>label input:disabled~.control_indicator:after {
    border-color: var(--color-a)
}

[data-formtype=radio] {
    padding-top: 15px
}

[data-formtype=radio]>label {
    display: block;
    position: relative;
    color: #333;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px;
    overflow: hidden
}

[data-formtype=radio]>label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: -10000px
}

[data-formtype=radio]>label .control_indicator {
    position: absolute;
    top: 2px;
    left: 0;
    height: 21px;
    width: 21px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%
}

[data-formtype=radio]>label input:checked~.control_indicator {
    background: #fff
}

[data-formtype=radio]>label:hover input:not([disabled]):checked~.control_indicator, [data-formtype=radio]>label:hover input~.control_indicator {
    background: #fafafa
}

[data-formtype=radio]>label input:disabled~.control_indicator {
    background: #fff;
    opacity: .3;
    pointer-events: none
}

[data-formtype=radio]>label .control_indicator:after {
    display: none;
    box-sizing: unset;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 8px;
    width: 8px;
    border-radius: 50%;
    margin: -4px 0 0 -3px;
    background-color: var(--color-a)
}

[data-formtype=radio]>label input:checked~.control_indicator:after {
    display: block
}

[data-formtype=radio]>label:hover input~.control_indicator:after {
    background-color: var(--color-a);
    border-color: transparent
}

[data-formtype=radio]>label input:disabled~.control_indicator:after {
    border-color: #ddd
}

[data-formtype=checkcaption] {
    padding-top: 15px
}

[data-formtype=checkcaption]>label {
    display: block;
    position: relative;
    color: #333;
    padding-right: 55px;
    padding-top: 5px;
    padding-bottom: 5px;
    cursor: pointer;
    font-size: 14px;
    line-height: 18px
}

[data-formtype=checkcaption]>label input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    left: -10000px
}

[data-formtype=checkcaption]>label .control_indicator {
    position: absolute;
    top: 5px;
    right: 0;
    height: 42px;
    width: 42px;
    background: #fff;
    border: 1px solid #eee
}

[data-formtype=checkcaption]>label .title {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-bottom: 5px
}

[data-formtype=checkcaption]>label .caption {
    font-size: 12px;
    font-weight: 300;
    color: #666
}

[data-formtype=checkcaption]>label:hover input~.control_indicator {
    background: #fafafa
}

[data-formtype=checkcaption]>label input:checked~.control_indicator {
    background: #fff
}

[data-formtype=checkcaption]>label:hover input:not([disabled]):checked~.control_indicator {
    background: #fafafa
}

[data-formtype=checkcaption]>label input:disabled~.control_indicator {
    background: #fff;
    opacity: .3;
    pointer-events: none
}

[data-formtype=checkcaption]>label .control_indicator:after {
    box-sizing: unset;
    content: "";
    position: absolute;
    display: none;
    right: 14px;
    top: 10px;
    width: 6px;
    height: 16px;
    border: solid var(--color-a);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

[data-formtype=checkcaption]>label input:checked~.control_indicator:after {
    display: block
}

[data-formtype=checkcaption]>label:hover input~.control_indicator:after, [data-formtype=checkcaption]>label input:disabled~.control_indicator:after {
    border-color: var(--color-a)
}

[data-formtype=geo] {
    padding-top: 15px;
    position: relative
}

[data-formtype=geo]>label {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=geo]>label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=geo]>label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=geo]>label>div:nth-child(2)>span {
    display: none
}

[data-formtype=geo]>label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=geo]>label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=geo]>label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=geo]>label iframe {
    display: none;
    width: 100%;
    border: 1px solid var(--color-border);
    margin: 15px 0;
    height: 300px;
    max-height: 70vh
}

[data-formtype=geo]>div {
    display: flex;
    justify-content: space-between
}

[data-formtype=geo]>div>div {
    width: calc(50% - 7.5px);
    position: relative
}

[data-formtype=geo]>div>div>input {
    outline: none;
    width: 100%;
    height: 44px;
    border: 1px solid #eee;
    color: #676767;
    background: hsla(0, 0%, 100%, .8);
    padding: 10px 15px;
    line-height: 16px;
    font-size: 16px;
    font-weight: 400
}

[data-formtype=geo]>div>div>input:disabled {
    opacity: .5;
    pointer-events: none
}

[data-formtype=geo]>div>div>input::placeholder {
    font-size: 13px;
    letter-spacing: .5px;
    font-weight: 300;
    text-overflow: ellipsis;
    color: #ddd
}

[data-formtype=ckeditor-balloon-block], [data-formtype=ckeditor-balloon], [data-formtype=ckeditor-classic], [data-formtype=ckeditor-document], [data-formtype=ckeditor-inline], [data-formtype=code] {
    padding-top: 15px
}

[data-formtype=ckeditor-balloon-block]>label, [data-formtype=ckeditor-balloon]>label, [data-formtype=ckeditor-classic]>label, [data-formtype=ckeditor-document]>label, [data-formtype=ckeditor-inline]>label, [data-formtype=code]>label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=ckeditor-balloon-block]>label>div:first-child, [data-formtype=ckeditor-balloon]>label>div:first-child, [data-formtype=ckeditor-classic]>label>div:first-child, [data-formtype=ckeditor-document]>label>div:first-child, [data-formtype=ckeditor-inline]>label>div:first-child, [data-formtype=code]>label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=ckeditor-balloon-block]>label>div:nth-child(2), [data-formtype=ckeditor-balloon]>label>div:nth-child(2), [data-formtype=ckeditor-classic]>label>div:nth-child(2), [data-formtype=ckeditor-document]>label>div:nth-child(2), [data-formtype=ckeditor-inline]>label>div:nth-child(2), [data-formtype=code]>label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=ckeditor-balloon-block]>label>div:nth-child(2)>span, [data-formtype=ckeditor-balloon]>label>div:nth-child(2)>span, [data-formtype=ckeditor-classic]>label>div:nth-child(2)>span, [data-formtype=ckeditor-document]>label>div:nth-child(2)>span, [data-formtype=ckeditor-inline]>label>div:nth-child(2)>span, [data-formtype=code]>label>div:nth-child(2)>span {
    display: none
}

[data-formtype=ckeditor-balloon-block]>label>div:nth-child(2)>span.success, [data-formtype=ckeditor-balloon]>label>div:nth-child(2)>span.success, [data-formtype=ckeditor-classic]>label>div:nth-child(2)>span.success, [data-formtype=ckeditor-document]>label>div:nth-child(2)>span.success, [data-formtype=ckeditor-inline]>label>div:nth-child(2)>span.success, [data-formtype=code]>label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=ckeditor-balloon-block]>label>div:nth-child(2)>span.warning, [data-formtype=ckeditor-balloon]>label>div:nth-child(2)>span.warning, [data-formtype=ckeditor-classic]>label>div:nth-child(2)>span.warning, [data-formtype=ckeditor-document]>label>div:nth-child(2)>span.warning, [data-formtype=ckeditor-inline]>label>div:nth-child(2)>span.warning, [data-formtype=code]>label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=ckeditor-balloon-block]>label>div:nth-child(2)>span.error, [data-formtype=ckeditor-balloon]>label>div:nth-child(2)>span.error, [data-formtype=ckeditor-classic]>label>div:nth-child(2)>span.error, [data-formtype=ckeditor-document]>label>div:nth-child(2)>span.error, [data-formtype=ckeditor-inline]>label>div:nth-child(2)>span.error, [data-formtype=code]>label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=ckeditor-classic]>label>div:nth-child(2)>a svg {
    width: 2rem;
    height: 2rem;
}

[data-formtype=ckeditor-balloon-block]>div, [data-formtype=ckeditor-balloon]>div, [data-formtype=ckeditor-classic]>div, [data-formtype=ckeditor-inline]>div, [data-formtype=code]>div {
    height: 100%;
    overflow-y: auto;
    border: 1px solid var(--color-border);
    outline: none
}

[data-formtype=ckeditor-balloon-block]>div .code, [data-formtype=ckeditor-balloon-block]>div .editor, [data-formtype=ckeditor-balloon]>div .code, [data-formtype=ckeditor-balloon]>div .editor, [data-formtype=ckeditor-classic]>div .code, [data-formtype=ckeditor-classic]>div .editor, [data-formtype=ckeditor-inline]>div .code, [data-formtype=ckeditor-inline]>div .editor, [data-formtype=code]>div .code, [data-formtype=code]>div .editor {
    width: 100%;
    min-height: 200px
}

[data-formtype=ckeditor-balloon-block]>div .code[contenteditable], [data-formtype=ckeditor-balloon-block]>div .editor[contenteditable], [data-formtype=ckeditor-balloon]>div .code[contenteditable], [data-formtype=ckeditor-balloon]>div .editor[contenteditable], [data-formtype=ckeditor-classic]>div .code[contenteditable], [data-formtype=ckeditor-classic]>div .editor[contenteditable], [data-formtype=ckeditor-inline]>div .code[contenteditable], [data-formtype=ckeditor-inline]>div .editor[contenteditable], [data-formtype=code]>div .code[contenteditable], [data-formtype=code]>div .editor[contenteditable] {
    outline: none
}

[data-formtype=ckeditor-balloon-block]>div .code, [data-formtype=ckeditor-balloon]>div .code, [data-formtype=ckeditor-classic]>div .code, [data-formtype=ckeditor-inline]>div .code, [data-formtype=code]>div .code {
    border: none;
    white-space: nowrap;
    overflow: auto;
    font-family: monospace;
    tab-size: 2
}

[data-formtype=ckeditor-document]>div {
    position: relative
}

[data-formtype=ckeditor-document]>div .editor-toolbar {
    position: relative;
    z-index: 11
}

[data-formtype=ckeditor-document]>div .editor {
    display: flex;
    position: relative;
    justify-content: center;
    overflow-y: auto;
    background-color: #f2f2f2;
    border: 1px solid #c4c4c4
}

[data-formtype=ckeditor-document]>div .editor>div {
    position: relative;
    z-index: 10;
    font-size: 1em;
    line-height: 1.6em;
    width: 18.5cm;
    height: 100%;
    min-height: 26.25cm;
    padding: 1.75cm 1.5cm;
    margin: 2.5rem;
    border: 1px solid #d3d3d3;
    background-color: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1)
}

[data-formtype=ckeditor-document]>div .editor>div:active, [data-formtype=ckeditor-document]>div .editor>div:focus {
    outline: none
}

[data-formtype=image] {
    padding-top: 15px;
    position: relative;
    overflow: hidden;
    width: 100%
}

[data-formtype=image] label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

[data-formtype=image] label>div:first-child {
    color: #333;
    font-family: var(--font-text);
    text-align: left;
    font-size: 14px;
    line-height: 30px;
    font-weight: 400;
    text-transform: uppercase
}

[data-formtype=image] label>div:nth-child(2) {
    text-align: right;
    font-size: 12px
}

[data-formtype=image] label>div:nth-child(2)>span {
    display: none
}

[data-formtype=image] label>div:nth-child(2)>span.success {
    color: #66a755;
    display: inline-block
}

[data-formtype=image] label>div:nth-child(2)>span.warning {
    color: #fa0;
    display: inline-block
}

[data-formtype=image] label>div:nth-child(2)>span.error {
    color: red;
    display: inline-block
}

[data-formtype=image] input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    left: -1000px
}

[data-formtype=image] .container {
    position: relative;
    border: 1px solid var(--color-border);
    cursor: pointer
}

[data-formtype=image] .container:before {
    content: "";
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background-color: #fafafa;
    border: 2px dashed #ddd;
    border-radius: 5px
}

[data-formtype=image] .container>div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column
}

[data-formtype=image] .container>div>svg {
    width: 15%;
    fill: #aaa
}

[data-formtype=image] .container>div>div {
    color: #aaa;
    margin-top: 10px
}

[data-formtype=image] .container>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover
}

[data-formtype=image] .container>img[src=""] {
    display: none
}