@keyframes cl-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.drop-before {
    border-top: 5px solid black!important
}
.drop-after {
    border-bottom: 5px solid black!important
}
.static-table {
    width: 300px;
    height: 200px;
    border: 1px solid black;
    padding: 10px;
    margin-bottom: 20px;
    overflow: auto;
}

.dynamic-table {
    width: 300px;
    height: 400px;
    border: 1px solid black;
    padding: 10px;
    overflow: auto;
}

.static-folder,
.static-item,
.dynamic-folder,
.dynamic-item {
    margin: 5px;
    padding: 10px;
}

.static-folder {
    background: lightblue;
}

.dynamic-folder {
    background: lightgreen;
}

.drop-before {
    border-top: 2px dashed blue;
}

.drop-after {
    border-bottom: 2px dashed blue;
}

.child {
    margin-left: 30px;
}

.h-100 {
    height: 100%;
}
.h-50 {
    height: 50%;
}
.h-25 {
    height: 25%;
}
.d-flex {
    display: flex;
}
.columns {
    flex-direction: column;
    flex-wrap: wrap;
}
#dynamicTable > ul {
    height: 100%;
    min-height: 300px;
}
.rem-s {
    font-size: 12px!important;
}
.col-25 {
    width: 25rem;
}
.folder-drop-zone {
    position: absolute;
    background: green;
    top: 0;
    left: 0;
    height: 1.5rem;
    max-height: 2.5rem;
    width: calc(50% - 60px);
    opacity: 50%;
}
.item-relative {
    position: relative;
}
.folder-child {
    top: 100%;
}

.cl-editor-preview {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1000;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cl-editor-preloader-background {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #7a7a7a52;
    backdrop-filter: blur(0px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cl-editor-preloader-spin {
    animation: cl-spin 1s linear infinite;
    color: #1677ff;
}
.cl-panel-preloader-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 10rem;
    background-color: rgb(255 255 255 / 55%);
    z-index: 999;
    pointer-events: all;
}

.cl-editor-preview.cl-editor-preview-op {}
.cl-editor-preview-none {
    display: none;
    opacity: 0;
}

.cl-editor-preview-op {
  animation: fadeOut 0.2s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    display: block; /* РЈР±РµРґРёРјСЃСЏ, С‡С‚Рѕ СЌР»РµРјРµРЅС‚ РІРёРґРёРј */
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    display: none; /* РЎРєСЂС‹РІР°РµРј СЌР»РµРјРµРЅС‚ */
  }
}
