body {
    background-color: #F8FAFD;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #333;
    overflow: auto; /* Đảm bảo nội dung có thể cuộn */
}

/* === Firefox === */
* {
  scrollbar-width: thin; /* Thu gọn thanh cuộn */
  scrollbar-color: transparent transparent; /* Mặc định ẩn */
}

*:hover {
  scrollbar-color: #ececee transparent; /* Chỉ hiện thumb khi hover */
}

/* === Chrome, Edge, Safari (WebKit) === */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background: transparent; /* Không có track */
}

/* Ẩn track hoàn toàn */
::-webkit-scrollbar-track {
  background: transparent !important;
}

/* Thumb (thanh cuộn): mặc định ẩn */
::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 10px;
  transition: background 0.3s ease;
}

/* Hover vào vùng cuộn: hiện thumb */
*:hover::-webkit-scrollbar-thumb {
  background: #ececee;
}

/* Hover trực tiếp vào thumb: đậm hơn */
*:hover::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/* Ẩn nút mũi tên 2 đầu thanh cuộn */
::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

body a{
    text-decoration: unset;
}
button {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Lớp phủ ::before */
button::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1); /* Màu phủ khi hover */
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

/* Khi hover vào button */
button:hover::before {
  opacity: 1;
}
.sidebar {
    width: 280px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    padding: 20px 20px;
    padding-top: 10px;
    overflow-y: auto;
}

.sidebar .logo {
    width: 129px;
    margin-bottom: 30px;
}

.sidebar .nav-link {
    padding: 10px 16px;
    margin-bottom: 5px;
    border-radius: 35px;
    transition: all 0.3s;
    font-weight: 500;
    display: flex;
}
.sidebar .nav-link .main-icon {
    color: #6c757d;
    font-size: 18px;
    margin-right: 16px;
    width: 20px;
    line-height: 22px;
}
.sidebar .nav-link span {
    color: #2A2622;
    font-size: 14px;
    font-weight: 600;
    margin-right: auto;
}
.sidebar .nav-link .arrow-icon {
    color: #877F78;
    margin: auto 0px auto auto;
}

.sidebar .nav-link:hover {
    background-color: #f2f2f2;
}

.sidebar .nav-link.active {
    background-color: #ffe4cb;
    color: #2a2622;
    font-weight: 600;
}

.sidebar .nav-link.active i{
    color: #2a2622;
}

.sidebar .nav-link.active span{
    color: #2a2622;
}

.sidebar .nav-link-bottom {
    margin-top: auto;
}
#menu-admin span{
    font-weight: 500;
}
.sidebar .sub-nav-link {
    padding-left: 36px;
}
.sidebar .sub-nav-link.active {
    background-color: #fff;
}
.sidebar .sub-nav-link.active i{
    color: #FF9838;
}
.sidebar .sub-nav-link.active span {
    color: #FF9838;
}
.sidebar .sub-nav-link i {
    margin: auto 10px auto 0px;
    font-size: 7px;
    color: #b4bbc3;
}
.sidebar .sub-nav-link span {
   font-weight: 500;
}


.top-bar {
    position: fixed;
    top: 0;
    left: 280px; /* Sidebar width */
    right: 0;
    height: 70px;
    z-index: 1030;
    padding: 0 30px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar h5{
font-size: 17px;
}    
.top-bar .badge {
    font-size: 0.7rem;
}
.top-bar .icon-notification {
    color: #6c757d;
}
.top-bar .icon-main-page {
    color: #FF9838;
    font-size: 20px;
        margin-right: 10px;
    line-height: 22px;
}
.main {
    margin-top: 70px;
    width: calc(100% - 280px);
    padding: 0px 20px 20px 0px;
    float: right;
    height: calc(100vh - 70px);
    overflow: auto;
}
.main-content-head {
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}
.search-component {
    position: relative;
    margin-right: 20px;
}
.search-component i {
    position: absolute;
    left: 10px;
    top: 13px;
}
.search-component input {
    padding-left: 35px;
    border-radius: 8px;
    font-size: 14px;
    width: 280px;
    height: 40px;
}
.filter-component {
    margin-right: auto;
    height: 40px;
    border-radius: 8px;
    padding: 0px 20px;
    display: flex;
    cursor: pointer;
    background-color: #F3F2F2;
}

.filter-component i {
    font-size: 13px;
    line-height: 41px;
    color: #656565;
}
.filter-component .label {
    font-size: 13px;
    margin-left: 5px;
    line-height: 41px;
}
.filter-component .badge-custom {
    width: 18px;
    height: 18px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: 18px;
    font-weight: 500;
    left: 30px;
}
.btn-create-custom {
    background-color: #FF9838;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.table-container {
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
}
.table-rounded-wrap {
    border-radius: 8px;
}
.table-custom {
    width: 100%!important;
}
.table-custom thead th {
    background: #FFEAD7!important;
    vertical-align: middle;
    font-weight: 500;
    border: 0px;
}
.table-custom >tbody>tr:nth-of-type(odd)>* {
    background-color: unset;
    --bs-table-bg-type: unset;
}
.table-custom td {
    vertical-align: middle;
    border-bottom: 1px solid #eaeaea;
}
.table-hover>tbody>tr:hover>*{
    --bs-table-bg-state: #fff5ec;
}
.dt-info {
    margin: auto auto auto 0px;
}
.dt-paging {
    margin: auto 0px auto auto auto;
}
.dt-paging button{
    min-width: 30px;
    height: 30px;
    margin: 0px 4px;
    border-radius: 10px;
    text-align: center;
    float: left;
    background-color: #fff;
    color: #6c757d;
    font-size: 14px;
    border: 0px;
}
.dt-paging button.current{
    background-color: #FF9838;
    color: #fff;
    border-color: #FF9838;
}
.table-paging-custom {
    display: flex;
    width: 100%;
    margin-top: 20px;
}

.form-label {
    font-weight: 500;
}
.offcanvas-custom {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    overflow: hidden;
}
.offcanvas-custom .offcanvas-header {
    justify-content: unset;
    background: #ebf3ff;
    border-bottom: 1px solid #e2eaf7;
    height: 70px;
}
.offcanvas-header-button-action {
    padding: 10px 15px;
    border: 0px;
    border-radius: 8px;
    margin-right: 10px;
    background-color: #ffffff;
    color: #544C45;
}
.offcanvas-header-button-action i{
    margin: 0px 2.5px
}
.offcanvas-header-button-action span{
    margin: 0px 2.5px
}
.offcanvas-header-button-close {
    border: 0px;
    background-color: unset;
    margin-left: auto;
    font-size: 20px;
    color: #877F78;
    padding: 4px 14px;
    border-radius: 50%;
}
.offcanvas-header-button-close:hover {
    background-color: #00000014;
}
.offcanvas-header-button-action.submit {
    background-color: #FF9838;
    color: #fff
}
.offcanvas-custom .offcanvas-body {
    background-color: #F8FAFD;
    padding: 20px;
}
.offcanvas-custom .offcanvas-body .offcanvas-title {
    display: flex;
    margin-bottom: 20px;
}
.offcanvas-custom .offcanvas-body .offcanvas-title i{
    font-size: 20px;
    color: #FF9838;
    margin: 0px 10px 0px 0px;
    line-height: 30px;
}
.offcanvas-custom .offcanvas-body .offcanvas-title span {
    font-size: 18px;
    color: #2A2622;
    margin-right: auto;
    font-weight: 800;
}
.offcanvas-body-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}
.title-form  {
    margin-bottom: 8px;
    font-size: 16px;
}
.offcanvas-body-form .title-form span {
    color: #877F78;
    font-weight: 500;
}
.offcanvas-body-form .title-form b {
    color: #2A2622;
}
.offcanvas-body-form .title-form .icon-toggle {
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
}

.progress-title {
   margin-bottom: 20px;
   background-color: #F3F2F2;
   flex-shrink: 0;
   height: 3px !important;
}
.progress-title .progress-bar {
    width: 9%;
    background-color: #FF9838;
}
.offcanvas-body-form .form-group {
    width: calc(50% - 10px);
    margin-bottom: 20px;
}
.full-width {
    width: 100%!important;
}
.form-group input.text-input{
    border-color: #E8E5E3;
    border-radius: 8px;
    font-size: 14px;
    height: 40px;
    padding: 8px 16px;
}
.form-group textarea.text-input{
    border-color: #E8E5E3;
    border-radius: 8px;
    font-size: 14px;
    padding: 8px 16px;
}
.form-group input.text-input::placeholder {
    color: #999;
    font-size: 14px;
} 
.form-check-input:checked {
    background-color: #FF9838;
    border-color: #FF9838;
}
.form-check-input:focus {
    box-shadow: unset;
    border-color: #ff9838!important;
}
.form-control:focus {
    box-shadow: unset;
    border-color: #ff9838!important;
}
.bootstrap-select {
    height: 40px;
    font-size: 14px;
    width: 100%!important;
}
.bootstrap-select .dropdown-toggle {
    border-color: #E8E5E3;
    border-radius: 8px;
    font-size: 14px;
    height: 40px;
    padding: 8px 16px;
    background: #fff;
}
.bootstrap-select  .filter-option {
    font-size: 14px;
}
.bootstrap-select .dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
}
.bs-searchbox {
    position: relative;
    display: inline-block;
    width: 100%;
}
  
.bs-searchbox::before {
    content: "\f002";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    pointer-events: none;
    color: #888;
}
.bs-searchbox input {
    padding-left: 30px; /* space for the icon */
}
.bootstrap-select .dropdown-item.active {
    position: relative;
    background-color: #fff;
    color: #212529;
}
  
.bootstrap-select .dropdown-item.active::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    color: #FF9838;
}

.bootstrap-select .bs-ok-default:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 0px;
    top: 14px;
    transform: translateY(-50%);
    font-size: 16px;
    pointer-events: none;
    color: #FF9838;
    width: auto;
    height: auto;
    border-style: none;
}

.bootstrap-select .dropdown-toggle:focus {
    outline: none !important;
    box-shadow: unset;
    border-color: #ff9838;
}
.label-status-green {
    padding: 4px 16px;
    justify-content: center;
    border-radius: 8px;
    background: #CCFBD0;
    display: flex;
    text-align: center;
    color: #00B811;
    font-weight: 400;
}
.label-status-pending {
    padding: 4px 16px;
    justify-content: center;
    border-radius: 8px;
    background: #E8E5E3;
    display: flex;
    text-align: center;
    color: #877F78;
    font-weight: 400;
}
.collapsing {
  transition-duration: 0.1s;
}
.select-user-template {
    display: flex;
}
.select-user-template img{
    width: 24px;
    border-radius: 50%;
    margin-right: -12px;
    border: 1px solid #fff;
        background: #fff;
}
.select-user-template .more-user{
    width: 24px;
    height: 24px;
    background: #FF9838;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    line-height: 22px;
}
.select-user-template .share-more{
    width: 24px;
    height: 24px;
    background: #F3F2F2;
    border-radius: 50%;
    color: #544C45;
    font-size: 12px;
    text-align: center;
    cursor: pointer;
    margin-left: 16px;
}
.select-user-template .share-more i {
    font-size: 12px;
    line-height: 24px;
    color: #6c757d;
}
.data-block {
    border-radius: 8px;
    background: #F3F2F2;
    display: flex;
    padding: 10px 16px;
    margin-bottom: 20px;
}
.data-block span {
    color: #2A2622;
    font-size: 14px;
    font-weight: 400;
    margin: auto auto auto 0px;
}
.data-block .data-icon {
    color: #6c757d;
    margin: auto 16px auto 0px;
    width: 10px;
    font-size: 15px;
}
.data-block .data-drag {
    color: #c9c9c9;
    margin: auto 0px auto auto;
    cursor: move;
    font-size: 15px;
}
.approval-step {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}
.approval-step .step{
    color: #2A2622;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #E8E5E3;
    max-width: 100px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    flex: 1 1 calc(25% - 8px);
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-0 {
    margin-bottom: 0px;
}
.mt-20 {
    margin-top: 20px;
}
.select-control {
    display: flex;
    margin-bottom: 8px;
}
.select-control .icon-delete {
    width: 50px;
    margin: auto 0px auto auto;
    text-align: right;
    font-size: 18px;
    cursor: pointer;
    color: #999;
}
.select-control .icon-delete:hover {
    color: red;
}
.offcanvas-custom .form-left {
    width: 460px;
    height: calc(100vh - 165px);
    overflow: auto;
    float: left;
    border-radius: 8px;
    background-color: #fff;
}
.offcanvas-custom .form-right {
    width: calc(100% - 480px);
    float: right;
    height: calc(100vh - 165px);
    overflow: auto;
    border-radius: 8px;
    border: 1px dashed #B7B2AE;
    background: #f2f7ff;
    position: relative;
}
.offcanvas-custom .form-right .data-setting {
    width: 100%;
    margin: auto;
    text-align: center;
    position: absolute;
    left: 0px;
    top: calc(50% - 56px);
}
.offcanvas-custom .form-right .move-icon {
    font-size: 32px;
    margin-right: 16px;
    color: #D9D9D9;
    position: relative;
    top: 5px;
}
.offcanvas-custom .form-right .description {
    color: #2A2622;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}
.offcanvas-custom .form-right .or-action {
    color: #877F78;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin: 8px 0px;
}
.add-data {
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #FFF3E9;
    background: #FFF3E9;
    display: flex;
    margin: auto;
}
.add-data i {
    color: #FF9838;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
}
.add-data span {
    color: #FF9838;
    font-size: 14px;
    margin: auto 0px auto 8px;
}
.proposal-data {
    width: 100%;
    padding: 20px;
    min-height: 100%;
}
.proposal-data .form-group {
    width: calc(100% - 60px);
    display: flex;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #FF9838;
    background: #FFF
}
#approval-process-setting-create-process{
    margin-bottom: 35px !important;
    overflow: unset;
}
.mr-16 {
    margin-right: 16px;
}
.proposal-data .icon-drag {
        color: #c9c9c9;
    cursor: move;
    font-size: 15px;
    margin: auto 0px auto 20px;
}
.proposal-data-step {
    display: flex;
    margin-bottom: 20px;
}
.proposal-data-step .delete {
    margin: auto 0px auto auto;
    border-radius: 8px;
    background: #fff;
    font-size: 20px;
    color: #FB644C;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}
.hide {
    display: none!important;
}
.approval-process {
    display: flex;
    flex-direction: row;
    padding: 0px 20px;
    margin-bottom: 20px;
}
.approval-process.dragging .hide-in-show-less{
    display: none;
}
.approval-process.dragging .show-less{
    display: none;
}
.approval-process .process-name {
    display: flex;
    flex-direction: column;
}
.approval-process .process-name .process-name-wrap{
    border-radius: 8px;
    background: #FF9838;
    padding: 8px 0px;
    color: #fff;
    width: 76px;
    text-align: center;
    cursor: move;
}
.approval-process .process-name .process-name-wrap span{
    font-size: 13px;
}
.approval-process .process-link {
    width: 48px;
}
.approval-process .process-main {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #FF9838;
    width: calc(100% - 48px - 76px - 60px);
}
.approval-process .process-main-view-detail {
    width: calc(100% - 48px - 76px);
}
.approval-process .process-main .form-group {
    margin-bottom: 16px;
}
.approval-process .approver {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 8px;
}

.approval-process .approver .info{
    display: flex;
    flex: 1;
}
.approval-process .approver img{
    width: 40px;
    border-radius: 50%;
}

.approval-process .approver .info .name-and-postion{
    margin-left: 8px;
}

.approval-process .approver .info .name-and-postion .name{
    font-weight: 500;
}
.approval-process .approver .info .name-and-postion .position{
    color: 13px;
    color: #2A2622;
}

.approval-process .approver:hover .delete {
    display: flex;
}

.approval-process .approver-list {
    border-radius: 8px;
    background: #F3F2F2;
    padding: 20px;
}
.approval-process .approver .delete{
    margin: auto 0px auto auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-shrink: 0;
    cursor: pointer;
    display: none;
}
.approval-process .approver .delete i{
    margin: auto;
    color: #FB644C;
    font-size: 18px;
}
.approval-process .approve-condition {
    border-radius: 8px;
    background: #F3F2F2;
    padding: 20px;
}
.approval-process  .show-less {
    color: #FF9838;
    display: flex;
    cursor: pointer;
    margin-bottom: 0px!important;
}
.approval-process  .show-less i{
    font-size: 24px;
    margin: auto 0px auto 0px;
}
.approval-process  .show-less span{
    font-size: 14px;
    margin: auto auto auto 10px;
}
.approval-process .process-delete {
    margin: auto 0px auto auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-shrink: 0;
    cursor: pointer;
}
.approval-process .process-delete i {
    margin: auto;
    color: #FB644C;
    font-size: 18px;
}
.approval-process .process-link {
    text-align: center;
    flex-shrink: 0;
}
.approval-process .process-link  .step-icon {
    padding: 3px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #FF9838;
    color: #FF9838;
    margin: auto;
    margin-top: 7.5px;
}
.approval-process .process-link .step-line {
    width: 1px;
    height: calc(100% - 17px);
    border-left: 1px dashed #FF9838;
    margin-top: 7.5px;
    margin-left: calc(50% - 0.5px);
}
.approval-process.last-step .process-link .step-line {
    display: none;
}
.offcanvas-custom .section-detail {
    display: flex;
    font-size: 14px;
    font-weight: 400;
    color: #2A2622;
    line-height: 21px;
    margin-bottom: 16px;
}
.offcanvas-custom .section-detail-flex {
    display: flex;
    flex-direction: column;
}
.offcanvas-custom .section-detail .field-name {
    width: 30%;
    padding-right: 10px;
}
.offcanvas-custom .section-detail .field-value {
    width: 70%;
    font-weight: 600;
}
.offcanvas-custom .section-detail .field-value-image {
    display: flex;
    box-sizing: border-box;
    flex: 1 1 calc(50% - 16px);
}
.offcanvas-custom .section-detail .field-value-image img {
    width: 30px;
    border-radius: 50%;
}
.offcanvas-custom .section-detail .field-value-image span {
    margin: auto auto auto 10px;
}
.modal-user-list {
    height: calc(100% - 20px - 25px);
    overflow: auto;
    position: relative;
    padding: 0px;
}
.modal-user-list .search-step {
    position: relative;
}
.modal-user-list .search-step i{
    font-size: 20px;
    color: #877F78;
    position: absolute;
    left: 16px;
    top: 10px;
}
.modal-user-list .search-step input {
    padding-left: 50px;
}
.modal-user-list .step-select-all {
    display: flex;
    margin-bottom: 20px;
}
.modal-user-list .step-select-all .form-check {
    margin: auto 8px auto 0px;
}
.modal-user-list .step-select-all .form-check input {
    width: 17px;
    height: 17px;
}
.modal-user-list .step-select-all .form-check input {
    width: 17px;
    height: 17px;
}
.modal-user-list .step-select-all .step-label-and-info {
    display: flex;
    flex-direction: column;
}
.modal-user-list .step-select-all .step-label-and-info .label{
    color: #2A2622;
    font-size: 14px;
    font-weight: 600;
}
.modal-user-list .step-select-all .step-label-and-info .info{
    font-size: 12px;
    color: #544C45;
}
.modal-user-list  .department-block {
    margin-bottom: 20px;
}
.modal-user-list  .department-block .department-list {
    padding: 0px 16px;
}
.modal-user-list .department-user {
    display: flex;
    margin-bottom: 16px;
}
.modal-user-list .department-user .form-check {
    margin: auto 8px auto 0px;
}
.modal-user-list .department-user .form-check input {
    width: 17px;
    height: 17px;
}
.modal-user-list .department-user img {
    width: 40px;
    height: 40px;
    margin: auto 8px auto 0px;
    border-radius: 50%;
}
.modal-user-list .department-user .user-detail {
    display: flex;
    flex-direction: column;
}
.modal-user-list .department-user .user-detail .name{
    font-weight: 600;
}
.modal-user-list .department-user .user-detail .position{
    font-size: 12px;
    color: #544C45;
}
.modal-user-list-main {
    padding: 0px 20px 20px 20px;
}
.modal-user-list .search-and-select-all {
    position: sticky;
    top: 0px;
    background-color: #fff;
    padding: 20px;
}
.modal-user-list .progress-bar {
    width: 15%;
}
.view-proposal-approval-template {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--Gray2, #F3F2F2);
    text-align: center;
    display: flex;
    cursor: pointer;
}
.view-proposal-approval-template i {
        margin: auto;
    font-size: 15px;
    color: #9c9fa2;
    font-weight: 300;
}
.create-proposal .choose-file{
    color: #3897FF;
    font-size: 14px;
    font-weight: 400;
    margin: auto 0px auto auto;
    cursor: pointer;
}
.file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.file-choose {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.file-choose:hover .file-delete {
    display: block;
}
.file-choose img{
    width: 28px;
    margin-right: 8px;
}
.file-choose .file-info {
    display: flex;
    flex-direction: column;
    margin: auto 0px;
    max-width: calc(100% - 89px);
}
.file-choose .file-info .file-name {
    font-size: 14px;
    font-weight: 400;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #2A2622;
    text-decoration: unset;
}
.file-choose .file-info .file-name:hover {
    text-decoration: underline;
}
.file-choose .file-info .file-size {
    font-size: 12px;
    color: #877F78;
    font-weight: normal;
}
.file-choose .file-delete {
    margin: auto auto auto 20px;
    font-size: 15px;
    cursor: pointer;
    display: none
}
.file-choose .file-delete:hover {
    color: red;
}
.proposal-details {
    background-color: #fff!important;
    border: 0px!important;
    padding: 20px;
}
.proposal-details.empty {
    padding: 0px;
    position: relative;
    overflow: hidden;
}
.proposal-details.empty .no-data-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
}
.proposal-details .no-data-wrap{
    display: none;
}
.proposal-details.empty .no-data {
    margin: auto;
    display: flex;
    flex-direction: column;
}
.proposal-details.empty .no-data-wrap img{
    width: 150px;
    margin: auto;
}
.approval-process-view-detail {
    padding: 0px;
}
.approval-process-view-detail .process-name .process-name-wrap {
    background: unset;
    color: #ff5c00;
    text-align: right;
    font-size: 12px;
    font-weight: 400;
    padding: 0px;
}
.approval-process-view-detail .process-main-view-detail {
    padding: 0px 20px;
    border: 0px;
}
.approval-process-view-detail .process-link .step-icon {
    margin-top: 0px;
}
.process-main-view-detail .approval-user {
    font-weight: 600;
}
.process-main-view-detail .approval-handles-title {
    color: #FF9838;
}
.process-main-view-detail .approval-step-name {
    font-weight: bold;
    font-size: 15px;
    margin-bottom: 8px;
}
.process-main-view-detail .approval-status {
    display: flex;
    margin-top: 8px;
}
.process-main-view-detail  .approval-action {
    font-weight: normal;
    margin-right: 8px;
}
.approval-process-view-detail.reject .process-main-view-detail  .approval-action {
    color: red;
}
.approval-process-view-detail.reject .process-link .step-icon {
    color: red;
    border-color: red;
    padding: 0px;
    font-size: 20px;
}
.approval-process-view-detail.reject .process-link .step-line {
    border-color: red;
}

.approval-process-view-detail .process-link {
    margin-left: 20px;
}

.approval-process-view-detail.pending .process-main-view-detail .approval-expires-time {
    color: #B7B2AE;
}
.approval-process-view-detail.pending .process-main-view-detail .approval-expires-time.expired {
    color: red;
}

.approval-process-view-detail.pending .process-main-view-detail  .approval-action {
    color: #B7B2AE;
}
.approval-process-view-detail.pending .process-link .step-icon {
    color: #B7B2AE;
    border-color: #B7B2AE;
    padding: 0px;
    font-size: 20px;
}
.approval-process-view-detail.handling .process-link .step-icon {
    color: #03A9F4;
    border-color: #03A9F4;
    padding: 0px;
    font-size: 20px;
}
.approval-process-view-detail.handling .process-main-view-detail .approval-action {
    color: #03A9F4;
}
.approval-process-view-detail.handling .process-link .step-line {
    border-color: #03A9F4;
}
.approval-process-view-detail.pending .process-link .step-line {
    border-color: #B7B2AE;
}
.approval-process-view-detail.approved .process-main-view-detail  .approval-action {
    color: #00B811;
}
.approval-process-view-detail.approved .process-link .step-icon {
    color: #00B811;
    border-color: #00B811;
    padding: 0px;
    font-size: 20px;
}
.approval-process-view-detail.approved .process-link .step-line {
    border-color: #00B811;
}
.proposal-comments {
    border-radius: 8px;
    height: calc(100% - 55px);
    position: relative;
}
.proposal-comments .comment-list {
   height: calc(100% - 60px);
    overflow: auto;
    padding-bottom: 50px;
}
.proposal-comments .comment {
    display: inline-flex;
    padding: 0;
    width: auto;
    border-radius: 16px;
    margin-bottom: 8px;
    position: relative;
    padding-right: 20px;
    min-width: 51%;
}
.proposal-comments .comment:hover .comment-actions {
    display: block;
    color: #6c757d;
}
.proposal-comments .comment:last-child {
    margin-bottom: 0px;
}
.proposal-comments .comment img {
    width: 32px;
    border-radius: 50%;
    margin: 5px 12px auto 0px;
}
.proposal-comments .comment .comment-content {
    margin: auto auto auto 0px;
    flex: 1;
    background: #ebf3ff96;
    padding: 10px 20px;
    border-radius: 16px;
    margin-top: 5px;
}
.proposal-comments .comment .comment-content .comment-time {
    font-size: 12px;
    color: #877F78;
    line-height: 21px;
}
.proposal-comments .comment .comment-content .comment-user {
    font-weight: 500;
    line-height: 21px;
    font-size: 13px;;
}
.proposal-comments .comment .comment-content .comment-text {
   color: #000;
   margin-top: 5px;
}
.proposal-comments .comment .comment-actions {
    position: absolute;
    right: 0px;
    cursor: pointer;
    font-size: 16px;
    display: none;
    top: 38%;
}
.proposal-comments .create-comment-wraper {
    bottom: 0px;
    background: unset;
}
.proposal-comments .create-comment {
    display: flex;
    padding: 12px;
    background: #f5f5f5;
    width: 100%;
    border-radius: 40px;
}
.proposal-comments .create-comment img {
    width: 32px;
    border-radius: 50%;
    margin: auto 12px auto 0px;
}
.proposal-comments .create-comment textarea {
    width: 100%;
    border: 0px;
    height: 32px;
    padding: 5px 0px;
    background: unset;
    resize: none;
}
.proposal-comments .create-comment textarea:focus {
    outline: unset;
}
.proposal-comments .create-comment i {
    font-size: 20px;
    flex-shrink: 0;
    color: #FF9838;
    width: 32px;
    text-align: center;
    cursor: pointer;
    line-height: 28px;
}
.user-detail {
    display: flex;
    width: 100%;
}
.user-detail .user-detail-left {
    width: 250px;
    flex-shrink: 0;
}
.user-detail .user-detail-left .avatar-detail {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}
.user-detail .user-detail-left .avatar-detail img{
    width: 100%;
    border-radius: 8px;
}
.user-detail .user-detail-right{
    flex: 1;
    margin-left: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
}
.user-detail .user-detail-left .account-detail {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}
.user-detail .user-detail-right .user-detail-content {
    display: flex;
    gap: 20px
}
.user-detail .user-detail-right .user-detail-content .step-info {
    flex: 1;
}
.button-action-icon {
display: inline-block;
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 8px;
    color: #6c757d;
    border: 0px;
    margin-top: 20px;
    width: auto !important;
}
.button-action-icon i {
    margin: auto 4px auto auto;
    font-size: 15px;
}
.button-action-icon span {
    margin: auto auto auto 4px;
}
.login-register {
    width: 100%;
    height: 100vh;
    background: url("/images/zacom_bg_login.png");
    background-repeat: no-repeat;
    background-size: cover;
}
.login-register .form-content {
    width: 30%;
    position: absolute;
    background: #fff;
    height: calc(100% - 40px);
    top: 20px;
    right: 20px;
    border-radius: 16px;
    overflow: auto;
    display: flex;
    flex-direction: column;
        min-width: 400px;
}
.login-register .form-content .form-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 370px;
    max-width: 500px;
    margin: auto;
}
.login-register .form-content .logo {
        margin: 15px auto;
    width: 161px;
}
.login-register .form-content  .title-page {
    font-size: 23px;
    font-weight: 600;
    margin: 40px auto 20px 0px;
}
.input-group-custom {
    border: 1px solid #E8E5E3;
    border-radius: 5px;
    position: relative;
}
.input-group-custom .show-hide-password {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}
.input-group-custom .step-icon {
    flex-shrink: 0;
    display: flex;
    font-size: 18px;
    padding: 0px 10px;
}
.input-group-custom .step-icon i{
    margin: auto;
}
.input-group-custom input{
    border: 0px;
    padding-left: 0px!important;
}
.login-register .forgot-password {
    text-align: right;
}
.login-register .forgot-password a{
    text-decoration: unset;
}
.login-register  .submit-form button{
    padding: 10px;
    border-radius: 8px;
    background: #FF9838;
    color: #fff;
    font-weight: 600;
    border: 0px;
    width: 100%;
}
.form-footer {
    padding: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
}
.form-footer a{
    margin: 0 10px;
    color: #8e8e8e;
    font-weight: 500;
    text-decoration: none;
}
.required-field {
    color: red;
    margin-left: 5px;
}
.login-register  .register-direction a {
    text-decoration: unset;
}
.action-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3897FF;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.20);
    z-index: 9999;
}
.action-notification.error {
    background-color: red;
} 
.action-notification.success {
    background-color: #009640;
} 
.action-notification.warning {
    background-color: #FF9800
} 
.action-notification .action-notification-main {
    color: #fff;
    display: flex;
}
.action-notification .action-notification-main .status-icon {
    margin: auto;
    margin-right: 10px;
}
.action-notification .action-notification-main .close-icon {
    margin: auto;
    margin-left: 10px;
    cursor: pointer;
}
.jconfirm-box {
    padding: 0px!important;
    border-radius: 8px !important;
}
.jconfirm-box .jconfirm-title-c {
    padding: 16px;
    background: #ebf3ff;
}
.jconfirm-box .jconfirm-title {
        font-size: 16px !important;
    font-weight: 600;
}
.jconfirm-box .jconfirm-content {
    padding: 16px;
}
.jconfirm-box .jconfirm-content .confirm-modal-content{
    display: flex;
}
.jconfirm-box .jconfirm-content .confirm-modal-content .waring-icon{
    font-size: 32px;
    color: #FFB638;
    margin: auto 0px;
}
.jconfirm-box .jconfirm-content .confirm-modal-content .message {
    margin: auto auto auto 10px;
    font-size: 14px;
    font-weight: 400;
}
.jconfirm-box .jconfirm-buttons {
    width: 100%;
    padding: 16px 0px;
    border-top: 1px solid #E8E5E3;
    text-align: right;
}
.jconfirm-box .jconfirm-buttons button{
    border-radius: 8px;
    background: #F3F2F2;
    padding: 8px 16px;
    font-weight: 600!important;
    color: #544C45;
    margin: 0px 16px 0px 0px!important;
    text-transform: inherit!important;
    border-radius: 8px;
}
.jconfirm-box .jconfirm-buttons button.confirm-modal-button-submit {
    color: #fff;
    background-color: #FF9838;
}
#mark-all-as-read-button{
        background: #ffffff;
    color: #212529;
    border: 1px solid #ccc;
}
.show-on-edit {
    display: none;
}
.icon-control-in-table {
    cursor: pointer;
    padding: 8px 9px;
    border-radius: 50%;
    color: #6c757d;
}
.icon-control-in-table:hover {
    background: #00000014;
        color: #212529;
}
.cancel-crop-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}
.icon-drop-down-action {
    cursor: pointer;
    padding: 8px 10px;
    background: #ff57221c;
    border-radius: 8px;
}
.icon-drop-down-action:hover {
    color:#fff;
    background: #FF9838;
}
.dropdown-custom {
    padding: 0px;;
}
.dropdown-custom .dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
}


.supervisor {
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 16px;
    background: #f3f2f2;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.supervisor .info{
    display: flex;
    flex: 1;
}
.supervisor img{
    width: 40px;
    border-radius: 50%;
}

.supervisor .info .name-and-postion{
    margin-left: 8px;
}

.supervisor .info .name-and-postion .name{
    font-weight: 500;
}
.supervisor .info .name-and-postion .position{
    font-size: 13px;
    color: #6c757d;
    font-weight: normal;
}

.supervisor:hover .delete {
    display: flex;
}

.supervisor .delete{
    margin: auto 0px auto auto;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-shrink: 0;
    cursor: pointer;
    display: none;
}
.supervisor .delete i{
    margin: auto;
    color: #FB644C;
    font-size: 18px;
}
.proposal-supervisor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.proposal-confirm-popup {
    flex-direction: column;
}
.proposal-confirm-popup .proposal-name {
    font-size: 15px;
    font-weight: 600;
    color: #2A2622;
    margin-bottom: 10px;
}

.approval-handles .approval-handles-user {
    font-weight: 500;
}
.approval-handles {
    margin-top: 8px;
}
.approval-handles .approval-handles-content {
    display: flex;
}
.status-1 {
    color: #B7B2AE!important;
}
.status-2 {
    color: #03A9F4!important;
}
.status-3 {
    color: #00B811!important;
}
.status-4 {
    color: red!important;
}

.status-label-1 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #B7B2AE;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.status-label-2 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #03A9F4;
    font-size: 13px;
    line-height: 22px;
    justify-content: center; /* horizontal centering */
    align-items: center;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.status-label-3 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #00B811;
    font-size: 13px;
    line-height: 22px;
    justify-content: center; /* horizontal centering */
    align-items: center;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.status-label-4 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: red;
    font-size: 13px;
    line-height: 22px;
    justify-content: center; /* horizontal centering */
    align-items: center;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.table-change-in-comment {
    width: 100%;
    float: left;
    margin-top: 8px;
}
.table-change-in-comment tr:first-child {
    background: #f3f2f2;
    text-align: center;
    color: #fb644c;
}
.table-change-in-comment td{
    padding: 5px;
    border: 1px solid #ddd;
    font-size: 13px;
    text-align: center;
}

.priority-label-1 {
padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #39d239;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
}

.priority-label-2 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: orange;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
}

.priority-label-3 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: red;
    display: inline-block;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
}

.button-approve-now {
    color: #fff;
    cursor: pointer;
    display: flex;
    width: 130px;
    background: #ff9838;
    padding: 8px 0px;
    border-radius: 8px;
    justify-content: center;
    align-items: center;
}
.button-approve-now i{
    margin-right: 8px;
}
.setting-now {
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #FFF3E9;
    background: #FFF3E9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #FF9838!important;
    cursor: pointer;
}
.setting-now i{
    color: #FF9838;
    margin-right: 8px;
}
.notification-content {
    color: #3897FF;
    cursor: pointer;
}
.notification-content .noti-user-name{
    font-weight: 500;
}
.notification-content .noti-action-to{
    font-weight: 500;
}
.notification-content .noti-user-expired-time{
    font-weight: 500;
}
.notification-type-label {
    padding: 8px 16px;
    border-radius: 8px;
    margin: auto;
    margin-right: 10px;
    cursor: pointer;
    border: 1px solid #FF9838;
}
.notification-type-label.active {
    background-color: #FF9838;
    color: #fff;
}
.top-bar-notification {
    width: 40px;
    height: 40px;
    margin: auto;
    display: flex;
    margin-right: 32px;
    border-radius: 8px;
    cursor: pointer;
}
.top-bar-notification .icon-notification{
   margin: auto;
}
.top-bar-notification.active {
    background-color: #FF9838;
    color: #fff;
}
.top-bar-notification.active i {
    color: #fff;
}
.top-bar-notification .notification-un-seen {
    position: absolute;
    background: #FF3B2F;
    width: 20px;
    height: 20px;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    line-height: 17px;
    right: 0px;
    color: #fff;
    border: 2px solid #fff;
}
.top-bar-notification-list {
    position: absolute;
    background: #fff;
    top: 50px;
    width: 500px;
    right: calc(100% - 40px);
    border-radius: 8px;
    box-shadow: 0px -1px 8px 0px rgba(0, 0, 0, 0.12);
    display: none
}
.top-bar-notification-list .step-header{
    padding: 20px 16px;
    background-color: #ebf3ff;
    display: flex;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.top-bar-notification-list .step-header i {
    font-size: 20px;
    color: #FF9838;
    margin: auto 8px auto 0px;
}
.top-bar-notification-list .step-header .step-title{
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    color: #2A2622;
}
.top-bar-notification-list .step-header .step-mark-read-all {
    font-size: 14px;
    color: #FF9838;
    margin: auto 0px auto auto;
    cursor: pointer;
}
.top-bar-notification-list .step-tab {
    display: flex;
    padding: 20px 16px;
}
.top-bar-notification-list .step-tab .step-tab-item {
    width: 120px;
    text-align: center;
    color: #2A2622;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 3px solid #E8E5E3;
    padding-bottom: 8px;
    cursor: pointer;
}
.top-bar-notification-list .step-tab .step-tab-item.active {
    border-color: #FF9838;
    color: #FF9838;
}
.top-bar-notification-list .step-per-noti {
    display: flex;
    padding: 12px 16px;
    cursor: pointer;
}
.top-bar-notification-list .step-per-noti:hover {
    background-color: #f5f5f5;
}
.top-bar-notification-list .step-per-noti img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: auto 16px auto 0px;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content {
    display: flex;
    flex-direction: column;
    margin: auto auto auto 0px;
    padding-right: 8px;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content .step-per-noti-time {
    color: #877F78;
    font-size: 12px;
    line-height: 18px;
}
.top-bar-notification-list .step-per-noti .un-read-flag {
    margin: auto 0px auto auto;
    color: #FB644C;
    font-size: 12px;
}
.top-bar-notification-list  .step-list {
    max-height: 65vh;
    overflow: auto;
    padding: 10px 0;
    margin-bottom: 10px;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content .noti-user-name {
    font-weight: 500;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content .noti-action-to {
    font-weight: 500;
}
.top-bar-user-info {
    cursor: pointer;
}
.top-bar-user-info span {
    margin-right: 5px;
    color: #000;
    font-weight: 500;
}

.dropdown-menu-custom {
    padding: 2px;
}

.dropdown-menu-custom .dropdown-item {
    font-size: 14px;
    padding: 8px 16px;
}

.dashboard {
    
}
.dashboard .proposal-statistic {
    display: flex;
    gap: 20px;
}
.dashboard .proposal-statistic .step-status {
    flex: 1; /* Equal width */
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    padding: 20px;
}

.dashboard .proposal-statistic .step-status i{
    font-size: 24px;
    margin: auto 20px auto 0px;
    color: #FF9838;
}
.dashboard .proposal-statistic .total{
    background: #ff98384f;
}
.dashboard .proposal-statistic .approved{
    background: #00b81161
}
.dashboard .proposal-statistic .rejected{
    background: #ff000038
}
.dashboard .proposal-statistic .handling{
    background: #03a9f485
}
.dashboard .proposal-statistic .pending{
    background: #b7b2ae8a
}
.dashboard .proposal-statistic  .step-detail {
    display: flex;
    margin: auto auto auto 0px;
    flex-direction: column;
    text-align: left;
}
.dashboard .proposal-statistic  .step-detail .name {
    color: #544C45;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 150% */
}
.dashboard .proposal-statistic  .step-detail .total-proposal {
    color: var(--Text1, #2A2622);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 27px; /* 150% */
}
.department-statistic {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    flex: 3.15;
    box-sizing: border-box;
}
.department-template-category {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.category-statistic {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    flex: 2;
    box-sizing: border-box;
}
.user-detail-field {
    display: flex;
    flex-direction: column;
}
.user-detail-field .field-name {
    margin-bottom: 8px;
}
.user-detail-field .field-value {
    font-weight: 500;
}

.webview-body .main {
    margin-top: 0px;
    width: 100%;
    padding: 20px;
    height: auto;
}
.webview-body .dashboard .proposal-statistic {
    flex-direction: column;
}
.webview-body .dashboard .proposal-statistic {
    flex: unset;
}
.webview-body .dashboard .department-template-category {
    flex-direction: column;
}
.webview-body .dashboard .department-statistic {
    flex: unset;
}
.webview-body .dashboard .category-statistic {
    flex: unset;
}
.text-highlight {
    font-weight: 500;
}
.template-status-1 {
    color: #009640;
}
.template-status-2 {
    color: red;
}
.template-data-setting-per-line {
    flex-direction: column;
}
.option-template-item {
    display: flex;
    margin-bottom: 16px;
}
.option-template-item .drag-handle {
    margin: auto 10px auto 0px;
    cursor: move;
}
.option-template-item .delete {
    margin: auto 0px auto 10px;
    border-radius: 8px;
    background: #9e9e9e24;
    font-size: 20px;
    color: #FB644C;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    flex-shrink: 0;
}
.option-setting-result {
    flex: 1;
    margin-left: 16px;
}
.option-setting-result .option-template-value {
    padding: 5px 15px;
    background: #f4f4f4;
    border-radius: 20px;
    margin-right: 5px;
    font-size: 13px;
    display: flex;
    margin-bottom: 5px;
    width: auto;
    color: #607D8B;
}
.sidebar-company-info {
    display: flex;
    padding: 5px 10px;
    margin-bottom: 22px;
}

.sidebar-company-info img{
    width: 40px;
    border-radius: 50%;
}

.sidebar-company-info span {
    margin: auto auto auto 16px;
    font-size: 19px;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 100%;
}
.value-field-data-use-select {
    float: left;
    margin-right: 10px;
    margin-bottom: 5px;
}
.value-field-data-use-select img {
    width: 22px;
    border-radius: 50%;
    margin-right: 5px
}
.no-permission {
    display: flex;
    width: 100%;
    height: 100%;
}
.no-permission h1{
    margin: auto;
}
.create-order-view-detail {
    padding: 20px!important;
    background-color: #fff!important;
    border: 0px!important;
}
.create-order-view-detail td{
    padding: 5px;
    border-bottom: 1px solid #ddd;
}
.text-right {
    text-align: right;
}
.role-description-details {
    color: #4a4a4a;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
    margin: 10px 0;
}
.role-details {
    color: #4a4a4a;
    font-weight: normal;
    font-size: 13px;
    line-height: 18px;
}
.canvas-user-detail .user-detail-name .avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    margin-right: 7px;
}
.canvas-edit-group .logo-preview {
    width: 100%;
    border-radius: 50%;
    scale: 0.5;
    margin-bottom: -50px;
}
.canvas-edit-user .avatar-preview {
    width: 100%;
    border-radius: 8px;
    scale: 0.5;
    margin-bottom: -50px;
}
.approval-user-item {
    display: flex;
    margin-bottom: 5px;
}
.approval-user-item img {
    width: 20px;
    border-radius: 50%;
}
.approval-user-item span {
    margin: auto auto auto 8px;
}
.order-status-1 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #B7B2AE;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.order-status-2 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #03A9F4;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.order-status-3 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #39d239;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.order-detail-voucher .voucher-amount.discount-money{
    color: #03A9F4;
}
.order-detail-voucher .voucher-amount.add-time{
    color: #03A9F4;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content .noti-user-proposal {
    font-weight: 500;
}
.top-bar-notification-list .step-per-noti .step-per-noti-content .noti-user-expired-time {
    font-weight: 500;
}
.qr-payment {
    flex-direction: column;
}
.qr-payment img {
    width: 250px;
    margin: auto;
}
.qr-payment p {
    color: red;
    margin-top: 10px;
}
.payment-order-note {
    color: red!important;
}
.order-status-label-1 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #B7B2AE;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.order-status-label-3 {
    padding: 5px 10px;
    border-radius: 20px;
    color: #fff;
    background-color: #00B811;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}
.service-using-details {
    background-color: #fff;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
}
.service-using-details .title {
    font-size: 17px;
    font-weight: 500;
}
.service-using-details .service-using-details-item {
    float: left;
    width: 100%;
    margin-top: 8px;
}

.service-using-details .service-using-details-item .expired-label {
    color: red;
    margin-left: 5px;
}

.webview-body .dashboard .proposal-statistic {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.group-expired-service {
    color: red;
}
.top-bar-warning-expired-service {
    display: flex;
    margin: auto 10px auto auto;
    background: #ff57228c;
    padding: 5px 10px;
    border-radius: 8px;
}
.top-bar-warning-expired-service span {
    margin: auto;
}
.top-bar-warning-expired-service a {
    background: #FF5722;
    color: #fff;
    margin: auto auto auto 10px;
    border: 0px;
    border-radius: 8px;
    font-size: 13px;
    padding: 3px 8px;
    font-weight: 500;
}
.expired-service {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background-color: #fff;
    border-radius: 8px;
}
.expired-service-content {
    margin: auto;
    text-align: center;
}
.expired-service-content img {
    width: 180px;
    border-radius: 50%;
}
.expired-service-content span {
    display: flex;
    margin: 20px 0px;
    font-size: 25px;
    font-weight: 500;
}
.expired-service-content a{
    background: #FF5722;
    color: #fff;
    margin: auto auto auto 10px;
    border: 0px;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}
.custom-file-upload {
    border: 2px dashed #6c757d;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: auto;
}

.custom-file-upload:hover {
    background-color: #e9ecef;
    border-color: #495057;
}

.custom-file-upload i {
    font-size: 40px;
    color: #6c757d;
}

.custom-file-upload span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
    color: #343a40;
}

.custom-file-upload-input {
    display: none;
}
.custom-file-upload-success {
    text-align: center;
    margin-top: 10px;
}
.custom-file-upload-error {
    text-align: center;
    margin-top: 10px;
}
.custom-file-upload-template span {
    color: #0096ff!important;
}
.custom-file-upload-template i {
    color: #0096ff;
}
.admin-setting-form {
    display: flex;
    width: 50%;
    margin: auto;
    flex-wrap: wrap;
    gap: 10px;
}
.admin-setting-form .form-group {
    flex: 0 0 calc(50% - 10px);
    box-sizing: border-box;
}
.group-service-type-pro {
    color: #058700;
    font-weight: bold;
}