/* CSS Document */
/* Bootstrap Overrides */
:root {
  --primary-color: #037FB0;
  --secondary-color: #161925;
  --accent-color: #ff6600;
  --text-color: #161925;
  --lightgrey-color: #8EA8C3;
  --mediumgrey-color: #406E8E;
  --darkgrey-color: #23395B;
  --teal-color: #449F93;
  --darkteal-color: #006153;
  --cream-color: #EEE8A9;
  --dark-bg-color: #161925;
  --yellow-color: #e2b12e;
  --error-color: #b92924;
  --rust-color: #C15450;
}

::-moz-selection {
  background: #A0EB83;
  color: #161925;
}

::selection {
  background: #A0EB83;
  color: #161925;
}

body {
  background-color: #E30024;
}

.template {
  display: none;
}

.sidebar {
  transition: width 0.3s ease-in-out;
}
.sidebar.sidebar-section.show {
  width: 60px;
}
.sidebar.sidebar-section.hidden {
  width: 0px;
}
.sidebar.sidebar-section .sidebar-icon {
  width: 60px;
  height: 60px;
}
.sidebar.sidebar-nested-menu.show {
  width: 200px;
}
.sidebar.sidebar-nested-menu.hidden {
  width: 0px;
}
.sidebar.sidebar-nested-menu .nav-link {
  color: white;
}

.card-section-container {
  border-bottom: 1.5px solid lightgray;
  padding-bottom: 1rem;
  padding-right: 0rem;
}
.card-section-container .proforma-heading {
  border-top: 1.5px solid lightgray;
  color: #23395B;
}
.card-section-container .proforma-heading .view-button {
  color: #23395B;
  border: 1px solid #23395B;
  background-color: white;
  font-weight: bold;
}

.program-card {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgb(209, 209, 209);
}
.program-card .card-title {
  color: #22b4ee;
}

.overlay-card {
  position: relative;
  color: #fff;
  overflow: hidden;
  border-radius: 12px;
}

.overlay-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay-card-content {
  position: relative;
  z-index: 2;
}

.button-card {
  position: relative;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
}
.button-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #818080;
  z-index: 1;
}
.button-card h3 {
  margin: 0 0 1rem;
  color: #2c3e50;
  font-size: 1.25rem;
  z-index: 2;
  position: relative;
}

.card-icon {
  width: 40%;
  transform: translateY(-15%);
}

.property-card {
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
  min-height: 275px;
  font-family: "acumin-variable", sans-serif !important;
}
.property-card__header {
  background-color: #00a3e0;
  color: #ffffff;
  padding: 1rem 1rem;
  position: relative;
}
.property-card__header .icon {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 3rem;
  color: #f5f5f5;
}
.property-card__header .text-end {
  line-height: 1;
}
.property-card__header .properties-number {
  font-size: 3rem;
  font-weight: bold;
  text-align: right;
}
.property-card__header .properties-text {
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
}
.property-card__badge {
  display: flex;
  justify-content: end;
  margin-top: 0.5rem;
  z-index: 2;
  margin-right: 1rem;
}
.property-card__badge .badge {
  background-color: #002b46;
  border-radius: 2rem;
  color: #fff;
  font-weight: 600;
  padding: 0.5rem 1rem;
  display: inline-block;
}
.property-card__body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 1rem;
  padding-top: 1rem;
}
.property-card__body .metric {
  text-align: center;
}
.property-card__body .metric i {
  display: block;
  font-size: 1.5rem;
  color: #6c757d;
  margin-bottom: 0.25rem;
}
.property-card__body .metric span {
  font-weight: bold;
  font-size: 1.1rem;
}
.property-card__body .metric small {
  display: block;
  color: #6c757d;
  font-size: 0.9rem;
}

.card-icon-active {
  width: 20%;
  top: 3rem;
  left: 2.5rem;
  position: absolute;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.quick-links__title {
  font-weight: bold;
  font-size: 1.25rem;
  color: #333;
  margin-right: 1rem;
}
.quick-links .filter-button {
  background-color: #002b46;
  color: #ffffff;
  font-weight: 600;
  border: none;
  border-radius: 2rem;
  padding: 0.5rem 1.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
}
.quick-links .filter-button:hover {
  background-color: #004569;
}
.quick-links .filter-button:active {
  background-color: #001f2d;
}

.content-area {
  flex-grow: 1;
  transition: width 0.3s ease-in-out;
}

table.table thead th {
  font-size: 14px;
}
table.table tbody td {
  font-size: 14px;
}

.past-mode .property-card__header {
  background-color: #3b3b3b !important;
}/*# sourceMappingURL=admin.css.map */