@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans";
}

*:focus-visible {
    outline: 2px solid var(--blue-stroke-500, #1c5686);
}

body {
    padding: 30px 10px;
}

.dt-container > .dt-layout-row:first-child {
    background-color: #f7f7f7;
    margin: 0;
    padding: 10px;
}

.dt-container > .dt-layout-row:nth-child(2) {
    background-color: #f7f7f7;
    margin: 0;
}

.dt-container > .dt-layout-row:first-child .dt-layout-cell:last-child {
    max-width: 350px;
    width: 100%;
}

.dt-container > .dt-layout-row:not(:first-child):not(.dt-layout-table) {
    flex-wrap: wrap;
}

.dt-search {
    display: flex;
    align-items: center;
    width: 100%;
}

div.dt-container .dt-input {
    background-color: #fff !important;
}

div.dt-container .dt-search input {
    width: 100%;
}

table {
    border-collapse: collapse;
    margin: 0 0 15px 0 !important;
}

div:has(> table) {
    width: calc(100vw - 20px) !important;
}

table thead tr th {
    text-align: center !important;
    color: #081a28;
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    background-color: #f7f7f7;
    border: 2px solid #fff;
}

table thead tr th:hover {
    box-shadow: inset 1px 1px 10px 15px rgba(0, 0, 0, 0.01);
}

.dt-info {
    color: #081a28;
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

table tbody tr td {
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

table a {
    display: flex;
    width: fit-content;
    height: auto;
    cursor: pointer;
    color: var(--link-color, #1a4f7a);
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: var(--ff-primary);
    font-style: normal;
    font-weight: var(--fw-400, 400);
    line-height: var(--lh-24, 24px);
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 6%;
    text-underline-offset: 16%;
    text-underline-position: from-font;
    text-decoration-color: var(--link-color, #1a4f7a);
    transition: all 0.3s ease-in-out;
}

table a:hover {
    color: var(--link-color-hover, #1672a3);
    text-decoration-color: var(--link-color-hover, #1672a3);
}

table thead tr th span.dt-column-order {
    color: red;
}

table tr td:first-child {
    text-align: left !important;
}

table tbody tr:nth-child(odd) {
    color: #000;
    background-color: #ebf2f7;
    /* background-color: #1c5686; */
}

table tbody tr:nth-child(odd) td:first-child {
    color: #000;
    background-color: #ebf2f7;
    /* background-color: #1c5686; */
    border-right: unset;
}

table tbody tr:nth-child(odd):hover {
    filter: brightness(1.1) !important;
}

table tbody tr:nth-child(even) {
    background-color: #f7f7f7;
}

table tbody tr:nth-child(even) td:first-child {
    background-color: #f7f7f7;
}

table tbody tr:nth-child(even):hover {
    filter: brightness(1.1) !important;
}

table tbody tr.red td:first-child {
    color: #fff;
    background-color: #cc0000;
}

table tbody tr td.sorting_1 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_2 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_3 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_4 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_5 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_6 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td.sorting_7 {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tbody tr td[class*="sorting"] {
    color: #000;
    background-color: #ebf2f7;
    /* border: 1px solid #081a28; */
}

table tr td.child .dtr-details {
    width: 100%;
}

div.dt-container .dt-paging {
    margin: 20px 0;
}

div.dt-container .dt-paging nav {
    display: flex;
    justify-content: space-between;
    position: relative;
}

div.dt-container .dt-paging .dt-paging-button,
.button,
input[type="button"] {
    width: fit-content;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
    color: var(--blue-500, #1a4f7a);
    text-align: center;
    font-feature-settings:
        "liga" off,
        "clig" off;
    font-family: var(--ff-primary, "Open Sans");
    font-size: var(--fs-16, 16px);
    font-style: normal;
    font-weight: var(--fw-600, 600);
    line-height: var(--lh-24, 24px);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

div.dt-container .dt-paging .dt-paging-button.current,
.button,
input[type="button"].chosen {
    background: #04853b !important;
    color: var(--white-500, #fff) !important;
}

.button,
input[type="button"] {
    height: auto;
    padding: 5px;
    border: 1px solid #04853b;
}

input[type="button"] {
    background-color: #fff;
}

.button {
    padding: 8px 16px;
}

.button:hover,
input[type="button"]:hover {
    color: #04853b !important;
    background-color: #fff !important;
    box-shadow: 1px 1px 10px 2px rgba(0, 0, 0, 0.1);
}

div.dt-container .dt-paging .dt-paging-button.first,
div.dt-container .dt-paging .dt-paging-button.previous,
div.dt-container .dt-paging .dt-paging-button.next,
div.dt-container .dt-paging .dt-paging-button.last {
    background-color: #e9ecef;
}

div.dt-container .dt-paging .dt-paging-button.disabled {
    background-color: transparent !important;
    cursor: not-allowed !important;
}

div.dt-container .dt-paging .dt-paging-button.current:not(.disabled):hover {
    background: #04853b !important;
    color: var(--white-500, #fff) !important;
    transform: translateY(0px);
    border-color: transparent !important;
    cursor: auto !important;
}

div.dt-container .dt-paging .dt-paging-button:not(.disabled):hover {
    background: #04853b !important;
    color: var(--white-500, #fff) !important;
    transform: translateY(-2px);
    border-color: transparent !important;
}

div.dt-container .dt-paging .ellipsis {
    display: flex;
    align-items: flex-end;
}

@media (max-width: 800px) {
    div.dt-container .dt-paging .dt-paging-button {
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .dt-container > .dt-layout-row:first-child .dt-layout-cell:last-child {
        max-width: 100%;
        margin: 20px 0 0 0;
    }

    .dt-container > .dt-layout-row:not(:first-child):not(.dt-layout-table) {
        margin: 15px 0 30px 0;
    }
}

@media (max-width: 700px) {
    div.dt-container .dt-paging nav {
        margin: 65px 0 0 0;
        justify-content: center;
    }

    div.dt-container .dt-paging .dt-paging-button.first,
    div.dt-container .dt-paging .dt-paging-button.previous,
    div.dt-container .dt-paging .dt-paging-button.next,
    div.dt-container .dt-paging .dt-paging-button.last {
        position: absolute;
        top: -50px;
    }

    div.dt-container .dt-paging .dt-paging-button.first {
        left: 0;
    }

    div.dt-container .dt-paging .dt-paging-button.previous {
        left: 100px;
    }

    div.dt-container .dt-paging .dt-paging-button.next {
        right: 97px;
    }

    div.dt-container .dt-paging .dt-paging-button.last {
        right: 0;
    }
}

@media (max-width: 450px) {
    div.dt-container .dt-paging .dt-paging-button.first,
    div.dt-container .dt-paging .dt-paging-button.previous,
    div.dt-container .dt-paging .dt-paging-button.next,
    div.dt-container .dt-paging .dt-paging-button.last {
        font-size: 12px;
        padding: 8px 10px;
    }

    div.dt-container .dt-paging .dt-paging-button.previous {
        left: 78px;
    }

    div.dt-container .dt-paging .dt-paging-button.next {
        right: 76px;
    }
}

@media (max-width: 350px) {
    div.dt-container .dt-paging .dt-paging-button.first,
    div.dt-container .dt-paging .dt-paging-button.previous,
    div.dt-container .dt-paging .dt-paging-button.next,
    div.dt-container .dt-paging .dt-paging-button.last {
        font-size: 10px;
    }

    div.dt-container .dt-paging .dt-paging-button.previous {
        left: 69px;
    }

    div.dt-container .dt-paging .dt-paging-button.next {
        right: 68px;
    }
}
