.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.row-gap-24 {
  row-gap: 24px;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.drop-fs {
  font-size: 12px;
}

.fs-12 {
  font-size: 12px;
}

.fs-11 {
  font-size: 11px;
}

::-webkit-scrollbar {
  width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #FDFDFD;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #555;
  border-radius: 0px;
}

body {
  font-family: "Noto Kufi Arabic", sans-serif;
  background-color: #fdfdfd;
  color: #000000;
  font-size: 14px;
  min-width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: black;
}
a:hover {
  color: black;
}

button {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
}

.form-control {
  font-size: 14px !important;
  border: 1px solid #ddd !important;
}

.main-section {
  padding: 1.5rem 0;
  min-height: calc(100vh - 41.88px - 54.5px - 69px);
}

.modal-header .modal-title {
  font-size: 15px !important;
}
.modal-header .btn-close {
  margin: unset !important;
}

.main-table {
  width: 100%;
  border-radius: 8px 8px 0px 0px;
  border: 1px solid #e0e0e0;
}
.main-table thead {
  background: #fff;
  border: 1px solid #e0e0e0;
}
.main-table thead tr th {
  padding: 12px 13px;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
}
.main-table tbody tr.active {
  background: rgba(54, 159, 255, 0.19);
}
.main-table tbody tr td {
  padding: 10px 13px;
  font-weight: 400;
  font-size: 14px;
  text-align: right;
  vertical-align: middle;
}
.main-table tbody tr td .user {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.main-table tbody tr td .user img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-table tbody tr td .user span {
  font-weight: 500;
  font-size: 15px;
}
.main-table tbody tr td .form-check .form-check-input {
  width: 3.4em !important;
  height: 1.7em;
}

.app {
  position: relative;
  min-height: calc(100vh - 66px);
  overflow-x: hidden;
  display: flex;
}
.app .sidebar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  height: 100%;
  width: 216px;
  z-index: 11;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.16);
  transition: 300ms;
  position: absolute;
  right: 0;
  top: 0%;
}
.app .sidebar::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}
@media (max-width: 991.98px) {
  .app .sidebar {
    right: -216px;
  }
}
.app .sidebar .tog-active {
  color: #9c9c9c;
  cursor: pointer;
  margin: 20px 15px 9px auto;
  font-size: 20px;
  display: block;
}
.app .sidebar .list {
  padding: 0;
  margin: 0;
  overflow-y: auto;
  height: 100%;
}
.app .sidebar .list .list-item {
  white-space: nowrap;
}
.app .sidebar .list .list-item a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #9c9c9c;
  padding: 11px 15px;
  gap: 7px;
  font-weight: 400;
}
.app .sidebar .list .list-item a svg:not(.arrow),
.app .sidebar .list .list-item a i:not(.arrow) {
  font-size: 18px;
  width: 20px;
  color: #2E5789 !important;
  text-shadow: none;
  margin-left: 10px;
}
.app .sidebar .list .list-item a .arrow {
  margin: 0;
  margin-right: 6px;
  font-size: 14px;
  font-weight: 300;
  transition: transform ease-in-out 0.3s;
}
.app .sidebar .list .list-item a:not(.active):hover {
  cursor: pointer;
  color: #2E5789;
}
.app .sidebar .list .list-item a .badge-count {
  position: absolute;
  background-color: #ed4e2a;
  top: 50%;
  left: 45px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  min-width: 17px;
  height: 17px;
  font-size: 10px;
}
.app .sidebar .list .list-item a[aria-expanded=true] .arrow {
  transform: rotate(90deg);
}
.app .sidebar .list .list-item.active a {
  color: #2E5789;
}
.app .sidebar .list .list-item.active a ::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  border-radius: 50px;
  height: 70%;
  right: 3px;
  background-color: #2E5789;
}
.app .sidebar .list .item-collapse {
  margin-top: 4px;
  margin-right: 22px;
  list-style: none;
  position: relative;
}
.app .sidebar .list .item-collapse::before {
  position: absolute;
  right: -7px;
  top: 0;
  border-radius: 10px;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #2E5789;
}
.app .sidebar .list .item-collapse .list-item a {
  font-size: 14px;
  padding: 12px;
  height: unset !important;
}
.app .sidebar .list .item-collapse .list-item a svg,
.app .sidebar .list .item-collapse .list-item a i {
  font-size: 15px;
  width: 15px;
}
.app .sidebar .list .item-collapse .list-item a .badge-count {
  min-width: 20px;
  font-size: 12px;
  height: 20px;
  left: 32px;
}
.app .main-side {
  width: calc(100% - 216px);
  margin: 0 auto 0 0;
  overflow-y: auto;
  transition: 300ms;
}
.app .main-side .content {
  padding: 25px;
}
@media (max-width: 991.98px) {
  .app .main-side {
    width: 100%;
  }
}
.app.active .sidebar {
  width: 50px;
}
@media (max-width: 991.98px) {
  .app.active .sidebar {
    width: 216px;
    right: 0;
  }
}
.app.active .sidebar .list {
  transition: 300ms;
}
.app.active .sidebar .list .list-item {
  overflow: hidden;
}
.app.active .sidebar .list .list-item a .badge-count {
  display: none;
}
.app.active .main-side {
  width: calc(100% - 50px);
}

.option-section .a_content {
  position: relative;
}

.option-section .a_content::before {
  content: "";
  position: absolute;
  transform: rotate(180deg);
  width: 6%;
  height: 45px;
  top: 23px;
  right: 4px;
  z-index: 1111;
  border: 1px dashed #999;
  visibility: visible;
  opacity: 1;
}

.option-section {
  display: flex;
  flex-direction: column;
}

.option-section .item {
  padding: 7px 10px;
  border-radius: 4px;
  color: #c2c7d0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  display: flex;
  gap: 10px;
  position: relative;
  font-size: 13px;
  align-items: center;
}

.option-section .item:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.option-section .collapse-border .item::before {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 16px;
  height: 1px;
  background-color: #c2c7d0;
}

.option-section .item .arrow-after {
  display: none;
}

.option-section .item[aria-expanded=true] .arrow-before {
  display: none;
}

.option-section .item[aria-expanded=true] .arrow-after {
  display: block;
}

.option-section .item .arrow-after,
.option-section .item .arrow-before {
  color: #c2c7d0;
  font-size: 14px;
}

.option-section .item .content-item {
  display: flex;
  gap: 10px;
  align-items: center;
}

.option-section .item .content-item i,
.option-section .item .content-item svg {
  color: #c2c7d0;
  font-size: 16px;
}

.option-section .collapse-border {
  position: relative;
}

.option-section .collapse-border::before {
  content: "";
  position: absolute;
  right: 13.5px;
  top: 0;
  height: calc(100% - 17px);
  width: 1px;
  background-color: #c2c7d0;
}

.option-section .mar-side {
  margin-right: 30px;
}

.main-navbar {
  z-index: 1111;
  background: #ffffff;
  padding: 10px 0;
  border-bottom: 1px solid #e6e6e6;
}
.main-navbar .tog-active {
  font-size: 20px;
  color: #9c9c9c;
  height: auto;
  cursor: pointer;
}
.main-navbar .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991.98px) {
  .main-navbar .logo {
    width: 100%;
    justify-content: space-between;
  }
}
.main-navbar .logo .img {
  width: 35px;
  height: auto;
  filter: grayscale(100%) invert(100%) brightness(200%);
}
.main-navbar .logo .img.lg {
  width: 120px;
}
.main-navbar .logo .text {
  color: #737373;
  white-space: nowrap;
  font-size: 16px;
}
.main-navbar .list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .main-navbar .list-item .btn {
    font-size: 12px !important;
    padding: 4px !important;
  }
}
.main-navbar .icon-nav .icon {
  font-size: 20px;
  width: 20px;
}
.main-navbar .icon-nav .main-badge {
  position: absolute;
  right: -10px;
  color: #fff;
  top: -10px;
  z-index: 2;
}
.main-navbar .icon-nav .dropdown-toggle {
  position: relative;
}
.main-navbar .icon-nav .dropdown-toggle::after {
  display: none;
}
.main-navbar .info-user {
  padding-right: 2rem;
  border-right: 1px solid #cccccc;
}
.main-navbar .info-user .content::after {
  content: none;
}
.main-navbar .info-user .content .text {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.main-navbar .info-user .content .text .name {
  color: #000000;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}
.main-navbar .info-user .content .text .dic {
  color: #000000;
  font-size: 12px;
  opacity: 0.8;
}
.main-navbar .info-user .content .img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: 1px solid #c1c1c1;
  justify-content: center;
  overflow: hidden;
}
.main-navbar .info-user .content .img .icon {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.hide {
  display: none;
}

.dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-content ul li > a {
  color: var(--color-1);
  display: flex;
  align-items: center;
  padding: 5px 10px;
  box-shadow: 0 0 1px 1px #dddddd;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.3s;
}

.dropdown-content ul li > a:hover,
.dropdown-content ul li > a:focus {
  color: #000;
}

.rtl-dashboard .dropdown-content ul li > a {
  text-align: right;
  direction: rtl;
}

.ltr-dashboard .dropdown-content ul li > a {
  text-align: left;
  direction: ltr;
}

.rtl-dashboard .dropdown-content ul li span {
  margin-right: 5px;
}

.ltr-dashboard .dropdown-content ul li span {
  margin-left: 5px;
}

.language-dropdown img {
  height: 100%;
  border-radius: 50%;
  transition: 0.3s;
}

.language-dropdown .dropdown-btn:hover img {
  box-shadow: var(--main-box-shadow-sm);
}

.notification-dropdown {
  transition: 0.3s;
}

.notification-dropdown .dropdown-btn:hover {
  text-shadow: var(--main-text-shadow);
}

.notification-dropdown .dropdown-content {
  width: 300px;
}

.notification-dropdown .dropdown-content li {
  margin: 5px 2%;
  background: #f7f7f7;
  display: inline-block;
  width: 96%;
}

.notification-dropdown .dropdown-content li > a {
  padding: 10px;
  box-shadow: none;
  align-items: start;
  display: block;
  clear: both;
  line-height: 1.42857143;
  white-space: nowrap;
}

.notification-dropdown .dropdown-content li span {
  white-space: normal;
  margin: 0 !important;
  font-weight: 400;
}

.rtl-dashboard .notification-dropdown .dropdown-content li span {
  text-align: right;
}

.ltr-dashboard .notification-dropdown .dropdown-content li span {
  text-align: left;
}

.notification-sender {
  font-weight: bolder;
}

.notification-message {
  display: block !important;
  font-size: 11px;
}

.all-notification {
  text-align: center !important;
}

.notification-dropdown .material-icons {
  font-size: 35px;
}

.notification-image img {
  border-radius: 2px 2px 2px 2px;
  -webkit-border-radius: 2px 2px 2px 2px;
  width: 40px;
  vertical-align: middle;
}

.rtl-dashboard .notification-image img {
  float: right;
  margin-left: 10px;
}

.ltr-dashboard .notification-image img {
  float: left;
  margin-right: 10px;
}

.profile-dropdown {
  /* background: var(--color-1); */
  color: white;
  padding: 0 10px;
  border-radius: 13px;
  transition: 0.3s;
}

.rtl-dashboard .profile-dropdown > .dropdown-btn > span {
  margin-right: 5px;
}

.ltr-dashboard .profile-dropdown > .dropdown-btn > span {
  margin-left: 5px;
}

.balance {
  padding: 0 10px;
  background: var(--color-2);
  color: white;
  border-radius: 13px;
}

.rtl-dashboard .balance {
  direction: rtl;
}

.ltr-dashboard .balance {
  direction: ltr;
}

.balance span {
  padding: 0 5px;
  font-weight: bold;
  color: #febb4f;
}

.menu-toggle-btn {
  padding: 2px 0 0 2px !important;
}

.menu-toggle-btn label {
  cursor: pointer;
  transition: 0.5s ease;
  height: 32px;
}

.menu-toggle-btn label:hover .bar {
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.3);
}

.menu-toggle-btn label .bar {
  width: 23px;
  height: 3px;
  background: #253848;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  border-radius: 2px;
  transition: 0.4s ease;
}

.menu-toggle-btn label .bar:not(:first-child) {
  margin-top: 5px;
}

@media (max-width: 767.98px) {
  .balance {
    display: none !important;
  }
  .selector-row {
    background: #ccc;
  }
  .selector-row::before {
    background: #888;
  }
}
/* ------------------------------------------------------------------------------------------------
-------------------------------------- header -----------------------------------------------------
------------------------------------------------------------------------------------------------ */
td,
th {
  text-align: center;
}

/* ------------------------------------------------------------------------------------------------
------------------ End Header ----------------------------------------------------------------------
------------------------------------------------------------------------------------------------ */
/* ------------------------------------------------------------------------------------------------
------------------  [ Footer ] --------------------------------------------------------------------
------------------------------------------------------------------------------------------------ */
.bg-light-color {
  background-color: #1387a2;
}

.last-footer {
  background-color: #1387a2;
  color: #fff;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  margin-bottom: -2px;
}

@media (max-width: 575.98px) {
  .last-footer {
    display: block;
    text-align: center;
  }
  .last-footer div {
    margin-bottom: 10px;
  }
}
.selected .selector-row,
.selector-row::before,
.rtl-dashboard .selector-row::after {
  background: rgba(255, 255, 255, 0.8);
}

/* ------------------------------------------------------------------------------------------------
------------------  [ End Footer ] ----------------------------------------------------------------
------------------------------------------------------------------------------------------------ */
.table > :not(caption) > * > * {
  padding: 14px;
}

th {
  font-weight: bold;
  color: #000000;
  font-size: 13px;
}

td {
  font-size: 12px;
  vertical-align: middle;
}

td #edit,
td #delete {
  margin: 5px;
  padding: 4px 7px;
  font-size: 10px;
}

td,
th {
  text-align: center;
  border-color: #ededed;
}

.index-dd {
  background-color: rgba(131, 194, 247, 0.3803921569);
  display: flex;
  align-items: center;
  flex-direction: column;
  color: #253848;
  font-size: 14px;
  justify-content: center;
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 20px 0;
  height: 150px;
}

.bg-warning {
  background-color: #43c306 !important;
}

.login-btn {
  padding: 10px;
  border-radius: 6px;
  border: 0;
  background-color: #33cd99;
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
}

.mo3 {
  padding: 8px;
  border-radius: 5px;
  background-color: transparent;
  border: 1px solid #918f8f;
  color: #5a5a5a;
  flex-grow: 1;
  transition: 0.2s all ease-in-out;
}

.mo3:hover {
  background-color: #33cd99;
  border: 1px solid #33cd99;
  color: #fff;
}

.scrl {
  overflow: auto;
}

/*
/* Start invoice */
.box-invoice {
  border: 2px solid black;
  border-radius: 10px;
  padding: 0 10px;
  margin-bottom: 8px;
}

.box-invoice p {
  margin-bottom: 2px;
  font-size: 16px;
}

.box-invoice h6 {
  font-size: 14px;
}

.table-invoice .duble-border {
  border-bottom-width: 2px;
  border-bottom-color: black;
}

.table-invoice {
  border: 1px solid #bbb !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.table-invoice td {
  border-bottom: 1px solid #bbb !important;
  border-top: 1px solid #bbb !important;
  border-right: 1px solid #bbb !important;
  border-left: 1px solid #bbb !important;
  padding: 10px !important;
  font-size: 16px;
  font-weight: bold;
}

.table-invoice th {
  border-top: 1px solid #bbb !important;
  background-color: #f4f4f4;
  border-right: 1px solid #bbb !important;
  font-size: 18px !important;
  padding: 10px !important;
  font-weight: bolder;
  border-bottom: 1px solid #bbb !important;
  border-left: 1px solid #bbb !important;
}

.table-invoice .td-head {
  background-color: #f4f4f4;
  border-left: 1px solid #bbb !important;
  text-align: right;
  font-size: 18px !important;
  width: 30%;
}

.barcode {
  max-width: 150px !important;
}

.print {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.print:hover {
  color: white;
}

@media print {
  .print {
    display: none;
  }
  .box-invoice .col-md-4.p-3 {
    width: 33.3333333333%;
  }
  .parent-barcode {
    width: 25%;
  }
  .table-info {
    width: 75%;
  }
  .table {
    margin: 0;
  }
  ::-webkit-scrollbar {
    width: 0px;
  }
  .dashboard-card {
    visibility: hidden;
  }
  .print-margin {
    margin-top: -120px !important;
  }
}
/* End invoice */
a {
  text-decoration: none;
  color: black;
}

a:hover {
  color: #888;
}

.form-control {
  font-size: 14px !important;
  border: 1px solid #ddd !important;
  direction: rtl;
}

.form-control::-moz-placeholder {
  font-size: 12px;
}

.form-control::placeholder {
  font-size: 12px;
}

.form-control:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 0.4s;
  transition: 0.4s;
}

.form-control:focus::placeholder {
  opacity: 0;
  transition: 0.4s;
}

section.page-login {
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 12px;
  align-items: center;
  background-color: rgb(249, 250, 251);
}

section.page-login .form-login {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  max-width: 56rem;
  margin-left: auto;
  overflow: hidden;
  margin-right: auto;
  height: 100%;
  border-radius: 0.5rem;
  background-color: #fff;
  border: 0 solid #d5d6d7;
}

section.page-login .form-login .box-login {
  flex-direction: column;
  display: flex;
}

@media (min-width: 768px) {
  section.page-login .form-login .box-login {
    flex-direction: row;
  }
}
section.page-login .form-login .box-login .img-login {
  height: 8rem;
}

@media (min-width: 768px) {
  section.page-login .form-login .box-login .img-login {
    height: auto;
    width: 50%;
  }
}
section.page-login .form-login .box-login .img-login img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

section.page-login .form-login .box-login .content-login {
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  section.page-login .form-login .box-login .content-login {
    width: 50%;
  }
}
section.page-login .form-login .box-login .content-login .title {
  margin-bottom: 1rem;
  font-size: 16px;
  font-weight: 600;
}

section.page-login .form-login .box-login .content-login .lable {
  margin-bottom: 4px;
}

section.page-login .form-login .box-login .content-login .form-control:focus {
  box-shadow: 0 0 0 3px rgba(202, 191, 253, 0.45) !important;
}

section.page-login .form-login .box-login .content-login .acc-new {
  display: block;
  color: #2ba670;
}

section.page-login .form-login .box-login .content-login .sub {
  transition-duration: 0.15s;
  transition-property: background-color, border-color, color, fill, stroke;
  width: 100%;
  color: white;
  text-align: center;
  padding-right: 1rem;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  margin-top: 1rem;
  line-height: 1.25rem;
  font-weight: 500;
  border-radius: 0.5rem;
  background-color: #2ba670;
  cursor: pointer;
}

section.page-login .form-login .box-login .content-login .logo-footer {
  width: 55px;
}

.main-btn {
  color: white !important;
  border-radius: 8px;
  cursor: pointer;
  display: block;
  white-space: nowrap;
  outline: none;
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 8px 13px;
  background: #0FC859;
}
.main-btn.btn-orange {
  background-color: #F99132;
}
.main-btn.btn-purple {
  background-color: #8D1EE5;
}
.main-btn.btn-blue {
  background-color: #1E88E5;
}
.main-btn.btn-main-color {
  background-color: #2E5789;
}
.main-btn.btn-red {
  background-color: #FF3636;
}
.main-btn .icon {
  width: 20px;
  height: auto;
}
.main-btn svg {
  font-size: 20px;
}
.main-btn .main-badge {
  position: absolute;
  left: -10px;
  top: -10px;
}

.dropdown-user > button {
  background-color: transparent !important;
  background-color: transparent !important;
  color: black !important;
  border: none !important;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 !important;
}
.dropdown-user > button:focus {
  box-shadow: none !important;
  border: none !important;
  outline: none !important;
}
.dropdown-user > button::after {
  margin: 0 !important;
  border-top: 0.4em solid;
  border-left: 0.4em solid transparent;
  border-right: 0.4em solid transparent;
}
.dropdown-user > button .photo {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.dropdown-user .dropdown-item,
.dropdown-user .dropdown-item > button {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
}

.badge-count {
  background-color: orangered;
  font-size: 12px;
  height: 17px;
  width: 17px;
  border-radius: 5px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-lable {
  font-size: 13px;
  margin-bottom: 3px;
}

.line-bottom-blue {
  position: relative;
  padding-bottom: 10px;
}
.line-bottom-blue::before {
  content: "";
  position: absolute;
  right: 0;
  top: 100%;
  width: 72%;
  border-radius: 5px;
  height: 3px;
  background-color: #0d6efd;
}

.breadcrumb {
  padding: 0 !important;
  margin-bottom: 1.5rem;
  align-items: center;
  background: transparent !important;
}
.breadcrumb .breadcrumb-item {
  font-size: 17px;
  color: #000000;
  opacity: 0.5;
}
.breadcrumb .breadcrumb-item.active {
  font-weight: 500;
  font-size: 24px;
  opacity: 1;
  padding-right: 16px;
}
.breadcrumb .breadcrumb-item.active::before {
  content: "";
}

.main-title {
  display: flex;
  margin-bottom: 1rem;
  align-items: center;
  gap: 1rem;
}
.main-title .small {
  font-size: 18px;
  color: #000000;
  opacity: 0.5;
}
.main-title .large {
  font-weight: 500;
  font-size: 30px;
  color: #000000;
}

.table-dark th {
  background-color: #243848 !important;
}

.table,
.table thead {
  box-shadow: 0 0 5px 0 #ddd;
  border-radius: 5px;
}
.table th,
.table thead th {
  white-space: nowrap;
}

.box-data {
  background-color: rgba(98, 132, 167, 0.07);
  border-radius: 20px;
  padding: 20px;
}
.box-data .bar-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.box-data .bar-name .name {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.box-data .bar-name .box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: rgba(98, 132, 167, 0.07);
}
.box-data .bar-name .box-icon img {
  width: 18px;
}
.box-data .bar-name .box-icon i,
.box-data .bar-name .box-icon svg {
  font-size: 18px;
  color: #fff;
}
.box-data .amount {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.box-data .more {
  color: #2e5789;
  font-weight: 500;
  font-size: 14px;
}
.box-data .more img {
  margin-right: 6px;
}
.box-data .more i,
.box-data .more svg {
  font-size: 12px;
}
.box-data.box-main-color .box-icon {
  background-color: #2e5789;
}
.box-data.box-blue {
  background-color: #E3F5FF;
}
.box-data.box-blue .box-icon {
  background-color: #1E88E5;
}
.box-data.box-orange {
  background-color: #FFF2E3;
}
.box-data.box-orange .box-icon {
  background-color: #F99132;
}
.box-data.box-green {
  background-color: #E3FFE6;
}
.box-data.box-green .box-icon {
  background-color: #0FC859;
}
.box-data.box-purple {
  background-color: #F2E7FD;
}
.box-data.box-purple .box-icon {
  background-color: #8D1EE5;
}
.box-data.box-purple .box-icon img {
  width: 27px;
}
.box-data.box-red {
  background-color: #fde7e7;
}
.box-data.box-red .box-icon {
  background-color: #FF3636;
}
.box-data.box-red .box-icon img {
  width: 27px;
}

.box-search {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 10px;
  max-width: 100%;
}
.box-search input {
  font-weight: 600;
  font-size: 14px;
  width: 270px;
  border: none;
}
.box-search input:focus {
  outline: none;
}
.box-search input::-moz-placeholder {
  -moz-transition: 300ms;
  transition: 300ms;
  font-size: 12px;
  font-weight: 400;
}
.box-search input::placeholder {
  transition: 300ms;
  font-size: 12px;
  font-weight: 400;
}
.box-search input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: 300ms;
  transition: 300ms;
}
.box-search input:focus::placeholder {
  opacity: 0;
  transition: 300ms;
}

.main-select {
  border-radius: 4px;
  padding: 0.2rem;
  font-size: 13px;
  transition: 300ms;
  border: 1px solid #ddd;
}
.main-select:focus {
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

.footer-app {
  background: #3d3d3d;
  height: 55px;
  color: #999999;
  z-index: 11;
  position: relative;
  text-align: start;
  padding: 10px 10px;
}
.footer-app a {
  color: #999999;
}
.footer-app a:hover {
  color: #a09f9f;
}
.footer-app .logo {
  width: 120px;
}/*# sourceMappingURL=main.css.map */