.auth-logo .auth-logo-dark {
    display: var(--bs-display-block);
}

.auth-logo .auth-logo-light {
    display: var(--bs-display-none);
}
.profile-user-wid {
    margin-top: -26px;
}
.header {
    position: fixed !important;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgb(255, 255, 255);
}
.header-item {
    padding: 10px;
    display: inline-block;
    cursor: pointer;
}

.header-item:hover button {
    background-color: rgba(0, 0, 0, 0.005);
}
.header-item button {
    background-color: rgb(255, 255, 255);
}

.header-item:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

@keyframes bell-shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    50% {
        transform: rotate(15deg);
    }

    75% {
        transform: rotate(-10deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.shake {
    display: inline-block;
    animation: bell-shake 1s ease infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.rotate {
    display: inline-block;
    animation: spin 2s linear infinite;
}

@media (min-width: 992px) {
    .header-menu {
        background-color: #556ee6;
        height: 53px;
    }

    .menu ul {
        position: absolute;
        top: 1px;
        margin: auto;
        display: flex;
        font-size: 15px;
        font-weight: 500;
        flex-direction: row;
        list-style: none;
        padding-left: 15px;
    }
    .menu li .menu-title,
    .menu li a{
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        display: flex;
        align-items: center;
        padding: 15px;
        margin-right: 20px;
    }

    .menu li a:first-child {
        padding-left: 0;
    }

    .menu li a:hover {
        color: aliceblue;
    }

    div[id$="-menu"] {
        background-color: #ffffff;
        box-shadow: -3px 3px 6px rgba(0, 0, 0, 0.05),
            3px 3px 6px rgba(0, 0, 0, 0.05), 0 3px 6px rgba(0, 0, 0, 0.05);
        border-radius: 5px;
        position: absolute;
        z-index: 100;
        display: none;
    }
    .menu li:hover div[id$="-menu"] {
        display: block;
    }
    .menu li:hover div[id="facebook-menu"] {
        display: flex;
        flex-wrap: wrap;
        width: 480px;
    }
    div[id="facebook-menu"] div {
        width: 48%;
    }
    div[id$="-menu"] a {
        color: #565656;
        margin-left: 15px;
        font-size: 14px;
        font-weight: 400;
    }
    div[id$="-menu"] a:hover {
        color: rgb(0, 136, 255);
    }
    .page-title {
        top: 125px;
        padding: 24px 12px;
        margin: auto;
        position: relative;
    }
    .dashboard {
        top: 125px;
        margin-left: 12px;
        margin-right: 12px;
        position: relative;
        margin-bottom: 150px;
    }
    .footer-title {
        width: 100%;
        margin: auto;
        padding: 12px;
    }
}

@media (max-width: 992px) {
    .header-menu {
        background-color: aliceblue;
        color: rgba(255, 255, 255, 0.6);
    }

    .menu {
        width: 100%;
    }

    .menu ul {
        margin: auto;
        font-size: 15px;
        font-weight: 500;
        list-style: none;
        padding-left: 0;
    }
    .menu li {
        position: relative;
    }
    .menu li .menu-title {
        color: rgba(23, 23, 23, 0.6);
        text-decoration: none;
        display: flex;
        justify-content: space-between;
        padding: 15px;
    }

    .menu li a:hover {
        color: rgb(0, 136, 255);
    }
    div[id$="-menu"] {
        display: none;
        z-index: 100;
    }
    .menu li.open div[id$="-menu"] {
        display: block;
    }
    div[id$="-menu"] a {
        display: block;
        color: #565656;
        margin-left: 25px;
        font-size: 14px;
        font-weight: 400;
        padding: 5px 10px 10px 10px;
    }
    .page-title {
        top: 80px;
        padding: 24px 12px;
        margin: auto;
        position: relative;
    }
    .dashboard {
        top: 80px;
        margin-left: 12px;
        margin-right: 12px;
        position: relative;
        margin-bottom: 100px;
    }
    .footer-title {
        width: 100%;
        margin: auto;
        padding: 12px;
    }
}

@media (min-width: 1200px) {
    .header-logo {
        width: 85%;
        margin: auto;
    }
    .menu {
        width: 85%;
        margin: auto;
    }
    .page-title {
        width: 85%;
        padding: 24px 12px;
        margin: auto;
    }
    .dashboard {
        width: 85%;
        margin-left: auto;
        margin-right: auto;
        background-color: #f8f8fb;
    }
    .footer-title {
        width: 85%;
        margin: auto;
        padding: 0;
    }
}
.avatar-xs {
    height: 2rem;
    width: 2rem;
}

.avatar-sm {
    height: 3rem;
    width: 3rem;
}

.avatar-md {
    height: 4.5rem;
    width: 4.5rem;
}

.avatar-lg {
    height: 6rem;
    width: 6rem;
}

.avatar-xl {
    height: 7.5rem;
    width: 7.5rem;
}
.avatar-title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #556ee6;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 500;
    height: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}
.avatar-group {
    padding-left: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.avatar-group .avatar-group-item {
    margin-left: -12px;
    border: 2px solid var(--bs-secondary-bg);
    border-radius: 50%;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.avatar-group .avatar-group-item:hover {
    position: relative;
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.font-size-10 {
    font-size: 10px !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-17 {
    font-size: 17px !important;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.font-size-24 {
    font-size: 24px !important;
}
.mini-stats-wid .mini-stat-icon {
    overflow: hidden;
    position: relative;
}

.mini-stats-wid .mini-stat-icon:after,
.mini-stats-wid .mini-stat-icon:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.1);
    left: 16px;
    -webkit-transform: rotate(32deg);
    transform: rotate(32deg);
    top: -5px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.mini-stats-wid .mini-stat-icon::after {
    left: -12px;
    width: 12px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.mini-stats-wid:hover .mini-stat-icon::after {
    left: 60px;
}
#service_today a {
    font-weight: 600;
    opacity: 0.8;
    text-decoration: none;
}
#service_today td:nth-child(1) {
    text-align: center;
}
.footer {
    width: 100%;
    height: 60px;
    color: var(--bs-footer-color, #333);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.dataTables_wrapper .dataTables_info {
    padding-top: 1em !important;
}
.dataTables_wrapper .dataTables_paginate {
    padding-top: 0.5em !important;
}

.dataTables_wrapper .dataTables_length select {
    border-radius: 6px !important;
    padding: 3px 10px 3px 10px !important;
    margin-left: 4px !important;
    margin-right: 4px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    padding: 0.3em 0.9em !important;
    background-color: #f0f0f0;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: inherit !important; /* Giữ nguyên màu nền mặc định */
}

.table.dataTable,
table.dataTable {
    border-collapse: collapse !important;
}

.table.dataTable.dtr-inline.collapsed > tbody > tr > td,
table.dataTable.dtr-inline.collapsed > tbody > tr > td {
    position: relative;
}

.table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control {
    padding-left: 30px;
}

.table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before {
    top: 50%;
    left: 5px;
    height: 14px;
    width: 14px;
    margin-top: -9px;
    display: block;
    position: absolute;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 14px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    text-align: center;
    text-indent: 0 !important;
    line-height: 14px;
    content: "+";
    background-color: #556ee6;
}

.table-rep-plugin .btn-toolbar {
    display: block;
}

.table-rep-plugin .table-responsive {
    border: none !important;
}

.table-rep-plugin .btn-group .btn-default {
    background-color: #74788d;
    color: #eff2f7;
    border: 1px solid #74788d;
}

.table-rep-plugin .btn-group .btn-default.btn-primary {
    background-color: #556ee6;
    border-color: #556ee6;
    color: #fff;
    -webkit-box-shadow: 0 0 0 2px rgba(85, 110, 230, 0.5);
    box-shadow: 0 0 0 2px rgba(85, 110, 230, 0.5);
}

.table-rep-plugin .btn-group.pull-right {
    float: right;
}

.table-rep-plugin .btn-group.pull-right .dropdown-menu {
    right: 0;
    -webkit-transform: none !important;
    transform: none !important;
    top: 100% !important;
}

.table-rep-plugin tbody th {
    font-size: 14px;
    font-weight: 400;
}

.table-rep-plugin .checkbox-row {
    padding-left: 40px;
    color: var(--bs-body-color) !important;
}

.table-rep-plugin .checkbox-row:hover {
    background-color: #f6f8fa !important;
}

.table-rep-plugin .checkbox-row label {
    display: inline-block;
    padding-left: 5px;
    position: relative;
}

.table-rep-plugin .checkbox-row label::before {
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    background-color: #fff;
    border-radius: 3px;
    border: 1px solid #f6f6f6;
    content: "";
    display: inline-block;
    height: 17px;
    left: 0;
    margin-left: -20px;
    position: absolute;
    transition: 0.3s ease-in-out;
    width: 17px;
    outline: 0 !important;
}

.table-rep-plugin .checkbox-row label::after {
    color: #eff2f7;
    display: inline-block;
    font-size: 11px;
    height: 16px;
    left: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    position: absolute;
    top: -1px;
    width: 16px;
}

.table-rep-plugin .checkbox-row input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: 0 !important;
}

.table-rep-plugin .checkbox-row input[type="checkbox"]:disabled + label {
    opacity: 0.65;
}

.table-rep-plugin .checkbox-row input[type="checkbox"]:focus + label::before {
    outline-offset: -2px;
    outline: 0;
}

.table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.table-rep-plugin
    .checkbox-row
    input[type="checkbox"]:disabled
    + label::before {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::before {
    background-color: #556ee6;
    border-color: #556ee6;
}

.table-rep-plugin .checkbox-row input[type="checkbox"]:checked + label::after {
    color: #fff;
}

.table-rep-plugin .fixed-solution .sticky-table-header {
    top: 70px !important;
    background-color: #556ee6;
}

.table-rep-plugin .fixed-solution .sticky-table-header table {
    color: #fff;
}

.table-rep-plugin .sticky-table-header,
.table-rep-plugin table.focus-on tbody tr.focused td,
.table-rep-plugin table.focus-on tbody tr.focused th {
    background: #556ee6;
    border-color: #556ee6;
    color: #fff;
}

.table-rep-plugin .sticky-table-header table,
.table-rep-plugin table.focus-on tbody tr.focused td table,
.table-rep-plugin table.focus-on tbody tr.focused th table {
    color: #fff;
}

.table-rep-plugin table.focus-on tbody tr.unfocused td,
.table-rep-plugin table.focus-on tbody tr.unfocused th,
.table-rep-plugin table.focus-on tfoot tr.unfocused td,
.table-rep-plugin table.focus-on tfoot tr.unfocused th {
    color: var(--bs-body-color);
}
#datatable th,
td:nth-child(1) {
    text-align: center;
}
.nav-pills > li > a,
.nav-tabs > li > a {
    color: var(--bs-emphasis-color);
    font-weight: 500;
}

.nav-pills > a {
    color: var(--bs-emphasis-color);
    font-weight: 500;
}

.nav-tabs-custom {
    border-bottom: 2px solid var(--bs-border-color);
}

.nav-tabs-custom .nav-item {
    position: relative;
    color: var(--bs-body-color);
}

.nav-tabs-custom .nav-item .nav-link {
    border: none;
}

.nav-tabs-custom .nav-item .nav-link::after {
    content: "";
    background: #556ee6;
    height: 2px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -1px;
    -webkit-transition: all 250ms ease 0s;
    transition: all 250ms ease 0s;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.nav-tabs-custom .nav-item .nav-link.active {
    color: #556ee6;
}

.nav-tabs-custom .nav-item .nav-link.active:after {
    -webkit-transform: scale(1);
    transform: scale(1);
}
.form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.form-check-input:disabled ~ .form-check-label {
    color: #6c757d;
}

.form-check-label {
    margin-bottom: 0;
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    padding-left: 0;
    padding-bottom: 1rem;
    margin-right: 1.5rem;
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: 0.3125rem;
    margin-left: 0;
}
.form-check {
    position: relative;
    text-align: left;
}

.form-check-right {
    padding-left: 0;
    display: inline-block;
    padding-right: 1.5em;
}

.form-check-right .form-check-input {
    float: right;
    margin-left: 0;
    margin-right: -1.5em;
}

.form-check-right .form-check-label {
    display: block;
}

.form-checkbox-outline .form-check-input {
    border-width: 2px;
    background-color: var(--bs-secondary-bg);
}

.form-checkbox-outline .form-check-input:active {
    -webkit-filter: none;
    filter: none;
}

.form-checkbox-outline .form-check-input:checked {
    background-color: var(--bs-secondary-bg) !important;
}

.form-checkbox-outline .form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.form-checkbox-outline .form-check-input:checked:after {
    position: absolute;
    content: "\f012c";
    font-family: "Material Design Icons";
    top: -4px !important;
    left: 1px;
    font-size: 16px;
    color: var(--bs-body-color);
}

.form-radio-outline .form-check-input {
    background-color: var(--bs-secondary-bg);
    position: relative;
}

.form-radio-outline .form-check-input:active {
    -webkit-filter: none;
    filter: none;
}

.form-radio-outline .form-check-input:checked {
    background-color: var(--bs-secondary-bg) !important;
}

.form-radio-outline .form-check-input:checked[type="checkbox"] {
    background-image: none;
}

.form-radio-outline .form-check-input:checked:after {
    position: absolute;
    content: "";
    top: 3px !important;
    left: 3px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.form-check-primary .form-check-input:checked {
    background-color: #556ee6;
    border-color: #556ee6;
}

.form-radio-primary .form-check-input:checked {
    border-color: #556ee6;
    background-color: #556ee6;
}

.form-radio-primary .form-check-input:checked:after {
    background-color: #556ee6;
}

.form-check-secondary .form-check-input:checked {
    background-color: #74788d;
    border-color: #74788d;
}

.form-radio-secondary .form-check-input:checked {
    border-color: #74788d;
    background-color: #74788d;
}

.form-radio-secondary .form-check-input:checked:after {
    background-color: #74788d;
}

.form-check-success .form-check-input:checked {
    background-color: #34c38f;
    border-color: #34c38f;
}

.form-radio-success .form-check-input:checked {
    border-color: #34c38f;
    background-color: #34c38f;
}

.form-radio-success .form-check-input:checked:after {
    background-color: #34c38f;
}

.form-check-info .form-check-input:checked {
    background-color: #50a5f1;
    border-color: #50a5f1;
}

.form-radio-info .form-check-input:checked {
    border-color: #50a5f1;
    background-color: #50a5f1;
}

.form-radio-info .form-check-input:checked:after {
    background-color: #50a5f1;
}

.form-check-warning .form-check-input:checked {
    background-color: #f1b44c;
    border-color: #f1b44c;
}

.form-radio-warning .form-check-input:checked {
    border-color: #f1b44c;
    background-color: #f1b44c;
}

.form-radio-warning .form-check-input:checked:after {
    background-color: #f1b44c;
}

.form-check-danger .form-check-input:checked {
    background-color: #f46a6a;
    border-color: #f46a6a;
}

.form-radio-danger .form-check-input:checked {
    border-color: #f46a6a;
    background-color: #f46a6a;
}

.form-radio-danger .form-check-input:checked:after {
    background-color: #f46a6a;
}

.form-check-pink .form-check-input:checked {
    background-color: #e83e8c;
    border-color: #e83e8c;
}

.form-radio-pink .form-check-input:checked {
    border-color: #e83e8c;
    background-color: #e83e8c;
}

.form-radio-pink .form-check-input:checked:after {
    background-color: #e83e8c;
}

.form-check-light .form-check-input:checked {
    background-color: #eff2f7;
    border-color: #eff2f7;
}

.form-radio-light .form-check-input:checked {
    border-color: #eff2f7;
    background-color: #eff2f7;
}

.form-radio-light .form-check-input:checked:after {
    background-color: #eff2f7;
}

.form-check-dark .form-check-input:checked {
    background-color: #343a40;
    border-color: #343a40;
}

.form-radio-dark .form-check-input:checked {
    border-color: #343a40;
    background-color: #343a40;
}

.form-radio-dark .form-check-input:checked:after {
    background-color: #343a40;
}

.form-check,
.form-check-input,
.form-check-label {
    cursor: pointer;
    margin-bottom: 0;
}
.reaction {
    position: absolute !important;
    right: 0.3em !important;
    bottom: -0.2rem !important;
}

.reaction:checked + img {
    border: 2px solid #556ee6;
    position: relative;
    top: -3px;
    transform: scale(1.2);
}
.prices {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
    grid-template-rows: auto;
}

.prices input[class="select-price"] {
    display: none;
}

.prices input[class="select-price"]:not(:disabled) ~ label {
    cursor: pointer;
    color: var(--bs-emphasis-color);
}

.prices input[class="select-price"]:disabled ~ label {
    color: #bcc2bf;
    border-color: #bcc2bf;
    box-shadow: none;
    cursor: not-allowed;
}

.prices label {
    height: 100%;
    display: block;
    background: #fff;
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 3px 10px -2px rgb(161 170 166/50%);
    position: relative;
    margin-bottom: 0;
}

.prices label h6,
h4 {
    margin-bottom: 0;
}

.prices label h4:nth-child(2) {
    margin-bottom: 10px;
}

.prices input[class="select-price"]:checked + label {
    background: #20df80;
    color: #fff;
    box-shadow: 0 0 20px hsla(150, 100%, 50%, 0.75);
}

.prices input[class="select-price"]:checked + label h6 {
    color: #fff !important;
}

.prices input[class="select-price"]:checked + label h4 {
    color: #fff !important;
}

.prices input[class="disable-price"] {
    display: none;
}

.prices input[class="disable-price"]:not(:disabled) ~ label {
    cursor: pointer;
}

.prices input[class="disable-price"]:disabled ~ label {
    color: #bcc2bf;
    border-color: #bcc2bf;
    box-shadow: none;
    cursor: not-allowed;
}

.prices input[class="disable-price"]:checked + label {
    background: gray;
    color: #fff;
    box-shadow: gray;
}

.prices input[class="disable-price"]:checked + label h6 {
    color: #fff !important;
}

.prices input[class="disable-price"]:checked + label h4 {
    color: #fff !important;
}
body,
.apex-charts *,
.daterangepicker * {
    font-family: montserrat, sans-serif !important;
}
.navbar-header .dropdown .show.header-item {
    background-color: var(--bs-tertiary-bg);
}
.thong-bao {
    animation: fadeOut 2.5s ease-out forwards; /* Tổng thời gian là 2.5 giây */
    opacity: 1;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 0.2; /* Giai đoạn mờ dần */
    }
    100% {
        opacity: 0;
        display: none;
    }
}
.right-bar {
    background-color: var(--bs-secondary-bg);
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
    display: block;
    position: fixed;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out;
    width: 280px;
    z-index: 9999;
    float: right !important;
    right: -290px;
    top: 0;
    bottom: 0
}

.right-bar .right-bar-toggle {
    background-color: var(--bs-dark);
    height: 24px;
    width: 24px;
    line-height: 24px;
    display: block;
    color: var(--bs-gray-200);
    text-align: center;
    border-radius: 50%
}

.right-bar .right-bar-toggle:hover {
    background-color: var(--bs-dark)
}

.rightbar-overlay {
    background-color: rgba(52, 58, 64, .55);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    z-index: 9998;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.right-bar-enabled .right-bar {
    right: 0
}

.right-bar-enabled .rightbar-overlay {
    display: block
}

@media (max-width:767.98px) {
    .right-bar {
        overflow: auto
    }

    .right-bar .slimscroll-menu {
        height: auto !important
    }
}