@charset "UTF-8";
@font-face {
    font-family: 'MiracleSignature';
    src: url('../fonts/miracle-signature.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/*# sourceMappingURL=custom.min.css.map */
table a:hover {
    font-weight: 500;
}

.hidden {
    display: none;
}

.disabled-container {
    pointer-events: none;
    opacity: 0.5; /* Optional: Makes it look visually disabled */
}

/* signature css */
.auto-signature {
    font-family: 'MiracleSignature', sans-serif;
    height: 66px;
    background: #FFF;
    color:#000;
    font-size: 30px;
    text-align: center;
    /* opacity: 0.5; */
}
/*.kbw-signature {
    display: inline-block;
    border: 1px solid #a0a0a0;
    -ms-touch-action: none;
    width: 100%;
    height: 200px;
}*/

.signature canvas{
    /*width: 100% !important;
    height: auto;*/
    /* display: inline-block; */
    display: block;
    border: 1px solid #e9ebec;
    -ms-touch-action: none;
}
.sign-clear{border: none !important;}
.kbw-signature-disabled {
    opacity: 0.35;
}
.kbw-signature {
    display: table-row-group;
}
@media (min-width: 768px) {
    .period-container {
        display: flex;
    }
}

@media (min-width: 992px) {
    .signature{
        /*display: flex;*/
    }
    .sign-owner {
        width: 50%;
    }
    .sign-clear {
        /* width: 50%; */
        width: 70%;
    }
}

/* datatable scrollbar */
div.dataTables_scrollBody {
    cursor: pointer;
    overflow: auto;
}
div.dataTables_scrollBody::-webkit-scrollbar {
    width: 12px; /* Adjust scrollbar width */
}
div.dataTables_scrollBody::-webkit-scrollbar:horizontal {
    height: 12px;
}
div.dataTables_scrollBody::-webkit-scrollbar-track {
    /*background: #f1f1f1;*/ /* Track color */
    border-radius: 10px;
}
div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #405189; /* Scrollbar color */
    border-radius: 10px; /* Rounded corners */
    border: 2px solid var(--vz-light);
}
div.dataTables_scrollBody::-webkit-scrollbar-thumb:hover {
    background: #555; /* Hover color */
    border: 2px solid var(--vz-light);
}
/* table-scroll-primary class apply above table tag */
.table-scroll-primary div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #405189;
}
.table-scroll-secondary div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #3577f1;
}
.table-scroll-success div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #0ab39c;
}
.table-scroll-info div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #299cdb;
}
.table-scroll-warning div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #f7b84b;
}
.table-scroll-danger div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #f06548;
}
.table-scroll-light div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #f3f6f9;
}
.table-scroll-dark div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background: #212529;
}

/* datatable fixedColumns */
table.dataTable thead tr>.dtfc-fixed-left,
table.dataTable thead tr>.dtfc-fixed-right {
    top: 0;
    bottom: 0;
    z-index: 3;
}
table.dataTable tfoot tr>.dtfc-fixed-left,
table.dataTable tfoot tr>.dtfc-fixed-right {
    top: 0;
    bottom: 0;
    z-index: 3;
    background-color: white
}

table.dataTable tbody tr>.dtfc-fixed-left,
table.dataTable tbody tr>.dtfc-fixed-right {
    z-index: 1;
    background-color: white
}

div.dtfc-left-top-blocker,
div.dtfc-right-top-blocker {
    background-color: white
}

html.dark table.dataTable thead tr>.dtfc-fixed-left,
html.dark table.dataTable thead tr>.dtfc-fixed-right,
html.dark table.dataTable tfoot tr>.dtfc-fixed-left,
html.dark table.dataTable tfoot tr>.dtfc-fixed-right {
    background-color: var(--dt-html-background)
}

html.dark table.dataTable tbody tr>.dtfc-fixed-left,
html.dark table.dataTable tbody tr>.dtfc-fixed-right {
    background-color: var(--dt-html-background)
}

html.dark div.dtfc-left-top-blocker,
html.dark div.dtfc-right-top-blocker {
    background-color: var(--dt-html-background)
}

/*View data style*/
.dynamic-value-output {
    padding: .5rem;
    border-bottom: 1px dashed #b9b7b7;
    background: #d9e1e950;
    border-radius: 4px;
}
.dynamic-value-output label.form-label {
    margin: 0;
}

.files-attachment-block {
    max-width: 450px;
    width: 100%;
}
.files-attachment-parent {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
}

.form-switch-lg.switch-yes-no input[type="checkbox"]::before {
    content: "No";
    position: absolute;
    left: 26px;
    top: -3px;
    color: #405189;
    font-size: 10px;
    font-weight: bold;
    transition: all 0.3s;
}

.form-switch-lg.switch-yes-no input[type="checkbox"]:checked::before {
    color: #ffffff;
    content: "Yes";
    left: 5px;
}