/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/
/* xs: phone - portrait */
/* default. no media */

body {
    background-color: white;
    font-size: 14px;
}

a {
    text-decoration: underline !important;
    text-decoration-style: dashed !important;
}

a:has(>i[class='fa-solid fa-pen-to-square']) {
    text-decoration: none !important;
}

a:has(>i[class='fa-solid fa-trash-can']) {
    text-decoration: none !important;
}

.main {
    padding-top: 0px !important;
}

.dropdown-menu a,
.leaflet-container a {
    text-decoration: none !important;
}

.txt-orange {
    color: var(--colorOrange);
}


.txt-disable {
    color: gray !important;
    opacity: .5;
}


.txt-red {
    color: var(--colorRed);
}

.bg-orange {
    background-color: var(--colorOrange) !important;
}

.txt-gray {
    color: var(--colorGray);
}

.txt-black {
    color: #000;
}

.txt-green {
    color: var(--colorGreen2);
}

.fs-page {
    font-size: 24px;
}
.fs-section {
    font-size: 18px;
}
.fs-button {
    font-size: 14px;
}
.fs-span {
    font-size: 14px;
}

.rounded-xl {
    border-radius: 24px !important;
}

.rounded-lg {
    border-radius: 12px !important;
}

.bg-orange6 {
    background: var(--colorOrange6);
}

.text-main {
    color: var(--colorOrange) !important;
}

.btn-green {
    color: white;
    background-color: var(--colorGreen);
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.btn-link {
    color: var(--colorOrange) !important;
    text-decoration: none;
    transition: all .2s;
}
.btn-link:hover {
    color: var(--bs-dark) !important;
}

.approval-btn-icon {
    display: flex;
    column-gap: 4px;
    row-gap: 4px;
}
.approval-btn-icon > a,
.btn-icon {
    transition: all .2s;
}
.btn-icon.disable,
.btn-icon.disable {
    opacity: .35;
}
.approval-btn-icon > a img,
.btn-icon img {
    height: 18px;
    width: 18px;
    min-height: 18px;
    min-width: 18px;
    object-fit: contain;
    object-position: center;
    transition: all .2s;
}
.approval-btn-icon > a img {
    background-clip: padding-box;
    padding: 3px 2px 2px 2px;
}
.btn-icon img {
    filter: grayscale(100%) brightness(20%);
}
.btn-icon:hover,
.btn-icon.text-dark:hover,
.btn-icon:focus,
.btn-icon.text-dark:focus {
    color: var(--colorOrange) !important;
}
.btn-icon:hover img,
.btn-icon:focus img {
    filter: grayscale(0%);
}

.btn-icon.disable:hover img,
.btn-icon.disable:focus img {
    filter: inherit;
    filter: grayscale(100%) brightness(20%);
}

.btn-icon-with-text {
    display: inline-flex;
    row-gap: 5px;
    column-gap: 5px;
    align-items: center;
    justify-content: start;
}
.btn-icon-with-text > img {
    height: 18px;
    width: 18px;
    object-fit: contain;
    object-position: center;
    transition: all .2s;
}
.btn-icon-with-text:focus > img,
.btn-icon-with-text:active > img {
    filter: grayscale(100%) invert(100%);
}
.btn-icon-with-text:disabled {
    filter: grayscale(100%) !important;
}

.btn-main-absolute {
    position: absolute;
    bottom: 120px;
    right: 80px;
}

.btn-main {
    color: white;
    width: 100%;
    background-color: var(--colorOrange);
    border-radius: 6px !important;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border-width: 2px;
    text-decoration: none !important;
}
.btn-delete {
    width: 100%;
    border-radius: 6px !important;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border-width: 2px;
    text-decoration: none !important;
}

.btn-main-light {
    color: var(--colorOrange);
    width: 100%;
    background-color: #E5AB1B1F;
    border-radius: 6px;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border:none;
    text-decoration: none !important;
}

.btn-main-border {
    color: var(--colorOrange);
    width: 100%;
    background-color: white;
    border: solid 1px var(--colorOrange);
    border-radius: 6px;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border-width: 2px;
    text-decoration: none !important;
}

.btn-main[disabled],
.btn-main:disabled {
    background-color: rgba(201, 201, 201, 1) !important;
    cursor: default;
}

.btn-export button {
    font-size: 1rem;
    color: white;
    background: var(--colorOrange);
    border-radius: 6px;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    border-width: 2px;
    border-color: var(--colorOrange);
    padding: 0.4em 1em;
    max-height: 42px;
    text-decoration: none !important;
    margin-right: 0;
    margin-bottom: 0;
}

.btn-export button.dt-button:hover:not(.disabled),
.btn-export button.dt-button:focus:not(.disabled),
.btn-export button.dt-button:active:not(.disabled) {
    background: var(--colorOrangeSub) !important;
    border-color: var(--colorOrangeSub) !important;
    color: white;
    font-weight: normal !important;
    border-width: 2px;
}

.buttons-excel {
    width: 100%;
}

.btn-main:hover {
    color: white;
    background-color: var(--colorOrangeSub);
}

.btn-main-light:hover {
    color: white;
    background-color: var(--colorOrange);
}

.btn-main-outline {
    color: var(--colorOrange);
    background-color: white;
    border-color: var(--colorOrange);
    border-radius: 12px;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.btn-main-outline:hover {
    color: black;
    border-color: black;
}

.btn-danger-outline {
    color: var(--colorRed1);
    background-color: white;
    border-color: var(--colorRed1);
    border-radius: 12px;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
    text-decoration: none !important;
}

.btn-danger-outline:hover {
    color: black;
    border-color: black;
}

.btn-cancel-custom-red {
    background: var(--colorRed);
    color: white;
}

.btn-cancel-custom-red:hover {
    background: #000;
    color: white;
}

.btn-export-custom-orange {
    background: var(--colorOrange);
    color: white;
}

.btn-export-custom-orange:hover {
    background: #000;
    color: white;
}

.group-btn-form button {
    min-width: 135px;
    max-width: calc(50% - 5px);
}

.group-btn-form button.btn-cancel-custom {
    margin-right: 10px;
}

.group-btn-form-filter button {
    width: calc(50% - 5px);
    border-radius: 6px !important;
    padding: 6px !important;
}

.group-btn-form-filter button.btn-cancel-custom {
    margin-right: 8px;
}

.insert-dropdown a i {
    color: var(--colorOrange);
}

.insert-dropdown a i:hover {
    color: white;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
}

.disable-checkbox {
    width: 18px;
    height: 18px;
    background: gray !important;
    opacity: .3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.selected-data {
    color: var(--colorOrange);
    font-weight: bold;
}

.halfcheckbox {
    cursor: pointer;
    background: white;
    color: var(--colorOrange);
    height: 17px;
    width: 17px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3px;
    margin-bottom: 2px;
    position: relative;
}

.halfcheckbox i {
    position: absolute;
    left: 0;
    right: 0;
    top: 2px;
}

.form-control-lg {
    font-size: 1rem !important;
}

a {
    color: var(--colorTurquoise);
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

a:hover {
    color: black;
}

a.sub-link {
    color: var(--colorGray);
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

a.sub-link:hover {
    color: var(--colorTurquoise);
}


.breadcrumb-custom {
    background: white !important;
    right: 0 !important;
    padding-left: 10px !important;
}

.border1px {
    border: 1px !important;
}

.breadcrumb-item a {
    color: black;
    text-decoration: none !important;
}

.breadcrumb-item a:hover {
    color: var(--colorTurquoise);
}

.breadcrumb-item.active {
    color: var(--colorTurquoise);
    font-weight: bold;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: black;
    font-weight: normal;
}

.form-custom input {
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-color: black;
    border-radius: 0;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.form-custom .form-group .form-control {
    padding-left: 3rem;
}

.form-custom .form-group .form-control-icon {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: black;
    font-size: 24px;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.form-custom input:focus {
    border-color: var(--colorOrange);
    box-shadow: none;
}

.form-custom input:focus .form-control-icon {
    color: var(--colorOrange) !important;
}

.custom-title-page::after {
    border-top: 3px solid var(--colorGray2);
}

.custom-title-page {
    font-family: 'PTSansNarrow' !important;
}

.custom-title-page h1 {
    font-family: 'PTSansNarrow' !important;
}

.main .container-custom {
    padding: 65px 25px 0 25px;
}

.disabled-row td,
.disabled-row td:hover {
    background: var(--colorGray4) !important;
}

.table.table-custom> :not(:first-child) {
    border-top: 0;
}

.table-custom {
    margin-bottom: 0;
}

.table-custom thead {
    color: white;
    background-color: var(--colorOrange);
    border: 1px solid var(--colorOrange);
}

.table-custom th,
.table-custom td {
    text-align: center;
    vertical-align: middle;
}

.table-custom th {
    border: 0;
    border-right: 1px solid var(--colorGray2);
    border-left: 1px solid var(--colorGray2);
}

.table-custom tbody td {
    color: black;
    border: 0;
    border-bottom: 1px solid var(--colorGray2);
}

.table-custom tbody tr:last-child td {
    border-bottom: 0;
}

.action-icon i {
    color: var(--colorOrange);
    transition: all .2s;
}

.action-icon i:hover {
    color: black;
}

.border-custom-bottom {
    border-bottom: 1px solid var(--colorGray);
    opacity: .5;
}

.border-custom-bottom:last-child {
    border: 0;
}

/* new-datatable-custom */
.new-datatable-custom {
    border-top: 1px solid rgba(0, 40, 100, 0.12) !important;
}
.new-datatable-custom thead tr th {
    background-color: var(--bs-white) !important;
    border-bottom: 0 none !important;
    font-size: 14px;
    vertical-align: middle;
    text-transform: uppercase;
}
.new-datatable-custom thead tr > .dtfc-fixed-left,
.new-datatable-custom thead tr > .dtfc-fixed-right {
}
.new-datatable-custom tbody tr td {
    border-bottom: 0 none !important;
    border-top: 0 none !important;
    padding: 12px 16px !important;
    transition: all .2s;
}
.new-datatable-custom tbody tr > .dtfc-fixed-left,
.new-datatable-custom  tbody tr > .dtfc-fixed-right {
}
.new-datatable-custom tbody tr td:last-child {
    text-align: center;
}
.new-datatable-custom tbody tr:nth-child(odd) > td {
    background-color: rgba(251, 245, 227, 1) !important;
}
.new-datatable-custom tbody tr td:first-child {
    border-radius: 15px 0 0 15px;
    text-align: center;
}
.new-datatable-custom tbody tr td:last-child {
    border-radius: 0 15px 15px 0;
}
.dataTables_scrollBody table {
    margin-top: -2px !important;
}
.custom-footer {
    background-color: var(--bs-white) !important;
}
.custom-footer .dataTables_length {
    margin-left: 6px !important;
}

/* .filter-search-table .searchCustom2 {
    box-shadow: unset !important;
    border-bottom: 1px solid var(--colorOrange);
    border-radius: 10px 10px;
}
.filter-search-table .searchCustom2:focus {
    border:  0 none;
    border-bottom: 1px solid var(--colorOrange);
} */

.dataTables_wrapper .dataTables_length label,
.dataTables_wrapper .dataTables_info {
    color: var(--bs-dark);
}
.dataTables_wrapper .dataTables_length label select {
    border: 1px solid var(--colorGray) !important;
    padding: 0 5px 0 10px !important;
}

/* Custom DataTable */
.filter-search-table {
    width: 100%;
}

.filter-search-table .toggle {
    position: absolute;
    top: 10px;
    margin: 0;
    z-index: 1;
    right: 0;
}

.filter-search-table .toggle .toggle-icon {
    margin-right: 12px;
    color: var(--colorOrange);
}

.filter-search-table .toggle .toggle-content {
    background: white;
    margin-top: 20px;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

.filter-search-table::after {
    content: '';
    position: absolute;
    height: 24px;
    width: 24px;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.filter-search-table .searchCustom2 {
    padding-right: 40px;
}

.collpase-search {
    position: absolute;
    right: 12px;
    top: 10px;
}

.collpase-search i {
    font-size: 15px;
}

#collapseFilterSearch {
    position: absolute;
    z-index: 2;
}

#collapseFilterSearch .card {
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    border: none;
    border-radius: 6px;
}


/* FOOTER */
.custom-footer {
    background: var(--colorTurquoise);
    padding: .4em;
    font-size: .85rem;
}

.custom-footer .paginate_input {
    background-color: white;
    border: 0px;
    border-radius: 6px;
    color: black;
    width: 16px;
    min-width: 16px;
    text-align: center;
}

table.dataTable.no-footer {
    border: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
    background: var(--colorGray);
    margin-left: 2px;
    margin-right: 2px;
}

.dataTables_wrapper .dataTables_paginate {
    color: white;
    padding-top: 0;
    float: left;
    margin-top: 0;
}

.custom-footer .dataTables_paginate.paging_input {
    order: 1;
    text-align: right;
}

.dataTables_wrapper .dataTables_info {
    color: white;
    padding-top: 0;
    line-height: 1.8rem;
}

.custom-footer .dataTables_length {
    margin-left: 5px;
}

.dataTables_wrapper .dataTables_length label {
    display: flex;
    align-items: center;
    color: white;
    margin: 0;
    font-size: .85rem;
    text-transform: capitalize;
    font-weight: normal;
}

.dataTables_wrapper .dataTables_length label select {
    color: black;
    background-color: white;
    border-color: transparent;
    border-radius: 6px;
    margin-right: 5px;
    padding: 0 !important;
    height: 25.19px !important;
}

.dataTables_wrapper .dataTables_length label select:focus {
    color: black;
    border-color: var(--colorOrange);
    /* box-shadow: 0 0 0 2px var(--colorOrange4); */
}

.dataTables_wrapper .dataTables_filter label {
    position: relative;
}

.dataTables_wrapper .dataTables_filter input {
    margin-left: 0;
    margin-bottom: 24px;
    border-top: 0px;
    border-right: 0px;
    border-left: 0px;
    border-color: #B7BDC2;
    border-radius: 0;
    padding-left: 40px;
}

.dataTables_wrapper .dataTables_filter {
    float: left;
}

.dataTables_wrapper .dataTables_filter input:focus {
    box-shadow: none;
    border-color: var(--colorOrange);
}

.datatable-custom tbody {
    border-top-color: white !important;
}

.datatable-custom .cbx-delete-multi label.checkbox-style-3-label {
    margin: 0;
}

.datatable-custom .cbx-delete-multi .checkbox-style-3-label:before {
    margin-right: 0;
}

.datatable-custom th {
    background-color: white;
    color: black;
    white-space: nowrap;
    text-align: center;
}

.datatable-custom td {
    text-align: center;
    vertical-align: center;
}

.datatable-custom thead th,
.datatable-custom tbody td {
    border: unset !important;
    font-size: .85rem;
    padding: 4px !important;
    vertical-align: middle;
    text-transform: uppercase;
}

/* .datatable-custom tbody tr:first-child th,
.datatable-custom tbody tr:first-child td {
    border-top: 1px solid var(--colorGray) !important;
} */

/* .datatable-custom tbody tr:last-child td {
    border-bottom: 1px solid var(--colorGray) !important;
} */

.datatable-custom>tbody>tr:nth-child(odd) {
    background-color: white;
    transition: .2s all ease-in-out;
}

.datatable-custom tbody tr:nth-child(odd)>.dtfc-fixed-left,
.datatable-custom tbody tr:nth-child(odd)>.dtfc-fixed-right {
    background-color: white;
}

.datatable-custom tbody tr:nth-of-type(even) {
    background-color: var(--colorTurquoise3);
    transition: .2s all ease-in-out;
}

.datatable-custom tbody tr:nth-child(even)>.dtfc-fixed-left,
.datatable-custom tbody tr:nth-child(even)>.dtfc-fixed-right {
    background-color: var(--colorTurquoise3);
}

.datatable-custom thead tr th {
    background-color: var(--colorTurquoise);
    color: white;
}
.dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody>table>thead>tr>th {
    padding: 0 4px !important;
}
.datatable-custom thead tr th.sorting_asc, .datatable-custom thead tr th.sorting,
.datatable-custom thead tr th.sorting_asc, .datatable-custom thead tr th.sorting_asc,
.datatable-custom thead tr th.sorting_asc, .datatable-custom thead tr th.sorting_desc {
    padding-right: 14px !important;
}

.datatable-custom thead tr th.sorting_asc,
.datatable-custom thead tr th.sorting_desc {
    background-color: var(--colorTurquoise);
}

table.dataTable thead tr>.dtfc-fixed-left,
table.dataTable thead tr>.dtfc-fixed-right {
    background-color: var(--colorTurquoise);
}

.datatable-custom tbody tr:nth-child(odd) td[class^="sorting"] {
    background-color: var(--colorTurquoise4);
}

.datatable-custom tbody tr:nth-child(even) td[class^="sorting"] {
    background-color: var(--colorTurquoise5);
}

.datatable-custom tbody tr.dtrg-group th {
    background: #FFDB80 !important;
    padding: 4px;
    font-size: .85rem;
    text-transform: uppercase;
    border: 0;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: unset;
}

/* .datatable-custom tbody tr.odd:hover > td,
.datatable-custom tbody tr.even:hover > td {
    background: rgba(236, 184, 51, 0.5);
} */

/* Pagination */
/* .custom-footer .last.paginate_button,
.custom-footer .first.paginate_button,
.custom-footer .paginate_page{
    display: none;
} */


.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.1em 0.38em;
    border-radius: 50%;
    background: white;
    margin-left: 2px;
    margin-right: 2px;
    color: var(--colorTurquoise) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    border: 1px solid transparent;
    background: var(--colorOrange);
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
    border: 1px solid transparent;
    background: var(--colorOrange2);
}

.table.dataTable.dtr-inline.collapsed>tbody>tr[role="row"]>td:first-child:before {
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--colorOrange);
}

/* End Custom DataTable */

.datetimepickers-table {
    border: none;
}

.datetimepickers-table::placeholder,
.datetimepickers::placeholder {
    color: var(--colorOrange);
    font-weight: bold;
    opacity: 1;
}

.datetimepickers {
    border-color: var(--colorOrange);
    height: 42px;
    border-radius: 6px;
}

.datepicker .table> :not(:first-child) {
    border-top: 0px;
}

.datepicker table tr td.active.active,
.datepicker table tr td.active.highlighted.active,
.datepicker table tr td.active.highlighted:active,
.datepicker table tr td.active:active,
.datepicker table tr td.active.active:hover {
    background: var(--colorOrange);
}

.datepicker .datepicker .next.disabled,
.datepicker .prev.disabled,
.bootstrap-datetimepicker-widget table td.disabled,
.bootstrap-datetimepicker-widget table td.disabled:hover {
    background: gray !important;
    opacity: .2;
    visibility: visible;
    color: black !important;
}

.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn,
.bootstrap-datetimepicker-widget .timepicker .timepicker-picker a.btn:hover {
    color: var(--colorOrange);
}

.datepicker table tr td,
.datepicker table tr th {
    border-radius: 0px;
}

.datepicker table tr th {
    background: var(--colorOrange);
    text-transform: uppercase;
    color: #ffffff;
}

.bootstrap-datetimepicker-widget table thead tr:first-child th:hover {
    background: #000;
}

.datepicker table tr td span.active.active,
.datepicker table tr td span.active.disabled.active,
.datepicker table tr td span.active.disabled:active,
.datepicker table tr td span.active.disabled:hover.active,
.datepicker table tr td span.active.disabled:hover:active,
.datepicker table tr td span.active:active,
.datepicker table tr td span.active:hover.active,
.datepicker table tr td span.active:hover:active,
.datepicker table tr td span.active.active:hover,
.datepicker table tr td span.active:hover.active:hover {
    background: var(--colorOrange);
}

.form-floating>label {
    top: -3px;
}

.form-custom-admin input,
.form-custom-admin select {
    color: black;
}

.form-custom-admin input,
.form-custom-admin textarea {
    border-color: var(--bs-gray-500);
    border-radius: 10px;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.form-custom-admin .form-floating>label {
    color: var(--colorGray);
    font-weight: 400;
    left: 48px;
    padding: 0.75rem 0.75rem;
    font-size: 13px;
}

.form-custom-admin .form-group .form-control {
    padding-left: 48px;
    max-height: 42px;
}

.select2-container--default.select2-container--disabled .select2-selection--single,
.form-custom-admin .form-floating>.form-control:disabled,
.form-custom-admin .form-floating>.form-control:disabled:focus,
/* .form-custom-admin .form-group .form-control:read-only, */
.form-custom-admin .form-group .form-control:disabled {
    background-color: rgba(250, 250, 250, 1) !important;
}

.form-custom-admin .form-group .form-control:read-only::placeholder,
.form-custom-admin .form-group .form-control:disabled::placeholder {
    color: #eee !important;
}

.form-custom-admin .form-group textarea.form-control {
    /* padding-left: 12px; */
    max-height: unset;
    padding-top: 13px !important;
}

.form-custom-admin .form-floating>.form-control:read-only:focus,
.form-custom-admin .form-floating>.form-control:read-only:not(:placeholder-shown) {
    background-color: #fff;
}

.form-custom-admin .form-group input[type="file"].form-control {
    background-color: #fff;
}

.form-custom-admin .form-group .form-control-icon {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    z-index: 2;
    display: block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    pointer-events: none;
    color: black;
    font-size: 24px;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.form-custom-admin input:focus,
.form-custom-admin input:hover,
.form-custom-admin textarea:focus,
.form-custom-admin textarea:hover {
    border-width: 1px !important;
    border-color: var(--colorOrange);
}

.form-custom input.error:focus,
.form-custom-admin input.error:focus,
.form-custom select.error:focus,
.form-custom-admin select.error:focus {
    border-color: var(--colorRed);
}

.form-custom-admin input:focus .form-control-icon {
    color: var(--colorOrange) !important;
}

.form-custom-admin img {
    max-height: 45px;
    /* margin-right: 8px; */
}

.form-custom-admin .form-floating>.form-control:focus~label,
.form-custom-admin .form-floating>.form-control:not(:placeholder-shown)~label,
.form-custom-admin .form-floating>.form-select~label {
    transform: scale(0.85) translateY(-9px) translateX(-28px);
    background: white;
    opacity: 1;
    padding: 0 2px;
    height: 25px;
}

.form-custom-admin .form-floating>.form-control:focus,
.form-custom-admin .form-floating>.form-control:not(:placeholder-shown) {
    color: black;
    padding-top: 0;
    padding-bottom: 0;
}

#togglePassword {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 20px;
    z-index: 2;
    color: black;
    opacity: .5;
    cursor: pointer;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

#togglePassword:hover {
    opacity: 1;
    color: var(--colorOrange);
}

.icon-rotate {
    transform: rotate(180deg);
}

.text-main {
    color: var(--colorOrange);
}

.btn-confirm {
    min-width: 120px;
    border-radius: 6px;
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.btn-continue {
    color: white;
    background: var(--colorGreen2);
    -webkit-transition: all 333ms ease-in-out;
    -ms-transition: all 333ms ease-in-out;
    transition: background-all 333ms ease-in-out;
}

.btn-continue:hover {
    color: white;
    background: black;
}

.btn-cancel-custom {
    border-radius: 6px;
    font-weight: bold;
    color: var(--colorOrange) !important;
    border: 2px solid var(--colorOrange);
    transition: all .2s;
}
.btn-cancel-custom:hover {
    background-color: var(--colorOrange2) !important;
    color: var(--bs-white);
}

.btn-main-custom {
    color: white;
    background-color: var(--colorOrange);
    border: 2px solid var(--colorOrange);
    border-radius: 6px !important;
    -webkit-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.btn-main-custom:hover {
    color: white;
    background: var(--colorOrangeSub);
    border: 2px solid black;
}

.btn-cancel-custom:hover {
    color: var(--colorOrange);
    border: 2px solid var(--colorOrange);
}

.modal-content {
    border-radius: 20px;
}

/* Modal Add Data */
.modal-custom .circle-close {
    border-radius: 50%;
    border: 2px solid black;
    padding: 0px 8px;
}

.modal-custom .circle-close i {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;

}

.modal-custom .img-modal {
    text-align: center;
    padding-top: 3rem;
}

.modal-custom .img-modal img {
    max-width: 250px;
}

.modal-custom .modal-header {
    position: absolute;
    right: 0;
}

.modal-header img {
    max-height: 28px;
}

.circle-close {
    border-radius: 50%;
    border: 2px solid black;
    padding: 0px 8px;
}

.img-confirm {
    text-align: center
}

.img-confirm img {
    max-width: 250px;
}

.modal-header-custom {
    position: absolute;
    right: 0;
}


/* Alert Error */
.alert-custom {
    width: 101%;
    max-width: 500px;
    opacity: 0;
    visibility: hidden;
    left: calc(50% + 125px);
    transform: translate(-50%, 0);
    top: 50px;
    position: fixed;
    background-color: var(--colorRed);
    color: white;
    border-radius: 0px;
    z-index: 2;
}

.alert-custom .desc-alert {
    font-size: 14px;
}

.alert-custom i {
    font-size: 2rem;
}

.alert-custom .close i {
    font-size: 1.2rem;
    text-shadow: none;
    color: white;
    opacity: 1 !important;
}

.remove-preview {
    background-color: var(--colorRed) !important;
}



/* File Upload */
.box {
    position: relative;
    background: #ffffff;
    width: 100%;
}

.box-header {
    color: #444;
    display: block;
    padding: 10px;
    position: relative;
    margin-bottom: 10px;
}

.box-tools {
    position: absolute;
    right: 10px;
    top: 20px;
    left: 50%;
    transform: translate(calc(-50% + 50px), 0);
}

.dropzone-wrapper {
    max-width: 500px;
    border: 2px dashed black;
    color: var(--colorGray);
    position: relative;
    height: 220px;
    border-radius: 20px;
}

.dropzone-desc {
    position: absolute;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    width: 40%;
    font-size: 16px;
}

.dropzone,
.dropzone:focus {
    position: absolute;
    outline: none !important;
    width: 100%;
    height: 220px;
    cursor: pointer;
    opacity: 0;
}


.dropzone-wrapper:hover #btn-uploads,
.dropzone-wrapper.dragover #btn-uploads {
    background: black
}

.dropzone-wrapper:hover,
.dropzone-wrapper.dragover {
    background: var(--colorGray2);
}

.preview-zone {
    text-align: center;
}

.preview-zone .box {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
}

.btn-danger {
    padding: 0rem 0.5rem;
}

.circle-close {
    border-radius: 50%;
    border: 2px solid black;
    padding: 0px 8px;
}

.circle-close i {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 5px;
}

.img-confirm {
    text-align: center
}

.img-confirm img {
    max-width: 250px;
}

.modal-header-custom {
    position: absolute;
    right: 0;
}

.hidden {
    display: none;
}

.box-body {
    max-width: 400px;
    color: var(--colorOrange);
    font-weight: bold;
}

.modal-lg-custom {
    max-width: 700px;
}

.modal-lg-custom .img-modal>img {
    max-width: 200px;
}

img.qr-code {
    max-width: 230px;
}

/* Select2 Custom Style */
.form-master-data .select2-container--default {
    width: 100% !important
}

.form-master-data .select2-container--default .select2-selection--multiple {
    display: flex;
    flex-wrap: wrap;
    min-height: 5vh !important; /* Minimum tinggi awal */
    max-height: auto; /* Mengizinkan tinggi bertambah */
    overflow: visible; /* Mengizinkan penyesuaian tinggi */
    padding-right: 10px;
}


.form-master-data .select2-container--default .select2-selection--single,
.form-master-data .select2-container--default .select2-selection--single .select2-selection__arrow,
.form-master-data .select2-container--default .select2-selection--single .select2-selection__rendered,
.form-master-data .select2-container--default .select2-selection--multiple,
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__arrow {
    height: 42px;
    font-weight: 550;
    padding-left: 9px;
    border-color: var(--bs-gray-500) !important;
    border-radius: 10px;
}
.form-master-data .select2-container--default .select2-selection--single .select2-selection__arrow b,
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__arrow b {
    border: 0 none;
    left: unset;
    top: 20%;
    right: 20px;
    margin: unset;
}
.form-master-data .select2-container--default .select2-selection--single .select2-selection__arrow b::before,
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__arrow b::before {
    content: '\e72d';
    color: var(--colorOrange);
    font-family: "font-icons";
    font-size: 12px;
}
.form-master-data .select2-container:hover .select2-selection--single,
.form-master-data .select2-container:hover .select2-selection--multiple {
    border: solid 1px var(--colorOrange) !important;
}
.form-master-data .select2-container--default .select2-selection--multiple {
    display: flex;
}
/* .form-master-data .select2-container--default .select2-selection--multiple::before {
    content: '';
    display: inline-block;
    height: 42px;
    width: 20px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
} */
.form-master-data .select2-container--default .select2-selection--multiple .select2-search--inline {
    padding-top: 5px;
}
.form-master-data .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--bs-dark);
    line-height: 42px;
    font-size: 0.9375rem;
}
.select2-container--default .select2-search--inline .select2-search__field {
    color: var(--bs-dark);
    font-size: 0.9375rem;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--colorOrange) !important;
    color: var(--bs-white);
}
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    position: relative;
    display: block;
    padding: 5px 0 0 0;
    z-index: 2;
}
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--colorOrange) !important;
    border-color: var(--colorOrange6) !important;
    color: var(--bs-white) !important;
    font-size: 0.9375rem;
}
.form-master-data .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: 0 none !important;
    color: var(--bs-white) !important;
}

.select2-selection--single.error,
.floating-select2 .select2-container--default.select2-container--open .select2-selection--single.error {
    border-color: var(--colorRed);
    border-width: 2px;
}

.floating-select2 .select2-container--default .select2-selection--single.error {
    border-color: var(--colorRed);
    border-width: 2px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #bbbbbb;
}

.floating-select2 .select2-container {
    width: 100% !important;
}

.floating-select2 .select2-container--default .select2-selection--single {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.floating-select2 .select2-container {
    max-height: 42px;
}

.floating-select2 .select2-container--default.select2-container--open .select2-selection--single {
    border-color: var(--colorOrange);
    border-width: 2px;
}

.select2-container--open .select2-dropdown--below {
    border: 2px solid;
    border-width: 2px;
    border-color: var(--colorOrange);
}

.floating-select2 .select2-container--default .select2-selection--single,
.floating-select2 .select2-dropdown {
    border: 1px solid #000000;
    border-radius: 6px;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b {
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: 0;
    border: 0;
}

.floating-select2 .select2-container--open .select2-selection--single .select2-selection__arrow b:before {
    font: var(--fa-font-solid);
    content: "\f106" !important;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    position: absolute;
    font: var(--fa-font-solid);
    content: "\f107";
    font-size: 16px;
    color: var(--colorOrange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-select2 .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background: var(--colorOrange);
}

.floating-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    margin-top: -0.9rem;
    padding-left: 48px;
    padding-right: 48px;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
    width: 48px;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 100;
    float: unset;
    margin-right: unset;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear~.select2-selection__rendered {
    padding-right: 72px;
}

.floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear~.select2-selection__arrow {
    right: 24px;
}

.floating-select2 .floating-select:focus~label,
.floating-select2 .floating-select~label.valid {
    height: auto;
    padding: 0;
    left: 24px;
}

/* Select Input Custom */
.floating-label {
    position: relative;
}

.floating-select {
    font-size: 14px;
    padding: 4px 4px;
    padding-left: 3rem;
    display: block;
    width: 100%;
    height: 42px;
    background-color: transparent;
    border-color: black;
    border-radius: 6px;
}

.floating-select:hover {
    border-color: var(--colorOrange)
}

.floating-input:focus,
.floating-select:focus {
    outline: none;
    border-color: var(--colorOrange);
    border-width: 2px;
}

.form-selects label {
    color: #999;
    font-size: 14px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.floating-select:focus~label,
.floating-select~label.valid {
    top: 0px;
    font-size: 11px;
    color: black;
    font-weight: 400;
    background: white;
    left: 10px;
}

/* active state */
.floating-select:focus~.bar:before,
.floating-select:focus~.bar:after {
    width: 50%;
}

select.floating-select {
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.floating-label:after {
    position: absolute;
    font: var(--fa-font-solid);
    content: "\f107";
    font-size: 1rem;
    color: var(--colorOrange);
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}


/* FILTER COLUMN */
.filter-column {
    border-width: 1px !important;
    text-decoration: none !important;
}

.filter-column i {
    font-size: .9rem;
}

.filter-column.collapsed .filter-close,
.filter-data.collapsed .filter-close {
    visibility: hidden;
    display: none;
}

.filter-column .filter-open,
.filter-data .filter-open {
    visibility: hidden;
    display: none;
}

.filter-column.collapsed .filter-open,
.filter-data.collapsed .filter-open {
    visibility: visible;
    display: contents;
}

.box-filter label {
    font-family: Arial, Helvetica, sans-serif !important;
}

.box-filter .checkbox-style:checked+.checkbox-style-3-label:before {
    background: #ffffff;
    border-radius: 0;
    border: 2px solid var(--colorOrange);
    color: var(--colorOrange);
    padding: 1px;
}

.box-filter .checkbox-style-3-label:before {
    border-radius: 0;
    border-color: var(--colorOrange);
    margin-right: 5px;
    width: 18px;
    height: 18px;
    padding: 7px;
    margin-top: 1px;
}

.box-filter label.checkbox-style-3-label {
    margin-left: -18px;
    display: flex;

}


.cbx-delete-multi .checkbox-style:checked+.checkbox-style-3-label:before {
    background: #ffffff;
    border-radius: 0;
    border: 2px solid var(--colorOrange);
    color: var(--colorOrange);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cbx-delete-multi .checkbox-style-3-label:before {
    border-radius: 0;
    border-color: var(--colorOrange);
    margin-right: 5px;
    width: 18px;
    height: 18px;
    padding: 1px;
    margin-top: 1px;
}

.cbx-delete-multi label.checkbox-style-3-label {
    display: flex;
    justify-content: center;
}

#collapseFilterStatus {
    position: absolute;
    z-index: 2;
    right: 4px;
    top: 50px;
}

#collapseFilterStatus .card {
    box-shadow: 0px 0px 21.1492px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

#collapseFilterColumn .card,
#collapseFilterColumnPM .card {
    border: 0;
    box-shadow: 0px 0px 21.1492px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
}

/* END FILTER COLOUMN */

/* highlighter */
.highlight {
    background: transparent;
    position: absolute;
    height: 50%;
    width: 100%;
    top: 15%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* active state */
.floating-select:focus~.highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}

/* Status */
.status-outstanding,
.status-execute,
.status-na {
    text-transform: capitalize;
    color: #000 !important;
    font-weight: bold;
}

.status-pass,
.status-done,
.status-safe,
.status-done-safe {
    text-transform: capitalize;
    color: var(--colorGreen2) !important;
    font-weight: bold;
}

.status-failed,
.status-unsafe {
    text-transform: capitalize;
    color: var(--colorRed) !important;
    font-weight: bold;
}

.status-rejected {
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.5) !important;
    font-weight: bold;
}

.status-requested {
    text-transform: capitalize;
    color: var(--colorBlue1) !important;
    font-weight: bold;
}

/* End-status */

/* select Custom */
.custom-select-search {
    min-width: 200px;
}

.custom-select-search .dropdown-toggle {
    min-height: 42px;
    background: #FFFFFF;
    border: 1px solid var(--colorOrange);
    border-radius: 6px;
}

.custom-select-search .dropdown-toggle:focus,
.custom-select-search .dropdown-toggle:active {
    outline: none !important;
    background: #FFFFFF !important;
    border: 1px solid var(--colorOrange) !important;
}

.custom-select-search .dropdown-toggle::after {
    border: 0;
    font: var(--fa-font-solid);
    content: "\f107";
    color: var(--colorOrange);
}

.custom-select-search .show.dropdown-toggle::after {
    border: 0;
    font: var(--fa-font-solid);
    content: "\f106" !important;
    color: var(--colorOrange);
}

.custom-select-search>.dropdown-menu.show {
    padding-right: 10px;
    padding-left: 10px;
    box-shadow: 0px 0px 21.1492px rgb(0 0 0 / 12%);
    border: 0;
    margin-top: 10px !important;
    border-radius: 6px;
}

.custom-select-search ul.dropdown-menu {
    max-height: 45px;
}

.custom-select-search .form-control {
    border-radius: 30px;
    height: 34px;
}

.custom-select-search .bs-searchbox {
    position: relative;
}

.custom-select-search .bs-searchbox:after {
    content: '';
    position: absolute;
    background-size: 100% 100%;
    height: 24px;
    width: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* width */
.custom-select-search .inner.show::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

/* Track */
.custom-select-search .inner.show::-webkit-scrollbar-track {
    background: white
}

/* Handle */
.custom-select-search .inner.show::-webkit-scrollbar-thumb {
    background: rgba(154, 154, 154, 0.4);
    border-radius: 10px;
}

.custom-select-search .form-control::-webkit-search-decoration,
.custom-select-search .form-control::-webkit-search-cancel-button,
.custom-select-search .form-control::-webkit-search-results-button,
.custom-select-search .form-control::-webkit-search-results-decoration {
    display: none;
}



/* Validation Style */
.error-msg {
    left: 25px;
    position: absolute;
    color: var(--colorRed);
    ;
    font-style: italic;
    font-size: small;
    text-transform: uppercase;
}

input.error,
textarea.error,
select.error,
.floating-select.error~.select2-container--default .select2-selection--single {
    border: 2px solid var(--colorRed) !important;
    font-weight: 300;
    color: var(--colorRed);
}


/* Search Custom2 */
.searchCustom2 {
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    border: 0;
    width: 100%;
    min-height: 42px;
    padding-left: 50px;
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-right: 20px;
    text-align: left;
}

/* Image */
.icon-search {
    position: absolute;
    width: 26px;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
}

/* icon */
.search-icon {
    position: absolute;
    top: 50%;
    left: 28px;
    font-size: 20px;
    transform: translateY(-50%) rotateY(180deg);
    ;
}

.searchCustom2:active,
.searchCustom2:focus {
    border: 1px solid var(--colorOrange);
}

/* End Search Custom2 */


/* Mobile Style */

.floating-btn {
    padding-top: 12px;
    padding-bottom: 12px;
    position: fixed;
    bottom: 60px;
    width: 100%;
    max-width: 320px;
    left: 50%;
    transform: translateX(-50%);
}

.search-group {
    position: relative;
}

.search-group span {
    font-weight: bold;
    font-size: 1.25rem;
    position: absolute;
    color: black;
    top: 50%;
    left: 30px;
    transform: translateY(-50%) rotateY(180deg);
}

.search-group input {
    padding-left: 50px;
    background: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.12);
    border-radius: 50px;
}

.search-group input:focus {
    border-color: var(--colorOrange);
}

/* Dashboard Widget */
.dashboard-widget .dashboard-widget-inner {
    display: flex;
    flex-direction: column;
    background-color: var(--colorOrange4translucent);
    border-radius: 12px;
    height: 100%;
    overflow: hidden;
}

.dashboard-widget .widget-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.5rem;
    margin-bottom: 0.75rem;
}

.dashboard-widget .widget-body {
    height: 100%;
}

.dashboard-widget .widget-body .no-data {
    height: 100%;
}

.dashboard-widget .widget-body .no-data img {
    max-width: 160px;
}

.dashboard-widget .widget-body .no-data p {
    font-size: 0.75rem;
    line-height: 1;
}

.dashboard-widget .equipment-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.dashboard-widget .equipment-filters .equipment-filter {
    width: 100%;
}

.dashboard-widget .equipment-list {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.dashboard-widget .equipment-list::-webkit-scrollbar {
    height: 0.25rem;
    width: 0.25rem;
}

.dashboard-widget .equipment-list::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-widget .equipment-list::-webkit-scrollbar-thumb {
    background: var(--colorOrange);
    border-radius: 2rem;
}

.dashboard-widget .equipment-item {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    background-color: var(--colorOrange9);
    border-radius: 6px;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s linear;
    text-decoration: none !important;
}

.dashboard-widget .equipment-item:last-child {
    margin-bottom: 0.125rem;
}

.dashboard-widget .equipment-item:hover {
    background-color: var(--colorOrange10);
}

.dashboard-widget .equipment-item .equipment-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dashboard-widget .equipment-item .equipment-image img {
    object-fit: cover;
    width: 100%;
    height: 96px;
}

.dashboard-widget .equipment-item .equipment-desc .register-button {
    display: flex;
    align-items: center;
}

.dashboard-widget .equipment-item .btn-main {
    font-size: 0.75rem;
}

.dashboard-widget .equipment-item .equipment-desc {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
}

.dashboard-widget .equipment-item .equipment-desc .equipment-info {
    font-size: 0.6875rem;
}

.dashboard-widget .equipment-item .equipment-desc .equipment-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: 0.75rem;
    line-height: 1.25;
    color: #555;
    white-space: nowrap;
}

.dashboard-widget .equipment-item .equipment-desc .equipment-details .text-end {
    font-size: 0.6875rem;
}

.dashboard-widget .equipment-item .equipment-desc .equipment-details h6 {
    font-size: 0.6875rem;
}

.dashboard-widget .equipment-chart {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    height: 100%;
    margin-top: 0.75rem;
}

.dashboard-widget .equipment-chart::-webkit-scrollbar {
    height: 0.25rem;
    width: 0.25rem;
}

.dashboard-widget .equipment-chart::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-widget .equipment-chart::-webkit-scrollbar-thumb {
    background: var(--colorOrange);
    border-radius: 2rem;
}

.dashboard-widget .inspection-filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.dashboard-widget .inspection-filters .inspection-filter {
    width: 100%;
}

.dashboard-widget .inspection-list {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.dashboard-widget .inspection-list .table> :not(:first-child) {
    border-top: 2px solid var(--colorOrange);
}

.dashboard-widget .inspection-list .table tr th {
    background-color: unset;
}

.dashboard-widget .inspection-list .table tr th,
.dashboard-widget .inspection-list .table tr td {
    font-size: 0.625rem;
    padding: 0.25rem;
}

.dashboard-widget .inspection-list::-webkit-scrollbar {
    height: 0.25rem;
    width: 0.25rem;
}

.dashboard-widget .inspection-list::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-widget .inspection-list::-webkit-scrollbar-thumb {
    background: var(--colorOrange);
    border-radius: 2rem;
}

.dashboard-widget .inspection-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--colorGray);
    padding: 0.5rem;
}

.dashboard-widget .inspection-item:last-child {
    margin-bottom: 0.125rem;
}

.dashboard-widget .inspection-item:hover {
    background-color: var(--colorOrange9);
}

.dashboard-widget .inspection-item .inspection-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dashboard-widget .inspection-item .inspection-image img {
    object-fit: cover;
    width: 96px;
    height: 64px;
}

.dashboard-widget .inspection-item .inspection-desc {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
}

.dashboard-widget .inspection-item .inspection-desc .inspection-title {
    margin-bottom: 0;
}

.dashboard-widget .inspection-item .inspection-desc .inspection-details {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-size: 0.8125rem;
    color: #555;
    white-space: nowrap;
}

.dashboard-widget .floating-select {
    font-size: 0.875rem;
    height: unset;
}

.dashboard-widget .floating-select2 {
    position: relative;
}

.dashboard-widget .floating-select2 i {
    position: absolute;
    top: 50%;
    left: 0.375rem;
    transform: translateY(-50%);
    color: var(--colorOrange);
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single,
.floating-select2 .select2-dropdown {
    border: 2px solid var(--colorOrange);
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single {
    padding-top: unset;
    padding-bottom: unset;
    height: 100%;
}

.dashboard-widget .floating-select2 .select2-container .select2-selection--single .select2-selection__rendered {
    font-size: 0.875rem;
    line-height: 1.5rem;
    padding: 0.125rem 0 0.125rem 1.625rem;
    margin-top: unset;
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 32px;
    height: 28px;
    float: right;
    position: unset;
    top: unset;
    right: unset;
    transform: unset;
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 32px;
    height: 32px;
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear~.select2-selection__rendered {
    padding-right: inherit;
}

.dashboard-widget .floating-select2 .select2-container--default .select2-selection--single .select2-selection__clear~.select2-selection__arrow {
    right: 1px;
}

.dashboard-widget .fc {
    font-size: 0.75rem;
}

.dashboard-widget .fc .fc-toolbar {
    flex-direction: column;
}

.dashboard-widget .fc .fc-toolbar .fc-toolbar-title {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-widget .fc .fc-scroller::-webkit-scrollbar {
    height: 0.25rem;
    width: 0.25rem;
}

.dashboard-widget .fc .fc-scroller::-webkit-scrollbar-track {
    background: transparent;
}

.dashboard-widget .fc .fc-scroller::-webkit-scrollbar-thumb {
    background: var(--colorOrange);
    border-radius: 2rem;
}

.dashboard-widget .fc .fc-header-toolbar .fc-toolbar-title {
    font-size: 1.125rem;
}

.dashboard-widget .fc .fc-button .fc-icon {
    font-size: 0.75rem;
}

.dashboard-widget .fc table,
.dashboard-widget .fc .accordion {
    margin-bottom: 0;
}

.dashboard-widget .fc .fc-button-primary:focus,
.dashboard-widget .fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.dashboard-widget .fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: unset;
}

.dashboard-widget .fc .fc-button-primary {
    background-color: transparent;
    border-color: var(--colorOrange);
    color: var(--colorOrange);
}

.dashboard-widget .fc .fc-button-primary:hover {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
}

.dashboard-widget .fc .fc-button-primary:not(:disabled).fc-button-active,
.dashboard-widget .fc .fc-button-primary:not(:disabled):active {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
}

.dashboard-widget .fc .fc-button-primary:disabled {
    background-color: var(--colorOrange10);
    border-color: var(--colorOrange);
    color: var(--colorOrange);
}

.dashboard-widget .fc .fc-h-event {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
}

.dashboard-widget .fc .fc-v-event {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
}

.dashboard-widget .fc .fc-daygrid-event-dot {
    border-color: var(--colorOrange);
}

.dashboard-widget .fc a {
    text-decoration: none !important;
}

.fc .fc-list-event-title a {
    color: var(--colorTurquoise) !important;
    text-decoration: underline !important;
    text-decoration-style: dashed !important;
}

.dashboard-widget .accordion .accordion-item {
    background-color: transparent;
}

.dashboard-widget .accordion .accordion-header {
    padding: 0;
}

.dashboard-widget .accordion .accordion-header .accordion-button {
    background-color: var(--colorOrange10);
    font-size: 0.875rem;
    font-weight: bold;
    border: 1px solid var(--colorOrange10);
    padding: 0.5rem 1.25rem;
}

.dashboard-widget .accordion .accordion-header .accordion-button:focus {
    border-color: transparent;
    box-shadow: unset;
}

.dashboard-widget .accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
    color: white;
}

.dashboard-widget .accordion .accordion-header .accordion-button::after {
    width: 1rem;
    height: 1rem;
    background-size: 1rem;
}

.dashboard-widget .accordion .accordion-header .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.dashboard-widget .accordion .accordion-body {
    padding: 0rem;
}

.dashboard-widget .dropdown .btn-primary,
.dashboard-widget .dropdown .btn-primary:not(:disabled):not(.disabled):active {
    background-color: var(--colorOrange);
    border-color: var(--colorOrange);
    border-radius: 6px;
}

.dashboard-widget .dropdown .btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: unset;
}

.dashboard-widget .btn:focus {
    box-shadow: unset;
}

.dashboard-widget .dropdown-menu .dropdown-item.active {
    background-color: var(--colorOrange);
    border-radius: 0;
}

.dashboard-widget .dropdown-menu .dropdown-item:hover {
    background-color: var(--colorOrange5);
    border-radius: 0;
}

.dashboard-widget .dropdown-menu .dropdown-item.active:hover {
    background-color: var(--colorOrange);
}

.dashboard-widget .pagination .page-item {
    margin: 0 0.25rem;
}

.dashboard-widget .pagination .page-item .page-link {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    background-color: unset;
    border: unset;
    border-radius: 100%;
}

.dashboard-widget .pagination .page-item .page-link-arrows {
    color: white;
    background-color: var(--colorOrangeSub);
}

.dashboard-widget .pagination .page-item .page-link:hover,
.dashboard-widget .pagination .page-item .page-link:focus,
.dashboard-widget .pagination .page-item.active .page-link {
    background-color: var(--colorOrange) !important;
}

/* End Mobile Style */

/* [PAUL] placeholder color text */
::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #bbbbbb !important;
}

:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #bbbbbb !important;
    opacity: 1;
}

::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #bbbbbb !important;
    opacity: 1;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #bbbbbb !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #bbbbbb !important;
}

::placeholder {
    /* Most modern browsers support this now. */
    color: #bbbbbb !important;
}

.form-custom-admin .form-group .form-control:has(+label)::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: #fff !important;
}

.form-custom-admin .form-group .form-control:has(+label):-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #fff !important;
    opacity: 1;
}

.form-custom-admin .form-group .form-control:has(+label)::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #fff !important;
    opacity: 1;
}

.form-custom-admin .form-group .form-control:has(+label):-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff !important;
}

.form-custom-admin .form-group .form-control:has(+label)::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #fff !important;
}

.form-custom-admin .form-group .form-control:has(+label)::placeholder {
    /* Most modern browsers support this now. */
    color: #fff !important;
}


.scroll-custom {
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin; 
    scrollbar-color: var(--themecolor) transparent; 
}

.scroll-custom::-webkit-scrollbar {
    height: 8px;
}

.scroll-custom::-webkit-scrollbar-thumb {
    background-color: var(--themecolor) !important; 
    border-radius: 4px;
}

.scroll-custom::-webkit-scrollbar-track {
    background: transparent !important;
}

.select2-selection__arrow {
    margin-right: 10px !important;
}

.truncate-text {
    display: inline-block;
    max-width: 200px; /* Adjust as needed */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    text-decoration: none !important;
}


/* sm: phone - landscape */
@media (min-width: 576px) {
    .modal-sm-custom {
        max-width: 380px;
    }

    /* SIZING UTILITY */
    .w-sm-25 {
        width: 25% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-75 {
        width: 75% !important;
    }

    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-auto {
        width: auto !important;
    }

    .h-sm-25 {
        height: 25% !important;
    }

    .h-sm-50 {
        height: 50% !important;
    }

    .h-sm-75 {
        height: 75% !important;
    }

    .h-sm-100 {
        height: 100% !important;
    }

    .h-sm-auto {
        height: auto !important;
    }
}

/* md: tablet */
@media (min-width: 768px) {
    .btn-main {
        width: auto;
    }

    .main .container-custom {
        padding: 35px 30px 0 30px;
    }

    .alert-custom {
        top: 20px;
        border-radius: 25px;
    }

    .custom-footer .last.paginate_button,
    .custom-footer .first.paginate_button,
    .custom-footer .paginate_page {
        display: inline-block;
    }

    .custom-footer .paginate_page {
        margin-right: 5px;
    }

    .custom-footer .paginate_input {
        border: 1px;
        width: 40px;
    }

    .custom-footer .dataTables_paginate.paging_input {
        width: auto;
        order: 0;
    }

    .custom-footer .dataTables_length {
        margin-left: 20px;
    }


    .dashboard-widget .floating-select2.ps-md-2 i {
        left: 0.875rem;
    }

    .dashboard-widget .dashboard-widget-inner {
        /* height: 360px; */

        /* [PAUL] change to 380px so no scrollbar appear */
        height: 440px;
    }

    .dashboard-widget .widget-body {
        height: calc(100% - 48px);
    }

    .dashboard-widget .equipment-filters .equipment-filter {
        width: 50%;
    }

    .dashboard-widget .inspection-filters .inspection-filter {
        width: 50%;
    }

    .dashboard-widget .inspection-list {
        height: calc(344px - 124px);
    }

    .dashboard-widget .fc .fc-toolbar {
        flex-direction: row;
    }

    .dashboard-widget .fc .fc-toolbar .fc-toolbar-title {
        margin-top: 0;
        margin-bottom: 0;
    }

    /* SIZING UTILITY */
    .w-md-25 {
        width: 25% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-75 {
        width: 75% !important;
    }

    .w-md-100 {
        width: 100% !important;
    }

    .w-md-auto {
        width: auto !important;
    }

    .h-md-25 {
        height: 25% !important;
    }

    .h-md-50 {
        height: 50% !important;
    }

    .h-md-75 {
        height: 75% !important;
    }

    .h-md-100 {
        height: 100% !important;
    }

    .h-md-auto {
        height: auto !important;
    }
}

/* lg: desktop */
@media (min-width: 992px) {
    .main .container-custom {
        padding: 25px 50px 0 50px;
    }

    /* SIZING UTILITY */
    .w-lg-25 {
        width: 25% !important;
    }

    .w-lg-50 {
        width: 50% !important;
    }

    .w-lg-75 {
        width: 75% !important;
    }

    .w-lg-100 {
        width: 100% !important;
    }

    .w-lg-auto {
        width: auto !important;
    }

    .h-lg-25 {
        height: 25% !important;
    }

    .h-lg-50 {
        height: 50% !important;
    }

    .h-lg-75 {
        height: 75% !important;
    }

    .h-lg-100 {
        height: 100% !important;
    }

    .h-lg-auto {
        height: auto !important;
    }

    .filter-search-table {
        max-width: 350px;
    }
}

/* xl: wide */
@media (min-width: 1200px) {
    /* SIZING UTILITY */
    .w-xl-25 {
        width: 25% !important;
    }

    .w-xl-50 {
        width: 50% !important;
    }

    .w-xl-75 {
        width: 75% !important;
    }

    .w-xl-100 {
        width: 100% !important;
    }

    .w-xl-auto {
        width: auto !important;
    }

    .h-xl-25 {
        height: 25% !important;
    }

    .h-xl-50 {
        height: 50% !important;
    }

    .h-xl-75 {
        height: 75% !important;
    }

    .h-xl-100 {
        height: 100% !important;
    }

    .h-xl-auto {
        height: auto !important;
    }
}

/* super wide */
@media (min-width: 1440px) {
    .dashboard-widget .equipment-item {
        flex-direction: row;
    }

    .dashboard-widget .equipment-item .equipment-image {
        padding-right: 0.5rem;
        width: 128px;
    }

    .dashboard-widget .equipment-item .equipment-image img {
        height: 72px;
    }

    .dashboard-widget .equipment-item .equipment-desc {
        margin-top: 0;
    }

    .dashboard-widget .inspection-list .table tr th,
    .dashboard-widget .inspection-list .table tr td {
        font-size: 0.6875rem;
    }

    .dashboard-widget .inspection-item {
        flex-direction: row;
    }

    .dashboard-widget .inspection-item .inspection-image {
        padding-right: 1rem;
    }

    .dashboard-widget .inspection-item .inspection-image img {
        width: 72px;
    }

    /* BOOTSTRAP */
    .col-xxl {
        flex: 1 0 0%;
    }

    .row-cols-xxl-auto>* {
        flex: 0 0 auto;
        width: auto;
    }

    .row-cols-xxl-1>* {
        flex: 0 0 auto;
        width: 100%;
    }

    .row-cols-xxl-2>* {
        flex: 0 0 auto;
        width: 50%;
    }

    .row-cols-xxl-3>* {
        flex: 0 0 auto;
        width: 33.3333333333%;
    }

    .row-cols-xxl-4>* {
        flex: 0 0 auto;
        width: 25%;
    }

    .row-cols-xxl-5>* {
        flex: 0 0 auto;
        width: 20%;
    }

    .row-cols-xxl-6>* {
        flex: 0 0 auto;
        width: 16.6666666667%;
    }

    .col-xxl-auto {
        flex: 0 0 auto;
        width: auto;
    }

    .col-xxl-1 {
        flex: 0 0 auto;
        width: 8.33333333%;
    }

    .col-xxl-2 {
        flex: 0 0 auto;
        width: 16.66666667%;
    }

    .col-xxl-3 {
        flex: 0 0 auto;
        width: 25%;
    }

    .col-xxl-4 {
        flex: 0 0 auto;
        width: 33.33333333%;
    }

    .col-xxl-5 {
        flex: 0 0 auto;
        width: 41.66666667%;
    }

    .col-xxl-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-xxl-7 {
        flex: 0 0 auto;
        width: 58.33333333%;
    }

    .col-xxl-8 {
        flex: 0 0 auto;
        width: 66.66666667%;
    }

    .col-xxl-9 {
        flex: 0 0 auto;
        width: 75%;
    }

    .col-xxl-10 {
        flex: 0 0 auto;
        width: 83.33333333%;
    }

    .col-xxl-11 {
        flex: 0 0 auto;
        width: 91.66666667%;
    }

    .col-xxl-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}