.jtable {
    width: 100%;
    overflow-x: hidden;
}
.jtable__table {
    overflow-x: auto;
}
.jtable > .jtable__panel {
    width: 100%;
    margin: 0.5em 0;
    display: flex;
    align-items: center;
}
.jtable > .jtable__panel > div {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}
.jtable > .jtable__panel > div:first-child {
    width: auto;
    flex-direction: row;
    align-items: center;
}
.jtable > .jtable__panel > div:first-child > span {
    width: 200%;
    margin-left: 0.5rem;
}
.jtable > .jtable__panel > div:last-child {
    width: 30%;
    margin-left: auto;
    align-items: flex-end;
}
.jtable .jtable__search,
.jtable .jtable__select {
    font-size: 1rem;
    position: relative;
    width: auto;
    font-family: inherit;
    border-radius: 0.25em;
    border: solid 0.01em #b0c3cc;
    padding-inline-start: 0;
    padding: 0.5em 1em;
}
.jtable table {
    border: solid 0.01em #b0c3cc;
    border-radius: 0.25em;
    background-color: #eff8ff;
    border-spacing: 0;
    color: #486582;
	margin: 8px 0 10px;
    width: 100%;
    overflow-x: auto;
}
.jtable table > tbody > tr:nth-child(2n) {
    background-color: rgba(255, 255, 255, 0.5);
}

.jtable table tr > th,
.jtable table tr > td {
    padding: 0.2em 1em;
    text-align: left;
    border-bottom: solid 0.01em #b0c3cc;
    border-right: solid 0.01em #b0c3cc;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.jtable table tr:last-child > td {
    border-bottom: none;
}
.jtable table tr > th:nth-child(2),
.jtable table tr > td:nth-child(2) {
    padding: 4px;
    text-align: center;
    width: 1px;
    white-space: nowrap;
}
.jtable table tr > th:nth-child(3),
.jtable table tr > td:nth-child(3) {
    padding: 7px 4px;
    text-align: center;
    width: 1px;
    white-space: nowrap;
}
.jtable table tr > th:nth-child(4),
.jtable table tr > td:nth-child(4) {
    padding: 4px;
    text-align: center;
    width: 1px;
    white-space: nowrap;
}
.jtable table tr > th:last-child,
.jtable table tr > td:last-child {
    width: 14%;
	white-space: nowrap;
    border-right: none;
}
.jtable table > thead th {
    cursor: pointer;
	padding: 1.4em 1em;
}
.jtable table > thead th[aria-sort="ascending"] {
    background-image: url("../images/sort-asc.svg");
    background-position: left 50% top 3px;
    background-repeat: no-repeat;
    background-size: 1em;
}
.jtable table > thead th[aria-sort="descending"] {
    background-image: url("../images/sort-desc.svg");
    background-position: left 50% bottom 3px;
    background-repeat: no-repeat;
    background-size: 1em;
}
.jtable__pagination {
    display: flex;
    align-items: center;
}

.jtable__pagination > button {
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 4px 2px 1px #CED8E8, 0px -4px 2px 1px #fff, inset 0px 0px 0px 0px #CED8E8, inset 0px 0px 0px 0px #fff;
    border-radius: 5px;
	color: #486582;
	font-size: 1em;
	height: 2rem;
	margin: 0 0.25em;
    min-width: 2rem;
    padding: 0.4rem 0.5rem;
    border: 1px solid #cee3e7;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}
.jtable__pagination > button:first-child {
    margin-left: 0;
}
.jtable__pagination > button.btn-char {
    font-size: 0.75em;
}
.jtable__pagination > button[aria-selected="true"] {
    background-color: #d2e6ee;
    border: 1px solid #B4D5E2;
}
.jtable__pagination > button:last-child {
    margin-right: 0;
}
@media screen and (max-width: 720px) {
    .jtable > .jtable__panel {
        flex-direction: column;
    }
    .jtable > .jtable__panel > div {
        align-items: flex-start !important;
        width: 100% !important;
    }
    .jtable > .jtable__panel > div:first-child {
        margin-bottom: 0.5em;
    }
    .jtable table {
        table-layout: initial;
    }
}
