.menu .app-brand.demo {
  height: 64px;
  margin-top: 12px;
}

.app-brand-text.demo {
  font-size: 1.75rem;
  letter-spacing: -0.5px;
}

/* ! For .layout-navbar-fixed added fix padding top .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
  padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
  padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
  z-index: auto;
}

.menu-icon {
  text-align: center;
}

/* Button loading */
.btn.loading,
.list-group-item.loading {
  position: relative;
  overflow: hidden;
  pointer-events: none;
}

.btn.loading::before,
.list-group-item.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.4);
}

.btn.loading::after,
.list-group-item.loading::after {
  content: '\eb46';
  font-family: "boxicons" !important;
  font-size: 1.15rem;
  line-height: 1;
  color: #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 6;
}

/* Datatables responsive indicator */
table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  content: '\f0da' !important;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  width: 7px;
}

.dark-style table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
.dark-style table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
  color: #fff;
}

table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td.dtr-control:before,
table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th.dtr-control:before {
  content: '\f0d7' !important;
}

/* Blink animation */
@keyframes blink {
  0% {
    opacity: .5;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: .5;
  }
}
.blink-opacity {
  animation: blink 1.5s linear infinite;
}