.tabulatorCellContent--textwrap {
    text-wrap: auto;
}

#loading-cover {
    display: none;
    background-color: rgba(36, 36, 36, 0.65);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

body.ajax-loading #loading-cover {
    display: block;
}
  
#loading-cover .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 70px;
    display: flex;
    align-items: center;
}

#loading-cover .loading .bar {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0000;
    border-right-color: #ffffff;
    position: relative;
    animation: l24 1s infinite linear;
}

#loading-cover .loading .bar:before,
#loading-cover .loading .bar:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

#loading-cover .loading .bar:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {transform: rotate(1turn)}
}

.dropzone-sm {
    padding: 8px !important;
    min-height: auto !important;
}

.dropzone-previews {
    max-height: 36px;
}

.dropzone-previews img {
    max-height: 36px;
    width: 100px !important;
    object-fit: cover;
}

.dropzone-previews .dz-size {
    line-height: 1.1;
}

.dropzone-wrapper {
    width: 100%;
}

.translations.hint {
    display: flex;
    align-items: left;
    justify-content: left;
    font-weight: 500;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 0.42rem;
    background-color: #F2EBFF;
    color: #8950FC;
    padding: 8px;
    margin-top: 5px;
}

.translations.hint::before {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    margin-right: 3px;
    font-size: 22px;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    -webkit-font-smoothing: antialiased;    
    content: "\edad";
}

.priceTags-td {
    width: 70%;
}

.tagify {
    min-height: 38px;
}

.tagify .tagify__tag {
    line-height: 1.5;
}

.tagify--mix .tagify__input {
    line-height: 2.3;
    padding: 2px 10px;
}

.form-col-flex {
    display: flex;
}

.form-col-flex .upper-label {
    width: 100%;
}

.separator-right-0 {
    border-right: 0;
}

.separator-right-1 {
    border-right: 1px solid #EBEDF3;
}

.separator-left-0 {
    border-left: 0;
}

.separator-left-1 {
    border-left: 1px solid #EBEDF3;
}

.tabulator-cell .tagify {
    border: 1px solid #c5c6cf;
    background: rgba(255, 255, 255, 1);
    cursor: text;
}

.tabulator-cell .tagify:hover {
    cursor: default;
}

.tabulator-cell .editable-input {
    border-radius: 0.42rem;
    border: 1px solid #c5c6cf;
    padding: 0;
    display: flex;
    line-height: 2.3;
    padding: 2px 10px;
    width: 100%;
    height: 36px;
}

.tabulator-cell .tagify[disabled], .tabulator-cell .editable-input[disabled] {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.h7 {
    font-size: calc(1.1rem + 0.1vw) !important;
}

@media (min-width: 768px) {
    .separator-right-md-0 {
        border-right: 0;
    }

    .separator-right-md-1 {
        border-right: 1px solid #EBEDF3;
    }

    .separator-left-md-0 {
        border-left: 0;
    }

    .separator-left-md-1 {
        border-left: 1px solid #EBEDF3;
    }
}

.monaco-editor-window {
    position: relative;
    height: 500px;
    border-radius: 0.42rem;
    background: #272822;

    transition: 0.2s height ease-out;

    resize: vertical;
}

.monaco-editor-window.disabled {
    border: 0 !important;
    height: 0px !important;
    resize: none !important;
    overflow: hidden !important;
}

.monaco-editor-window.is-invalid {
    border: 3px solid #F64E60;
}

.monaco-editor-window>.monaco-editor,
.monaco-editor-window>.monaco-editor>.overflow-guard {
    border-radius: 0.42rem;
}

.monaco-editor-window>.monaco-editor-window-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-color: rgba(246, 248, 250, 0.7);
    cursor: not-allowed;
}

.monaco-editor-window>.monaco-editor-window-shadow.readonly {
    background-color: rgba(246, 248, 250, 0.3);
    pointer-events: none;
}

.monaco-editor-window>.monaco-editor-window-shadow.loading {
    cursor: progress;
}

.monaco-editor-window>.monaco-editor-window-shadow.hidden {
    display: none;
}

.monaco-editor-window-slider {
    position: absolute;
    width: 100%;
    height: 8px;
    overflow-x: hidden;
}

.monaco-editor-window-slider.hidden {
    display: none;
}

.monaco-editor-window-slider-line {
    position: absolute;
    opacity: 0.4;
    width: 150%;
    height: 8px;
}

.monaco-editor-window-slider-subline {
    position: absolute;
    background: #3B7BDD;
    height: 8px;
}

.monaco-editor-window-slider-inc {
    animation: increase 2s infinite;
}

.monaco-editor-window-slider-dec {
    animation: decrease 2s 0.5s infinite;
}

.tabulator-cell a:not(.btn).tabulatorDetailLink {
    text-decoration: none;
    color: inherit;
}

.tabulator-cell a:not(.btn).tabulatorDetailLink:hover {
    text-decoration: underline !important;
}

@keyframes increase {
    from {
        left: -5%;
        width: 5%;
    }

    to {
        left: 130%;
        width: 100%;
    }
}

@keyframes decrease {
    from {
        left: -80%;
        width: 80%;
    }

    to {
        left: 110%;
        width: 10%;
    }
}


.big-spinner,
.big-spinner:after {
    border-radius: 50%;
    width: 10em;
    height: 10em;
}

.big-spinner {
    margin: 60px auto;
    font-size: 10px;
    position: relative;
    text-indent: -9999em;
    border-top: 1.1em solid rgba(255, 255, 255, 0.2);
    border-right: 1.1em solid rgba(255, 255, 255, 0.2);
    border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
    border-left: 1.1em solid #3B7BDD;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load8 1.1s infinite linear;
    animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load8 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* fix label overflow for invalid fields */
.was-validated .form-control:invalid~label,
.form-control.is-invalid~label {
    max-width: calc(100% - (1.5em + 1.286rem));
}

/* fixes ql-editor image size in admin */
.ql-editor img {
    max-width: 100%;
    height: auto;
}

/* Compact spacing in Quill editor for CMS messages */
.ql-editor h1,
.ql-editor h2,
.ql-editor h3 {
    margin: 0.4em 0 0.15em;
}

.ql-editor p {
    margin: 0 0 0.35em;
}

.ql-editor ul,
.ql-editor ol {
    margin: 0 0 0.35em;
}

.ql-editor li {
    margin-bottom: 0.15em;
}