/* DARK BACKGROUND */
/* DARK TEXT */
/* DARK BORDER */
/* LIGHT BACKGROUND */
/* LIGHT TEXT */
/* LIGHT BORDER */
/*@font-face {
  font-family: "bebasneue";
  src: url("../../fonts/bebasneue/bebasneue_bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto/Roboto-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}*/
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Roboto" !important;
  background: #212121;
}
body h1,
body h2,
body h3,
body p,
body li,
body .form-check-label {
  color: white;
  font-weight: 400;
}

input {
  font-family: "Roboto" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: unset !important;
}

label,
input[type=checkbox] {
  cursor: pointer;
}

small {
  font-size: 0.8em;
  color: #E0E0E0;
}

.text-transform-unset {
  text-transform: unset !important;
}

.defcad-error-page {
  padding-top: 50px;
}

.defcad-error-page svg {
  color: #f44336;
}

.dc-flash, .dc-flash-general, .dc-flash-success, .dc-flash-error {
  border-radius: 0.25rem;
  padding: 15px;
}
.dc-flash p, .dc-flash-general p, .dc-flash-success p, .dc-flash-error p,
.dc-flash li,
.dc-flash-general li,
.dc-flash-success li,
.dc-flash-error li {
  font-size: 14px;
  color: black;
}
.dc-flash ul, .dc-flash-general ul, .dc-flash-success ul, .dc-flash-error ul {
  margin: 0;
}

.dc-flash-error {
  border: 1px solid #f44336;
  background-color: #ffebee;
}

.dc-flash-success {
  border: 1px solid #4caf50;
  background-color: #e8f5e9;
}

.dc-flash-general {
  border: 1px solid #FF9800;
  background-color: #FFF3E0;
}

.page-loading {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-pad {
  padding: 50px 0;
}

.table-dc th {
  text-transform: capitalize;
}
.table-dc td {
  padding: 20px 10px !important;
  font-size: 14px !important;
}

.card-dc {
  border-radius: 5px;
  padding: 25px;
  background-color: #424242;
  border: 1px solid #616161;
}
.card-dc p {
  color: white;
}

.card-dc-title {
  font-weight: bold;
  font-size: 14px;
}

.card-dc-value {
  font-size: 14px;
}

.not-reviewed {
  background-color: #7B1FA2 !important;
}

.reviewing {
  background-color: #1976D2 !important;
}

.approved-live {
  background-color: #388E3C !important;
}

.approved-prepping {
  background-color: #AFB42B !important;
}

.denied {
  background-color: #D32F2F !important;
}

.tabled {
  background-color: #5D4037 !important;
}

.catalogued {
  background-color: #616161 !important;
}

.closed {
  background-color: #F57C00 !important;
}

.complete {
  background-color: #388E3C !important;
}

.active {
  background-color: #1976D2 !important;
}

.pending {
  background-color: #F57C00 !important;
}

.transaction-failed {
  background-color: #D32F2F !important;
}

.dropdown-item.active {
  background: none;
  font-weight: bold !important;
  color: black !important;
}

.dropdown-menu {
  border-color: #616161;
}

.nav-tabs {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.nav-tabs .dropdown-menu a:hover:not(.nav-tabs .dropdown-menu a.active) {
  color: #666 !important;
}

.action-message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  background: #666;
  color: white;
  padding: 13px 18px;
  border-radius: 4px;
  font-size: 20px;
  font-weight: 500;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.badge-unread {
  position: absolute;
  top: -3px;
  right: -3px;
  color: #f44336;
}

.bg-dc-primary {
  background: #f44336;
}

.dc-link {
  text-decoration: none;
  color: #f44336 !important;
}
.dc-link:hover {
  color: #e53935 !important;
}

.btn-dc, .btn-dc-tertiary, .btn-dc-secondary, .btn-dc-primary {
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 14px;
  padding: 8px 18px;
  border-radius: 0.25rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.btn-dc i, .btn-dc-tertiary i, .btn-dc-secondary i, .btn-dc-primary i {
  margin-right: 5px;
}
.btn-dc-primary {
  background-color: #f44336;
  border: 1px solid #f44336;
  color: white !important;
}
.btn-dc-primary:hover {
  background-color: #e53935;
  border-color: #e53935;
}
.btn-dc-secondary {
  border: 1px solid #CED4DA;
  color: black;
  background: white;
}
.btn-dc-secondary:hover {
  border-color: #EEEEEE;
  background-color: #EEEEEE;
  color: black;
}
.btn-dc-tertiary {
  color: white !important;
  background: #757575;
}
.btn-dc-tertiary:hover {
  background-color: #616161;
  color: white !important;
}

.btn-dc-lg {
  font-size: 20px;
  padding: 13.5px 18px;
}

.btn-dc-sm {
  font-size: 12px;
  padding: 4px 8px;
}

.btn-disabled {
  background: #6c757d;
  pointer-events: none;
}

.btn-disabled:hover {
  background: #6c757d;
}

.lock-scroll {
  overflow: hidden;
  height: 100%;
}

.content-loading {
  text-align: center;
}

.dashboard-loading {
  margin-top: 50px;
  text-align: center;
}

input.form-control {
  background: #424242;
  color: white;
  border-color: #616161;
}
input.form-control:focus {
  background: #616161;
  color: white;
  border-color: #9E9E9E;
}

.form-floating input,
.form-floating textarea,
.form-control input,
.form-control textarea {
  background: #424242;
  color: white;
  border-color: #616161;
}
.form-floating input:focus,
.form-floating textarea:focus,
.form-control input:focus,
.form-control textarea:focus {
  background: #616161;
  color: white;
  border-color: #9E9E9E;
}
.form-floating label,
.form-control label {
  color: white;
}

.form-control:focus {
  box-shadow: none;
  border-color: #ced4da;
}

.dashboard-block {
  margin-bottom: 25px;
  padding: 25px 25px 0 25px;
  background: #424242;
  border-radius: 4px;
}
.dashboard-block .title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.dashboard-block .field {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
.dashboard-block .value {
  font-size: 16px;
  padding-bottom: 25px;
  text-transform: capitalize;
  margin: 0;
}

.pb-28 {
  padding-bottom: 28px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pagination {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 0;
}
.pagination .page-link {
  color: black;
}
.pagination .page-item:not(.page-item.disabled) {
  cursor: pointer;
}
.pagination .page-item.disabled .page-link {
  color: #ccc;
}
.pagination .page-item.active .page-link {
  background-color: #f44336;
  border-color: #f44336;
  color: white;
}

table .sort-active {
  color: black;
}
table .sort-inactive {
  color: #ccc;
}

#clear-download-search {
  cursor: pointer;
}

.current-results {
  font-size: 20px;
  font-weight: 700;
}

.table-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 0.25rem;
}
.table-card .title {
  font-size: 16px;
  font-weight: 700;
}
.table-card .stat {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  text-transform: capitalize;
}
.table-card .value {
  font-size: 14px;
  margin: 0;
  text-transform: capitalize;
}

.tox.tox-tinymce,
.tox.tox-hugerte {
  border: 1px solid #616161;
  border-radius: 0.25rem;
}

.form-error-message {
  color: #f44336;
  text-align: left;
  font-size: 14px;
}

.form-success-message {
  text-align: left;
  font-size: 14px;
}

#page-content {
  margin-top: 65px;
  padding-bottom: 50px;
  position: relative;
}

h1.modal-title {
  font-weight: bold !important;
}

.modal-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.modal-footer > * {
  -ms-flex: 0.5;
  flex: 0.5;
}

/* Mobile full-screen modals */
@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
  }
  .modal-content {
    border: none;
    border-radius: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .modal-header {
    position: sticky;
    top: 0;
    z-index: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
  .modal-body {
    -ms-flex: 1;
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .modal-footer {
    position: sticky;
    bottom: 0;
    z-index: 1;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.5rem;
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }
  .modal-footer > * {
    -ms-flex: none;
    flex: none;
    width: 100%;
  }
  .modal-footer .btn {
    min-height: 48px;
  }
}
.modal-success {
  display: none;
  background: #e8f5e9;
  padding: 16px;
  border-bottom: 1px solid #dee2e6;
}
.modal-success p {
  font-size: 14px;
}

.defcad-messages-wrapper {
  padding-top: 10px;
  margin-bottom: -10px;
}

#defcad-messages {
  padding-bottom: 10px;
}

.red-banner {
  background-color: #f44336;
  color: #fff;
  padding: 10px;
  border-radius: 0.25rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.red-banner a {
  color: white;
  text-decoration: underline;
}
.red-banner a:hover {
  color: whhite;
}

.table-dc th,
.dt-row th {
  color: white;
}

.table-dc {
  color: white;
}
.table-dc tr {
  border-color: #BDBDBD;
}

.dataTables_empty {
  color: white;
}

#desktop-projects_filter label,
#desktop-projects_length label {
  color: white;
}

#desktop-projects_filter input,
#id_reference_image {
  background: #424242;
  border-color: #616161;
  color: white;
}

.form-select {
  background-color: #424242;
  border-color: #616161;
  color: white;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.modal-dc-error {
  display: none;
  background: #ffebee;
  padding: 16px;
  border-bottom: 1px solid #dee2e6;
}

/* Change to .modal once any possible modal conflicts are resolved */
#account-request-modal-type .modal-content,
#account-request-modal-thank-you .modal-content,
#account-request-modal-deactivate .modal-content,
#account-request-modal-delete .modal-content,
#account-request-modal-improve .modal-content,
#account-request-modal-reason .modal-content,
#deleteProjectModal .modal-content,
#modal-info .modal-content,
#report-project-modal .modal-content,
#claim-project-modal .modal-content {
  border: 1px solid #616161;
}
#account-request-modal-type .modal-header,
#account-request-modal-type .modal-footer,
#account-request-modal-thank-you .modal-header,
#account-request-modal-thank-you .modal-footer,
#account-request-modal-deactivate .modal-header,
#account-request-modal-deactivate .modal-footer,
#account-request-modal-delete .modal-header,
#account-request-modal-delete .modal-footer,
#account-request-modal-improve .modal-header,
#account-request-modal-improve .modal-footer,
#account-request-modal-reason .modal-header,
#account-request-modal-reason .modal-footer,
#deleteProjectModal .modal-header,
#deleteProjectModal .modal-footer,
#modal-info .modal-header,
#modal-info .modal-footer,
#report-project-modal .modal-header,
#report-project-modal .modal-footer,
#claim-project-modal .modal-header,
#claim-project-modal .modal-footer {
  border-color: #616161;
}
#account-request-modal-type .modal-body svg,
#account-request-modal-thank-you .modal-body svg,
#account-request-modal-deactivate .modal-body svg,
#account-request-modal-delete .modal-body svg,
#account-request-modal-improve .modal-body svg,
#account-request-modal-reason .modal-body svg,
#deleteProjectModal .modal-body svg,
#modal-info .modal-body svg,
#report-project-modal .modal-body svg,
#claim-project-modal .modal-body svg {
  color: white;
}
#account-request-modal-type .modal-dc-error p,
#account-request-modal-type .modal-success p,
#account-request-modal-thank-you .modal-dc-error p,
#account-request-modal-thank-you .modal-success p,
#account-request-modal-deactivate .modal-dc-error p,
#account-request-modal-deactivate .modal-success p,
#account-request-modal-delete .modal-dc-error p,
#account-request-modal-delete .modal-success p,
#account-request-modal-improve .modal-dc-error p,
#account-request-modal-improve .modal-success p,
#account-request-modal-reason .modal-dc-error p,
#account-request-modal-reason .modal-success p,
#deleteProjectModal .modal-dc-error p,
#deleteProjectModal .modal-success p,
#modal-info .modal-dc-error p,
#modal-info .modal-success p,
#report-project-modal .modal-dc-error p,
#report-project-modal .modal-success p,
#claim-project-modal .modal-dc-error p,
#claim-project-modal .modal-success p {
  color: black;
}
#account-request-modal-type .modal-header .btn-close,
#account-request-modal-thank-you .modal-header .btn-close,
#account-request-modal-deactivate .modal-header .btn-close,
#account-request-modal-delete .modal-header .btn-close,
#account-request-modal-improve .modal-header .btn-close,
#account-request-modal-reason .modal-header .btn-close,
#deleteProjectModal .modal-header .btn-close,
#modal-info .modal-header .btn-close,
#report-project-modal .modal-header .btn-close,
#claim-project-modal .modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFF'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
#account-request-modal-type .modal-header,
#account-request-modal-type .modal-body,
#account-request-modal-type .modal-footer,
#account-request-modal-thank-you .modal-header,
#account-request-modal-thank-you .modal-body,
#account-request-modal-thank-you .modal-footer,
#account-request-modal-deactivate .modal-header,
#account-request-modal-deactivate .modal-body,
#account-request-modal-deactivate .modal-footer,
#account-request-modal-delete .modal-header,
#account-request-modal-delete .modal-body,
#account-request-modal-delete .modal-footer,
#account-request-modal-improve .modal-header,
#account-request-modal-improve .modal-body,
#account-request-modal-improve .modal-footer,
#account-request-modal-reason .modal-header,
#account-request-modal-reason .modal-body,
#account-request-modal-reason .modal-footer,
#deleteProjectModal .modal-header,
#deleteProjectModal .modal-body,
#deleteProjectModal .modal-footer,
#modal-info .modal-header,
#modal-info .modal-body,
#modal-info .modal-footer,
#report-project-modal .modal-header,
#report-project-modal .modal-body,
#report-project-modal .modal-footer,
#claim-project-modal .modal-header,
#claim-project-modal .modal-body,
#claim-project-modal .modal-footer {
  background: #212121;
}
#account-request-modal-type .modal-header,
#account-request-modal-thank-you .modal-header,
#account-request-modal-deactivate .modal-header,
#account-request-modal-delete .modal-header,
#account-request-modal-improve .modal-header,
#account-request-modal-reason .modal-header,
#deleteProjectModal .modal-header,
#modal-info .modal-header,
#report-project-modal .modal-header,
#claim-project-modal .modal-header {
  color: white;
}

.beta-badge {
  font-size: 10px;
  padding-bottom: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

body.light-mode {
  background: white;
}
body.light-mode .table-dc {
  color: black;
}
body.light-mode .table-dc tr {
  border-color: #CED4DA;
}
body.light-mode .card-dc {
  background-color: #F1F1F1;
  border-color: #CED4DA;
}
body.light-mode .card-dc p {
  color: black;
}
body.light-mode .not-reviewed {
  background-color: #F3E5F5 !important;
}
body.light-mode .reviewing {
  background-color: #E3F2FD !important;
}
body.light-mode .approved-live {
  background-color: #E8F5E9 !important;
}
body.light-mode .approved-prepping {
  background-color: #F9FBE7 !important;
}
body.light-mode .denied {
  background-color: #FFEBEE !important;
}
body.light-mode .tabled {
  background-color: #EFEBE9 !important;
}
body.light-mode .catalogued {
  background-color: #FAFAFA !important;
}
body.light-mode .closed {
  background-color: #FFF3E0 !important;
}
body.light-mode .complete {
  background-color: #E8F5E9 !important;
}
body.light-mode .active {
  background-color: #E3F2FD !important;
}
body.light-mode .pending {
  background-color: #FFF3E0 !important;
}
body.light-mode .transaction-failed {
  background-color: #FFEBEE !important;
}
body.light-mode .tox.tox-tinymce,
body.light-mode .tox.tox-hugerte {
  border-color: #CED4DA;
}
body.light-mode .dataTables_empty {
  color: black;
}
body.light-mode #desktop-projects_filter input {
  background: white;
  border-color: #CED4DA;
  color: black;
}
body.light-mode #id_reference_image {
  background: #F1F1F1;
  border-color: #CED4DA;
  color: black;
}
body.light-mode .form-select {
  background-color: white;
  border-color: #CED4DA;
  color: black;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
body.light-mode .table-dc th,
body.light-mode .dt-row th {
  color: black;
}
body.light-mode #desktop-projects_filter label,
body.light-mode #desktop-projects_length label {
  color: black;
}
body.light-mode .dashboard-block {
  background: #F1F1F1;
}
body.light-mode .dropdown-menu {
  border-color: #CED4DA;
}
body.light-mode small {
  color: #777;
}
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode p,
body.light-mode li,
body.light-mode .form-check-label {
  color: black;
}
body.light-mode .form-floating,
body.light-mode .form-control {
  background: white;
  color: black;
  border-color: #CED4DA;
}
body.light-mode .form-floating label,
body.light-mode .form-control label {
  color: black;
}
body.light-mode #account-request-modal-type .modal-content,
body.light-mode #account-request-modal-thank-you .modal-content,
body.light-mode #account-request-modal-deactivate .modal-content,
body.light-mode #account-request-modal-delete .modal-content,
body.light-mode #account-request-modal-improve .modal-content,
body.light-mode #account-request-modal-reason .modal-content,
body.light-mode #deleteProjectModal .modal-content,
body.light-mode #modal-info .modal-content,
body.light-mode #report-project-modal .modal-content,
body.light-mode #claim-project-modal .modal-content {
  border: 1px solid #CED4DA;
}
body.light-mode #account-request-modal-type .modal-header,
body.light-mode #account-request-modal-type .modal-footer,
body.light-mode #account-request-modal-thank-you .modal-header,
body.light-mode #account-request-modal-thank-you .modal-footer,
body.light-mode #account-request-modal-deactivate .modal-header,
body.light-mode #account-request-modal-deactivate .modal-footer,
body.light-mode #account-request-modal-delete .modal-header,
body.light-mode #account-request-modal-delete .modal-footer,
body.light-mode #account-request-modal-improve .modal-header,
body.light-mode #account-request-modal-improve .modal-footer,
body.light-mode #account-request-modal-reason .modal-header,
body.light-mode #account-request-modal-reason .modal-footer,
body.light-mode #deleteProjectModal .modal-header,
body.light-mode #deleteProjectModal .modal-footer,
body.light-mode #modal-info .modal-header,
body.light-mode #modal-info .modal-footer,
body.light-mode #report-project-modal .modal-header,
body.light-mode #report-project-modal .modal-footer,
body.light-mode #claim-project-modal .modal-header,
body.light-mode #claim-project-modal .modal-footer {
  border-color: #CED4DA;
}
body.light-mode #account-request-modal-type .modal-body svg,
body.light-mode #account-request-modal-type .modal-dc-error p,
body.light-mode #account-request-modal-type .modal-success p,
body.light-mode #account-request-modal-thank-you .modal-body svg,
body.light-mode #account-request-modal-thank-you .modal-dc-error p,
body.light-mode #account-request-modal-thank-you .modal-success p,
body.light-mode #account-request-modal-deactivate .modal-body svg,
body.light-mode #account-request-modal-deactivate .modal-dc-error p,
body.light-mode #account-request-modal-deactivate .modal-success p,
body.light-mode #account-request-modal-delete .modal-body svg,
body.light-mode #account-request-modal-delete .modal-dc-error p,
body.light-mode #account-request-modal-delete .modal-success p,
body.light-mode #account-request-modal-improve .modal-body svg,
body.light-mode #account-request-modal-improve .modal-dc-error p,
body.light-mode #account-request-modal-improve .modal-success p,
body.light-mode #account-request-modal-reason .modal-body svg,
body.light-mode #account-request-modal-reason .modal-dc-error p,
body.light-mode #account-request-modal-reason .modal-success p,
body.light-mode #deleteProjectModal .modal-body svg,
body.light-mode #deleteProjectModal .modal-dc-error p,
body.light-mode #deleteProjectModal .modal-success p,
body.light-mode #modal-info .modal-body svg,
body.light-mode #modal-info .modal-dc-error p,
body.light-mode #modal-info .modal-success p,
body.light-mode #report-project-modal .modal-body svg,
body.light-mode #report-project-modal .modal-dc-error p,
body.light-mode #report-project-modal .modal-success p,
body.light-mode #claim-project-modal .modal-body svg,
body.light-mode #claim-project-modal .modal-dc-error p,
body.light-mode #claim-project-modal .modal-success p {
  color: black;
}
body.light-mode #account-request-modal-type .modal-header .btn-close,
body.light-mode #account-request-modal-thank-you .modal-header .btn-close,
body.light-mode #account-request-modal-deactivate .modal-header .btn-close,
body.light-mode #account-request-modal-delete .modal-header .btn-close,
body.light-mode #account-request-modal-improve .modal-header .btn-close,
body.light-mode #account-request-modal-reason .modal-header .btn-close,
body.light-mode #deleteProjectModal .modal-header .btn-close,
body.light-mode #modal-info .modal-header .btn-close,
body.light-mode #report-project-modal .modal-header .btn-close,
body.light-mode #claim-project-modal .modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
body.light-mode #account-request-modal-type .modal-header,
body.light-mode #account-request-modal-type .modal-body,
body.light-mode #account-request-modal-type .modal-footer,
body.light-mode #account-request-modal-thank-you .modal-header,
body.light-mode #account-request-modal-thank-you .modal-body,
body.light-mode #account-request-modal-thank-you .modal-footer,
body.light-mode #account-request-modal-deactivate .modal-header,
body.light-mode #account-request-modal-deactivate .modal-body,
body.light-mode #account-request-modal-deactivate .modal-footer,
body.light-mode #account-request-modal-delete .modal-header,
body.light-mode #account-request-modal-delete .modal-body,
body.light-mode #account-request-modal-delete .modal-footer,
body.light-mode #account-request-modal-improve .modal-header,
body.light-mode #account-request-modal-improve .modal-body,
body.light-mode #account-request-modal-improve .modal-footer,
body.light-mode #account-request-modal-reason .modal-header,
body.light-mode #account-request-modal-reason .modal-body,
body.light-mode #account-request-modal-reason .modal-footer,
body.light-mode #deleteProjectModal .modal-header,
body.light-mode #deleteProjectModal .modal-body,
body.light-mode #deleteProjectModal .modal-footer,
body.light-mode #modal-info .modal-header,
body.light-mode #modal-info .modal-body,
body.light-mode #modal-info .modal-footer,
body.light-mode #report-project-modal .modal-header,
body.light-mode #report-project-modal .modal-body,
body.light-mode #report-project-modal .modal-footer,
body.light-mode #claim-project-modal .modal-header,
body.light-mode #claim-project-modal .modal-body,
body.light-mode #claim-project-modal .modal-footer {
  background: white;
}
body.light-mode #account-request-modal-type .modal-header,
body.light-mode #account-request-modal-type .modal-body,
body.light-mode #account-request-modal-thank-you .modal-header,
body.light-mode #account-request-modal-thank-you .modal-body,
body.light-mode #account-request-modal-deactivate .modal-header,
body.light-mode #account-request-modal-deactivate .modal-body,
body.light-mode #account-request-modal-delete .modal-header,
body.light-mode #account-request-modal-delete .modal-body,
body.light-mode #account-request-modal-improve .modal-header,
body.light-mode #account-request-modal-improve .modal-body,
body.light-mode #account-request-modal-reason .modal-header,
body.light-mode #account-request-modal-reason .modal-body,
body.light-mode #deleteProjectModal .modal-header,
body.light-mode #deleteProjectModal .modal-body,
body.light-mode #modal-info .modal-header,
body.light-mode #modal-info .modal-body,
body.light-mode #report-project-modal .modal-header,
body.light-mode #report-project-modal .modal-body,
body.light-mode #claim-project-modal .modal-header,
body.light-mode #claim-project-modal .modal-body {
  color: black;
}

@media (max-width: 767.98px) {
  #desktop-projects_length,
  #desktop-projects_filter {
    display: none;
  }
  #page-content {
    margin-top: 115px;
  }
  .content-loading,
  .dashboard-loading {
    margin-top: 15px;
    text-align: center;
  }
  /* Mobile Touch Target Sizes (44px minimum) */
  .btn,
  .btn-dc,
  .btn-dc-primary,
  .btn-dc-secondary,
  .btn-dc-tertiary {
    min-height: 44px;
    padding: 12px 20px;
  }
  .btn-dc-sm {
    min-height: 36px;
    padding: 8px 12px;
  }
  .form-control,
  .form-select {
    min-height: 44px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  .form-check {
    min-height: 44px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
  }
  .form-check .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
  .form-check .form-check-label {
    padding-left: 8px;
  }
  /* Prevent iOS zoom on input focus */
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=number],
  input[type=tel],
  input[type=date],
  input[type=search],
  textarea,
  select {
    font-size: 16px !important;
  }
  /* Responsive images */
  img {
    max-width: 100%;
    height: auto;
  }
  /* Container padding consistency */
  .container,
  .container-lg,
  .container-md {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 575.98px) {
  .container,
  .container-lg,
  .container-md {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* ==========================================
   Mobile Utility Classes
   ========================================== */
/* Mobile-only visibility */
@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .desktop-only {
    display: none !important;
  }
}

/* Safe area utilities for notched devices */
.pb-safe {
  padding-bottom: env(safe-area-inset-bottom);
}

.pt-safe {
  padding-top: env(safe-area-inset-top);
}

.px-safe {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Touch target helper */
.touch-target {
  min-width: 44px;
  min-height: 44px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Table responsive wrapper */
@media (max-width: 767.98px) {
  .table-responsive-mobile {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-mobile table {
    min-width: 500px;
  }
}

/* Full-width mobile buttons */
@media (max-width: 575.98px) {
  .btn-mobile-full {
    width: 100%;
    display: block;
  }
}
/* Mobile-specific spacing */
@media (max-width: 767.98px) {
  .p-mobile-0 {
    padding: 0 !important;
  }
  .p-mobile-2 {
    padding: 0.5rem !important;
  }
  .p-mobile-3 {
    padding: 1rem !important;
  }
  .px-mobile-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  .px-mobile-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .py-mobile-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .py-mobile-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  .mt-mobile-0 {
    margin-top: 0 !important;
  }
  .mt-mobile-3 {
    margin-top: 1rem !important;
  }
  .mb-mobile-0 {
    margin-bottom: 0 !important;
  }
  .mb-mobile-3 {
    margin-bottom: 1rem !important;
  }
  /* Mobile text alignment */
  .text-mobile-center {
    text-align: center !important;
  }
  .text-mobile-left {
    text-align: left !important;
  }
  /* Mobile flex direction */
  .flex-mobile-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-mobile-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  /* Gap utilities for mobile */
  .gap-mobile-2 {
    gap: 0.5rem !important;
  }
  .gap-mobile-3 {
    gap: 1rem !important;
  }
}

/*# sourceMappingURL=base.css.map */
