/*--------------------------------------------------------------
## color
--------------------------------------------------------------*/
@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"), url("../fonts/Mulish-SemiBold.woff") format("woff");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-Bold.woff2") format("woff2"), url("../fonts/Mulish-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-Regular.woff2") format("woff2"), url("../fonts/Mulish-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Mulish";
    src: url("../fonts/Mulish-Medium.woff2") format("woff2"), url("../fonts/Mulish-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Mulish", sans-serif;
    font-size: 14px;
    padding-bottom: 38px;
    min-height: calc(100vh - 38px);
    position: relative;
    color: #4F4F4F;
    overflow-x: hidden;
    box-sizing: content-box;
}

* {
    font-family: "Mulish", sans-serif;
}

.row {
    margin-left: -5px;
    margin-right: -5px;
}

div[class^=col] {
    padding-left: 5px;
    padding-right: 5px;
}

::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: #EDEDED;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #A0A0A0;
    border-radius: 10px;
}

a {
    text-decoration: none;
    -webkit-transition: 0.3s all ease-in-out;
    -moz-transition: 0.3s all ease-in-out;
    -ms-transition: 0.3s all ease-in-out;
    -o-transition: 0.3s all ease-in-out;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}

    a:hover {
        opacity: 0.9;
    }

button:focus {
    outline: none;
}

h1,
h2, h3,
h4,
h5 {
    color: #1A1A1A;
    font-weight: bold;
}

h1 {
    font-size: 16px;
}

h2 {
    font-size: 16px;
}

h3 {
    font-size: 14px;
}

h4 {
    font-size: 11px;
    font-weight: 600;
}

h5 {
    font-size: 11px;
}

h6 {
    font-size: 10px;
}

.btn {
    text-decoration: none;
    background-color: #46B28A;
    color: #fff;
    height: 32px;
    padding: 0 10px;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: 13px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 4px;
    text-transform: uppercase;
}

    .btn.btn-primary:hover, .btn.btn-primary:active, .btn.btn-primary::first-child:active {
        background-color: #338467;
    }

.btn-primary:active:hover, .btn-primary:active:active, .btn-primary:active::first-child:active {
    background-color: #338467;
}

.btn-big {
    font-size: 16px;
    padding: 0 20px;
}

.btn:hover,
.btn:active,
.btn:first-child:active {
    background-color: #338467;
    color: #fff;
}

    .btn:hover img,
    .btn:active img,
    .btn:first-child:active img {
        filter: brightness(0) invert(1);
    }

.btn-large {
    font-size: 14px;
    padding-inline: 25px;
    height: 50px;
    border-radius: 5px;
}

    .btn-large:first-child:active, .btn-large:hover {
        background-color: #1150D0;
    }

.btn-remove {
    background: #F41A15;
}

.badge {
    background: #DAF0E8;
    padding: 4px 10px 4px;
    font-size: 11px;
    color: #2BB884;
    font-weight: 500;
    display: inline-block;
    border-radius: 14px;
    line-height: 1;
    font-weight: 700;
    font-size: 13px;
}

    .badge.red {
        background: rgba(244, 92, 89, 0.3);
        color: #F41A15;
    }

    .badge.yellow {
        color: #EDB024;
        background-color: rgba(237, 176, 36, 0.2);
    }

    .badge.blue {
        color: #427CF0;
        background-color: rgba(66, 124, 240, 0.2);
    }

    .badge.red-outline {
        color: #F41A15;
        background: transparent;
        border: 1px solid #F41A15;
    }

.btn svg {
    margin-right: 3px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #7A7A7A;
    color: #7A7A7A;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    transition: none;
    background: transparent;
    text-decoration: none;
}

    .btn-outline img {
        padding-right: 5px;
    }

    .btn-outline:hover, .btn-outline:first-child:active {
        border-color: #dc3545;
        background-color: transparent;
        color: #dc3545;
    }

        .btn-outline:hover *, .btn-outline:first-child:active * {
            fill: #dc3545;
        }

    .btn-outline.btn-outline-red {
        border-color: #F41A15;
        color: #F41A15;
    }

        .btn-outline.btn-outline-red:hover, .btn-outline.btn-outline-red:first-child:active {
            border-color: #dc3545;
            color: #F41A15;
        }

hr {
    margin: 0.5rem 0;
}

.line-separation {
    height: 1px;
    background-color: #C0C0C0;
    margin-block: 5px;
}

.btn-secondary {
    background: #EDB024;
}

    .btn-secondary:hover, .btn-secondary:first-child:active, .btn-secondary.active, .btn-secondary:active .btn-secondary:focus {
        background: #D09611;
    }

    .btn-check:checked + .btn-secondary,
    .btn-secondary.active, .btn.show,
    .btn-secondary:first-child:active {
        background: #D09611;
    }

.btn-custom {
    background-color: #7A7A7A;
}

.no-bg {
    background-color: transparent;
    border: none;
    color: #297626;
    font-size: 14px;
    font-weight: 500;
}

    .no-bg svg {
        fill: #297626;
        position: relative;
        top: -2px;
    }

        .no-bg svg * {
            fill: #297626;
        }

sup {
    color: #dc3545;
    font-weight: bold;
}

label {
    color: #1A1A1A;
}

.container-fluid:has(.no-container-fluid) {
    padding-inline: 0;
}

.icon-absolute .field-d {
    padding-right: 20px;
}

.field-absolute {
    position: absolute;
    right: 5px;
    top: 3px;
    pointer-events: none;
}

.form-control {
    background-color: transparent;
    border: 1px solid #C0C0C0;
    font-size: 13px;
    padding-block: 6px;
    border-radius: 4px;
    min-height: 32px;
    box-sizing: border-box;
    line-height: 1.5;
    height: 32px;
}

    .form-control.big {
        height: 42px;
    }

    .form-control:focus {
        outline: none;
        box-shadow: none;
    }

.dx-texteditor.dx-editor-outlined {
    border-color: #C0C0C0;
    border-style: solid;
    min-height: 32px;
    max-height: 32px;
}

.form-control::placeholder {
    color: rgba(160, 160, 160, 0.8);
}

.field-item {
    margin-bottom: 10px;
}

.f-label {
    margin-bottom: 5px;
    color: #1A1A1A;
    font-weight: 500;
}

@media (max-width: 1400px) {
    .f-label {
        font-size: 13px;
    }
}

.horizontal-field-wrap .f-label {
    padding-top: 6px;
}

.table-role {
    width: 100%;
    border: 1px solid #D4D7E3;
}

    .table-role.no-border {
        border: none;
    }

    .table-role table {
        width: 100%;
    }

    .table-role td {
        width: 50%;
    }

.page-header {
    padding-top: 10px;
}

    .page-header .icon-txt {
        padding-left: 5px;
    }

    .page-header h4 {
        margin-bottom: 0;
    }

.drop_box {
    margin: 10px 0;
    padding: 30px 20px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1.5px dashed rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

    .drop_box h4 {
        font-size: 16px;
        font-weight: 400;
        color: #2e2e2e;
        margin-bottom: 0;
    }

    .drop_box img {
        margin-bottom: 10px;
    }

    .drop_box p {
        margin-top: 10px;
        margin-bottom: 20px;
        font-size: 12px;
        color: #7B7B7B;
        margin-top: 10px;
    }

.form input {
    margin: 10px 0;
    width: 100%;
    background-color: #e2e2e2;
    border: none;
    outline: none;
    padding: 12px 20px;
    border-radius: 4px;
}

.modal .btn-close {
    background: none;
    opacity: 1;
    transform: rotate(-45deg) translate(-4px, -6px);
}

    .modal .btn-close:focus {
        outline: none;
        box-shadow: none;
    }

.modal p {
    color: #1A1A1A;
    text-align: centera;
}

.modal-footer {
    border-top: 1px solid rgba(34, 34, 38, 0.08);
}

.global-table {
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding-inline: 10px;
}

.custom-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.c-row {
    display: table-row;
}

    .c-row .c-col {
        font-weight: bold;
        display: table-cell;
        padding: 5px;
        border-bottom: 1px solid #EDEDED;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .c-row .c-col:nth-child(1) {
            width: 13%;
        }

        .c-row .c-col:nth-child(2) {
            width: 15%;
        }

        .c-row .c-col:nth-child(3) {
            width: 15%;
        }

        .c-row .c-col:nth-child(4) {
            width: 7%;
        }

        .c-row .c-col:nth-child(5) {
            width: 13%;
            padding-left: 15px;
        }

        .c-row .c-col:nth-child(6) {
            width: 15%;
        }

        .c-row .c-col:nth-child(7) {
            width: 15%;
        }

        .c-row .c-col:nth-child(8) {
            width: 7%;
        }

        .c-row .c-col:last-of-type {
            width: 11%;
        }

        .c-row .c-col .field-item {
            margin-bottom: 0;
        }

    .c-row:last-child .c-col {
        border-bottom: none;
    }

.c-row-th .c-col {
    border-bottom: 1px solid #C0C0C0;
}

.custom-tab .nav-tabs {
    border-color: #2BB884;
    border-bottom-width: 1.5px;
}

.custom-tab .nav-tabs {
    gap: 2px;
}

    .custom-tab .nav-tabs .nav-link {
        font-weight: bold;
        font-size: 13px;
        color: rgba(26, 26, 26, 0.7803921569);
        border-radius: 0;
        position: relative;
        top: -1px;
        background: #EDEDED;
        cursor: pointer;
        border: none;
    }

        .custom-tab .nav-tabs .nav-link.active, .custom-tab .nav-tabs .nav-link:hover {
            background-color: #2BB884;
            color: #fff;
        }

.custom-radio input[type=radio] {
    display: none;
}

/* Custom radio appearance */
.custom-radio .custom-radio-box {
    width: 20px;
    height: 20px;
    border: 2px solid green;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Inner circle (checked) */
.custom-radio input[type=radio]:checked + .custom-radio-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: green;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Hide native radio input */
.custom-radio input[type=radio],
.custom-radio input[type=checkbox] {
    display: none;
}

/* Custom radio appearance */
.custom-radio .custom-radio-box {
    width: 20px;
    height: 20px;
    border: 1px solid #2BB884;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

/* Inner circle (checked) */
.custom-radio input[type=radio]:checked + .custom-radio-box::after,
.custom-radio input[type=checkbox]:checked + .custom-radio-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background-color: #2BB884;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Label styling */
.custom-radio label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.speration-line {
    width: 100%;
    border-top: 1px solid #c0c0c0;
}

.date-wrapper span.date-ico {
    position: absolute;
    right: 15px;
    top: 5px;
    pointer-events: none;
}

.date-wrapper .form-control {
    padding-right: 25px;
}

.date-wrapper input[type=date]::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.dx-selectbox-popup-wrapper:not .dx-popup-content {
    padding-bottom: 60px !important;
    margin-bottom: 0 !important;
}

.dx-popup-content .note-outer {
    width: 100%;
}

.cursor {
    cursor: pointer;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: block;
}

.tenant-name-profile {
    font-size: 16px;
}

span.v-custom-line {
    margin-inline: 10px;
    display: inline-block;
    width: 1px;
    height: 12px;
    background: black;
    position: relative;
    top: 2px;
}

.custom-info {
    color: #297626;
    top: -1px;
    position: relative;
}

    .custom-info .info-icon {
        padding-left: 5px;
    }

.dx-popup-content {
    padding-inline: 15px;
}

    .dx-popup-content .centered-text {
        text-align: left !important;
    }

.add-page-check,
.button-toggle .add-page-check {
    position: absolute;
    top: 14px;
    width: 29px;
    z-index: 1;
    opacity: 0;
}

    .add-page-check + label {
        display: inline-block;
        position: relative;
        font-size: 1.2rem;
        cursor: pointer;
    }

        .add-page-check + label::before,
        .add-page-check + label::after {
            position: absolute;
            transition: all 0.2s;
            content: "";
        }

        .add-page-check + label::before {
            top: 0;
            left: 0;
            width: 30px;
            height: 15px;
            border: 1px solid #868686;
            border-radius: 8px;
        }

    .add-page-check:checked + label::before {
        background-color: #2BB884;
        border-color: #2BB884;
    }

    .add-page-check + label::after {
        top: 2px;
        left: 2px;
        width: 11px;
        height: 11px;
        background-color: #868686;
        border-radius: 50%;
    }

    .add-page-check:checked + label::after {
        left: 16px;
        background-color: #fff;
    }

    .add-page-check + label span::before {
        content: "Disabled";
    }

    .add-page-check:checked + label span::before {
        content: "Enabled";
    }

.circle-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 5px;
}

    .circle-bullet.active {
        background: #4F85F1;
    }

    .circle-bullet.inactive {
        background: #F52A25;
    }

    .circle-bullet.pending {
        background: #EEB533;
    }

.tooltip-inner-wrapper {
    color: #1A1A1A;
    font-size: 12px;
    text-align: center;
}

.bullet-design {
    color: #1A1A1A;
    font-size: 12px;
    padding-inline: 0;
    text-align: left;
    padding-top: 5px;
}

    .bullet-design li:last-child .bullet-design p {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .bullet-design p {
        color: #1A1A1A;
    }

    .bullet-design b {
        display: block;
        margin-bottom: 2px;
    }

    .bullet-design li {
        list-style: none;
        position: relative;
        padding-left: 15px;
        color: #1A1A1A;
    }

        .bullet-design li b,
        .bullet-design li h6 {
            color: #1A1A1A;
            font-size: 13px;
        }

.table-design,
.main-wrapper {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
}

.heading-library {
    font-size: 14px;
    margin-top: 20px;
}

.table-role th {
    border-bottom: 1px solid #ccc;
    padding: 0;
    border: none;
}

    .table-role th .table-title {
        display: inline-block;
        padding: 10px;
    }

.table-role td {
    padding: 8px 10px;
}

.list-sec {
    max-height: 16px;
}

    .list-sec input {
        cursor: pointer;
    }

select #exportLength {
    width: 180px;
}

.space {
    height: 36px;
    border-top: 1px solid #C0C0C0;
    border-bottom: 1px solid #C0C0C0;
    display: flex;
    padding: 0 8px;
    margin-top: 2px;
}

.main-wrapper {
    background: #fff;
}

    .main-wrapper.bottom-shadow {
        box-shadow: 0 4px 4px -4px rgba(0, 0, 0, 0.1);
    }

#clearFilter {
    text-decoration: none;
}

.error-bg {
    background-color: #E55F5D;
    padding: 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

    .error-bg .error-txt {
        color: white;
        font-size: 11px;
        padding-left: 5px;
    }

.removal_row {
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 5px;
}

.indays {
    color: #7A7A7A;
}

.key-copy-content,
.ellipsis {
    width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    display: block;
}

.full-width-popup-header {
    width: 100%;
}

.list-sec:has(input[disabled=disabled]) .after-box {
    background: #EDEDED;
    border-color: #C0C0C0;
}

.disabled-custom-checkbox-checked .list-sec input:checked + .before-box img {
    filter: grayscale(100%);
}

.list-sec input:checked:disabled + .before-box img {
    filter: grayscale(100%);
}

.dashboard-block .indicator {
    position: relative;
    top: -30px;
    z-index: 1;
}

    .dashboard-block .indicator ul {
        padding-left: 0;
        display: flex;
        align-items: center;
        margin: 0;
        padding: 0;
        justify-content: center;
    }

    .dashboard-block .indicator li {
        font-size: 12px;
        display: flex;
        align-items: center;
        padding-right: 10px;
        cursor: default;
        padding-bottom: 0;
        border-bottom: 0;
        margin: 0;
    }

    .dashboard-block .indicator .dot {
        width: 12px;
        height: 12px;
        border-radius: 2px;
        background: rgb(237, 176, 36);
        display: block;
        margin-right: 5px;
    }

        .dashboard-block .indicator .dot.active {
            background-color: rgb(66, 124, 240);
        }

        .dashboard-block .indicator .dot.pending {
            background: rgb(237, 176, 36);
        }

        .dashboard-block .indicator .dot.inactive {
            background: rgb(244, 26, 21);
        }

.popup-footer .btn {
    cursor: pointer;
}

.popup-footer .btn-secondary {
    background: transparent;
    border: 1px solid #7A7A7A;
    color: #7A7A7A;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    transition: none;
    background: transparent;
    text-decoration: none;
}

    .popup-footer .btn-secondary:hover, .popup-footer .btn-secondary:first-child:active {
        border-color: #dc3545;
        background-color: transparent;
        color: #dc3545;
    }

        .popup-footer .btn-secondary:hover *, .popup-footer .btn-secondary:first-child:active * {
            fill: #dc3545;
        }

.custom-regex {
    text-align: left;
}

.dx-popup-title:has(.custom-regex) {
    padding-inline: 0;
}

.dx-toolbar-center:has(.custom-regex) {
    width: 100%;
    margin: 0 !important;
}

.site-header {
    background: #fff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.15);
}

    .site-header .site-logo {
        min-width: 100px;
    }

    .site-header .dropdown.user-item {
        padding-right: 25px;
    }

        .site-header .dropdown.user-item a:after {
            top: 10px;
            position: absolute;
            right: -4px;
            background: url(../images/chevron-down.svg);
            border: none;
            width: 20px;
            height: 10px;
            background-size: 1;
            background-size: 14px;
            background-repeat: no-repeat;
        }

        .site-header .dropdown.user-item .dropdown-toggle:after {
            display: none;
        }

    .site-header .dropdown-menu {
        border: none;
        box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
    }

        .site-header .dropdown-menu li {
            margin: 0 10px;
            border-bottom: 1px solid #EDEDED;
        }

            .site-header .dropdown-menu li:last-child {
                border-bottom: none;
            }

        .site-header .dropdown-menu .dropdown-item {
            font-size: 13px;
            color: #7A7A7A;
            padding: 5px 10px;
            white-space: normal;
        }

            .site-header .dropdown-menu .dropdown-item:hover {
                background: rgba(204, 246, 225, 0.4);
                color: #2BB884;
                opacity: 1;
            }

    .site-header .nav-right {
        margin-top: 1px;
    }

        .site-header .nav-right .user-item span {
            margin-right: 10px;
        }

    .site-header .navbar-nav {
        margin-top: 3px;
    }

        .site-header .navbar-nav .nav-link {
            padding-inline: 10px;
        }

        .site-header .navbar-nav .nav-item {
            margin-right: 2px;
        }

        .site-header .navbar-nav .arrow img,
        .site-header .navbar-nav .arrow svg {
            width: 16px;
        }

        .site-header .navbar-nav .nav-item.active .nav-link,
        .site-header .navbar-nav .nav-item:hover .nav-link {
            background: rgba(204, 246, 225, 0.4);
            border-radius: 5px;
            color: rgb(43, 184, 132);
        }

        .site-header .navbar-nav .nav-item.active .arrow img,
        .site-header .navbar-nav .nav-item.active .arrow svg, .site-header .navbar-nav .nav-item.active .arrow svg path,
        .site-header .navbar-nav .nav-item:hover .arrow img,
        .site-header .navbar-nav .nav-item:hover .arrow svg,
        .site-header .navbar-nav .nav-item:hover .arrow svg path {
            fill: rgb(43, 184, 132);
        }

    .site-header .customer-switcher {
        margin-right: 5px;
    }

        .site-header .customer-switcher + .user-item span {
            padding-right: 5px;
        }

        .site-header .customer-switcher .dropdown {
            border: 1px solid #C0C0C0;
            border-radius: 5px;
            padding: 4px 10px;
            min-width: 200px;
        }

            .site-header .customer-switcher .dropdown .nav-link.dropdown-toggle {
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
                width: 160px;
            }

            .site-header .customer-switcher .dropdown a:after {
                display: none;
            }

            .site-header .customer-switcher .dropdown::after {
                position: absolute;
                right: 10px;
                top: 9px;
                background: url(../images/chevron-down.svg);
                width: 15px;
                height: 15px;
                border: none;
                content: "";
                display: block;
                pointer-events: none;
            }

        .site-header .customer-switcher .dropdown-menu {
            width: 200px;
            border: none;
            box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
        }

            .site-header .customer-switcher .dropdown-menu li {
                border-bottom: none;
                margin: 0;
            }

        .site-header .customer-switcher .dropdown-item {
            font-size: 13px;
            padding: 3px 10px;
        }

            .site-header .customer-switcher .dropdown-item.active, .site-header .customer-switcher .dropdown-item:active, .site-header .customer-switcher .dropdown-item.hover {
                background: transparent;
                color: #2BB884;
            }

.custom-switcher-dropdown {
    max-height: 300px;
    overflow: auto;
}

.logo {
    margin-right: 10px;
}

    .logo img {
        max-height: 40px;
        width: auto;
    }

.dx-list-select-all .dx-item-content.dx-list-item-content:hover,
.dx-list-items .dx-item-content.dx-list-item-content:hover {
    background: rgba(204, 246, 225, 0.4);
    color: #2BB884;
    opacity: 1;
}

.site-footer {
    text-align: center;
    position: absolute;
    background: #F8F8F8;
    bottom: 0;
    width: 100%;
    top: auto;
    left: 0;
    box-shadow: 2px 0px 4px 0px rgba(0, 0, 0, 0.1);
    padding-top: 7px;
}

    .site-footer p {
        margin-bottom: 0;
        padding: 10px;
        color: #7A7A7A;
    }

    .site-footer .version {
        text-align: right;
        color: #46B28A;
    }

.welcome-page {
    background: #E8EEE8;
}

.welcome-section {
    text-align: center;
    margin: 50px auto;
    position: relative;
    max-width: 850px;
}

    .welcome-section .welcome-section-inner {
        position: relative;
        box-shadow: 15px 10px 40px 0px rgba(0, 0, 0, 0.15);
        padding: 40px;
        background-color: #fff;
        z-index: 1;
    }

    .welcome-section h1 {
        font-size: 55px;
        color: #46B28A;
        margin-bottom: 0;
    }

    .welcome-section .simple-text {
        font-size: 20px;
        margin-bottom: 40px;
    }

    .welcome-section .help-text {
        margin-top: 80px;
        margin-bottom: 0;
    }

    .welcome-section .content {
        max-width: 600px;
        margin: 0 auto;
    }

    .welcome-section .graphic-img {
        position: absolute;
        right: calc(-100% + 550px);
        bottom: -40px;
    }

.main-wrapper a {
    font-weight: bold;
    text-decoration: underline;
}

.main-wrapper .qr-text {
    color: #EDB024;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
}

.verify {
    max-width: 600px;
    margin-bottom: 20px;
}

    .verify button {
        height: 48px;
        font-size: 16px;
        border-radius: 4px;
    }

.authentication p {
    font-size: 12px;
    text-align: center;
}

.beadcumb {
    display: flex;
    list-style: none;
    margin-top: 10px;
    padding-left: 0;
    margin-left: 0;
}

    .beadcumb span {
        text-decoration: underline;
        color: #4F4F4F;
    }

        .beadcumb span:hover {
            color: #2BB884;
        }

    .beadcumb li {
        padding-right: 10px;
        margin-right: 10px;
        position: relative;
        color: #A0A0A0;
    }

        .beadcumb li:after {
            display: block;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #A0A0A0;
            content: "";
            position: absolute;
            right: -2px;
            top: 8px;
        }

        .beadcumb li.active {
            color: #4F4F4F;
            font-weight: bold;
        }

        .beadcumb li:last-child:after {
            display: none;
        }

.notifyjs-corner {
    right: auto !important;
    left: 50% !important;
    transform: translateX(-50%);
}

body:has(.login-page) {
    padding-bottom: 0;
}

.logo-login {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .logo-login svg {
        width: 130px;
        height: 66px;
    }

.login-page {
    background: url(../images/login-bg.png) no-repeat right center;
    min-height: 100vh;
    background-size: 60%;
    display: flex;
    align-items: center;
}

    .login-page .form-control {
        height: 38px;
    }

    .login-page .login-wrapper {
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
        padding: 30px 50px 20px 50px;
        width: 500px;
        margin: 0 auto;
        background: rgba(255, 255, 255, 0.6);
        /* Large Devices, Wide Screens */
    }

@media (max-width: 767px) {
    .login-page .login-wrapper {
        padding: 30px 10px 30px 10px;
    }
}

.login-page .login-wrapper h1 {
    font-size: 22px;
}

.login-page .login-wrapper h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000;
}

    .login-page .login-wrapper h2 span {
        color: #46B28A;
    }

.login-page .login-wrapper h3 {
    font-size: 16px;
}

.login-page .form-list {
    margin-bottom: 10px;
}

.login-page .forgot-password-link {
    display: flex;
    justify-content: end;
    margin-bottom: 25px;
}

    .login-page .forgot-password-link a {
        color: #7A7A7A;
        font-weight: 600;
    }

        .login-page .forgot-password-link a:hover {
            color: #297626;
        }

.login-page .btn-secondary {
    height: 50px;
}

.login-page .btn {
    font-size: 16px;
    height: 42px;
    text-transform: uppercase;
}

    .login-page .btn.btn-large,
    .login-page .btn.btn-secondary {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

.login-page .btn-large {
    margin-top: 15px;
    background: #427CF0;
}

.forget-password {
    padding-bottom: 30px;
}

.contact-text {
    text-align: center;
    margin-top: 40px;
    font-size: 10px;
    color: rgb(160, 160, 160);
}

    .contact-text a {
        color: #427CF0;
        font-weight: bold;
        font-size: 11px;
    }

.seperation-line {
    margin-top: 15px;
    text-align: center;
    position: relative;
}

    .seperation-line span {
        font-size: 16px;
        color: #294957;
    }

    .seperation-line:after, .seperation-line:before {
        display: block;
        content: "";
        height: 2px;
        background-color: #CFDFE2;
        width: 42%;
        position: absolute;
        top: 13px;
    }

    .seperation-line:before {
        left: 0;
    }

    .seperation-line:after {
        right: 0;
    }

button.azure-btn {
    border: 1px solid #C0C0C0;
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
    background: #fff;
    margin-bottom: 15px;
}

    button.azure-btn img {
        margin-right: 10px;
    }

.password-view .form-control {
    padding-right: 40px;
}

.access-page h1 {
    font-size: 22px;
}

.validation-summary-errors ul {
    padding-left: 0;
}

    .validation-summary-errors ul li {
        list-style: none;
    }

.authentication-txt {
    margin-top: 10px;
}

.password-view {
    position: relative;
}

    .password-view .form-control {
        padding-right: 40px;
    }

    .password-view .form-control {
        padding-right: 40px;
    }

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    cursor: pointer;
}

input::-ms-reveal,
input::-ms-clear {
    display: none;
}

.dx-freespace-row {
    height: 0px !important;
}

.list-sec .rebember-me {
    margin-bottom: 0;
    margin-top: 5px;
}

.dx-header-row > td > .dx-datagrid-text-content {
    font-weight: bold;
    color: #4F4F4F;
    font-weight: 700;
}

.dx-pager .dx-page-sizes .dx-page-size {
    padding: 5px 8px 7px 8px;
    border: 1px solid #7A7A7A !important;
    color: #7A7A7A;
}

.dx-datagrid {
    color: #4F4F4F;
}

.dx-widget {
    font-size: 13px;
}

.dx-page-size.dx-selection.dx-first-child,
.dx-pager .dx-page-sizes .dx-selection,
.dx-pager .dx-pages .dx-selection,
.dx-pager .dx-pages .dx-page:hover {
    background: #46B28A;
    color: #fff;
    border-color: #46B28A !important;
}

.dx-datagrid-headers .dx-datagrid-table .dx-row > td {
    border-bottom: 1px solid #C0C0C0 !important;
}

.dx-datagrid-borders .dx-datagrid-rowsview, .dx-datagrid-headers + .dx-datagrid-rowsview, .dx-datagrid-rowsview.dx-datagrid-after-headers {
    border-top: 1px solid #C0C0C0 !important;
}

.dx-datagrid-headers {
    border: none;
}

.dx-datagrid .dx-row-alt > td, .dx-datagrid .dx-row-alt > tr > td {
    background-color: #fff;
}

.dx-datagrid-content .dx-datagrid-table .dx-row > td,
.dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
    border-bottom: 1.5px solid #EDEDED;
    font-size: 13px;
}

.select-field {
    position: relative;
}

    .select-field .form-control {
        padding-right: 25px;
    }

    .select-field .arrow {
        position: absolute;
        right: 10px;
        top: 5px;
    }

.dx-texteditor-input {
    min-height: 32px;
}

.dx-list-items {
    max-height: 300px;
}

.dx-dropdowneditor-icon {
    background-image: url(../images/chevron-down.svg) !important;
    background-size: 17px;
}

    .dx-dropdowneditor-icon::before {
        content: "";
    }

.dx-dropdowneditor-button.dx-state-active .dx-dropdowneditor-icon,
.dx-dropdowneditor.dx-dropdowneditor-active .dx-dropdowneditor-icon {
    background-color: transparent;
}

.dx-popup-normal .dx-list-item {
    border-bottom: 1px solid #ccc;
}

.dx-datebox-calendar .dx-dropdowneditor-icon {
    background: none !important;
}

.dx-checkbox-icon {
    width: 16px;
    height: 16px;
    border-color: #2BB884;
}

.readonly-cell.dx-checkbox.dx-checkbox.dx-widget {
    border: none;
}

.dx-list-select-checkbox-container .dx-checkbox-checked .dx-checkbox-icon:before {
    color: #fff !important;
}

.dx-list-select-checkbox-container .dx-checkbox-checked .dx-checkbox-icon,
.dx-list-select-all .dx-checkbox-checked.dx-list-select-all-checkbox .dx-checkbox-icon {
    background: #2BB884;
}

    .dx-list-select-checkbox-container .dx-checkbox-checked .dx-checkbox-icon:before,
    .dx-list-select-all .dx-checkbox-checked.dx-list-select-all-checkbox .dx-checkbox-icon:before {
        color: #fff;
        font-size: 12px;
        top: 30%;
        padding-top: 2px;
    }

.dx-tagbox-popup-wrapper .dx-list-select-all {
    font-size: 13px;
    color: #4F4F4F;
}

.dx-item-content.dx-list-item-content {
    padding: 5px;
}

.dx-list-select-all .dx-state-hover .dx-checkbox-icon {
    border-color: #2BB884;
}

.dx-checkbox.dx-state-hover .dx-checkbox-icon {
    border-color: #2BB884 !important;
}

.dx-checkbox-checked .dx-checkbox-icon {
    background: #2BB884;
}

    .dx-checkbox-checked .dx-checkbox-icon:before {
        color: #fff !important;
    }

.dx-list-select-all .dx-checkbox-indeterminate .dx-checkbox-icon {
    color: #2BB884;
}

.dx-tag-content {
    background: transparent;
    font-size: 11px;
    border: 1px solid #A0A0A0;
    color: #7A7A7A;
}

.dx-tag-remove-button::before {
    height: 10px;
    width: 2px;
}

.dx-show-clear-button .dx-icon-clear {
    top: 17px;
}

.dx-tag-remove-button::after {
    width: 10px;
    height: 2px;
}

.dx-popup-normal .dx-list-item {
    border-bottom: none;
}

.dx-popup-normal .dx-list-items .dx-list-item {
    border: none;
}

.dx-list-select-all .dx-item-content.dx-list-item-content,
.dx-list-items .dx-item-content.dx-list-item-content {
    font-size: 13px;
    color: #4F4F4F;
}

.dx-popup-wrapper > .dx-overlay-content {
    border-top: 2px solid #00D16A;
    max-width: 1000px;
}

.dx-tooltip-wrapper.dx-popup-wrapper > .dx-overlay-content {
    border-top: 0;
    padding-top: 3px;
    padding-bottom: 5px;
}

.dx-tooltip-wrapper.dx-popup-wrapper > .dx-overlay-content {
    text-align: left;
}

.dx-tooltip-wrapper .dx-overlay-content {
    background-color: #FAFAFA;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
    max-width: 350px;
}

    .dx-tooltip-wrapper .dx-overlay-content .dx-popup-content {
        white-space: normal;
    }

.dx-tooltip-wrapper.dx-popover-wrapper .dx-popover-arrow::after {
    background: #FAFAFA;
}

.title-header {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 0;
}

.popup-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    padding-right: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
    background: #fff;
    z-index: 1;
}

.dx-popup-normal {
    max-height: 100vh !important;
}

#customRegexForm .popup-footer {
    padding-top: 10px;
}

#libColumnGrid .dx-selectbox-container,
#libColumnGrid .dx-texteditor-input-container {
    background-color: transparent;
    border: 1px solid #C0C0C0;
    font-size: 13px;
    border-radius: 4px;
}

    #libColumnGrid .dx-selectbox-container .dx-texteditor-input-container {
        border: none;
    }

#libColumnGrid .dx-datagrid-content .dx-datagrid-table .dx-row > td, #libColumnGrid .dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
    border-bottom: none;
    padding: 5px;
}

#libColumnGrid .dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item.dx-state-active {
    background: rgba(0, 0, 0, 0.1);
}

#libColumnGrid .dx-texteditor.dx-editor-outlined {
    border: none;
}

#libraryList .dx-datebox-date .dx-dropdowneditor-icon::before {
    content: "";
}

.dx-datebox-date .dx-dropdowneditor-icon::before {
    content: "\f073";
    font-family: FontAwesome;
    font-size: 12px;
    margin-top: -7px;
}

#libraryList .dx-command-edit a {
    text-decoration: none;
}

#libraryList .dx-data-row td {
    background: #fff;
    font-weight: normal;
}

.dx-datagrid.dx-filter-menu .dx-menu-item-content .dx-icon {
    color: #4F4F4F !important;
}

img.group-icon-download-document {
    position: absolute;
    right: 55px;
    top: 2px;
}

img.group-icon-error {
    position: absolute;
    right: 90px;
    top: 2px;
}

img.group-icon-update-suspense {
    position: absolute;
    right: 20px;
    top: 2px;
}

.access-resource div.dx-texteditor.dx-state-disabled input {
    font-size: 13px;
}

.access-resource .dx-texteditor.dx-editor-outlined,
.access-permissions .dx-texteditor.dx-editor-outlined {
    border-style: solid;
    border-color: #C0C0C0;
    background: rgba(212, 215, 227, 0.631372549);
}

.access-resource .dx-state-disabled input:disabled {
    color: #7A7A7A;
    font-size: 13px;
}

.dx-tag-content {
    background: rgba(255, 255, 255, 0.6);
}

body .form-control:disabled,
.form-control.disabled-fld,
.dx-state-disabled {
    background: rgba(212, 215, 227, 0.631372549);
    border-radius: 4px;
    color: #7A7A7A;
    opacity: 0.6;
    border: 1px solid #D4D7E3;
}

.readonly-cell {
    background: #EFF0F4 !important;
    border-radius: 4px;
    color: #7A7A7A;
    border: 1px solid #D4D7E3;
}

    .readonly-cell.dx-texteditor .dx-texteditor-input {
        background: transparent !important;
        height: 31px;
        opacity: 0.6;
    }

    .readonly-cell.dx-checkbox {
        background: transparent !important;
        height: 16px;
        padding-bottom: 0;
        border-radius: 2px;
    }

        .readonly-cell.dx-checkbox.dx-state-focused .dx-checkbox-icon, .readonly-cell.dx-checkbox.dx-state-hover .dx-checkbox-icon {
            border: none;
        }

        .readonly-cell.dx-checkbox .dx-checkbox.dx-state-readonly .dx-checkbox-icon {
            background-color: transparent;
            border: none;
        }

.dx-list-select-all .dx-list-select-all-label {
    margin-top: -1px;
}

body .form-control:disabled + img {
    opacity: 0.6;
}

.dx-dropdowneditor-button .dx-button-content {
    position: relative;
    top: -1px;
    right: -1px;
}

#libraryList .dx-datagrid-rowsview .dx-row,
#libraryList .dx-datagrid-rowsview .dx-master-detail-row,
#libraryList tr.dx-row.dx-data-row.dx-row-alt {
    border-block: none;
}

    #libraryList .dx-datagrid-rowsview .dx-row td,
    #libraryList .dx-datagrid-rowsview .dx-master-detail-row td,
    #libraryList tr.dx-row.dx-data-row.dx-row-alt td {
        background: #F8F8F8;
        border-block: 1px solid #C0C0C0;
        font-size: 14px;
    }

#libraryList .dx-datagrid-rowsview .dx-master-detail-row {
    background: #fff;
}

    #libraryList .dx-datagrid-rowsview .dx-master-detail-row:not(.dx-datagrid-edit-form) .dx-master-detail-cell,
    #libraryList .dx-datagrid-rowsview .dx-master-detail-row:not(.dx-datagrid-edit-form) > .dx-datagrid-group-space {
        background: transparent;
    }

    #libraryList .dx-datagrid-rowsview .dx-master-detail-row .dx-master-detail-cell {
        padding-block: 5px;
    }

#libraryList .dx-datagrid-content .dx-datagrid-table .dx-row > td {
    font-weight: bold;
    position: relative;
}

#usersGridContainer {
    height: 100%;
}

.dx-datagrid-rowsview .dx-row.dx-group-row,
#libraryList .dx-datagrid-content .dx-datagrid-table .dx-row > td {
    font-weight: normal;
}

    .dx-datagrid-rowsview .dx-row.dx-group-row + .dx-data-row .dx-datagrid-group-opened,
    .dx-datagrid-rowsview .dx-row.dx-group-row + .dx-data-row .dx-datagrid-group-closed {
        top: -4px;
    }

.dx-datagrid-headers .dx-texteditor-input,
.dx-datagrid-rowsview .dx-texteditor-input {
    min-height: 31px;
}

.dx-list:not(.dx-list-select-decorator-enabled) .dx-list-item.dx-state-active,
.dx-list .dx-list-item.dx-state-active,
.dx-list .dx-list-item {
    background: #fff !important;
}

.dx-info {
    color: #7A7A7A;
    font-weight: 500;
    opacity: 1;
}

.dx-pager .dx-pages .dx-page {
    border: 1px solid #7A7A7A;
    height: 32px;
    min-width: 32px;
    border-radius: 4px;
    text-align: center;
}

.dx-overlay-content .dx-list-items {
    max-height: 300px;
}

.dx-datagrid-rowsview .dx-data-row .dx-validator.dx-datagrid-invalid.dx-cell-modified::after,
.dx-datagrid-rowsview .dx-data-row .dx-validator.dx-datagrid-invalid.dx-datagrid-invalid::after {
    border: 1px solid rgba(217, 83, 79, 0.5);
}

.dx-datagrid-rowsview .dx-data-row .dx-validator.dx-datagrid-invalid,
.dx-datagrid-rowsview .dx-data-row .dx-validator.dx-datagrid-invalid {
    background: rgba(217, 83, 79, 0.5);
}

.dx-datagrid-focus-overlay {
    display: none !important;
}

.dx-datagrid-rowsview .dx-row > td,
.dx-datagrid-rowsview .dx-row > tr > td {
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.dx-checkbox-checked .dx-checkbox-icon::before {
    font-size: 11px;
    line-height: 1.1;
    color: #2BB884;
}

.dx-checkbox.dx-state-readonly .dx-checkbox-icon {
    border-color: #f4f4f4;
    background: #EDEDED;
    border-color: #C0C0C0;
}

.dx-calendar-body {
    font-family: "Mulish", sans-serif;
}

    .dx-calendar-body .dx-calendar-cell.dx-calendar-today span {
        border-color: #46B28A;
    }

    .dx-calendar-body .dx-calendar-cell.dx-calendar-contoured-date span {
        box-shadow: 0 0 0 2px rgba(70, 178, 138, 0.5);
    }

    .dx-calendar-body .dx-calendar-cell.dx-calendar-selected-date span {
        background: #46B28A;
    }

    .dx-calendar-body .dx-calendar-cell.dx-state-hover span, .dx-calendar-body .dx-calendar-cell.dx-state-focus span, .dx-calendar-body .dx-calendar-cell.dx-state-active span {
        background: rgba(70, 178, 138, 0.5);
    }

.dx-clear-button-area {
    display: none;
}

#LibraryDocumentList #libraryRecordList tr.dx-row.dx-header-row td:first-child,
#LibraryDocumentList #libraryRecordList .dx-row td:first-child {
    display: none;
}

.top-bread {
    margin-top: 13px;
}

.outer-main-wrapper {
    margin-top: 40px;
}

.no-radius {
    border-radius: 0;
}

.nd-table table {
    width: 100%;
}

.nd-table th {
    border-bottom: 1px solid #C0C0C0;
    font-weight: bold;
    color: #4F4F4F;
    font-size: 13px;
    padding: 10px;
}

.nd-table .search-tr td {
    border-bottom: 1px solid #C0C0C0;
}

.nd-table td {
    border-bottom: 1px solid #EDEDED;
    padding: 10px;
}

.new-tab {
    margin-top: -46px;
}

    .new-tab ul.nav-tabs {
        padding-left: 0;
        margin-left: -10px;
        margin-bottom: -2px;
        z-index: -1;
        position: relative;
        bottom: -5px;
    }

        .new-tab ul.nav-tabs li .nav-link {
            border-radius: 0;
            background-color: #fff;
            color: #EDB024;
            box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.35);
            padding: 5px 10px 8px;
        }

            .new-tab ul.nav-tabs li .nav-link.active {
                background: #F9F0DA;
                color: #4F4F4F;
                box-shadow: none;
            }

.add-access {
    text-align: right;
}

.permissions .select-field,
.permissions .form-field {
    width: calc(100% - 35px);
    position: relative;
}

.access-control-top h3 {
    color: #1A1A1A;
}

.access-control-overview .list-sec {
    justify-self: center;
}

.access-control-overview th {
    border-color: #C0C0C0;
}

.access-control-overview td {
    border: none;
}

.search-container {
    height: 26px;
    border-radius: 0;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

    .search-container input {
        border: none;
        outline: none;
        font-size: 16px;
        width: 100%;
        min-height: 30px;
    }

    .search-container img {
        width: 20px;
    }

#libraryPermissionsGrid thead th {
    vertical-align: middle;
}

.section-head {
    font-size: 16px;
    color: #1A1A1A;
}

.upload-section {
    margin-bottom: 30px;
}

.check-list-section {
    padding-bottom: 20px;
}

.list-sec {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    position: relative;
}

    .list-sec input {
        margin-top: 1px;
        margin-right: 10px;
        opacity: 0;
    }

    .list-sec .before-box {
        position: absolute;
        width: 16px;
        height: 16px;
        background-color: #46B28A;
        border-radius: 2px;
        z-index: 1;
        top: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .list-sec .before-box {
        opacity: 0;
        pointer-events: none;
    }

    .list-sec input:checked + .before-box {
        opacity: 1;
    }

    .list-sec.list-label-check .before-box {
        opacity: 1;
    }

    .list-sec.list-label-check label {
        cursor: pointer;
    }

.after-box {
    width: 16px;
    height: 16px;
    border: 1px solid #2BB884;
    position: absolute;
    background-color: #fff;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 2px;
}

.next-section {
    padding-bottom: 20px;
}

#customerSectionContainer .heading-library {
    margin-bottom: 0;
}

#customerSectionContainer .heading-library {
    font-size: 16px;
    margin-top: 15px;
}

    #customerSectionContainer .heading-library + p {
        font-size: 12px;
        color: #1A1A1A;
    }

#customerSectionContainer .dx-dropdowneditor-icon {
    background-image: url(../images/chevron-bottom-1.svg);
    background-size: 15px;
}

#customerSectionContainer .select-customer p {
    margin-top: 10px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    color: #1A1A1A;
}

#customerSectionContainer .select-customer .form-field {
    margin-left: -5px;
}

#customerRoleForm .dx-texteditor.dx-editor-outlined,
.select-customer .dx-texteditor.dx-editor-outlined {
    opacity: 1;
    border: 1px solid #C0C0C0;
}

.custom-table {
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    padding: 5px;
}

    .custom-table table {
        table-layout: fixed;
        border: none;
    }

    .custom-table th,
    .custom-table td {
        text-align: left;
    }

#toggleAccessBtn {
    font-size: 13px;
    font-weight: bold;
    padding-inline: 10px;
}

.remove-access {
    cursor: pointer;
}

.forgot-password {
    width: 500px;
    max-width: 100%;
    margin: 40px auto 10px;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

    .forgot-password .btn {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        border-radius: 4px;
        min-height: 42px;
    }

    .forgot-password h3 {
        font-size: 22px;
        text-transform: uppercase;
        margin-bottom: 17px;
        text-align: center;
    }

.canvascontainer {
    overflow: hidden;
}

.banner {
    background: url(../images/banner.jpg) no-repeat;
    height: 250px;
    background-size: cover;
    margin-bottom: -140px;
}

.normal-user-sec {
    width: 700px;
    margin: 0 auto;
    border-radius: 4px;
    background: #fff;
    box-shadow: 2px 2px 20px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.top-ico {
    display: flex;
    position: relative;
    top: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medical {
    font-size: 18px;
}

.bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    max-width: 300px;
    justify-self: center;
    padding-bottom: 50px;
}

    .bottom-content a {
        margin-bottom: 10px;
        text-decoration: underline;
    }

    .bottom-content .btn-large {
        margin-bottom: 20px;
        height: 42px;
        border-radius: 4px;
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 500;
        background: #427CF0;
    }

    .bottom-content .logout-btn {
        color: #F41A15;
        text-transform: uppercase;
        background-color: transparent;
        border: none;
        font-weight: bold;
    }

.user-content h2 {
    font-size: 25px;
    font-weight: bold;
}

.popup-validation-date {
    border-right: 1px solid #D4E4D4;
    max-width: 100px;
}

.popup-validation-msg {
    font-size: 13px;
    font-weight: bold;
}

#toggleAccessBtn {
    margin-top: 10px;
}

    #toggleAccessBtn .toggleaccess-img {
        width: 16px;
        height: 16px;
        margin-right: 5px;
    }

.permissions .permission-placeholder {
    height: 32px !important;
}

.page-header {
    font-size: 16px;
    font-weight: bold;
    color: #4F4F4F;
}

.dashboard-wrapper .row {
    align-items: stretch;
}

.dashboard-block {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    height: calc(100% - 10px);
    margin-bottom: 10px;
}

    .dashboard-block .dashboard-block {
        box-shadow: none;
        padding: 0;
        height: auto;
        margin-bottom: 0;
    }

    .dashboard-block.chart-block {
        padding-bottom: 10px;
    }

    .dashboard-block .block-scroll {
        max-height: calc(45vh - 20px);
        overflow-y: auto;
        padding-right: 10px;
    }

    .dashboard-block ul {
        margin-left: 0;
        padding-left: 0;
        margin-top: 10px;
    }

        .dashboard-block ul li {
            list-style: none;
            margin-bottom: 6px;
            border-bottom: 1px solid #EDEDED;
            padding-bottom: 6px;
            color: #1A1A1A;
        }

            .dashboard-block ul li:last-child {
                border: none;
            }

    .dashboard-block .user-item__content {
        width: calc(100% - 50px);
        padding-top: 5px;
    }

    .dashboard-block .user-item__image {
        width: 40px;
    }

.onboard-list ul {
    padding-left: 0;
    margin-left: 0;
}

.onboard-list li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: #EDEDED 1px solid;
    border-radius: 5px;
    padding: 5px 0;
}

    .onboard-list li .boading-name {
        font-size: 14px;
        font-weight: bold;
        padding-right: 10px;
        width: 25%;
        color: #4F4F4F;
    }

@media (min-width: 1600px) {
    .onboard-list li .boading-name {
        width: 40%;
    }
}

@media (max-width: 1440px) {
    .onboard-list li .boading-name {
        font-size: 12px;
        width: 38%;
    }
}

.onboard-list li .co-right {
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 3px;
}

@media (min-width: 1600px) {
    .onboard-list li .co-right {
        width: 60%;
    }
}

@media (max-width: 1440px) {
    .onboard-list li .co-right {
        font-size: 12px;
        width: 62%;
    }
}

.onboard-list .big-cont-list .left-list {
    width: 50%;
}

.onboard-list .big-cont-list .co-right {
    width: 50%;
}

.onboard-list .date-list {
    display: flex;
    flex-wrap: wrap;
}

    .onboard-list .date-list .date-no {
        color: #427CF0;
        font-size: 14px;
        text-decoration: underline;
        margin-bottom: 0;
        font-weight: bold;
    }

    .onboard-list .date-list .date-txt {
        font-size: 10px;
        color: #7A7A7A;
    }

    .onboard-list .date-list .calendar-item {
        border-radius: 4px;
        background: #fff;
        box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
        width: 36px;
        text-align: center;
        margin-right: 10px;
        padding-inline: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

        .onboard-list .date-list .calendar-item span {
            display: block;
        }

            .onboard-list .date-list .calendar-item span.date-no {
                font-size: 14px;
                font-weight: bold;
            }

    .onboard-list .date-list .date-detail {
        width: calc(100% - 50px);
    }

    .onboard-list .date-list .transfer-txt {
        color: #427CF0;
        font-weight: bold;
        text-decoration: none;
        font-size: 13px;
    }

    .onboard-list .date-list a {
        text-decoration: underline;
    }

.onboard-list .tag {
    border: 1.5px solid #FF0500;
    border-radius: 10px;
    padding: 1px 10px;
    line-height: 1;
    display: inline-block;
    margin: 2px;
    font-size: 11px;
}

    .onboard-list .tag.red {
        color: #FF0500;
    }

    .onboard-list .tag.purple {
        color: rgb(151, 71, 255);
        border-color: rgb(151, 71, 255);
    }

    .onboard-list .tag.yellow {
        color: rgb(213, 141, 9);
        border-color: rgb(213, 141, 9);
    }

    .onboard-list .tag .meat-brown {
        color: #D58D09;
        border-color: #D58D09;
    }

    .onboard-list .tag.dark-gray {
        color: #162D3A;
        border-color: #162D3A;
    }

    .onboard-list .tag.dark-brown {
        color: #C34B00;
        border-color: #C34B00;
    }

.co-right {
    display: flex;
    justify-content: right;
}

.board-header {
    display: flex;
    justify-content: space-between;
}

    .board-header .board-head-left {
        margin-bottom: 5px;
    }

        .board-header .board-head-left h2 {
            font-weight: bold;
            font-size: 16px;
            color: #1A1A1A;
        }

.no-bg {
    background-color: transparent;
    border: none;
    color: #297626;
    font-size: 14px;
}

    .no-bg svg {
        fill: #297626;
        position: relative;
        top: -2px;
    }

        .no-bg svg * {
            fill: #297626;
        }

.customer-wrp {
    display: flex;
    justify-content: space-between;
    min-height: 30px;
}

    .customer-wrp .customer-link {
        color: #427CF0;
        font-weight: bold;
        text-decoration: underline;
        cursor: pointer;
    }

    .customer-wrp .customer-detail {
        color: #A0A0A0;
        font-size: 12px;
    }

.customer-item {
    border-bottom: 1px solid #EDEDED;
    padding-top: 7px;
    border-radius: 5px;
}

    .customer-item p {
        margin-bottom: 10px;
    }

.activities-link {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.user-item-card {
    display: flex;
    justify-content: center;
    border-top: 1px solid #C0C0C0;
    padding-top: 10px;
    gap: 10px;
    position: relative;
    top: -15px;
}

.user-iteminner {
    width: 50%;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 4px;
    cursor: pointer;
}

    .user-iteminner:hover, .user-iteminner.active {
        background: rgba(237, 176, 36, 0.1);
    }

    .user-iteminner .user-item__image {
        margin-right: 10px;
    }

    .user-iteminner h5 {
        font-weight: bold;
        margin-bottom: -1px;
        font-size: 12px;
    }

    .user-iteminner p {
        font-size: 12px;
        color: #4F4F4F;
    }

    .user-iteminner.cross h5 {
        color: #D29057;
    }

    .user-iteminner h5 {
        margin-bottom: 0;
        color: #FF0500;
        font-size: 14px;
    }

    .user-iteminner p {
        margin-bottom: 0;
    }

.chart-wrapper {
    display: flex;
    height: calc(100% - 110px);
    justify-content: center;
}

@media (max-width: 1460px) {
    .chart-wrapper {
        height: calc(100% - 125px);
    }
}

.chart-wrapper #chart {
    width: 200px;
    height: 200px;
    position: relative;
    margin-top: -35px;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .chart-wrapper #chart {
        margin-bottom: 15px;
    }
}

.chart-wrapper #chart * {
    filter: none !important;
}

.chart-wrapper .custom-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    border: 2px solid #2BB884;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.09);
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
    z-index: 10;
    color: #7A7A7A;
}

    .chart-wrapper .custom-center strong {
        font-size: 25px;
        color: #2e2e30;
        display: block;
        line-height: 1;
        margin-bottom: -5px;
    }

.loading-block {
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    margin-bottom: 15px;
}

    .loading-block > div {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

#generateButton {
    cursor: pointer;
}

.board-head-right .no-bg img {
    position: relative;
    top: -3px;
}

#activityLogGrid .dx-pager {
    display: none;
}

#activityLogGrid .activities-link {
    margin-top: 15px;
}

.continue-arrow {
    color: #297626;
}

.lab-tabel td {
    width: 10%;
}

.error-page {
    min-height: calc(100vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

    .error-page h1 {
        font-weight: 800;
        font-size: 60px;
        margin: 0;
        color: #46B28A;
    }

    .error-page h2 {
        font-size: 30px;
        font-weight: bold;
    }

    .error-page p {
        font-size: 16px;
        font-weight: normal;
        margin-bottom: 26px;
    }

    .error-page .btn {
        padding-inline: 30px;
    }

.filter-sec {
    padding-block: 10px;
    gap: 5px !important;
}

    .filter-sec .field-item,
    .filter-sec .btn {
        margin-bottom: 0;
    }

    .filter-sec .arrow {
        top: 4px;
    }

        .filter-sec .arrow img {
            opacity: 0.7;
        }

    .filter-sec .form-control {
        min-width: 70px;
        height: 32px;
        padding-block: 5px;
        border-radius: 4px;
        padding-right: 25px;
    }

    .filter-sec .full-search .form-control {
        min-width: 160px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .filter-sec .form-control {
        font-size: 13px;
        color: #7A7A7A;
    }

    .filter-sec svg {
        padding-right: 5px;
    }

.record-wrap {
    border-left: 1px solid #c0c0c0;
    padding-left: 3px;
    margin-left: 3px;
}

.doc-btn {
    margin-top: 10px;
}

.advance-search {
    display: flex;
}

    .advance-search input {
        margin-right: 10px;
        width: 300px;
    }

    .advance-search .search-block {
        position: relative;
    }

        .advance-search .search-block span {
            position: absolute;
            left: 10px;
            top: 5px;
        }

        .advance-search .search-block input {
            padding-left: 40px;
        }

.note-outer {
    width: 800px;
}

.note-wrap table {
    width: 100%;
}

    .note-wrap table label {
        font-weight: bold;
    }

.note-table {
    border-top: 1px solid #D4E4D4;
    border-bottom: 1px solid #D4E4D4;
}

.edit-note {
    border-bottom: 1px solid #D4E4D4;
}

.note-block-wrapper {
    margin-top: 15px;
}

.note-header {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    position: relative;
}

.note-left {
    display: flex;
    flex-wrap: wrap;
    width: calc(75% - 30px - 15%);
}

    .note-left span {
        display: block;
    }

    .note-left .date {
        width: 85px;
    }

    .note-left .cont {
        width: calc(100% - 85px);
    }

        .note-left .cont h4 {
            font-size: 13px;
        }

.note-item {
    border: 1px solid #EDEDED;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
}

.cont {
    padding: 0 10px;
}

    .cont h4 {
        font-weight: bold;
    }

.date {
    min-width: 80px;
    border-right: 1px solid #D4E4D4;
}

.note-header .tgl {
    display: none;
}

.note-header.active .tgl {
    display: block;
}

.note-right {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.note-listing .icon-note-list {
    display: flex;
    flex-direction: column;
}

.note-listing img {
    margin-bottom: 5px;
}

.inner-note-item {
    margin-bottom: 10px;
}

    .inner-note-item .note-item {
        background-color: #F8F8F8;
    }

.document-main-wrapper canvas {
    width: 100%;
}

.history-wrapper {
    display: none;
    max-height: 150px;
    overflow-y: auto;
}

    .history-wrapper.active {
        display: block;
    }

.top-page-slide .status-badge {
    background-color: #f9eee2;
    color: #bb7744;
    padding: 3px 10px;
    border-radius: 999px;
}

.btn-swipe {
    padding: 8px 10px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-swipe:hover img {
        filter: brightness(0) invert(1);
    }

    .btn-swipe img {
        padding-right: 0;
    }

    .btn-swipe:hover svg,
    .btn-swipe:hover svg path {
        fill: #fff;
    }

form#advancedSearchForm .search-row {
    gap: 10px;
    padding-bottom: 10px;
}

.document-main-wrapper {
    overflow: hidden;
}

#EditableGridId label {
    margin-bottom: 1px;
}

.doc-id-title {
    font-weight: bold;
}

.search-filter-block .c-row .c-col:nth-child(1) {
    width: 10%;
}

.search-filter-block .c-row .c-col:nth-child(2) {
    width: 10%;
}

.search-filter-block .c-row .c-col:nth-child(3) {
    width: 15%;
}

.search-filter-block .c-row .c-col:nth-child(4) {
    width: 6%;
}

.search-filter-block .c-row .c-col:last-of-type {
    width: 7%;
}

.search-filter-block .custom-grid .c-row:last-child .c-col {
    border-bottom: none;
}

.search-filter-block .select-field .form-control {
    padding-right: 12px;
}

.search-filter-block .select-field .between-dates .form-control {
    padding-inline: 5px;
}

#advanced-search-pagination-container {
    margin-block: 10px;
}

#advanced-search-pagination-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Arial, sans-serif;
    user-select: none;
    flex-wrap: wrap; /* optional: allows wrapping on small screens */
}

#advanced-search-page-size-selector {
    display: flex;
    gap: 0.4rem;
}

    #advanced-search-page-size-selector .advanced-search-page-size {
        border: 1px solid #7A7A7A;
        background: white;
        padding: 4px 7px;
        cursor: pointer;
        border-radius: 4px;
        font-weight: 600;
        transition: background-color 0.2s ease;
        color: #7A7A7A;
        font-size: 14px;
        width: 32px;
        height: 30px;
    }

        #advanced-search-page-size-selector .advanced-search-page-size.active,
        #advanced-search-page-size-selector .advanced-search-page-size:hover {
            background-color: #2BB884; /* Green */
            color: white;
            border-color: #2BB884;
        }

#advanced-search-page-info {
    margin-left: auto; /* pushes info to the right */
    font-size: 0.9rem;
    color: #7A7A7A;
    white-space: nowrap; /* prevent line breaks */
    font-size: 14px;
    font-weight: 500;
}

#advanced-search-page-nav {
    display: flex;
    align-items: center; /* vertically center buttons */
    gap: 0.25rem; /* space between buttons */
}

#advanced-search-page-buttons {
    display: flex;
    gap: 0.25rem;
    margin: 0 0.5rem; /* space between prev/next and page numbers */
}

    #advanced-search-page-buttons button.advanced-search-page-btn {
        border: 1px solid #7A7A7A;
        background: white;
        padding: 4px 10px;
        cursor: pointer;
        border-radius: 4px;
        min-width: 32px;
        font-weight: 600;
        height: 32px;
        transition: background-color 0.2s ease;
        color: #7A7A7A;
    }

        #advanced-search-page-buttons button.advanced-search-page-btn.active {
            background-color: #2BB884;
            color: white;
            border-color: #2BB884;
            cursor: default;
        }

    #advanced-search-page-buttons span {
        display: flex;
        align-items: center;
        padding: 0 6px;
        font-weight: 600;
        color: #999;
    }

#advanced-search-page-nav button {
    border: none;
    background: white;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    min-width: 32px;
}

    #advanced-search-page-nav button:disabled {
        cursor: not-allowed;
        opacity: 0.4;
    }

    #advanced-search-page-nav button:hover:not(:disabled) {
        background-color: #2BB884;
        color: white;
        border-color: #2BB884;
    }

#splitFieldsForm .field-item {
    padding: 0 5px;
}

    #splitFieldsForm .field-item label {
        font-weight: bold;
        color: #4F4F4F;
    }

.days-detail,
.sus-list {
    border-bottom: 1px solid #C0C0C0;
    padding-bottom: 10px;
}

.top-title-group {
    padding-top: 15px;
    padding-bottom: 5px;
}

.sus-list .list-sec {
    margin-bottom: 15px;
}

.import-block {
    background-color: #F8F8F8;
    margin-top: 10px;
    padding: 15px 10px 20px;
    border-radius: 5px;
}

    .import-block .form-control {
        background-color: #fff;
    }

.suspense-wrap {
    margin-top: 15px;
    margin-bottom: 20px;
}

    .suspense-wrap .active {
        border: 2px solid #2BB884;
    }

    .suspense-wrap .user-iteminner {
        border-radius: 5px;
        width: 100%;
        cursor: pointer;
    }

.rejected-item h5 {
    color: #F41A15;
}

.process-item h5 {
    color: #2BB884;
}

.suspended-item h5 {
    color: #D29057;
}

.sus-icon {
    margin-top: 10px;
}

.code-container {
    background-color: #f8f8f8;
    border-radius: 8px;
}

.popup-btn-right-seperation {
    border-right: 1px solid #7A7A7A;
    margin-right: 8px;
}

.library-inner-wrapper {
    display: table;
    width: calc(100% + 30px);
    margin-left: -15px;
}

#libraryList .dx-datagrid-filter-row td {
    border-bottom: none !important;
}

#libraryList td[aria-label="Column Actions"],
#libraryList .dx-data-row td:last-child {
    width: 12% !important;
}

#libraryList .dx-datagrid-group-closed::before,
#libraryList .dx-datagrid-group-opened::before {
    content: "";
    background: url(../../assets/images/chevron-bottom.svg) no-repeat center center;
    width: 15px;
    background-size: 100% auto;
    display: block;
    height: 15px;
    margin: 2px 0 0 auto;
}

#libraryList .dx-datagrid-group-closed::before {
    transform: rotate(-90deg);
}

.library-inner-list {
    display: table-row;
    width: 100%;
}

    .library-inner-list .library-inner-list_title {
        font-weight: normal;
        font-size: 13px;
        color: #4F4F4F;
        display: table-cell;
        border-bottom: 1px solid #EDEDED;
        padding-left: 30px;
    }

    .library-inner-list .library-inner-list_action {
        display: table-cell;
        width: 12%;
        padding-left: 12px;
        border-bottom: 1px solid #EDEDED;
        padding-block: 5px;
    }

    .library-inner-list:last-child .library-inner-list_title,
    .library-inner-list:last-child .library-inner-list_action {
        border-bottom: none;
    }

    .library-inner-list .history-btn {
        text-decoration: none;
    }

.library-inner-list_action {
    width: 4%;
    min-width: 120px;
}

#searchDiv {
    display: none;
}

.lab-top .field-item.mt-2 {
    padding-top: 3px;
}

.open-table,
.csvImportBlocksContainer {
    width: 100%;
}

    .open-table th,
    .csvImportBlocksContainer th {
        border-bottom: 1px solid #C0C0C0;
        padding-bottom: 10px;
        padding-inline: 10px;
    }

    .open-table .block-img,
    .csvImportBlocksContainer .block-img {
        padding-top: 5px;
        position: relative;
        top: 12px;
    }

    .open-table .csv-table-body td,
    .open-table .new-table-body td,
    .csvImportBlocksContainer .csv-table-body td,
    .csvImportBlocksContainer .new-table-body td {
        padding-top: 10px;
        padding-inline: 5px;
    }

    .open-table .btn,
    .csvImportBlocksContainer .btn {
        text-transform: uppercase;
    }

    .open-table .tab-popup-btn-wrapper,
    .csvImportBlocksContainer .tab-popup-btn-wrapper {
        padding-inline: 5px;
    }

.date-picker-wrapper {
    border: 1px solid #C0C0C0;
    border-radius: 5px;
    display: flex;
}

    .date-picker-wrapper .date-item {
        display: flex;
    }

        .date-picker-wrapper .date-item span {
            display: flex;
            align-items: center;
            background: rgba(212, 215, 227, 0.4);
            padding: 0 10px;
            font-size: 12px;
            font-weight: bold;
            border-right: 1px solid #C0C0C0;
        }

        .date-picker-wrapper .date-item .text-danger span {
            display: block;
        }

        .date-picker-wrapper .date-item:last-child span {
            border-right: 0;
        }

    .date-picker-wrapper .date-item {
        width: 33.33%;
    }

        .date-picker-wrapper .date-item .form-control {
            border: none;
            border-right: 1px solid #C0C0C0;
            border-radius: 0;
            width: 100%;
        }

        .date-picker-wrapper .date-item:last-child .form-control {
            border-right: none;
        }

.field-name-csv {
    width: 35%;
}

.field-position-csv {
    width: 15%;
}

.field-remove-icon-csv {
    width: 45%;
    text-align: right;
}

.group-icons-container {
    display: inline-flex;
    align-items: center;
}

    .group-icons-container img {
        z-index: 1;
    }

.dx-datagrid-rowsview .dx-data-row .dx-cell-modified.dx-cell-modified::after,
.dx-datagrid-rowsview .dx-data-row .dx-cell-modified.dx-datagrid-invalid::after {
    border: none;
}

.sus-list .list-sec {
    display: flex;
    align-items: flex-start;
    max-height: inherit !important;
    margin-bottom: 0;
}

    .sus-list .list-sec label {
        padding-right: 10px;
        width: 100%;
        box-sizing: border-box;
        position: relative;
        top: -2px;
        display: block;
        margin-bottom: 22px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

.zoom-in-out-wrap {
    text-align: center;
    margin-bottom: 10px;
    background: rgb(26, 26, 26);
    width: 100%;
    padding: 10px 0 16px;
    margin-bottom: -6px;
    border-radius: 5px;
}

#libraryRecordList .dx-datagrid-content .dx-datagrid-table .dx-row > td,
#libraryRecordList .dx-datagrid-content .dx-datagrid-table .dx-row > tr > td {
    vertical-align: middle;
}

#libraryRecordList .dx-group-row .dx-group-cell {
    position: relative;
}

#libraryAddForm .form-field .list-sec {
    margin-bottom: 0;
    margin-top: 2px;
}

#EmptySuspenseIndex {
    display: flex;
    width: 100%;
    justify-content: center;
    min-height: 70vh;
    align-items: center;
    text-align: center;
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
}

    #EmptySuspenseIndex .no-sus {
        text-transform: uppercase;
        font-size: 16px;
        font-weight: 600;
        color: #C0C0C0;
        margin-bottom: 0;
        margin-top: 20px;
    }

    #EmptySuspenseIndex .no-sus-txt {
        color: #C0C0C0;
        font-size: 13px;
        margin-top: 0;
    }

#pagination-container {
    margin-block: 10px;
}

#pagination-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: Arial, sans-serif;
    user-select: none;
    flex-wrap: wrap; /* optional: allows wrapping on small screens */
}

#page-size-selector {
    display: flex;
    gap: 0.4rem;
}

    #page-size-selector .page-size {
        border: 1px solid #7A7A7A;
        background: white;
        padding: 4px 7px;
        cursor: pointer;
        border-radius: 4px;
        font-weight: 600;
        transition: background-color 0.2s ease;
        color: #7A7A7A;
        font-size: 14px;
        width: 32px;
        height: 30px;
    }

        #page-size-selector .page-size.active,
        #page-size-selector .page-size:hover {
            background-color: #2BB884; /* Green */
            color: white;
            border-color: #2BB884;
        }

#page-info {
    margin-left: auto; /* pushes info to the right */
    font-size: 0.9rem;
    color: #7A7A7A;
    white-space: nowrap; /* prevent line breaks */
    font-size: 14px;
    font-weight: 500;
}

#page-nav {
    display: flex;
    align-items: center; /* vertically center buttons */
    gap: 0.25rem; /* space between buttons */
}

#page-buttons {
    display: flex;
    gap: 0.25rem;
    margin: 0 0.5rem; /* space between prev/next and page numbers */
}

    #page-buttons button.page-btn {
        border: 1px solid #7A7A7A;
        background: white;
        padding: 4px 10px;
        cursor: pointer;
        border-radius: 4px;
        min-width: 32px;
        font-weight: 600;
        height: 32px;
        transition: background-color 0.2s ease;
        color: #7A7A7A;
    }

        #page-buttons button.page-btn.active {
            background-color: #2BB884;
            color: white;
            border-color: #2BB884;
            cursor: default;
        }

    #page-buttons span {
        display: flex;
        align-items: center;
        padding: 0 6px;
        font-weight: 600;
        color: #999;
    }

#page-nav button {
    border: none;
    background: white;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    min-width: 32px;
}

    #page-nav button:disabled {
        cursor: not-allowed;
        opacity: 0.4;
    }

.rli-column-select.form-control {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#page-nav button:hover:not(:disabled) {
    background-color: #2BB884;
    color: white;
    border-color: #2BB884;
}

.custom-grid-wrapper {
    display: flex;
    margin-top: 10px;
    margin-inline: -5px;
}

.search-filter-block {
    box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px;
    width: 50%;
    margin: 0 5px;
}

#rejectionForm .field-item textarea {
    min-height: 90px;
}

/*# sourceMappingURL=style.css.map */
