:root {
    --gray-9---body-text: #262626;
    --gray-7: #595959;
    --White: #fff;
    --CTA: #008ff5;
    --Booked: #ff8e31;
    --Waitlisted: #006768;
    --text-icon-primary-black: #1d2433;
    --gray-6---subtle-text: #8c8c8c;
}

.container-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
}

.container-room-diagram {
    width: 100%;
    max-width: 1662px;
    margin: 0 auto;
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.container-room-header-menu.nav-tabs {
    width: 100%;
    display: flex;
    gap: 4px;
}

.container-room-header-menu.nav-tabs > li > a.active,
.container-room-header-menu.nav-tabs > li > a,
.container-room-header-menu.nav-tabs > li > a:hover {
    display: flex;
    padding: 6px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px 4px 0px 0px;
    border-bottom: 1px solid var(--CTA);
    background: rgba(0, 143, 245, 0.1);
    color: var(--CTA);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    /* 150% */
}

.container-room-header-menu.nav-tabs > li > a {
    color: var(--gray-6---subtle-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    background-color: transparent;
    border-bottom: 1px solid transparent;
}

.room-diagram-inner {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.room-container-status {
    display: flex;
    align-items: center;
    gap: 16px;
}

.room-status-title {
    display: flex;
    align-items: center;
    gap: 4px;
}

.room-status-title span {
    flex: 1;
    color: #000;
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    /* 150% */
}

.room-container-status .line {
    width: 1px;
    height: 36px;
    background: #dbdfe7;
}

.room-status-items {
    display: flex;
    align-items: center;
    gap: 16px;
}

.room-status-item {
    display: flex;
    height: 36px;
    padding: 8px 12px;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid var(--gray-7);
    background: var(--White);
}

.room-status-item span {
    color: var(--gray-7);
    text-align: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    /* 142.857% */
}

.room-status-item > div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #00b15f;
}

.room-status-item.available-room {
    border-color: #00b15f;
}

.room-status-item.available-room span {
    color: #00b15f;
}

.room-status-item.reservationed-room > div {
    background-color: var(--Booked);
}

.room-status-item.reservationed-room {
    border-color: var(--Booked);
}

.room-status-item.reservationed-room span {
    color: var(--Booked);
}

.room-status-item.holding-seat-room > div {
    background-color: var(--Waitlisted);
}

.room-status-item.holding-seat-room {
    border-color: var(--Waitlisted);
}

.room-status-item.holding-seat-room span {
    color: var(--Waitlisted);
}

.room-status-item.order-accept-room {
    border-color: #00b15f;
}

.room-status-item.order-accept-room span {
    color: #00b15f;
}

.room-diagram-list-room {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-room-header {
    width: 100%;
    display: flex;
    height: 24px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.list-room-header span {
    color: var(--text-icon-primary-black);

    /* Subtitle 2 */
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    /* 150% */
}

.list-room-header .line {
    flex: 1;
    height: 1px;
    background: #d8d8d8;
}

.list-room {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.list-room-item {
    display: flex;
    padding: 8px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    width: calc(20% - 16px);
    border-radius: 12px;
    background: #00b15f;
}

.available-room-icon {
    display: none;
}

.holding-seat-room-desc {
    display: none;
}

.list-room-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.list-room-code {
    color: var(--White);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.holding-seat-room-desc {
    align-items: center;
    gap: 4px;
}

.holding-seat-room-desc span {
    flex: 1;
    color: var(--Booked);
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.list-room-item-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.list-room-name {
    color: var(--White);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.list-room-price {
    color: var(--White);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.available-room .available-room-icon {
    display: flex;
}

.list-room-item.holding-seat-room {
    background: var(--Waitlisted);
}

.holding-seat-room .holding-seat-room-desc {
    display: flex;
}

.list-room-item.reservationed-room {
    background: var(--Booked);
}

.form-select {
    height: 36px;
    background-image: url("../img/admin/icon/select-icon.svg") !important;
    background-size: 16px 16px;
    outline: none;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.search-room-form {
    display: flex;
    padding: 12px;
    align-items: flex-end;
    gap: 8px;
}

.search-room-form-item {
    display: flex;
    width: 350px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.search-room-form-item label {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.reservation-situation-form {
    padding: 12px;
    border-radius: 4px;
    background: #f2f4f7;
    width: 100%;
}

.input-group {
    height: 36px;
    display: flex;
    padding: 8px 9px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px solid var(--gray-4---stroke, #d9d9d9);
    background: var(--White, #fff);
    flex-wrap: nowrap;
}

.input-group:hover,
.input-group:focus-within {
    border-color: var(--CTA);
    box-shadow: 0px 0px 2px 2px rgba(0, 133, 255, 0.8);
}

.input-disabled,
.input-disabled:hover,
.input-disabled:focus-within {
    border: 1px solid var(--gray-4---stroke, #d9d9d9);
    background: var(--gray-2, #eef0f4);
    color: var(--gray-6---subtle-text, #8c8c8c);
    box-shadow: none;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    background-color: transparent;
    height: 100%;
    color: var(--gray-9---body-text);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.input-group input:placeholder {
    color: var(--gray-6---subtle-text, #8c8c8c);
}

.btn-filter-form {
    height: 36px;
    display: flex;
    width: 128px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: var(--CTA);
    color: var(--White);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    cursor: pointer;
    border: unset;
}

.datepicker-dropdown {
    width: 250px;
}

.datepicker-dropdown .table-condensed {
    width: 100%;
}

.datepicker-dropdown .table-condensed thead > tr > th {
    text-align: center;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    padding-bottom: 4px;
}

.datepicker-dropdown .table-condensed tbody > tr > td {
    text-align: center;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    padding: 4px;
}

.datepicker-dropdown .table-condensed tbody > tr > td:hover,
.datepicker-dropdown .table-condensed tbody > tr > td.active.day {
    background-color: var(--CTA);
    color: var(--White);
    cursor: pointer;
}

.datepicker-dropdown .table-condensed tbody > tr > td.old.day,
.datepicker-dropdown .table-condensed tbody > tr > td.new.day {
    color: var(--gray-4---stroke, #d9d9d9);
}

.input-reservation-situation {
    display: flex;
    flex: 1;
    gap: 16px;
}

.reservation-situation-form .search-room-form-item {
    width: 532px;
}

#dateFrom,
#dateTo {
    flex: 1;
}

.reservation-situation-header {
    display: flex;
    height: 62px;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #dbdfe7;
    background: var(--White);
    width: 100%;
}

.reservation-situation-inner {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.reservation-situation-items {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.reservation-situation-item {
    display: flex;
    align-items: center;
    background: #fff;
    border-bottom: 1px dashed #dbdfe7;
}

.reservation-situation-item:last-child {
    border: none;
}

.reservation-situation-item-date {
    display: flex;
    flex-direction: column;
    width: 188px;
    padding: 16px;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
}

.reservation-situation-item-date span {
    color: var(--text-icon-primary-black);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.reservation-situation-item-btn {
    display: flex;
    width: 188px;
    height: 100%;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.form-check.form-switch .form-check-input-2,
.form-check.form-switch .form-check-input {
    height: 20px;
    width: 32px;
}

.form-check.form-switch label {
    color: var(--text-icon-primary-black);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.form-check.form-switch.active .form-check-input-2:checked,
.form-check.form-switch.active .form-check-input:checked {
    background-color: #00b15f;
    border-color: #00b15f;
}

.form-check.form-switch.block .form-check-input-2:checked,
.form-check.form-switch.block .form-check-input:checked {
    background-color: #da0707;
    border-color: #da0707;
}

.reservation-situation-item-info {
    flex: 1;
    height: 100%;
    display: flex;
    padding: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    border-left: 1px solid #dbdfe7;
    border-right: 1px solid #dbdfe7;
}

.reservation-situation-item-flex:first-child {
    border-bottom: 1px dashed #D9D9D9;
}

.reservation-situation-item-flex {
    display: flex;
    align-items: center;
}

.reservation-situation-item-info > span {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.reservation-situation-status {
    display: flex;
    align-items: center;
    width: 100%;
}

.reservation-situation-status-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 7%;
}

.reservation-situation-status-item > div {
    display: flex;
    height: 12px;
    padding: 8px 16px;
    width: 100%;
    background: #00b15f;
}

.reservation-situation-status-item > span {
    color: #00b15f;
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.reservation-situation-status-item.reservationed-room > div {
    background: var(--Booked);
    color: var(--Booked);
}

.reservation-situation-status-item.reservationed-room > span {
    color: var(--Booked);
}

.reservation-situation-status-item.holding-seat-room > div {
    background: var(--Waitlisted);
}

.reservation-situation-status-item.holding-seat-room > span {
    color: var(--Waitlisted);
}

.reservation-situation-item-info.block {
    opacity: 0.2;
}

.reservation-situation-item:nth-child(even) {
    background: #f0f7ff;
}

.container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.container-header-right-item {
    display: flex;
    padding: 8px 12px;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--CTA);
    background: var(--White);
    cursor: pointer;
}

.container-header-right-item.btn-export {
    color: var(--CTA);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.container-header-right-item.btn-add-order,
.btn-add-discount-level {
    border-radius: 4px;
    background: var(--CTA);
    color: var(--White);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    width: max-content;
}

.form-filter-booking-list {
    flex-wrap: wrap;
}

.form-filter-booking-list .search-room-form-item {
    width: 19%;
}

.statistical-booking {
    width: 780px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.statistical-booking-item {
    display: flex;
    flex: 1;
    padding: 12px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    border: 1px solid var(--gray-4---stroke, #d9d9d9);
    background: var(--White, #fff);
}

.statistical-booking-item-title {
    color: var(--gray-6---subtle-text);
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.statistical-booking-item-value {
    color: var(--CTA);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 26px;
}

.table-booking-container {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.table-booking-container .table {
    margin: 0;
}

.table-booking-container .table thead tr th {
    padding: 12px;
    border-right: 0.5px solid var(--gray-4---stroke, #d9d9d9);
    border-bottom: 0.5px solid var(--gray-4---stroke, #d9d9d9);
    background: #dce7fa;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.table-booking-container .table thead tr th.stt {
    width: 56px;
    text-align: center;
}

.table-booking-container .table thead tr th.order-code {
    width: 117px;
    text-align: center;
}

.table-booking-container .table thead tr th.date-create {
    width: 140px;
    text-align: center;
}

.table-booking-container .table thead tr th.client {
    width: 190px;
}

.table-booking-container .table thead tr th.order {
    width: 350px;
}

.table-booking-container .table thead tr th.client-2 {
    width: 180px;
    text-align: center;
}

.table-order-detail-container .table thead tr th.service {
    width: 348px;
}

.table-order-detail-container .table thead tr th.total-price {
    width: 220px !important;
    text-align: end !important;
}

.table-order-detail-container .table thead tr th.client {
    width: 220px;
}

.table-order-detail-container .table thead tr th.price {
    width: 220px;
}

.table-order-detail-container .table thead tr th.count {
    width: 95px;
    text-align: center;
}

.table-booking-container .table thead tr th.total-price,
.table-booking-container .table thead tr th.collected,
.table-booking-container .table thead tr th.missing {
    width: 135px;
    text-align: center;
}

.table-booking-container .table thead tr th.status {
    width: 188px;
    text-align: center;
}

.table-booking-container .table tbody tr td {
    padding: 12px;
    height: 70px;
    border-right: 0.5px solid var(--gray-4---stroke, #d9d9d9);
    border-bottom: 0.5px solid var(--gray-4---stroke, #d9d9d9);
}

.table-booking-container .table tbody tr:nth-child(even) td {
    background: #f2f4f7 !important;
}

.table-search-room .table thead tr th.stt {
    width: 93px;
    text-align: center;
}

.table-search-room .table thead tr th.room-class {
    width: 189px;
}

.table-search-room .table thead tr th.name-ship {
    width: 216px;
}

.table-search-room .table thead tr th.price,
.table-search-room .table thead tr th.still-empty,
.table-room-class .table thead tr th.sell-room,
.table-room-class .table thead tr th.still-empty,
.table-room-class .table thead tr th.number-client,
.table-search-room .table thead tr th.count-room {
    width: 216px;
    text-align: center;
}

.table-room-class .table thead tr th.number-client {
    text-align: start;
}

.table-room-class .table thead tr th.price,
.table-room-class .table thead tr th.sell-room,
.table-agents-list-container .table thead tr th.agents-code,
.table-agents-list-container .table thead tr th.joining-date,
.table-agents-list-container .table thead tr th.agents-phone,
.table-agents-list-container .table thead tr th.agents-email,
.table-agents-list-container .table thead tr th.agents-status,
.table-agents-list-container .table thead tr th.sale-agents,
.table-agents-list-container .table thead tr th.agents-task,
.table-room-class .table thead tr th.still-empty {
    text-align: center;
}

.table-search-room .table tbody tr {
    height: 85px;
}

/* .table-agents-list-container .table thead tr th.agents-name,
.table-agents-list-container .table thead tr th.agents-phone,
.table-agents-list-container .table thead tr th.agents-email,
.table-agents-list-container .table thead tr th.agents-status, */
.table-agents-list-container .table thead tr th.sale-agents,
    /* .table-agents-list-container .table thead tr th.agents-task, */
.table-agents-list-container .table thead tr th.joining-date {
    width: 210px;
}

.table-agents-list-container .table thead tr th.agents-code {
    width: 180px;
}

.table-agents-list-container .table tbody tr td {
    height: 66px;
}

.table-agents-list-container .table thead tr th.agents-task {
    width: 160px;
}

.stt-value,
.order-agents-value,
.name-agents-value,
.joining-date-value,
.phone-agents-value,
.email-agents-value,
.status-agents-value,
.agents-task-content,
.order-code-value {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-9---body-text);
    text-align: center;
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.name-agents-value {
    justify-content: flex-start;
}

.order-code-value {
    color: var(--CTA);
}

.date-create-content,
.client-content,
.order-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.date-create-value {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.date-create-time {
    color: var(--gray-7, #595959);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.client-name {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.client-phone {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--CTA, #008ff5);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.client-tag {
    display: flex;
    padding: 4px 6px;
    justify-content: center;
    align-items: center;
    gap: 2px;
    border-radius: 4px;
    background: rgba(0, 177, 95, 0.1);
    color: var(--Available, #00b15f);
    font-family: var(--font-primary-medium);
    font-size: 12px;
    font-style: normal;
    line-height: 12px;
}

.client-tag-retail-customers {
    background: rgba(255, 142, 49, 0.1);
    color: #ff8e31;
}

.order-info-title {
    color: var(--CTA, #008ff5);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    /* 142.857% */
}

.order-info-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
}

.order-info-item {
    display: flex;
    gap: 2px;
}

.order-info-item-title,
.order-info-item-value,
.order-info-content > span {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.order-info-item-value {
    color: var(--Red, #da0707);
}

.order-info-content > span {
    color: var(--Available, #00b15f);
}

.order-info-content .line {
    width: 1px;
    height: 16px;
    background: var(--gray-4---stroke, #d9d9d9);
}

.btn-see-more {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    cursor: pointer;
    color: var(--CTA, #008ff5);
    text-align: center;
    font-family: var(--font-primary-medium);
    font-size: 12px;
    font-style: normal;
    line-height: 18px;
}

.client-2-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px 5px;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.client-2-item {
    width: max-content;
    display: flex;
    gap: 2px;
}

.client-2-item-title,
.client-2-item-value {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.client-2-item-value {
    color: var(--CTA, #008ff5);
}

.client-2-items .line {
    width: 1px;
    height: 16px;
    background: var(--gray-4---stroke, #d9d9d9);
}

.total-price-content,
.collected-price-content,
.missing-price-content,
.status-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.total-price-content,
.collected-price-content,
.missing-price-content {
    color: var(--Available, #00b15f);
    text-align: center;
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.collected-price-content {
    color: var(--gray-9---body-text, #262626);
}

.missing-price-content {
    color: var(--Red, #da0707);
}

.status-content {
    padding: 4px 0px;
    gap: 8px;
}

.status-content > div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00b15f;
}

.status-content > span {
    color: #00b15f;
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.status-content.cancel-status > div {
    background-color: #da0707;
}

.status-content.cancel-status > span {
    color: #da0707;
}

.status-content.not-yet-paid-status > div {
    background-color: #ff8e31;
}

.status-content.not-yet-paid-status > span {
    color: #ff8e31;
}

.table-booking-footer .form-select {
    width: 104px;
    padding-right: 24px;
    font-family: var(--font-primary-semiBold);
}

.btn-go-to-page {
    display: flex;
    padding: 6px 12px;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--CTA);
    background: var(--White);
    color: var(--CTA);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    cursor: pointer;
    margin: 0 8px;
    width: max-content;
}

.table-booking-footer-pagination {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.table-booking-footer-pagination-item {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    background: var(--gray-3, #f0f0f0);
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    transition: all 0.3s ease;
}

.table-booking-footer-pagination-item:hover,
.table-booking-footer-pagination-item.active {
    background: var(--CTA);
    color: var(--White);
}

.table-booking-footer {
    display: flex;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    background: var(--White, #fff);
}

.table-booking-footer > div {
    display: flex;
    align-items: center;
}

.table-booking-footer-count {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.order-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.order-detail-header-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.order-detail-header-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-detail-header-title span {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.order-detail-header-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.order-detail-header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
}

.order-detail-header-status span {
    white-space: nowrap;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.btn-edit-order,
.btn-add-order,
.btn-add-discount-level,
.btn-cancel-add-order,
.btn-cancel-add-discount-level,
.btn-cancel-order {
    display: flex;
    width: 132px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: var(--CTA);
    cursor: pointer;
    color: var(--White);
    text-align: center;
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    /* 150% */
}

.btn-cancel-add-order,
.btn-cancel-add-discount-level {
    background: var(--White);
    border: 1px solid var(--CTA);
    color: var(--CTA);
}

.btn-cancel-order {
    background: var(--Red, #da0707);
}

.order-detail-inner {
    width: 100%;
}

.order-detail-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    border-radius: 4px;
    border-bottom: 2px solid var(--Available, #00b15f);
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.order-detail-info-content {
    padding: 16px 24px 0px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-detail-info-title {
    color: var(--Blue-Dolphin-blue-500, #135581);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.order-detail-info-items {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.order-detail-info-items .line {
    width: 100%;
    height: 1px;
    opacity: 0.5;
    background: #d9d9d9;
}

.order-detail-info-item,
.discount-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-detail-info-item-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.order-detail-info-item-value {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.discount-content {
    flex-direction: column;
    width: 100%;
    cursor: pointer;
}

.discount-header .order-detail-info-item-title {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.discount-list {
    display: flex;
    /*padding-left: 16px;*/
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding-top: 0;
    transition: all 0.3s ease;
}

.discount-list.show {
    opacity: 1;
    visibility: visible;
    max-height: 1000px;
    padding-top: 8px;
}

.discount-item {
    display: flex;
    height: 24px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.discount-item-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.discount-item-value {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
}

.order-detail-info-footer {
    display: flex;
    width: 100%;
    padding: 16px 24px;
    justify-content: space-between;
    align-items: center;
    background: var(--White);
    box-shadow: 0px -2px 4px 0px rgba(6, 21, 86, 0.05);
}

.order-detail-info-footer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.order-detail-info-footer-text-title {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.order-detail-info-footer-text-desc {
    color: var(--gray-7, #595959);
    font-family: var(--font-primary-regular);
    font-size: 12px;
    font-style: italic;
    line-height: 20px;
}

.order-detail-info-footer-value {
    color: var(--Red, #da0707);
    font-family: var(--font-primary-semiBold);
    font-size: 24px;
    font-style: normal;
    line-height: 32px;
}

.order-detail-address {
    display: flex;
    padding: 16px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 4px;
    background: var(--White);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 24px;
}

.order-detail-address .order-detail-info-title {
    width: 100%;
}

.order-detail-address-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.order-detail-address-item-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

.order-detail-address-item-title span {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.order-detail-address-item-value {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 22px;
}

.order-detail-address-content .line {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
}

.client-info {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 4px;
    background: var(--White);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.client-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.btn-update-client-info {
    display: flex;
    height: 32px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: rgba(0, 143, 245, 0.1);
    cursor: pointer;
}

.btn-update-client-info span {
    flex: 1;
    color: #008ff5;
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.client-info .line {
    width: 100%;
    height: 1px;
    background-color: #d9d9d9;
}

.client-info-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 80%;
}

.client-info-content-name-phone {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.client-info-revenue {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

.client-info-revenue-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.client-info-revenue-item-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.client-info-revenue-item-value {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.order-detail-inner-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    width: 100%;
    padding: 0 16px 0 0;
}

.payment-inner-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.payment-inner-content {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
}

.payment-inner-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
}

.payment-inner-item-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.payment-inner-item-value {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.green-text {
    color: #00b15f;
}

.blue-text {
    color: var(--CTA, #008ff5);
}

.red-text {
    color: #da0707;
}

.table-footer {
    height: 56px;
    padding: 12px 16px;
    background: var(--White);
}

.table-footer-order-detail-title {
    color: var(--Text-2, #212529);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    width: 330px;
}

.table-footer-order-detail {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    display: flex;
    padding: 16px 24px;
    align-items: flex-start;
    gap: 16px;
}

.table-footer-order-detail-value {
    color: var(--Red, #f84c4c);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.service-content-title {
    margin: 0;
    padding: 0;
    color: var(--CTA);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.service-content-date {
    margin: 0;
    padding: 0;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    /* 142.857% */
}

.service-bundled-room {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.service-bundled-room-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-bundled-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.btn-show-more-service-bundled {
    color: var(--CTA);
    text-align: center;
    font-family: var(--font-primary-medium);
    font-size: 12px;
    font-style: normal;
    line-height: 18px;
    cursor: pointer;
}

.list-service-bundled {
    margin-top: 16px;
    opacity: 0;
    max-height: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.list-service-bundled.show {
    opacity: 1;
    max-height: 1000px;
    visibility: visible;
}

.list-service-bundled,
.item-service-bundled {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
}

.item-service-bundled {
    gap: 8px;
}

.item-service-bundled-header {
    width: 100%;
    padding: 4px 8px;
    background: var(--gray-2, #f5f5f5);
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    /* 157.143% */
}

.item-service-bundled-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.item-service-bundled-content-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-service-bundled-content-item-title {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    /* 157.143% */
}

.service-bundled-total-price {
    display: flex;
    height: 24px;
    padding: 0px 8px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.service-bundled-total-price-title {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.service-bundled-total-price-value {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.table-order-detail-container .table tbody tr td {
    background: transparent !important;
    border: none;
}

.table-order-detail-container .table tbody tr td.service-content-td {
    border-left: 1px solid var(--gray-4---stroke, #d9d9d9) !important;
    border-right: 1px solid var(--gray-4---stroke, #d9d9d9) !important;
}

.customer-type {
    color: var(--Text-2, #212529);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.price-hhd {
    color: var(--CTA, #008ff5);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    margin-top: 4px;
}

.count-cotnent {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.order-detail-inner-right {
    width: min(95%, 420px);
    padding: 0;
}

.custom-radio-group {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    gap: 40px;
    font-size: 16px;
}

.custom-radio-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-radio-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-radio-item label {
    display: inline-block;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
    color: #333;
}

.custom-radio-item label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.custom-radio-item label::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
}

.custom-radio-item input[type="radio"]:checked + label::before {
    border-color: #008ff5;
}

.custom-radio-item input[type="radio"]:checked + label::after {
    background-color: #008ff5;
}

.custom-radio-item input[type="radio"]:checked + label {
    color: #000;
    font-weight: normal;
}

.input-discount {
    display: flex;
    padding: 8px 9px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    border: 1px dashed var(--gray-4---stroke, #d9d9d9);
    background: var(--White, #fff);
    height: auto;
}

.input-discount input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.input-discount span {
    color: var(--gray-6---subtle-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.input-discount input::placeholder {
    color: var(--gray-6---subtle-text);
}

.input-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-form-group label {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px; /* 142.857% */
}

.add-new-order-content {
    width: 100%;
}

.order-info-new-content {
    flex-wrap: wrap;
    gap: 20px 16px;
    width: 100%;
}

.order-info-new-content .input-form-group {
    width: calc(50% - 10px);
    flex: unset;
}

.select-room-category {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.select-room-category-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.select-room-category-title {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.room-class-content,
.price-room-value,
.name-ship-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
}

.price-room-value {
    color: var(--Available, #00b15f);
    justify-content: center;
}

.still-empty-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    gap: 5px;
}

.still-empty-content span {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px; /* 142.857% */
}

.still-empty-content span.still-empty-value {
    font-size: 16px;
    color: var(--CTA, #008ff5);
    font-family: var(--font-primary-medium);
}

.select-count-room {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.select-count-room input {
    width: 72px;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.btn-select-count-room-minus,
.btn-select-count-room-plus {
    cursor: pointer;
}

.shuttle-note-content {
    padding: 8px 16px;
    background: #f2f4f7;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    width: 100%;
}

.shuttle-note-content a {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-medium);
    text-decoration: underline !important;
}

.custom-checkbox-group {
    font-family: sans-serif;
    font-size: 16px;
}

.custom-checkbox-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.custom-checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.custom-checkbox-item label {
    display: inline-block;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    color: #333;
    line-height: 20px;
}

.custom-checkbox-item label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 4px;
    background-color: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

.custom-checkbox-item label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.custom-checkbox-item input[type="checkbox"]:checked + label::before {
    border-color: #008ff5;
    background-color: #008ff5;
}

.custom-checkbox-item input[type="checkbox"]:checked + label::after {
    opacity: 1;
}

.custom-checkbox-item input[type="checkbox"]:checked + label {
    color: #000;
    font-weight: normal;
}

.service-list-content,
.service-list-content-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-list-content {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-list-content.show {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.service-list-content-item-header {
    display: flex;
    padding: 4px 8px;
    align-items: center;
    gap: 16px;
    background: rgba(217, 217, 217, 0.5);
    color: var(--Title, #483022);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.form-add-service {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.service-list-content-item .input-form-group .select-count-room {
    justify-content: flex-start;
}

.btn-add-service {
    display: flex;
    height: 32px;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 4px;
    background: rgba(0, 143, 245, 0.1);
    width: max-content;
    cursor: pointer;
}

.btn-add-service span {
    flex: 1;
    color: #008ff5;
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.number-client-value {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    height: 100%;
}

.btn-order-room {
    display: flex;
    align-items: center;
    justify-content: center;
    display: flex;
    padding: 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: var(--Available, #00b15f);
    cursor: pointer;
    color: var(--White);
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    width: max-content;
    margin: 8px auto 0 auto;
}

.btn-add-agent,
.btn-edit-profile-agent {
    display: flex;
    padding: 6px 12px;
    justify-content: flex-end;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    background: var(--VNTIX-primary, #007fda);
    color: var(--White);
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    cursor: pointer;
    width: max-content;
}

.status-agents-value {
    gap: 4px;
}

.status-agents-value div {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00b15f;
}

.status-agents-value span {
    color: #00b15f;
    font-family: var(--font-primary-semiBold);
    font-size: 14px;
    font-style: normal;
    line-height: 20px; /* 142.857% */
}

.status-agents-value.new-registered div {
    background-color: var(--CTA);
}

.status-agents-value.new-registered span {
    color: var(--CTA);
}

.btn-agents-task {
    cursor: pointer;
}

.page-admin .custom-select-wrapper {
    position: relative;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
    height: 32px;
}

.page-admin .custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 2px 34px 4px 8px;
    border: none;
    background-color: transparent;
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 20px;
    cursor: pointer;
    outline: none;
    height: 32px;
}

.page-admin .custom-select-wrapper::after {
    content: "";
    /*background-image: url("../img/icon/Down.svg");*/
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 4px;
    width: 32px;
    height: 32px;
    background-color: #f0f0f0;
    color: #555;
    pointer-events: none;
    border-left: 1px solid #ccc;
}

.page-admin .custom-select-wrapper:hover {
    border-color: #999;
}

.agent-profile-content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.agent-profile-info {
    display: flex;
    width: 374px;
    padding: 16px 0 0 0;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
}

.agent-profile-info-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.agent-profile-avatar {
    width: 170px;
    height: 170px;
    border-radius: 50%;
}

.agent-profile-info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.agent-profile-name {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px;
}

.agent-profile-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.agent-profile-item span {
    color: var(--gray-7);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px; /* 150% */
}

.agent-profile-status-item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.agent-profile-status-item span {
    flex: 1;
    color: #3ca74d;
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.agent-profile-date {
    color: var(--gray-9---body-text, #262626);
}

.agent-profile-info-footer {
    display: flex;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff8f8;
    width: 100%;
}

.agent-profile-info-footer .line {
    width: 100%;
    height: 1px;
    background-color: #ededed;
}

.agent-profile-info-position {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.agent-profile-info-position span {
    color: #595959;
    font-family: var(--font-primary-regular);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.agent-profile-info-position-text {
    color: var(--gray-9---body-text, #262626) !important;
    font-family: var(--font-primary-medium) !important;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
}

.btn-change-pass {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-change-pass span {
    color: #ee3b3b;
    font-family: var(--font-primary-medium);
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    flex: 1;
    margin-top: 4px;
}

.form-edit-agent-profile {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.switch-checkbox {
    display: none;
}

.switch-label {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 20px;
    background-color: #ccc;
    border-radius: 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    vertical-align: middle;
}

.switch-label::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.switch-checkbox:checked + .switch-label {
    background-color: var(--CTA);
}

.switch-checkbox:checked + .switch-label::before {
    transform: translateX(12px);
}

.switch-text {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
}

.form-edit-agent-profile-item {
    width: 100%;
    display: flex;
    padding: 16px 24px 32px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    border-radius: 4px;
    background: var(--White);
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.08);
}

.form-edit-agent-profile-label {
    color: var(--Blue-Dolphin-blue-500, #135581);
    font-family: var(--font-primary-semiBold);
    font-size: 18px;
    font-style: normal;
    line-height: 26px; /* 144.444% */
}

.switch-container {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-del-agent {
    display: flex;
    width: 138px;
    height: 40px;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 4px;
    border: 1px solid var(--Red, #da0707);
    background: var(--Red, #da0707);
    color: var(--White);
    font-family: var(--font-primary-medium);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    cursor: pointer;
}

.form-edit-agent-form {
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.form-edit-agent-form .search-room-form-item {
    width: calc(49% - 8px);
}

.form-edit-agent-form .search-room-form-item .custom-radio-group {
    margin-top: 8px;
}

.upload-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 10px;
    width: 100%;
}

.upload-item {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
    overflow: hidden;
}

.upload-input {
    display: none;
}

.upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    outline: none;
    position: relative;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.upload-icon {
    color: #ccc;
    font-size: 40px;
    margin-bottom: 10px;
}
.upload-icon svg {
    width: 40px;
    height: 40px;
    color: #ccc;
}

.upload-title {
    font-size: 16px;
    color: #007bff;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.upload-subtitle {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.uploaded-image-preview {
    display: none;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.upload-label.has-image .upload-content {
    display: none;
}

.upload-label.has-image .uploaded-image-preview {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.upload-item:hover,
.upload-item:focus-within {
    border-color: #007bff;
}

.configure-discount-level-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.configure-discount-level-label {
    color: var(--gray-9---body-text);
    font-family: var(--font-primary-semiBold);
    font-size: 16px;
    font-style: normal;
    line-height: 16px;
    letter-spacing: -0.08px;
}

.configure-discount-level-form {
    max-width: 775px;
    width: 100%;
    display: flex;
    gap: 16px;
}

.btn-show-password {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.noti-password {
    display: flex;
    padding: 0 4px;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    border-radius: 4px;
    background: var(--Green-100, #edfdf5);
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.noti-password.show {
    max-height: 100px;
    opacity: 1;
    padding: 4px;
    visibility: visible;
}

.noti-password span {
    color: var(--gray-9---body-text, #262626);
    font-family: var(--font-primary-regular);
    font-size: 12px;
    font-style: normal;
    line-height: 16px;
    letter-spacing: -0.06px;
}

.container-inner {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

.sidebar-container {
    height: 100vh;
    width: 258px;
    padding: 16px 16px 20px 16px;
    background: #18263d;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    padding: 0px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    position: sticky;
    top: 0;
}

.sidebar-brand .brand-link {
    display: flex;
    height: 48px;
    padding: 0px 8px;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.sidebar-menu-inner{
    width: 100%;
}

.sidebar-menu-inner .nav.flex-column {
    gap: 8px;
}

.sidebar-menu-inner .nav.flex-column>.nav-item>.nav-link {
    display: flex;
    height: 48px;
    padding: 12px 8px 12px 12px;
    align-items: center;
    gap: 12px;
    border-radius: 4px;
    opacity: 0.75;
    color: var(--White, #fff);
    font-family: var(--font-primary-regular);
    font-size: 16px;
    font-style: normal;
    line-height: 24px;
    transition: all 0.3s ease;
}

.sidebar-menu-inner .nav.flex-column>.nav-item>.nav-link span{
    flex: 1;
}

.sidebar-menu-inner>.nav.flex-column>.nav-item.active>.nav-link,
.sidebar-menu-inner>.nav.flex-column>.nav-item:hover>.nav-link {
    background: var(--CTA, #008ff5);
    opacity: 1;
    color: var(--White, #fff);
}

.sidebar-menu-inner .sidebar-submenu .nav.flex-column>.nav-item:hover>.nav-link{
    opacity: 1;
    color: var(--White, #fff);
}

.sidebar-menu-inner .sidebar-submenu{
    margin-top: 8px;
}

.sidebar-menu-inner .sidebar-submenu .nav.flex-column>.nav-item>.nav-link {
    opacity: 0.4;
    padding: 10px 8px;
}

/*Alter*/
div#block-cassiopeiatheme-content {
    width: 100%;
}

.search-room-form-item .mb-3 {
    margin-bottom: 0 !important;
    width: 100%;
}

.form-type-managed-file .text-muted,
.password-suggestions,
.password-strength,
.password-confirm-message {
    display: none !important;
}

.search-room-form-item.password {
    width: 100%;
}

.search-room-form-item.password .form-type-password-confirm {
    display: flex;
    width: 100%;
    gap: 50px;
}

.confirm-parent, .password-parent {
    max-width: unset;
}
.user-pass .form-item-name label::before,
.user-register-form .form-item-name label::before,
.user-login-form .form-item-name label::before,
.user-pass .form-type-email label::before,
.user-register-form .form-type-email label::before,
.user-login-form .form-type-email label::before,
.user-pass .form-type-password label::before,
.user-register-form .form-type-password label::before,
.user-login-form .form-type-password label::before {
    background: unset;
    width: 0;
}

.form-check {
    padding-left: 0;
}

.input-group:hover, .input-group:focus-within,
.form-control:focus {
    box-shadow: unset;
}

.page-admin .booking-form .form-information-item > .input-tel,
.page-admin .fares-filter-form,
.page-admin .custom-trip-form-item-input {
    height: 38px;
}

.page-admin form .form-type-textarea {
    width: 100%;
}

.page-admin .booking-form-information-footer {
    justify-content: center;
}
