.fileupload-previews {
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: #fafbfd;
    border-radius: 6px;
    min-height: 190px;
}
.fileupload-previews:after {
    content: "";
    display: table;
    clear: both;
}
.image-preview {
    width: 150px;
    height: 150px;
    margin: 20px;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 8px;
    float: left;
    overflow: hidden;
}
.image-preview.dz-processing .dz-progress{opacity:1;transition:all .2s linear}
.image-preview.dz-complete .dz-progress{opacity:0;transition:opacity .4s ease-in}
.image-preview:not(.dz-processing) .dz-progress{animation:pulse 6s ease infinite}
.image-preview .dz-progress{opacity:1;z-index:1000;pointer-events:none;position:absolute;height:20px;top:50%;margin-top:-10px;left:15%;right:15%;border:3px solid rgba(0,0,0,.8);background:rgba(0,0,0,.8);border-radius:10px;overflow:hidden}
.image-preview .dz-progress .dz-upload{background:#fff;display:block;position:relative;height:100%;width:0;transition:width 300ms ease-in-out;border-radius:17px}

.image-preview img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.image-preview-controls {
    position: absolute;
    right: 5px;
    top: 5px;
    display: flex;
    color: white;
    font-size: 18px;
    line-height: normal!important;
}
.image-preview-controls-delete {
    background: #fe7676;
    border-radius: 50%;
    box-shadow: -1px 1px 6px rgb(254 118 118 / 80%);
}

.image-preview-controls > * {
    cursor: pointer;
    margin-left: 6px;
    width: 20px;
    height: 20px;
    padding: 1px;
    text-shadow: 1px 1px 3px rgb(0 0 0 / 30%);
}

.image-sort-placeholder {
    width: 150px;
    height: 150px;
    float: left;
    margin: 20px;
    background: #e6ebf4;
    border: dashed 2px #92a7bf;
    border-radius: 8px;
    box-sizing: border-box;
}
.image-upload-block {
    width: 150px;
    height: 150px;
    float: left;
    color: #90a0bc;
    line-height: 150px;
    font-size: 30px;
    text-align: center;
    margin: 20px;
    background: #e6ebf4;
    border: dashed 2px #92a7bf;
    border-radius: 8px;
    box-sizing: border-box;
    cursor: pointer;
}
.tui-image-editor-header {
    display: none;
}
.tui-image-editor-container .tui-image-editor-main {
    top: 0;
}
.tui-image-editor-container .tui-image-editor-menu > .tui-image-editor-item.tie-btn-delete,
.tui-image-editor-container .tui-image-editor-menu > .tui-image-editor-item.tie-btn-deleteAll,
.tui-image-editor-container .tui-image-editor-menu > .tui-image-editor-item.tie-btn-deleteAll + li
{
    display: none;
}
.editor-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
}

.editor-container-controls {
    position: absolute;
    display: flex;
    z-index: 10000;
    top: 10px;
    right: 10px;
}

.editor-container-controls button {
    display: inline-block;
    position: relative;
    width: 120px;
    height: 40px;
    padding: 0;
    line-height: 40px;
    outline: none;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-family: 'Noto Sans',sans-serif;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    vertical-align: middle;
    letter-spacing: .3px;
    text-align: center;
    margin-left: 12px;
}

.editor-container-loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border: 8px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.editor-container svg {
    line-height: normal!important;
    vertical-align: baseline;
}
.editor-container label {
    line-height: normal!important;
}
.tui-image-editor-container .tui-image-editor-range {
    width: 500px;
}
