/*Variables Define*/
:root {
    --bs-body-bg:#2B2B2B;
    --bs-body-font-family:'Poppins', sans-serif;
    --bs-gutter-x:15px;
    --bs-gutter-y:15px;
    --bs-border-color:#00000026;
    --app-color-1:#6B6B6B;
    --app-color-2:#D2DB45;
    --app-color-3:#2B2B2B;
    --app-color-4:#E2E2E2;
    --app-color-5:#d5e2ed;
    --app-color-6:#f9f9f9;
    --app-color-7:#dddddd;
    --app-color-white:#ffffff;
}

*:focus-visible, .highlighted {
  outline: 2px solid var(--app-color-1) !important; /* Example outline style for focus-visible */
}

.form-control, .form-select {
  color: var(--app-color-3);
  background-color: var(--app-color-white);
}

.form-control::placeholder {
  color: var(--app-color-3);
  opacity: 0.5;
}

.form-control:focus, .form-select:focus {
    border-color:#00000026;
    box-shadow:0 3px 6px #00000026;
    background-color: var(--app-color-white);
}

.form-check-input {
  background-color: var(--app-color-white);
}

.btn:focus-visible {
  color: inherit;
  background-color: inherit;
  border-color: 0;
  outline: 0;
  box-shadow: none;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  --bs-btn-active-bg:var(--app-color-1);
}

.dropdown-item {
  --bs-dropdown-link-color:var(--app-color-3);
}

.dropdown-item:focus, .dropdown-item:hover {
  --bs-dropdown-link-hover-bg:var(--app-color-2);
  --bs-dropdown-link-hover-color:#ffffff;
}

.dropdown-item.active, .dropdown-item:active {
  --bs-dropdown-link-active-bg:var(--app-color-2);
}

/*Notifications*/
.toast_notifications {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: none;
}

.toast_notifications_c {
  position: relative;
  background: #ffffff;
  border: var(--bs-border-width) solid var(--bs-border-color);
  box-shadow:0 3px 6px #00000026;
  padding: 10px;
  border-radius: 10px;
  color: var(--bs-body-color);
}

.toast_notifications_icon {
  font-size: 20px;
  height: 30px;
  width: 30px;
}

.toast_notifications_icon, .toast_notifications_close {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.toast_notifications_success .toast_notifications_icon {
  background: #198754;
}

.toast_notifications_danger .toast_notifications_icon {
  background: #dc3545;
}

.toast_notifications_close {
  background: #6c757d;
  cursor: pointer;
  font-size: 15px;
  height: 20px;
  width: 20px;
}

.toast_notifications_text {
  padding: 0 10px;
  font-size: 13px;
}

/*Upload*/
.upload-progress-bg {
  padding: 15px;
  border-radius: 5px;
}

.loading2 {
  width: 100%;
  position: relative;
  clear: both;
}

.loading-bar2 {
  background: var(--app-color-4);
  height: 15px;
  border-radius: 8px;
  overflow: hidden;
  margin: 15px 0;
}

.loading-color2 {
  background: var(--app-color-3);
  height: 15px;
  width: 0%;
  border-radius: 8px;
  transition: width .6s ease;
}

.file-name-holder {
  display: none;
}

.uploaded-files {
  margin: 15px -10px;
  padding: 0;
}

.upload_file_c {
  position: relative;
  overflow: hidden;
}

.upload_file_c input#upload_file {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
  width: 100%;
}

.oldfashion {
  text-align: center;
}

.upload-box-c {
  box-shadow: 0px 2px 6px #00000053;
  border-radius:6px;
  margin-bottom: 30px;
}

.upload-box-data {
  padding: 12px;
}

.upload-box-data .img-c {
  margin-bottom: 10px;
  min-height: 155px;
  position: relative;
}

.upload-box-data .img-c img {
  position: absolute;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  max-width: 140px;
  max-height: 140px;
}

.uploaded-files .upload-box-data .del-photo, 
.uploaded-files .upload-box-data .del-diag-photo,
.upload-box-data .del-inline-img {
  color: #000000;
  font-size: 22px;
  cursor: pointer;
}

.uploaded-files .upload-box-data .img-c {
  margin-bottom: 0;
  overflow: hidden;
}

.upload_error_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.upload_error_list li {
  border-bottom: 1px solid var(--app-color-5);
  padding: 10px 0;
}

.upload_error_list li:last-child {
  border:0;
}

.upload_error_list i {
  color: var(--app-color-1);
  font-size: 16px;
}

.image_type_badge {
  position: absolute;
  bottom: 5px;
  right: 5px;
  z-index: 1;
}

.ordering_btn {
  cursor: move;
}

/*Defaults*/
.text-color-1 {
  color: var(--app-color-1);
}
.text-color-2 {
  color: var(--app-color-2);
}
.text-color-3 {
  color: var(--app-color-3);
}
.text-color-4 {
  color: var(--app-color-4);
}
.text-color-5 {
  color: var(--app-color-5);
}

.bg-color-1 {
  background: var(--app-color-1);
}
.bg-color-2 {
  background: var(--app-color-2);
}
.bg-color-3 {
  background: var(--app-color-3);
}
.bg-color-4 {
  background: var(--app-color-4);
}
.bg-color-5 {
  background: var(--app-color-5);
}
.bg-color-6 {
  background: var(--app-color-6);
}

.break-color-5 {
  padding-top: 15px;
  border-bottom: 1px solid var(--app-color-5);
  margin-bottom: 15px;
}

.bdr-top-color-5 {
  border-top: 1px solid var(--app-color-5);
}

.bdr-radius-1 {
  border-radius: 10px;
}

.min-w-0 {
  min-width: 0;
}

.w-135-px {
  width: 135px;
}

.m_t_b_auto {
	margin-top: auto;
	margin-bottom: auto;
}

.custom-card {
    --bs-card-bg: var(--app-color-4);
    --bs-card-color:#2B2B2B;
    --bs-card-border-color:var(--app-color-1);
}

.tbl-app-checkbox:checked {
  background-color: var(--app-color-2);
  border-color: var(--app-color-2);
}

.app-checkbox:checked {
  background-color: var(--app-color-1);
  border-color: var(--app-color-1);
}

.tbl-app-checkbox:focus, .app-checkbox:focus {
  border-color:#00000026;
  box-shadow:0 3px 6px #00000026;
}

.field-err {
  position: relative;
}

.sty-err-field {
  color: #ffffff;
  font-size: 16px;
  background-color: var(--app-color-1);
  padding: 10px;
  margin-top: 5px;
  border-radius: var(--bs-border-radius);
}

.sty-err-field:before {
  content: "\f057";
  font-family: "Font Awesome 5 Free";
  margin-right: 5px;
  position: relative;
  top: 1px;
}

.white-space-nowrap {
  white-space: nowrap;
}

.ctm-lb-form-select {
  color: var(--app-color-2);
  background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230089CD' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.ctm-db-btn {
    background-color:var(--app-color-1);
    border-color:var(--app-color-1);
    color: #ffffff;
}

.ctm-db2-btn {
  background-color:var(--app-color-3);
  border-color:var(--app-color-3);
  color: #ffffff;
}

.ctm-lb-btn {
  background-color:var(--app-color-2);
  border-color:var(--app-color-2);
  color: #ffffff;
}

.ctm-lb2-btn {
  background-color:var(--app-color-4);
  border-color:var(--app-color-4);
  color: var(--app-color-1);
}

.ctm-w-btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--app-color-2);
}

.ctm-lb-btn-hvr:hover, .ctm-lb-btn-hvr:active, .ctm-lb-btn-hvr.show, .ctm-lb-btn-hvr:first-child:active, :not(.btn-check) + .ctm-lb-btn-hvr:active {
    color: var(--app-color-3);
    background-color: var(--app-color-2);
    border-color: var(--app-color-2);
    --bs-btn-active-bg: var(--app-color-2);
}

.ctm-db-btn-hvr:hover, .ctm-db-btn-hvr:active, .ctm-db-btn-hvr.show, .ctm-db-btn-hvr:first-child:active, :not(.btn-check) + .ctm-db-btn-hvr:active {
  color: #ffffff;
  background-color: var(--app-color-1);
  border-color: var(--app-color-1);
  --bs-btn-active-bg: var(--app-color-1);
}

.ctm-db2-btn-hvr:hover, .ctm-db2-btn-hvr:active, .ctm-db2-btn-hvr.show, .ctm-db2-btn-hvr:first-child:active, :not(.btn-check) + .ctm-db2-btn-hvr:active {
  color: #ffffff;
  background-color: var(--app-color-3);
  border-color: var(--app-color-3);
  --bs-btn-active-bg: var(--app-color-3);
}

.ctm-w-btn-hvr:hover, .ctm-w-btn-hvr:active, .ctm-w-btn-hvr.show, .ctm-w-btn-hvr:first-child:active, :not(.btn-check) + .ctm-w-btn-hvr:active {
  color: var(--app-color-2);
  background-color: #ffffff;
  border-color: #ffffff;
  --bs-btn-active-bg: #ffffff;
}

.btn_loader_trigger {
    -webkit-animation: all 2s 0.25s linear;
          animation: all 2s 0.25s linear;
}

.btn_loader.btn_onclic {
    border: 5px solid var(--app-color-1) !important;
    border-color: var(--app-color-2) !important;
    border-left-color: var(--app-color-1) !important;
    border-radius: 50%;
    min-width: var(--app-loader-btn-size);
    width: var(--app-loader-btn-size) !important;
    height: var(--app-loader-btn-size);
    background: none;
    border-width: 5px;
    font-size: 0;
    -webkit-animation: circle-rotating 2s 0.25s linear infinite;
    animation: circle-rotating 2s 0.25s linear infinite;
    cursor: default;
}

.btn_onclic:after {
  content: "";
}

@-webkit-keyframes circle-rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes circle-rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.shadow_block {
  padding: 10px;
  border-radius: 10px;
  border: var(--bs-border-width) solid var(--bs-border-color);
  box-shadow: 0 3px 6px #00000026;
}

.shadow_block_hvr:hover {
  border-color: var(--app-color-3);
}

/*App Body*/
html, body {
  height: 100%;
}

.app-body-left {
  background-color: var(--app-color-1);
  border-radius: 10px;
  padding: 10px 0;
}

.logo-c {
  padding: 10px;
}

.app-body-left .quick-mnu-open-close {
  margin-top: 20px;
  padding: 0 10px;
}

.quick-mnu-open-close a, .app-body-left .shortcuts-mnu-c a {
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
}

.shortcuts-mnu-c {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  padding: 0 10px;
  scrollbar-width: none;
}

.shortcuts-mnu-c::-webkit-scrollbar {
  width: 0; /* Set the width of the scrollbar */
}

.app-body-left .qm-link-c {
  border: 1px solid #ffffff;
}

.quick-mnu-open-close a {
  background: var(--app-color-3);
}

.quick-mnu-open-close a.active, .quick-mnu-open-close a:hover, .app-body-left .shortcuts-mnu-c a:hover, .quick-mnu-open-close a:hover {
  background: #ffffff;
  color: var(--app-color-2);
}

.quick-mnu-open-close a.active {
  background: var(--app-color-4);
  color: var(--app-color-3);
}

.app-body-left .qm-mnu-more {
  background: var(--app-color-2);
}

/*Header*/
.abr-logo {
  background: var(--app-color-1);
  color: #ffffff;
  border-radius: 10px;
  height: 100%;
  text-decoration: none;
  padding: 0 15px;
}

.header-top {
  background: var(--app-color-2);
  border-radius: 10px;
  padding: 10px;
}

.header-top .client-logo {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 10px;
}

.header-top .client-logo img {
  max-width: 35px;
  max-height: 35px;
}

.header-top .client-name {
  margin-left: 10px;
  font-size: 16px;
  color: #ffffff;
}

.header-menu-c ul {
  list-style: none;
  font-size: 16px;
  color: #ffffff;
  padding: 0;
  margin: 0;
}

.header-menu-c ul li {
  display: flex;
  align-items: center;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ffffff;
}

.header-menu-c ul li:first-child {
  padding-left: 0;
  margin-left: 0;
  border-left: 0;
}

.header-menu-c ul a {
}

.header-menu-c ul a i {
  font-size: 24px;
  color: #ffffff;
}

.help-btn {
  font-size: 31px;
  border-radius: 10px;
  height: 100%;
  text-decoration: none;
  padding: 0 15px;
}

/*App Body Container*/
.app-body-container-left-mc {
  transition: width 0.5s ease-out, margin 0.5s ease-out, transform 0.5s ease-out;
  overflow: hidden;
}

@media (min-width: 992px) {
  .app-body-container-left-mc {
    transform: translateX(0);
    width: 280px;
  }
}

@media (max-width: 991.98px) {
  .app-body-container-left-mc {
    position: absolute;
    height: 100%;
    z-index: 1;
  }

  .app-body-container-left-mc.hide_div_left_sm {
    margin-left: -280px;
    transform: translateX(-100%);
  }
}

.app-body-container-left-mc.hide_div_left {
  margin-left: -280px;
  transform: translateX(-100%);
}

.app-body-container-left {
  background-color: var(--app-color-4);
  border-radius: 10px;
  padding: 10px;
}

.search-field-c {
  position: relative;
}

.search-field-c input {
  padding-left: 30px;
}

.search-field-c::after {
  position: absolute;
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  color: var(--app-color-1);
  left: 10px;
}

.app-body-menu-c {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  top: 0;
  padding: 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* For WebKit browsers (Chrome, Safari) */
.app-body-menu-c::-webkit-scrollbar {
  width: 6px; /* Set the width of the scrollbar */
  
}

.app-body-menu-c::-webkit-scrollbar-thumb {
  border-radius: 6px;
  background-color: rgba(0, 0, 0, 0.3); /* Set the color of the scrollbar thumb */
  
}

.app-body-menu-c::-webkit-scrollbar-track {
  background-color: transparent; /* Set the color of the scrollbar track */
  
}

.app-body-mnu ul {
 margin: 0;
 padding: 0;
 list-style: none;
}

.app-body-mnu ul li {
  border-bottom: 1px solid var(--app-color-1);
}

.app-body-mnu ul li:last-child {
  border-bottom: 0;
}

.app-body-mnu ul a {
  text-decoration: none;
  color: var(--app-color-1);
  font-size: 16px;
  display: flex;
  align-items: center;
  padding: 10px;
  margin: 0 -10px;
}

.app-body-mnu ul a:hover {
  background-color: var(--app-color-3);
  color: #ffffff;
  border-radius: 10px;
}

.app-body-mnu ul li .up_down_nav {
  margin-right: 0;
  transition: transform .1s ease-in-out;
}

.app-body-mnu ul li.show_cild .up_down_nav {
  transform: rotate(180deg);
}

.app-body-mnu ul li.active > a {
  font-weight: 600;
}

.app-body-mnu ul a i {
  font-size: 12px;
  width: 15px;
  text-align: center;
  margin-right: 15px;
}

.app-body-mnu ul li ul {
  padding-top: 0;
  padding-bottom: 10px;
}

.app-body-mnu ul li ul li {
  border-left: 1px solid var(--app-color-3);
  border-bottom: 0;
  margin-left: 7px;
}

.app-body-mnu ul li ul li a {
  font-size: 12px;
  padding:5px 0 5px 30px;
}

.app-body-container-right {
  border-radius: 10px;
}

.app-filter-by-c {
  background: var(--app-color-4);
  padding: 10px;
  margin-top: 10px;
  border-radius: 10px;
  display: none;
}

.hidden_chkbx_c, .hidden_rdbx_c {
  position: relative;
}

.hidden_chkbx, .hidden_rdbx {
  display: none;
}

.hidden_chkbx_c .ctm-db2-btn, .hidden_rdbx_c .ctm-db2-btn {
  padding-left: 30px;
}

.hidden_chkbx_c .ctm-db2-btn::after, .hidden_rdbx_c .ctm-db2-btn::after {
  position: absolute;
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  left: 10px;
}

.app-body-search-content a {
 color: var(--app-color-3);
 text-decoration: none;
}

/*Breadcrumbs*/
.app-breadcrumbs {
  background: var(--app-color-1);
  border-radius: 10px;
  padding: 10px;
  color: #ffffff;
}

.app-breadcrumbs .bc-item {
  padding:0 10px;
}

.app-breadcrumbs a {
  color: #ffffff;
  text-decoration: none;
}

.app-breadcrumbs .bc-divider {
  font-size: 12px;
  font-weight: 600;
}

.container-scroll {
  overflow-y: auto;
  overflow-x: hidden;
}

.abcr-head {
  padding: 15px 0;
  border-bottom:1px solid var(--app-color-5);
  margin-bottom: 15px;
}

.abcr-head h1 {
  color: var(--app-color-1);
  font-size: 22px;
  margin: 0;
}

/*Tabs*/
.app-tabs-container {
  padding: 10px;
  background: var(--app-color-4);
  border-radius: var(--bs-border-radius);
  margin-bottom: 10px;
}

.app-tabs-scroll {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}

.app-tabs-scroll::-webkit-scrollbar {
  display: none; /* Hide scrollbar on webkit browsers */
}

.app-tabs-pill {
  border-right: 2px solid var(--app-color-5);
  padding-right: 10px;
  margin-right: 10px;
}

.app-tabs-pill:last-child {
  border-right: 0;
  padding-right: 0;
  margin-right: 0;
}

/*Block Table*/
.block-tbl {
  border: 1px solid var(--app-color-7);
}

.w-block-1 {
  width: 215px;
}

/*@media (max-width: 576px) {
  .w-block-1 {
    width: 20%;
  } 
}*/

.block-tbl img {
  max-width: 100px;
}

/*Table*/
.app-tbl {
  margin: 10px 0;
  border: 0;
}

.app-tbl thead th {
  background: var(--app-color-1);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
}

.app-tbl thead th:first-child {
  border-radius:10px 0 0 10px;
}

.app-tbl thead th:last-child {
  border-radius:0 10px 10px 0;
}

.app-tbl tbody td {
  font-size: 16px;
  border-bottom: 1px solid var(--app-color-5);
}

.app-tbl > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--app-color-4);
}

.app-tbl tfoot, .app-tbl tfoot td {
  border: 0;
}

.tbl-nowrap {
  white-space: nowrap;
}

/*List*/
.app-ul {
  margin: 10px 0;
}

.app-list-group {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  border-left: 5px solid var(--app-color-2);
  border-top: 1px solid var(--app-color-5);
}

.app-list-group-item {
  background-color: #ffffff;
  border-bottom: 1px solid var(--app-color-5);
  padding: 10px 0 10px 10px;
}

.ui-sortable-helper {
  visibility: hidden;
}

.ui-sortable-placeholder {
  background: var(--app-color-4) none repeat scroll 0 0 !important;
  border: 1px solid var(--app-color-5) !important;
  visibility: visible !important;
}

.catg_ordering_btn {
  cursor: move;
}

/*Pagination*/
.app-pagination {
  background: var(--app-color-1);
  border-radius: 10px;
  padding: 10px;
  color: #ffffff;
}

.app-pagination .pages-c a, .app-pagination .pages-c span {
  margin: 2px;
  min-width: 30px;
}

/*ListSelect*/
.listSelect .dropdown-toggle::after {
  display: none;
}

.listSelect .dropdown-toggle i {
  font-size: 12px;
}

.listSelect .dropdown-menu.show{
  width: 100%;
  overflow: hidden;
}

.lS_overflow_min_h {
  min-height: 24px;
  text-overflow: ellipsis;
}

.lS_ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lS_ul_c {
  position: relative;
}

.lS_ul_scroll {
  overflow-x: hidden;
  overflow-y: auto;
}

.lS_ul li {
  user-select: none;
  color: var(--app-color-3);
  font-size: 1rem;
  padding: 5px 5px 5px 30px;
  position: relative;
}

.lS_ul li i {
  position: absolute;
  left: 10px;
}

.lS_ul li:hover, .lS_ul li.scrlSelect {
  background: var(--app-color-4);
}

/*Login*/
.abs-full-page {
	position: absolute;	
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow-x: hidden;
	overflow-y: auto;
}

.login_credits {
  color: var(--app-color-white);
}

.login_credits a {
  color: var(--app-color-2);
  text-decoration: none;
}

.dialog-animated {
  min-height: 100%;
  margin: 0 0 0 auto;
  overflow: hidden;
}

.modal-header {
  border-bottom: var(--bs-modal-header-border-width) solid var(--app-color-5);
}

.dialog-animated .modal-content {
  border: 0;
}

.dialog-animated .modal-body {
  overflow-y: auto;
  overflow-x: hidden;
}

.scroll_y_div {
  overflow-y: auto;
  overflow-x: hidden;
}

.modal.fade .modal-dialog.dialog-animated {
  -webkit-transform: translate(100%, 0)scale(1);
  transform: translate(100%, 0)scale(1);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.modal.fade.show .modal-dialog.dialog-animated {
  height: 100%;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}