html {
  font-size: 14px;
.components-area {
    position: fixed;
    left: 10px;
    right: 200px;
    top: 100px;
    bottom: 0px;
    overflow-y: scroll;
}


.edit-area {
    margin-left: 200px;
    margin-right: 250px;
    background: var(--bs-gray-300);
    overflow-y: scroll;
}

.e-resize {
    cursor: e-resize;
}

.preview-area {
}

.properties-area {
    position: fixed;
    right: 0px;
    top: 100px;
    bottom: 0px;
    overflow-y: scroll;
}

.field-holder {
    flex-grow: 1;
    align-items: center !important;
    position: relative;
    border: 2px dashed var(--bs-info);
}

    .field-holder:hover {
        border-style: solid;
    }

.aside {
}

.field-holder.selected {
    border: 2px solid var(--bs-danger);
    background-color: var(--bs-success-light);
}

.section {
    margin: 8px 0px;
}

    .section.selected {
        border: 4px solid var(--bs-danger);
    }

.btn-primary[disabled] {
    background-color: var(--bs-danger);
}

.section-buttons a {
    visibility: hidden;
}

.section:hover .card-toolbar.section-buttons a {
    visibility: visible;
}

.field-holder .section-buttons {
    position: absolute;
    inset: 0;
    z-index: 2;
}

#kt-aside {
    display: none;
}

.section:hover:not(.deleted) .field-holder:hover .section-buttons a {
    visibility: visible;
}

.deleted .section-buttons, .deleted .card-header {
    background: repeating-linear-gradient( 45deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 10px, rgba(0, 0, 0, 0.3) 10px, rgba(0, 0, 0, 0.3) 20px );
}

.deleted .bi-x, .field-holder:not(.deleted) .bi-plus, .section:not(.deleted) .card-toolbar.section-buttons .bi-plus {
    display: none;
}


:not(.deleted) .add-remove, .section:not(.deleted) .card-toolbar.section-buttons .add-remove {
    background: var(--bs-danger);
}

.deleted .add-remove {
    background: var(--bs-success);
}
#cke_Body {
    width: 100% !important;
}
@media (prefers-color-scheme: dark)  {
    .ck-editor {
        background-color: #000 !important;
        color: #000;
    }
}

[data-bs-theme="dark"] .ck-editor {
    background-color: #000 !important;
    color: #000;
}
.autocomplete-dropdown {
    border: solid var(--bs-gray-300) 0.2rem;
    border-radius: 0.3rem;
    padding: 0.3rem;
    max-height: 10rem;
    background: var(--bs-body-bg);
    overflow-y: scroll;
    z-index: 2;
}