.gx-rd-wrap {
    --gx-rd-height: 500px;
    --gx-rd-bg: #e9e9e9;
    --gx-rd-text: #34495e;
    --gx-rd-muted: #536271;
    --gx-rd-folder: #f6b61f;
    --gx-rd-video: #f28a2e;
    --gx-rd-document: #2d7dd2;
    --gx-rd-archive: #8a6fdb;
    --gx-rd-audio: #38a169;
    --gx-rd-image: #d14f7b;
    --gx-rd-file: #718096;
    color: var(--gx-rd-text);
    font-family: inherit;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.gx-rd-wrap *,
.gx-rd-wrap *::before,
.gx-rd-wrap *::after {
    box-sizing: border-box;
}

.gx-rd-title {
    margin: 1.5rem 0 0.75rem;
}

.gx-rd-box {
    height: var(--gx-rd-height);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: auto;
    padding: 7px 10px;
    border-radius: 3px;
    background: var(--gx-rd-bg);
    scrollbar-gutter: stable;
}

.gx-rd-list {
    margin: 0;
    padding: 0 0 0 25px;
    list-style: none;
    max-width: 100%;
}

.gx-rd-box > .gx-rd-list {
    padding-left: 4px;
}

.gx-rd-item {
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.gx-rd-row {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    gap: 6px;
    color: var(--gx-rd-text);
    font-size: 15px;
    line-height: 30px;
    vertical-align: top;
}

.gx-rd-item--folder > .gx-rd-row {
    font-size: 17px;
    font-weight: 700;
}

.gx-rd-name {
    display: inline-block;
    max-width: 100%;
    padding-right: 20px;
}

.gx-rd-meta {
    margin-left: 8px;
    color: var(--gx-rd-muted);
    font-size: 12px;
    font-weight: 400;
}

.gx-rd-error {
    margin: 16px 0;
    padding: 10px 12px;
    border-left: 4px solid #c05621;
    background: #fff7ed;
    color: #7c2d12;
    font-size: 14px;
    line-height: 1.6;
}

.gx-rd-pdf-open {
    display: inline-flex;
    min-width: 54px;
    min-height: 26px;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    padding: 2px 9px;
    border: 1px solid #b8c4d4;
    border-radius: 4px;
    background: #ffffff;
    color: #24548f;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    line-height: 1.2;
}

.gx-rd-pdf-open:hover,
.gx-rd-pdf-open:focus {
    border-color: #2d7dd2;
    color: #17416f;
    outline: none;
}

.gx-pdf-preview,
.gx-pdf-inline {
    --gx-pdf-height: 700px;
    width: 100%;
    max-width: 100%;
    color: var(--gx-rd-text, #34495e);
    font-family: inherit;
    overflow: hidden;
}

.gx-pdf-preview *,
.gx-pdf-preview *::before,
.gx-pdf-preview *::after,
.gx-pdf-inline *,
.gx-pdf-inline *::before,
.gx-pdf-inline *::after {
    box-sizing: border-box;
}

.gx-pdf-preview__title {
    margin: 1.5rem 0 0.75rem;
}

.gx-pdf-preview__frame {
    width: 100%;
    height: var(--gx-pdf-height);
    max-width: 100%;
    overflow: auto;
    padding: 0 12px 12px;
    border: 0;
    border-radius: 3px;
    background: #74777a;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
}

.gx-pdf-inline {
    margin: 8px 0 12px 25px;
    white-space: normal;
}

.gx-pdf-inline[hidden] {
    display: none;
}

.gx-pdf-preview__viewport {
    min-height: 130px;
}

.gx-pdf-preview__toolbar {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    min-height: 38px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 -12px 12px;
    padding: 0 12px;
    background: #323639;
    color: #f3f4f6;
    font-size: 13px;
    line-height: 1.2;
}

.gx-pdf-preview__label {
    min-width: 0;
    overflow: hidden;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gx-pdf-preview__badge {
    flex: 0 0 auto;
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 3px;
    color: #e5e7eb;
    font-size: 12px;
}

.gx-pdf-preview__pages {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.gx-pdf-preview__page {
    width: min(100%, 980px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 2px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.22);
}

.gx-pdf-preview__page img {
    display: block;
    width: 100%;
    height: auto;
}

.gx-pdf-preview__status,
.gx-pdf-preview__error {
    display: flex;
    min-height: 130px;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 4px;
    background: #ffffff;
    color: #536271;
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.gx-pdf-preview__error {
    border-left: 4px solid #c05621;
    background: #fff7ed;
    color: #7c2d12;
}

.gx-rd-icon {
    display: inline-block;
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    background-color: var(--gx-rd-file);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.gx-rd-icon-folder > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-folder);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.5A2.5 2.5 0 0 1 5.5 4h4.2c.8 0 1.55.38 2.02 1.03L12.42 6H18.5A2.5 2.5 0 0 1 21 8.5v8A2.5 2.5 0 0 1 18.5 19h-13A2.5 2.5 0 0 1 3 16.5v-10Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.5A2.5 2.5 0 0 1 5.5 4h4.2c.8 0 1.55.38 2.02 1.03L12.42 6H18.5A2.5 2.5 0 0 1 21 8.5v8A2.5 2.5 0 0 1 18.5 19h-13A2.5 2.5 0 0 1 3 16.5v-10Z'/%3E%3C/svg%3E");
}

.gx-rd-icon-video > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-video);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 3A2.5 2.5 0 0 0 3 5.5v13A2.5 2.5 0 0 0 5.5 21h13a2.5 2.5 0 0 0 2.5-2.5v-13A2.5 2.5 0 0 0 18.5 3h-13Zm1 2h2v3h-2V5Zm4 0h3v14h-3V5Zm5 0h2v3h-2V5Zm-9 5h2v4h-2v-4Zm9 0h2v4h-2v-4Zm-9 6h2v3h-2v-3Zm9 0h2v3h-2v-3Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 3A2.5 2.5 0 0 0 3 5.5v13A2.5 2.5 0 0 0 5.5 21h13a2.5 2.5 0 0 0 2.5-2.5v-13A2.5 2.5 0 0 0 18.5 3h-13Zm1 2h2v3h-2V5Zm4 0h3v14h-3V5Zm5 0h2v3h-2V5Zm-9 5h2v4h-2v-4Zm9 0h2v4h-2v-4Zm-9 6h2v3h-2v-3Zm9 0h2v3h-2v-3Z'/%3E%3C/svg%3E");
}

.gx-rd-icon-document > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-document);
}

.gx-rd-icon-archive > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-archive);
}

.gx-rd-icon-audio > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-audio);
}

.gx-rd-icon-image > .gx-rd-row > .gx-rd-icon {
    background-color: var(--gx-rd-image);
}

.gx-rd-icon-file > .gx-rd-row > .gx-rd-icon,
.gx-rd-icon-document > .gx-rd-row > .gx-rd-icon,
.gx-rd-icon-archive > .gx-rd-row > .gx-rd-icon,
.gx-rd-icon-audio > .gx-rd-row > .gx-rd-icon,
.gx-rd-icon-image > .gx-rd-row > .gx-rd-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3A2.5 2.5 0 0 0 4 5.5v13A2.5 2.5 0 0 0 6.5 21h11a2.5 2.5 0 0 0 2.5-2.5V9.25a2.5 2.5 0 0 0-.73-1.77l-3.75-3.75A2.5 2.5 0 0 0 13.75 3H6.5Zm7 2.2V8a2.5 2.5 0 0 0 2.5 2.5h2.8v8a.3.3 0 0 1-.3.3h-12a.3.3 0 0 1-.3-.3v-13a.3.3 0 0 1 .3-.3h7Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 3A2.5 2.5 0 0 0 4 5.5v13A2.5 2.5 0 0 0 6.5 21h11a2.5 2.5 0 0 0 2.5-2.5V9.25a2.5 2.5 0 0 0-.73-1.77l-3.75-3.75A2.5 2.5 0 0 0 13.75 3H6.5Zm7 2.2V8a2.5 2.5 0 0 0 2.5 2.5h2.8v8a.3.3 0 0 1-.3.3h-12a.3.3 0 0 1-.3-.3v-13a.3.3 0 0 1 .3-.3h7Z'/%3E%3C/svg%3E");
}

@media (max-width: 640px) {
    .gx-rd-box {
        height: min(var(--gx-rd-height), 70vh);
        overflow-x: hidden;
        padding: 8px 8px;
    }

    .gx-rd-list {
        padding-left: 14px;
    }

    .gx-rd-box > .gx-rd-list {
        padding-left: 0;
    }

    .gx-rd-item {
        min-width: 0;
        white-space: normal;
    }

    .gx-rd-row {
        display: flex;
        width: 100%;
        min-width: 0;
        min-height: 28px;
        align-items: flex-start;
        gap: 5px;
        padding: 3px 0;
        font-size: 14px;
        line-height: 1.55;
        white-space: normal;
    }

    .gx-rd-item--folder > .gx-rd-row {
        font-size: 15px;
        line-height: 1.5;
    }

    .gx-rd-icon {
        width: 17px;
        height: 17px;
        flex-basis: 17px;
        margin-top: 2px;
    }

    .gx-rd-name {
        flex: 1 1 auto;
        min-width: 0;
        padding-right: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
        white-space: normal;
    }

    .gx-rd-meta {
        display: inline-block;
        margin-left: 6px;
        white-space: nowrap;
    }

    .gx-rd-pdf-open {
        min-width: 48px;
        min-height: 24px;
        margin-left: 0;
        padding: 2px 8px;
        font-size: 12px;
    }

    .gx-pdf-inline {
        margin-left: 0;
    }

    .gx-pdf-preview__frame {
        height: min(var(--gx-pdf-height), 72vh);
        height: min(var(--gx-pdf-height), 72dvh);
        max-height: 640px;
        min-height: 360px;
        padding: 0 8px 8px;
        border-radius: 2px;
    }

    .gx-pdf-preview__toolbar {
        margin: 0 -8px 8px;
        padding: 0 8px;
    }

    .gx-pdf-preview__pages {
        gap: 8px;
    }

    .gx-pdf-preview__page {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .gx-rd-list {
        padding-left: 10px;
    }

    .gx-rd-meta {
        display: block;
        margin: 2px 0 0;
    }
}

@media (min-width: 361px) and (max-width: 480px) {
    .gx-pdf-preview__frame {
        max-height: 480px;
    }
}

@media (max-width: 360px) {
    .gx-pdf-preview__frame {
        max-height: 460px;
    }
}
