@import url('https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600;700&display=swap');@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

/* Base button styles */

.btn {
  display: inline-flex;
  border: 0px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.05s;
  color: var(--content-p);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Shared Interaction States for All Buttons --------------------------------------------------------------------*/

/* Intentionally no global :hover shadow. Specific buttons add hover effects in
   their feature-level CSS to avoid cross-component styling leaks. */

.btn:not(:disabled):active {
  box-shadow: var(--shadow-active);
  transform: var(--scale-shrink);
}

.btn:disabled {
  color: var(--content-s);
  background: var(--background-disabled);
  opacity: var(--disable-opacity);
  cursor: default;
}

.btn svg {
  color: currentColor;
}

/* Button sizes --------------------------------------------------------------------*/

.btn-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  padding: 12px 24px;
  gap: var(--spacing-m);
  height: 50px;
  min-width: 112px;
  border-radius: var(--round-corner-l);

  --outline-border: 2px;
  }

.btn-l svg {
  width: var(--icon-size-l);
  height: var(--icon-size-l);
}

.btn-m {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  padding: 10px 20px;
  gap: var(--spacing-s);
  height: 44px;
  min-width: 96px;
  border-radius: var(--round-corner-m);

  --outline-border: 1.5px;
  }

.btn-m svg {
  width: var(--icon-size-m);
  height: var(--icon-size-m);
}

.btn-s {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 8px 16px;
  gap: var(--spacing-xs);
  height: 36px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }

.btn-s svg {
  width: var(--icon-size-s);
  height: var(--icon-size-s);
}

.btn-xs {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 6px 12px;
  gap: var(--spacing-xs);
  height: 28px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }

.btn-xs svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

/* Button variants --------------------------------------------------------------------*/

/* Support */

.btn-support {
  background: #ff00dd;
}

.btn-support:hover {
  background: #8a0077;
}

/* Primary */

.btn-primary {
  background: var(--btn-gradient-primary);
}

.btn-primary:hover {
  background: var(--btn-gradient-primary-dark);
}

.btn-primary:not(:disabled):active {
  background: var(--btn-gradient-primary-darker);
}

.btn-primary:disabled {
  background: var(--primary-disable);
}

/* Secondary */

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-secondary:not(:disabled):active {
  background: var(--secondary-darker);
}

.btn-secondary:disabled {
  background: var(--secondary-disable);
}

/* Tertiary */

.btn-tertiary {
  background: none;
}

.btn-tertiary:hover {
  background: var(--secondary-dark);
}

.btn-tertiary:not(:disabled):active {
  background: var(--secondary-darker);
}

.btn-tertiary:disabled {
  background: var(--secondary-disable);
}

/* Ghost */

.btn-ghost {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary);
  outline-offset: -1px;
}

.btn-ghost:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}

.btn-ghost:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}

.btn-ghost:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}

/* Ghost Tab */

.btn-ghost-tab {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--content-t);
  outline-offset: -1px;
  border-radius: 100px;
}

.btn-ghost-tab:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}

.btn-ghost-tab:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}

.btn-ghost-tab:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}

.btn-ghost-tab.filtered {
  border: 0;
  background: var(--ghost-pressed);
  ;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary-darker);
  outline-offset: -1px;
  border-radius: 100px;
  font-weight: var(--text-weight-xl);
  /* box-shadow: var(--shadow-active); */
}

/* Circle Icon
.btn-circle-icon {
  border-radius: 64px;
  gap: var(--spacing-m);
  padding: 14px;

  background: var(--tertiary-bg);
  box-shadow: 0px 0.5px 2.5px 0px rgba(0, 0, 0, 0.30), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.05);
}

.btn-circle-icon:hover {
  background: var(--layer-dark), var(--tertiary-bg);
  box-shadow: var(--shadow-hover);
}

.btn-circle-icon:active {
  background: var(--layer-darker), var(--tertiary-bg);
  box-shadow: var(--shadow-active);
}

.btn-circle-icon:disabled {
  background: var(--btn-gradient-secondary-darkest);
}

.btn-circle-icon.btn-l {
  height: 52px;
  min-width: 52px;
  padding: 12px;
  gap: var(--spacing-m);
}

.btn-circle-icon.btn-m {
  height: 44px;
  min-width: 44px;
  padding: 10px;
  gap: var(--spacing-s);
}

.btn-circle-icon.btn-s {
  height: 36px;
  min-width: 36px;
  padding: 8px;
  gap: var(--spacing-xs);
} */

/* Basic (No BG or Border) */

/* Unique padding for menu */

.btn-menu {
  background-color: none;
  border-radius: var(--round-corner-m);
  position: relative;
  transform: 1;
  justify-content: left;
  padding: 6px 10px;
  min-width: 40px;
}

.btn-menu:hover {
  background: var(--primary);
  box-shadow: none;
}

.btn-menu:not(:disabled):active {
  background: var(--primary-dark);
  box-shadow: var(--shadow-active);
  transform: scale(1);
  /* transform: var(--scale-shrink); */
}

.btn-menu:not(:disabled):active::before {
  background: var(--primary-dark);
}

.btn-menu:disabled {
  background: var(--btn-gradient-secondary-darkest);
}

.btn-transparent {
  background: transparent;
}

/* Button Circle */

.btn-circle-button {
  height: 32px;
  min-width: 32px;

  gap: 0px;
  padding: 8px;
  border-radius: 64px;
  /* backdrop-filter: blur(40px); */
  background: var(--circle-base);
  transition: 0s;
}

.btn-circle-button.btn-m svg {
  width: 16px;
  height: 16px;
}

.btn-circle-button:hover {
  background: var(--tertiary-bg);
}

.btn-circle-button:not(:disabled):active {
  display: inline-flex;
  gap: var(--spacing-xs);
  /* padding: 8px 12px 8px 6px; */
}

.btn-copy {
  display: flex;
  flex-direction: row;
}

.copy-icon {
  display: inline;
}

.btn-copy:disabled .copy-icon {
  display: inline;
}

.btn-copy[data-active="true"] .copy-icon {
  display: none;
}

.copied-group {
  display: none;
  align-items: center;
  flex-direction: row;
  gap: var(--spacing-xs);
}

.btn-copy:disabled .copied-group {
  display: none;
}

.btn-copy[data-active="true"] .copied-group {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  display: flex;
  flex-direction: row;
  }

.btn-circle-button:disabled {
  background: var(--circle-base);
  box-shadow: var(--shadow-disabled);
}

/* Button Round variants --------------------------------------------------------------------*/

.btn-round {
  border-radius: 64px;
}

.btn-round.btn-l {
  padding: 13px;
  min-width: 50px;
}

.btn-round.btn-m {
  padding: 12px;
  min-width: 44px;
}

.btn-round.btn-s {
  padding: 10px;
  min-width: 36px;
}

.btn-round.btn-xs {
  padding: 8px;
  min-width: 28px;
}

/* Button Square */

.btn-square {
  border-radius: 6px;
}

.btn-square.btn-l {
  padding: 12px;
  min-width: 50px;
}

.btn-square.btn-m {
  padding: 10px;
  min-width: 44px;
}

.btn-square.btn-s {
  padding: 8px;
  min-width: 36px;
}

.btn-square.btn-xs {
  padding: 6px;
  min-width: 28px;
}.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

.input-field-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Ensures it takes full width */
  max-width: 100%;
  /* Prevents unwanted restrictions */
}

.input-field-label-counter-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.input-field-container.full-width {
  width: 100%;
}

input[type="number"].hide-spinner::-webkit-outer-spin-button,
input[type="number"].hide-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"].hide-spinner {
  -moz-appearance: textfield;
}

.input-wrapper {
  position: relative;
  height: 44px;
  padding: 10px 16px;
  background: var(--input-field-bg);
  border-radius: var(--round-corner-xs);
  border: 1px solid transparent;
  display: flex;
  width: 100%;
  /* Ensures wrapper takes full width */
  align-items: center;
  box-sizing: border-box;
  content: white;
}

/* 
.small-corner .input-wrapper {
  border-radius: var(--round-corner-xs);
} */

.input-wrapper:focus-within {
  border-color: var(--content-s);
}

.input-wrapper.error {
  border-color: var(--content-n);
}

.input-wrapper.error:focus-within {
  border-color: var(--content-n);
}

.input-field {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  width: 100%;
  /* Ensures the input field fills the wrapper */
  background: transparent;
  color: var(--content-p);
  outline: none;
  transition: all 0.2s ease;
  }

/* .input-field.with-label {
  margin-top: 18px;
} */

.input-field:disabled {
  opacity: 0.2;
}

.input-field:focus+.input-label {
  /* @apply detail-s; */
  top: var(--spacing-s);
  transform: translateY(0);
  color: var(--content-p);
}

.input-field:-webkit-autofill,
.input-field:-webkit-autofill:hover,
.input-field:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--secondary-content);
  -webkit-box-shadow: 0 0 0px 1000px var(--bg-base) inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.input-field-counter {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  color: var(--content-s);
  margin-left: auto;
  margin-bottom: var(--spacing-xs);
  }

.input-field-counter.over-limit {
  color: var(--content-n);
}

.input-label {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  display: block;
  color: var(--content-s);
  margin-bottom: var(--spacing-xs);
  }

.input-label.disabled {
  color: var(--content-s);
}

.input-field::-moz-placeholder {
  color: var(--content-t);
}

.input-field::placeholder {
  color: var(--content-t);
}

.input-field:focus::-moz-placeholder {
  color: var(--content-s);
}

.input-field:focus::placeholder {
  color: var(--content-s);
}

.input-error-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  display: flex;
  gap: var(--spacing-xs);
  color: var(--content-n);
  margin-top: var(--spacing-xs);
  }

.input-error-icon {
  width: 14px;
  height: 14px;
}

.input-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--content-s);
}

.input-field:focus+.input-icon {
  color: var(--content-p);
}

.input-field.with-icon {
  padding: 28px;
}

.input-clear-icon {
  position: absolute;
  right: 8px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-clear-icon svg {
  width: 12px;
  height: 12px;
}

/* variant */

.input-wrapper-searchField {
  background: var(--search-field-bg);
  border-radius: var(--round-corner-xl);
}

.input-wrapper-searchField .input-field::-moz-placeholder {
  color: var(--content-s);
  /* border: 1px solid var(--Indigo_D, #5E5CE6); */
}

.input-wrapper-searchField .input-field::placeholder {
  color: var(--content-s);
  /* border: 1px solid var(--Indigo_D, #5E5CE6); */
}

.input-wrapper-searchField:focus-within {
  background: var(--input-field-bg);
  border-color: transparent;
  /* outline: 3px solid rgba(94, 92, 230, 0.5); */
  box-shadow: 0px 0.5px 2.5px 0px rgba(0, 0, 0, 0.30), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.05), 0px 0px 0px 3px rgba(94, 92, 230, 0.50);
}.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

.login-form-container {
    display: flex;
    flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
  padding: 0px 16px 16px 16px;
  width: 328px;
}

.login-form-container-login-redirect {
  width: min(420px, calc(100vw - 32px));
}

.form-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: var(--spacing-s);
}

.login-title {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
    font-weight: var(--text-weight-xl);
  align-self: center;
  }

.login-form {
    display: flex;
    flex-direction: column;
  gap: var(--spacing-l);
  width: 100%;
}

.login-input-area-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: var(--spacing-s);
}

.login-input-field-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: var(--spacing-l);
}

.error-message {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 4px;
  color: var(--content-n);
  min-height: 16px;
  margin-bottom: var(--spacing-xs);
  width: 100%;
}

.mode-switch-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.mode-label {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  color: var(--content-d);
  }

.link-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

.link-text:hover {
  text-decoration: underline;
}

.mode-switch {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.25rem;
  text-align: left;
  justify-content: flex-start;
  width: 100%;
  }

.login-title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-s);
}

.login-description-label {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;  
  color: var(--content-d);
  }

.divider {
  padding: 8px 0px;
}

.google-login-button {
  position: relative;
  justify-content: center;
  background: #131314; /* Dark theme fill per Google branding */
  border: 1px solid #8E918F;
  color: #E3E3E3;
}

.google-login-button-text {
  flex: 0 1 auto;
}

.google-login-button-icon {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-login-redirect {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  position: relative;
  border-radius: var(--round-corner-2xl);
  border: 1px solid var(--outline);
  background: var(--secondary-bg);
  box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  animation: google-login-redirect-enter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.google-login-redirect-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 32px;
}

.google-login-redirect-icon-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-login-redirect-icons {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-login-redirect-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #111113;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.12);
  animation: google-login-redirect-icon-left-enter 0.35s ease-out 0.1s both;
}

.google-login-redirect-app-icon > img {
  -o-object-fit: contain;
     object-fit: contain;
}

.google-login-redirect-connector {
  width: 64px;
  height: 2px;
  margin: 0 12px;
  background: color-mix(in srgb, var(--outline) 35%, transparent);
  position: relative;
  overflow: hidden;
}

.google-login-redirect-connector-fill {
  position: absolute;
  inset: 0;
  background: var(--primary);
  animation: google-login-redirect-connector-flow 1.5s linear infinite;
}

.google-login-redirect-google-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--outline) 55%, transparent);
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.10);
  animation: google-login-redirect-icon-right-enter 0.35s ease-out 0.2s both;
}

.google-login-redirect-google-svg {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transform: scale(1.35);
  transform-origin: center;
}

.google-login-redirect-title {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
    font-weight: var(--text-weight-xl);
  color: var(--content-p);
  text-align: center;
  }

.google-login-redirect-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  margin-bottom: 32px;
}

.google-login-redirect-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.google-login-redirect-security {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
    font-weight: var(--text-weight-xl);
  color: var(--content-p);
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  }

.google-login-redirect-secureline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  color: var(--content-d);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  }

.google-login-redirect-security-icon {
  width: 16px;
  height: 16px;
  color: #22c55e;
}

.google-login-redirect-url-chip {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--outline) 55%, transparent);
  background: color-mix(in srgb, var(--primary-bg) 80%, transparent);
  color: var(--content-p);
  font-weight: 600;
  }

.google-login-redirect-url-icon {
  width: 14px;
  height: 14px;
  color: color-mix(in srgb, var(--content-d) 65%, transparent);
}

.google-login-redirect-loading {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.google-login-redirect-loading-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  color: var(--content-d);
  }

.google-login-redirect-body .btn.google-login-redirect-cancel {
  margin-top: 8px;
}

@media (max-width: 530px) {
  .google-login-redirect-body { padding: 24px; }
}

@keyframes google-login-redirect-enter {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes google-login-redirect-icon-left-enter {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes google-login-redirect-icon-right-enter {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes google-login-redirect-connector-flow {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
.busy-button {
  position: relative;
}

.busy-button-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

.busy-button-spinner-inner {
  width: 100%;
  height: 100%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
} .menu {
  background: var(--tertiary-bg);
  border-radius: var(--round-corner-xl);
  display: flex; 
  flex-direction: column;
  position: absolute;
  margin: var(--spacing-s) 0; 
  padding: 6px;  
  min-width: 50px;
  min-height: 50px;
  right: 0;
  z-index: var(--index-popover);
}

.menu.left { right: 0; }

.menu.right { left: 0; }

.menu.above {
  bottom: calc(100% - 4px);
  top: auto;
}

.menu.middle-left {
  right: 100%;
  top: 50%;
  transform: translateY(0%);
  margin-right: 8px;
}

.menu.middle-left.arrow::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid var(--tertiary-bg);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.menu > * {
  width: 100%;
}.image-actual {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.image-placeholder {
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: center;
}

.avatar.image-placeholder {
  background-size: 50%;
}
.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

/* Base button styles */

.btn {
  display: inline-flex;
  border: 0px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.05s;
  color: var(--content-p);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Shared Interaction States for All Buttons --------------------------------------------------------------------*/

/* Intentionally no global :hover shadow. Specific buttons add hover effects in
   their feature-level CSS to avoid cross-component styling leaks. */

.btn:not(:disabled):active {
  box-shadow: var(--shadow-active);
  transform: var(--scale-shrink);
}

.btn:disabled {
  color: var(--content-s);
  background: var(--background-disabled);
  opacity: var(--disable-opacity);
  cursor: default;
}

.btn svg {
  color: currentColor;
}

/* Button sizes --------------------------------------------------------------------*/

.btn-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  padding: 12px 24px;
  gap: var(--spacing-m);
  height: 50px;
  min-width: 112px;
  border-radius: var(--round-corner-l);

  --outline-border: 2px;
  }

.btn-l svg {
  width: var(--icon-size-l);
  height: var(--icon-size-l);
}

.btn-m {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  padding: 10px 20px;
  gap: var(--spacing-s);
  height: 44px;
  min-width: 96px;
  border-radius: var(--round-corner-m);

  --outline-border: 1.5px;
  }

.btn-m svg {
  width: var(--icon-size-m);
  height: var(--icon-size-m);
}

.btn-s {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 8px 16px;
  gap: var(--spacing-xs);
  height: 36px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }

.btn-s svg {
  width: var(--icon-size-s);
  height: var(--icon-size-s);
}

.btn-xs {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 6px 12px;
  gap: var(--spacing-xs);
  height: 28px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }

.btn-xs svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}

/* Button variants --------------------------------------------------------------------*/

/* Support */

.btn-support {
  background: #ff00dd;
}

.btn-support:hover {
  background: #8a0077;
}

/* Primary */

.btn-primary {
  background: var(--btn-gradient-primary);
}

.btn-primary:hover {
  background: var(--btn-gradient-primary-dark);
}

.btn-primary:not(:disabled):active {
  background: var(--btn-gradient-primary-darker);
}

.btn-primary:disabled {
  background: var(--primary-disable);
}

/* Secondary */

.btn-secondary {
  background: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
}

.btn-secondary:not(:disabled):active {
  background: var(--secondary-darker);
}

.btn-secondary:disabled {
  background: var(--secondary-disable);
}

/* Tertiary */

.btn-tertiary {
  background: none;
}

.btn-tertiary:hover {
  background: var(--secondary-dark);
}

.btn-tertiary:not(:disabled):active {
  background: var(--secondary-darker);
}

.btn-tertiary:disabled {
  background: var(--secondary-disable);
}

/* Ghost */

.btn-ghost {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary);
  outline-offset: -1px;
}

.btn-ghost:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}

.btn-ghost:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}

.btn-ghost:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}

/* Ghost Tab */

.btn-ghost-tab {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--content-t);
  outline-offset: -1px;
  border-radius: 100px;
}

.btn-ghost-tab:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}

.btn-ghost-tab:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}

.btn-ghost-tab:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}

.btn-ghost-tab.filtered {
  border: 0;
  background: var(--ghost-pressed);
  ;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary-darker);
  outline-offset: -1px;
  border-radius: 100px;
  font-weight: var(--text-weight-xl);
  /* box-shadow: var(--shadow-active); */
}

/* Circle Icon
.btn-circle-icon {
  border-radius: 64px;
  gap: var(--spacing-m);
  padding: 14px;

  background: var(--tertiary-bg);
  box-shadow: 0px 0.5px 2.5px 0px rgba(0, 0, 0, 0.30), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.05);
}

.btn-circle-icon:hover {
  background: var(--layer-dark), var(--tertiary-bg);
  box-shadow: var(--shadow-hover);
}

.btn-circle-icon:active {
  background: var(--layer-darker), var(--tertiary-bg);
  box-shadow: var(--shadow-active);
}

.btn-circle-icon:disabled {
  background: var(--btn-gradient-secondary-darkest);
}

.btn-circle-icon.btn-l {
  height: 52px;
  min-width: 52px;
  padding: 12px;
  gap: var(--spacing-m);
}

.btn-circle-icon.btn-m {
  height: 44px;
  min-width: 44px;
  padding: 10px;
  gap: var(--spacing-s);
}

.btn-circle-icon.btn-s {
  height: 36px;
  min-width: 36px;
  padding: 8px;
  gap: var(--spacing-xs);
} */

/* Basic (No BG or Border) */

/* Unique padding for menu */

.btn-menu {
  background-color: none;
  border-radius: var(--round-corner-m);
  position: relative;
  transform: 1;
  justify-content: left;
  padding: 6px 10px;
  min-width: 40px;
}

.btn-menu:hover {
  background: var(--primary);
  box-shadow: none;
}

.btn-menu:not(:disabled):active {
  background: var(--primary-dark);
  box-shadow: var(--shadow-active);
  transform: scale(1);
  /* transform: var(--scale-shrink); */
}

.btn-menu:not(:disabled):active::before {
  background: var(--primary-dark);
}

.btn-menu:disabled {
  background: var(--btn-gradient-secondary-darkest);
}

.btn-transparent {
  background: transparent;
}

/* Button Circle */

.btn-circle-button {
  height: 32px;
  min-width: 32px;

  gap: 0px;
  padding: 8px;
  border-radius: 64px;
  /* backdrop-filter: blur(40px); */
  background: var(--circle-base);
  transition: 0s;
}

.btn-circle-button.btn-m svg {
  width: 16px;
  height: 16px;
}

.btn-circle-button:hover {
  background: var(--tertiary-bg);
}

.btn-circle-button:not(:disabled):active {
  display: inline-flex;
  gap: var(--spacing-xs);
  /* padding: 8px 12px 8px 6px; */
}

.btn-copy {
  display: flex;
  flex-direction: row;
}

.copy-icon {
  display: inline;
}

.btn-copy:disabled .copy-icon {
  display: inline;
}

.btn-copy[data-active="true"] .copy-icon {
  display: none;
}

.copied-group {
  display: none;
  align-items: center;
  flex-direction: row;
  gap: var(--spacing-xs);
}

.btn-copy:disabled .copied-group {
  display: none;
}

.btn-copy[data-active="true"] .copied-group {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  display: flex;
  flex-direction: row;
  }

.btn-circle-button:disabled {
  background: var(--circle-base);
  box-shadow: var(--shadow-disabled);
}

/* Button Round variants --------------------------------------------------------------------*/

.btn-round {
  border-radius: 64px;
}

.btn-round.btn-l {
  padding: 13px;
  min-width: 50px;
}

.btn-round.btn-m {
  padding: 12px;
  min-width: 44px;
}

.btn-round.btn-s {
  padding: 10px;
  min-width: 36px;
}

.btn-round.btn-xs {
  padding: 8px;
  min-width: 28px;
}

/* Button Square */

.btn-square {
  border-radius: 6px;
}

.btn-square.btn-l {
  padding: 12px;
  min-width: 50px;
}

.btn-square.btn-m {
  padding: 10px;
  min-width: 44px;
}

.btn-square.btn-s {
  padding: 8px;
  min-width: 36px;
}

.btn-square.btn-xs {
  padding: 6px;
  min-width: 28px;
}

.navbar {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  height: 64px;
  /* background-color: transparent;
  background-image: linear-gradient(180deg, rgba(20, 20, 20, 0.80) 0%, rgba(20, 20, 20, 0.22) 80%, rgba(20, 20, 20, 0.00) 100%); */
  background-color: black;
  z-index: var(--index-navbar);
  transition: height 0.18s ease-out;
}

.navbar.scrolled {
  /* background-color: var(--primary-bg); */
  /* box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.20), 0px 2px 60px 0px rgba(0, 0, 0, 0.20); */
}

.navbar:hover {
  /* background-color: var(--primary-bg); */
  /* box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.20), 0px 2px 60px 0px rgba(0, 0, 0, 0.20); */
}

.navbar-left-group {
    display: flex;
    align-items: center;
  gap: 40px;
}

.btn.navbar-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
  width: 36px;
  height: 36px;
}

.navbar-logo-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
    font-weight: var(--text-weight-xl);
  color: #FFF;
  }

.navbar-items {
    display: flex;
    align-items: center;
  gap: var(--spacing-s);
}

.navbar-items>a {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  /* min-width: 74px; */
  padding: 8px 16px;
  color: rgba(255, 255, 255, 95);
  text-align: center;
  }

/* Set different widths for each item */

/* .navbar-items>a:nth-child(1) {
  width: 73px;
}

.navbar-items>a:nth-child(2) {
  width: 92px;
}

.navbar-items>a:nth-child(3) {
  width: 94px;
} */

/* Add background color on hover */

.navbar-items a:hover {
  background-color: var(--secondary-dark);
  border-radius: var(--round-corner-m);
}

/* Apply text gradient on hover */

.navbar-items a:hover span {
  background: linear-gradient(96deg, #C1B3F5 2.02%, #DDC4FF 32.83%, #B1BAFA 75.18%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar-items>a.selected {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
    font-weight: var(--text-weight-xl);
  color: #FFF;
  }

.btn.navbar-search-close-btn {
  display: none;
  align-self: center;
  align-content: center;
  width: 44px;
  height: 44px;
}

.navbar-searchbox {
    --tw-translate-x: -50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 8px 12px;
  width: 340px;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.btn.btn-menu.navbar-search-btn {
  display: none;
}

.navbar-searchbox>div>input {
    width: 12rem;
}

@media (min-width: 768px) {
    .navbar-searchbox>div>input {
        width: 16rem;
    }
}

@media (min-width: 1024px) {
    .navbar-searchbox>div>input {
        width: 20rem;
    }
}

.navbar-searchbox>div>input {
  background-color: rgb(31, 41, 55);
  /* bg-gray-800 */
  color: white;
  padding-left: 2.5rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.5rem;
}

.searchbox-icon {
    position: absolute;
    top: 50%;
    --tw-translate-y: -50%;
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  opacity: 0.6;
  width: 24px;
  height: 24px;
}

.navbar-searchbox>div>input:focus {
  outline: none;
}

.navbar-right-group {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  height: 100%;
}

.profile-btn-wrapper {
  position: relative;
  display: inline-block;
}

.profile-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.btn.profile-btn.avatar {
  padding: 0px;
}

.profile-task-badge-container {
  margin-bottom: 6px;
}

.profile-spinner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border: 2px solid transparent;
  border-top-color: #FFF;
  border-right-color: #FFF;
  border-radius: 50%;
  animation: profile-spin 1.5s linear infinite;
  pointer-events: none;
  z-index: 3;
}

.profile-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
}

.profile-task-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  z-index: 3;
  pointer-events: none;
}

.profile-retry-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  border-radius: 9999px;
  background-color: #ffbb00;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px rgba(255, 187, 0, 0.9), 0 0 10px rgba(255, 187, 0, 0.7);
  pointer-events: none;
  z-index: 4;
}

.profile-retry-indicator svg {
  width: 10px;
  height: 10px;
  fill: #000;
}

@keyframes profile-spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.profile-container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.profile-dropdown-container {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-dropdown-container .btn.profile-caret-btn.btn-m.btn-round {
  display: inline-flex;
  width: 36px;
  height: 36px;
  min-width: 36px;
  max-height: 36px;
  padding: 0;
  box-sizing: border-box;
  line-height: 0;
}

.profile-dropdown-container .menu {
  top: calc(100% + 4px);
}

.profile-dropdown-container .profile-caret-btn svg {
  width: 16px;
  height: 16px;
}

.profile-dropdown-container .btn:hover {
  background: var(--secondary-darker);
  box-shadow: var(--shadow-hover);
}

.profile-dropdown-container .btn:not(:disabled):active {
  background: var(--secondary-darker);
  box-shadow: var(--shadow-active);
}

.profile-image {
  border-radius: 128px;
  width: 100%;
  height: 100%;
}

.menu.profile-menu {
  min-width: 140px;
}

.navbar-right-group .upload-asset {
  border-radius: 36px;
  gap: var(--spacing-s);
}

.left-panel {
  position: fixed;
  display: flex;
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  top: 0px;
  left: 0px;
  width: 360px;
  height: 100%;
  background-color: var(--primary-bg);
}

.left-panel-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
}

.left-panel-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.left-panel-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
}

.left-panel-menu-item {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  height: 44px;
  color: white;
  padding: 6px 10px;
  border-radius: var(--round-corner-m);
}

.left-panel-menu-item>div>svg {
  width: 20px;
  height: 20px;
}

.left-panel-menu-item:hover {
  color: white;
  background: var(--secondary-dark);
}

.left-panel-divider {
  width: 328px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* Responsive styles */

@media screen and (max-width: 1090px) {
  .navbar {
    height: 64px;
    padding: 10px 16px;
  }

  .navbar-left-group {
    gap: 16px;
  }

  .navbar-searchbox {
    display: none;
    transform: none;
    margin: 0 16px;
  }

  .navbar-searchbox.searchbar-expand {
    display: flex;
    position: absolute;
    left: 343px;
    top: 0px;
    transform: unset;
    width: calc(100% - 399px);
    height: 100%;
    padding: 0px 12px 0px 12px;
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .btn.btn-menu.navbar-search-btn {
    display: block;
  }

  .btn.btn-menu.navbar-search-btn.searchbar-expand {
    display: none;
  }

  .profile {
    gap: 8px;
  }
}

@media screen and (max-width: 530px) {
  .navbar {
    height: 56px;
    padding: 10px 8px;
  }

  .navbar-left-group {
    gap: 10px;
  }

  .btn.navbar-menu-btn {
    display: flex;
  }

  .btn.navbar-menu-btn.searchbar-expand {
    display: none;
  }

  .navbar-logo.searchbar-expand {
    display: none;
  }

  .navbar-items {
    display: none;
  }

  .btn.navbar-search-close-btn.searchbar-expand {
    display: block;
  }

  .navbar-searchbox {
    display: none;
  }

  .navbar-searchbox.searchbar-expand {
    display: flex;
    position: absolute;
    left: 52px;
    top: 0px;
    transform: unset;
    width: calc(100% - 60px);
    height: 100%;
    padding: 0px 0px 0px 8px;
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .btn.btn-menu.navbar-search-btn {
    display: block;
  }

  .navbar-right-group {
    gap: 4px;
  }

  .profile-container {
    display: none;
  }

  .profile-dropdown-container {
    display: none;
  }

  .btn.profile {
    display: none;
    gap: 4px;
  }
}

@media screen and (max-width: 360px) {
  .left-panel {
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    left: 0;
    top: 0;
    border-radius: 0;
  }

  .left-panel-overlay {
    position: fixed;
    z-index: 9998;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
  }
}

.accountOption.balance {
  position: relative;
  display: inline-flex;
  border: 0px;
  align-items: center;
  justify-content: space-between;
  font-size: 1em;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.05s;
  color: var(--content-p);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  padding: 4px 4px;
  gap: var(--spacing-s);
  min-width: 40px;
  width: 100%;
}

.accountOption.balance:hover {
  background: var(--tertiary-bg);
}

.accountOption.balance svg {
  width: var(--icon-size-m);
  height: var(--icon-size-m);
}

.accountOption.balance .info-icon {
  width: 16px;
  height: 16px;
  color: var(--content-s);
}

.token-balance-container {
  position: relative;
  height: 44px;
}

.token-balance-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn.editor-log-btn {
  min-width: 0;
  padding: 4px 10px;
  height: 28px;
  text-transform: lowercase;
}

.editor-log-link:hover {
  background: var(--secondary-darker);
  box-shadow: var(--shadow-hover);
}

.editor-log-link:active {
  background: var(--secondary-darker);
  box-shadow: var(--shadow-active);
}

.btn.save-btn {
  height: 40px;
  padding: 8px 16px;
}

.token-balance-info {
  position: absolute;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-wrap: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  border: 1px solid #363636;
  background-color: #1E1E1E;
  border-radius: var(--round-corner-m);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  padding: 8px 16px;
  top: 36px;
  right: 0px;
  transition: all 0.3s ease-out;
}

.accountOption.separator {
  width: 100%;
  height: 2px;
  margin: 2px 0px;
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-m.accountOption {
  gap: var(--spacing-m);
}

.profile-menu-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  width: 100%;
}

.profile-menu-avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-menu-image {
  border-radius: 128px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.profile-menu-name {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
    font-weight: var(--text-weight-m);
  color: #FFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  }

.profile-menu-email {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  }

.profile-menu-supporter-label {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  margin: 0 !important;
  padding: 0;
  padding-left: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  }

.left-panel-menu-item.balance {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.left-panel-menu-item.balance:hover {
  background: var(--primary-bg);
}

.left-panel-menu-item.balance:hover .accountOption.balance {
  background: var(--primary-bg);
}

.left-panel-menu-item.balance .token-balance-info {
  position: absolute;
  top: auto;
  right: 16px;
  bottom: 36px;
}.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

html:has(.modal-overlay) {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: var(--index-modal);
}

.modal-overlay:has(.modal-container.retargeting-complete-modal) {
  background: rgba(0, 0, 0, 0.750);
}

.modal-overlay.no-overlay {
  background: transparent;
  pointer-events: none;
}

.modal-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  z-index: 50;
  padding: 16px;
  box-sizing: border-box;
}

.modal-overlay-title-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.modal-overlay-header .modal-header-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.modal-overlay-header .modal-header-actions .asset-like-button {
  position: static;
  background-color: color-mix(in srgb, var(--secondary-dark) 80%, transparent);
  border-radius: var(--round-corner-m);
}

.modal-overlay-title-wrapper .modal-overlay-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--primary-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.modal-overlay.no-overlay > .modal-container,
.modal-overlay.no-overlay > .modal-overlay-header,
.modal-overlay.no-overlay > .close-button.outside {
  pointer-events: auto;
}

.modal-container {
  position: relative;
}

.modal-container.border {
  padding: var(--spacing-xl);
  background: var(--secondary-bg);
  border-radius: var(--round-corner-2xl);
  border: 1px solid var(--outline);
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.205), 0px 2px 60px 0px rgba(0, 0, 0, 0.20);
}

.modal-container.border:has(.google-login-redirect) {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.btn.close-button {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: var(--spacing-l);
  right: var(--spacing-l);
  left: auto;
  padding: 0;
  width: 28px;
  height: 28px;
  min-width: 28px;
  z-index: 50;
}

.btn.close-button>svg {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
}

.modal-top-left-header {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 80px);
  z-index: 50;
}

.modal-top-left-header .modal-title {
  max-width: 240px;
}

.btn.close-button.outside {
  top: 16px;
  right: auto;
  left: 16px;
  width: 44px;
  height: 44px;
}

.modal-top-left-header .btn.close-button.outside {
  position: relative;
  top: auto;
  left: auto;
}

.btn.close-button.outside>svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 1090px) {
  .btn.close-button.outside {
    top: 24px;
    left: 24px;
  }

  .modal-top-left-header {
    top: 24px;
    left: 24px;
  }
}

@media (max-width: 530px) {
  .btn.close-button.outside {
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
  }

  .btn.close-button.outside>svg {
    width: 16px;
    height: 16px;
  }

  .modal-top-left-header {
    top: 16px;
    left: 16px;
  }
}

.modal-overlay-header .btn.close-button.outside {
  position: static;
  top: auto;
  right: auto;
  left: auto;
  flex-shrink: 0;
}

.modal-overlay-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 50;
  padding: 16px;
  box-sizing: border-box;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 28px), rgba(0, 0, 0, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.modal-overlay-footer.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay-footer .modal-footer-left-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.modal-overlay-footer .modal-footer-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.modal-overlay.no-overlay > .modal-overlay-footer {
  pointer-events: auto;
}.asset-upload-container {
  display: flex;
  flex-direction: column;
  height: 560px;
  width: 384px;
  gap: 24px;
}

.asset-upload-header {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-l);
  align-items: center;
}

.asset-upload-header .font-option-icon {
  color: var(--primary);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
}

/* Option buttons */
.select-option {
  background-color: var(--tertiary-bg);
}

.add-asset-options {
  padding: 0px;
}

/* Add 3D */

.asset-upload-body {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
  flex: 1;
  min-height: 0;
}

.asset-upload-body.skybox {
  padding: var(--spacing-m);
  background-color: var(--tertiary-bg);
  border-radius: var(--padding---8, 8px);
}

.button-with-icon {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.subheadline {
  color: var(--content-s);
}

.asset-upload-container>.add-asset-options {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-s);
}

.asset-upload-container>.add-asset-options>.select-option {
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0;
}

.add-asset-options svg.select-option-icon {
  color: var(--primary);
  width: 44px;
  height: 44px;
}

.add-asset-options .font-option-icon {
  color: var(--primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* 3d Option */

.upload-dropzone-frame {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  min-height: 0;
}

.asset-upload-container .upload-dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 0;
  width: 384px;
  gap: var(--spacing-s);
  border-radius: var(--padding---8, 8px);
  border: 1px solid transparent;
}

.asset-upload-container .upload-dropzone.dragging {
  border: 1px solid var(--primary);
}

.asset-upload-button-group {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-m);
  /* margin-top: var(--spacing-l); */
}

.uploaded-file-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  min-height: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  background-color: var(--primary-bg);
  padding: 12px 2px 12px 12px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(217, 217, 217, 0.25) transparent;
}

.uploaded-file-container.dragging {
  border: 1px solid var(--primary);
}

.uploaded-file-list {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  width: 100%;
  gap: var(--spacing-l);
  align-items: flex-start;
  justify-content: flex-start;
  padding-right: 2px;
}

.uploaded-file-container::-webkit-scrollbar {
  width: 8px;
}

.uploaded-file-container::-webkit-scrollbar-track {
  background: transparent;
}

.uploaded-file-container::-webkit-scrollbar-thumb {
  background: rgba(217, 217, 217, 0.25);
  border-radius: 4px;
}

.uploaded-file-container:hover::-webkit-scrollbar-thumb {
  background: rgba(217, 217, 217, 0.4);
}

.uploaded-file-details {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-s);
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
}

.uploaded-file-details .uploaded-file-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.uploaded-file-details .delete-button {
  opacity: 0;
}

.uploaded-file-details:hover {
  background-color: var(--outline);
}

.uploaded-file-details:hover .delete-button {
  opacity: 1;
}

.upload-spinner {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .asset-upload-container {
    display: flex;
    flex-direction: column;
    height: 560px;
    width: 280px;
    gap: 16px;
  }


  .asset-upload-container .upload-dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 0;
    width: 280px;
    gap: var(--spacing-s);
    border-radius: var(--padding---8, 8px);
    border: 1px solid transparent;
  }

}.\!container {
    width: 100% !important;
}
.container {
    width: 100%;
}
@media (min-width: 640px) {
    .\!container {
        max-width: 640px !important;
    }
    .container {
        max-width: 640px;
    }
}
@media (min-width: 768px) {
    .\!container {
        max-width: 768px !important;
    }
    .container {
        max-width: 768px;
    }
}
@media (min-width: 1024px) {
    .\!container {
        max-width: 1024px !important;
    }
    .container {
        max-width: 1024px;
    }
}
@media (min-width: 1280px) {
    .\!container {
        max-width: 1280px !important;
    }
    .container {
        max-width: 1280px;
    }
}
@media (min-width: 1536px) {
    .\!container {
        max-width: 1536px !important;
    }
    .container {
        max-width: 1536px;
    }
}
  /* Heading */
  .base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
  
  .title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }

  .title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }

  .title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }

  .title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }

  .headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }

  .body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }

  .callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }

  .subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }

  .footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }

  .caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }

  .caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
  
  .weight-medium{
    font-weight: var(--text-weight-m);
  }

  .weight-bold {
    font-weight: var(--text-weight-xl);
  }

  .weight-regular {
    font-weight: var(--text-weight-s);
  }

.upload-menu-container {
  position: fixed;
  bottom: 0;
  right: 80px;
  width: 336px;
  z-index: var(--index-upload-menu);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  max-height: 75vh;

  border-radius: 16px 16px 0px 0px;
  background: var(--secondary-bg);
  border: 1px solid var(--outline);
}

.upload-menu-container.empty {
  display: none;
}

.upload-menu-header {
  display: flex;
  padding: 16px 20px;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--outline);
}

.upload-menu {
  display: none;
  align-items: center;
  background-color: var(--secondary-bg);
  width: 100%;
  max-height: 0;
  opacity: 0;
}

.upload-menu.show {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: calc(75vh - 56px);
  opacity: 1;
  background: var(--search-field-bg);
  padding: 8px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 200, 200, 0.5) rgba(44, 44, 44, 1);
}

.upload-menu.show::-webkit-scrollbar {
  width: 8px;
}

.upload-menu.show::-webkit-scrollbar-track {
  background: rgba(44, 44, 44, 1);
  border-radius: 4px;
}

.upload-menu.show::-webkit-scrollbar-thumb {
  background: rgba(200, 200, 200, 0.5);
  border-radius: 4px;
}

.upload-menu.show::-webkit-scrollbar-thumb:hover {
  background: rgba(200, 200, 200, 0.7);
}

.upload-menu-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  width: 100%;
  gap: 8px;
  padding: 4px 12px;
  border-radius: var(--round-corner-m);
  height: 44px;
}

.upload-menu-item:hover {
  background-color: var(--tertiary-bg);
}

.upload-menu-item>.upload-menu-asset-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 60px);
  }

.upload-menu-item-status {
  display: flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.upload-menu-item-status.cancelled {
  width: 96px;
}

.status-cancelled {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  color: rgba(255, 255, 255, 0.40);
  }

.upload-menu-item:hover>.upload-menu-item-status {
  display: none;
}

.btn.upload-menu-item-button {
  display: none;
}

.upload-menu-item:hover>.upload-menu-item-button {
  display: block;
}

.upload-menu-item:hover>.upload-menu-item-status.failed {
  display: flex;
}

.upload-menu-item:hover>.upload-menu-item-status.failed ~ .upload-menu-item-button {
  display: none;
}

.upload-menu-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.upload-menu-label {
  font-size: 12px;
  color: #333;
}

.upload-menu-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff4b4b;
  color: white;
  border-radius: 50%;
  font-size: 10px;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@property --progress {
  syntax: "<number>";
  inherits: false;
  initial-value: 0;
}

.circular-progress-container {
  position: relative;
  width: 20px;
  height: 100%;
  aspect-ratio: 1;
}

.circular-progress {
  width: 100%;
  height: 100%;
}

.circular-progress circle {
  --stroke-size: 12.5;
  --radius: 43.75;
  --circumference: calc(2 * 3.14159 * var(--radius));

  cx: 50;
  cy: 50;
  r: var(--radius);
  stroke-width: var(--stroke-size);
  fill: none;
  stroke-linecap: butt;
}

.circular-progress circle.bg {
  stroke: #353535;
}

.circular-progress circle.fg {
  transform: rotate(-90deg);
  transform-origin: center;
  stroke: #5E5CE6;
  stroke-dasharray: var(--circumference);
  stroke-dashoffset: calc(var(--circumference) * (1 - var(--progress) / 100));
  transition: stroke-dashoffset 0.1s ease;
}

@media (max-width: 768px) {
  .upload-menu {
    padding: 10px;
  }

  .upload-menu-icon {
    font-size: 18px;
  }

  .upload-menu-label {
    font-size: 10px;
  }
}


/* Color Variables */
:root {
  --bg-base: #141414;
  --bg-1: #2c2c30;
  --bg-1-transparent: color-mix(in srgb, var(--bg-1) 90%, transparent);

  --primary-bg: #141414;
  --secondary-bg: #202020;
  --tertiary-bg: #343434;
  --outline: #373737;

  --content-p: rgba(255, 255, 255, 0.95);
  --content-s: rgba(255, 255, 255, 0.40);
  --content-t: rgba(255, 255, 255, 0.15);
  --content-d: rgba(255, 255, 255, 0.36);
  --content-n: #FF453A;
  
  --primary: #5E5CE6;
  --primary-dark: #504EC4;
  --primary-darker: #4240A1;
  --primary-disable: #7A7997;
  --secondary: var(--tertiary-bg);
  --secondary-dark: #2C2C2C;
  --secondary-darker: #242424;
  --secondary-disable: #717171;
 
  --ghost-hover: color-mix(in srgb, var(--primary) 10%, transparent);
  --ghost-pressed: color-mix(in srgb, var(--primary) 20%, transparent);
  --ghost-disabled: color-mix(in srgb, var(--primary) 10%, transparent);

  --ghost-tab-filtered: rgba(94, 92, 230, 0.2);
  
  --circle-base: rgba(52, 52, 52, 0.55);

  --dropdown-dark: rgba(52, 52, 52, 1);
  --dropdown-darker: rgba(44, 44, 44, 1);
  --dropdown-active: rgba(37, 37, 37, 1);
  --dropdown-disabled:  rgba(41, 41, 41, 1);
  --input-field-bg: rgba(0, 0, 0, 0.45);
  --search-field-bg: rgba(40, 40, 40, 0.58);
  --image-placeholder: rgba(128, 128, 128, 0.5);
}
/* Responsive */
:root {
  --screen-padding: 64px;
  --screen-spacing: 24px;
  --navbar-height: 64px;
  /** Max width for compact navbar (hamburger); wide layout is above this. Used in JS via `getNavbarCompactMaxWidthPx()`. Do not use this token inside `@media` — many UAs ignore `var()` there; keep pixel media queries in CSS in sync with this value. */
  --navbar-compact-max-width: 530px;
}
@media (max-width: 800px) {
  :root {
    --screen-padding: 24px;
    --screen-spacing: 16px;
    --navbar-height: 64px;
  }
}
@media (max-width: 530px) {
  :root {
    --navbar-height: 56px;
  }
}
@media (max-width: 400px) {
  :root {
    --screen-padding: 16px;
    --screen-spacing: 8px;
  }
}
/* Button Background */
:root {
  --layer-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.17) 0%, rgba(255, 255, 255, 0.00) 100%);
  --btn-gradient-primary: var(--layer-gradient), var(--primary);
  --btn-gradient-primary-dark: var(--layer-gradient), var(--primary-dark);
  --btn-gradient-primary-darker: var(--layer-gradient), var(--primary-darker);
}
/* Typography Variables */
:root {
  --text-weight-s: 400;
  --text-weight-m: 500;
  --text-weight-l: 600;
  --text-weight-xl: 700;
}
/* Layout Variables */
:root {
  --spacing-xs: 4px;
  --spacing-s: 8px;
  --spacing-m: 12px;
  --spacing-l: 16px;
  --spacing-xl: 24px;
  --spacing-xxl: 32px;

  --round-corner-xs: 4px;
  --round-corner-s: 6px;
  --round-corner-m: 8px;
  --round-corner-l: 10px;
  --round-corner-xl: 12px;
  --round-corner-2xl: 14px;

  --index-navbar: 300;
  --index-upload-menu: 350;
  --index-modal: 400;
  --index-popover: 1000;
}
/* Effect Variables */
:root {
  --scale-shrink: scale(0.98);
  --shadow-hover: 0px 4.375px 8.75px 0px rgba(0, 0, 0, 0.20);
  --shadow-active: 0px 2.042px 3.063px 0px rgba(0, 0, 0, 0.30) inset;
  --shadow-disabled: 0px 0px 1px 0px rgba(0, 0, 0, 0.40), 0px 0px 1.5px 0px rgba(0, 0, 0, 0.30), 0px 7px 22px 0px rgba(0, 0, 0, 0.25);
  --disable-opacity: 0.5;
}
/* grid content */
:root {
  --min-grid-item-width: 296px
}
/* icon size */
:root {
  --icon-size-xs: 12px;
  --icon-size-s: 16px;
  --icon-size-m: 20px;
  --icon-size-l: 24px;
  --icon-size-xl: 28px;
}
@tailwind components;
/* Base button styles */
.btn {
  display: inline-flex;
  border: 0px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.05s;
  color: var(--content-p);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Shared Interaction States for All Buttons --------------------------------------------------------------------*/
/* Intentionally no global :hover shadow. Specific buttons add hover effects in
   their feature-level CSS to avoid cross-component styling leaks. */
.btn:not(:disabled):active {
  box-shadow: var(--shadow-active);
  transform: var(--scale-shrink);
}
.btn:disabled {
  color: var(--content-s);
  background: var(--background-disabled);
  opacity: var(--disable-opacity);
  cursor: default;
}
.btn svg {
  color: currentColor;
}
/* Button sizes --------------------------------------------------------------------*/
.btn-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  padding: 12px 24px;
  gap: var(--spacing-m);
  height: 50px;
  min-width: 112px;
  border-radius: var(--round-corner-l);

  --outline-border: 2px;
  }
.btn-l svg {
  width: var(--icon-size-l);
  height: var(--icon-size-l);
}
.btn-m {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  padding: 10px 20px;
  gap: var(--spacing-s);
  height: 44px;
  min-width: 96px;
  border-radius: var(--round-corner-m);

  --outline-border: 1.5px;
  }
.btn-m svg {
  width: var(--icon-size-m);
  height: var(--icon-size-m);
}
.btn-s {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 8px 16px;
  gap: var(--spacing-xs);
  height: 36px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }
.btn-s svg {
  width: var(--icon-size-s);
  height: var(--icon-size-s);
}
.btn-xs {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  padding: 6px 12px;
  gap: var(--spacing-xs);
  height: 28px;
  min-width: 80px;
  border-radius: var(--round-corner-s);

  --outline-border: 1px;
  }
.btn-xs svg {
  width: var(--icon-size-xs);
  height: var(--icon-size-xs);
}
/* Button variants --------------------------------------------------------------------*/
/* Support */
.btn-support {
  background: #ff00dd;
}
.btn-support:hover {
  background: #8a0077;
}
/* Primary */
.btn-primary {
  background: var(--btn-gradient-primary);
}
.btn-primary:hover {
  background: var(--btn-gradient-primary-dark);
}
.btn-primary:not(:disabled):active {
  background: var(--btn-gradient-primary-darker);
}
.btn-primary:disabled {
  background: var(--primary-disable);
}
/* Secondary */
.btn-secondary {
  background: var(--secondary);
}
.btn-secondary:hover {
  background: var(--secondary-dark);
}
.btn-secondary:not(:disabled):active {
  background: var(--secondary-darker);
}
.btn-secondary:disabled {
  background: var(--secondary-disable);
}
/* Tertiary */
.btn-tertiary {
  background: none;
}
.btn-tertiary:hover {
  background: var(--secondary-dark);
}
.btn-tertiary:not(:disabled):active {
  background: var(--secondary-darker);
}
.btn-tertiary:disabled {
  background: var(--secondary-disable);
}
/* Ghost */
.btn-ghost {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary);
  outline-offset: -1px;
}
.btn-ghost:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}
.btn-ghost:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}
.btn-ghost:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}
/* Ghost Tab */
.btn-ghost-tab {
  border: 0;
  background: transparent;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--content-t);
  outline-offset: -1px;
  border-radius: 100px;
}
.btn-ghost-tab:hover {
  background: var(--ghost-hover);
  outline-color: var(--primary-dark);
}
.btn-ghost-tab:not(:disabled):active {
  background: var(--ghost-pressed);
  outline-color: var(--primary-darker);
}
.btn-ghost-tab:disabled {
  background: var(--ghost-disabled);
  outline-color: var(--primary-disable);
}
.btn-ghost-tab.filtered {
  border: 0;
  background: var(--ghost-pressed);
  ;
  color: var(--text-primary);
  outline-width: var(--outline-border);
  outline-style: solid;
  outline-color: var(--primary-darker);
  outline-offset: -1px;
  border-radius: 100px;
  font-weight: var(--text-weight-xl);
  /* box-shadow: var(--shadow-active); */
}
/* Circle Icon
.btn-circle-icon {
  border-radius: 64px;
  gap: var(--spacing-m);
  padding: 14px;

  background: var(--tertiary-bg);
  box-shadow: 0px 0.5px 2.5px 0px rgba(0, 0, 0, 0.30), 0px 0px 0px 0.5px rgba(0, 0, 0, 0.05);
}

.btn-circle-icon:hover {
  background: var(--layer-dark), var(--tertiary-bg);
  box-shadow: var(--shadow-hover);
}

.btn-circle-icon:active {
  background: var(--layer-darker), var(--tertiary-bg);
  box-shadow: var(--shadow-active);
}

.btn-circle-icon:disabled {
  background: var(--btn-gradient-secondary-darkest);
}

.btn-circle-icon.btn-l {
  height: 52px;
  min-width: 52px;
  padding: 12px;
  gap: var(--spacing-m);
}

.btn-circle-icon.btn-m {
  height: 44px;
  min-width: 44px;
  padding: 10px;
  gap: var(--spacing-s);
}

.btn-circle-icon.btn-s {
  height: 36px;
  min-width: 36px;
  padding: 8px;
  gap: var(--spacing-xs);
} */
/* Basic (No BG or Border) */
/* Unique padding for menu */
.btn-menu {
  background-color: none;
  border-radius: var(--round-corner-m);
  position: relative;
  transform: 1;
  justify-content: left;
  padding: 6px 10px;
  min-width: 40px;
}
.btn-menu:hover {
  background: var(--primary);
  box-shadow: none;
}
.btn-menu:not(:disabled):active {
  background: var(--primary-dark);
  box-shadow: var(--shadow-active);
  transform: scale(1);
  /* transform: var(--scale-shrink); */
}
.btn-menu:not(:disabled):active::before {
  background: var(--primary-dark);
}
.btn-menu:disabled {
  background: var(--btn-gradient-secondary-darkest);
}
.btn-transparent {
  background: transparent;
}
/* Button Circle */
.btn-circle-button {
  height: 32px;
  min-width: 32px;

  gap: 0px;
  padding: 8px;
  border-radius: 64px;
  /* backdrop-filter: blur(40px); */
  background: var(--circle-base);
  transition: 0s;
}
.btn-circle-button.btn-m svg {
  width: 16px;
  height: 16px;
}
.btn-circle-button:hover {
  background: var(--tertiary-bg);
}
.btn-circle-button:not(:disabled):active {
  display: inline-flex;
  gap: var(--spacing-xs);
  /* padding: 8px 12px 8px 6px; */
}
.btn-copy {
  display: flex;
  flex-direction: row;
}
.copy-icon {
  display: inline;
}
.btn-copy:disabled .copy-icon {
  display: inline;
}
.btn-copy[data-active="true"] .copy-icon {
  display: none;
}
.copied-group {
  display: none;
  align-items: center;
  flex-direction: row;
  gap: var(--spacing-xs);
}
.btn-copy:disabled .copied-group {
  display: none;
}
.btn-copy[data-active="true"] .copied-group {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  display: flex;
  flex-direction: row;
  }
.btn-circle-button:disabled {
  background: var(--circle-base);
  box-shadow: var(--shadow-disabled);
}
/* Button Round variants --------------------------------------------------------------------*/
.btn-round {
  border-radius: 64px;
}
.btn-round.btn-l {
  padding: 13px;
  min-width: 50px;
}
.btn-round.btn-m {
  padding: 12px;
  min-width: 44px;
}
.btn-round.btn-s {
  padding: 10px;
  min-width: 36px;
}
.btn-round.btn-xs {
  padding: 8px;
  min-width: 28px;
}
/* Button Square */
.btn-square {
  border-radius: 6px;
}
.btn-square.btn-l {
  padding: 12px;
  min-width: 50px;
}
.btn-square.btn-m {
  padding: 10px;
  min-width: 44px;
}
.btn-square.btn-s {
  padding: 8px;
  min-width: 36px;
}
.btn-square.btn-xs {
  padding: 6px;
  min-width: 28px;
}
.notification {
  position: fixed;
  z-index: 11111;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  background: var(--notification-bg);
  color: var(--notification-color);
  transform: translateY(var(--notification-translate-y, 0));
  transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-top-right {
  right: 28px;
  left: auto;
  background-color: #2c2c30;
  color: rgba(255, 255, 255, 0.95);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1), top 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-bottom-right {
  right: 28px;
  left: auto;
  bottom: 28px;
  background-color: #2c2c30;
  color: rgba(255, 255, 255, 0.95);
  transition: opacity 400ms cubic-bezier(0.4, 0, 0.2, 1), transform 400ms cubic-bezier(0.4, 0, 0.2, 1), bottom 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-center {
  top: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(var(--notification-translate-y, 0));
}
.notification-has-image {
  padding: 12px 16px;
  border-radius: 12px;
  gap: 12px;
  padding-left: 16px;
  min-width: 280px;
}
.notification-has-icon {
  padding: 12px 32px;
  border-radius: 100px;
  gap: 10px;
  padding-left: 20px;
}
.notification-has-icon.notification-center {
  gap: 8px;
}
.notification-text-only {
  padding: 12px 32px;
  border-radius: 100px;
  gap: 10px;
}
.notification-text-only.notification-center {
  gap: 8px;
}
.notification-clickable {
  pointer-events: auto;
  cursor: pointer;
}
.notification-not-clickable {
  pointer-events: none;
  cursor: default;
}
.notification-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.notification-icon {
  display: flex;
  align-items: center;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-right: -4px;
}
.notification-like-fallback-icon.notification-has-icon {
  padding: 12px 16px;
  border-radius: 12px;
  gap: 12px;
  padding-left: 16px;
  min-width: 280px;
}
.notification-like-fallback-icon .notification-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  margin-right: 0;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
}
.notification-like-fallback-icon .notification-icon svg {
  width: 24px;
  height: 24px;
}
.notification-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.notification-message {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
}
.notification-subtitle {
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  opacity: 0.6;
}
.notification-hidden {
  opacity: 0;
}
.notification-visible {
  opacity: 1;
}
.notification-has-button {
  gap: 12px;
  padding-right: 12px;
}
.notification-button {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 6px;
  color: inherit;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 12px;
  white-space: nowrap;
  transition: background-color 0.2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
}
.notification-button svg {
  width: 16px;
  height: 16px;
}
.notification-button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.notification-button:active {
  background: rgba(255, 255, 255, 0.4);
}
*, ::before, ::after{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
::backdrop{
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}
/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
:root {
    font-family: "Inter", serif;
    line-height: 1.5;
    font-weight: 400;

    color: var(--content-p);
    background-color: var(--bg-base);

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: url('/web-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
html{
  margin: 0px;
  padding: 0px;
    overflow-y: scroll;
    scrollbar-gutter: stable;
}
body{
  margin: 0px;
  min-height: 100%;
  width: 100%;
  padding: 0px;
    /* min-height: calc(100vh - 64px); */
    /* height: fit-content; */
    /* width: 100vw; */
}
h1 {
    font-size: 24px;
    line-height: 1.1;
  }
button {
  display: inline-flex;
  border: 0px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 400;
  font-family: inherit;
  transition: all 0.05s;
  color: var(--content-p);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
button:not(:disabled):active {
  box-shadow: var(--shadow-active);
  transform: var(--scale-shrink);
}
button:disabled {
  color: var(--content-s);
  background: var(--background-disabled);
  opacity: var(--disable-opacity);
  cursor: default;
}
button svg {
  color: currentColor;
}
input:-webkit-autofill,
  input:-webkit-autofill:hover,
  input:-webkit-autofill:focus,
  input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--content-p) !important;
    -webkit-box-shadow: 0 0 0 30px var(--bg-base) inset !important;
    -webkit-transition: background-color 5000s ease-in-out 0s;
    transition: background-color 5000s ease-in-out 0s;
  }
/* WebKit browsers (Chrome, Safari, etc.) */
::-webkit-scrollbar {
    width: 8px;
  }
::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 4px;
  }
::-webkit-scrollbar-thumb {
    background: rgba(217, 217, 217, 0.25);
    border-radius: 4px;
  }
/* ::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary-bg);
  } */
/* ::-webkit-scrollbar-thumb:active {
    background: color-mix(in srgb, var(--tertiary-bg) 80%, transparent);
  } */
.\!container{
  width: 100% !important;
}
.container{
  width: 100%;
}
@media (min-width: 640px){
  .\!container{
    max-width: 640px !important;
  }
  .container{
    max-width: 640px;
  }
}
@media (min-width: 768px){
  .\!container{
    max-width: 768px !important;
  }
  .container{
    max-width: 768px;
  }
}
@media (min-width: 1024px){
  .\!container{
    max-width: 1024px !important;
  }
  .container{
    max-width: 1024px;
  }
}
@media (min-width: 1280px){
  .\!container{
    max-width: 1280px !important;
  }
  .container{
    max-width: 1280px;
  }
}
@media (min-width: 1536px){
  .\!container{
    max-width: 1536px !important;
  }
  .container{
    max-width: 1536px;
  }
}
/* Heading */
.base-text {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
  }
.title-l {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 48px;
    font-size: 40px;
  }
.title-1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 40px;
    font-size: 32px;
  }
.title-2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 32px;
    font-size: 24px;
  }
.title-3 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 28px;
    font-size: 20px;
  }
.headline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 26px;
    font-size: 18px;
  }
.body {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 24px;
    font-size: 16px;
  }
.callout {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 22px;
    font-size: 16px;
  }
.subheadline {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 20px;
    font-size: 14px;
  }
.footnote {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 18px;
    font-size: 12px;
  }
.caption1 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 16px;
    font-size: 12px;
  }
.caption2 {
    /* this should not affect the color of the text */
    font-weight: var(--text-weight-s);
    line-height: 14px;
    font-size: 10px;
  }
.weight-medium{
    font-weight: var(--text-weight-m);
  }
.weight-bold {
    font-weight: var(--text-weight-xl);
  }
.weight-regular {
    font-weight: var(--text-weight-s);
  }
.pointer-events-none{
  pointer-events: none;
}
.\!visible{
  visibility: visible !important;
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.collapse{
  visibility: collapse;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-2{
  bottom: 0.5rem;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-2{
  left: 0.5rem;
}
.right-0{
  right: 0px;
}
.right-1{
  right: 0.25rem;
}
.right-2{
  right: 0.5rem;
}
.top-0{
  top: 0px;
}
.top-1{
  top: 0.25rem;
}
.top-1\/2{
  top: 50%;
}
.top-2{
  top: 0.5rem;
}
.top-full{
  top: 100%;
}
.isolate{
  isolation: isolate;
}
.z-10{
  z-index: 10;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2147483647\]{
  z-index: 2147483647;
}
.m-0{
  margin: 0px;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-\[79px\]{
  margin-bottom: 79px;
}
.mr-1{
  margin-right: 0.25rem;
}
.mt-0\.5{
  margin-top: 0.125rem;
}
.mt-1{
  margin-top: 0.25rem;
}
.mt-1\.5{
  margin-top: 0.375rem;
}
.mt-12{
  margin-top: 3rem;
}
.mt-16{
  margin-top: 4rem;
}
.mt-2{
  margin-top: 0.5rem;
}
.mt-4{
  margin-top: 1rem;
}
.mt-6{
  margin-top: 1.5rem;
}
.mt-\[41px\]{
  margin-top: 41px;
}
.box-border{
  box-sizing: border-box;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block{
  display: block;
}
.inline-block{
  display: inline-block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.aspect-auto{
  aspect-ratio: auto;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.size-1\.5{
  width: 0.375rem;
  height: 0.375rem;
}
.h-10{
  height: 2.5rem;
}
.h-12{
  height: 3rem;
}
.h-4{
  height: 1rem;
}
.h-6{
  height: 1.5rem;
}
.h-8{
  height: 2rem;
}
.h-\[16px\]{
  height: 16px;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[20px\]{
  height: 20px;
}
.h-\[24px\]{
  height: 24px;
}
.h-\[36px\]{
  height: 36px;
}
.h-\[64px\]{
  height: 64px;
}
.h-\[76px\]{
  height: 76px;
}
.h-full{
  height: 100%;
}
.h-px{
  height: 1px;
}
.max-h-\[80vh\]{
  max-height: 80vh;
}
.min-h-\[80px\]{
  min-height: 80px;
}
.min-h-screen{
  min-height: 100vh;
}
.w-1\/2{
  width: 50%;
}
.w-1\/3{
  width: 33.333333%;
}
.w-1\/4{
  width: 25%;
}
.w-10{
  width: 2.5rem;
}
.w-12{
  width: 3rem;
}
.w-2{
  width: 0.5rem;
}
.w-4{
  width: 1rem;
}
.w-48{
  width: 12rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-8{
  width: 2rem;
}
.w-\[139px\]{
  width: 139px;
}
.w-\[16px\]{
  width: 16px;
}
.w-\[18px\]{
  width: 18px;
}
.w-\[20px\]{
  width: 20px;
}
.w-\[240px\]{
  width: 240px;
}
.w-\[24px\]{
  width: 24px;
}
.w-\[256px\]{
  width: 256px;
}
.w-\[40px\]{
  width: 40px;
}
.w-\[480px\]{
  width: 480px;
}
.w-\[64px\]{
  width: 64px;
}
.w-fit{
  width: -moz-fit-content;
  width: fit-content;
}
.w-full{
  width: 100%;
}
.w-px{
  width: 1px;
}
.min-w-0{
  min-width: 0px;
}
.max-w-4xl{
  max-width: 56rem;
}
.max-w-\[1000px\]{
  max-width: 1000px;
}
.max-w-md{
  max-width: 28rem;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-shrink{
  flex-shrink: 1;
}
.flex-shrink-0{
  flex-shrink: 0;
}
.shrink{
  flex-shrink: 1;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow-0{
  flex-grow: 0;
}
.grow{
  flex-grow: 1;
}
.basis-auto{
  flex-basis: auto;
}
.basis-full{
  flex-basis: 100%;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.-rotate-90{
  --tw-rotate: -90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-90{
  --tw-rotate: 90deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.scale-105{
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-default{
  cursor: default;
}
.cursor-not-allowed{
  cursor: not-allowed;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.list-none{
  list-style-type: none;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.flex-row{
  flex-direction: row;
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-0{
  gap: 0px;
}
.gap-0\.5{
  gap: 0.125rem;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-4{
  gap: 1rem;
}
.gap-6{
  gap: 1.5rem;
}
.gap-8{
  gap: 2rem;
}
.gap-\[16px\]{
  gap: 16px;
}
.gap-\[24px\]{
  gap: 24px;
}
.gap-\[4px\]{
  gap: 4px;
}
.gap-\[60px\]{
  gap: 60px;
}
.gap-\[79px\]{
  gap: 79px;
}
.gap-\[8px\]{
  gap: 8px;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.self-stretch{
  align-self: stretch;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-y-auto{
  overflow-y: auto;
}
.truncate{
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-ellipsis{
  text-overflow: ellipsis;
}
.whitespace-normal{
  white-space: normal;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.text-wrap{
  text-wrap: wrap;
}
.break-all{
  word-break: break-all;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.\!border{
  border-width: 1px !important;
}
.border{
  border-width: 1px;
}
.border-0{
  border-width: 0px;
}
.border-2{
  border-width: 2px;
}
.border-\[6px\]{
  border-width: 6px;
}
.border-t{
  border-top-width: 1px;
}
.border-\[var\(--outline-light\)\]{
  border-color: var(--outline-light);
}
.border-amber-500\/20{
  border-color: rgb(245 158 11 / 0.2);
}
.border-amber-500\/35{
  border-color: rgb(245 158 11 / 0.35);
}
.border-blue-500{
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity, 1));
}
.border-emerald-500\/35{
  border-color: rgb(16 185 129 / 0.35);
}
.border-emerald-500\/40{
  border-color: rgb(16 185 129 / 0.4);
}
.border-neutral-700{
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity, 1));
}
.border-transparent{
  border-color: transparent;
}
.border-t-neutral-800{
  --tw-border-opacity: 1;
  border-top-color: rgb(38 38 38 / var(--tw-border-opacity, 1));
}
.bg-\[red\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 0 0 / var(--tw-bg-opacity, 1));
}
.bg-\[var\(--primary-bg\)\]{
  background-color: var(--primary-bg);
}
.bg-amber-500{
  --tw-bg-opacity: 1;
  background-color: rgb(245 158 11 / var(--tw-bg-opacity, 1));
}
.bg-amber-500\/10{
  background-color: rgb(245 158 11 / 0.1);
}
.bg-amber-500\/\[0\.07\]{
  background-color: rgb(245 158 11 / 0.07);
}
.bg-black\/50{
  background-color: rgb(0 0 0 / 0.5);
}
.bg-black\/70{
  background-color: rgb(0 0 0 / 0.7);
}
.bg-blue-500{
  --tw-bg-opacity: 1;
  background-color: rgb(59 130 246 / var(--tw-bg-opacity, 1));
}
.bg-emerald-500\/10{
  background-color: rgb(16 185 129 / 0.1);
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-200\/60{
  background-color: rgb(229 231 235 / 0.6);
}
.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-gray-800{
  --tw-bg-opacity: 1;
  background-color: rgb(31 41 55 / var(--tw-bg-opacity, 1));
}
.bg-gray-800\/50{
  background-color: rgb(31 41 55 / 0.5);
}
.bg-gray-900{
  --tw-bg-opacity: 1;
  background-color: rgb(17 24 39 / var(--tw-bg-opacity, 1));
}
.bg-neutral-800{
  --tw-bg-opacity: 1;
  background-color: rgb(38 38 38 / var(--tw-bg-opacity, 1));
}
.bg-red-500{
  --tw-bg-opacity: 1;
  background-color: rgb(239 68 68 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0{
  padding: 0px;
}
.p-0\.5{
  padding: 0.125rem;
}
.p-1{
  padding: 0.25rem;
}
.p-10{
  padding: 2.5rem;
}
.p-2{
  padding: 0.5rem;
}
.p-3{
  padding: 0.75rem;
}
.p-4{
  padding: 1rem;
}
.p-8{
  padding: 2rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pt-2{
  padding-top: 0.5rem;
}
.text-left{
  text-align: left;
}
.text-center{
  text-align: center;
}
.align-middle{
  vertical-align: middle;
}
.font-mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.text-6xl{
  font-size: 3.75rem;
  line-height: 1;
}
.text-\[10px\]{
  font-size: 10px;
}
.text-\[11px\]{
  font-size: 11px;
}
.text-\[17px\]{
  font-size: 17px;
}
.text-\[24px\]{
  font-size: 24px;
}
.text-\[40px\]{
  font-size: 40px;
}
.text-\[9px\]{
  font-size: 9px;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-semibold{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.lowercase{
  text-transform: lowercase;
}
.italic{
  font-style: italic;
}
.tabular-nums{
  --tw-numeric-spacing: tabular-nums;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.leading-\[28px\]{
  line-height: 28px;
}
.leading-\[32px\]{
  line-height: 32px;
}
.leading-\[48px\]{
  line-height: 48px;
}
.leading-relaxed{
  line-height: 1.625;
}
.leading-snug{
  line-height: 1.375;
}
.leading-tight{
  line-height: 1.25;
}
.tracking-wide{
  letter-spacing: 0.025em;
}
.text-\[\#717182\]{
  --tw-text-opacity: 1;
  color: rgb(113 113 130 / var(--tw-text-opacity, 1));
}
.text-\[\#ff0000\]{
  --tw-text-opacity: 1;
  color: rgb(255 0 0 / var(--tw-text-opacity, 1));
}
.text-\[var\(--content\)\]{
  color: var(--content);
}
.text-amber-500{
  --tw-text-opacity: 1;
  color: rgb(245 158 11 / var(--tw-text-opacity, 1));
}
.text-amber-500\/80{
  color: rgb(245 158 11 / 0.8);
}
.text-amber-800{
  --tw-text-opacity: 1;
  color: rgb(146 64 14 / var(--tw-text-opacity, 1));
}
.text-amber-800\/90{
  color: rgb(146 64 14 / 0.9);
}
.text-amber-900{
  --tw-text-opacity: 1;
  color: rgb(120 53 15 / var(--tw-text-opacity, 1));
}
.text-amber-950{
  --tw-text-opacity: 1;
  color: rgb(69 26 3 / var(--tw-text-opacity, 1));
}
.text-blue-400{
  --tw-text-opacity: 1;
  color: rgb(96 165 250 / var(--tw-text-opacity, 1));
}
.text-emerald-800{
  --tw-text-opacity: 1;
  color: rgb(6 95 70 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-600{
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-neutral-200{
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}
.text-neutral-400{
  --tw-text-opacity: 1;
  color: rgb(163 163 163 / var(--tw-text-opacity, 1));
}
.text-red-600{
  --tw-text-opacity: 1;
  color: rgb(220 38 38 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-white\/40{
  color: rgb(255 255 255 / 0.4);
}
.text-white\/60{
  color: rgb(255 255 255 / 0.6);
}
.text-white\/95{
  color: rgb(255 255 255 / 0.95);
}
.underline{
  text-decoration-line: underline;
}
.antialiased{
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-0{
  opacity: 0;
}
.opacity-100{
  opacity: 1;
}
.opacity-50{
  opacity: 0.5;
}
.shadow{
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-2xl{
  --tw-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  --tw-shadow-colored: 0 25px 50px -12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none{
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-sm{
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.ring-2{
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.ring-emerald-500\/40{
  --tw-ring-color: rgb(16 185 129 / 0.4);
}
.ring-offset-1{
  --tw-ring-offset-width: 1px;
}
.ring-offset-\[var\(--primary-bg\)\]{
  --tw-ring-offset-color: var(--primary-bg);
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert{
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.backdrop-blur-sm{
  --tw-backdrop-blur: blur(4px);
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.backdrop-filter{
  backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-colors{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-opacity{
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform{
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.ease-in-out{
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.\[jointId\:number\]{
  joint-id: number;
}
.blur-background > .blur-container {
  filter: blur(8px);
  transition: filter unset;
}
.box-width-s {
  width: var(--box-width-s);
}
.box-width-m {
  width: var(--box-width-m);
}
/* Primary save in modals: stable width + batch-gen-like control transitions */
.dissolve-save-busy-btn {
  min-width: 88px;
  transition: width 0.22s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.hover\:bg-red-400:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(248 113 113 / var(--tw-bg-opacity, 1));
}
.hover\:text-white\/90:hover{
  color: rgb(255 255 255 / 0.9);
}
.hover\:underline:hover{
  text-decoration-line: underline;
}
.hover\:opacity-100:hover{
  opacity: 1;
}
.group:hover .group-hover\:opacity-100{
  opacity: 1;
}
.group[data-state="open"] .group-data-\[state\=open\]\:rotate-180{
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
@media not all and (min-width: 768px){
  .max-md\:border-t{
    border-top-width: 1px;
  }
  .max-md\:border-\[var\(--outline-light\)\]{
    border-color: var(--outline-light);
  }
  .max-md\:pt-3{
    padding-top: 0.75rem;
  }
}
@media (min-width: 768px){
  .md\:col-span-2{
    grid-column: span 2 / span 2;
  }
  .md\:mt-1{
    margin-top: 0.25rem;
  }
  .md\:w-1\/3{
    width: 33.333333%;
  }
  .md\:w-64{
    width: 16rem;
  }
  .md\:w-\[139px\]{
    width: 139px;
  }
  .md\:min-w-0{
    min-width: 0px;
  }
  .md\:flex-none{
    flex: none;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row{
    flex-direction: row;
  }
  .md\:flex-wrap{
    flex-wrap: wrap;
  }
  .md\:items-start{
    align-items: flex-start;
  }
  .md\:justify-between{
    justify-content: space-between;
  }
  .md\:gap-3{
    gap: 0.75rem;
  }
  .md\:px-3{
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .md\:py-2\.5{
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
@media (prefers-color-scheme: dark){
  .dark\:border-amber-400\/30{
    border-color: rgb(251 191 36 / 0.3);
  }
  .dark\:border-emerald-400\/35{
    border-color: rgb(52 211 153 / 0.35);
  }
  .dark\:border-emerald-400\/40{
    border-color: rgb(52 211 153 / 0.4);
  }
  .dark\:bg-amber-400{
    --tw-bg-opacity: 1;
    background-color: rgb(251 191 36 / var(--tw-bg-opacity, 1));
  }
  .dark\:bg-amber-400\/\[0\.08\]{
    background-color: rgb(251 191 36 / 0.08);
  }
  .dark\:bg-black\/25{
    background-color: rgb(0 0 0 / 0.25);
  }
  .dark\:bg-emerald-400\/15{
    background-color: rgb(52 211 153 / 0.15);
  }
  .dark\:text-amber-100{
    --tw-text-opacity: 1;
    color: rgb(254 243 199 / var(--tw-text-opacity, 1));
  }
  .dark\:text-amber-200{
    --tw-text-opacity: 1;
    color: rgb(253 230 138 / var(--tw-text-opacity, 1));
  }
  .dark\:text-amber-200\/90{
    color: rgb(253 230 138 / 0.9);
  }
  .dark\:text-amber-50{
    --tw-text-opacity: 1;
    color: rgb(255 251 235 / var(--tw-text-opacity, 1));
  }
  .dark\:text-emerald-200{
    --tw-text-opacity: 1;
    color: rgb(167 243 208 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-300{
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity, 1));
  }
  .dark\:text-gray-400{
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity, 1));
  }
  .dark\:ring-emerald-400\/35{
    --tw-ring-color: rgb(52 211 153 / 0.35);
  }
}