html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 0;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.app-search {
  padding: 0 12px;
}

.app-search .form-control {
  width: 250px;
}

.topbar-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#side-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
}

#side-menu > li > a.active {
  color: #556ee6;
  background-color: rgba(85, 110, 230, 0.12);
}

.header-profile-user {
  height: 36px;
  width: 36px;
  object-fit: cover;
}

.benefactor-list-photo {
  height: 32px;
  width: 32px;
  object-fit: cover;
}

.topbar-user-dropdown .header-item {
  min-height: 70px;
  border-radius: 0;
  padding-inline: 14px;
}

.report-chart {
  height: 230px;
  background: linear-gradient(180deg, rgba(85,110,230,0.08) 0%, rgba(85,110,230,0.02) 100%);
  border-radius: 12px;
  padding: 16px;
}

.report-bar {
  flex: 1;
  background-color: rgba(85, 110, 230, 0.8);
  border-radius: 8px 8px 0 0;
}

@media (max-width: 991.98px) {
  .vertical-menu {
    left: -250px;
    transition: left .2s ease;
  }

  body.sidebar-enable .vertical-menu {
    left: 0;
  }

  body.sidebar-enable .main-content {
    margin-left: 0 !important;
  }
}