:root {
  --space-unit: 1em;
  --space-xxs: calc(0.25 * var(--space-unit));
  --space-xs: calc(0.5 * var(--space-unit));
  --space-sm: calc(0.75 * var(--space-unit));
  --space-md: calc(1.25 * var(--space-unit));
  --space-lg: calc(2 * var(--space-unit));
  --space-xl: calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  /* components padding */
  --component-padding: var(--space-sm);
}

@font-face {
  font-family: "Jiotype";
  src: url("./fonts/jiotype/JioType-Light.ttf") format(opentype);
  font-weight: 100;
}
@font-face {
  font-family: "Jiotype";
  src: url("./fonts/jiotype/JioTypeW04-Medium.ttf") format(opentype);
  font-weight: 300;
}
@font-face {
  font-family: "Jiotype";
  src: url("./fonts/jiotype/JioTypeW04-Bold.ttf") format(opentype);
  font-weight: 400;
}
@font-face {
  font-family: "Jiotype";
  src: url("./fonts/jiotype/JioTypeW04-Black.ttf") format(opentype);
  font-weight: 700;
}
@font-face {
  font-family: "Segoe UI";
  src: url("./fonts/SegoeUI-VF.ttf") format(opentype);
}
@font-face {
  font-family: "Museo Sans";
  src: url("./fonts/museo-sans/museosans-300.woff") format(woff);
  font-weight: 300;
}
@font-face {
  font-family: "Museo Sans";
  src: url("./fonts/museo-sans/museosans-500.woff") format(woff);
  font-weight: 500;
}
@font-face {
  font-family: "Museo Sans";
  src: url("./fonts/museo-sans/museosans-700.woff") format(woff);
  font-weight: 700;
}
@font-face {
  font-family: "Museo Sans";
  src: url("./fonts/museo-sans/museosans-900.woff") format(woff);
  font-weight: 900;
}
:root {
  --font-primary: sans-serif;
  --font-secondary: serif;
  /* set base values */
  --text-base-size: 1em;
  --text-scale-ratio: 1.2;
  /* type scale */
  --text-xs: calc(1em / (var(--text-scale-ratio) * var(--text-scale-ratio)));
  --text-sm: calc(1em / var(--text-scale-ratio));
  --text-md: calc(1em * var(--text-scale-ratio));
  --text-lg: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  --text-xxxl: calc(1em * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio) * var(--text-scale-ratio));
  /* line-height */
  --heading-line-height: 1.2;
  --body-line-height: 1.4;
}

body {
  font-size: var(--text-base-size);
  font-family: var(--font-primary);
  color: var(--color-text);
}

h1, h2, h3, h4, form legend {
  color: var(--color-text-heading);
  margin-bottom: var(--space-xxs);
  line-height: var(--heading-line-height);
}

/* text size */
.text--xxxl {
  font-size: var(--text-xxxl);
}

h1, .text--xxl {
  font-size: var(--text-xxl);
}

h2, .text--xl {
  font-size: var(--text-xl);
}

h3, .text--lg {
  font-size: var(--text-lg);
}

h4, .text--md {
  font-size: var(--text-md);
}

:root {
  /* main colors */
  --color-primary: #6d17ce;
  --color-primary-light: hsl(268, 80%, 60%);
  --color-primary-dark: hsl(268, 80%, 10%);
  --color-primary-bg: #E6D8F8;
  --black: #1d1d21;
  --gray-10: #2e2e31;
  --gray-8: #555556;
  --gray-7: #666667;
  --gray-6: #7b7a7d;
  --gray-5: #8c8b8e;
  --gray-4: #a5a5a6;
  --gray-3: #bbbbbc;
  --gray-2: #d1d0d2;
  --gray-1: #fafafa;
  --white: white;
  --transparent: transparent;
  /* feedback */
  --color-success: #00ad4e;
  --color-error: #660014;
  --color-error-bg: #fee6ea;
  --color-warning: #ff9500;
  /* typography */
  --color-text: var(--gray-10);
  --color-text-heading: var(--black);
  --color-text-subtle: var(--gray-6);
  --color-link: var(--color-primary);
  --color-link-visited: var(--color-primary-dark);
  --color-mark: var(--color-accent-bg);
  --color-blockquote-border: var(--gray-2);
  /* border */
  --color-border: var(--gray-2);
  --primary-color-border: var(--color-primary);
  /* body */
  --color-body: var(--white);
  /* forms */
  --form-element-border: var(--color-border);
  --form-element-border-focus: var(--color-primary);
  --form-element-border-error: var(--color-error);
  --form-element-bg: var(--white);
  --form-text-placeholder: var(--gray-4);
  /* buttons */
  --btn-primary-bg: var(--color-primary);
  --btn-primary-hover: var(--color-primary-light);
  --btn-primary-active: var(--color-primary-dark);
  --btn-primary-label: var(--white);
  --btn-secondary-bg: var(--white);
  --btn-secondary-hover: var(--color-primary-bg);
  --btn-secondary-active: var(--color-primary-bg);
  --btn-secondary-label: var(--color-primary);
  --btn-disabled-bg: var(--gray-2);
  --btn-disabled-label: var(--gray-10);
  --btn-destructive-bg: var(--color-error-bg);
  /* icons */
  --color-icon-primary: var(--gray-4);
  --color-icon-secondary: inherit;
  /* Status */
  --status-active: var(--color-success); /* green */
  --status-inactive: #df0000; /* red */
  --status-pending: var(--color-warning); /* yellow */
  --status-neutral: var(--gray-4); /* gray */
}

:root {
  --border-radius-unit: 1em;
  --border-radius-xxs: calc(0.25 * var(--border-radius-unit));
  --border-radius-xs: calc(0.5 * var(--border-radius-unit));
  --border-radius-sm: calc(0.75 * var(--border-radius-unit));
  --border-radius-md: calc(1.25 * var(--border-radius-unit));
  --border-radius-lg: calc(2 * var(--border-radius-unit));
  --border-radius-xl: calc(3.25 * var(--border-radius-unit));
  --border-radius-xxl: calc(5.25 * var(--border-radius-unit));
  --border-radius-full: calc(1000 * var(--border-radius-unit));
  /* components padding */
  --component-radius: var(--border-radius-sm);
}

:root {
  --icon-xs: 16px;
  --icon-sm: 24px;
  --icon-md: 32px;
  --icon-lg: 48px;
  --icon-xl: 64px;
}

.icon {
  display: inline-flex;
  color: var(--color-icon-primary);
  height: var(--icon-xs);
  width: var(--icon-xs);
  line-height: 1;
  align-items: center;
  justify-content: center;
}

:root {
  --navbar-height: 56px;
  --page-header-height: 48px;
  --sticky-z-index: 10;
  --filters-bar-height: 56px;
  --selection-bar-height: 56px;
}

a {
  text-decoration: none;
}

body {
  width: 100vw;
  height: 100vh;
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #f0e8fa 0%, #fff 100%);
  overflow: auto;
  overflow-x: hidden;
}

#root {
  width: 100%;
  height: 100%;
}

.page {
  width: 100%;
  height: 100%;
}

.page-content {
  width: 100%;
  height: calc(100% - var(--navbar-height));
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 10px !important;
  height: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: var(--transparent);
  border-radius: var(--border-radius-full);
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: var(--border-radius-full);
  background: var(--color-primary);
  border: 10px solid var(--transparent);
}

::-webkit-scrollbar-thumb:window-inactive {
  background: var(--color-primary);
}

.table-block {
  margin: var(--space-sm) 0;
  height: calc(100% - (var(--page-header-height) + var(--filters-bar-height)));
  overflow: auto;
}
.table-block .table-responsive {
  overflow: auto;
}
.table-block thead {
  border-radius: var(--border-radius-md);
}
.table-block thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background-color: var(--color-primary-bg);
}
.table-block thead th.table-actions, .table-block thead th.table-actions-header {
  position: sticky;
  z-index: 4 !important;
  right: 0;
  text-align: center;
}
.table-block thead th.name {
  position: sticky;
  z-index: 4 !important;
  left: 0;
}
.table-block thead th:first-child {
  border-top-left-radius: var(--border-radius-xs);
  border-bottom-left-radius: var(--border-radius-xs);
}
.table-block thead th:last-child {
  border-top-right-radius: var(--border-radius-xs);
  border-bottom-right-radius: var(--border-radius-xs);
}

.data-modal .table-block {
  height: auto;
}

.table thead {
  background: var(--color-primary-bg);
}
.table thead tr th,
.table thead tr td {
  border: transparent;
  background: var(--color-primary-bg);
  font-weight: 300;
  font-size: 16px;
  line-height: 137%;
  letter-spacing: 0.01em;
  color: #6d17ce;
  vertical-align: middle;
}
.table thead tr th.name, .table thead tr th.table-actions-header,
.table thead tr td.name,
.table thead tr td.table-actions-header {
  background: var(--color-primary-bg);
}
.table tbody tr th,
.table tbody tr td {
  background: var(--white);
}
.table tbody tr th:first-child,
.table tbody tr td:first-child {
  border-radius: var(--border-radius-xs) 0 0 var(--border-radius-xs);
}
.table tbody tr th:last-child,
.table tbody tr td:last-child {
  border-radius: 0 var(--border-radius-xs) var(--border-radius-xs) 0;
}
.table tbody tr:first-child th,
.table tbody tr:first-child td {
  border-top: transparent;
}
.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: transparent;
}
.table tbody tr th,
.table tbody tr td {
  vertical-align: middle;
}
.table tbody tr th.name, .table tbody tr th.table-actions,
.table tbody tr td.name,
.table tbody tr td.table-actions {
  background: var(--white);
}
.table th.table-actions, .table th.table-actions-header {
  position: sticky;
  z-index: 3 !important;
  right: 0;
  text-align: center;
}
.table th.name {
  position: sticky;
  z-index: 3 !important;
  left: 0;
}
.table .text-truncate {
  max-width: 380px;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-clamp: 2;
  box-orient: vertical;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.table-actions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.table-actions-container button {
  background-color: transparent;
  border: transparent;
  margin: 0;
  border-radius: 8px;
}
.table-actions-container button:hover {
  background-color: #f0e8fa;
}

.table:has(.form-check-input:checked[type=checkbox]) thead {
  border-color: var(--color-primary-bg);
}
.table tr:has(.form-check-input:checked[type=checkbox]) {
  background-color: var(--color-primary-bg);
}
.table tr:has(.form-check-input:checked[type=checkbox]) th {
  border-color: var(--color-border);
}
.table tr:has(.form-check-input:checked[type=checkbox]) th.name, .table tr:has(.form-check-input:checked[type=checkbox]) th.table-actions, .table tr:has(.form-check-input:checked[type=checkbox]) th.table-actions-header {
  background-color: var(--color-primary-bg);
}
.table tr:has(.form-check-input:checked[type=checkbox]) td {
  background-color: var(--color-primary-bg);
  border-color: var(--color-border);
}

.table .table-actions {
  padding: 0;
}

td:has(button) {
  text-align: center;
}

td a,
td a.btn--tertiary {
  padding: 0;
}

.table .photo {
  height: 56px;
  padding: 0;
  text-align: center;
}
.table .photo img {
  height: 100%;
  width: 56px;
  -o-object-fit: cover;
     object-fit: cover;
}
.table .photo.banner {
  width: 120px;
}

.viewers-td {
  display: flex;
  align-items: center;
}

.viewers {
  color: var(--color-text);
  margin-left: var(--space-xs);
}
.viewers .icon {
  width: var(--icon-xs);
  height: var(--icon-xs);
  margin-right: var(--space-xxs);
}
.viewers .icon img {
  width: 100%;
  height: 100%;
}
.viewers .count {
  font-size: var(--text-md);
  line-height: calc(var(--body-line-height) - 0.6);
}

.viewers-header {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  line-height: var(--body-line-height);
}

.row-header {
  font-weight: 400;
  color: var(--color-primary);
  border-color: var(--color-primary);
  border-bottom-width: 2px;
}

.data-modal tr:has(.form-check-input:checked[type=checkbox]),
.data-table tr:has(.form-check-input:checked[type=checkbox]) {
  background-color: var(--transparent);
}
.data-modal .form-check,
.data-table .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}

.status-active,
.status-completed {
  color: var(--status-active);
}

.status-inactive,
.status-rejected,
.status-cancelled {
  color: var(--status-inactive);
}

.status-pending {
  color: var(--status-pending);
}

.page-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) 0;
  background: var(--gray-1);
  height: var(--page-header-height);
  position: sticky;
  top: 0;
  z-index: var(--sticky-z-index);
}
@media (max-width: 767.98px) {
  .page-header {
    height: auto;
  }
}

.page-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}

.page-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 92%;
  letter-spacing: 0.01em;
  color: #000;
}
.page-title h5 {
  margin: 0;
}

.page-actions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  margin: calc(var(--space-xxs) * -1);
}
.page-actions-container button {
  margin: var(--space-xxs);
}

:root {
  --btn-font-size: 1em;
  --btn-sm: calc(var(--btn-font-size) - 0.2em);
  --btn-md: calc(var(--btn-font-size) + 0.2em);
  --btn-lg: calc(var(--btn-font-size) + 0.4em);
  --btn-radius: var(--radius);
}

.btn {
  padding: var(--space-xs) var(--space-md);
}

.btn--primary {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-label);
  border-width: 1px;
  border-color: var(--transparent);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xs) var(--space-md);
  width: auto;
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: normal;
}
.btn--primary:visited {
  color: var(--btn-primary-label);
}
.btn--primary:hover {
  background-color: var(--btn-primary-hover);
  color: var(--white);
}
.btn--primary:active {
  background-color: var(--btn-primary-active);
}

.btn--secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--btn-secondary-bg);
  color: var(--btn-secondary-label);
  border-width: 1px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--primary-color-border);
  padding: var(--space-xs) var(--space-md);
  width: auto;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.btn--secondary:hover {
  background-color: var(--btn-secondary-hover);
}
.btn--secondary:visited {
  color: var(--btn-secondary-label);
}
.btn--secondary:active {
  background-color: var(--btn-secondary-active);
}

.btn--tertiary {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--transparent);
  color: var(--btn-secondary-label);
  padding: var(--space-xs) var(--space-md);
  border-width: 1px;
  border: var(--transparent);
  width: auto;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.btn--tertiary:visited {
  color: var(--btn-secondary-label);
}

.btn--destructive {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: var(--btn-destructive-bg);
  color: var(--color-error);
  border-radius: var(--border-radius-lg);
  padding: var(--space-xs) var(--space-md);
  border-width: 1px;
  border-color: var(--transparent);
  width: auto;
  font-weight: 600;
  letter-spacing: -0.5px;
}
.btn--destructive:visited {
  color: var(--btn-secondary-label);
}
.btn--destructive:hover {
  background-color: var(--color-error);
  color: var(--white);
}

/* feedback */
.btn[disabled] {
  cursor: not-allowed;
  background-color: var(--btn-disabled-bg);
  color: var(--btn-disabled-label);
  box-shadow: none;
  opacity: 0.6;
}
.btn[disabled]:visited {
  color: var(--btn-disabled-label);
}

.btn--sm {
  font-size: var(--btn-sm);
  letter-spacing: -0.2px;
}

.btn--md {
  padding: var(--space-sm) var(--space-md);
}

.btn--lg {
  padding: var(--space-md) var(--space-lg);
}

.btn--full-width {
  display: flex;
  width: 100%;
  justify-content: center;
}

:root {
  --form-control-x: var(--space-xs);
  --form-control-y: var(--space-xs);
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext,
.form-floating > .form-select {
  height: 40px;
  line-height: 1.25;
  border-radius: var(--border-radius-xs);
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
  padding: var(--form-control-x) var(--form-control-y);
}

.form-floating > label {
  border-radius: var(--border-radius-sm);
  padding: var(--space-sm) var(--space-xs);
  line-height: normal;
}

.form-floating > .form-control-plaintext:-webkit-autofill,
.form-floating > .form-control:-webkit-autofill,
.form-floating > .form-select {
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder), .form-floating > .form-control:not(:-moz-placeholder) {
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}

.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}

.form-floating > .form-control:-webkit-autofill ~ label {
  background-color: var(--white);
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
}

.form-floating > .form-control:not(:-moz-placeholder) ~ label {
  background-color: var(--white);
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
  height: auto;
  padding: 2px var(--space-xs);
}

.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  background-color: var(--white);
  color: rgba(var(--bs-body-color-rgb), 0.65);
  transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
  height: auto;
  padding: 2px var(--space-xs);
}

.form-floating > .form-select ~ label {
  padding: 2px var(--space-xs);
}

.file-form input[type=file]::-webkit-file-upload-button:hover,
.file-form input[type=file]::file-selector-button:hover {
  background-color: #f3f3f3;
}
.file-form label:first-of-type {
  z-index: 9;
}

.file-form-label {
  width: calc(100% - 2px);
  height: calc(100% - 2px) !important;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  text-align: center;
  margin: 0;
  border-radius: 4px;
  position: absolute !important;
  top: 1px !important;
  left: 1px !important;
  transform: none !important;
  z-index: 1;
  background-color: var(--white);
}
.file-form-label::after {
  content: none !important;
}

.file-form[type=file]::-webkit-file-upload-button,
.file-form[type=file]::file-selector-button {
  background-color: #ec1616;
  position: absolute;
  border: none;
  top: 0;
  right: 0;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.file-form-selected .file-form-label {
  background: var(--transparent) !important;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  padding: 2px;
  pointer-events: all;
}

.file-form-selected-box {
  padding: 0 !important;
  overflow: hidden;
  height: 80px;
}
.file-form-selected-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.file-form-selected.music .file-form-selected-box {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  align-items: flex-start;
  padding: calc(var(--form-control-y) + 8px) var(--form-control-x) !important;
  height: 110px !important;
}
.file-form-selected.music .file-form-selected-box audio {
  height: 40px;
  width: 100%;
}
.file-form-selected.music .file-form-label {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  height: -moz-fit-content !important;
  height: fit-content !important;
  bottom: var(--form-control-x);
  left: auto !important;
  top: auto !important;
}

.picker.form-floating > .form-control:not(:-moz-placeholder) {
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}

.picker.form-floating > .form-control:not(:placeholder-shown) {
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}

.form-control-color {
  width: 100%;
  height: 120px;
  padding: 0;
}
.form-control-color .form-control {
  width: 100%;
  height: 100%;
  padding: 0 !important;
}
.form-control-color .form-control::-webkit-color-swatch-wrapper {
  padding: 0;
}
.form-control-color .form-control::-webkit-color-swatch {
  border: none;
}

.search-form {
  max-width: 340px;
}
.search-form > .form-control {
  padding-left: var(--space-lg);
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
}
.search-form > .form-control:focus ~ label {
  padding-left: calc(var(--space-lg) - 22px);
}
.search-form > label {
  padding: var(--space-sm) var(--space-xs);
  transform: translateX(var(--space-lg));
}
.search-form .icon {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: var(--space-xs);
  z-index: 2;
}
.search-form .icon svg {
  width: 100%;
  height: 100%;
}

.search-modal-input {
  border: none;
  background-color: var(--transparent);
  width: 100%;
  padding: 0;
}
.search-modal-input .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: var(--space-xs);
  height: 24px;
  width: 24px;
}

.checkbox-group-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  margin: 0 calc(var(--space-xs) * -1);
  flex-wrap: wrap;
}
.checkbox-group-wrapper .form-check {
  margin: var(--space-xs);
}

.checkbox-group-block > label {
  color: var(--gray-8);
  transform: scale(0.85) translateX(-8px);
  height: auto;
}

.select2-container--default .select2-selection--multiple {
  height: auto;
  min-height: 40px;
  line-height: 1.25;
  padding-top: var(--form-control-y);
  padding-bottom: var(--form-control-y);
  border-color: var(--color-border);
  border-radius: var(--border-radius-xs);
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: var(--color-primary-bg);
  border: none;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: var(--color-error);
  border-color: var(--white);
  font-weight: 100;
}

.form-switch-fullwidth {
  padding-left: 0;
}
.form-switch-fullwidth .switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  width: 100%;
}

.form-switch .form-check-input {
  background-color: var(--gray-1);
  height: 1.2em;
  width: 2.2em;
}
.form-switch .form-check-input:checked {
  background-color: var(--color-success);
  border: var(--transparent);
}

:root {
  --offcanvas-padding-y: var(--space-sm);
  --offcanvas-padding-x: var(--space-md);
}

.offcanvas .btn-close {
  background-size: 0.8em 0.8em;
}
.offcanvas tr:has(.form-check-input:checked[type=checkbox]) {
  background-color: var(--transparent);
}
.offcanvas tr:has(.form-check-input:checked[type=checkbox]) th.name, .offcanvas tr:has(.form-check-input:checked[type=checkbox]) th.table-actions, .offcanvas tr:has(.form-check-input:checked[type=checkbox]) th.table-actions-header {
  background-color: var(--transparent);
}

.offcanvas-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.03em;
}

.offcanvas-header {
  padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
  border-bottom: 1px solid var(--bs-border-color);
}
.offcanvas-header .nav-tabs {
  margin-top: var(--space-xs);
}

.offcanvas-footer {
  width: 100%;
  padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
  border-top: 1px solid var(--bs-border-color);
}

.offcanvas-actions-container {
  display: flex;
  gap: var(--space-sm);
}

.offcanvas-size-md {
  width: 45%;
  min-width: 600px;
}
@media (max-width: 991.98px) {
  .offcanvas-size-md {
    min-width: calc(100% - var(--space-md));
  }
}

.offcanvas-size-lg {
  width: 90%;
  min-width: 90%;
}
@media (max-width: 991.98px) {
  .offcanvas-size-lg {
    min-width: calc(100% - var(--space-md));
  }
}

.offcanvas-size-sm .offcanvas-actions-container button {
  width: 100%;
  flex: 1 1 auto;
}

.filters-bar {
  height: var(--filters-bar-height);
  position: sticky;
  top: var(--page-header-height);
  z-index: var(--sticky-z-index);
  background-color: var(--white);
}
.filters-bar .container {
  height: 100%;
}

.filters-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--space-sm);
}

.left-filters-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.right-filters-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1 0 auto;
}
.right-filters-box nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  flex: 1 0 auto;
}

.filters-form {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  margin: calc(var(--space-xs) * -1);
  gap: var(--space-sm);
}
.filters-form > div {
  margin: var(--space-xs);
}
.filters-form .search-block {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  flex: 1 0 auto;
}

.right-filters-box nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  flex: 1 0 auto;
}
.right-filters-box nav .navbar-toggler img {
  width: var(--icon-xs);
  height: var(--icon-xs);
}
.right-filters-box nav .filters-form > div {
  margin: 0;
}
@media (max-width: 767.98px) {
  .right-filters-box nav .filters-form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--space-sm);
    margin: 0;
  }
  .right-filters-box nav .filters-form .search-block {
    flex: 0 0 auto;
    width: 100%;
  }
  .right-filters-box nav .filters-form .search-block .search-form {
    width: 100%;
    max-width: 100%;
  }
}
.right-filters-box nav .offcanvas-footer {
  display: none;
}
@media (max-width: 767.98px) {
  .right-filters-box nav .offcanvas-footer {
    display: flex;
  }
}

.selection-bar {
  height: var(--selection-bar-height);
}
.selection-bar p {
  margin: 0;
}

.selection-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding: var(--space-xxs) 0;
  gap: var(--space-sm);
}

.left-selection-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.right-selection-box {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  flex: 1 0 auto;
}

.selection-actions-container {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-end;
  gap: var(--space-sm);
  flex: 1 0 auto;
}

@media (max-width: 767.98px) {
  .selection-wrapper {
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-sm);
  }
  .selection-wrapper button {
    font-size: var(--text-sm);
    padding: var(--space-xxs) var(--space-xs);
  }
  .right-selection-box {
    justify-content: center;
  }
  .selection-actions-container {
    gap: var(--space-xxs);
  }
}
.nav-tabs {
  border: var(--transparent);
  background: var(--gray-1);
  border-radius: var(--border-radius-xxl);
  /* padding: var(--space-xxs); */
  margin: calc(var(--space-xxs) * -1);
  flex-wrap: nowrap;
}
.nav-tabs .nav-item {
  margin: var(--space-xxs);
}
.nav-tabs .nav-item .nav-link {
  border: var(--transparent);
  background: var(--white);
  border-radius: var(--border-radius-xxl);
  padding: var(--space-xs) var(--space-sm);
}
.nav-tabs .nav-item .nav-link.active {
  background: var(--color-primary);
  color: var(--white);
}
.nav-tabs .nav-item .nav-link:hover {
  background: var(--color-primary-light);
  color: var(--white);
}

:root {
  --modal-padding-y: var(--space-sm);
  --modal-padding-x: var(--space-md);
}

.custom-modal .btn-close {
  background-size: 0.8em 0.8em;
}

.modal-title {
  font-weight: 900;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: -0.03em;
}

.modal-header {
  padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
  border-bottom: 1px solid var(--bs-border-color);
}

.modal-footer {
  padding: var(--offcanvas-padding-y) var(--offcanvas-padding-x);
}

.modal-actions-container {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
}
.modal-actions-container button {
  flex: 1 1 auto;
}

.modal-body-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.illustration-block {
  padding: var(--space-lg);
  background-color: var(--gray-1);
  border-radius: var(--border-radius-full);
  margin-bottom: var(--space-md);
}

.data-modal .modal-dialog {
  width: 70%;
  min-width: 300px;
  max-width: none;
}
@media (max-width: 767.98px) {
  .data-modal .modal-dialog {
    width: unset;
    min-width: unset;
  }
}

.preview-modal .modal-body {
  padding: 0;
}
.preview-modal .container {
  padding: 0;
}
.preview-modal .preview-banner iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.preview-modal .preview-article iframe {
  width: 100%;
  height: 450px;
  max-height: 70%;
  border: none;
}

.lg-container {
  z-index: 1050;
  position: fixed;
}

.lg-backdrop.in {
  opacity: 0.8;
}

.header {
  height: var(--navbar-height);
}

.navbar {
  background-color: var(--color-primary-bg);
  padding: 8px 16px;
}
.navbar .btn-check:checked + .btn,
.navbar .btn.active,
.navbar .btn.show,
.navbar .btn:first-child:active,
.navbar :not(.btn-check) + .btn:active {
  border-color: var(--white);
}

.nav-item {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 130%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
.nav-item.active {
  font-weight: 700;
  color: #6d17ce;
}
.nav-item.active .nav-link {
  color: #6d17ce;
  text-align: start;
}
.nav-item:focus-visible {
  outline: none;
}
.nav-item .nav-link {
  color: #000;
  padding: var(--space-xs) var(--space-md);
}
.nav-item .dropdown-menu {
  padding: calc(var(--space-xxs) * -1) 0;
}
.nav-item .dropdown-menu li {
  padding: 0 var(--space-xxs);
}
.nav-item .dropdown-menu li .dropdown-item {
  background-color: var(--gray-1);
  padding: var(--space-xxs);
  border-radius: var(--border-radius-xs);
  margin: var(--space-xxs) 0;
}
.nav-item .dropdown-menu li .dropdown-item:hover {
  background-color: var(--color-primary-bg);
}
.nav-item .dropdown-menu li .dropdown-item:active {
  color: var(--color-text);
}

.navbar-brand {
  height: 40px;
  width: auto;
  display: block;
}
.navbar-brand img {
  height: 100%;
  width: auto;
}

.user-profile-menu .dropdown-toggle {
  display: flex;
  align-items: center;
  padding: 0 var(--space-xs);
  color: #000;
}
.user-profile-menu img {
  border-radius: 1000px;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
}
.dropdown-toggle::after {
  border: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  width: 8px;
  height: 8px;
}
.dropdown-toggle.show::after {
  transform: rotateZ(180deg);
}

.dropend .dropdown-toggle::after {
  border: none;
  transform: rotate(-90deg);
}

.dashboard-block {
  height: calc(100% - (var(--page-header-height) + var(--filters-bar-height)));
  padding-bottom: var(--space-sm);
  overflow: auto;
}

.dashboard-card,
.dashboard-sub-card {
  padding: var(--space-sm);
  height: 100%;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--color-border);
  background-color: rgba(255, 255, 255, 0.4392156863);
}

.dashboard-card {
  display: flex;
  flex-direction: column;
}
.dashboard-card > .row {
  height: 100%;
}
@media (max-width: 767.98px) {
  .dashboard-card > .row {
    height: auto;
  }
}

.dashboard-sub-card {
  border-radius: var(--border-radius-sm);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  justify-content: flex-start;
}
.card-header .icon {
  margin-right: var(--space-sm);
}

.card-content {
  flex: 1;
}
.card-content > .row {
  height: 100%;
}
@media (max-width: 767.98px) {
  .card-content > .row {
    height: auto;
  }
}
.card-content > .row:first-child > [class*=col-] {
  height: 100%;
}

.stat-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.stat-number {
  font-weight: 500;
  font-size: var(--text-sm);
  line-height: 118%;
  font-weight: 600;
}

.stat-label {
  font-size: var(--text-xs);
  line-height: 118%;
  color: var(--gray-5);
}

.stat--lg .stat-number {
  font-size: var(--text-lg);
}
.stat--lg .stat-label {
  font-size: var(--text-md);
  line-height: 104%;
}

.color-box {
  width: 100%;
  height: 4px;
  margin-top: var(--space-sm);
  border-radius: var(--border-radius-sm);
  background-color: var(--gray-2);
}

div:has(> .color-box) {
  align-self: flex-end;
}

.users .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background-color: #E8FAEB;
}
.users .row > [class*=col-]:nth-child(2) .dashboard-sub-card {
  background-color: #FAF0E8;
}

.connect .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fae8f7 0%, #fff 100%), #fcfcfc;
}
.connect .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #de21be;
}
.connect .row > [class*=col-]:nth-child(2) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fae8e8 0%, #fff 100%), #fcfcfc;
}
.connect .row > [class*=col-]:nth-child(2) .dashboard-sub-card .color-box {
  background-color: #d12e2e;
}

.engage .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #e8f8fa 0%, #fff 100%), #fcfcfc;
}
.engage .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #21c5de;
}
.engage .row > [class*=col-]:nth-child(2) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #eefae8 0%, #fff 100%), #fcfcfc;
}
.engage .row > [class*=col-]:nth-child(2) .dashboard-sub-card .color-box {
  background-color: #60de21;
}

.grow .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #eee8fa 0%, #fff 100%), #fcfcfc;
}
.grow .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #6021de;
}
.grow .row > [class*=col-]:nth-child(2) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fae8f3 0%, #fff 100%), #fcfcfc;
}
.grow .row > [class*=col-]:nth-child(2) .dashboard-sub-card .color-box {
  background-color: #de2192;
}

.bizruptor .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #faf0e8 0%, #fff 100%), #fcfcfc;
}
.bizruptor .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #de7321;
}

.help .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #e8fae8 0%, #fff 100%), #fcfcfc;
}
.help .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #21debe;
}
.help .row > [class*=col-]:nth-child(2) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #f0e8fa 0%, #fff 100%), #fcfcfc;
}
.help .row > [class*=col-]:nth-child(2) .dashboard-sub-card .color-box {
  background-color: #9921de;
}

.goals .row > [class*=col-]:nth-child(1) .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fafae8 0%, #fff 100%), #fcfcfc;
}
.goals .row > [class*=col-]:nth-child(1) .dashboard-sub-card .color-box {
  background-color: #cede21;
}

.modal .stat-wrapper {
  margin-bottom: 0;
  margin-top: var(--space-sm);
}
.modal .stat-label {
  font-size: var(--text-sm);
}
.modal.users .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #e8faeb 0%, #fff 100%), #fcfcfc;
}
.modal.connect .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fae8f7 0%, #fff 100%), #fcfcfc;
}
.modal.engage .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #e8f8fa 0%, #fff 100%), #fcfcfc;
}
.modal.grow .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #eee8fa 0%, #fff 100%), #fcfcfc;
}
.modal.bizruptor .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #faf0e8 0%, #fff 100%), #fcfcfc;
}
.modal.help .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #e8fae8 0%, #fff 100%), #fcfcfc;
}
.modal.goals .dashboard-sub-card {
  background: radial-gradient(49.93% 78.91% at 63.3% 100%, #fafae8 0%, #fff 100%), #fcfcfc;
}

.engage-story-page .data-modal.preview-modal .modal-dialog {
  width: 80%;
  min-width: 300px;
  max-width: 600px;
}

.post-selection-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.post-card {
  position: relative;
  width: calc(50% - var(--space-xs));
  height: 100%;
  padding: var(--space-sm) var(--space-md);
  background-color: var(--white);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  transition: transform 0.3s ease;
}

.post-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  margin-bottom: var(--space-sm);
}
.post-card-header .form-check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.post-card-header .post-title {
  font-size: var(--font-size-md);
  font-weight: bold;
}

.post-card-info-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
}
.post-card-info-block .img-block {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-full);
  overflow: hidden;
  flex-shrink: 0;
}
.post-card-info-block .img-block img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-card-info-block .post-card-title-text {
  font-size: var(--text-md);
  margin: 0;
}
.post-card-info-block .post-card-category {
  font-size: var(--text-sm);
  margin: 0;
}

.post-content {
  font-size: var(--font-size-md);
  color: var(--text-color);
  line-height: 1.6;
}

.post-card-description {
  margin: 0;
}

.submenu-block {
  background-color: var(--white);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--gray-2);
  padding: var(--space-sm);
}
.submenu-block h5 {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--gray-10);
}

.carousel-inner {
  border-radius: var(--border-radius-sm);
}
.carousel-inner .carousel-item {
  height: 200px;
  max-height: 300px;
}
.carousel-inner .carousel-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.showcase-user-info {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
  gap: var(--space-sm);
}
.showcase-user-info .user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

.showcase-user-info .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.onboarding-page {
  width: 100%;
  height: 100%;
  background: var(--gray-1);
}
.onboarding-page .container {
  height: 100%;
}
@media (max-width: 991.99px) {
  .onboarding-page .container {
    max-width: 100%;
  }
}
.onboarding-page .onb-col {
  height: 100%;
}
@media (max-width: 767.99px) {
  .onboarding-page .onb-col {
    height: auto;
  }
}

.onboarding-illustration-block {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 56px;
}
.onboarding-illustration-block .logo {
  width: auto;
  height: 64px;
}
.onboarding-illustration-block .logo .img-block {
  height: 100%;
}
.onboarding-illustration-block .logo img {
  height: 100%;
  width: auto;
}
.onboarding-illustration-block .tagline {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.01em;
  color: var(--color-text-heading);
}
.onboarding-illustration-block .picture {
  display: flex;
  height: 500px;
  width: auto;
  max-height: 70vh;
}
.onboarding-illustration-block .picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
@media (max-width: 767.98px) {
  .onboarding-illustration-block .picture {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .onboarding-illustration-block {
    text-align: center;
    justify-content: flex-start;
    gap: var(--space-lg);
  }
}

.onboarding-card-block {
  display: flex;
  height: 100%;
  align-items: center;
  width: 100%;
}
.onboarding-card-block .onboarding-card {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 48px var(--space-xxl);
  background: var(--white);
  max-width: 520px;
  margin: 0 auto;
}
.onboarding-card-block .onboarding-card .onboard-heading {
  font-weight: 900;
  font-size: 2rem;
  line-height: 100%;
  letter-spacing: -0.03em;
  text-align: center;
  color: #000;
  margin-bottom: 24px;
}
.onboarding-card-block .onboarding-card .onboarding-support-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: var(--color-text-subtle);
  margin-bottom: 0;
}
.onboarding-card-block .onboarding-card .onboarding-support-text span {
  font-weight: 700;
  color: var(--color-text-heading);
}
@media (max-width: 575.98px) {
  .onboarding-card-block .onboarding-card {
    padding: var(--space-md);
  }
}

.onboarding-stepper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}
.onboarding-stepper .step {
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboarding-stepper .step span {
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 0 auto;
  background-color: var(--color-border);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #fff;
}
.onboarding-stepper .step .line {
  height: 1px;
  width: 40px;
  flex: 1 0 auto;
  background-color: var(--color-border);
}
.onboarding-stepper .step.active span {
  background-color: var(--color-primary);
}
.onboarding-stepper .step.active .line {
  background-color: var(--color-primary);
}

.otp-wrapper {
  display: flex;
  gap: var(--space-md);
}
.otp-wrapper input {
  text-align: center;
}

.resend-otp-block {
  height: 32px;
}

.timer {
  --progress-value: 02;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--color-text-subtle);
}

.timer-progress-bar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: radial-gradient(closest-side, white 0%, transparent 0% 100%, white 0), conic-gradient(var(--color-primary) calc(var(--progress-value) * 1%), #ffffff 0);
  animation: css-progress 2s 1 forwards;
  transition: all 0.3s ease-in-out;
}

.error-404-page .page-content {
  height: 100%;
}
.error-404-page .logo {
  height: 48px;
  margin-bottom: var(--space-md);
}
.error-404-page .logo img {
  height: 100%;
  width: auto;
}

.error-404-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.error-404-container .error-404-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}/*# sourceMappingURL=styles.css.map */