.search-dialog.ui-dialog.ui-resizable {
    .ui-resizable-handle {
        position: absolute;
        width: 20px;
        height: 20px;
    }
    .ui-resizable-w {  
        top: 0;
        left: 0;
        bottom: 0;
        width: 10px;
        height: auto;
        cursor: w-resize;
    }
    .ui-resizable-e {  
        top: 0;
        right: 0;
        bottom: 0;
        width: 10px;
        height: auto;
        cursor: e-resize;
    }
    .ui-resizable-n {  
        top: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 10px;
        cursor: n-resize;
    }
    .ui-resizable-s {  
        left: 0;
        right: 0;
        bottom: 0;
        width: auto;
        height: 10px;
        cursor: s-resize;
    }
    .ui-resizable-nw {  
        top: 0;
        left: 0;
        cursor: nw-resize;
    }
    .ui-resizable-ne {  
        top: 0;
        right: 0;
        cursor: ne-resize;
    }
    .ui-resizable-sw {  
        left: 0;
        bottom: 0;
        cursor: sw-resize;
    }
    .ui-resizable-se {  
        right: 0;
        bottom: 0;
        cursor: se-resize;
    }
    .ui-resizable-sw {  
        left: 0;
        bottom: 0;
        cursor: sw-resize;
    }
}
.dialog-modal-search { 
    display: flex;
    flex-direction: column;
    align-items: inherit;
    justify-content: flex-start;
}   
.dialog-modal-search .list-box-rows-small-dialog,
.dialog-modal-search .list-box-images-dialog { 
    height: auto;
}   
.dialog-toolbar.dialog-search-toolbar {
    display: flex;
    align-items: center;
}  
.dialog-toolbar.dialog-search-toolbar .edit[type="search"] {
    flex: 1;
}  
.dialog-toolbar.dialog-search-toolbar select {
    width: 240px;
}  
.dialog-toolbar.dialog-search-toolbar label {
    display: none;
    align-self: center;
    font-size: 20px;
    padding: 8px 1px;
    flex: 1;
}  
.dialog-area.dialog-search-area {
    display: flex;
    height: 100%;
    flex-direction: row;
    align-content: stretch;
    align-items: stretch;
    overflow: hidden;
} 
.dialog-area.dialog-search-area .list {
    width: 100%;
} 
.dialog-area.dialog-search-area .dialog-search-preview {
    display: none;
} 
.dialog-area.dialog-search-area .dialog-search-preview.empty::before { 
    position: absolute;
    content: 'Podgląd niedostępny';
    color: var(--fade-color);
    display: block;
    top: 50%;
    left: 0;
    width: 100%;  
    padding: 20px;
    text-align: center;
    transform: translateY(-50%);
    box-sizing: border-box;
} 
.dialog-area.dialog-search-area .dialog-search-preview iframe { 
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;  
    height: 100%; 
    border: none;
    outline: none;
    overflow: hidden;
    overflow-y: scroll;  
} 
.dialog-area.dialog-search-area.dialog-preview-area .dialog-search-preview {  
    background: var(--bg-color);
    border: var(--border-color) 1px solid;
    display: block; 
    width: 300px;
    min-width: 300px;
    height: auto;
    overflow: hidden;
    position: relative;
} 
.dialog-area.dialog-search-area.dialog-preview-area .list.list-box-rows li a strong span {    
    margin-right: 0;
} 
.dialog-area.dialog-search-area.dialog-preview-area .list.list-box-rows li a time {  
    display: none;
} 

.dialog-preview-inside {
    color: var(--txt-color-variant);
    background: var(--bg-color);
    color: var(--txt-color);
    font-family: Roboto, Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    img.main-image {
        width: 100%;
        display: block;
        margin: 0;
        padding: 0;
    }
    img.main-image.zoom {
        cursor: zoom-in;
    }
    strong {
        font-size: 16px;
        display: block;
        margin: 14px 10px;
    }
    p {
        display: block;
        margin: 14px 10px;
    }
    strong + p {
        margin-top: -8px;
    }
    p + dl,
    strong + dl {
        border-top: var(--border-color) 1px solid;
        padding-top: 14px;
    }
    dl {
        display: grid;
        grid-template-columns: 125px auto;
        margin: 14px 10px;
        dt,
        dd {
            margin: 0;
        }
        dt:last-of-type,
        dd:last-of-type {
            padding-bottom: 0;
        }
        dt {
            padding: 0 10px 5px 0;
        }
        dd {
            padding: 0 0 5px 0;
            span {
                color: var(--txt-color-variant);
            }
        }
    }
    b.licensed,
    b.sponsored {
        background: #ED1C24;
        color: #FFF;
        display: block;
        font-size: 14px;
        padding: 7px 10px;
        margin: 0 0 14px 0;
    }
    b.sponsored {
        background: #0074E8;
    }
    div.post-preview {
        background: var(--bg-variant-color);
        padding: 10px;
        zoom: 0.9;
        display: flex;
        justify-content: center;
    }
    div.post-preview.post-preview-facebook {
        zoom: 0.6;
    }
}