/* [project]/app/globals.css [app-client] (css) */
html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

html, body, a, button, [role="button"], [tabindex], input, textarea {
  -webkit-tap-highlight-color: #0000;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  margin: .67em 0;
  font-size: 2em;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace;
  font-size: 1em;
}

a {
  background-color: #0000;
}

abbr[title] {
  text-decoration: underline;
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

em {
  font-style: italic !important;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="button"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="reset"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="button"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="reset"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

[type="submit"]:-moz-focusring {
  outline: 1px dotted buttontext;
}

fieldset {
  padding: .35em .75em .625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  white-space: normal;
  max-width: 100%;
  padding: 0;
  display: table;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button {
  height: auto;
}

[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template, [hidden] {
  display: none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: inherit;
  border: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  box-sizing: border-box;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
}

svg {
  display: block;
}

html, body {
  color: #000;
  background: #f5f5f5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
}

.app-container {
  flex-direction: column;
  min-height: 100vh;
  padding: 20px;
  display: flex;
}

h1, h2, h3 {
  text-align: left;
  font-family: Inter, sans-serif;
  font-weight: 500;
}

h2 {
  font-size: 34px;
}

.button {
  cursor: pointer;
  white-space: nowrap;
  background-color: var(--button-bg-color);
  border-radius: var(--button-radius);
  font-weight: 500;
  line-height: normal;
  font-size: var(--button-font-size);
  color: var(--button-text-color);
  padding: var(--button-padding);
  height: var(--button-height);
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.button--size-s {
  --button-icon-margin: 0 5px 0 8px;
  --button-padding: 0 12px;
  --button-font-size: 13px;
  --button-width: 30px;
  --button-height: 26px;
  --button-radius: 7px;
  --icon-size: 16px;
}

.button--size-m {
  --button-icon-margin: 0 6px 0 10px;
  --button-padding: 0 14px;
  --button-font-size: 15px;
  --button-width: 38px;
  --button-height: 34px;
  --button-radius: 9px;
  --icon-size: 20px;
  line-height: 22px;
}

.button--size-l {
  --button-icon-margin: 0 8px 0 12px;
  --button-padding: 0 16px;
  --button-font-size: 17px;
  --button-width: 46px;
  --button-height: 42px;
  --button-radius: 14px;
  --icon-size: 24px;
}

.button--size-xl {
  --button-icon-margin: 0 10px 0 16px;
  --button-padding: 0 20px;
  --button-font-size: 17px;
  --button-width: 52px;
  --button-height: 48px;
  --button-radius: 12px;
  --icon-size: 24px;
}

.button--type-primary {
  --button-bg-color-hover: #2a6dd1;
  --button-bg-color-active: #2a6dd1;
  --button-text-color: #fff;
  background: #307df0;
  line-height: 22px;
}

.button--type-secondary {
  --button-bg-color: #fff;
  --button-bg-color-hover: #fff;
  --button-bg-color-active: #fff;
  --button-text-color: #000;
  box-shadow: 0 0 2px #0000000a, 0 1px 2px #0000001a, inset 0 -1px #0000000f;
}

@media (hover: hover) {
  .button--type-secondary:hover {
    box-shadow: 0 2px 4px #00000017, inset 0 -1px #0000000f;
  }
}

.button--type-secondary:active {
  box-shadow: 0 0 2px #0000000d, inset 0 -1px #0000000f;
}

.button--type-positive {
  --button-bg-color: #30b03d;
  --button-bg-color-hover: #2da539;
  --button-bg-color-active: #2a9935;
  --button-text-color: #fff;
}

.button--type-negative {
  --button-bg-color: #f0303d;
  --button-bg-color-hover: #e02d39;
  --button-bg-color-active: #d12a35;
  --button-text-color: #fff;
}

.button--type-minimal {
  --button-bg-color: #f0f0f0;
  --button-bg-color-hover: #e6e6e6;
  --button-bg-color-active: #dbdbdb;
  --button-text-color: #0000000;
}

@media (hover: hover) {
  .button--type-transparent:hover {
    --button-bg-color-hover: #0000000a;
    --button-bg-color-active: #0000000f;
  }
}

.button--with-icon-right svg {
  fill: none;
  width: var(--icon-size);
  height: var(--icon-size);
  margin-left: 6px;
}

.button--with-icon {
  padding-left: 0;
}

.button--with-icon svg {
  fill: none;
  margin: var(--button-icon-margin);
  width: var(--icon-size);
  height: var(--icon-size);
}

.button--with-icon img {
  margin: var(--button-icon-margin);
  width: var(--icon-size);
  height: var(--icon-size);
}

.button--icon-only {
  width: var(--button-width);
  --button-padding: 0px;
  justify-content: center;
  align-items: center;
}

.button--icon-only svg {
  width: var(--icon-size);
  height: var(--icon-size);
}

@media (hover: hover) {
  .button:hover {
    background-color: var(--button-bg-color-hover);
  }
}

.button:active {
  background-color: var(--button-bg-color-active);
}

.button[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

.upload-svg-container, .preview-container, .select-stickers-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
}

.select-stickers-container, .upload-svg-container {
  padding-top: env(safe-area-inset-top, 0px) !important;
}

.upload-layout {
  flex-direction: column;
  min-height: 100dvh;
  display: flex;
}

.upload-form-center {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  display: flex;
}

html, body {
  touch-action: manipulation;
}

.preview-header {
  z-index: 1100;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: none;
  padding-top: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.preview-header-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.preview-header .page-title {
  margin-bottom: 15px;
}

.preview-tabs {
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background-color: #ffffffbf;
  border-radius: 24px;
  justify-content: space-between;
  align-items: center;
  gap: 2px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 4px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #dadada4f, inset 1px 1px #ffffff1a, inset -1px -1px #ffffff1a;
}

.preview-tabs-slider {
  z-index: 0;
  background-color: #f5f5f5;
  border-radius: 24px;
  width: 0;
  height: calc(100% - 4px);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  position: absolute;
  top: 2px;
  left: 0;
}

.preview-tabs-option {
  cursor: pointer;
  color: #000;
  z-index: 1;
  text-align: center;
  white-space: normal;
  background-color: #0000;
  border: none;
  border-radius: 24px;
  flex: 1;
  padding: 10px 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  transition: color .3s;
  position: relative;
}

.sticker-class-group {
  margin: 30px 0 40px;
}

.select-stickers-container {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

.select-stickers-container .sticker-class-group {
  flex-direction: column;
  margin: 0 0 20px;
  display: flex;
}

.sticker-class-title {
  color: #595959;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
}

.sticker-class-header {
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  display: flex;
}

.sticker-class-group, .stickers-grid-wrapper {
  position: relative;
}

.stickers-grid-wrapper .stickers-loading-overlay {
  z-index: 2;
  background: #fff;
  border-radius: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  display: flex;
  position: absolute;
  inset: 0;
}

.stickers-grid-wrapper .stickers-loading-overlay[aria-hidden="true"] {
  display: none;
}

.stickers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 15px;
  padding-bottom: 0;
  display: grid;
}

.sticker-item {
  text-align: center;
  cursor: pointer;
  aspect-ratio: 1;
  transform-origin: center;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border: none;
  border-radius: 30px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 5px;
  transition: all .3s;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: rotate(0)scale(1);
}

.sticker-item, .sticker-item * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.sticker-item:hover {
  box-shadow: 0 4px 15px #002d5914;
}

.sticker-preview {
  aspect-ratio: 1;
  background-color: #fff0;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.sticker-preview-large {
  aspect-ratio: 1;
  background-color: #0000;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 20px auto;
  padding: 10px;
  display: flex;
  overflow: hidden;
}

.sticker-preview-large-group {
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
  display: flex;
}

.sticker-preview-large-item {
  flex-direction: column;
  align-items: center;
  width: 215px;
  display: flex;
}

.sticker-preview-large-label {
  color: #595959;
  text-align: center;
  margin-bottom: 12px;
  font-size: 16px;
}

.lottie-container {
  flex: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  display: flex;
}

.sticker-preview .lottie-container canvas, .sticker-preview .lottie-container svg {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.preview-error {
  color: #595959;
  font-size: 24px;
}

.file-input-wrapper {
  max-width: 300px;
  margin: 60px auto;
  position: relative;
}

.file-input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.file-input-label {
  cursor: pointer;
  background: #fff;
  border: 2px dashed #e5e5e5;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  transition: all .3s;
  display: flex;
  position: relative;
}

.file-input-label:hover {
  border-color: #307df0;
}

.file-input-label.is-preview {
  padding: 18px;
  overflow: hidden;
}

.file-input-hint {
  text-align: center;
  color: #3339;
  margin-top: 15px;
  font-size: clamp(12px, 3vw, 14px);
}

.file-input-label svg {
  fill: none;
  color: #307df0;
  margin-bottom: 20px;
}

.file-text {
  color: #595959;
  font-size: 14px;
}

.file-input-preview {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
}

.file-input-overlay {
  color: #307df0;
  text-align: center;
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background: #ffffffbf;
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.2;
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  box-shadow: inset 0 0 0 1px #dadada4f, inset 1px 1px #ffffff1a, inset -1px -1px #ffffff1a;
}

.file-name {
  text-align: center;
  color: #666;
  margin: 15px 0;
  font-size: clamp(12px, 3vw, 14px);
}

.preview-container {
  box-sizing: content-box;
  padding-top: 170px;
  position: relative;
}

.change-logo-fab {
  z-index: 1100;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  position: absolute;
  top: 120px;
  right: 20px;
}

.change-logo-fab svg {
  fill: none;
}

.change-logo-fab.is-expanded {
  border-radius: 999px;
  width: auto;
  padding: 0 11px;
}

.change-logo-fab.is-expanded .change-logo-label {
  opacity: 1;
  max-width: 140px;
}

.preview-steps-wrapper {
  width: 100%;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}

.preview-step {
  opacity: 0;
  pointer-events: none;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transition: all .5s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(100%);
}

.preview-step.active {
  opacity: 1;
  pointer-events: auto;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  display: flex;
  position: relative;
  transform: translateX(0);
}

.preview-wrapper {
  background-color: #0000;
  border-radius: 16px;
  width: 100%;
  max-width: 400px;
  height: 400px;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}

.preview-step[data-step="2"] .preview-wrapper, .preview-step[data-step="3"] .preview-wrapper, .preview-step[data-step="4"] .preview-wrapper {
  max-width: 250px;
  height: 250px;
}

.preview-wrapper-size {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
  display: flex;
}

.preview-item-size {
  background-color: #0000;
  width: 250px;
  height: 250px;
  position: relative;
}

.scale-layer-frame {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scale-layer-back {
  z-index: 1;
}

.scale-layer-front {
  z-index: 2;
}

.lottie-back-layer, .lottie-front-layer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.lottie-back-layer {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.lottie-player-fit {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.lottie-player-fit svg, .lottie-player-fit canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.lottie-front-layer {
  z-index: 2;
}

.scale-back-circle {
  background-color: #e6e6e6;
  border: 12px solid #a8a8a8;
  border-radius: 50%;
  width: 100%;
  height: 100%;
}

.scale-control-container {
  z-index: 999;
  border-radius: 16px 16px 0 0;
  max-width: 600px;
  margin: 0 auto 41px;
  padding: 20px 40px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1), opacity .5s cubic-bezier(.4, 0, .2, 1);
  bottom: 80px;
  left: 0;
  right: 0;
}

.scale-control-container.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-100%);
}

.scale-label {
  text-align: center;
  color: #333;
  margin-bottom: 15px;
  font-size: clamp(14px, 3.5vw, 16px);
  font-weight: 600;
  display: block;
}

.scale-slider {
  appearance: none;
  background: #e0e0e0;
  border-radius: 4px;
  outline: none;
  width: 100%;
  height: 8px;
}

.scale-slider::-webkit-slider-thumb {
  appearance: none;
  cursor: pointer;
  background: #307df0;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.scale-slider::-moz-range-thumb {
  cursor: pointer;
  background: #d9005b;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.color-picker-container {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 25px;
  width: 100%;
  margin: 20px 0;
  padding: 20px;
}

.color-picker-label {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.color-picker-hint {
  color: #595959;
  margin-bottom: 15px;
  font-size: 16px;
}

.color-pickers {
  flex-direction: column;
  gap: 16px;
  width: 100%;
  display: flex;
}

.color-pickers.logo-colors {
  box-sizing: border-box;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  width: 100%;
  display: grid;
}

.color-picker-item {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  display: flex;
}

.color-pickers.logo-colors .color-picker-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.color-picker-item-label {
  color: #333;
  min-width: 70px;
  font-size: clamp(12px, 3vw, 14px);
  font-weight: 500;
}

.color-swatch {
  cursor: pointer;
  border: none;
  border-radius: 50%;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: block;
  overflow: hidden;
  box-shadow: 0 0 0 1px #002d5914;
}

.color-swatch input[type="color"] {
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
}

.color-swatch input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-swatch input[type="color"]::-webkit-color-swatch {
  border: none;
  border-radius: 6px;
}

.color-hex-input {
  background: #f5f5f5;
  border: 1px solid #ededed;
  border-radius: 12px;
  flex: 1;
  min-width: 120px;
  padding: 10px 14px;
  font-size: 16px;
}

.color-hex-input-wrapper {
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.color-hex-input-wrapper .color-hex-input {
  width: 100%;
  padding-right: 36px;
}

.color-hex-paste {
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: inline-flex;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.color-hex-paste img {
  width: 16px;
  height: 16px;
  display: block;
}

.color-pickers.logo-colors .color-hex-input {
  width: 100%;
  min-width: 0;
}

.color-hex-input:focus {
  border-color: #307df0;
  outline: none;
  box-shadow: 0 0 0 3px #002d591f;
}

.color-picker-accordion {
  box-sizing: border-box;
  flex-direction: column;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  display: flex;
}

.color-picker-accordion-header {
  text-align: left;
  box-sizing: border-box;
  background-color: #0000;
  border: none;
  border-radius: 8px;
  flex-grow: 0;
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  transition: background-color .3s;
  display: flex;
}

.color-picker-accordion-icon {
  color: #307df0;
  font-size: 12px;
  transition: transform .3s;
}

.color-picker-accordion-content {
  box-sizing: border-box;
  border-top: none;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 15px;
  transition: opacity .3s, transform .3s;
  overflow-x: hidden;
}

.png-logo-panel {
  gap: 12px;
  display: grid;
}

.png-logo-note, .png-logo-status {
  text-align: left;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.png-logo-note {
  color: #595959;
}

.png-logo-status {
  color: #4f4f4f;
}

.png-logo-actions {
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  display: flex;
}

.png-logo-action-left, .png-logo-action-right {
  width: 100%;
}

.png-logo-action-left[disabled] {
  opacity: .55;
  cursor: not-allowed;
}

.sticker-preview-large {
  position: relative;
}

.sticker-preview-large canvas, .sticker-preview-large svg {
  width: 100%;
  height: 100%;
}

.sticker-groups-wrapper {
  position: relative;
}

.stickers-loading-overlay {
  -webkit-backdrop-filter: blur(20px);
  z-index: 10;
  background: #ffffff80;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  min-height: 200px;
  padding-top: 30px;
  display: flex;
  position: absolute;
  inset: 0;
}

.stickers-loading-overlay[aria-hidden="true"] {
  display: none;
}

.stickers-loading-overlay[aria-hidden="false"] {
  display: flex;
}

.stickers-loading-text {
  color: #595959;
  font-size: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 575.98px) {
  .app-container {
    padding: 10px;
  }

  .stickers-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .sticker-item {
    min-height: 0;
  }

  .sticker-preview-large {
    max-width: 130px;
  }

  .intro-lottie-container {
    max-width: 190px;
    height: 190px;
  }

  .file-input-label {
    max-width: 200px;
    height: 200px;
  }

  .preview-wrapper {
    max-width: 280px;
    height: 280px;
  }

  .preview-container {
    padding-top: calc(112px + env(safe-area-inset-top, 0px));
  }

  .preview-step[data-step="2"] .preview-wrapper, .preview-step[data-step="3"] .preview-wrapper, .preview-step[data-step="4"] .preview-wrapper {
    max-width: 200px;
    height: 200px;
  }

  .preview-item-size {
    width: 200px;
    height: 200px;
  }

  .scale-control-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .tariff-toggle {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }

  .tariff-option {
    padding: 20px 15px;
  }

  .color-hex-input {
    min-width: 100px;
  }

  .png-logo-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .select-stickers-container {
    padding-bottom: 120px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .stickers-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .sticker-preview-large {
    max-width: 200px;
  }
}

.custom-colors-toggle-wrapper {
  text-align: center;
  margin: 14px auto 8px;
}

.custom-colors-toggle-btn {
  color: #307df0;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
}

.custom-colors-toggle-btn:hover {
  text-decoration: underline;
}

.custom-colors-arrow {
  font-size: 10px;
  transition: transform .2s;
}

.color-templates {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
}

.color-template-circle {
  cursor: pointer;
  background: none;
  border: 3px solid #0000;
  border-radius: 50%;
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  transition: border-color .2s, transform .15s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 4px #0000001f;
}

.color-template-circle:hover {
  transform: scale(1.1);
}

.color-template-circle:active {
  transform: scale(.95);
}

.color-template-circle.active {
  border-color: #307df0;
}

.ct-half {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.ct-left {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.ct-right {
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

button.sticker-item {
  appearance: none;
  background-color: #fff;
  border: none;
  padding: 5px;
}

.sticker-item.is-downloading {
  opacity: .7;
  cursor: progress;
}

.sticker-item .sticker-preview, .sticker-item .lottie-container, .sticker-preview-large .lottie-container {
  width: 100%;
  height: 100%;
}

.sticker-item .lottie-container, .sticker-preview-large .lottie-container {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.sticker-item .lottie-container canvas, .sticker-item .lottie-container svg, .sticker-preview-large .lottie-container canvas, .sticker-preview-large .lottie-container svg {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.page-title {
  margin: 0 auto;
}

.header-mobile {
  justify-content: center;
  display: flex;
}

.bar--bottom {
  z-index: 50;
  flex-direction: column;
  width: 308px;
  display: flex;
  position: fixed;
  bottom: 16px;
}

.tabbar {
  -webkit-backdrop-filter: blur(17px);
  backdrop-filter: blur(17px);
  background-color: #ffffffbf;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px #dadada4f, inset 1px 1px #ffffff1a, inset -1px -1px #ffffff1a;
}

.tabbar__item {
  will-change: transform;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  display: flex;
  position: relative;
  overflow: visible;
}

.home-page {
  justify-content: center;
  align-items: center;
  min-height: 100dvh;
  padding: 32px 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-hero {
  z-index: 1;
  text-align: center;
  width: 100%;
  max-width: 980px;
  position: relative;
}

.home-logo {
  object-fit: contain;
  width: 220px;
  margin: 0 auto 24px;
}

.home-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 84px;
  font-weight: 700;
  line-height: 100%;
}

.home-title-accent {
  color: #307df0;
  display: block;
}

.home-subtitle {
  max-width: 800px;
  margin-bottom: 26px;
  margin-left: auto;
  margin-right: auto;
  font-size: 26px;
  line-height: 125%;
}

.home-actions {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  display: flex;
}

.home-action {
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  transition: transform .18s, box-shadow .18s, background-color .18s;
  display: inline-flex;
}

@media (max-width: 991px) {
  .home-logo {
    width: 120px;
    height: 120px;
    margin-bottom: 18px;
  }

  .home-subtitle {
    max-width: 640px;
    font-size: clamp(15px, 3.8vw, 28px);
  }

  .home-action {
    border-radius: 12px;
    min-height: 48px;
    padding: 0 18px;
    font-size: clamp(15px, 3vw, 18px);
  }
}

@media (max-width: 640px) {
  .home-page {
    padding: 20px 16px;
  }

  .home-actions {
    flex-direction: column;
  }

  .home-action {
    width: 100%;
    max-width: 420px;
  }
}

.page-logo {
  width: 90px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
}

.page-logo:hover {
  opacity: .9;
}

.fixed-background-teleport {
  object-fit: cover;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(#000, #0000);
  width: 100%;
  height: 320px;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(#000, #f000);
  opacity: .05 !important;
}

.button--active-transform {
  transition: transform 50ms ease-in-out;
}

.button--active-transform:active {
  transform: scale(.95);
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/