body {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
}
.footer {
  flex-shrink: 0;
}
.sidebar-nav {
  margin-top: 20px;
  padding: 0;
  list-style: none;
}
.bg-image-dark {
  background: url('/static/background.png'), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
  background-position: 0% 0%;
  background-size: cover;
  height: 100vh;
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.bg-image-light {
  background: url('/static/background.png'), linear-gradient(rgba(180, 180, 180, 0.5), rgba(180, 180, 180, 0.5));
  background-position: 0% 0%;
  background-size: cover;
  height: 100vh;
  width: 100%;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}
.white {
  color: white !important;
}
.red {
  color: #EB5C5A !important;
}
.mr-3 {
  margin-right: 1rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 1rem;
}
.w-fc {
  width: fit-content;
}
.w-49 {
  width: 49%;
}
.w-50 {
  width: 50%;
}
.h-14 {
  height: 14px;
}
.font-16 {
  font-size: 16px;
}
.max-w-70 {
  max-width: 70%;
}