.icon-paid {
    background-image: url('/img/icon_money.png');
    background-repeat: no-repeat;
    background-position: center;
}

.icon-unpaid {
    background-image: url('/img/icon_unpaid.png');
    background-repeat: no-repeat;
    background-position: center;
}

.site-sections-grid .x-grid-drop-indicator {
    height: 3px;
    background-color: #157fcc;
    visibility: visible;
}

.game-poster-dropzone-wrap {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    min-height: 96px;
    border: 2px dashed #999;
    border-radius: 6px;
    background-color: #f5f5f5;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    text-align: center;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.game-poster-dropzone-wrap.game-poster-dropzone--over {
    border-color: #157fcc;
    background-color: #e8f4fc;
}

.game-poster-dropzone__hint {
    color: #666;
    font-size: 11px;
    line-height: 1.25;
    pointer-events: none;
    user-select: none;
}

.game-poster-dropzone-wrap.has-preview .game-poster-dropzone__hint {
    display: none;
}

/* Колонка постера: классы на td и на обёртке .poster-cell-wrap (надёжно для любого Ext) */
.poster-cell-wrap {
    display: inline-block;
    line-height: 0;
}

.poster-grid-inline-img {
    max-width: 24px;
    max-height: 24px;
    width: auto;
    height: auto;
    object-fit: contain;
    vertical-align: middle;
    display: inline-block;
    cursor: pointer;
}

td.poster-cell-miss .poster-grid-inline-img,
.poster-cell-wrap.poster-cell-miss .poster-grid-inline-img {
    opacity: 0.38 !important;
    filter: grayscale(1) brightness(0.88);
}

td.poster-cell-has .poster-grid-inline-img,
.poster-cell-wrap.poster-cell-has .poster-grid-inline-img {
    opacity: 1 !important;
    filter: none;
}

/* Quill HTML-редактор в форме разделов сайта */
.cq-quill-form-field .x-form-text-wrap {
    position: relative;
}

.cq-quill-host .ql-toolbar.ql-snow {
    border-radius: 4px 4px 0 0;
    background: #fafafa;
}

.cq-quill-host .ql-container.ql-snow {
    border-radius: 0 0 4px 4px;
    font-family: inherit;
    font-size: 14px;
}

.cq-quill-host .ql-editor {
    min-height: 320px;
}