tr.active {
    background: #015e70 !important;
    color: white !important;
}

.custom-table-header-item {
    background: #fff;
    border-left: 1px solid #dee2e6;
    border-top: 1px solid #dee2e6;
    color: #000;
    flex-shrink: 0;
    font-size: 11.98px;
    font-weight: 700;
    padding: 4px 6px;
    white-space: nowrap;
}

.custom-table-content-item .theme-input {
    background: #0000;
    font-size: 13px;
    height: 28px;
}

.custom-table-content-item .theme-input {
    background: #0000;
    font-size: 13px;
    height: 28px;
}

.custom-table-content-item {
    flex-shrink: 0 !important;
}

    .custom-table-content-item input:disabled {
        background: none !important;
        border: 1px solid #dee2e6;
    }

.custom-table-text-item {
    border-bottom: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    flex-shrink: 0;
    font-size: 13px;
    height: 28px;
    padding: 2px 6px;
    text-align: center;
}

:root {
    --page-background: rgb(240, 240, 240);
    --app-header-height: 36px;
}

body {
    min-height: 100vh;
    flex-direction: column;
    overflow-x: hidden;
    background-color: var(--page-background);
}

html {
    min-height: 100%;
    background-color: var(--page-background);
}

    body::-webkit-scrollbar {
        width: 8px;
        height: 5px;
        background-color: #f5f5f5;
    }

    body::-webkit-scrollbar-track {
        border-radius: 10px;
        background: #eee;
        box-shadow: 0 0 1px 1px #bbb, inset 0 0 7px rgba(0, 0, 0, 0.3);
    }

    body::-webkit-scrollbar-thumb {
        border-radius: 10px;
        background: linear-gradient(left, #96a6bf, #63738c);
        box-shadow: inset 0 0 1px 1px #5c6670;
    }

        body::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(left, #8391a6, #536175);
        }

.button-link {
    color: var(--bs-blue);
    font-weight: 600;
    border: 0;
    background-color: transparent;
    padding: 0;
    outline: none;
    box-shadow: none;
}

    .button-link:hover {
        color: #3180fc;
        text-decoration: underline;
    }

.button-theme {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    color: var(--bs-white) !important;
    border: 1px solid transparent;
    border-radius: 4px;
    gap: 5px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1em;
    padding: 6px 14px;
    font-weight: 500;
    transition: var(--transition-default);
            height: 32px;
    background-color: var(--bg-1);
}

    .button-theme.button-theme_white {
        --bg-1: #ffffff;
        color: var(--bs-black) !important;
        border-color: #aaaaaa;
    }

    .button-theme.button-theme_light {
        --bg-1: #dadada;
        color: var(--bs-black) !important;
        border-color: #aaaaaa;
    }

    .button-theme.button-theme_primary {
        --bg-1: var(--primary-color);
        color: var(--bs-white) !important;
    }

        .button-theme.button-theme_primary:hover {
            --bg-1: var(--primary-hover);
        }

    .button-theme.button-theme_primary_outline {
        --bg-1: transparent;
        color: var(--bs-white) !important;
        border-color: var(--bs-white);
        background-color: transparent;
    }

        .button-theme.button-theme_primary_outline:hover {
            --bg-1: var(--bs-white);
            color: var(--primary-color) !important;
            background-color: var(--bs-white);
        }

    .button-theme.button-theme_secondary {
        --bg-1: var(--secondary-color);
        color: var(--bs-white) !important;
    }

        .button-theme.button-theme_secondary:hover {
            --bg-1: var(--secondary-hover);
        }

    .button-theme.button-theme_danger {
        --bg-1: var(--bs-danger);
        color: var(--bs-white) !important;
    }

        .button-theme.button-theme_danger:hover {
            --bg-1: #be2835;
        }

    .button-theme.button-theme_blue {
        --bg-1: var(--bs-primary);
        color: var(--bs-white) !important;
    }

        .button-theme.button-theme_blue:hover {
            --bg-1: #084fb6;
        }

    .button-theme.button-theme_white:hover {
        background: #ececec;
    }

    .button-theme.button-theme_light:hover {
        background: #dadada;
    }

    .button-theme.button-theme_lg {
        height: 38px;
        padding: 8px 16px;
        font-size: 1em;
    }

    .button-theme.button-theme_large {
        height: 40px;
        font-size: 1em;
    }

    .button-theme.button-theme_big__large {
        height: 50px;
        font-size: 1em;
    }

    .button-theme.button-theme_sm {
        height: 26px;
        padding: 4px 10px;
    }

    .button-theme.button-theme_xs {
        height: 22px;
        width: 22px;
        padding: 0;
    }

        .button-theme.button-theme_xs > img {
            width: 14px;
            height: 14px;
        }

    .button-theme.button-theme_xs {
        height: 16px;
        width: 16px;
        padding: 0;
    }

    .button-theme.button-theme_primary.button-theme_xs {
        padding: 5px;
    }

        .button-theme.button-theme_xs > img {
            width: 12px;
            height: 12px;
        }

    .button-theme.button-theme_icon {
        --position-y: -24px;
        height: 32px;
        padding: 4px 8px;
    }

    .button-theme.button-theme_circle {
        border-radius: 50%;
    }

    .button-theme.button-theme_transparent {
        background: transparent !important;
    }

    .link-default img,
    .button-theme img {
        width: 16px;
        height: 16px;
    }

.bg-x {
    background-color: rgba(204, 204, 204, 0.72) !important;
}

.header {
    -webkit-box-shadow: 0px 6px 12px -6px rgba(24, 39, 75, 0.05), 0px 8px 24px -4px rgba(24, 39, 75, 0.01);
    box-shadow: 0px 6px 12px -6px rgba(24, 39, 75, 0.05), 0px 8px 24px -4px rgba(24, 39, 75, 0.01);
    background-color: var(--bs-white);
    position: sticky;
    z-index: 15;
    top: 0;
    left: 0;
    width: 100%;
}

    .header .header-logo,
    .header .header-hamburger {
        display: none;
    }

    .header .header-navigation {
        position: relative;
        z-index: 2;
    }

        .header .header-navigation > ul {
            position: relative;
            list-style-type: none;
            margin-bottom: 0;
            padding-left: 0;
            display: flex;
            align-items: center;
        }

            .header .header-navigation > ul > li {
                flex-shrink: 0;
                position: relative;
            }

                .header .header-navigation > ul > li.has-submenu::after {
                    content: "";
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    height: 10px;
                    display: none;
                    z-index: 2;
                }

                .header .header-navigation > ul > li.has-submenu:hover::after,
                .header .header-navigation > ul > li.has-submenu:focus-within::after,
                .header .header-navigation > ul > li.menu-dropdown-open.has-submenu::after {
                    display: block;
                }

                .header .header-navigation > ul > li > a,
                .header .header-navigation > ul > li > button {
                    display: flex;
                    align-items: center;
                    gap: 5px;
                    color: var(--bs-black);
                    font-weight: 500;
                    padding: 8px 12px;
                    white-space: nowrap;
                    font-size: 0.925em;
                    border: 0;
                    background: transparent;
                }

                    .header .header-navigation > ul > li > a > span,
                    .header .header-navigation > ul > li > button > span {
                        flex-shrink: 0;
                        line-height: 1;
                    }

                        .header .header-navigation > ul > li > a > span > img,
                        .header .header-navigation > ul > li > button > span > img {
                            width: 16px;
                            height: 16px;
                        }

                    .header .header-navigation > ul > li > a.active,
                    .header .header-navigation > ul > li > a:hover,
                    .header .header-navigation > ul > li > button.active,
                    .header .header-navigation > ul > li > button:hover {
                        background-color: rgba(var(--primary-rgb), 0.075);
                        color: var(--primary-color);
                    }

                .header .header-navigation > ul > li > ul {
                    position: absolute;
                    background: var(--bs-white);
                    top: 100%;
                    left: 0;
                    z-index: 3;
                    min-width: 220px;
                    -webkit-transition: opacity .12s ease, visibility .12s ease, -webkit-transform .12s ease;
                    -o-transition: opacity .12s ease, visibility .12s ease, transform .12s ease;
                    transition: opacity .12s ease, visibility .12s ease, transform .12s ease;
                    transform: translateY(4px);
                    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
                    border: rgba(0, 0, 0, 0.176);
                    list-style-type: none;
                    padding-left: 0;
                    margin-bottom: 0;
                    opacity: 0;
                    visibility: hidden;
                    pointer-events: none;
                }

                    .header .header-navigation > ul > li > ul > li > a {
                        display: flex;
                        align-items: center;
                        gap: 5px;
                        color: var(--bs-black);
                        font-weight: 500;
                        padding: 8px 12px;
                        white-space: nowrap;
                        font-size: 0.925em;
                    }

                    .header .header-navigation > ul > li > ul > li + li {
                        border-top: 1px solid var(--bs-gray-200);
                    }

                    .header .header-navigation > ul > li > ul > li > a:hover {
                        background-color: rgba(var(--primary-rgb), 0.075);
                        color: var(--primary-color);
                    }

                .header .header-navigation > ul > li:hover > ul,
                .header .header-navigation > ul > li:focus-within > ul,
                .header .header-navigation > ul > li.menu-dropdown-open > ul {
                    top: 100%;
                    transform: translateY(0);
                    opacity: 1;
                    visibility: visible;
                    pointer-events: auto;
                }

    .header .header-actions {
        margin-left: auto;
    }

    .header .header-dropdown .link-default {
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 0.925em;
    }

        .header .header-dropdown .link-default img {
            height: 20px !important;
            width: auto !important;
        }

    .header .header-dropdown .dropdown-menu {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        border-radius: 0;
        border: rgba(0, 0, 0, 0.176);
        font-size: 0.925em;
    }

        .header .header-dropdown .dropdown-menu .dropdown-item {
            display: flex;
            align-items: center;
            gap: 5px;
            padding-top: 6px;
            padding-bottom: 6px;
            background-color: var(--bs-white);
            color: var(--bs-black);
        }

            .header .header-dropdown .dropdown-menu .dropdown-item:hover {
                background-color: rgba(var(--primary-rgb), 0.075);
                color: var(--primary-color);
            }

            .header .header-dropdown .dropdown-menu .dropdown-item img {
                height: 16px;
            }

.main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: calc(100dvh - var(--app-header-height));
    background-color: var(--page-background);
}

.section-buttons {
    background-color: #015e70;
}

.theme-form {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
}

.theme-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.po-ad-huy {
    right: 0px;
    top: 0px;
}

.theme-tags .tags-item {
    display: flex;
    align-items: center;
    border-radius: 2px;
    border: 1px solid #aaaaaa;
    position: relative;
    font-size: 0.925em;
    padding: 2px 6px;
    font-weight: 500;
    transition: var(--transition-default);
    background: #dadada;
    color: var(--bs-black) !important;
    height: 26px;
}

    .theme-tags .tags-item:hover,
    .theme-tags .tags-item.active {
        background: var(--bs-white);
    }

.theme-label {
    font-size: 1em;
    color: var(--bs-black);
    font-weight: 500;
    min-width: 100px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    /*  justify-content: space-between;*/
    gap: 5px;
}

.button-theme_success {
    background-color: #2ecc71 !important;
}

.section_buttons_height_left {
    background-color: #0790ab;
    height: 100%;
    padding: 10px;
}

.col-xl-20 {
    flex: 0 0 auto;
    width: 20%;
}

.outpatient_type {
    font-size: 19px;
    font-weight: 700;
}

.col-xl-80 {
    flex: 0 0 auto;
    width: 80%;
}

.section-tab .nav-tabs {
    flex-wrap: nowrap;
    margin-bottom: 0;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    /* background-color: #015e70 !important; */
}

.button-theme.rounded-bottom-0 {
    border-radius: 4px 4px 0 0;
}

.button-theme.button-theme_lg {
    font-size: 1em;
    height: 38px;
    padding: 8px 16px;
}

.button-theme.button-theme_light__2 {
    --bg-1: #f0f0f0;
    border: 1px solid #aaa;
    border-bottom: 0;
    color: #000 !important;
}

.button-theme.button-theme_light__2.stock-draft-button {
    border-bottom: 1px solid #aaa;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.link-default {
    margin: 0px 0px 0px 5px;
}

.theme-input {
    border: 1px solid #9f9f9f;
    border-radius: 4px;
    position: relative;
    font-size: 1em;
    padding: 4px 4px;
    font-weight: 500;
    background-color: #ffffff;
    transition: var(--transition-default);
}

.select {
    background-color: white !important;
}

input.theme-input,
select.theme-input {
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
}

input.theme-input[type="date"],
input.theme-input[type="datetime-local"] {
    padding-right: 6px;
}

.theme-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.15);
}

textarea.theme-input {
    resize: none;
}

    textarea.theme-input::-webkit-scrollbar {
        width: 4px;
    }

    textarea.theme-input::-webkit-scrollbar-track {
        background: #fff;
    }

    textarea.theme-input::-webkit-scrollbar-thumb {
        background: #acacac;
    }

        textarea.theme-input::-webkit-scrollbar-thumb:hover {
            background: #7b7b7b;
        }

.theme-input[required],
.theme-input[required] {
    background-color: #ffffe1 !important;
}

.theme-input::placeholder {
    opacity: 0.7;
}

.theme-input:disabled {
    background-color: #c8c8c8;
    cursor: not-allowed;
}

.theme-input.form-select {
    padding-right: 30px;
    background-position: right 8px center;
    background-color: #ffffff;
}

    .theme-input.form-select.theme-input_white {
        background-color: #ffffff;
    }

        .theme-input.form-select.theme-input_white ~ .select2-container
        .select2-selection--single {
            background: #ffffff;
        }

.theme-form > .theme-label ~ .theme-input,
.theme-form > .theme-label ~ .theme-input ~ .select2 {
    max-width: calc(100% - 105px) !important;
}

    .theme-form > .theme-label ~ .theme-input.mw-100,
    .theme-form > .theme-label ~ .theme-input.mw-100 ~ .select2 {
        max-width: 100% !important;
    }

.section-heading .theme-form {
    width: auto;
    margin-left: auto;
}

    .section-heading .theme-form > .theme-label {
        width: max-content;
        padding-right: 10px;
    }

        .section-heading .theme-form > .theme-label ~ .theme-input,
        .section-heading .theme-form > .theme-label ~ .theme-input ~ .select2 {
            max-width: 230px !important;
            width: 230px;
        }

.theme-input ~ .select2-container .select2-selection--single {
    border: 1px solid #9f9f9f;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    font-size: 1em;
    padding: 0;
    font-weight: 500;
    transition: var(--transition-default);
    height: 32px;
    background: #ffffff;
}

    .theme-input ~ .select2-container
    .select2-selection--single
    .select2-selection__rendered {
        line-height: 22px;
        color: var(--bs-black);
        padding: 4px 24px 4px 10px;
    }

    .theme-input ~ .select2-container
    .select2-selection--single
    .select2-selection__arrow {
        background-image: url(../images/icons/icon-arrow-down.svg);
        background-repeat: no-repeat;
        background-position: right 5px center;
        background-size: 16px 12px;
    }

        .theme-input ~ .select2-container
        .select2-selection--single
        .select2-selection__arrow
        b {
            display: none;
        }

.theme-input ~ .select2-container .select2-dropdown {
    border: 1px solid #9f9f9f;
    font-size: 0.925em;
    border-radius: 0;
}

    .theme-input ~ .select2-container .select2-dropdown.select2-dropdown--above {
        border-bottom: 0;
    }

    .theme-input ~ .select2-container .select2-dropdown.select2-dropdown--below {
        border-top: 0;
    }

.theme-input ~ .select2-container
.select2-search--dropdown
.select2-search__field {
    border: 1px solid #9f9f9f;
    border-radius: 2px;
}

.theme-input ~ .select2-container
.select2-dropdown
.select2-results > .select2-results__options {
    max-height: 350px;
}

    .theme-input ~ .select2-container
    .select2-dropdown
    .select2-results > .select2-results__options::-webkit-scrollbar {
        width: 5px;
    }

    .theme-input ~ .select2-container
    .select2-dropdown
    .select2-results > .select2-results__options::-webkit-scrollbar-track {
        background: #fff;
    }

    .theme-input ~ .select2-container
    .select2-dropdown
    .select2-results > .select2-results__options::-webkit-scrollbar-thumb {
        background: #acacac;
    }

        .theme-input ~ .select2-container
        .select2-dropdown
        .select2-results > .select2-results__options::-webkit-scrollbar-thumb:hover {
            background: #7b7b7b;
        }

.theme-input ~ .select2-container.select2-container--disabled
.select2-selection--single {
    background-color: #e5e5e5;
    cursor: not-allowed;
}

.theme-input ~ .select2-container
.select2-results__option--highlighted[aria-selected] {
    background: #015e70;
}

.theme-form_column {
    flex-direction: column;
}

    .theme-form_column.theme-form .theme-label,
    .theme-form_column.theme-form > .theme-label ~ .theme-input,
    .theme-form_column.theme-form > .theme-label ~ .theme-input ~ .select2 {
        width: 100% !important;
        max-width: 100% !important;
    }

.theme-form_icon {
    position: relative;
}

    .theme-form_icon:before {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        font-family: "Font Awesome 5 Pro";
        font-weight: 500;
        z-index: 2;
        pointer-events: none;
    }

    .theme-form_icon.theme-form_calendar:before {
        content: "\f073";
    }

.theme-form_button {
    position: relative;
}

    .theme-form_button .theme-input {
        height: 36px;
        font-size: 1em;
        padding: 4px 45px 4px 12px;
    }

    .theme-form_button .button-theme {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 5px;
    }

.theme-form .theme-form_groups {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .theme-form .theme-form_groups .theme-form_groups__icon,
    .theme-form .theme-form_groups .theme-form_groups__text {
        flex-shrink: 0;
    }

    .theme-form .theme-form_groups .theme-form_groups__text {
        font-size: 2em;
        line-height: 1;
    }

    .theme-form .theme-form_groups .theme-form_groups__icon img {
        max-width: 100%;
        width: auto;
        height: 24px;
    }

.theme-checkbox {
    position: relative;
}

    .theme-checkbox > span {
        position: relative;
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--bs-black);
        font-weight: 500;
        font-size: 0.925em;
        cursor: pointer;
    }

        .theme-checkbox > span:before {
            flex-shrink: 0;
            width: 16px;
            height: 16px;
            content: "";
            overflow: hidden;
            border-radius: 2px;
            background-color: var(--bs-white);
            border: 1px solid #9f9f9f;
            background-image: url(../images/icons/icon-check.svg);
            background-size: 0;
            background-position: center;
            background-repeat: no-repeat;
            transition: background-size cubic-bezier(0.5, 0, 0.5, 2) 0.3s, background-color 0.3s;
        }

    .theme-checkbox > input[type="radio"] + span:before {
        border-radius: 50%;
    }

    .theme-checkbox > input:checked + span:before {
        background-color: var(--primary-color);
        background-size: 100%;
        border-color: var(--primary-color);
    }

.section-main {
    --spacing-y: 10px;
    --spacing-x: 10px;
    background: var(--page-background);
    padding: var(--spacing-y) var(--spacing-x);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.box-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.box-item_legend {
    border-radius: 4px;
    border: 1px solid #9f9f9f;
    padding: 12px 10px 6px;
    position: relative;
}

    .box-item_legend .box-item_legend__title {
        position: absolute;
        top: 0;
        left: 2px;
        background: #f0f0f0;
        padding: 0 8px;
        transform: translateY(-50%);
        color: var(--bs-black);
        font-size: 1em;
        font-weight: 500;
    }

.box-item_divider {
    border-top: 1px solid #9f9f9f;
    border-bottom: 1px solid #9f9f9f;
    margin: 0 -10px;
    width: calc(100% + 20px);
    padding: 10px;
}

.box-item .box-item_title {
    font-size: 1.075em;
    font-weight: 700;
    color: var(--bs-black);
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--bs-gray-400);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.box-buttons {
    padding: 5px 0;
}

.section-table {
    background-color: var(--bs-white);
    margin: 0;
    /* width: calc(100% + 20px); */
    font-size: 14px;
}

.modal-dialog-scrollable .modal-body::-webkit-scrollbar {
    width: 5px;
}

.table-responsive::-webkit-scrollbar-track,
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-track {
    background: #fff;
}

.table-responsive::-webkit-scrollbar-thumb,
.modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb {
    background: #acacac;
    border-radius: 5px;
}

    .table-responsive::-webkit-scrollbar-thumb:hover,
    .modal-dialog-scrollable .modal-body::-webkit-scrollbar-thumb:hover {
        background: #7b7b7b;
    }

.theme-table.theme-table_height {
    height: var(--height);
    max-height: var(--height);
    overflow-y: auto;
    border: 1px solid #dee2e6;
}

    .theme-table.theme-table_height .table {
        border: 0 solid transparent;
        border-bottom: 1px solid #dee2e6;
    }

        .theme-table.theme-table_height .table td {
            border-color: #dee2e6;
        }

.theme-table .table {
    font-size: 0.925em;
    margin-bottom: 0;
    --bs-body-color: var(--bs-black);
}

    .theme-table .table .table {
        font-size: 1em;
    }

        .theme-table .table .table thead tr:first-child > th,
        .theme-table .table .table tbody tr:first-child > td {
            border-top: 0;
        }

        .theme-table .table .table thead tr > th:first-child,
        .theme-table .table .table tbody tr > td:first-child {
            border-left: 0;
        }

        .theme-table .table .table thead tr > th:last-child,
        .theme-table .table .table tbody tr > td:last-child {
            border-right: 0;
        }

        .theme-table .table .table thead tr:last-child > th,
        .theme-table .table .table tbody tr:last-child > td {
            border-bottom: 0;
        }

    .theme-table .table > :not(caption) > * > * {
        padding: 0.3rem 0.25rem;
    }

    .theme-table .table thead tr th {
        border-color: #cccccc;
        --bg-1: #eeeeee;
        --bg-2: #cccccc;
        background-color: var(--bg-1);
        background-image: -moz-linear-gradient(top, var(--bg-1), var(--bg-2));
        background-image: -ms-linear-gradient(top, var(--bg-1), var(--bg-2));
        background-image: -o-linear-gradient(top, var(--bg-1), var(--bg-2));
        background-image: linear-gradient(top, var(--bg-1), var(--bg-2));
        background-image: -webkit-gradient( linear, left top, left bottom, color-stop(0%, var(--bg-1)), color-stop(100%, var(--bg-2)) );
        background-image: -webkit-linear-gradient(top, var(--bg-1), var(--bg-2));
        white-space: nowrap;
    }

    .theme-table .table.table-white thead tr th {
        --bg-1: var(--bs-white);
        --bg-2: var(--bs-white);
    }

    .theme-table .table tr > * {
        min-width: 80px;
    }

    .theme-table .table tr > .table-column-minw30 {
        min-width: 30px;
    }

    .theme-table .table tr > .table-column-minw50 {
        min-width: 50px;
    }

    .theme-table .table tr > .table-column-maxw50 {
        min-width: 50px;
        max-width: 50px;
        width: 50px;
    }

    .theme-table .table tr > .table-column-maxw100 {
        min-width: 100px;
        max-width: 100px;
        width: 100px;
    }

    .theme-table .table tr > .table-column-maxw150 {
        min-width: 150px;
        max-width: 150px;
        width: 150px;
    }

    .theme-table .table tr > .table-column-maxw30 {
        min-width: 30px;
        max-width: 30px;
        width: 30px;
    }

    .theme-table .table tr > .table-column-minw200 {
        min-width: 200px;
    }

    .theme-table .table tr .table-text {
        width: max-content;
        max-width: 300px;
    }

    .theme-table .table tr .table-status {
        white-space: nowrap;
    }

.theme-table .theme-table_image img {
    width: 16px;
    height: 16px;
}

.theme-table .bg-light {
    background: #d9d9d9 !important;
}

.theme-table .table-collapse_btn > i {
    transition: 0.3s transform ease-in-out;
    line-height: 14px;
}

.theme-table .table-collapse_btn[aria-expanded="true"] > i {
    transform: rotate(180deg);
}

.theme-table .table-circle {
    border-radius: 50%;
    width: 14px;
    height: 14px;
    margin: 0 auto;
}

.theme-table .table-circle_1 {
    background: rgba(0, 255, 13, 0.07);
}

    .theme-table .table-circle_1 .table-circle {
        background: rgb(0, 136, 6);
    }

.theme-table .table-circle_2 {
    background: rgba(255, 9, 0, 0.05);
}

    .theme-table .table-circle_2 .table-circle {
        background: rgba(255, 9, 0, 1);
    }

.theme-table .table-circle_3 {
    background: rgba(255, 255, 0, 0.12);
}

    .theme-table .table-circle_3 .table-circle {
        background: #e7b751;
    }

.theme-table .table-circle_4 {
    background: rgba(128, 0, 128, 0.12);
}

    .theme-table .table-circle_4 .table-circle {
        background: purple;
    }

.theme-table .column-time {
    font-weight: 600;
    font-size: 14px;
}

.theme-table .column-booking {
    display: flex;
    background-color: #f1eeee;
    min-height: 114px;
}

    .theme-table .column-booking .column-booking_button {
        border: 0;
        outline: none;
        box-shadow: none;
        background-color: #ededed;
        font-weight: 600;
        font-size: 14px;
        width: 60px;
        color: #000000;
        flex-shrink: 0;
    }

    .theme-table .column-booking .column-booking_list {
        width: 100%;
    }

        .theme-table .column-booking .column-booking_list .column-booking_item {
            border-left: 1px solid #d7d5d5;
            min-height: 28px;
        }

            .theme-table
            .column-booking
            .column-booking_list
            .column-booking_item + .column-booking_item {
                border-top: 1px solid #d7d5d5;
            }

            .theme-table
            .column-booking
            .column-booking_list
            .column-booking_item
            .column-booking_item__button {
                border: 0;
                outline: none;
                box-shadow: none;
                font-size: 13px;
                background-color: transparent;
                white-space: nowrap;
                padding: 4px;
                width: 100%;
                color: #000000;
                text-align: left;
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-weight: 700;
            }

                .theme-table
                .column-booking
                .column-booking_list
                .column-booking_item
                .column-booking_item__button[data-bs-toggle="collapse"]:after {
                    content: "\f141";
                    margin-left: 8px;
                    margin-right: 4px;
                    font-weight: 500;
                    font-family: "Font Awesome 5 Pro";
                    color: inherit;
                    font-size: 12px;
                }

            .theme-table
            .column-booking
            .column-booking_list
            .column-booking_item
            .column-booking_collapse {
                padding: 5px;
                background-color: #f1f1f1;
                border-top: 1px solid #e9e9e9;
            }

                .theme-table
                .column-booking
                .column-booking_list
                .column-booking_item
                .column-booking_collapse
                .theme-form > .theme-label ~ .theme-input,
                .theme-table
                .column-booking
                .column-booking_list
                .column-booking_item
                .column-booking_collapse
                .theme-form > .theme-label ~ .theme-input ~ .select2 {
                    max-width: 100% !important;
                }

    .theme-table
    .column-booking.column-booking_1
    .column-booking_list
    .column-booking_item
    .column-booking_item__button {
        color: #000000;
    }

    .theme-table
    .column-booking.column-booking_2
    .column-booking_list
    .column-booking_item
    .column-booking_item__button {
        color: #0c84cb;
    }

    .theme-table
    .column-booking.column-booking_3
    .column-booking_list
    .column-booking_item
    .column-booking_item__button {
        color: #0aa465;
    }

.theme-table .column-text {
    font-weight: 700;
}

    .theme-table .column-text.column-text_1 {
        color: #000000;
    }

    .theme-table .column-text.column-text_2 {
        color: #0c84cb;
    }

    .theme-table .column-text.column-text_3 {
        color: #0aa465;
    }

    .theme-table .column-text.column-text_4 {
        color: #fd7e14;
    }

    .theme-table .column-text.column-text_5 {
        color: #ff0000;
    }

.theme-table
.column-booking
.column-booking_list
.column-booking_item.is-empty
.column-booking_item__button {
    color: #000000 !important;
}

.theme-table
.column-booking
.column-booking_list
.column-booking_item.is-empty + .column-booking_item {
    border-top: 1px solid #d7d5d5;
}

.theme-table .table-golf {
    border-bottom: 1px solid rgb(177 177 177) !important;
}

    .theme-table .table-golf tbody tr td {
        padding: 0;
        border-color: rgb(177 177 177) !important;
    }

    .theme-table .table-golf thead tr th {
        border-color: rgb(177 177 177) !important;
    }

.theme-table .table-golf_2 {
    border-bottom: 1px solid rgb(177 177 177) !important;
}

    .theme-table .table-golf_2 tbody tr td {
        border-color: rgb(177 177 177) !important;
        height: 30px;
        white-space: nowrap;
    }

    .theme-table .table-golf_2 thead tr th {
        border-color: rgb(177 177 177) !important;
    }

    .theme-table .table-golf_2 .table-golf_2__bg {
        background-color: rgb(227, 227, 227) !important;
    }

    .theme-table .table-golf_2 tbody tr td.active {
        background: #ffeeee;
    }

.theme-table .table-golf .column-time {
    min-height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e1e1e1;
}

.table-sticky thead tr th {
    position: sticky;
    top: 0;
    z-index: 2;
}

.table-sticky_2 thead {
    position: sticky;
    top: 0;
    z-index: 2;
    border-color: #cccccc;
    --bg-1: #eeeeee;
    --bg-2: #cccccc;
    background-color: #fff !important;
}

.table-sticky thead tr {
    border: 0;
}

.table-sticky_2 thead tr {
    border: 0;
}

.table-sticky.top-0 thead tr th {
    top: 0;
}

.section-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5px;
    background: #f1f1f1;
    border-top: 1px solid #9f9f9f;
    z-index: 10;
}

    .section-footer.position-static {
        background: #dcdcdc !important;
        border-top: 1px solid #9f9f9f !important;
        margin: 0 calc(-1 * 0.5rem);
        padding: 5px 0.5rem;
    }

    .section-footer .footer-text {
        font-size: 0.925em;
        color: var(--bs-black);
    }

.section-pagination {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
}

    .section-pagination .theme-form {
        width: auto;
    }

        .section-pagination .theme-form .theme-input {
            max-width: 60px;
        }

    .section-pagination .pagination {
        margin-bottom: 0;
        gap: 3px;
    }

        .section-pagination .pagination .page-link {
            display: -webkit-inline-box;
            display: -ms-inline-flexbox;
            display: inline-flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            vertical-align: middle;
            border: 1px solid #9e9e9e;
            border-radius: 0;
            gap: 5px;
            position: relative;
            overflow: hidden;
            white-space: nowrap;
            font-size: 0.925em;
            font-weight: 500;
            transition: var(--transition-default);
    height: 32px;
            background: #fff;
            color: var(--bs-black) !important;
            min-width: 26px;
            margin: 0;
            padding: 0;
            outline: none;
            box-shadow: none;
        }

            .section-pagination .pagination .page-link:hover {
                background-position: center -24px;
            }

        .section-pagination .pagination .active .page-link {
            background: #ffffe1;
            text-shadow: none;
            border-color: #d79920;
        }

        .section-pagination .pagination .disabled .page-link {
            opacity: 0.6;
            background: #e1e1e1;
        }

.modal-default.fade .modal-dialog {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    transition: 0.2s all ease;
}

.modal-default.fade.show .modal-dialog {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.modal-default .modal-content {
    border: 1px solid #9e9e9e;
    background: #f0f0f0;
}

.modal-default .modal-header {
    padding: 8px 10px;
    margin-bottom: 0;
    border-radius: var(--bs-modal-border-radius) var(--bs-modal-border-radius) 0 0;
    background: #ffffff;
    border-bottom: 0;
}

    .modal-default .modal-header .modal-title {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 1em;
        font-weight: 500;
        color: var(--bs-black);
    }

        .modal-default .modal-header .modal-title img {
            width: 18px;
            height: 18px;
        }

.modal-default .modal-form {
    padding: 30px;
}

.modal-default .modal-wrapper {
    border: 1px solid #d0d0d0;
}

    .modal-default .modal-wrapper .theme-table .table thead tr:first-child > th,
    .modal-default .modal-wrapper .theme-table .table tbody tr:first-child > td {
        border-top: 0;
    }

    .modal-default .modal-wrapper .theme-table .table thead tr > th:first-child,
    .modal-default .modal-wrapper .theme-table .table tbody tr > td:first-child {
        border-left: 0;
    }

    .modal-default .modal-wrapper .theme-table .table thead tr > th:last-child,
    .modal-default .modal-wrapper .theme-table .table tbody tr > td:last-child {
        border-right: 0;
    }

    .modal-default .modal-wrapper .theme-table .table thead tr:last-child > th,
    .modal-default .modal-wrapper .theme-table .table tbody tr:last-child > td {
        border-bottom: 0;
    }

.modal-default_fixed__scroll .modal-content .modal-body {
    overflow-y: hidden;
}

.section-heading {
    background: #d9dada;
    padding: 8px 10px;
}

.header-height {
    height: 26.5px;
}

.section-heading .heading-title {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--bs-black);
}

.section-heading .heading-big {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--bs-black);
}

.section-heading .heading-name {
    font-size: 1em;
    font-weight: 700;
    color: var(--bs-black);
}

.heading-bg {
    background-color: #d7d7d7;
    padding: 6px 8px;
    font-size: 1em;
    font-weight: 700;
    color: var(--bs-black);
}

.section-tab .nav-tabs {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: auto;
    gap: 2px;
    padding: 0 2px;
    border-bottom: 1px solid #c5cdd5;
}

    .section-tab .nav-tabs .nav-link {
        padding: 6px 12px;
        min-height: 36px;
        font-size: 1em;
        font-weight: 500;
        color: #1f2937;
        outline: none;
        box-shadow: none;
        border: 1px solid #c5cdd5;
        border-radius: 4px 4px 0 0;
        background: linear-gradient(180deg, #fafbfc 0%, #eef1f4 100%);
        transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
        white-space: nowrap;
    }

        .section-tab .nav-tabs .nav-link:hover {
            background: #ffffff;
            border-color: #9fb1bf;
            color: #0f172a;
        }

        .section-tab .nav-tabs .nav-link:focus-visible {
            box-shadow: 0 0 0 2px rgba(var(--primary-rgb), 0.18);
        }

        .section-tab .nav-tabs .nav-link + .nav-link {
            margin-left: 0 !important;
        }

        .section-tab .nav-tabs .nav-link.active {
            background: var(--bs-white);
            color: var(--primary-color);
            font-weight: 600;
            border-color: #9fb1bf #9fb1bf #ffffff;
            padding-bottom: 7px;
            margin-bottom: -1px !important;
        }

.section-tab .tab-inner {
    background: var(--bs-white);
    padding: 5px;
    border: 1px solid #d0d0d0;
}

.section-tab_2.section-tab .nav-tabs,
.section-tab_3.section-tab .nav-tabs {
    gap: 8px;
}

    .section-tab_2.section-tab .nav-tabs .nav-link.button-theme,
    .section-tab_3.section-tab .nav-tabs .nav-link.button-theme {
        margin: 0 !important;
        border: 0 !important;
        height: auto;
        min-width: 150px;
    }

        .section-tab_2.section-tab .nav-tabs .nav-link.button-theme.active {
            --bg-1: var(--primary-color);
            color: #ffffff !important;
        }

        .section-tab_3.section-tab .nav-tabs .nav-link.button-theme.active {
            --bg-1: #ffffff;
            color: #000000 !important;
        }

.section-checkup {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.scrollable-content {
    /*position: absolute;
	max-height: 100%;
	overflow-y: auto;
	top: 0;
	left: 0;
	right: -5px;
	bottom: 0;*/
    overflow-y: auto;
}

.section-list {
    background: #f0f0f0;
}

.patient-card {
    border: 1px solid #9f9f9f;
    padding: 10px;
    justify-content: space-between;
    gap: 8px;
}

.list-item + .list-item .patient-card {
    border-top: 0;
}

.patient-card.patient-card_1 {
    background: rgba(0, 255, 13, 0.07);
}

.patient-card.patient-card_2 {
    background: rgba(255, 9, 0, 0.05);
}

.patient-card.patient-card_3 {
    background: rgba(255, 255, 0, 0.12);
}

.patient-card.patient-card_4 {
    background: rgba(84, 187, 255, 0.12);
}

.patient-card.patient-card_5 {
    background: rgba(159, 159, 159, 0.12);
}

.patient-card:hover {
    background: #f9f9f9 !important;
}

.patient-card .card-icon {
    width: 20px;
    flex-shrink: 0;
    position: relative;
}

    .patient-card .card-icon:before {
        padding-top: 20px;
        display: block;
        content: "";
    }

    .patient-card .card-icon img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.patient-card .card-content {
    max-width: calc(100% - 60px - 20px - 16px);
    line-height: 1.4;
    overflow: hidden;
    flex: 1 1 auto;
}

    .patient-card .card-content .card-code {
        --line: 1;
        font-size: 1em;
        font-weight: 700;
        color: var(--bs-black);
    }

    .patient-card .card-content .card-info,
    .patient-card .card-content .card-meta {
        display: flex;
        align-items: center;
        font-size: 0.85em;
        color: #181818;
        font-weight: 500;
        white-space: nowrap;
        width: 100%;
    }

    .patient-card .card-content .card-info {
        color: var(--bs-danger);
        font-weight: 700;
    }

        .patient-card .card-content .card-info .card-info_item + .card-info_item:before,
        .patient-card
        .card-content
        .card-meta
        .card-meta_item + .card-meta_item:before {
            content: "- ";
            padding-left: 5px;
        }

.patient-card .card-time {
    color: #868282;
    font-size: 0.85em;
    text-align: right;
    width: 60px;
    flex-shrink: 0;
}

.vstack.flex-fill .tab-pane.show.active {
    display: flex;
}

.section-information {
    font-size: 0.925em;
}

    .section-information.section-information_footer {
        width: calc(100% + 10px);
        background: var(--bs-white);
    }

    .section-information > .section-tab .nav-tabs .nav-link {
        padding: 8px 16px;
        font-size: 1em;
        font-weight: 700;
    }

    .section-information .information-body {
        border: 1px solid #d0d0d0;
        position: relative;
        padding: 8px;
    }

.b-1 {
    border: 1px solid #d0d0d0;
    border-bottom: 0;
}

.accordion-header button {
    padding: 6px;
    font-size: 12px;
}

.section-information .information-body {
    border: 1px solid #d0d0d0;
    padding: 8px;
    position: relative;
}

.accordion-collapse .text-dark {
    padding: 0;
}

.button_edit {
    background-color: #00708c;
    border: none;
    border-radius: 100%;
    height: 20px;
    margin: auto;
    position: relative;
    width: 20px;
}

    .button_edit img {
        height: 14px;
        left: 3px;
        position: absolute;
        top: 3px;
        width: 14px;
    }

.section-information .information-body .information-title {
    position: relative;
}

    .section-information .information-body .information-title > span {
        display: inline-block;
        padding-right: 3px;
        background: #f0f0f0;
        z-index: 2;
        position: relative;
    }

    .section-information .information-body .information-title:before {
        position: absolute;
        content: "";
        display: block;
        box-shadow: inset 1px 1px #b7b7b7;
        width: 100%;
        height: 1px;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

.section-information .information-body .information-content .limit {
    --line: 1;
}

.section-information
.information-body
.information-content + .information-content {
    padding-top: 20px;
    margin-top: 20px;
    position: relative;
}

    .section-information
    .information-body
    .information-content + .information-content:before {
        position: absolute;
        content: "";
        display: block;
        box-shadow: inset 1px 1px #d5d5d5;
        width: calc(100% + 16px);
        height: 1px;
        left: -8px;
        top: 0;
    }

.section-information .information-body .information-content .section-tab {
    margin: 0 -8px -8px;
}

    .section-information
    .information-body
    .information-content
    .section-tab
    .nav-link {
        font-size: 1em;
    }

        .section-information
        .information-body
        .information-content
        .section-tab
        .nav-link:first-child {
            border-left: 0;
        }

    .section-information
    .information-body
    .information-content
    .section-tab
    .section-table {
        margin: 0;
        width: 100%;
        padding: 5px;
        border-top: 1px solid #d0d0d0;
    }

.section-information .theme-label,
.section-information .theme-input,
.section-information .theme-checkbox > span {
    font-size: 1em;
}

.section-information textarea.theme-input {
    line-height: 1.7;
}

.section-information .theme-label,
.section-information .theme-checkbox > span {
    line-height: 1;
}

    .section-information .theme-checkbox > span:before {
        width: 14px;
        height: 14px;
    }

.section-nominate {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 5px;
    border: 1px solid #d0d0d0;
    padding: 2px;
    height: 30vh;
}

.nominate-card {
    align-items: center;
    border: 1px solid #9f9f9f;
    padding: 10px 15px;
    gap: 30px;
}

    .nominate-card:before {
        position: absolute;
        content: "";
        height: 100%;
        width: 1px;
        background: #9f9f9f;
        left: 50px;
        top: 50%;
        transform: translateY(-50%);
    }

    .nominate-card .card-icon {
        width: 20px;
        flex-shrink: 0;
        position: relative;
    }

        .nominate-card .card-icon:before {
            padding-top: 20px;
            display: block;
            content: "";
        }

        .nominate-card .card-icon * {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .nominate-card .card-title {
        margin-bottom: 0;
        font-size: 1.075em;
        font-weight: 600;
        color: var(--bs-black);
        font-style: normal;
        line-height: 1.2;
    }

.dragscroll {
    cursor: pointer;
}

.section-sidebar {
    padding-top: 3px;
}

    .section-sidebar .tab-content,
    .section-sidebar .tab-content .tab-pane,
    .section-sidebar .tab-content .tab-pane .tab-inner {
        width: 100%;
    }

.information-background {
    background: #e0dede;
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #9f9f9f;
}

.information-background-2 {
    background: #f0f0f0;
    border-radius: 4px;
    padding: 10px;
    border: 1px solid #9f9f9f;
}

.information-body + .information-body.information-background-2 {
    margin-top: 8px;
}

.theme-tree {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
}

    .theme-tree ul {
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
        position: relative;
        overflow-y: auto;
        max-height: var(--height);
    }

    .theme-tree > ul:before {
        background-color: #999;
        content: "";
        display: block;
        position: absolute;
        top: 13px;
        bottom: 9px;
        left: 7px;
        width: 1px;
        height: calc(var(--set-height) - 11px);
    }

    .theme-tree ul li {
        position: relative;
    }

    .theme-tree > ul > li:before {
        position: absolute;
        content: "";
        height: 1px;
        width: 20px;
        background-color: #999;
        left: 7px;
        top: 13px;
        z-index: 1;
    }

    .theme-tree ul li a {
        margin-bottom: 3px;
        display: block;
        color: #1e2125;
        font-size: 0.925em;
        padding: 4px 0;
    }

    .theme-tree > ul > li > a {
        font-weight: 700;
        padding-left: 30px;
    }

    .theme-tree ul li > span {
        position: absolute;
        top: 5px;
        width: 16px;
        height: 16px;
        padding: 3px;
        border: 1px solid #e9e9e9;
        font-size: 9px;
        background-color: #fff;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        cursor: pointer;
        left: -1px;
        z-index: 2;
        line-height: 0;
    }

    .theme-tree > ul > li > ul:before {
        background-color: #999;
        content: "";
        display: block;
        position: absolute;
        top: -5px;
        bottom: 9px;
        left: 35px;
        width: 1px;
        height: calc(100% - 9px);
    }

    .theme-tree > ul > li > ul > li:before {
        position: absolute;
        content: "";
        height: 1px;
        width: 10px;
        background-color: #999;
        left: 35px;
        top: 13px;
        z-index: 1;
    }

    .theme-tree > ul > li > ul > li > a {
        padding-left: 50px;
    }

    .theme-tree > ul > li.is-hide > ul {
        display: none;
    }

@media screen and (min-width: 1200px) {
    .modal-large {
        --bs-modal-width: 85%;
    }

    .modal-xxl {
        --bs-modal-width: 75%;
    }
}

.page-login {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--bs-light);
    padding-top: 30px;
}

    .page-login .form-content {
        padding: 60px 30px;
        border-radius: 12px;
        background-color: var(--bs-white);
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    }

        .page-login .form-content .form-heading {
            text-align: center;
            margin-bottom: 40px;
        }

            .page-login .form-content .form-heading .title {
                font-size: 1.6em;
                text-transform: uppercase;
                color: var(--bs-gray-900);
                font-weight: 700;
                margin-bottom: 5px;
            }

            .page-login .form-content .form-heading .text {
                font-size: 1.1em;
                color: var(--bs-gray-600);
            }

        .page-login .form-content .form-inner .input-group {
            margin-bottom: 20px;
        }

            .page-login .form-content .form-inner .input-group .input-group-text,
            .page-login .form-content .form-inner .input-group .btn {
                background-color: transparent;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 10;
                border: 0;
                border-radius: 0;
                width: 40px;
                padding: 0;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .page-login .form-content .form-inner .input-group .btn {
                left: unset;
                right: 0;
            }

            .page-login .form-content .form-inner .input-group .form-control {
                background-color: var(--bs-gray-100);
                border-radius: 4px !important;
                border: 1px solid var(--bs-gray-200);
                height: 40px;
                line-height: 40px;
                font-size: 1.05em;
                margin-left: 0;
                margin-right: 0;
                padding-left: 40px;
                padding-bottom: 7px;
                color: var(--bs-gray-800);
            }

                .page-login .form-content .form-inner .input-group .form-control::placeholder {
                    color: var(--bs-gray-600);
                }

            .page-login
            .form-content
            .form-inner
            .input-group.input-group_password
            .form-control {
                padding-right: 55px;
            }

        .page-login .form-content .form-inner .form-inner_check input[type="checkbox"] {
            opacity: 0;
            visibility: hidden;
            display: none;
        }

        .page-login .form-content .form-inner .button-theme {
            width: 100%;
            border-radius: 4px;
            font-size: 1.1em;
        }

    .page-login .login-header_item {
        color: var(--bs-dark);
    }

        .page-login .login-header_item:hover {
            color: var(--primary-color);
        }

.section-camera {
    border: 1px solid #d0d0d0;
    position: relative;
}

    .section-camera .camera-connect {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        min-height: 50vh;
        border-bottom: 1px solid #d0d0d0;
        background-color: var(--bs-white);
        padding: 8px;
    }

    .section-camera .camera-footer {
        padding: 8px;
    }

    .section-camera .camera-images {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px;
        border-bottom: 1px solid #d0d0d0;
        background-color: var(--bs-white);
        padding: 8px;
    }

        .section-camera .camera-images .camera-images_item {
            width: calc(20% - 6.5px);
            position: relative;
            cursor: pointer;
        }

            .section-camera .camera-images .camera-images_item > span {
                position: absolute;
                top: 5px;
                right: 5px;
            }

        .section-camera .camera-images > img {
            width: 100%;
        }

.soanthao-body .theme-form .theme-input {
    border-color: #d0d0d0;
    max-height: 100%;
    height: 100%;
}

.table-dropdown .dropdown-menu {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0;
    border: rgba(0, 0, 0, 0.176);
    font-size: 1em;
}

    .table-dropdown .dropdown-menu .dropdown-item {
        display: flex;
        align-items: center;
        gap: 5px;
        padding-top: 6px;
        padding-bottom: 6px;
        background-color: var(--bs-white);
        color: var(--bs-black);
    }

        .table-dropdown .dropdown-menu .dropdown-item:hover {
            background-color: rgba(var(--primary-rgb), 0.075);
            color: var(--primary-color);
        }

.theme-search {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bs-white);
    border-radius: 4px;
    border: 1px solid #d0d0d0;
    transition: var(--transition-default);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    max-height: 400px;
    overflow-y: auto;
}

    .theme-search ul {
        margin-bottom: 0;
        list-style: none;
        padding-left: 0;
    }

        .theme-search ul > li {
            width: 100%;
        }

            .theme-search ul > li .search-item {
                display: flex;
                gap: 12px;
                padding: 8px 10px;
                width: 100%;
                transition: var(--transition-default);
                font-size: 0.925em;
            }

            .theme-search ul > li + li {
                border-top: 1px solid #f1f1f1;
            }

            .theme-search ul > li .search-item .search-item_title {
                font-weight: 600;
            }

                .theme-search ul > li .search-item .search-item_title + .search-item_quantity,
                .theme-search ul > li .search-item .search-item_title + .search-item_add {
                    margin-left: auto;
                }

            .theme-search ul > li .search-item:hover {
                background-color: rgba(var(--primary-rgb), 0.075);
            }

            .theme-search ul > li .search-item.active {
                background-color: var(--primary-color);
                color: var(--bs-white);
            }

.is-search .theme-search {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.section-tab .nav-tabs .nav-link.button-theme {
    margin-left: 5px !important;
    border-color: transparent;
    height: 100%;
    background-color: var(--bg-1);
}

.cart-inner {
    display: flex;
    flex-direction: column;
}

    .cart-inner .cart-list {
        flex: 1 1 auto;
        overflow-y: auto;
    }

        .cart-inner .cart-list .cart-item {
            transition: var(--transition-default);
            position: relative;
            z-index: 1;
            border-color: #f1f1f1 !important;
        }

            .cart-inner .cart-list .cart-item.position-sticky {
                z-index: 3;
            }

            .cart-inner .cart-list .cart-item:not(.position-sticky):hover {
                box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
                z-index: 2;
            }

            .cart-inner .cart-list .cart-item .cart-column {
                padding: 12px 15px;
                flex-shrink: 0;
                font-size: 1.075em;
            }

                .cart-inner .cart-list .cart-item .cart-column.cart-numerical {
                    width: 5%;
                    text-align: center;
                }

                .cart-inner .cart-list .cart-item .cart-column.cart-delete {
                    width: 5%;
                    text-align: center;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                }

                    .cart-inner .cart-list .cart-item .cart-column.cart-delete .cart-delete_button {
                        color: var(--bs-danger);
                    }

                .cart-inner .cart-list .cart-item .cart-column.cart-code {
                    width: 12%;
                }

                .cart-inner .cart-list .cart-item .cart-column.cart-name {
                    width: 30%;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                    .cart-inner .cart-list .cart-item .cart-column.cart-name .cart-name_value {
                        color: #000;
                        font-weight: 500;
                    }

                    .cart-inner .cart-list .cart-item .cart-column.cart-name .cart-name_property {
                        font-size: 12px;
                        border-radius: 4px;
                        padding: 2px 6px;
                        background: #fff0e1;
                        color: #e37915;
                        font-weight: 500;
                    }

                .cart-inner .cart-list .cart-item .cart-column.cart-unit {
                    width: 8%;
                }

                .cart-inner .cart-list .cart-item .cart-column.cart-quantity {
                    width: 10%;
                }

                    .cart-inner .cart-list .cart-item .cart-column.cart-quantity .form-control {
                        color: #000;
                        border-radius: 0;
                        border: 0;
                        text-align: center;
                        border-bottom: 1px solid #9f9f9f;
                        font-size: 1em;
                    }

                .cart-inner .cart-list .cart-item .cart-column.cart-price {
                    width: 10%;
                    text-align: right;
                    color: #000;
                    font-weight: 500;
                }

                .cart-inner .cart-list .cart-item .cart-column.cart-total {
                    width: 10%;
                    text-align: right;
                    color: #000;
                    font-weight: 700;
                }

.cart-sidebar {
    border-color: #f1f1f1 !important;
    display: flex;
    flex-direction: column;
}

    .cart-sidebar .cart-sidebar_header {
        font-size: 1em;
        padding: 15px;
    }

        .cart-sidebar .cart-sidebar_header .cart-sidebar_header__user {
            font-weight: 500;
            color: #000;
        }

        .cart-sidebar .cart-sidebar_header .cart-sidebar_header__time {
            color: #656565;
        }

        .cart-sidebar
        .cart-sidebar_header
        .cart-sidebar_header__item + .cart-sidebar_header__item {
            margin-top: 5px;
        }

        .cart-sidebar
        .cart-sidebar_header
        .cart-sidebar_header__item
        .theme-input.form-select {
            border-radius: 4px;
            height: 32px;
            font-size: 1em;
        }

    .cart-sidebar .cart-sidebar_body {
        flex: 1 1 auto;
        overflow-y: auto;
    }

        .cart-sidebar .cart-sidebar_body .cart-sidebar_title {
            font-size: 1.15em;
            font-weight: 700;
            color: var(--primary-color);
            padding: 0 15px;
        }

            .cart-sidebar .cart-sidebar_body .cart-sidebar_title span {
                color: var(--bs-black);
                font-size: 14px;
            }

        .cart-sidebar .cart-sidebar_body .cart-sidebar_order {
            padding: 0 15px;
            margin-top: 15px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

            .cart-sidebar .cart-sidebar_body .cart-sidebar_order .cart-sidebar_order__item {
                display: flex;
                align-items: center;
                gap: 10px;
                font-size: 1.075em;
            }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .order-item_text {
                    flex-shrink: 0;
                    width: 40%;
                    color: #000;
                    font-weight: 500;
                }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .order-item_value {
                    flex-shrink: 0;
                    width: 20%;
                    margin-left: auto;
                    text-align: right;
                }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .order-item_number {
                    height: 20px;
                    min-width: 20px;
                    border-radius: 50%;
                    color: #ffffff;
                    background: #7c7c7c;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 12px;
                }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .order-item_value
                input.form-control {
                    color: #000;
                    border-radius: 0;
                    border: 0;
                    text-align: right;
                    border-bottom: 1px solid #9f9f9f;
                    padding-right: 0;
                    font-size: 1em;
                    padding-bottom: 2px;
                }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .order-item_value
                textarea.form-control {
                    color: #000;
                    font-size: 1em;
                    border: 1px solid #9f9f9f;
                }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item
                .cart-sidebar_order__radios {
                    display: flex;
                    align-items: center;
                    gap: 30px;
                    font-weight: 500;
                    color: #000;
                }

                    .cart-sidebar
                    .cart-sidebar_body
                    .cart-sidebar_order
                    .cart-sidebar_order__item
                    .cart-sidebar_order__radios
                    .form-check-label {
                        cursor: pointer;
                        padding-left: 1.75em;
                        font-size: 14px;
                    }

                    .cart-sidebar
                    .cart-sidebar_body
                    .cart-sidebar_order
                    .cart-sidebar_order__item
                    .cart-sidebar_order__radios
                    .form-check-input {
                        margin-left: -1.75em;
                        width: 18px;
                        height: 18px;
                        margin-top: 0.15em;
                        cursor: pointer;
                    }

                        .cart-sidebar
                        .cart-sidebar_body
                        .cart-sidebar_order
                        .cart-sidebar_order__item
                        .cart-sidebar_order__radios
                        .form-check-input:focus {
                            border-color: transparent !important;
                        }

                .cart-sidebar
                .cart-sidebar_body
                .cart-sidebar_order
                .cart-sidebar_order__item.handlePillInTabWrapper
                .order-payment_item {
                    display: none;
                }

                    .cart-sidebar
                    .cart-sidebar_body
                    .cart-sidebar_order
                    .cart-sidebar_order__item.handlePillInTabWrapper
                    .order-payment_item.show {
                        display: block;
                    }

                    .cart-sidebar
                    .cart-sidebar_body
                    .cart-sidebar_order
                    .cart-sidebar_order__item.handlePillInTabWrapper
                    .order-payment_item
                    .order-payment_item__list {
                        width: 100%;
                        padding: 15px;
                        background: #f1f1f1;
                        border-radius: 8px;
                        display: flex;
                        gap: 5px;
                        flex-wrap: wrap;
                    }

                        .cart-sidebar
                        .cart-sidebar_body
                        .cart-sidebar_order
                        .cart-sidebar_order__item.handlePillInTabWrapper
                        .order-payment_item
                        .order-payment_item__list
                        .link-default {
                            border-radius: 20px;
                            background: var(--bs-white);
                            border: 1px solid #e9e9e9;
                            font-size: 14px;
                            font-weight: 500;
                            color: #000;
                            padding: 5px 17px;
                        }

                            .cart-sidebar
                            .cart-sidebar_body
                            .cart-sidebar_order
                            .cart-sidebar_order__item.handlePillInTabWrapper
                            .order-payment_item
                            .order-payment_item__list
                            .link-default.active {
                                background: var(--primary-color);
                                color: #ffffff;
                            }

    .cart-sidebar .cart-sidebar_footer {
        padding: 15px;
    }

        .cart-sidebar .cart-sidebar_footer .button-theme {
            height: 40px;
            border-radius: 4px;
            font-size: 1.15em;
            font-weight: 500;
        }

.cart-products {
    border: 1px solid #efefef;
    margin-top: 15px;
    border-radius: 0.375rem;
    overflow: hidden;
}

    .cart-products .cart-products_action {
        padding: 8px 15px 8px;
        border-bottom: 1px solid #efefef;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

        .cart-products .cart-products_action .cart-products_title {
            font-size: 1.075em;
            font-weight: 600;
            color: var(--bs-black);
        }

        .cart-products .cart-products_action .card-products_arrows {
            display: flex;
            align-items: center;
            gap: 4px;
        }

            .cart-products .cart-products_action .card-products_arrows .link-default {
                display: flex;
                align-items: center;
                justify-content: center;
                height: 28px;
                width: 24px;
                background: #f1f1f1;
                border-radius: 4px;
            }

    .cart-products .cart-products_grid {
        padding: 12px 15px;
        background: #fff;
    }

.product-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 4px;
    border: 1px solid #e9e9e9;
    padding: 10px 12px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-default);
    cursor: pointer;
}

    .product-item:hover {
        background: #f6f6f6;
    }

    .product-item .product-item_price {
        font-weight: 600;
        color: #ff0000;
        font-size: 14px;
    }

    .product-item .product-item_title {
        padding-top: 5px;
        font-weight: 600;
        --line: 1;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: var(--line);
        line-clamp: var(--line);
        -webkit-box-orient: vertical;
        color: var(--bs-black);
    }

.golf-statistical {
    border-radius: 8px;
    background: var(--primary-color);
    padding: 20px;
}

    .golf-statistical .golf-statistical_icon {
        border-radius: 8px;
        background: var(--bs-white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.15em;
        color: var(--primary-color);
        height: 32px;
        width: 32px;
    }

    .golf-statistical .golf-statistical_sub {
        margin-top: 0.5em;
        font-size: 1.15em;
        color: var(--bs-white);
    }

    .golf-statistical .golf-statistical_bottom {
        margin-top: 1em;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .golf-statistical .golf-statistical_value {
        font-size: 2.45em;
        font-weight: 700;
        color: var(--bs-white);
        line-height: 1;
    }

    .golf-statistical .golf-statistical_chart {
        position: relative;
        height: 18px;
        width: 275px;
        border-radius: 25px;
        background: var(--bs-white);
        overflow: hidden;
    }

        .golf-statistical .golf-statistical_chart .golf-statistical_chart__item {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            height: 100%;
        }

            .golf-statistical
            .golf-statistical_chart
            .golf-statistical_chart__item:first-child {
                border-radius: 20px 0 0 20px;
            }

            .golf-statistical
            .golf-statistical_chart
            .golf-statistical_chart__item:last-child {
                border-radius: 0 20px 20px 0;
            }

.statistical-item {
    border-radius: 0.25rem;
    background: var(--bs-white);
    border: 1px solid rgba(0, 0, 0, 0.175);
    width: calc(100% / 6);
    transition: var(--transition-default);
}

    .statistical-item.isChange {
        background: #ecf7f8;
    }

.statistical-item {
    border-radius: 0.25rem;
    background: var(--bs-white);
    border: 1px solid rgba(0, 0, 0, 0.175);
    width: calc(100% / 6);
}

    .statistical-item .statistical-item_icon {
        font-size: 1.6em;
        color: var(--primary-color);
    }

    .statistical-item .statistical-item_number {
        font-size: 1.6em;
        font-weight: 700;
        color: var(--primary-color);
    }

    .statistical-item .statistical-item_title {
        font-size: 1em;
        font-weight: 700;
        color: var(--bs-dark);
    }

.template-cpanel .cpanel-login {
    align-items: center;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    padding-top: 30px;
}

    .template-cpanel .cpanel-login:before {
        background: url(../images/bg-login.svg) 50% / cover no-repeat;
        content: "";
        height: 100%;
        left: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 100%;
    }

    .template-cpanel .cpanel-login .form-content {
        background-color: var(--white);
        box-shadow: 0 1px 2px 0 #0000001a;
        border-radius: 10px;
        padding: 75px 60px;
        position: relative;
    }

        .template-cpanel .cpanel-login .form-content .form-heading {
            margin-bottom: 40px;
            text-align: left;
        }

            .template-cpanel .cpanel-login .form-content .form-heading .title {
                color: #212529;
                font-weight: 700;
                margin-bottom: 5px;
                font-size: 1.75em;
                text-transform: none;
            }

            .template-cpanel .cpanel-login .form-content .form-heading .text {
                color: #6c757d;
                font-size: 1.1em;
                line-height: 1.2;
            }

        .template-cpanel .cpanel-login .form-content .form-inner .form-group {
            position: relative;
        }

            .template-cpanel
            .cpanel-login
            .form-content
            .form-inner
            .form-group
            .form-label {
                color: #212529;
                font-weight: 500;
                margin-bottom: 0.5rem !important;
            }

            .template-cpanel
            .cpanel-login
            .form-content
            .form-inner
            .form-group
            .form-control {
                background-color: #fff;
                border: 1px solid #e9ecef;
                border-radius: 4px !important;
                color: #212529;
                font-size: 1.05em;
                font-weight: 600;
                height: 44px;
                line-height: 44px;
            }

                .template-cpanel
                .cpanel-login
                .form-content
                .form-inner
                .form-group
                .form-control::placeholder {
                    color: #6c757d;
                    font-weight: 400;
                    opacity: 0.6;
                }

            .template-cpanel
            .cpanel-login
            .form-content
            .form-inner
            .form-group.form-group_password
            .btn-pass {
                background: #0000;
                border: 0;
                bottom: 10px;
                box-shadow: none;
                color: #6c757d;
                font-size: 1.15em;
                outline: none;
                padding: 0;
                position: absolute;
                right: 10px;
            }

        .template-cpanel
        .cpanel-login
        .form-content
        .form-inner
        .form-inner_check
        input[type="checkbox"] {
            display: none;
            opacity: 0;
        }

        .template-cpanel .cpanel-login .form-content .theme-checkbox > span {
            align-items: center;
            color: #000;
            cursor: pointer;
            display: flex;
            font-size: 1em;
            font-weight: 500;
            gap: 6px;
            position: relative;
        }

            .template-cpanel .cpanel-login .form-content .theme-checkbox > span:before {
                background-color: var(--white);
                background-image: url(../images/icons/icon-check.svg);
                background-position: 50%;
                background-repeat: no-repeat;
                background-size: 0;
                border: 1px solid #9f9f9f;
                border-radius: 2px;
                content: "";
                flex-shrink: 0;
                height: 16px;
                overflow: hidden;
                transition: background-size 0.3s cubic-bezier(0.5, 0, 0.5, 2), background-color 0.3s;
                width: 16px;
            }

        .template-cpanel
        .cpanel-login
        .form-content
        .theme-checkbox > input[type="radio"] + span:before {
            border-radius: 50%;
        }

        .template-cpanel
        .cpanel-login
        .form-content
        .theme-checkbox > input:checked + span:before,
        .template-cpanel
        .cpanel-login
        .form-content
        .theme-checkbox > input:checked:disabled + span:before {
            background-color: var(--primary-color);
            background-size: 100%;
            border-color: var(--primary-color);
        }

        .template-cpanel
        .cpanel-login
        .form-content
        .theme-checkbox > input:checked:disabled + span:before {
            opacity: 0.5;
        }

        .template-cpanel
        .cpanel-login
        .form-content
        .theme-checkbox > input:disabled + span:before {
            opacity: 0.3;
        }

        .template-cpanel
        .cpanel-login
        .form-content
        .form-inner
        .form-group + .form-group {
            margin-top: 1.25rem;
        }

.color-primary {
    color: var(--primary-color);
}

    .color-primary:hover {
        color: var(--primary-hover);
    }

.hover-underline:hover {
    text-decoration: underline;
}

.font-weight-semibold {
    font-weight: 500;
}

.main .cpanel-highlight {
    display: flex;
    background: var(--primary-color);
}

    .main .cpanel-highlight .cpanel-highlight_left {
        padding: 10px;
        background-color: #0790ab;
        width: 20%;
    }

        .main .cpanel-highlight .cpanel-highlight_left .cpanel-highlight_left__title {
            font-size: 19px;
            font-weight: 700;
            white-space: nowrap;
            color: #ffffff;
        }

    .main .cpanel-highlight .cpanel-highlight_right {
        width: 80%;
        padding: 10px;
    }

        .main
        .cpanel-highlight
        .cpanel-highlight_right
        .cpanel-highlight_right__content {
            display: flex;
            align-items: center;
        }

            .main
            .cpanel-highlight
            .cpanel-highlight_right
            .cpanel-highlight_right__content
            .cpanel-highlight_right__title {
                color: #ffffff;
                font-size: 14px;
            }

                .main
                .cpanel-highlight
                .cpanel-highlight_right
                .cpanel-highlight_right__content
                .cpanel-highlight_right__title
                span {
                    font-size: 19px;
                    font-weight: 700;
                    text-transform: uppercase;
                }

            .main
            .cpanel-highlight
            .cpanel-highlight_right
            .cpanel-highlight_right__content
            .cpanel-highlight_right__tabs {
                display: flex;
                align-items: center;
                gap: 7px;
            }

                .main
                .cpanel-highlight
                .cpanel-highlight_right
                .cpanel-highlight_right__content
                .cpanel-highlight_right__tabs > .link-default {
                    margin-bottom: -17px;
                }

                .main
                .cpanel-highlight
                .cpanel-highlight_right
                .cpanel-highlight_right__content
                .cpanel-highlight_right__tabs
                .tabs-m1
                .nav-tabs {
                    margin-bottom: -18px;
                    gap: 7px;
                }

                    .main
                    .cpanel-highlight
                    .cpanel-highlight_right
                    .cpanel-highlight_right__content
                    .cpanel-highlight_right__tabs
                    .tabs-m1
                    .nav-tabs
                    .nav-item
                    .nav-link {
                        background: var(--pastel-color);
                        border: 0;
                        color: #ffffff;
                        font-size: 1em;
                        padding: 6px 12px;
                        font-weight: 500;
                        display: flex;
                        align-items: center;
                        gap: 5px;
                    }

                        .main
                        .cpanel-highlight
                        .cpanel-highlight_right
                        .cpanel-highlight_right__content
                        .cpanel-highlight_right__tabs
                        .tabs-m1
                        .nav-tabs
                        .nav-item
                        .nav-link.active {
                            background: #f0f0f0;
                            color: #454545;
                        }

        .main .cpanel-highlight .cpanel-highlight_right .form-m1 {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
            margin-left: auto;
        }

            .main .cpanel-highlight .cpanel-highlight_right .form-m1 .form-control {
                width: auto;
            }

/*seachjs*/
.search-container {
    position: relative;
    width: 100%;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2000;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 350px;
    overflow-y: auto;
    margin-top: 2px;
    animation: fadeIn 0.12s ease-in-out;
}

    .dropdown-list.show {
        display: block;
    }

.list-item {
    display: block;
    width: 100%;
    padding: 0.4rem 0.7rem;
    background: transparent;
    border: none;
    text-align: left;
    /*    font-size: 0.95rem;*/
    color: #212529;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

    .list-item:hover,
    .list-item:focus,
    .list-item.selected {
        background-color: #015e70;
        color: #fff;
    }

.dropdown-list::-webkit-scrollbar {
    width: 6px;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

input[type="checkbox"]:disabled + span {
    opacity: 0.4;
    cursor: not-allowed;
}

input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CKEditor Styles */
.editor {
    width: 100% !important;
    min-height: 200px !important;
    resize: both;
    overflow: auto;
}

/* CKEditor container */
.ck.ck-editor {
    width: 100% !important;
}

/* CKEditor editable area */
.ck-editor__editable {
    min-height: 200px !important;
    resize: both;
    overflow: auto;
}

/* CKEditor content area */
.ck-content {
    min-height: 200px !important;
    resize: both;
    overflow: auto;
}

.ck-powered-by {
    display: none !important;
}

.select2-container {
    z-index: 99999;
    width: 100% !important;
    min-height: 26px !important;
}

.select2-selection--multiple {
    min-height: 26px !important;
}

.select2-selection__choice {
    font-weight: normal !important;
}
/* Split Container */
.split-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 200px);
    overflow: hidden;
}

/* Split Panels */
.split-panel {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.split-panel-top {
    flex: 0 0 50%;
    min-height: 200px;
}

.split-panel-bottom {
    flex: 1;
    min-height: 200px;
}

.split-panel .box-item {
    display: flex;
    flex-direction: column;
}

/* Splitter */
.splitter {
    height: 8px;
    background: #e9ecef;
    cursor: row-resize;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
}

    .splitter:hover {
        background: #dee2e6;
    }

    .splitter:active {
        background: #adb5bd;
    }

.splitter-bar {
    width: 60px;
    height: 4px;
    background: #6c757d;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .splitter-bar i {
        color: #fff;
        font-size: 10px;
    }

.splitter.dragging {
    background: #0d6efd;
}

.split-container.dragging {
    user-select: none;
}

    .split-container.dragging * {
        cursor: row-resize !important;
    }

/* Row clickable */
.row-clickable {
    cursor: pointer;
    transition: background-color 0.2s;
}

    .row-clickable:hover {
        background-color: #f8f9fa !important;
    }

    .row-clickable.table-active {
        background-color: #e7f3ff !important;
    }

/* Warning row colors */
.table-circle_3 {
    background-color: #fff3cd !important;
}

.required::after {
    content: "*";
    color: #da3348;
    font-weight: bold;
    margin-left: 0px;
    display: inline;
}
/*tabcss */
.tab_checkin {
    background: #00748d !important;
    color: white !important;
    position: relative;
    padding-right: 40px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-bottom: none !important;
}

    .tab_checkin.active {
        background: #f0f0f0 !important;
        color: #333 !important;
        border: 1px solid #ddd !important;
        border-bottom: none !important;
    }

    .tab_checkin .color-white {
        color: white !important;
    }

    .tab_checkin.active .color-white {
        color: #333 !important;
    }

.tab-close-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    width: 20px;
    height: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.tab_checkin.active .tab-close-btn {
    background: rgba(0, 0, 0, 0.1);
    color: #666;
}

.tab-close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}

.tab_checkin.active .tab-close-btn:hover {
    background: rgba(255, 0, 0, 0.8);
    color: white;
}
.print-container{
    display:none;
}

/* Stock import */
:root {
    --primary-color: #015e70;
    --primary-hover: #00708c;
    --primary-rgb: 1, 94, 112;
    --secondary-color: #bb9a77;
    --secondary-hover: #a27b51;
    --secondary-rgb: 187, 154, 119;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.box-item_wrapper.box-item_legend {
    padding: 10px !important;
}

@media print {
    body * {
        visibility: hidden;
    }

    .print-container,
    .print-container * {
        visibility: visible !important;
    }

    .print-container {
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        background: white !important;
    }

    .no-print {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .stock-import-header-left,
    .stock-import-sidebar {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        width: 25% !important;
    }

    .stock-import-header-right,
    .stock-import-workspace {
        flex: 1 1 0 !important;
        max-width: none !important;
        width: auto !important;
        min-width: 0 !important;
    }

    .stock-import-sidebar {
        min-height: calc(100vh - 11rem);
        min-height: calc(100dvh - 11rem);
    }
}

.stock-import-sidebar .section-sidebar,
.stock-import-sidebar .section-tab,
.stock-import-sidebar .tab-content,
.stock-import-sidebar .tab-pane,
.stock-import-sidebar .tab-inner {
    height: 100%;
}

.stock-import-sidebar .tab-inner {
    min-height: 0;
}

.stock-import-sidebar .section-table {
    flex: 1 1 auto;
    min-height: 0;
}

.stock-import-sidebar-table {
    --height: 100%;
    height: 100%;
    max-height: 100%;
}

.stock-import-sidebar-pagination {
    margin-top: auto;
    padding-bottom: 6px;
}

.stock-import-label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #30555d;
}

.stock-import-readonly {
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid #d6e0e3;
    border-radius: 10px;
    background: #f8fbfb;
}

.stock-import-status-badge {
    min-height: 38px;
    display: flex;
    align-items: center;
}

.stock-import-product-search-box {
    margin-top: calc(.5rem + 5px) !important;
    margin-bottom: 6px;
}

.stock-import-product-search-box,
.stock-import-product-search-box .box-item_wrapper {
    overflow: visible;
}

.stock-import-product-search-field,
.stock-import-search-anchor {
    position: relative;
}

.stock-import-search-clear {
    height: 32px !important;
    min-height: 32px !important;
    padding: 4px 10px !important;
    line-height: 1 !important;
    border-bottom: 1px solid #aaa !important;
    margin-bottom: 0;
}

.stock-import-search-results {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    z-index: 1080;
    width: min(920px, calc(100vw - 32px));
    max-height: 292px;
    margin-top: 0;
    border: 1px solid #d7e3e6;
    border-radius: 12px;
    background: #fff;
    display: block;
    overflow: auto;
    box-shadow: 0 8px 18px rgba(1, 94, 112, .06);
}

.stock-import-search-empty {
    padding: 10px 12px;
    color: #64748b;
    font-size: 13px;
}

.stock-import-search-row {
    display: grid;
    grid-template-columns: minmax(86px, .75fr) minmax(260px, 2.2fr) minmax(68px, .55fr) minmax(92px, .75fr) minmax(160px, 1.2fr);
    align-items: center;
    gap: 12px;
}

.stock-import-search-row {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-bottom: 1px solid #edf3f4;
    background: #fff;
    color: #243b42;
    padding: 8px 12px;
    text-align: left;
    line-height: 1.25;
    transition: background-color .12s ease, box-shadow .12s ease;
}

.stock-import-search-row:last-child {
    border-bottom: 0;
}

.stock-import-search-row:hover,
.stock-import-search-row.is-active {
    background: #e8f4f6;
    box-shadow: inset 3px 0 0 #015e70;
}

.stock-import-search-row:focus-visible {
    outline: 2px solid rgba(1, 94, 112, .35);
    outline-offset: -2px;
}

.stock-import-search-row__code {
    font-weight: 800;
    color: #015e70;
}

.stock-import-search-row__name {
    min-width: 0;
    overflow: hidden;
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.stock-import-search-row__tags {
    display: flex;
    min-width: 0;
    flex-wrap: wrap;
    gap: 5px;
}

.stock-import-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.stock-import-tag {
    display: inline-flex;
    padding: 3px 7px;
    border-radius: 999px;
    background: #e8f4f6;
    color: #015e70;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .stock-import-search-results {
        width: 100%;
        max-height: 260px;
    }

    .stock-import-search-row {
        grid-template-columns: minmax(82px, auto) 1fr auto;
        gap: 5px 10px;
        padding: 10px 12px;
    }

    .stock-import-search-row__name {
        grid-column: 2 / 4;
    }

    .stock-import-search-row__tags {
        grid-column: 2 / 4;
        grid-row: 2;
    }
}

.stock-import-items-table {
    --height: 53.5vh;
}

.stock-import-form-buttons {
    justify-content: flex-end !important;
}

.stock-import-status-text {
    display: inline-block;
    font-weight: 700;
    white-space: nowrap;
}

.stock-import-status-text--success {
    color: #15803d;
}

.stock-import-status-text--warning {
    color: #b45309;
}

.stock-import-status-text--info {
    color: #0284c7;
}

.stock-import-status-text--danger {
    color: #dc2626;
}

.stock-import-status-text--secondary {
    color: #64748b;
}

.stock-import-qty-input {
    width: 100px;
}

.stock-import-delete-col {
    width: 36px !important;
    min-width: 36px !important;
    max-width: 36px !important;
    padding-left: 6px !important;
    padding-right: 6px !important;
    white-space: nowrap;
}

.stock-import-col-lot,
.stock-import-col-serial,
.stock-import-col-lot-serial {
    min-width: 180px;
}

.stock-import-col-expiration {
    min-width: 150px;
}

.stock-import-col-store-type {
    min-width: 130px;
}

input.form-control[readonly],
input.form-control:disabled,
input.theme-input[readonly],
input.theme-input:disabled,
textarea.form-control[readonly],
textarea.form-control:disabled,
textarea.theme-input[readonly],
textarea.theme-input:disabled,
select.form-select:disabled,
select.theme-input:disabled,
.theme-input[readonly],
.theme-input:disabled {
    background-color: #e5e7eb !important;
    color: #495057 !important;
    opacity: 1 !important;
}

input.form-control:disabled,
input.theme-input:disabled,
textarea.form-control:disabled,
textarea.theme-input:disabled,
select.form-select:disabled,
select.theme-input:disabled,
.theme-input:disabled {
    cursor: not-allowed;
}

.badge {
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.05;
    padding: .34rem .62rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    letter-spacing: .01em;
}

.status-badge--success {
    background: #16a34a !important;
    border-color: #15803d !important;
    color: #fff !important;
}

.status-badge--warning {
    background: #f59e0b !important;
    border-color: #d97706 !important;
    color: #1f2937 !important;
}

.status-badge--info {
    background: #0ea5e9 !important;
    border-color: #0284c7 !important;
    color: #fff !important;
}

.status-badge--danger {
    background: #dc2626 !important;
    border-color: #b91c1c !important;
    color: #fff !important;
}

.status-badge--secondary {
    background: #64748b !important;
    border-color: #475569 !important;
    color: #fff !important;
}
