input:focus {
    outline: none;
}

/* Custom dropdown */
.dropdown .dropdown-toggle::after {
    content: "";
    border: none !important;
    display: inline-block;
    min-width: 12px;
    width: 12px;
    height: 12px;
    background-image: url(../images/arrow-down.png);
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0;
    vertical-align: 0;
}

.dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}
/* End custom dropdown */

/* Custom select-2 */
.select2-container .select2-selection--single {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    width: 16px;
    height: 16px;
    margin: 0;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-image: url(../images/arrow-down.png);
    background-position: center;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
    border: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #22ABBD;
}

.select2-search--dropdown {
    padding: 0;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: none;
    height: 40px;
    background-color: #F6F6F6;
    padding-left: 42px;
    background-repeat: no-repeat;
    background-image: url(../images/ic-search.png);
    background-position: center left 16px;
}
/* End custom select-2 */

/* Custom multiple select */
.ms-options-wrap > button {
    background: #F6F6F6;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
    height: 40px;
}

.ms-options-wrap > button:focus {
    border: 1px solid #0093A6;
}

.ms-options-wrap > .ms-options {
    background-color: #FFFFFF;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    border-color: transparent;
    padding-top: 16px;
}

.ms-options-wrap > .ms-options > .ms-search input {
    height: 40px;
    background-color: #F6F6F6;
    padding: 8px 8px 8px 42px;
    background-repeat: no-repeat;
    background-image: url(../images/ic-search.png);
    background-position: center left 16px;
    border-bottom: none;
}

.ms-options-wrap > .ms-options > ul label {
    display: flex;
    align-items: center;
}

.ms-options-wrap > .ms-options > ul label:hover {
    background-color: #22ABBD;
}

.ms-options-wrap > .ms-options > ul input[type="checkbox"] {
    position: absolute;
    left: unset;
    right: 16px;
    top: 12px;
    margin: 0;
}
/* End multiple select */

/* Custom select */
input[type="checkbox"] {
    height: 16px;
    width: 16px;
}

input[type="checkbox"]:before {
    content: "";
    width: 16px;
    height: 16px;
    position: relative;
    display: block;
    border: 1px solid #06C270;
    background: #06C270;
    border-radius: 3px;
}

input[type="checkbox"]:after {
    content: "";
    top: -16px;
    width: 16px;
    height: 16px;
    position: relative;
    display: block;
    left: 0px;
    border-width: 1px;
    border-style: solid;
    border-color: #06C270;
    background-color: #FFFFFF;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 3px;
}

input[type="checkbox"]:checked:after {
    background-image: url(../images/tick-white.png), linear-gradient(135deg, #06C270 0%, #06C270 100%);
}


/* End custom select */

ul, p {
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-control {
    background: #F6F6F6;
    border: 1px solid #BDBDBD;
    border-radius: 10px;
}

.form-control:focus {
    border: 1px solid #0093A6;
    box-shadow: none;
}

.p-container {
    display: flex;
    height: 100vh;
    background-color: #FFFFFF;
    overflow: auto;
}

/* Sidebar */
.s-container {
    min-width: 184px;
    width: 184px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction:column;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
}

.s-container .s-logo {
    margin: 24px 40px 32px;
}

.s-auth {
    display: flex;
    align-items: center;
    width: 164px;
    height: 48px;
    margin: 0 auto;
    background-color: #FFFFFF;
    border: 1px solid #EBEBF0;
    border-radius: 10px;
    padding: 8px;
    cursor: pointer;
}

.s-auth .s-ava {
    width: 32px;
    min-width: 32px;
    height: 32px;
}

.s-auth .s-ava img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}


.s-auth .s-user-icon {
    /*width: 32px;*/
    min-width: 32px;
    display: flex;
    /*height: 32px;*/
}

.s-auth .s-user-icon img {
    width: 20px;
    height: 100%;
    margin: 3px;
    /*border-radius: 50%;*/
}

.s-auth .s-user {
    flex-grow: 1;
    margin-left: 6px;
    overflow: hidden;
}

.s-auth .s-user p, .s-auth .s-user span {
    margin: 0;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
}

.s-auth .s-user .name {
    color: #333333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.s-auth .s-user .title {
    color: #22ABBD;
    background-color: rgba(27, 205, 216, 0.1);
    border-radius: 5px;
    padding: 0.5px 8px;
}

.s-menu {
    width: 160px;
    margin: 32px auto;
    list-style: none;
    padding: 0;
    overflow: auto;
    flex-grow:1;
}
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* / Track / */
::-webkit-scrollbar-track {
  background: #EEEEEE;

}

/* / Handle / */
::-webkit-scrollbar-thumb {
  background: #BDBDBD;

}

/* / Handle on hover / */
::-webkit-scrollbar-thumb:hover {
  background: #BBBBBB;
}
.s-menu .s-menu-item {
    width: 100%;
    height: 30px;
    border-radius: 5px;
    display: inline;
}

.s-menu .s-menu-item a {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #828282;
    text-decoration: none;
    padding: 8px 10px 8px 14px;
    display: flex;
}

.s-menu .s-menu-item a .menu-icon {
    width: 14px;
    height: 14px;
    margin-right: 10px;
}

/* .s-menu .s-menu-item a .menu-icon.hover {
    display: none;
}
 */
.s-menu .s-menu-item:hover {
    background-color: #1BCDD8;

}
.s-menu .sub-menu{
	margin: 10px;
}
.s-menu .s-menu-item .active-current{
	background: #1BCDD8;
}
.s-menu .s-menu-item .active-current span{
	color: white;
}
/* 
.s-menu .s-menu-item:hover a {
    color: #FFFFFF;
} */
/* 
.s-menu .s-menu-item:hover a .menu-icon {
    display: none;
} */

/* .s-menu .s-menu-item:hover a .menu-icon.hover {
    display: initial;
}
 */
/* End sidebar */

/* Page */
.btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
}
.btn-primary {
   /* height: 48px;*/
    width: 180px;
    background-color: #1BCDD8;
    border-color: #1BCDD8;
    border-radius: 10px;
}

.btn-primary:hover {
    color: #fff;
    background-color: #61d2d9;
    border-color: #61d2d9;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #61d2d9;
    border-color: #61d2d9;
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #61d2d9;
    border-color: #61d2d9;
    box-shadow: 0 0 0 0.2rem rgba(17, 206, 219, 0.5);
}

.btn-secondary {
    width: 180px;
/*     height: 48px;
 */    background-color: #FFFFFF !important;
    border: 1px solid #0093A6;
    border-radius: 10px;
    color: #0093A6 !important;
}

.page-content {
    flex-grow: 1;
    padding: 24px;
    margin-left: 184px;
}

.page-content-receptionist {
    flex-grow: 1;
    padding: 24px;
   /* margin-left: 184px;*/
}

.page-content-receptionist .filter-left{
	margin-bottom: 10px;
}

.page-content-receptionist .content {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 10px;
 	padding: 24px 32px;
   /* height: 722px; */
}

.tab-content .status-wrap {
    background-color: #FAFAFA;
    border-radius: 10px;
    height: 315px;
    padding: 18px 56px 25px;
}

.d-flex:not(:first-child) {
    margin-top: 16px;
}

.search-box {
    width: 240px;
    height: 40px;
    background-color: #F6F6F6;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
}

.search-box.date {
    width: 150px;
}

.search-box img {
    margin-right: 12px;
}

.search-box input {
    flex-grow: 1;
    height: 24px;
    border: none;
    background-color: #F6F6F6;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    width: 100%;
}

.search-box input::placeholder {
    color: #828282;
}

.btn-reset {
    padding: 1.5px 8px;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    color: #089AB8;
    background-color: rgba(27, 205, 216, 0.3);
    border-radius: 5px;
    cursor: pointer;
}

.btn-inline {
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
}

.btn-inline img {
    margin-right: 8px;
}

.btn-inline span {
    font-weight: 400;
    font-size: 12px;
    line-height: 24px;
}

.text-warning {
    color: #FF3B3B !important;
}

.checkbox {
    display: flex;
    align-items: center;
    margin: 0;
}
.checkbox:hover {
    cursor: pointer;
}
.checkbox span {
    width: 90%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-left: 5px;
}
.checkbox input {
    width: 0;
    height: 0;
    opacity: 0;
}

.checkbox input ~ .uncheck {
    display: inline-block;
}

.checkbox input ~ .checked {
    display: none;
}

.checkbox input:checked ~ .checked {
    display: inline-block;
}

.checkbox input:checked ~ .uncheck {
    display: none;
}


.checkbox input ~ .uncheck {
    display: inline-block;
}

.checkbox input ~ .checked {
    display: none;
}

.checkbox-status-uncheck {
	    display: inline-block;
}

.checkbox-status-checked {
	    display: none;
}
.btn-action {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    padding: 0;
}

.btn-action img {
    width: 20px;
    height: 20px;
}

.btn-action img.action-hover {
    display: none;
}

.btn-action:hover {
    background-color: #FFFFFF;
}

.btn-action:hover img.action {
    display: none;
}

.btn-action:hover img.action-hover {
    display: inline-block;
}

.table-container {
    margin-top: 8px;
    max-height: calc(100vh - 250px);
    display: block;
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    position: relative;
}

.custom-table th {
    font-weight: 700;
}

.custom-table td {
    font-weight: 400;
}

.custom-table th, .custom-table td {
    height: 54px;
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    padding: 0 32px;
}

.custom-table th {
    background-color: #DFFCFF;
    padding-top: 10px;
    padding-right: 10px;
}

.custom-table th:first-child {
    border-top-left-radius: 8px;
}

.custom-table th:last-child {
    border-top-right-radius: 8px;
}

.custom-table td.td-action {
    display: flex;
    align-items: center;
}

.custom-table td.td-action .btn-action:not(:first-child) {
    margin-left: 16px;
}

.custom-table tbody tr:hover td {
    background-color: #22ABBD !important;
    color: #fff !important;
}

.custom-table tbody tr:nth-child(even) {
    background-color: #F6F6F6;
}

.custom-table td {
    font-size: 14px;
    overflow: hidden;
    /* text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 300px; */
}

.paging {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.pagination {
    align-items: center;
}

.pagination span {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    color: #828282;
}

.pagination input {
    width: 46px;
    height: 24px;
    background-color: rgba(27, 205, 216, 0.1);
    border-radius: 10px;
    border: none;
    margin: 0 8px;
    text-align: center;
    font-weight: 400;
    font-size: 12px;
    color: #333333;
}

.p-nav {
    margin-left: 12px;
}

.p-nav .p-prev, .p-nav .p-next {
    width: 18px;
    height: 18px;
    border: none;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
}

.p-nav .p-prev {
    background-image: url(../images/arrow-left-18.png);
}

.p-nav .p-next {
    background-image: url(../images/arrow-left-18.png);
    transform: rotate(180deg);
}

.filter-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.form-body {
    width: 694px;
    margin: 48px auto 0 auto;
}
/* End page */


@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Black-Italic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Bold-Italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-ExtraBold-Italic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-ExtraLight-Italic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Light-Italic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Medium-Italic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-SemiBold-Italic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}


@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'PoppinsVN';
    src: url('/admin/fonts/poppins/SVN-Poppins-Thin-Italic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}
  


::-webkit-scrollbar {
width: 6px;
height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
background: linear-gradient(0deg, #DCE2EC, #DCE2EC), #DDDDDD;
border-radius: 100px;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: #A0A6B9;
border-radius: 100px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #8A8FA1;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'PoppinsVN', sans-serif;
    background: #F2F2F5;
}

body * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none;
}

.btn {
    border-radius: 10px;
    padding: 8px 24px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    /*border: none;*/
    transition: none;
    /*height: 48px;*/
    transition: all 0.3s linear;
}
.btn:hover {
    cursor: pointer;
}

.btn:hover:before {
    filter: brightness(200);
}

.btn[disabled] {
    pointer-events: none;
}

.btn[disabled]:before {
    filter: grayscale(10);
}

.btn-primary {
    background-color: #1BCDD8;
    color: #fff;
}

.btn-primary:hover {
    background-color: #1BCDD8;
}

.btn-primary[disabled] {
    background: #e0e1e0;
}

.btn-outline-primary {
    background-color: #FFFFFF;
    border: 1px solid #00A54F;
    color: #00A54F;
}

.btn-outline-primary[disabled] {
    color: #BDBDBD;
    border-color: #BDBDBD;;
}

.btn-outline-primary:hover {
    color: #FFFFFF;
    background-color: #00A54F;
}

.btn-outline-secondary {
    background-color: #ffffff;
    border: 1px solid #F48120;
    color: #F48120;
}

.btn-outline-secondary:hover {
    background-color: #F48120;
    color: #ffffff;
}

.btn-outline-secondary.logout {
    position: relative;
    padding-left: 54px;
}

.btn-outline-secondary.logout:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    width: 20px;
    height: 20px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-image: url(/admin/images/ic-logout.png);
}

.form-group-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.form-group-vertical input, .form-group-vertical textarea, .form-group-vertical .custom-field, .form-group-vertical .select2-container {
    width: 100% !important;
    margin-top: 4px;
}

.form-label {
    font-size: 14px;
    line-height: 24px;
    font-weight: 600;
    color: #333333;
}

.form-field {
    background-color: #f6f6f6;
    border-radius: 10px;
    height: 40px;
    width: 100%;
    border: 1px solid transparent;
    padding: 8px 24px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
}
.form-field::placeholder {
    color: #828282;
}
.form-field:focus {
    background-color: #fff;
    border: 1px solid #e0e1e0;
    color: #333;
}

.auth-container {
    width: 100%;
    height: 100vh;
    display: flex;
    background-color: white;
}

#login-notification{
	margin-top: 10px;
}

#login-notification .alert{
	color: red;
}
.auth-container .auth-bg {
    min-width: 620px;
    width: 620px;
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url(/admin/images/login-bg.png);
}
.auth-container .auth-bg a {
    position: absolute;
    top: 48px;
    left: 48px;
}
.auth-container .auth-form {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-container .auth-form form {
    width: 400px;
    text-align: center;
}
.auth-container .auth-form form > a img {
    width: 146px;
    height: 48px;
}
.auth-container .auth-form form > h2 {
    margin-top: 20px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #000000;
}
.auth-container .auth-form form .form-group-vertical:not(:first-of-type) {
    margin-top: 16px;
}
.auth-container .auth-form form .form-group-vertical:first-of-type {
    margin-top: 78px;
}
.auth-container .auth-form form .auth-option, .auth-container .auth-form form .auth-action {
    display: flex;
    justify-content: center;
    align-items: center;
}
.auth-container .auth-form form .auth-option {
    justify-content: space-between;
    margin-top: 8px;
}
.auth-container .auth-form form .auth-option .checkbox {
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    color: #2ec36e;
}
.auth-container .auth-form form .auth-option a {
    font-size: 12px;
    line-height: 14px;
    font-weight: 300;
    color: #2f80ed;
}
.auth-container .auth-form form .auth-action {
    margin-top: 30px;
}
.auth-container .auth-form form .auth-action .btn-primary {
    width: 180px;
}

.select2-container .select2-selection {
   /* height: 40px;*/
  	background-color: #F6F6F6;
    border-radius: 13px !important;
    border-color: transparent;
    padding: 0 16px;
}
.select2-container .select2-selection--multiple .select2-selection__rendered.ui-sortable{
	display: grid;
}


.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 40px;
    text-align: left;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none;
    display: inline-block;
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-image: url(/admin/images/arrow-down-black-24.png);
    transform: translate(-50%, -50%);
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    transform: translate(-50%, -50%) rotate(180deg);
}

.select2-container--open .select2-dropdown--below {
    border-top: none;
    border-radius: 10px !important;
    background: #FFFFFF;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 15%);
    border-color: transparent;
    padding: 16px 12px;
}

.select2-container--default .select2-results__option--selected {
    background-color: transparent;
    position: relative;
    
}

.select2-container--default .select2-results__option--selected:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    transform: translateY(-50%);
    background-image: url(/admin/images/ic-tick-green-16.png);
    background-repeat: no-repeat;
    background-position: right center;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #00A54F;
    border-radius: 5px;
    color: white;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:after {
    filter: brightness(100);
}

.header {
    background-color: #FFFFFF;
    box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
    height: 80px;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1;
}

.header .header-right {
    display: flex;
    align-items: center;
}
.header .header-right .user-info {
    margin-right: 80px;
}

.header .header-right .user-info p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    color: #828282;
}

.header .header-right .user-info p span {
    color: #333333;
    margin-left: 3px;
}

.page-content {
    padding: 0px 24px 24px;
    padding-left: 24px;
    overflow: hidden;
}

.page-header {
    position: sticky;
    top: 0;
    background-color: #FFFFFF;
    z-index: 1;
    padding-top: 20px;
}

.tab-header {
    display: flex;
}

.tab-header-reception {
    display: flex;
    padding-left: 24px;
}

.tab-header .tab-item {
    height: 54px;
    width: 193px;
    margin-right: 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #BDBDBD;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tab-header-reception .tab-item.active {
    background-color: #22ABBD;
    pointer-events: none;
}


.tab-header-reception .tab-item {
    height: 54px;
    width: 193px;
    margin-right: 8px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background-color: #BDBDBD;
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tab-header .tab-item.active {
    background-color: #22ABBD;
    pointer-events: none;
}

.tab-header-reception  .tab-item.active {
    background-color: #22ABBD;
    pointer-events: none;
}

.btn-button-receptionist{
	color: #22ABBD
}

.btn-button-receptionist:hover{
	 background-color: #22ABBD
}

.page-content .content {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 24px 32px;
    height: 722px;
}

/* .content .tab-content-wrap {
    min-width: 50%;
    width: 50%;
    margin-right: 38px;
}
 */
.content .tab-action {
    flex-grow: 1;
    background-color: rgba(250,250,250, 0.5);
    border: 1px solid #E0E0E0;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 56px;
}

.content .tab-action button {
    width: 100%;
    text-align: left;
    padding-left: 92px;
    position: relative;
}

.content .tab-action button:not(:first-child) {
    margin-top: 40px;
}

.content .tab-action button:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 48px;
    transform: translateY(-50%);
    background-repeat: no-repeat;
}

.content .tab-action button.call:before {
    background-image: url(/admin/images/ic-call.png);
}

.content .tab-action button.re-call:before {
    background-image: url(/admin/images/ic-recall.png);
}

.content .tab-action button.input-call:before {
    background-image: url(/admin/images/ic-input.png);
}

.content .tab-action button.save-number:before {
    background-image: url(/admin/images/ic-save.png);
}

.content .tab-action button.note-number:before {
    background-image: url(/admin/images/ic-note.png);
}

.content .tab-action button.end:before {
    background-image: url(/admin/images/ic-end.png);
}

.data-table {
    width: 100%;
    border-spacing: 0;
}

.serving-list {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding-bottom: 22px;
}

.waiting-list {
    height: 506px;
    overflow: auto;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    margin-top: 24px;
}

.data-table thead tr th {
    position: sticky;
    top: 0;
    height: 64px;
    background-color: #EFECEC;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: #828282;
}

.data-table thead tr th:first-child {
    border-top-left-radius: 10px;
    padding-left: 48px;
}

.data-table thead tr th:last-child {
    border-top-right-radius: 10px;
    padding-right: 48px;
}

.data-table tbody tr:not(:last-child) {
}

.data-table tbody tr td {
    padding-top: 24px;
    padding-bottom: 6px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.service, .clock,.service, .timer {
    color: #828282;
    display: inline-block;
    margin-right: 24px;
    padding-left: 38px;
    background-repeat: no-repeat;
    background-position: left center;
}

.clock {
    background-image: url(/admin/images/ic-clock.png);
}

.service {
    background-image: url(/admin/images/ic-headphone.png);
}

.data-table tbody tr td:first-child {
    padding-left: 48px;
}

.data-table tbody tr td:last-child {
    padding-right: 48px;
}

.data-table tbody tr:not(:last-child) td {
    border-bottom: 1px solid #E0E1E0;
}

.data-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.data-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}


.color-secondary {
    color: #F48120;
}

.serving-wrap {
    height: 674px;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: auto;
}

.data-table.small thead tr th {
    font-size: 16px;
    line-height: 22px;
    height: 56px;
    text-align: left;
}

.data-table.small thead tr th:first-child, .data-table.small tbody tr td:first-child {
    padding-left: 24px;
}

.data-table.small thead tr th:last-child, .data-table.small tbody tr td:last-child {
    padding-right: 24px;
}

.data-table.small tbody tr td {
    font-size: 14px;
    line-height: 24px;
    color: #333333;
    font-weight: 300;
    padding-top: 16px;
    padding-bottom: 4px;
}

.data-table.small tbody tr td .bold {
    font-weight: 600;
}

.tab-content {
    display: flex;
    flex-direction: column;
}

.tab-content-reception {
    display: flex;
    flex-direction: column;
}

.tab-content-reception .status-wrap {
    background-color: #FAFAFA;
    border-radius: 10px;
    height: 315px;
    padding: 18px 56px 25px;
}

.tab-content-reception .status-wrap.idle {
    height: 219px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.status-wrap .status,.status-wrap .number-order {
    font-size: 60px !important;
    line-height: 91px !important;
    font-weight: 700;
    color: #F48120 !important;
    text-align: center;
}

.status-wrap .status-row {
    height: 48px;
    background-color: #F1F1F1;
    border-radius: 10px;
    font-size: 16px;
    line-height: 48px;
    font-weight: 600;
    color: #828282;
    padding-left: 40px;
}

.status-wrap .status-row:not(:first-child) {
    margin-top: 16px;
}

.status-wrap .status-row .clock, .status-wrap .status-row .service {
    width: 102px;
    margin-right: 4px;
}

.status-wrap .status-row .status-text {
    margin-left: 22px;
    color: #333333;
}

.color-primary {
    color: #00A54F !important;
}

.tab-content .log-wrap {
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    flex-grow: 1;
    overflow: auto;
    margin-top: 24px;
    height: 335px;
}

.tab-content .log-wrap.idle {
    height: 431px;
}

.tab-content .status-wrap.idle {
    height: 219px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.tab-content .status-wrap.idle p {
    font-size: 25px;
    line-height: 54px;
    font-weight: 600;
    color: #828282;
}

.waiting-list-private {
	height: 672px;
    overflow: auto;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    align-items: center;
    justify-content: center;
}
  
/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 429px;
    /*height: 504px;*/
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
    border-radius: 10px;
}
  
/* Add Animation */
@-webkit-keyframes animatetop {
from {top:-300px; opacity:0} 
to {top:0; opacity:1}
}

@keyframes animatetop {
from {top:-300px; opacity:0}
to {top:0; opacity:1}
}
  
/* The Close Button */
.close {
    position: absolute;
    top: 17px;
    right: 17px;
    font-size: 28px;
    line-height: 16px;
    width: 16px;
    color: #F05B29;

}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/* .modal-body {
    padding: 0 24px;
    margin-top: 92px;
}
 */
.modal-body p {
    font-size: 17px;
    line-height: 38px;
    text-align: center;
    font-weight: 600;
    color: #828282;
    height: 64px;
}

/* .modal-body input {
    margin-top: 9px;
    background-color: #F1F1F1;
    border-radius: 10px;
    width: 100%;
    height: 92px;
    font-size: 28px;
    font-weight: 600;
    color: #828282;
    border: 1px solid transparent;
    padding: 0 21px;
} */

/* .modal-footer {
    padding: 0 48px 24px;
    margin-top: 151px;
} 

.modal-footer button {
    width: 100%;
}
*/
.limit-character{
	  max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* New 26/05/2022 */
.form-section-title {
    padding: 6px 24px;
    background: #E0E1E0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: 700;
    font-size: 10px;
    line-height: 12px;
    color: #333333;
    margin-bottom: 0;
    margin-left: 12px;
}

.form-section {
    padding: 24px 12px;
    background-color: #FFFFFF;
    border: 1px solid #E0E1E0;
    border-radius: 10px;
    position: relative;
}

.form-section .close {
    background-repeat: no-repeat;
    background-image: url(/admin/icon/menu/ic-close.png);
    position: absolute;
    top: 8px;
    right: 11px;
    width: 16px;
    height: 16px;
    opacity: 0.75;
}

.form-section .close:hover {
    opacity: 1 !important;
    cursor: pointer;
}

.form-section .form-section-group {
    max-height: 315px;
    overflow: auto;
    padding: 0 10px;
}

.add-floor{
	padding-bottom: 10px;
}
/* End */

/* Modal */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 548px;
        margin: 1.75rem auto;
    }
}

.modal-header {
    border-bottom: 1px solid transparent;
    justify-content: center;
    padding: 40px 0 25px;
}

.modal-header .modal-title {
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    color: #333333;
}

.modal-content {
    border-radius: 10px;
}

.modal-footer {
    justify-content: space-between;
}

.language-radio {
    position: relative;
    padding: 10px 12px;
}

.language-radio span, .language-radio input, .language-radio img {
    z-index: 1;
}

.language-radio span {
    color: #333333;
}

.language-radio .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    z-index: 0;
}

.language-radio input:checked ~ span {
    color: #FFFFFF;
}

.language-radio input:checked ~ .overlay {
    background-color: #22ABBD;
}

.language-radio .flag-icon {
    margin-right: 12px;
}
.button-search{
    display: inline;
}
/* End modal */
/* 
.custom-table tr td:first-child, .custom-table tr th:first-child {
    position: sticky;
    left: 0;
}

.custom-table tr:nth-child(odd) td:first-child {
    background-color: #fff;
}

.custom-table tbody tr:nth-child(even) td:first-child {
    background-color: #f6f6f6;
}

.custom-table tr td:nth-child(5), .custom-table tr th:nth-child(5) {
    position: sticky;
    left: 141.5px;
}

.custom-table tbody tr:nth-child(even) td:nth-child(5) {
    background-color: #f6f6f6;
}

.custom-table tr:nth-child(odd) td:nth-child(5) {
    background-color: #fff;
}

.custom-table thead tr th {
    position: sticky;
    top: 0;
    background-color: #DFFCFF;

}

.custom-table tr th:first-child, .custom-table tr th:nth-child(5) {
    z-index: 1;
} */