/**
 * Skipped minification because the original files appears to be already minified.
 * Original file: /npm/jspreadsheet@10.1.7/dist/jspreadsheet.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
:root {
    --border-color: #000;
}

.jss_container {
    display: inline-block;
    box-sizing: border-box;
    overscroll-behavior: contain;
    outline: none;
}

    .jss_container.jtabs {
        max-width: initial;
    }

    .jss_container.fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        margin: 0;
        background-color: #fff;
        z-index: 6;
        display: flex;
        flex-direction: column;
    }

        .jss_container.fullscreen .jtabs-content {
            flex: 1;
            overflow: hidden;
        }

        .jss_container.fullscreen .jss_worksheet {
            height: 100%;
            flex-direction: column;
            align-content: stretch;
        }

            .jss_container.fullscreen .jss_worksheet.jtabs-selected {
                display: flex;
            }

            .jss_container.fullscreen .jss_worksheet .jss_content {
                flex: 1;
                width: 100% !important;
                max-width: initial !important;
                max-height: initial !important;
            }

    .jss_container .jss_filter {
        margin-top: 5px;
        padding-top: 5px;
    }

.jss_content {
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    scrollbar-width: thin;
}

.jss_content_overflow {
    width: 100%;
    height: 100%;
}

.jss_container.fullscreen .jss_content, .jss_content_overflow {
    overflow: auto;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

    .jss_container.fullscreen .jss, .jss_content_overflow .jss {
        position: absolute;
        top: 0;
        left: 0;
    }

.jss_content::-webkit-scrollbar {
    height: 12px;
}

.jss_content::-webkit-scrollbar {
    width: 12px;
}

.jss_content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.jss_content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
}

    .jss_content::-webkit-scrollbar-thumb:hover {
        background-color: #a8a8a8;
    }

.jss_content::-webkit-scrollbar-button:single-button {
    background-color: #f1f1f1;
    background-size: 12px;
    background-repeat: no-repeat;
    height: 12px;
    width: 12px;
}

    .jss_content::-webkit-scrollbar-button:single-button:hover {
        background-color: #d2d2d2;
    }

    .jss_content::-webkit-scrollbar-button:single-button:active {
        background-color: #787878;
    }

    .jss_content::-webkit-scrollbar-button:single-button:vertical:increment {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(80, 80, 80)'><polygon points='25,30 75,30 50,70'/></svg>");
    }

        .jss_content::-webkit-scrollbar-button:single-button:vertical:increment:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(255, 255, 255)'><polygon points='25,30 75,30 50,70'/></svg>");
        }

    .jss_content::-webkit-scrollbar-button:single-button:vertical:decrement {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(80, 80, 80)'><polygon points='25,70 75,70 50,30'/></svg>");
    }

        .jss_content::-webkit-scrollbar-button:single-button:vertical:decrement:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(255, 255, 255)'><polygon points='25,70 75,70 50,30'/></svg>");
        }

    .jss_content::-webkit-scrollbar-button:single-button:horizontal:increment {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(80, 80, 80)'><polygon points='30,25 30,75 70,50'/></svg>");
    }

        .jss_content::-webkit-scrollbar-button:single-button:horizontal:increment:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(255, 255, 255)'><polygon points='30,25 30,75 70,50'/></svg>");
        }

    .jss_content::-webkit-scrollbar-button:single-button:horizontal:decrement {
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(80, 80, 80)'><polygon points='70,25 70,75 30,50'/></svg>");
    }

        .jss_content::-webkit-scrollbar-button:single-button:horizontal:decrement:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(255, 255, 255)'><polygon points='70,25 70,75 30,50'/></svg>");
        }

@supports (-moz-appearance:none) {
    .jss_content table {
        margin-bottom: 2px;
    }
}

.jss {
    border-collapse: separate;
    table-layout: fixed;
    white-space: nowrap;
    empty-cells: show;
    background-color: #fff;
    width: 0;
    outline: none;
    border-top: 0;
    border-left: 0;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

    .jss.jss_left > tbody > tr > td, .jss > tbody > tr > td.jss_left {
        text-align: left;
    }

    .jss.jss_center > tbody > tr > td, .jss > tbody > tr > td.jss_center {
        text-align: center;
    }

    .jss.jss_right > tbody > tr > td, .jss > tbody > tr > td.jss_right {
        text-align: right;
    }

    .jss > thead > tr > th {
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        border-right: 1px solid transparent;
        border-bottom: 1px solid transparent;
        background-color: #f3f3f3;
        padding: 6px;
        cursor: pointer;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: ellipsis;
        position: sticky;
        top: 0;
        z-index: 4;
        background-repeat: no-repeat;
        background-position: center right 0;
        line-height: 1em;
        font-size: 1em;
        font-weight: normal;
    }

@supports (-ms-ime-align:auto) {
    .jss > thead > tr > th {
        box-shadow: inset 1px 0 0 0 #ccc;
    }
}

.jss > thead > tr > th:first-child:after, .jss > thead > tr.jss_nested > th::before, .jss > thead > tr.jss_nested > th::after {
    cursor: default;
}

.jss > thead > tr > th:first-child {
    box-shadow: 1px 0 0 0 #ccc;
}

.jss > thead > tr > th.selected {
    background-color: #dcdcdc;
    border-bottom: 1px solid transparent;
}

.jss > thead > tr > th.jss_filters_icon::before {
    font-family: "Material Icons";
    content: 'filter_alt';
    position: absolute;
    right: 0;
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #ccc;
}

.jss > thead > tr > th.jss_filters_active::before {
    color: #888;
}

.jss > tbody > tr > td {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    box-sizing: border-box;
    padding: 4px;
    line-height: 1em;
    height: 24px;
    text-align: center;
    white-space: pre;
    overflow: hidden;
}

    .jss > tbody > tr > td.jss_wrap {
        white-space: initial;
    }

.jss_overflow > tbody > tr > td:not(.jss_frozen):has(+td:empty) {
    overflow: initial;
}

.jss_overflow > tbody > tr > td:has(+td.jss_hidden:empty) {
    overflow: hidden;
}

.jss_hidden_col, .jss_hidden_row {
    visibility: collapse;
}

.jss_hidden_col {
    width: 0px;
}

.jss_hidden_row {
    display: none;
}

.jss > tbody > tr > td:last-child {
    overflow: hidden;
}

.jss > tbody > tr > td > img {
    max-width: 40px;
    vertical-align: bottom;
}

    .jss > tbody > tr > td > img.round {
        object-fit: cover;
        border-radius: 40px;
        height: 40px;
    }

    .jss > tbody > tr > td > img.small {
        width: 24px;
        height: 24px;
    }

.jss > tbody > tr > td.readonly {
    color: rgba(0,0,0,0.4)
}

.jss > tbody > tr > td > select, .jss > tbody > tr > td > input, .jss > tbody > tr > td > textarea {
    border: 0;
    border-radius: 0;
    outline: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-sizing: border-box;
}

.jss > tbody > tr > td > textarea {
    resize: none;
    display: block;
}

.jss > tbody > tr > td > input[type=checkbox], .jss > tbody > tr > td > input[type=radio] {
    display: block;
    width: initial;
    margin: 0 auto;
}

.jss > tbody > tr > td.readonly > input[type=checkbox], .jss > tbody > tr > td.readonly > input[type=radio] {
    pointer-events: none;
    opacity: 0.5;
}

.jss > tbody > tr > td.jss_dropdown {
    background-repeat: no-repeat;
    background-position: top 50% right 0;
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E");
    text-overflow: ellipsis;
    overflow-x: hidden;
    padding-right: 16px;
}

    .jss > tbody > tr > td.jss_dropdown:hover {
        background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    }

.jss > tbody > tr > td.jss_dropdown_tags {
    white-space: pre-wrap;
}

.jss > tbody > tr > td.jss_dropdown[title] {
    background: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='lightgray'/%3E%3C/svg%3E") top 50% right 5px no-repeat, url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=') top 0 right -1px no-repeat;
    background-color: #fff;
}

.jss > tbody > tr > td.jss_richtext {
    white-space: initial !important;
}

.jss > tbody > tr > td > .color {
    width: 90%;
    height: 10px;
    margin: auto;
    pointer-events: none;
}

.jss > tbody > tr > td.jss_cursor a {
    text-decoration: underline;
    color: blue;
    cursor: pointer;
}

.jss > tbody > tr > td.jss_progressbar {
    padding-left: 10px;
    padding-right: 10px;
}

    .jss > tbody > tr > td.jss_progressbar > div {
        height: 5px;
        background-color: red;
        background-clip: content-box;
    }

.jss > tfoot > tr > td {
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    border-right: 1px solid transparent;
    border-bottom: 1px solid transparent;
    background-color: #f3f3f3;
    padding: 2px;
    cursor: pointer;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
    position: sticky;
    bottom: 0;
    z-index: 1;
}

.jss_corner {
    position: absolute;
    background-color: #000;
    height: 1px;
    width: 1px;
    border: 1px solid #FFF;
    top: -2000px;
    left: -2000px;
    cursor: crosshair;
    box-sizing: initial;
    z-index: 2;
    padding: 2px;
}

.jss, .jss_corner, .jss td, .jss > tbody > tr > td > img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.jss_textarea {
    position: fixed;
    width: 0;
    height: 0;
    opacity: 0;
}

.jss_input {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    box-sizing: border-box;
    white-space: pre-wrap;
    line-height: 1;
    outline: none;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
}

.jss_dialog {
    width: 320px !important;
    height: 240px !important;
    min-width: 320px;
    min-height: 240px;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -webkit-box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.14);
    box-shadow: 2px 2px 8px 2px rgba(0,0,0,0.14);
    text-align: left;
    box-sizing: border-box;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    background-color: #f8f8f8;
}

    .jss_dialog::-webkit-scrollbar {
        width: 12px;
        height: 12px;
    }

    .jss_dialog::-webkit-scrollbar-track {
        border: 1px solid #fff;
        background: #eee;
    }

    .jss_dialog::-webkit-scrollbar-thumb {
        border: 1px solid #fff;
        background: #888;
    }

    .jss_dialog.jclose:after {
        position: absolute;
        top: 0;
        right: 0;
        margin: 20px;
        content: 'close';
        font-family: 'Material icons';
        font-size: 24px;
        width: 24px;
        height: 24px;
        line-height: 24px;
        cursor: pointer;
        text-shadow: 0 0 5px #fff;
    }

    .jss_dialog[title]:before {
        margin: 10px;
        content: attr(title);
        position: absolute;
        top: 0;
        right: 0;
        line-height: 24px;
    }

    .jss_dialog .jtoolbar {
        height: initial;
    }

.jss_input.jss_formula {
    white-space: nowrap;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
}

.jss_input.jss_nowrap {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
}

.jss_input.jss_focus {
    padding: 4px;
    pointer-events: initial;
    opacity: 1;
    filter: alpha(opacity=100);
    background-color: #fff;
}

.jss_input[contentEditable=false] {
    padding: 0 !important;
}

    .jss_input[contentEditable=false] > input {
        outline: none;
        border: 0;
        padding: 4px;
        padding-left: 6px;
        max-width: 100%;
        margin: 0;
    }

.jss_input .jdropdown-header {
    border: 0 !important;
    outline: none !important;
    padding: 4px !important;
    padding-left: 6px !important;
    height: 100%;
    background-position: top 50% right 0;
}

.jss_input .jdropdown-container-header {
    padding: 0;
    margin: 0;
    height: initial;
}

.jss_input .jdropdown-picker {
    border: 0 !important;
    padding: 0 !important;
    width: initial;
    height: initial;
}

.jss_input .jeditor {
    padding: 15px;
}

.jss .error {
    border: 1px solid red;
}

.jss thead th.resizing {
    border-right-style: dotted !important;
    border-right-color: red !important;
}

.jss tbody tr.resizing > td {
    border-bottom-style: dotted !important;
    border-bottom-color: red !important;
}

.jss tbody td.resizing {
    border-right-style: dotted !important;
    border-right-color: red !important;
}

.jss tbody td[title] {
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAgAAAAICAYAAADED76LAAAACXBIWXMAAAsTAAALEwEAmpwYAAAFuGlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDUgNzkuMTYzNDk5LCAyMDE4LzA4LzEzLTE2OjQwOjIyICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdEV2dD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlRXZlbnQjIiB4bWxuczpkYz0iaHR0cDovL3B1cmwub3JnL2RjL2VsZW1lbnRzLzEuMS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiIHhtcDpDcmVhdGVEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wOk1ldGFkYXRhRGF0ZT0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHhtcDpNb2RpZnlEYXRlPSIyMDE5LTAxLTMxVDE4OjU1OjA4WiIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDphMTlhZDJmOC1kMDI2LTI1NDItODhjOS1iZTRkYjkyMmQ0MmQiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDpkOGI5NDUyMS00ZjEwLWQ5NDktYjUwNC0wZmU1N2I3Nzk1MDEiIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkhpc3Rvcnk+IDxyZGY6U2VxPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY3JlYXRlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplMzdjYmE1ZS1hYTMwLWNkNDUtYTAyNS1lOWYxZjk2MzUzOGUiIHN0RXZ0OndoZW49IjIwMTktMDEtMzFUMTg6NTU6MDhaIiBzdEV2dDpzb2Z0d2FyZUFnZW50PSJBZG9iZSBQaG90b3Nob3AgQ0MgMjAxOSAoV2luZG93cykiLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmExOWFkMmY4LWQwMjYtMjU0Mi04OGM5LWJlNGRiOTIyZDQyZCIgc3RFdnQ6d2hlbj0iMjAxOS0wMS0zMVQxODo1NTowOFoiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCBDQyAyMDE5IChXaW5kb3dzKSIgc3RFdnQ6Y2hhbmdlZD0iLyIvPiA8L3JkZjpTZXE+IDwveG1wTU06SGlzdG9yeT4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4En6MDAAAAX0lEQVQYlX3KOw6AIBBAwS32RpJADXfx0pTET+ERZJ8F8RODFtONsG0QAoh0CSDM82dqodaBdQXnfoLZQM7gPai+wjNNE8R4pTuAYNZSKZASqL7CMy0LxNgJp30fKYUDi3+vIqb/+rUAAAAASUVORK5CYII=');
    background-repeat: no-repeat;
    background-position: top 0 right -1px;
    background-color: #fff;
}

.jss .sp-replacer {
    margin: 2px;
    border: 0;
}

.jss_about {
    float: right;
    font-size: 0.7em;
    padding: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: none;
}

    .jss_about a {
        color: #ccc;
        text-decoration: none;
    }

    .jss_about img {
        display: none;
    }

.jss_search_container {
    display: flex;
    justify-content: space-between;
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    border-bottom: 0;
}

    .jss_search_container > div {
        display: inline-block;
        padding: 8px;
        align-items: center;
    }

        .jss_search_container > div:empty {
            display: none;
        }

.jss_pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .jss_pagination > div {
        display: flex;
        padding: 8px;
        font-size: 0.9em
    }

        .jss_pagination > div:last-child {
            padding-right: 10px;
            padding-top: 10px;
        }

        .jss_pagination > div > div {
            text-align: center;
            width: 36px;
            height: 36px;
            line-height: 34px;
            border: 1px solid #ccc;
            box-sizing: border-box;
            margin-left: 2px;
            cursor: pointer;
        }

.jss_page {
    font-size: 0.8em;
}

.jss_page_selected {
    font-weight: bold;
    background-color: #f3f3f3;
}

.jss_toolbar {
    background-color: #f3f3f3;
    border: 1px solid #ccc;
    padding: 4px;
    margin-top: 1px;
    margin-bottom: 1px;
    position: sticky;
    top: 0;
    z-index: 6;
    min-width: fit-content;
}

.jss_container.fullscreen .jss_toolbar {
    position: relative;
    margin-bottom: 1px;
    margin-right: 0;
}

.jss_toolbar .jtoolbar-item:hover {
    background-color: #eaeaea;
}

.jss_toolbar .jtoolbar-item > .jpicker-header:hover {
    background-color: #eaeaea !important;
}

.jss_toolbar:empty {
    display: none;
}

.jss_toolbar i.jss_toolbar_item {
    width: 24px;
    height: 24px;
    padding: 4px;
    cursor: pointer;
    display: inline-block;
}

.jss_toolbar .jss_toolbar_selected {
    background-color: #eaeaea;
}

.jss_toolbar::-webkit-scrollbar {
    display: none;
}

.jss_tabs > .jss_tab {
    display: none;
}

.jss_tabs > .jss_tab_link {
    display: inline-block;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-right: 5px;
    margin-bottom: 5px;
    background-color: #f3f3f3;
    cursor: pointer;
}

    .jss_tabs > .jss_tab_link.selected {
        background-color: #ddd;
    }

.jss_hidden_index > thead > tr > th:first-child, .jss_hidden_index > tbody > tr > td:first-child, .jss_hidden_index > tfoot > tr > td:first-child, .jss_hidden_index > colgroup > col:first-child {
    visibility: collapse;
    width: 1px;
}

.jss_border {
    position: absolute;
    border: 1px solid transparent;
    pointer-events: none;
    opacity: 0.6;
    box-sizing: border-box;
    z-index: 2;
}

.jss_border_main {
    border: 1px solid #000;
    background-color: #00000010;
    background-origin: content-box;
}

.jss_border_copying {
    background: url('data:image/gif;base64,R0lGODlhWAIBAPAAAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAAABACwAAAAAWAIBAAACQ0QeoIbL51BaMjZ6VcWQT509n2h1oEl65bidbNim7kqr9nzLeszDPtoD/l7CIvFYwyl3wyTT6Awic9Jok3pdVrFQRQEAIfkECQAAAQAsAAAAAFgCAQAAAkIEgmGWur1OivBNi+hlW2bscJ8YemVFaqOpnh3Kgu0s16kd33rOw/4LXP2EQRfxaEzSdkMlrrnsFaPQ59SKpF6Z1wIAIfkECQAAAQAsAAAAAFgCAQAAAkKEg2GXC6kWdFM2i+hlGUf+PZvYgVpJhpXpneq4pu7c1uwt2zke9/CP8gWBr6GxiKTxiMqdU5jUQZtTKdN6pF6X2QIAIfkECQAAAQAsAAAAAFgCAQAAAkOEERmHyroOfE5WM22iW0d8NR04ip/JnRmphivqpXJMs7Ndw/iu9+/vCpaAQ2GriDwqbz4jk7jMQZ9OaZU3tSapSEABACH5BAkAAAEALAAAAABYAgEAAAJDDA6hhsvnUFoyNnpVxZBPnT2faHWgSXrluJ1s2KbuSqv2fMt6zMM+2gP+XsIi8VjDKXfDJNPoDCJz0miTel1WsVBFAQAh+QQJAAABACwAAAAAWAIBAAACQkyAYJa6vU6K8E2L6GVbZuxwnxh6ZUVqo6meHcqC7SzXqR3fes7D/gtc/YRBF/FoTNJ2QyWuuewVo9Dn1IqkXpnXAgAh+QQJAAABACwAAAAAWAIBAAACQoyBYJcbqRZ0UzaL6GUZR/49m9iBWkmGlemd6rim7tzW7C3bOR738I/yBYGvobGIpPGIyp1TmNRBm1Mp03qkXpfZAgAh+QQFAAABACwAAAAAWAIBAAACQowDCYfKug58TlYzbaJbR3w1HTiKn8mdGamGK+qlckyzs13D+K737+8KloBDYauIPCpvPiOTuMxBn05plTe1JqnJAgA7') repeat-x border-box top, url('data:image/gif;base64,R0lGODlhWAIBAPAAAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAAABACwAAAAAWAIBAAACQ0QeoIbL51BaMjZ6VcWQT509n2h1oEl65bidbNim7kqr9nzLeszDPtoD/l7CIvFYwyl3wyTT6Awic9Jok3pdVrFQRQEAIfkECQAAAQAsAAAAAFgCAQAAAkIEgmGWur1OivBNi+hlW2bscJ8YemVFaqOpnh3Kgu0s16kd33rOw/4LXP2EQRfxaEzSdkMlrrnsFaPQ59SKpF6Z1wIAIfkECQAAAQAsAAAAAFgCAQAAAkKEg2GXC6kWdFM2i+hlGUf+PZvYgVpJhpXpneq4pu7c1uwt2zke9/CP8gWBr6GxiKTxiMqdU5jUQZtTKdN6pF6X2QIAIfkECQAAAQAsAAAAAFgCAQAAAkOEERmHyroOfE5WM22iW0d8NR04ip/JnRmphivqpXJMs7Ndw/iu9+/vCpaAQ2GriDwqbz4jk7jMQZ9OaZU3tSapSEABACH5BAkAAAEALAAAAABYAgEAAAJDDA6hhsvnUFoyNnpVxZBPnT2faHWgSXrluJ1s2KbuSqv2fMt6zMM+2gP+XsIi8VjDKXfDJNPoDCJz0miTel1WsVBFAQAh+QQJAAABACwAAAAAWAIBAAACQkyAYJa6vU6K8E2L6GVbZuxwnxh6ZUVqo6meHcqC7SzXqR3fes7D/gtc/YRBF/FoTNJ2QyWuuewVo9Dn1IqkXpnXAgAh+QQJAAABACwAAAAAWAIBAAACQoyBYJcbqRZ0UzaL6GUZR/49m9iBWkmGlemd6rim7tzW7C3bOR738I/yBYGvobGIpPGIyp1TmNRBm1Mp03qkXpfZAgAh+QQFAAABACwAAAAAWAIBAAACQowDCYfKug58TlYzbaJbR3w1HTiKn8mdGamGK+qlckyzs13D+K737+8KloBDYauIPCpvPiOTuMxBn05plTe1JqnJAgA7') repeat-x border-box bottom, url('data:image/gif;base64,R0lGODlhAQCQAfAAAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAAABACwAAAAAAQCQAQACM0QeoIbL51BaMjZ6VcWQT509n2h1oEl65bidbNim7kqr9nzLeszDPtoD/l7CIvFYwyllBQAh+QQJAAABACwAAAAAAQCQAQACMwSCYZa6vU6K8E2L6GVbZuxwnxh6ZUVqo6meHcqC7SzXqR3fes7D/gtc/YRBF/FoTNJuBQAh+QQJAAABACwAAAAAAQCQAQACM4SDYZcLqRZ0UzaL6GUZR/49m9iBWkmGlemd6rim7tzW7C3bOR738I/yBYGvobGIpPEaBQAh+QQJAAABACwAAAAAAQCQAQACNIQRGYfKug58TlYzbaJbR3w1HTiKn8mdGamGK+qlckyzs13D+K737+8KloBDYauIPCo5gAIAIfkECQAAAQAsAAAAAAEAkAEAAjMMDqGGy+dQWjI2elXFkE+dPZ9odaBJeuW4nWzYpu5Kq/Z8y3rMwz7aA/5ewiLxWMMpZQUAIfkECQAAAQAsAAAAAAEAkAEAAjNMgGCWur1OivBNi+hlW2bscJ8YemVFaqOpnh3Kgu0s16kd33rOw/4LXP2EQRfxaEzSbgUAIfkECQAAAQAsAAAAAAEAkAEAAjOMgWCXG6kWdFM2i+hlGUf+PZvYgVpJhpXpneq4pu7c1uwt2zke9/CP8gWBr6GxiKTxGgUAIfkEBQAAAQAsAAAAAAEAkAEAAjOMAwmHyroOfE5WM22iW0d8NR04ip/JnRmphivqpXJMs7Ndw/iu9+/vCpaAQ2GriDwqUwUAOw==') repeat-y border-box left, url('data:image/gif;base64,R0lGODlhAQCQAfAAAAAAAP///yH/C05FVFNDQVBFMi4wAwEAAAAh+QQJAAABACwAAAAAAQCQAQACM0QeoIbL51BaMjZ6VcWQT509n2h1oEl65bidbNim7kqr9nzLeszDPtoD/l7CIvFYwyllBQAh+QQJAAABACwAAAAAAQCQAQACMwSCYZa6vU6K8E2L6GVbZuxwnxh6ZUVqo6meHcqC7SzXqR3fes7D/gtc/YRBF/FoTNJuBQAh+QQJAAABACwAAAAAAQCQAQACM4SDYZcLqRZ0UzaL6GUZR/49m9iBWkmGlemd6rim7tzW7C3bOR738I/yBYGvobGIpPEaBQAh+QQJAAABACwAAAAAAQCQAQACNIQRGYfKug58TlYzbaJbR3w1HTiKn8mdGamGK+qlckyzs13D+K737+8KloBDYauIPCo5gAIAIfkECQAAAQAsAAAAAAEAkAEAAjMMDqGGy+dQWjI2elXFkE+dPZ9odaBJeuW4nWzYpu5Kq/Z8y3rMwz7aA/5ewiLxWMMpZQUAIfkECQAAAQAsAAAAAAEAkAEAAjNMgGCWur1OivBNi+hlW2bscJ8YemVFaqOpnh3Kgu0s16kd33rOw/4LXP2EQRfxaEzSbgUAIfkECQAAAQAsAAAAAAEAkAEAAjOMgWCXG6kWdFM2i+hlGUf+PZvYgVpJhpXpneq4pu7c1uwt2zke9/CP8gWBr6GxiKTxGgUAIfkEBQAAAQAsAAAAAAEAkAEAAjOMAwmHyroOfE5WM22iW0d8NR04ip/JnRmphivqpXJMs7Ndw/iu9+/vCpaAQ2GriDwqUwUAOw==') repeat-y border-box right;
}

.jss_border_cloning {
    border: 1px dashed #000;
}

.jss_cursor {
    background-color: #eee;
}

    .jss_cursor.jss_frozen {
        background-color: #eee !important;
    }

.jss_loading {
    position: absolute;
    z-index: 5;
    width: 100%;
    width: calc(100% - 3px);
    height: 1px;
    overflow: hidden;
    padding-left: 1px;
    padding-right: 1px;
    border: 0;
    box-sizing: border-box;
    display: none;
    margin-top: -1px;
    margin-left: 1px;
}

    .jss_loading:after {
        content: '';
        position: absolute;
        height: 3px;
        background-color: #aaa;
        animation: jss_loading 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    }

.disconnected .jss_loading {
    display: block;
    background-color: red;
}

@keyframes jss_loading {
    0% {
        margin-left: 0;
        width: 0
    }

    50% {
        margin-left: 0;
        width: 50%
    }

    100% {
        margin-left: 100%;
        width: 100%
    }
}

.jss_container.disconnected {
    pointer-events: none;
}

.jss_tags > div {
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 2px;
    margin-right: 4px;
    outline: none;
    background-color: #eee;
    font-size: 0.8em;
    display: inline-block;
}

.jss_rating {
    padding: 0;
}

    .jss_rating > div {
        line-height: 13px;
    }

        .jss_rating > div > i {
            line-height: 13px;
            font-size: 13px;
            width: 13px;
            height: 13px;
            vertical-align: bottom;
        }

.jss thead .jss_frozen {
    position: sticky;
    z-index: 5;
    box-shadow: 2px 0 0 0 #aaa;
}

.jss tfoot .jss_frozen {
    position: sticky;
    z-index: 2;
    box-shadow: 1px 0 0 0 #aaa;
}

.jss tbody .jss_frozen {
    position: sticky;
    z-index: 1;
    background-color: #fff;
    box-shadow: 1px 0 0 0 #aaa;
}

.jss .jss_notes {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    white-space: pre-wrap;
}

.jss_row_medium > tbody > tr {
    height: 3em;
}

.jss_row_large > tbody > tr {
    height: 6em;
}

.jss_row_extra > tbody > tr {
    height: 9em;
}

.jss_row_medium > tbody > tr .jss_notes {
    -webkit-line-clamp: 3;
    height: 3em;
}

.jss_row_large > tbody > tr .jss_notes {
    -webkit-line-clamp: 6;
    height: 6em;
}

.jss_row_extra > tbody > tr .jss_notes {
    -webkit-line-clamp: 9;
    height: 9em;
}

.jss_modern table.jss {
    border-right: 1px solid transparent;
}

    .jss_light table.jss > thead > tr > th, .jss_modern table.jss > thead > tr > th {
        background-color: #f5f5f5;
        border-top: 1px solid #ddd;
        border-right: 1px solid transparent;
        padding: 8px;
    }

    .jss_modern table.jss > thead > tr > th {
        border-left: 1px solid transparent;
    }

        .jss_light table.jss > thead > tr > th:first-child, .jss_modern table.jss > thead > tr > th:first-child {
            box-shadow: 1px 0 0 0 #ddd;
        }

    .jss_light table.jss > thead > tr:last-child > th, .jss_modern table.jss > thead > tr:last-child > th {
        border-bottom: 1px solid #000;
    }

    .jss_light table.jss > tfoot > tr > td, .jss_modern table.jss > tfoot > tr > td {
        border-top: 1px solid #000;
        border-left: 1px solid transparent;
        border-right: 1px solid transparent;
        border-bottom: 1px solid transparent;
        background-color: #fff;
        padding: 8px;
    }

    .jss_light table.jss > thead > tr > th.jss_filters_icon, .jss_modern table.jss > thead > tr > th.jss_filters_icon {
        background-position: center right 8px;
    }

.jss_light table.jss > thead > tr > th.selected {
    background-color: #e3e3e3;
}

.jss_modern table.jss > thead > tr > th.selected {
    background-color: #eee;
}

.jss_modern table.jss > tbody > tr > td {
    padding: 8px;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
}

.jss_light table.jss > tbody > tr > td {
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
}

    .jss_light table.jss > tbody > tr > td:first-child, .jss_modern table.jss > tbody > tr > td:first-child {
        background-color: #f5f5f5;
    }

.jss_light table.jss > tbody > tr.selected > td:first-child {
    background-color: #e3e3e3;
}

.jss_modern table.jss > tbody > tr.selected > td:first-child {
    background-color: #eee;
}

.jss_light .jss_toolbar, .jss_modern .jss_toolbar {
    background-color: #f5f5f5;
}

.jss_modern .jss_toolbar {
    border-color: #ddd;
}

.jss_light .jss_pagination, .jss_modern .jss_pagination {
    background-color: #f8f8f8;
    border: 1px solid #eee;
}

    .jss_light .jss_pagination > div > div {
        border: 1px solid transparent;
        background-color: #f2f2f2;
    }

    .jss_modern .jss_pagination > div > div {
        border: 1px solid transparent;
        background-color: #fff;
    }

.jss_modern .jss_page_selected {
    background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
    border: 1px solid #979797 !important;
    font-weight: normal;
    color: #333 !important;
    border-radius: 2px;
}

.jss_modern .jss_focus {
    padding: 8px;
}

.jss_modern .jss_search_container {
    background: initial;
    border: initial;
}

.jss_dropdown_icon {
    width: 12px;
    height: 12px;
    border-radius: 6px;
    margin: auto;
}

.jss_dropdown_tag {
    display: inline-block;
    border-radius: 6px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 2px;
    padding: 4px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.8em;
}

.jss_filters {
    position: absolute;
    z-index: 5;
    background: #fff;
    color: #555;
    font-size: 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-box-shadow: 2px 2px 2px 0 rgba(143, 144, 145, 1);
    -moz-box-shadow: 2px 2px 2px 0 rgba(143, 144, 145, 1);
    box-shadow: 2px 2px 2px 0 rgba(143, 144, 145, 1);
    border: 1px solid #C6C6C6;
    padding: 20px;
    margin: 0;
    outline: none;
    display: none;
}

    .jss_filters > div {
        box-sizing: border-box;
        display: block;
        width: 280px;
        position: relative;
        cursor: default;
        font-size: 11px;
        font-family: sans-serif;
    }

        .jss_filters > div.jss_filter_search_container {
            display: flex;
            margin-bottom: 6px;
        }

    .jss_filters label {
        display: block;
        line-height: 18px;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

.jss_filters_search, .jss_filters_operators {
    padding: 6px;
    border: 1px solid #d9d9d9;
    width: 100%;
    flex: 3;
}

.jss_filters_search {
    margin-right: 6px;
    flex: 4;
}

.jss_filters_options {
    border: 1px solid #d9d9d9;
    padding: 10px;
    overflow-y: scroll;
    height: 160px;
}

    .jss_filters_options > label {
        display: flex;
        align-items: center;
    }

        .jss_filters_options > label > div {
            display: inline-block;
        }

            .jss_filters_options > label > div.color {
                width: 80px;
                height: 8px;
            }

        .jss_filters_options > label > img {
            width: 20px;
            border-radius: 10px;
        }

        .jss_filters_options > label > div.progressbar {
            background-color: red;
            height: 8px;
        }

        .jss_filters_options > label > div.rating > i {
            line-height: 13px;
            font-size: 13px;
            width: 13px;
            height: 13px;
            vertical-align: bottom;
        }

.jss_filters input[type=checkbox] {
    vertical-align: middle;
    position: relative;
    bottom: 1px;
    margin: 5px;
}

.jss_filters_apply {
    padding: 6px;
    margin-top: 6px;
    width: 100px;
    float: right;
}

.jss_helper {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: transparent;
    border: 1px solid #DD0000;
    box-sizing: border-box;
    z-index: 7;
    display: none;
    pointer-events: none;
}

    .jss_helper.jss_helper_row:before {
        content: '';
        position: absolute;
        margin-top: -5px;
        margin-left: -8px;
        width: 0;
        height: 0;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 5px solid #DD0000;
    }

    .jss_helper.jss_helper_col:before {
        content: '';
        position: absolute;
        margin-top: -8px;
        margin-left: -5px;
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 5px solid #DD0000;
    }

.jss_dragging {
    opacity: 0.5;
}

.jss_forbidden {
    padding: 80px;
    text-align: center;
    border: 1px solid #ccc;
    color: #999;
    max-width: 600px;
}

    .jss_forbidden:before {
        content: 'Jspreadsheet: Permission Denied';
    }

    .jss_forbidden > div {
        display: none;
    }

.arrow-up {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 14l5-5 5 5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration: underline;
}

.arrow-down {
    background-image: url("data:image/svg+xml,%0A%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='none' d='M0 0h24v24H0V0z'/%3E%3Cpath d='M7 10l5 5 5-5H7z' fill='gray'/%3E%3C/svg%3E");
    text-decoration: underline;
}

.arrow-up.jss_filters_icon {
    background-image: none;
}

.arrow-down.jss_filters_icon {
    background-image: none;
}

.arrow-up.jss_filters_icon::after {
    content: '\2191';
    margin-left: 2px;
    text-decoration: initial;
    display: inline-block
}

.arrow-down.jss_filters_icon::after {
    content: '\2193';
    margin-left: 2px;
    text-decoration: initial;
    display: inline-block
}

.jss_scroll {
    position: absolute;
    min-height: 1px;
    min-width: 1px;
}

.jss > thead > tr.jss_group_container > th {
    text-align: center;
    overflow: initial;
    background-color: transparent;
    border: 0;
}

.jss_group {
    content: attr(data-status);
    font-family: 'Courier new';
    line-height: 16px;
    text-align: center;
    color: #fff;
    border-radius: 2px;
    background-color: #777;
    width: 16px;
    height: 16px;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
}

    .jss_group:after {
        content: 'd';
        position: absolute;
        border-top: 1px solid #ccc;
        border-right: 1px solid #ccc;
        width: 300px;
        height: 4px;
        left: 0;
        margin-top: 7px;
        margin-left: 16px;
    }

.jss_selectall {
    box-shadow: 1px 1px 0 0 #ccc;
}

    .jss_selectall:after {
        content: ' ';
        border-bottom: 12px solid #ccc;
        border-left: 12px solid transparent;
        width: 0;
        position: absolute;
        bottom: 3px;
        right: 3px;
    }

.jss_percent:after {
    content: ' %';
}

.jss_pagination_dropdown {
    margin-left: 4px;
    margin-right: 4px;
}

.jss_media img {
    position: absolute;
}

.red {
    color: red;
}

.jss > thead > tr > th.jss_filters_icon {
    padding-right: 16px !important;
}

.jss_red .jss_corner {
    background-color: #DD0000;
}

.jss_red .jss_border_main {
    border: 1px solid #DD0000;
    background-color: #DD000010;
}

.jss_red .jss > thead > tr > th.selected {
    box-shadow: 0 1px 0 0 #DD0000;
}

.jss_red .jss > tbody > tr.selected > td:nth-child(2) {
    border-left: 1px solid #DD0000 !important;
    box-shadow: 1px 0 0 0 black;
}

.jss > tbody > tr > td.jss_row {
    position: sticky;
    z-index: 4;
    left: 0;
    background-color: #f3f3f3;
    text-align: center;
}

.jss > tbody > tr.selected > td.jss_row {
    background-color: #dcdcdc;
    border-right: 1px solid transparent;
}

.jss > thead > tr > th:first-child, .jss > tfoot > tr > td:first-child {
    position: sticky;
    left: 0;
    z-index: 5 !important;
}

.jss_locked {
    pointer-events: none;
}

.jss_unlocked {
    pointer-events: auto;
}

.jss_picker {
    position: relative;
}

    .jss_picker.input:after {
        content: "highlight_alt";
        font-size: 18px;
        font-family: "Material Icons";
        color: #000;
        position: absolute;
        right: 5px;
        cursor: pointer;
    }

    .jss_picker.active {
        outline: 2px #FF0000 solid;
        animation: blink 1s infinite;
    }

@keyframes blink {
    50% {
        outline: 2px transparent solid;
    }
}

.jss_image > img {
    position: absolute;
    max-width: 100%;
    z-index: 3;
}

    .jss_image > img:focus {
        outline: 2px solid black;
    }

.jss > tbody > tr > td.jss_number {
    text-align: right;
}

.jss .jcolor-input {
    padding: 5px !important;
    padding-right: 24px !important;
}

.jss_warning {
    border-left: 1px solid red !important;
    background-color: #ffefef !important;
    position: relative;
}

    .jss_warning:before {
        content: 'warning';
        font-family: 'Material Icons';
        font-size: 13px;
        position: absolute;
        color: red;
        left: 2px;
        font-weight: normal;
    }

    .jss_warning:empty:before {
        margin-top: -7px;
    }

.jss_hidden {
    display: none;
}

.fullscreen .jss_content {
    resize: none !important;
}

.jss_last {
    z-index: 4;
}

.jss_resize_corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 2px solid white;
    background-color: red;
    pointer-events: all;
}

.jss tbody .jss_frozen_row {
    position: sticky;
    z-index: 1;
    background-color: #fff;
    box-shadow: 0 1px 0 0 #aaa;
}

    .jss tbody .jss_frozen_row.jss_frozen {
        box-shadow: 1px 1px 0 0 #aaa;
        z-index: 2;
    }

.jss_cursor.jss_frozen_row {
    background-color: #eee !important;
}

.jss > tbody > tr > td.jss_row.jss_frozen_row {
    z-index: 5;
    box-shadow: 0 2px 0 0 #aaa;
}

.jss_freeze_control_col {
    border-right: 1px solid #aaa !important;
}

.jss_freeze_control_row {
    border-bottom: 1px solid #aaa !important;
}

.jss_rotate {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(0deg);
    white-space: nowrap;
}

.jss tbody tr:nth-child(even) td.jss_zebra {
    background-color: #eee;
}

.jss_zebra tbody tr:nth-child(even) td {
    background-color: #eee;
}

.jss div {
    line-height: 1;
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.jss_searching {
    position: relative;
}

    .jss_searching:after {
        content: '';
        display: block;
        position: absolute;
        right: 16px;
        top: calc(50% - 7px);
        width: 12px;
        height: 12px;
        border-style: solid;
        border-color: #888;
        border-top-color: transparent;
        border-width: 1px;
        border-radius: 50%;
        -webkit-animation: spin .8s linear infinite;
        animation: spin .8s linear infinite;
    }

.jss_nogridline > tbody > tr > td {
    border: 1px solid transparent;
}

.jss_highlight {
    background-color: #ffffd6;
}

.jss_row > i.material-icons {
    font-size: 13px;
    position: absolute;
    right: 2px;
    margin-top: 2px;
    cursor: pointer;
}

.jss_header > i.material-icons {
    font-size: 13px;
    position: absolute;
    right: 2px;
    margin-top: 2px;
    cursor: pointer;
}

.jss_header.jss_filters_icon > i.material-icons {
    right: 16px;
}

.jss_upload {
    position: absolute !important;
    display: none;
    margin-left: -240px;
}

.jss_group_parent {
    background-color: #77777722;
}

    .jss_group_parent > .jss_frozen {
        background-color: #eee;
    }

.jss_group_child {
    background-color: #aaaaaa22;
}

    .jss_group_child > .jss_frozen {
        background-color: #f4f4f4;
    }

.jss_tooltip {
    position: absolute;
    pointer-events: none;
    background-color: rgba(0,0,0,0.7);
    color: #fff;
    border-radius: 5px;
    padding: 5px 10px;
    white-space: nowrap;
    z-index: 999;
    display: block;
    animation: fadeIn 0.5s;
}

    .jss_tooltip:empty {
        display: none;
    }
