*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

@font-face {
  font-family: 'Fabriga';
  font-display: swap;
  src: url("../assets/fonts/FabrigaLight.eot");
  src: url("../assets/fonts/FabrigaLight.woff2") format("woff2"), url("../assets/fonts/FabrigaLight.woff") format("woff"), url("../assets/fonts/FabrigaLight.ttf") format("truetype"), url("../assets/fonts/FabrigaLight.svg#FabrigaLight") format("svg"), url("../assets/fonts/FabrigaLight.eot?#iefix") format("embedded-opentype");
  font-weight: 200 300;
  font-style: normal; }

@font-face {
  font-family: 'Fabriga';
  font-display: swap;
  src: url("../assets/fonts/Fabriga.eot");
  src: url("../assets/fonts/Fabriga.woff2") format("woff2"), url("../assets/fonts/Fabriga.woff") format("woff"), url("../assets/fonts/Fabriga.ttf") format("truetype"), url("../assets/fonts/Fabriga.svg#Fabriga") format("svg"), url("../assets/fonts/Fabriga.eot?#iefix") format("embedded-opentype");
  font-weight: 400 500;
  font-style: normal; }

@font-face {
  font-family: 'Fabriga';
  font-display: swap;
  src: url("../assets/fonts/Fabriga-Bold.eot");
  src: url("../assets/fonts/Fabriga-Bold.woff2") format("woff2"), url("../assets/fonts/Fabriga-Bold.woff") format("woff"), url("../assets/fonts/Fabriga-Bold.ttf") format("truetype"), url("../assets/fonts/Fabriga-Bold.svg#Fabriga-Bold") format("svg"), url("../assets/fonts/Fabriga-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal; }

@keyframes gradient {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }

@keyframes scaleLike {
  0% {
    transform: scale(1); }
  4% {
    transform: scale(1); }
  8% {
    transform: scale(1); }
  14% {
    transform: scale(1); }
  18% {
    transform: scale(1); }
  26% {
    transform: scale(1.02); }
  28% {
    transform: scale(1.02); }
  40% {
    transform: scale(0.98); }
  42% {
    transform: scale(0.98); }
  56% {
    transform: scale(1.06); }
  58% {
    transform: scale(1.06); }
  72% {
    transform: scale(0.88); }
  86% {
    transform: scale(1.4); }
  100% {
    transform: scale(1.2); } }

.accordion {
  height: auto; }
  .accordion__panel {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .accordion__panel {
        font-size: 16px;
        line-height: 24px; } }
  .accordion__summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    width: 100%;
    padding: 12px 8px 12px 0;
    border: 0;
    border-top: 1px solid #f0f0ec;
    outline: none;
    cursor: pointer;
    text-align: left;
    color: black;
    font-weight: 400; }
    .accordion__summary:after {
      content: url("../assets/img/chevron-right.svg"); }
    .accordion__summary.active:after {
      content: url("../assets/img/chevron-up.svg"); }
  .accordion__details {
    color: #888888;
    height: 0px;
    text-align: left;
    transform: scaleY(0); }
    .accordion__details.active {
      height: min-content;
      padding: 16px 0;
      border: 0;
      border-top: 1px solid #f0f0ec;
      transform: scaleY(1); }

.button {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 4px 0px;
  padding: 0;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  white-space: nowrap;
  /* Button type (e.g. primary, secondary) */ }
  .button.icon-only {
    --aspect-ratio: 1 / 1; }
  .button.disabled {
    pointer-events: none;
    cursor: unset; }
  .button.primary {
    min-width: max-content;
    background-color: #000000;
    padding: 10px 12px;
    height: 44px;
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 14px; }
    .button.primary.disabled {
      background-color: #888888;
      color: #ffffff;
      border: none; }
    .button.primary:hover {
      color: #c0c0c0; }
    .button.primary:active {
      color: #c0c0c0; }
    .button.primary .icon-right,
    .button.primary .icon-left {
      color: #ffffff; }
    .button.primary-small {
      min-width: max-content;
      background-color: #000000;
      padding: 10px 12px;
      height: 44px;
      color: #ffffff;
      border: none;
      font-weight: 700;
      font-size: 14px;
      padding: 8px 16px;
      height: 32px;
      border-radius: 16px;
      font-size: 12px;
      position: inherit; }
      .button.primary-small.disabled {
        background-color: #888888;
        color: #ffffff;
        border: none; }
      .button.primary-small:hover {
        color: #c0c0c0; }
      .button.primary-small:active {
        color: #c0c0c0; }
      .button.primary-small .icon-left {
        position: inherit;
        left: auto;
        right: auto;
        margin: 0; }
  .button.ghost {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 700;
    font-size: 14px;
    height: 44px; }
    .button.ghost.disabled {
      background-color: #ffffff;
      color: #888888;
      border: 1px solid #888888; }
    .button.ghost:hover {
      color: #4a4a4c;
      border: 1px solid #4a4a4c; }
    .button.ghost:active {
      color: #4a4a4c;
      border: 1px solid #4a4a4c; }
  .button.secondary {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 32px;
    font-weight: 700;
    font-size: 12px; }
    @media only screen and (min-width: 768px) {
      .button.secondary {
        font-size: 14px; } }
    .button.secondary.disabled {
      background-color: #ffffff;
      color: #888888; }
    .button.secondary:hover {
      background-color: #f0f0ec; }
    .button.secondary:active {
      background-color: #f0f0ec; }
    .button.secondary .label {
      padding: 0 8px; }
    .button.secondary .icon-right,
    .button.secondary .icon-left,
    .button.secondary .image-left {
      position: inherit;
      left: auto;
      right: auto; }
    .button.secondary-rounded {
      background-color: #ffffff;
      color: #000000;
      border: 1px solid rgba(0, 0, 0, 0.1);
      height: 32px;
      font-weight: 700;
      font-size: 12px;
      border-radius: 22px;
      font-weight: 400;
      font-size: 15px;
      padding: 12px 4px;
      height: 44px; }
      @media only screen and (min-width: 768px) {
        .button.secondary-rounded {
          font-size: 14px; } }
      .button.secondary-rounded.disabled {
        background-color: #ffffff;
        color: #888888; }
      .button.secondary-rounded:hover {
        background-color: #f0f0ec; }
      .button.secondary-rounded:active {
        background-color: #f0f0ec; }
  .button.chip {
    display: block;
    padding: 6px 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #888888;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    border-radius: 20px; }
  .button.hug .label {
    padding-left: 8px; }
  .button.hug .icon-right,
  .button.hug .icon-left {
    position: inherit; }
  .button .label,
  .button .icon-right,
  .button .icon-left {
    user-select: none;
    line-height: 0; }
  .button .image-left {
    position: absolute;
    left: 0;
    height: 32px; }
  .button .icon-right {
    position: absolute;
    right: 0;
    margin-right: 8px; }
  .button .icon-left {
    position: absolute;
    left: 0;
    margin-left: 8px; }
  .button .loading-spinner {
    margin-right: 5px; }
  .button.tertiary {
    background-color: #ffffff;
    color: #888888;
    border: 1px solid #ffffff;
    font-weight: 700;
    font-size: 14px;
    height: 44px; }
  .button.view-more-art {
    border: rgba(0, 0, 0, 0.1);
    color: #4a4a4c;
    height: 40px;
    border-radius: 20px;
    padding: 16px;
    font-size: 14px; }
  .button.like-button {
    width: 32px;
    height: 32px; }
    .button.like-button:hover {
      background-color: #ffffff; }
    .button.like-button:active {
      background-color: #ffffff; }
  .button.liked svg {
    color: #ff0000;
    fill: #ff0000;
    stroke: #ff0000;
    animation: scaleLike 1.2s;
    animation-fill-mode: forwards; }
  .button.styles-button {
    height: 44px;
    width: 44px;
    margin: 0;
    margin-top: 4px;
    margin-right: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px; }
    .button.styles-button .icon {
      margin-left: 2px; }
    .button.styles-button .counter {
      visibility: hidden; }
    .button.styles-button--counter {
      width: 76px; }
      .button.styles-button--counter .icon {
        margin-left: 0px; }
      .button.styles-button--counter .counter {
        visibility: visible;
        width: 24px;
        height: 24px;
        padding-top: 4px;
        font-size: 13px;
        font-weight: 700;
        color: #000000;
        border: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 16px; }

.callout {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 4px;
  margin-top: 10px;
  padding: 10px 12px;
  user-select: none; }
  .callout.error, .callout.nsfw {
    background-color: #fcefeb;
    color: #ff0000; }
  .callout.warning {
    background-color: #fff8d2;
    color: #7d6200; }
  .callout .message {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .callout .message {
        font-size: 16px;
        line-height: 24px; } }
  .callout .icon {
    padding-right: 10px;
    line-height: 0; }

.card {
  margin-bottom: 80px; }
  .card__img-wrapper {
    display: inline-flex;
    background: #f0f0ec;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1; }
    .card__img-wrapper > img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .card__text, .feature__text {
    padding-top: 16px; }
  .card__title, .feature__title {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 8px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .card__title, .feature__title {
        font-size: 24px;
        line-height: 32px; } }
  .card__subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888;
    line-height: 24px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .card__subtitle {
        font-size: 16px;
        line-height: 24px; } }
.checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  cursor: pointer; }
  .checkbox--checked {
    color: #ffffff;
    background: #000000; }

.chip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 100px;
  cursor: pointer; }
  .chip__label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      .chip__label {
        font-size: 16px;
        line-height: 24px; } }
.expandable-panel {
  width: 100%; }
  .expandable-panel .expandable-panel-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
    .expandable-panel .expandable-panel-header .label {
      font-size: 16px;
      font-weight: 400; }
    .expandable-panel .expandable-panel-header .open-icon {
      width: 32px; }
  .expandable-panel .expandable-panel-content {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    overflow: hidden;
    max-height: 0px;
    transition: max-height 500ms; }
    @media only screen and (min-width: 768px) {
      .expandable-panel .expandable-panel-content {
        font-size: 16px;
        line-height: 24px; } }
  .expandable-panel.open .open-icon svg {
    transform: rotate(90deg); }
  .expandable-panel.open .expandable-panel-content {
    max-height: 10000px;
    overflow: inherit; }

.feature {
  margin-bottom: 80px; }
  .feature__img-wrapper {
    display: inline-flex;
    background: #f0f0ec;
    border-radius: 10px;
    overflow: hidden; }
    .feature__img-wrapper > img {
      max-width: 100%;
      object-fit: contain; }
  .feature__text {
    text-align: left; }
  .feature__title {
    margin: 0; }
  .feature__description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-overflow: ellipsis; }
    @media only screen and (min-width: 768px) {
      .feature__description {
        font-size: 16px;
        line-height: 24px; } }
  .feature__cta {
    padding-top: 8px; }
    .feature__cta button.secondary .label {
      padding: 0 24px; }

.image-loader {
  width: 100%; }
  .image-loader .loader {
    position: relative;
    line-height: 0;
    overflow: hidden;
    width: 100%; }
    @supports (--custom: property) {
      .image-loader .loader::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% * var(--aspect-ratio)); } }
    .image-loader .loader .bounding-box {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 100%;
      overflow: hidden;
      display: flex;
      justify-content: center; }
      .image-loader .loader .bounding-box img {
        object-fit: cover;
        width: 100%;
        height: 100%; }
    .image-loader .loader > .bounding-box > .loaded-image {
      opacity: 0;
      transition: opacity 250ms; }
      .image-loader .loader > .bounding-box > .loaded-image.loaded {
        opacity: 1; }
  .image-loader.has-placeholder .placeholder {
    filter: blur(20px); }

.text-area {
  background-color: #f2f2ee;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: none; }
  .text-area .text-input-wrapper {
    display: flex; }
    .text-area .text-input-wrapper .grow-wrap {
      display: grid;
      flex-grow: 1; }
      .text-area .text-input-wrapper .grow-wrap .text-input {
        background: transparent;
        border: none;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        resize: none;
        text-align: center;
        resize: none;
        overflow: hidden; }
        .text-area .text-input-wrapper .grow-wrap .text-input::placeholder {
          color: #888888; }
        .text-area .text-input-wrapper .grow-wrap .text-input--disabled {
          color: #888888;
          -webkit-text-fill-color: #888888;
          opacity: 1; }
        .text-area .text-input-wrapper .grow-wrap .text-input:focus {
          outline: none; }
    .text-area .text-input-wrapper .grow-wrap::after {
      content: attr(data-replicated-value) " ";
      white-space: pre-wrap;
      visibility: hidden; }
    .text-area .text-input-wrapper .grow-wrap > textarea,
    .text-area .text-input-wrapper .grow-wrap::after {
      padding: 0.5rem;
      font: inherit;
      grid-area: 1 / 1 / 2 / 2;
      padding: 14px 30px 10px 30px; }
    .text-area .text-input-wrapper .info, .text-area .text-input-wrapper .info--disabled {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 30px;
      position: absolute;
      right: 0;
      top: 8px;
      margin-top: 2px;
      cursor: pointer;
      padding-right: 10px; }
      .text-area .text-input-wrapper .info svg, .text-area .text-input-wrapper .info--disabled svg {
        color: #000000; }
      .text-area .text-input-wrapper .info--disabled svg {
        color: #888888; }

.toggle {
  position: relative;
  height: 27px;
  width: 48px; }
  .toggle .outer, .toggle .mask, .toggle .button {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .toggle .outer, .toggle .mask {
    height: 27px;
    width: 48px;
    border-radius: 13px;
    background-color: #c0c0c0;
    padding: 3px;
    justify-content: center; }
  .toggle .mask {
    opacity: 0;
    transition: opacity 250ms;
    background-color: #000000; }
  .toggle .button {
    height: 20px;
    width: 20px;
    border-radius: 10px;
    left: 3px;
    background-color: #ffffff;
    transition: left 250ms; }
  .toggle.toggled .mask {
    opacity: 1; }
  .toggle.toggled .button {
    left: 25px; }

.link {
  user-select: none;
  text-decoration: none; }
  .link:hover {
    cursor: pointer; }
  .link:active {
    cursor: pointer; }

.ol {
  margin-top: 20px;
  width: 100%; }
  .ol .li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px; }
    .ol .li__number {
      margin-right: 8px;
      background-color: #f0f0ec;
      border-radius: 20px; }
      .ol .li__number > span {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 32px;
        width: 32px; }
    .ol .li__text {
      padding-top: 6.5px;
      text-align: left; }
    .ol .li__title {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      font-weight: 700;
      font-weight: 700;
      margin-bottom: 6px; }
      @media only screen and (min-width: 768px) {
        .ol .li__title {
          font-size: 16px;
          line-height: 24px; } }
    .ol .li__subtitle {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        .ol .li__subtitle {
          font-size: 16px;
          line-height: 24px; } }
.new {
  position: absolute;
  top: -4px;
  left: -4px;
  line-height: 0; }

.style-button {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 8px; }
  .style-button .thumbnail {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    margin-right: 8px;
    background-size: contain; }
  .style-button .name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-size: 13.35px;
    color: #888888;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 120px; }
    @media only screen and (min-width: 768px) {
      .style-button .name {
        font-size: 16px;
        line-height: 24px; } }
@media only screen and (min-width: 768px) {
  .style-button .name {
    max-width: 150px; } }

.segmented-tabs {
  position: relative;
  height: 32px;
  width: 100%;
  margin: 5px 0; }
  .segmented-tabs .outer,
  .segmented-tabs .tabs {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .segmented-tabs .outer {
    border-radius: 10px;
    background-color: #f0f0ec; }
  .segmented-tabs .mask {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: 2px;
    left: calc(100% / var(--n-tabs) * var(--selected-idx));
    width: calc(100% / var(--n-tabs) - 4px);
    background: #ffffff;
    border-radius: 8px;
    transition: left 250ms ease-in-out; }
  .segmented-tabs .tabs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%; }
    .segmented-tabs .tabs .tab {
      width: 100%;
      text-align: center;
      cursor: pointer;
      transition: color 250ms ease-in-out;
      color: rgba(0, 0, 0, 0.5);
      font-size: 14px;
      line-height: 20px;
      font-weight: 400; }
      .segmented-tabs .tabs .tab.selected {
        color: black; }

.text-field {
  position: relative;
  width: 100%; }
  .text-field .has-icon-left {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-size: 16px;
    display: flex;
    justify-content: flex-start;
    width: 100%;
    height: 44px;
    background-color: #f0f0ec;
    border-radius: 10px;
    border: none;
    padding: 10px 12px;
    padding-left: 48px; }
    @media only screen and (min-width: 768px) {
      .text-field .has-icon-left {
        font-size: 16px;
        line-height: 24px; } }
    .text-field .has-icon-left::placeholder {
      color: #888888;
      mix-blend-mode: multiply; }
    .text-field .has-icon-left:focus-visible {
      outline: 1px solid rgba(0, 0, 0, 0.1);
      outline-sttyle: 1px solid rgba(0, 0, 0, 0.1); }
  .text-field .icon-left {
    position: absolute;
    left: 12px;
    top: 10px; }

.alert {
  width: calc(100vw - 40px);
  padding: 20px; }
  .alert__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700; }
    @media only screen and (min-width: 768px) {
      .alert__title {
        font-size: 32px;
        line-height: 40px; } }
  .alert__buttons {
    display: flex;
    gap: 8px; }
    .alert__buttons .button {
      margin: 0;
      height: 44px;
      width: 100%; }

@media only screen and (min-width: 768px) {
  .alert {
    width: max-content; } }

.prompt__wrapper {
  display: flex; }
  @media only screen and (max-width: 768px) {
    .prompt__wrapper {
      flex-direction: column; } }
  @media only screen and (min-width: 768px) {
    .prompt__wrapper {
      flex-direction: row; } }
#prompt, #prompt--v1 {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #prompt.sticky, #prompt--v1.sticky {
    position: sticky;
    top: 88px;
    display: inline-flex;
    flex-direction: column;
    width: 100%;
    z-index: 2;
    padding: 20px 0;
    background: #ffffff;
    background: linear-gradient(180deg, white 90%, rgba(255, 255, 255, 0) 100%); }
  #prompt .styles-and-gradient, #prompt--v1 .styles-and-gradient {
    display: flex;
    flex-direction: row;
    width: 100%; }
  #prompt .prompt__title, #prompt--v1 .prompt__title {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    line-height: 20px;
    margin: 0; }
  #prompt .prompt__subtitle, #prompt--v1 .prompt__subtitle {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 20px; }
  #prompt .prompt__room-inputs--v1, #prompt--v1 .prompt__room-inputs--v1 {
    width: 100%;
    padding: 4px 0 0 0; }
  #prompt .prompt__inputs, #prompt--v1 .prompt__inputs {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 8px;
    gap: 5px; }
    #prompt .prompt__inputs .button, #prompt--v1 .prompt__inputs .button {
      margin: 0;
      width: 100%; }
  #prompt .prompt__text-prompt, #prompt--v1 .prompt__text-prompt {
    flex: 1; }
  #prompt .prompt__generate-btn, #prompt .prompt__gradient, #prompt--v1 .prompt__generate-btn, #prompt--v1 .prompt__gradient {
    width: 100%; }
  #prompt .prompt__camera-btn .button, #prompt--v1 .prompt__camera-btn .button {
    height: 44px; }
  #prompt .prompt__image-picker, #prompt--v1 .prompt__image-picker {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 8px;
    background-color: #f2f2ee;
    overflow: hidden; }
    #prompt .prompt__image-picker-controls, #prompt--v1 .prompt__image-picker-controls {
      display: flex;
      flex-direction: row;
      justify-content: center;
      padding: 2px 4px 0 4px;
      gap: 8px; }
      #prompt .prompt__image-picker-controls .button img, #prompt--v1 .prompt__image-picker-controls .button img {
        padding: 4px;
        border-radius: 8px; }
  #prompt .prompt__generations-remaining, #prompt--v1 .prompt__generations-remaining {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    padding: 2px 8px;
    border-radius: 12px;
    background-color: #888888;
    color: #000000; }
    @media only screen and (min-width: 768px) {
      #prompt .prompt__generations-remaining, #prompt--v1 .prompt__generations-remaining {
        font-size: 14px;
        line-height: 20px; } }
  #prompt input[type="file"], #prompt--v1 input[type="file"] {
    display: none; }

#image-cropper {
  margin: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; }
  #image-cropper .caption {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding: 10px;
    color: #888888;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #image-cropper .caption {
        font-size: 16px;
        line-height: 24px; } }
  #image-cropper .frame {
    line-height: 0;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.05)); }
  #image-cropper img {
    max-height: 280px; }

#prompt-panel {
  display: contents; }
  #prompt-panel .mobile-prompt-panel {
    padding: 20px 80px; }
  #prompt-panel .copy {
    max-width: 280px;
    margin: 0 auto;
    user-select: none;
    text-align: center; }
    #prompt-panel .copy__title {
      margin: 0;
      font-weight: 400;
      font-size: 24px;
      line-height: 32px; }
      @media only screen and (min-width: 768px) {
        #prompt-panel .copy__title {
          font-size: 32px;
          line-height: 40px; } }
    #prompt-panel .copy__subtitle {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      padding-top: 8px;
      color: #4a4a4c; }
      @media only screen and (min-width: 768px) {
        #prompt-panel .copy__subtitle {
          font-size: 16px;
          line-height: 24px; } }
.product-type-ribbon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 4px;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.04);
  position: relative;
  z-index: 1; }

.product-type-hero {
  position: relative; }
  .product-type-hero__prompt-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end; }
  .product-type-hero__prompt-box, .product-type-hero__notice-box {
    width: calc(100% - 20px);
    margin-bottom: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .product-type-hero__prompt-title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .product-type-hero__prompt-title {
        font-size: 32px;
        line-height: 40px; } }
  .product-type-hero__prompt-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
    padding-top: 8px;
    padding-bottom: 12px;
    color: #4a4a4c; }
    @media only screen and (min-width: 768px) {
      .product-type-hero__prompt-subtitle {
        font-size: 16px;
        line-height: 24px; } }
  .product-type-hero #prompt {
    padding: 0;
    position: unset; }
  .product-type-hero #image-cropper {
    margin: 0; }
  .product-type-hero__notice-box-text {
    font-weight: 400;
    text-align: center;
    line-height: 22px; }

.product-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  width: 60px;
  cursor: pointer;
  text-decoration: none;
  color: #000000; }
  .product-type-card__icon {
    margin-top: 10px;
    opacity: 0.6; }
  .product-type-card__name {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    opacity: 0.6; }
  .product-type-card__indicator {
    width: 28px;
    height: 2px;
    border-radius: 3px 3px 0px 0px;
    background: #000000;
    margin-top: 4px;
    opacity: 0; }
  .product-type-card.selected .product-type-card__icon,
  .product-type-card.selected .product-type-card__name,
  .product-type-card.selected .product-type-card__indicator {
    opacity: 1; }

@media only screen and (min-width: 768px) {
  #prompt-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 90px;
    left: 0;
    width: 50vw;
    height: calc(100vh - 90px);
    background-color: #ffffff; }
    #prompt-panel .copy {
      margin-bottom: 40px;
      max-width: 350px; } }

#header {
  z-index: 4;
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  height: 90px;
  top: 0px; }
  #header.sticky {
    position: sticky; }
  #header.fixed {
    position: fixed; }
  #header .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    font-weight: 700;
    user-select: none; }
    #header .header__logo > svg {
      cursor: pointer; }
  #header .header__buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 100%; }
    #header .header__buttons > div {
      display: flex;
      flex-direction: row;
      align-items: center;
      width: fit-content; }
    #header .header__buttons .button {
      border-radius: 20px;
      padding: 20px;
      width: 32px; }
    #header .header__buttons--rhs .share-btn {
      margin-right: 8px;
      min-width: 57px;
      height: 44px;
      padding: 14px 16px;
      border-radius: 22px; }
    #header .header__buttons--rhs .disabled {
      width: fit-content; }
    #header .header__buttons--rhs .upgrade-btn {
      margin-right: 8px;
      height: 44px;
      border-radius: 22px;
      padding: 0 12px;
      min-width: 72px;
      background: linear-gradient(45deg, #4a00c4 0%, #c66de5 100%);
      color: #ffffff; }
  #header .header__desktop-nav-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    gap: 20px; }
  #header .desktop-nav-button, #header .desktop-nav-button--active {
    padding: 10px 20px;
    border-radius: 20px;
    user-select: none;
    cursor: pointer; }
    #header .desktop-nav-button:hover, #header .desktop-nav-button--active:hover {
      background-color: #f0f0ec; }
    #header .desktop-nav-button:active, #header .desktop-nav-button--active:active {
      background-color: #f0f0ec; }
    #header .desktop-nav-button--active {
      background-color: #f0f0ec; }

@media only screen and (min-width: 992px) {
  #header .header__desktop-nav-buttons {
    gap: 60px; }
  #header .header__buttons .upgrade-btn {
    min-width: 150px; } }

#footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: sticky;
  padding-bottom: 20px;
  color: #888888;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 40px 20px;
  background-color: #ffffff; }
  #footer .footer {
    width: 100%; }
    #footer .footer__sections {
      display: flex;
      flex-direction: column;
      gap: 20px; }
    #footer .footer__section-title {
      font-weight: 700; }
    #footer .footer__group {
      padding-left: 0;
      margin-bottom: 0; }
      #footer .footer__group li:last-child {
        padding-bottom: 0; }
      #footer .footer__group li {
        padding: 0 0 16px 0;
        display: block; }
        #footer .footer__group li .link {
          color: #888888; }
          #footer .footer__group li .link:hover {
            color: #000000; }
          #footer .footer__group li .link:active {
            color: #000000; }
    #footer .footer__section--fy .footer__links {
      display: grid;
      grid-template-columns: 1fr 1fr; }
    #footer .footer__copyright {
      margin-top: 40px; }

@media only screen and (min-width: 768px) {
  #footer {
    padding-top: 40px;
    padding-right: 40px; }
    #footer .footer {
      max-width: 80%; }
      #footer .footer__sections {
        flex-direction: row;
        gap: 40px; }
      #footer .footer__section--fy {
        flex-grow: 1; }
        #footer .footer__section--fy .footer__links {
          display: unset; }
      #footer .footer__section--features {
        flex-grow: 3; }
        #footer .footer__section--features .footer__links {
          display: flex;
          justify-content: space-between; } }

#artist-help {
  text-align: center;
  padding: 12px;
  background-color: #fff8d2;
  color: #7d6200; }
  #artist-help > div:first-child {
    font-weight: 700;
    margin-bottom: 8px; }
  #artist-help a {
    color: #7d6200; }

.feed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  row-gap: 20px; }
  .feed__title {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; }
    @media only screen and (min-width: 768px) {
      .feed__title {
        font-size: 24px;
        line-height: 32px; } }
  .feed__artwork {
    width: 100%;
    max-height: 100%;
    object-fit: cover;
    border: 5px solid #ffffff; }
  .feed__loading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 50px; }
  .feed__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0 40px 0; }
    .feed__item:last-child {
      padding-bottom: 0px; }
  .feed__ctas {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px; }
  .feed__artwork-card {
    display: flex;
    width: 100%;
    cursor: pointer; }
  .feed__item-prompt {
    color: #4a4a4c;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center; }
  .feed__view-more-art {
    padding: 20px 0 60px 0;
    align-self: center; }
  .feed__grid {
    display: flex;
    flex-direction: column;
    width: 100%; }
  .feed__items {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 16px;
    padding: 20px 0; }
    .feed__items > [style^="--aspect-ratio"]::before {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0;
      padding-bottom: calc(100% / (var(--aspect-ratio))); }
  .feed__artwork-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    flex: 1; }
  .feed__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    width: 100%; }
  .feed__ctas {
    display: flex;
    flex-direction: row;
    padding: 8px;
    gap: 4px; }

.panel {
  width: 100%;
  padding: 0 20px 20px 20px; }

@media only screen and (min-width: 768px) {
  .panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    min-height: calc(100vh - 90px);
    background-color: #f0f0ec;
    width: 50vw; }
  .panel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 66%;
    height: 100%; } }

#about-fy p:first-child {
  margin-top: 0; }

#about-fy .content {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-align: center;
  padding-top: 20px; }
  @media only screen and (min-width: 768px) {
    #about-fy .content {
      font-size: 14px;
      line-height: 20px; } }
  #about-fy .content a:visited {
    color: #000000; }

#explainer p:first-child {
  margin-top: 20px; }

#explainer .content {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #explainer .content {
      font-size: 14px;
      line-height: 20px; } }
  #explainer .content a:visited {
    color: #000000; }

#help {
  padding-top: 20px; }
  #help ul {
    margin-top: 0;
    padding-left: 20px; }

.option-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1; }
  .option-selector > .button {
    width: 100%; }

.option-modal {
  --lifestyle-mock-width: 100vw;
  height: calc(var(--vertical-height) - 30px);
  overflow: scroll; }
  .option-modal .fallback-image {
    display: none; }
  .option-modal .options {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: space-between;
    position: sticky;
    position: -webkit-sticky; }
    .option-modal .options .title {
      font-weight: 700;
      font-size: 20px;
      padding: 16px 16px 2px 16px; }
    .option-modal .options .description {
      color: #4a4a4c;
      font-size: 12px;
      line-height: 18px;
      padding: 0 16px;
      margin-bottom: 16px; }
    .option-modal .options .option-row {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      height: 48px;
      padding: 0 16px; }
      .option-modal .options .option-row.selected {
        background-color: #f2f2f2; }
      .option-modal .options .option-row .label {
        font-size: 13px;
        font-weight: 700;
        color: #000000; }
        .option-modal .options .option-row .label .sticker {
          background-color: #ff0000;
          border-radius: 10px;
          font-weight: 700;
          font-size: 11px;
          padding: 2px 8px;
          color: #ffffff;
          margin-left: 8px; }
      .option-modal .options .option-row .price {
        display: inline-flex;
        justify-content: flex-end;
        align-items: center; }
        .option-modal .options .option-row .price .icon {
          margin-left: 4px; }
      .option-modal .options .option-row.unavailable .label {
        font-size: 13px;
        font-weight: 700;
        color: #888888; }
      .option-modal .options .option-row.unavailable .price {
        display: inline-flex;
        justify-content: flex-end;
        align-items: center; }
      .option-modal .options .option-row.unavailable .sticker {
        background-color: #f2f2f2;
        border-radius: 10px;
        font-weight: 400;
        font-size: 11px;
        padding: 2px 8px;
        color: #888888;
        margin-left: 8px; }
  .option-modal .footer {
    display: flex;
    flex-direction: column;
    padding: 16px;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.05), 0px -0.5px 0px rgba(0, 0, 0, 0.05);
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    background: #ffffff; }

.modal {
  padding: 0px 20px 20px 20px; }
  .modal .button {
    margin: 0;
    width: 100%; }

.gallery-modal {
  width: 90vw;
  --lifestyle-mock-width: 90vw; }
  .gallery-modal .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 16px; }
    .gallery-modal .footer .description {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      margin-bottom: 10px; }
      @media only screen and (min-width: 768px) {
        .gallery-modal .footer .description {
          font-size: 16px;
          line-height: 24px; } }
    .gallery-modal .footer .button {
      width: 100%; }

@media only screen and (max-width: 767px) {
  .ReactModal__Content {
    width: 90%; }
    .ReactModal__Content .modal {
      width: 100%; } }

@media only screen and (min-width: 768px) {
  .modal {
    width: 390px; }
  .gallery-modal {
    width: 612px;
    --lifestyle-mock-width: 612px; }
  .resize-modal {
    width: 440px; }
  .option-modal {
    width: 70vw;
    --lifestyle-mock-width: 35vw;
    height: var(--lifestyle-mock-width);
    position: relative; }
    .option-modal .image, .option-modal .fallback-image {
      position: fixed;
      width: var(--lifestyle-mock-width);
      left: 0;
      top: 0;
      background-color: #f2f2f2; }
    .option-modal .fallback-image {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: var(--lifestyle-mock-width);
      padding: 10%; }
    .option-modal .options {
      margin-left: var(--lifestyle-mock-width);
      padding-top: 10px;
      overflow: scroll; }
      .option-modal .options .footer {
        position: fixed;
        width: var(--lifestyle-mock-width);
        bottom: 0;
        right: 0; } }

#name-artwork-modal.modal {
  padding: 20px; }
  #name-artwork-modal.modal .copy {
    padding: 10px 0; }

.bottom-sheet #sign-in-prompt-modal.modal .title {
  text-align: center; }

.bottom-sheet #sign-in-prompt-modal.modal .subtitle {
  text-align: center; }

#sign-in-prompt-modal.modal {
  padding: 20px 0 0 0; }
  #sign-in-prompt-modal.modal #appleid-signin {
    margin-bottom: 8px;
    align-self: center;
    align-items: center;
    display: flex; }
  #sign-in-prompt-modal.modal #google-sign-in {
    margin-bottom: 8px; }
  #sign-in-prompt-modal.modal .title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700; }
    @media only screen and (min-width: 768px) {
      #sign-in-prompt-modal.modal .title {
        font-size: 32px;
        line-height: 40px; } }
  #sign-in-prompt-modal.modal .button {
    width: min(100%, 350px); }
  #sign-in-prompt-modal.modal .ul {
    padding: 20px 0; }
    #sign-in-prompt-modal.modal .ul .icon {
      padding-right: 8px; }
    #sign-in-prompt-modal.modal .ul .badge {
      padding-left: 8px; }
    #sign-in-prompt-modal.modal .ul .li {
      display: flex;
      flex-direction: row;
      align-items: center;
      line-height: 0;
      padding-bottom: 8px; }

.email-password-modal {
  padding: 20px; }
  .email-password-modal .fields {
    margin-top: 20px; }
  .email-password-modal .field label {
    margin: 0 !important; }
  .email-password-modal .field .text-field input[type="text"],
  .email-password-modal .field .text-field input[type="password"] {
    text-align: center; }
  .email-password-modal .auth-toggle {
    margin-top: 10px; }
  .email-password-modal .error, .email-password-modal .callout.nsfw,
  .email-password-modal .button.tertiary {
    margin-bottom: 10px; }
  .email-password-modal .ux-hint {
    margin: 8px 0 20px 0;
    user-select: none;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .email-password-modal .ux-hint {
        font-size: 16px;
        line-height: 24px; } }
.sign-up-pro-success-modal {
  padding: 0px 0px 20px 0px; }
  .sign-up-pro-success-modal .content {
    padding: 0 20px; }
    .sign-up-pro-success-modal .content > .button {
      width: 100%; }
  .sign-up-pro-success-modal .modal-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px; }
    .sign-up-pro-success-modal .modal-text .header {
      margin-top: 20px;
      font-weight: 700;
      font-size: 24px;
      text-align: center; }
  .sign-up-pro-success-modal .image-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 180px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #4A00C4 0%, #C66DE5 100%);
    border-radius: 8px;
    margin-bottom: 16px; }

.ReactModal__Overlay {
  -webkit-perspective: 600;
  perspective: 600;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6) !important;
  z-index: 4; }

.ReactModal__Overlay--after-open {
  opacity: 1;
  transition: opacity 150ms ease-out; }

.ReactModal__Content--after-open {
  transition: all 150ms ease-in;
  top: unset !important;
  right: unset !important;
  bottom: unset !important;
  left: unset !important; }

.ReactModal__Content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  top: 50% !important;
  left: 50% !important;
  border-radius: 10px !important;
  padding: 0 !important;
  border: none !important;
  overflow: hidden !important; }

.ReactModal__Overlay--before-close {
  opacity: 0; }

.ReactModal__Content--before-close {
  transition: all 150ms ease-in; }

.ReactModal__Body--open,
.ReactModal__Html--open {
  overflow: hidden; }

[data-rsbs-scroll] {
  overflow: hidden !important; }

[data-rsbs-backdrop] {
  z-index: 5 !important;
  pointer-events: none; }

[data-rsbs-header] {
  position: absolute;
  width: 100%; }

[data-rsbs-overlay] {
  z-index: 6 !important;
  border-radius: 20px 20px 0 0 !important;
  max-height: calc(var(--rsbs-overlay-h, 0px) - 20px) !important;
  overflow: hidden; }

.artwork-card {
  width: 100%; }
  .artwork-card__frame {
    display: inline-block;
    width: 100%;
    position: relative;
    overflow: hidden; }
  .artwork-card__inset {
    line-height: 0; }
  .artwork-card__mock {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0; }
  .artwork-card__mock-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    mix-blend-mode: multiply; }
  .artwork-card.portrait-art-print .artwork-card__frame, .artwork-card.landscape-art-print .artwork-card__frame, .artwork-card.square-art-print .artwork-card__frame {
    background-image: linear-gradient(to bottom, #000000 0%, #3d3d3d);
    padding: 2.5%;
    overflow: hidden;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.05)); }
  .artwork-card.portrait-art-print .artwork-card__inset, .artwork-card.landscape-art-print .artwork-card__inset, .artwork-card.square-art-print .artwork-card__inset {
    background-color: #ffffff;
    border-width: 1px;
    border-style: solid;
    border-color: #BBBAB4 #C7C7BF #E5E4DF #C7C7BF;
    padding: 2.5%; }
  .artwork-card.t-shirt .artwork-card__inset {
    padding: 25% 30%; }
  .artwork-card.portrait-canvas .artwork-card__inset {
    padding: 11% 19.2% 16% 19.2%; }
  .artwork-card.square-canvas .artwork-card__inset {
    padding: 11.5%; }
  .artwork-card.landscape-canvas .artwork-card__inset {
    padding: 5.5% 11.4%; }

.lifestyle-mock {
  position: relative;
  line-height: 0; }
  .lifestyle-mock::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0;
    padding-bottom: calc(100%); }
  .lifestyle-mock .placement {
    position: absolute; }
  .lifestyle-mock .overlay, .lifestyle-mock .mock {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover; }
  .lifestyle-mock .label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    position: absolute;
    bottom: 0;
    right: 0;
    color: #ffffff;
    text-align: center;
    background: #000000;
    padding: 5px 10px; }
    @media only screen and (min-width: 768px) {
      .lifestyle-mock .label {
        font-size: 14px;
        line-height: 20px; } }
  .lifestyle-mock.mock-28-x-40--white .placement {
    left: 54.4444%;
    top: 6.07407%;
    width: 30.1481%; }
    .lifestyle-mock.mock-28-x-40--white .placement .overlay {
      background: rgba(100, 65, 10, 0.1); }
  .lifestyle-mock.mock-24-x-32--black .placement {
    left: 42.5%;
    top: 27%;
    width: 46.1667%;
    transform: perspective(75em) rotateX(1deg); }
    .lifestyle-mock.mock-24-x-32--black .placement .overlay {
      background: rgba(100, 65, 65, 0.02); }
  .lifestyle-mock.mock-18-x-24--oak .placement {
    left: 53%;
    top: 20.9452%;
    width: 34.8013%;
    transform: perspective(calc(1.6 * var(--lifestyle-mock-width))) rotateX(7.5deg) rotateY(-22.5deg) rotateZ(4.5deg); }
    .lifestyle-mock.mock-18-x-24--oak .placement .overlay {
      background: rgba(0, 0, 0, 0.04); }
  .lifestyle-mock.mock-18-x-24--white .placement {
    left: 32%;
    top: 11.8333%;
    width: 39.3333%; }
    .lifestyle-mock.mock-18-x-24--white .placement .overlay {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.09)); }
  .lifestyle-mock.mock-12-x-16--oak .placement {
    left: 40.1%;
    top: 7.1%;
    width: 20.4%;
    transform: perspective(calc(2 * var(--lifestyle-mock-width))) rotateY(-4deg) rotateX(-2deg); }
    .lifestyle-mock.mock-12-x-16--oak .placement .overlay {
      background: rgba(180, 140, 75, 0.1); }
  .lifestyle-mock.mock-12-x-16--unframed .placement {
    left: 47.55%;
    top: 23.14%;
    width: 20.73%; }
    .lifestyle-mock.mock-12-x-16--unframed .placement .overlay {
      background: linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.09)); }
  .lifestyle-mock.mock-11-x-14--black .placement {
    left: 53.4%;
    top: 53.5%;
    width: 14.8%;
    transform: perspective(calc(2 * var(--lifestyle-mock-width))) rotateX(10deg); }
    .lifestyle-mock.mock-11-x-14--black .placement .overlay {
      background: rgba(180, 140, 75, 0.1); }
  .lifestyle-mock.mock-6-x-8--oak .placement {
    left: 29.5%;
    top: 31.1667%;
    width: 38.5%;
    transform: perspective(calc(3 * var(--lifestyle-mock-width))) rotateX(5deg) rotateY(-0.5deg); }
    .lifestyle-mock.mock-6-x-8--oak .placement .overlay {
      background: rgba(0, 0, 0, 0.12); }

.form .title, .form .subtitle {
  user-select: none; }

.form .title {
  font-weight: 700;
  font-size: 20px; }

.form .subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  line-height: 20px;
  color: #888888; }
  @media only screen and (min-width: 768px) {
    .form .subtitle {
      font-size: 16px;
      line-height: 24px; } }
.form .field {
  display: flex;
  flex-direction: column;
  gap: 4px; }
  .form .field .text-field, .form .field .text-area {
    margin-bottom: 8px; }
  .form .field .text-area {
    text-align: left; }
  .form .field .text-field > input {
    font-size: 16px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ffffff;
    outline: none;
    padding: 5px;
    height: 44px; }
    .form .field .text-field > input:focus {
      border: 1px solid rgba(0, 0, 0, 0.1); }
  .form .field label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-bottom: 4px; }
    @media only screen and (min-width: 768px) {
      .form .field label {
        font-size: 14px;
        line-height: 20px; } }
    .form .field label .hint {
      font-size: 12px;
      line-height: 16px;
      font-weight: 400;
      display: block;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        .form .field label .hint {
          font-size: 14px;
          line-height: 20px; } }
  .form .field .validation-error {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #ff0000;
    margin: 5px 0; }
    @media only screen and (min-width: 768px) {
      .form .field .validation-error {
        font-size: 14px;
        line-height: 20px; } }
  .form .field input, .form .field textarea {
    background-color: #f2f2ee;
    border-radius: 10px;
    border: none;
    width: 100%;
    text-align: center; }
  .form .field input::placeholder {
    text-align: center; }
  .form .field.inline {
    position: relative; }
    .form .field.inline label {
      position: absolute;
      top: 6px;
      left: 6px;
      z-index: 2;
      font-size: 12px;
      line-height: 16px;
      font-weight: 400;
      font-weight: 700;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        .form .field.inline label {
          font-size: 14px;
          line-height: 20px; } }
    .form .field.inline .text-field {
      margin: 0; }
    .form .field.inline .text-field > input {
      padding: 36px 6px 16px 6px;
      text-align: left; }
    .form .field.inline .text-area {
      padding-top: 18px; }
      .form .field.inline .text-area textarea, .form .field.inline .text-area .grow-wrap::after {
        text-align: left;
        padding: 12px 6px; }

.select-modal {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  height: 100%;
  min-width: 250px; }
  .select-modal__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px; }
  .select-modal__label {
    font-size: 15px;
    font-weight: 700;
    color: #000000; }

.style-card {
  position: relative;
  display: block;
  border-radius: 10px;
  cursor: pointer;
  border: solid 0px #000000; }
  .style-card .image,
  .style-card .loader,
  .style-card .overlay {
    border-radius: 10px; }
  .style-card .overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.7));
    padding: 5px 8px;
    height: inherit;
    z-index: inherit; }
    .style-card .overlay .name {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      font-weight: 700;
      font-size: 15px;
      text-align: center;
      color: #ffffff;
      display: inline-flex;
      text-shadow: 0 0 4px black;
      word-break: break-word; }
      @media only screen and (min-width: 768px) {
        .style-card .overlay .name {
          font-size: 16px;
          line-height: 24px; } }
    .style-card .overlay .check {
      position: absolute;
      top: 8px;
      right: 8px; }
    .style-card .overlay .sticker {
      position: absolute;
      top: 5px;
      right: 5px;
      background-color: #ff0000;
      border-radius: 10px;
      font-weight: 700;
      font-size: 10px;
      padding: 0 7px 0 6px;
      margin-left: 5px;
      color: #ffffff; }
      .style-card .overlay .sticker > svg {
        width: 8px;
        height: 8px;
        margin-right: 3px; }
  .style-card.selected {
    margin: 2px; }
    .style-card.selected::before {
      content: "";
      position: absolute;
      top: -2px;
      right: -2px;
      bottom: -2px;
      left: -2px;
      border: solid 4px #000000;
      border-radius: 10px; }
    .style-card.selected .overlay {
      border: solid 2px #ffffff;
      border-radius: 10px;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)); }
  .style-card.mini .overlay {
    padding: 3px 5px; }
  .style-card.mini .name {
    line-height: 18px;
    font-size: 12px; }
  .style-card.mini .check {
    top: 6px;
    right: 6px; }

#styles-modal {
  position: relative;
  height: calc(var(--vertical-height) - 20px);
  overflow-y: scroll; }
  #styles-modal .header {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 10px 20px;
    gap: 8px; }
    #styles-modal .header .title {
      font-weight: 700;
      font-size: 20px;
      line-height: 40px; }
    #styles-modal .header .description {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888;
      padding-bottom: 12px; }
      @media only screen and (min-width: 768px) {
        #styles-modal .header .description {
          font-size: 16px;
          line-height: 24px; } }
    #styles-modal .header .see-more {
      font-size: 12px;
      line-height: 16px;
      font-weight: 400;
      display: flex;
      flex-direction: row;
      align-items: center;
      cursor: pointer; }
      @media only screen and (min-width: 768px) {
        #styles-modal .header .see-more {
          font-size: 14px;
          line-height: 20px; } }
      #styles-modal .header .see-more > svg {
        width: 24px;
        height: 24px; }
  #styles-modal .style-results {
    padding: 0 20px; }
  #styles-modal .search-box {
    display: flex;
    flex-direction: row;
    align-items: center; }
    #styles-modal .search-box .close-button {
      padding: 10px 6px 10px 10px; }
  #styles-modal .search-results {
    flex: 1; }
    #styles-modal .search-results .empty-results {
      width: 100%;
      padding: 20px;
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      text-align: center;
      color: #888888;
      border: 1px dashed #f0f0ec; }
      @media only screen and (min-width: 768px) {
        #styles-modal .search-results .empty-results {
          font-size: 16px;
          line-height: 24px; } }
  #styles-modal .selected-styles {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 3;
    padding-top: 6px; }
  #styles-modal .styles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 8px;
    padding: 0 4px;
    margin-bottom: 16px; }
    #styles-modal .styles-grid.mini {
      grid-template-columns: 1fr 1fr 1fr 1fr; }
  #styles-modal .footer {
    position: sticky;
    position: -webkit-sticky;
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.05), 0px -0.5px 0px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 16px 20px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff; }
  #styles-modal .subtitle {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-weight: 700;
    padding: 8px 4px; }
    @media only screen and (min-width: 768px) {
      #styles-modal .subtitle {
        font-size: 14px;
        line-height: 20px; } }
.signin-button {
  width: 350px;
  height: 40px; }

.apple-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px; }

.proposition, .proposition--wide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
  padding: 16px;
  border-radius: 10px;
  background-color: #f0f0ec;
  max-width: 100%;
  white-space: nowrap; }
  .proposition .icon, .proposition--wide .icon {
    line-height: 0; }
    .proposition .icon svg, .proposition--wide .icon svg {
      mix-blend-mode: multiply; }
  .proposition img, .proposition--wide img {
    width: 100px; }
  .proposition__body {
    width: 100%; }
  .proposition__copy {
    text-align: center;
    margin-top: 4px;
    user-select: none; }
    .proposition__copy p {
      margin: 4px 0;
      word-wrap: break-word;
      white-space: normal; }
    .proposition__copy p:first-child {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      font-weight: 700;
      margin-top: 0; }
      @media only screen and (min-width: 768px) {
        .proposition__copy p:first-child {
          font-size: 16px;
          line-height: 24px; } }
  .proposition .button, .proposition--wide .button {
    width: 100%;
    margin: 8px 0 0 0; }
  .proposition--wide {
    justify-content: space-between;
    flex-direction: row; }
    .proposition--wide .icon {
      margin-right: 20px; }
    .proposition--wide .proposition__body {
      display: flex;
      flex-direction: row;
      align-items: center; }
    .proposition--wide .proposition__copy {
      margin-top: 0;
      text-align: left; }
    .proposition--wide .proposition__cta-button > .button {
      margin-top: 0; }

#plus-proposition {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  width: 100%; }
  #plus-proposition .proposition, #plus-proposition .proposition--wide {
    margin: 0;
    background: linear-gradient(45deg, rgba(74, 0, 195, 0.1) 0%, rgba(198, 109, 229, 0.1) 100%); }
    #plus-proposition .proposition__icon-or-img-background {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 25px;
      background: linear-gradient(45deg, #4a00c4 0%, #c66de5 100%); }
    #plus-proposition .proposition__copy {
      margin-top: 8px;
      margin-bottom: 16px; }
    #plus-proposition .proposition .icon, #plus-proposition .proposition--wide .icon {
      line-height: 0; }
      #plus-proposition .proposition .icon svg, #plus-proposition .proposition--wide .icon svg {
        color: #ffffff;
        mix-blend-mode: unset; }
    #plus-proposition .proposition .button, #plus-proposition .proposition--wide .button {
      background: linear-gradient(45deg, #4a00c4 0%, #c66de5 100%); }

#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 4; }
  #nav .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); }
  #nav .nav {
    z-index: 5;
    position: relative;
    background-color: white; }
    #nav .nav__category {
      padding-top: 16px; }
    #nav .nav__category-name {
      font-size: 12px;
      line-height: 16px;
      font-weight: 400;
      font-weight: 700;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        #nav .nav__category-name {
          font-size: 14px;
          line-height: 20px; } }
    #nav .nav__links {
      display: flex;
      flex-direction: column;
      padding-bottom: 16px; }
    #nav .nav__link {
      margin: 0;
      font-weight: 400;
      font-size: 24px;
      line-height: 32px;
      user-select: none;
      text-decoration: none;
      padding-top: 16px;
      color: #000000; }
      @media only screen and (min-width: 768px) {
        #nav .nav__link {
          font-size: 32px;
          line-height: 40px; } }
      #nav .nav__link:hover {
        cursor: pointer; }
      #nav .nav__link:active {
        cursor: pointer; }
  #nav .seo-nav {
    visibility: hidden; }
  #nav .mobile-nav, #nav .mobile-nav--active {
    height: auto;
    padding: 20px; }
    #nav .mobile-nav div:first-child, #nav .mobile-nav--active div:first-child {
      padding-top: 0; }
    #nav .mobile-nav--active {
      animation-name: easeOut;
      animation: easeOut 0.5s;
      animation-fill-mode: forwards;
      animation-timing-function: ease-out; }

@keyframes easeOut {
  from {
    top: -100%; }
  to {
    top: 90px; } }
  #nav .desktop-nav, #nav .desktop-nav--active {
    position: absolute;
    padding-top: 90px;
    top: 0;
    left: 0;
    right: 0;
    padding: 40px 60px; }
    #nav .desktop-nav div:first-child, #nav .desktop-nav--active div:first-child {
      padding-top: 0; }
    #nav .desktop-nav .nav__link, #nav .desktop-nav--active .nav__link {
      color: #888888;
      padding-top: 8px; }
      #nav .desktop-nav .nav__link:hover, #nav .desktop-nav--active .nav__link:hover {
        color: #000000; }
      #nav .desktop-nav .nav__link:active, #nav .desktop-nav--active .nav__link:active {
        color: #000000; }
    #nav .desktop-nav--active {
      animation-name: easeOut;
      animation: easeOut 0.5s;
      animation-fill-mode: forwards;
      animation-timing-function: ease-out; }

@keyframes easeOut {
  from {
    top: -100%; }
  to {
    top: 90px; } }

.section {
  text-align: center;
  padding: 40px 20px;
  width: 100%; }
  .section__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .section__title {
        font-size: 32px;
        line-height: 40px; } }
  .section__subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding-bottom: 40px;
    color: #888888;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .section__subtitle {
        font-size: 16px;
        line-height: 24px; } }
  .section__content div:last-child {
    margin-bottom: 0; }

.screen {
  display: flex;
  flex-direction: column;
  min-height: calc(85vh - 90px);
  width: 100%;
  padding: 20px; }
  .screen--wide-panel > div {
    width: 100%; }
  .screen--single-panel {
    height: max-content; }
    .screen--single-panel > div {
      width: 100%; }

@media only screen and (min-width: 768px) {
  .screen {
    margin-top: 90px;
    flex-direction: row;
    justify-content: center;
    padding: 0;
    --wide-panel-max-width: 1440px; }
    .screen--single-panel, .screen--wide-panel {
      padding: 40px 0; }
    .screen--single-panel > div {
      max-width: 500px; }
    .screen--wide-panel > div {
      max-width: var(--wide-panel-max-width);
      padding: 0 20px; }
    .screen--double-panel > div {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 16px;
      gap: 0px;
      width: 100%;
      max-width: var(--wide-panel-max-width); }
      .screen--double-panel > div > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }
      .screen--double-panel > div > :first-child {
        background-color: rgba(0, 0, 0, 0.05); } }

.related-products {
  margin: 20px 0px;
  width: 100%; }

#ai-art-generator .product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  position: relative;
  text-decoration: none;
  color: #000000;
  cursor: pointer; }
  #ai-art-generator .product-card__sticker, #ai-art-generator .product-card__sticker--price, #ai-art-generator .product-card__sticker--title {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-weight: 700;
    position: absolute;
    z-index: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 4px 8px;
    max-width: calc(100% - 16px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    user-select: none; }
    @media only screen and (min-width: 768px) {
      #ai-art-generator .product-card__sticker, #ai-art-generator .product-card__sticker--price, #ai-art-generator .product-card__sticker--title {
        font-size: 14px;
        line-height: 20px; } }
    #ai-art-generator .product-card__sticker--title {
      top: 8px;
      left: 8px; }
    #ai-art-generator .product-card__sticker--price {
      bottom: 8px;
      right: 8px; }
  #ai-art-generator .product-card__artwork {
    width: 100%;
    position: absolute; }

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px; }
  .product-grid > [style^="--aspect-ratio"]::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio))); }
  .product-grid__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 16px; }
  .product-grid__title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-weight: 700;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      .product-grid__title {
        font-size: 16px;
        line-height: 24px; } }
  .product-grid__view-more {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-weight: 700;
    cursor: pointer; }
    @media only screen and (min-width: 768px) {
      .product-grid__view-more {
        font-size: 16px;
        line-height: 24px; } }
.proposition-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  user-select: none; }
  .proposition-card:hover {
    border-color: rgba(0, 0, 0, 0.25); }
  .proposition-card:active {
    border-color: rgba(0, 0, 0, 0.25); }
  .proposition-card__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 16px; }
    .proposition-card__header--active {
      background: linear-gradient(45deg, #4a00c4 0%, #c66de5 100%);
      color: #ffffff; }
      .proposition-card__header--active .proposition-card__features {
        color: #ffffff; }
  .proposition-card__name {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; }
    @media only screen and (min-width: 768px) {
      .proposition-card__name {
        font-size: 24px;
        line-height: 32px; } }
  .proposition-card__price {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; }
    @media only screen and (min-width: 768px) {
      .proposition-card__price {
        font-size: 24px;
        line-height: 32px; } }
  .proposition-card__price-strike-through {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-decoration: line-through; }
    @media only screen and (min-width: 768px) {
      .proposition-card__price-strike-through {
        font-size: 24px;
        line-height: 32px; } }
    .proposition-card__price-strike-through::after {
      content: " "; }
  .proposition-card__price-period {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      .proposition-card__price-period {
        font-size: 14px;
        line-height: 20px; } }
    .proposition-card__price-period::before {
      content: " "; }
  .proposition-card__features {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    gap: 2px;
    margin: 16px;
    padding-left: 16px; }
    @media only screen and (min-width: 768px) {
      .proposition-card__features {
        font-size: 16px;
        line-height: 24px; } }
  .proposition-card--selectable {
    cursor: pointer; }

#results.screen {
  padding-top: 0; }

#results .results.panel {
  padding: 0; }
  #results .results.panel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center; }

#results .results__create-more-button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 20px; }

#results .results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 20px;
  width: calc(100% - 20px);
  margin-top: 40px; }
  #results .results__grid.one-column {
    grid-template-columns: 1fr; }

#results .results__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%; }
  #results .results__result > a {
    width: 100%; }
  #results .results__result .buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px; }
    #results .results__result .buttons button:last-child {
      width: 32px;
      height: 32px; }

#results .param-pills {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px; }
  #results .param-pills .param-pill {
    display: inline-flex;
    flex-direction: row;
    background-color: #888888;
    font-size: 12px;
    border-radius: 4px;
    gap: 4px;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1); }
    #results .param-pills .param-pill .key,
    #results .param-pills .param-pill .value {
      padding: 2px; }
    #results .param-pills .param-pill .value {
      background-color: #f0f0ec; }

#images-results {
  padding: 0; }
  #images-results > div {
    padding: 0; }
  #images-results #prompt {
    margin-top: 20px; }
    #images-results #prompt > div {
      max-width: 500px; }
  #images-results .images-results {
    display: flex;
    flex-direction: column;
    align-items: center; }
    #images-results .images-results #prompt {
      padding-left: 20px;
      padding-right: 20px; }
    #images-results .images-results__images, #images-results .images-results__ghost-images {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 16px;
      gap: 20px;
      width: 100%;
      margin: 20px 0 80px 0;
      padding: 0 20px; }
      #images-results .images-results__images > [style^="--aspect-ratio"]::before, #images-results .images-results__ghost-images > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }
    #images-results .images-results__ghost-image {
      background-color: #f0f0ec;
      border-radius: 4px; }
      #images-results .images-results__ghost-image-wrapper {
        width: 100%; }
      #images-results .images-results__ghost-image-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding-top: 8px;
        gap: 4px; }
        #images-results .images-results__ghost-image-buttons > div {
          user-select: none;
          color: #f0f0ec;
          background-color: #f0f0ec; }
    #images-results .images-results__result {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%; }
      #images-results .images-results__result a {
        scroll-margin-top: 276px; }
      #images-results .images-results__result-image {
        width: 100%; }
      #images-results .images-results__result-buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px; }
        #images-results .images-results__result-buttons .button {
          margin: 8px 0; }
    #images-results .images-results__history {
      width: 100%;
      padding: 0 20px;
      background-color: rgba(0, 0, 0, 0.05); }
      #images-results .images-results__history-title {
        padding-bottom: 20px; }
    #images-results .images-results__images-feed {
      width: 100%;
      padding: 20px; }
    #images-results .images-results__feed {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 16px;
      gap: 8px; }
      #images-results .images-results__feed > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }
    #images-results .images-results__generation-wrapper {
      padding-bottom: 20px; }
    #images-results .images-results__generation-prompt {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400; }
      @media only screen and (min-width: 768px) {
        #images-results .images-results__generation-prompt {
          font-size: 16px;
          line-height: 24px; } }
    #images-results .images-results__created-at {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        #images-results .images-results__created-at {
          font-size: 16px;
          line-height: 24px; } }
    #images-results .images-results__generation-images {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 16px;
      gap: 8px;
      padding: 8px 0; }
      #images-results .images-results__generation-images > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }
    #images-results .images-results__result-image img,
    #images-results .images-results__result-image .loader {
      border-radius: 4px; }

@media only screen and (min-width: 768px) {
  #images-results .images-results__generation-images, #images-results .images-results__feed, #images-results .images-results__images, #images-results .images-results__ghost-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px; }
    #images-results .images-results__generation-images > [style^="--aspect-ratio"]::before, #images-results .images-results__feed > [style^="--aspect-ratio"]::before, #images-results .images-results__images > [style^="--aspect-ratio"]::before, #images-results .images-results__ghost-images > [style^="--aspect-ratio"]::before {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0;
      padding-bottom: calc(100% / (var(--aspect-ratio))); } }

.product.panel {
  padding: 0; }

#product-content {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #product-content .control-buttons,
  #product-content .option-pickers {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    gap: 10px; }
  #product-content .artwork {
    width: 100%;
    padding: 20px 0; }
  #product-content .artwork-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    padding-top: 20px;
    text-transform: uppercase;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #product-content .artwork-name {
        font-size: 16px;
        line-height: 24px; } }
  #product-content .panels {
    width: 100%;
    margin: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
    #product-content .panels p {
      margin-top: 0em; }
    #product-content .panels .bullet {
      position: relative;
      padding-left: 10px;
      margin-bottom: 10px; }
      #product-content .panels .bullet::before {
        content: "";
        position: absolute;
        top: 8px;
        left: 0px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-color: #000000; }
  #product-content .gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
    padding-bottom: 20px;
    --lifestyle-mock-width: calc((100vw - 60px) / 3); }
    #product-content .gallery-thumbs .thumbnail {
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer; }
      #product-content .gallery-thumbs .thumbnail .mock {
        border-radius: 10px; }
  #product-content .about-fy-copy a:visited {
    color: #000000; }
  #product-content .buttons-wrapper {
    position: sticky;
    bottom: 0px;
    padding: 20px 0 20px 0;
    width: 100%;
    z-index: 3; }
    @media only screen and (max-width: 768px) {
      #product-content .buttons-wrapper {
        background-color: #ffffff; } }
    @media only screen and (min-width: 768px) {
      #product-content .buttons-wrapper {
        background-color: #f0f0ec; } }
  #product-content .buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 8px; }
    #product-content .buttons .buy-button {
      width: 100%; }
    #product-content .buttons .like-button {
      height: 44px;
      width: 44px;
      aspect-ratio: 1 / 1; }

#settings-modal {
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 20px;
  max-height: calc(100vh - 20px);
  padding: 0 10px;
  overflow-y: scroll; }
  #settings-modal .title {
    padding-top: 10px; }
  #settings-modal .style {
    display: flex;
    flex-direction: row;
    gap: 10px; }
    #settings-modal .style .fields {
      display: flex;
      flex-direction: column;
      gap: 20px; }
    #settings-modal .style .preview {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 90px; }
      #settings-modal .style .preview > span {
        font-size: 12px;
        line-height: 16px;
        font-weight: 400;
        text-align: center;
        margin-bottom: 12px;
        color: #4a4a4c; }
        @media only screen and (min-width: 768px) {
          #settings-modal .style .preview > span {
            font-size: 14px;
            line-height: 20px; } }
  #settings-modal .submit {
    display: flex;
    flex-direction: column;
    position: sticky;
    bottom: 0;
    padding: 10px;
    background-color: #ffffff; }

#confirm-plus-download-modal {
  padding: 0px 0px 20px 0px; }
  #confirm-plus-download-modal .content {
    padding: 0 20px; }
    #confirm-plus-download-modal .content .copy {
      text-align: center;
      margin-top: 20px;
      margin-bottom: 20px;
      margin-left: 10px;
      margin-right: 10px; }

#download-artwork-modal {
  padding: 0px 0px 20px 0px; }
  #download-artwork-modal .content {
    padding: 0 20px; }
    #download-artwork-modal .content .button {
      width: 100%;
      height: 44px;
      font-size: 14px;
      margin: 4px; }
    #download-artwork-modal .content .primary {
      background: linear-gradient(45deg, #4A00C4 0%, #C66DE5 100%); }
    #download-artwork-modal .content .body .ul {
      margin-top: 20px; }
      #download-artwork-modal .content .body .ul .icon {
        padding-right: 8px; }
      #download-artwork-modal .content .body .ul .badge {
        padding-left: 8px; }
      #download-artwork-modal .content .body .ul .li {
        display: flex;
        flex-direction: row;
        align-items: center;
        line-height: 0;
        padding-bottom: 8px; }
  #download-artwork-modal .modal-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px; }
    #download-artwork-modal .modal-text .header-block {
      display: flex;
      flex-direction: column;
      padding: 0px 20px;
      gap: 8px;
      text-align: center;
      justify-content: center; }
      #download-artwork-modal .modal-text .header-block .header {
        margin: 0;
        font-weight: 400;
        font-size: 24px;
        line-height: 32px; }
        @media only screen and (min-width: 768px) {
          #download-artwork-modal .modal-text .header-block .header {
            font-size: 32px;
            line-height: 40px; } }
      #download-artwork-modal .modal-text .header-block .sub-header {
        color: grey; }
    #download-artwork-modal .modal-text .body {
      margin-bottom: 20px; }
  #download-artwork-modal .price-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: #000000;
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    padding: 8px; }
    #download-artwork-modal .price-container .price {
      color: #ffffff;
      margin: 4px;
      font-weight: 400; }

.download-artwork-button {
  padding-right: 16px !important;
  padding-left: 10px !important;
  gap: 8px; }
  .download-artwork-button .download-4k-icon-container .download-4k-icon-circle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    height: 24px;
    width: 24px;
    background: linear-gradient(45deg, #0038fd 0%, #e345fc 100%);
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 7s ease infinite; }
    .download-artwork-button .download-4k-icon-container .download-4k-icon-circle .download-4k-icon-text {
      color: #ffffff;
      font-size: 10px; }

@media only screen and (min-width: 768px) {
  #product-content {
    margin-top: 40px; } }

#product-image .product-image__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; }
  #product-image .product-image__image img {
    border-radius: 4px; }

#product-image .product-image__plus-proposition-wrapper {
  margin-top: 20px; }

#product-image .product-image__image-details {
  padding: 24px 0; }

#product-image .product-image__prompt {
  margin-bottom: 0; }

#product-image .product-image__detail {
  padding: 8px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1); }
  #product-image .product-image__detail:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  #product-image .product-image__detail-label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      #product-image .product-image__detail-label {
        font-size: 14px;
        line-height: 20px; } }
  #product-image .product-image__detail-value {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      #product-image .product-image__detail-value {
        font-size: 16px;
        line-height: 24px; } }
#product-image .product-image__buttons {
  display: flex;
  flex-direction: row;
  gap: 8px; }
  #product-image .product-image__buttons > * {
    height: 44px; }
  #product-image .product-image__buttons .share-btn {
    margin: 4px 8px;
    min-width: 57px;
    height: 44px;
    padding: 14px 16px;
    border-radius: 22px; }
  #product-image .product-image__buttons .like-button {
    height: 44px;
    width: 44px; }

@media only screen and (min-width: 768px) {
  #product-image .product-image__image-details-wrapper {
    padding: 70px; }
  #product-image .product-image__plus-proposition-wrapper {
    margin-top: 0; } }

#portrait-product {
  height: max-content;
  padding: 20px; }
  #portrait-product #product-content {
    width: 100%; }
    #portrait-product #product-content.panel-wrapper {
      margin-top: 0; }
  #portrait-product .buttons-wrapper {
    background-color: #ffffff; }

#order-details .order-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; }
  #order-details .order-details .info, #order-details .order-details .text-area .text-input-wrapper .info--disabled, .text-area .text-input-wrapper #order-details .order-details .info--disabled {
    color: #4a4a4c; }
    #order-details .order-details .info.success, #order-details .order-details .text-area .text-input-wrapper .success.info--disabled, .text-area .text-input-wrapper #order-details .order-details .success.info--disabled {
      color: unset;
      white-space: nowrap;
      font-size: 17px;
      margin-bottom: 0; }
    #order-details .order-details .info.order-number, #order-details .order-details .text-area .text-input-wrapper .order-number.info--disabled, .text-area .text-input-wrapper #order-details .order-details .order-number.info--disabled {
      font-size: 14px;
      margin-top: 4px; }
    #order-details .order-details .info.notification, #order-details .order-details .text-area .text-input-wrapper .notification.info--disabled, .text-area .text-input-wrapper #order-details .order-details .notification.info--disabled {
      overflow-wrap: break-word;
      line-height: 18px;
      font-size: 14px;
      margin-bottom: 40px; }

#order-details .artwork-card {
  width: 50%; }

#order-details .image-loader {
  display: flex;
  flex-direction: column;
  align-items: center; }

#order-details .artwork > img {
  height: 400px;
  margin: 20px auto;
  padding: 5px;
  border: 10px solid #000000; }

#order-details .buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px; }
  #order-details .buttons .button {
    margin: 0; }
  #order-details .buttons .primary {
    margin-bottom: 4px; }
  #order-details .buttons .secondary {
    height: 44px;
    padding: 10px 12px;
    font-size: 14px; }

#experimental-flags {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
  width: 100%;
  height: 100%;
  min-width: 250px; }
  #experimental-flags .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 50px; }
    #experimental-flags .row .label {
      font-size: 15px;
      font-weight: 700;
      color: #000000; }

.experiment-flags-btn {
  position: fixed;
  bottom: 10px;
  right: 10px; }

#reset-password {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  padding: 0 20px; }
  #reset-password #create-new-password, #reset-password #password-successfully-changed {
    width: 100%;
    margin-bottom: auto; }
  #reset-password .button {
    width: 100%; }
  #reset-password .title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    margin-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      #reset-password .title {
        font-size: 32px;
        line-height: 40px; } }
#landing-page {
  display: flex;
  flex-direction: column;
  background-color: #ffffff; }
  #landing-page .landing-page__header {
    display: flex;
    justify-content: center;
    padding-top: 20px; }
  #landing-page .landing-page__hero-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    width: 100%; }
  #landing-page .landing-page__hero, #landing-page .landing-page__notice-box {
    background-color: #ffffff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    height: min-content;
    margin: 20px; }
    #landing-page .landing-page__hero .gradient, #landing-page .landing-page__notice-box .gradient {
      height: fit-content; }
  #landing-page .landing-page__notice-box {
    max-width: 600px; }
  #landing-page .landing-page__hero-text {
    text-align: center;
    padding: 16px 0;
    margin: 0; }
  #landing-page .landing-page__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 8px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      #landing-page .landing-page__title {
        font-size: 32px;
        line-height: 40px; } }
  #landing-page .landing-page__subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      #landing-page .landing-page__subtitle {
        font-size: 16px;
        line-height: 24px; } }
  #landing-page .landing-page__cta {
    display: flex;
    justify-content: center;
    text-decoration: none;
    width: 100%; }
  #landing-page #prompt {
    background: none; }
    #landing-page #prompt .prompt__camera-btn {
      display: none; }
    #landing-page #prompt .gradient {
      background: none; }

.landing-page__footer {
  padding-top: 28px;
  background: #f0f0ec; }

#portrait-landing .portrait-landing {
  padding: 20px 0;
  background: linear-gradient(90deg, #eaeaea 38.96%, #dcdcda 100%);
  background-color: #ebebeb;
  overflow: hidden; }
  #portrait-landing .portrait-landing__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; }
  #portrait-landing .portrait-landing__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 6px; }
    #portrait-landing .portrait-landing__header > img {
      cursor: pointer; }
  #portrait-landing .portrait-landing__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin-top: 0px;
    margin-bottom: 18px; }
    @media only screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__title {
        font-size: 32px;
        line-height: 40px; } }
  #portrait-landing .portrait-landing__subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0 0 18px 0;
    padding: 0 20px; }
    @media only screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__subtitle {
        font-size: 16px;
        line-height: 24px; } }
  #portrait-landing .portrait-landing__pictures {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin: 20px 0; }
    #portrait-landing .portrait-landing__pictures img {
      width: 93px;
      height: 123px; }
  #portrait-landing .portrait-landing__pictures-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 0;
    gap: 40px;
    overflow: hidden; }
    @media screen and (max-width: 768px) {
      #portrait-landing .portrait-landing__pictures-row {
        display: none; } }
    #portrait-landing .portrait-landing__pictures-row--lhs, #portrait-landing .portrait-landing__pictures-row--rhs {
      display: flex;
      flex-direction: row;
      gap: 40px; }
    #portrait-landing .portrait-landing__pictures-row .frame {
      background-image: linear-gradient(to bottom, #000000 0%, #3d3d3d);
      padding: 4px;
      box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2), 0 5px 2px rgba(0, 0, 0, 0.05), 0 10px 20px rgba(0, 0, 0, 0.3); }
      #portrait-landing .portrait-landing__pictures-row .frame .inset {
        display: flex;
        line-height: 0;
        background-color: #ffffff;
        border-width: 1px;
        border-style: solid;
        border-color: #bbbab4 #c7c7bf #e5e4df #c7c7bf;
        padding: 10px; }
        #portrait-landing .portrait-landing__pictures-row .frame .inset img {
          width: 149px;
          height: 200px; }
  #portrait-landing .portrait-landing__pictures-column {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    @media screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__pictures-column {
        display: none; } }
  #portrait-landing .portrait-landing__pictures-column--odd {
    display: flex;
    flex-direction: column;
    margin-top: 20px; }
    @media screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__pictures-column--odd {
        display: none; } }
  #portrait-landing .portrait-landing__create-button {
    width: 350px; }
    #portrait-landing .portrait-landing__create-button .button {
      margin: 0px;
      width: 100%; }
  #portrait-landing .portrait-landing__how-it-works {
    padding: 20px; }
  #portrait-landing .portrait-landing__how-it-works-title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__how-it-works-title {
        font-size: 32px;
        line-height: 40px; } }
  #portrait-landing .portrait-landing__steps {
    list-style-type: none;
    counter-reset: item;
    padding: 0; }
  #portrait-landing .portrait-landing__step {
    display: flex;
    counter-increment: item;
    margin-bottom: 20px; }
  #portrait-landing .portrait-landing__step::before {
    content: counter(item);
    margin-right: 8px;
    background-color: #f0f0ec;
    border-radius: 20px;
    height: 32px;
    width: 32px;
    text-align: center;
    padding-top: 7px;
    display: inline-block; }
  #portrait-landing .portrait-landing__instruction {
    width: 90%;
    padding-top: 4px; }
  #portrait-landing .portrait-landing__step-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-weight: 700;
    margin: 0 0 6px 0; }
    @media only screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__step-title {
        font-size: 16px;
        line-height: 24px; } }
  #portrait-landing .portrait-landing__step-subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      #portrait-landing .portrait-landing__step-subtitle {
        font-size: 16px;
        line-height: 24px; } }
#pre-checkout {
  padding: 20px 0; }
  #pre-checkout .pre-checkout__secure-checkout {
    padding: 0 20px 20px 20px; }
  #pre-checkout .pre-checkout__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px; }
    @media only screen and (min-width: 768px) {
      #pre-checkout .pre-checkout__title {
        font-size: 32px;
        line-height: 40px; } }
  #pre-checkout .pre-checkout__options {
    background-color: #ffffff; }
  #pre-checkout .pre-checkout__option {
    padding: 12px;
    background-color: #f0f0ec;
    border-radius: 10px; }
  #pre-checkout .pre-checkout__option-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between; }
  #pre-checkout .pre-checkout__option-title {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700; }
    @media only screen and (min-width: 768px) {
      #pre-checkout .pre-checkout__option-title {
        font-size: 24px;
        line-height: 32px; } }
  #pre-checkout .pre-checkout__option-selection {
    display: flex;
    align-items: center;
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px; }
    @media only screen and (min-width: 768px) {
      #pre-checkout .pre-checkout__option-selection {
        font-size: 24px;
        line-height: 32px; } }
  #pre-checkout .pre-checkout__option-price {
    padding-right: 8px; }
  #pre-checkout .pre-checkout__option-artworks {
    display: flex;
    justify-content: space-around;
    margin: 16px 0; }
  #pre-checkout .pre-checkout__checkout-button {
    width: 100%;
    margin-top: 8px; }
    #pre-checkout .pre-checkout__checkout-button .button {
      width: 100%; }
  #pre-checkout .pre-checkout__faqs {
    padding: 40px 20px;
    background-color: #f0f0ec; }
  #pre-checkout .pre-checkout__faqs-title {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    padding-bottom: 20px; }
    @media only screen and (min-width: 768px) {
      #pre-checkout .pre-checkout__faqs-title {
        font-size: 24px;
        line-height: 32px; } }
  #pre-checkout .pre-checkout__artwork {
    width: 55px;
    height: 70px;
    border: 2px solid black; }
    #pre-checkout .pre-checkout__artwork img {
      width: 51px;
      height: 66px; }

#pro-publish {
  padding: 0; }
  #pro-publish .pro-publish__form {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #pro-publish .pro-publish__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px; }
  #pro-publish .pro-publish__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #pro-publish .pro-publish__title {
        font-size: 32px;
        line-height: 40px; } }
  #pro-publish .pro-publish__description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #pro-publish .pro-publish__description {
        font-size: 16px;
        line-height: 24px; } }
  #pro-publish .pro-publish__buttons {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    width: 100%;
    z-index: 3;
    background-color: #ffffff;
    padding: 4px 20px; }
    #pro-publish .pro-publish__buttons .button {
      flex: 1;
      justify-content: flex-start;
      padding-left: 12px; }
  #pro-publish .pro-publish .error a, #pro-publish .pro-publish .callout.nsfw a {
    color: #ff0000; }
  #pro-publish .pro-publish__callouts {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px; }
    #pro-publish .pro-publish__callouts .callout {
      margin: 4px 0 8px 0; }
  #pro-publish .pro-publish__table {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    padding: 0 20px; }
  #pro-publish .pro-publish__row {
    display: flex;
    flex-direction: row;
    gap: 4px; }
  #pro-publish .pro-publish__artwork-thumbnail {
    flex: 2; }
  #pro-publish .pro-publish__artwork-name {
    flex: 8; }
    #pro-publish .pro-publish__artwork-name .text-input, #pro-publish .pro-publish__artwork-name .grow-wrap::after {
      text-align: left;
      padding: 10px 12px; }
  #pro-publish .pro-publish__submit-button {
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 3;
    padding: 8px 20px; }

.pro-publish-alert {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 12px; }
  .pro-publish-alert__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px; }
  .pro-publish-alert__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .pro-publish-alert__title {
        font-size: 32px;
        line-height: 40px; } }
  .pro-publish-alert__description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .pro-publish-alert__description {
        font-size: 16px;
        line-height: 24px; } }
  .pro-publish-alert__buttons {
    display: flex;
    flex-direction: column; }

#pro-signup .pro-signup {
  display: flex;
  flex-direction: column;
  gap: 16px; }
  #pro-signup .pro-signup__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 4px 0; }
  #pro-signup .pro-signup__new-chip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #0038FD 0%, #E345FC 100%);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-weight: 700;
    color: #ffffff; }
    @media only screen and (min-width: 768px) {
      #pro-signup .pro-signup__new-chip {
        font-size: 14px;
        line-height: 20px; } }
  #pro-signup .pro-signup__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px; }
    @media only screen and (min-width: 768px) {
      #pro-signup .pro-signup__title {
        font-size: 32px;
        line-height: 40px; } }
  #pro-signup .pro-signup__subtitle {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      #pro-signup .pro-signup__subtitle {
        font-size: 16px;
        line-height: 24px; } }
  #pro-signup .pro-signup__proposition-cards {
    display: flex;
    flex-direction: column;
    gap: 16px; }
  #pro-signup .pro-signup__terms {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px; }

#upload .upload__cta, #upload .upload__faces {
  width: 100%;
  max-width: 550px; }

#upload .upload__cta-title {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px; }
  @media only screen and (min-width: 768px) {
    #upload .upload__cta-title {
      font-size: 32px;
      line-height: 40px; } }
#upload .upload__cta-subtitle {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888888; }
  @media only screen and (min-width: 768px) {
    #upload .upload__cta-subtitle {
      font-size: 16px;
      line-height: 24px; } }
#upload .upload__tips {
  margin-top: 20px;
  gap: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr; }

#upload .upload__tip-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min-content; }

#upload .upload__tip-img-wrapper {
  position: relative; }
  #upload .upload__tip-img-wrapper img {
    height: 80px;
    width: 80px;
    border-radius: 4px;
    object-fit: cover; }

#upload .upload__tip-img-hint {
  position: absolute;
  top: 0;
  right: 0; }
  #upload .upload__tip-img-hint img {
    width: 25px;
    height: 25px; }

#upload .upload__tip {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  color: #888888;
  text-align: center;
  padding-top: 8px; }
  @media only screen and (min-width: 768px) {
    #upload .upload__tip {
      font-size: 14px;
      line-height: 20px; } }
#upload .upload__face {
  margin-top: 40px; }

#upload .upload__face-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between; }

#upload .upload__face-title {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-weight: 700;
  margin: 0; }
  @media only screen and (min-width: 768px) {
    #upload .upload__face-title {
      font-size: 16px;
      line-height: 24px; } }
#upload .upload__face-buttons {
  display: flex;
  gap: 8px;
  height: 40px; }

#upload .upload__explainer-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888888;
  height: 24px;
  text-align: left; }
  @media only screen and (min-width: 768px) {
    #upload .upload__explainer-text {
      font-size: 16px;
      line-height: 24px; } }
#upload .upload__uploaded-photos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  margin-top: 8px; }

#upload .upload__photo {
  line-height: 0; }
  #upload .upload__photo-spacer, #upload .upload__photo label:first-child::before {
    line-height: 0;
    content: " ";
    display: block;
    padding-top: 100%; }
  #upload .upload__photo img {
    width: 100%; }

#upload .upload__uploaded-image-container {
  position: relative; }

#upload .upload__uploaded-image-container::after {
  content: "";
  display: block;
  padding-bottom: 100%; }

#upload .upload__uploaded-image-container-loading::after {
  content: "";
  display: block;
  padding-bottom: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: relative; }

#upload .upload__edit-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  position: absolute;
  width: 32px;
  height: 32px;
  bottom: 4px;
  right: 4px;
  z-index: 1;
  border-radius: 16px;
  padding: 4px; }

#upload .upload__error-callout {
  margin-bottom: 20px; }

#upload .upload__error-warning {
  position: absolute;
  border-radius: 12px;
  background-color: #fff8d2;
  top: 4px;
  left: 4px;
  z-index: 1; }
  #upload .upload__error-warning svg {
    color: #7d6200; }

#upload .upload__loading-spinner-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1; }

#upload .upload__uploaded-image {
  object-fit: cover;
  border-radius: 4px;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; }

#upload .upload__placeholder {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 4px;
  background-color: #f0f0ec; }
  #upload .upload__placeholder svg {
    width: 24px;
    height: 24px;
    display: block;
    margin: auto; }

#upload .upload__continue, #upload .upload__add-face {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  width: 100%; }
  #upload .upload__continue .button, #upload .upload__add-face .button {
    width: 100%;
    margin: 0; }

#upload .upload__guidance-notice {
  background-color: #f0f0ec;
  padding: 16px;
  border-radius: 4px;
  margin-top: 8px; }

#upload .upload__guidance-blurb {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400; }
  @media only screen and (min-width: 768px) {
    #upload .upload__guidance-blurb {
      font-size: 16px;
      line-height: 24px; } }
#upload .upload__privacy-notice {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 40px; }
  #upload .upload__privacy-notice > svg {
    margin-right: 8px;
    color: #888888; }

#upload .upload__privacy-blurb {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888888; }
  @media only screen and (min-width: 768px) {
    #upload .upload__privacy-blurb {
      font-size: 16px;
      line-height: 24px; } }
#upload .upload__privacy-learn-more {
  text-decoration: underline; }

#crop-portrait-image-modal #portrait-image-cropper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
  padding-right: 20px; }
  #crop-portrait-image-modal #portrait-image-cropper .ReactCrop {
    max-height: 50vh; }

#crop-portrait-image-modal .edit-title {
  margin-bottom: 8px;
  font-weight: 700; }

#crop-portrait-image-modal .portrait-crop-buttons {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  margin-bottom: 20px; }
  #crop-portrait-image-modal .portrait-crop-buttons .top-button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px; }
  #crop-portrait-image-modal .portrait-crop-buttons .remove-photo-button {
    width: fit-content; }
  #crop-portrait-image-modal .portrait-crop-buttons .bottom-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    margin-right: 20px; }
    #crop-portrait-image-modal .portrait-crop-buttons .bottom-buttons > .button {
      width: 50%;
      height: 44px; }
    #crop-portrait-image-modal .portrait-crop-buttons .bottom-buttons .cancel-button {
      margin-right: 4px;
      font-size: 14px; }
    #crop-portrait-image-modal .portrait-crop-buttons .bottom-buttons .save-button {
      margin-left: 4px; }

#crop-portrait-image-modal .cropper-header {
  margin: 20px; }

#collection {
  height: max-content; }
  #collection .collection {
    text-align: center; }
    #collection .collection__loading-bar {
      margin: 20px 0; }
    #collection .collection__authorisation {
      display: flex;
      flex-direction: column;
      align-items: center; }
      #collection .collection__authorisation .proposition, #collection .collection__authorisation .proposition--wide {
        width: max-content; }
      #collection .collection__authorisation .button {
        width: 100%;
        margin: 8px 0 8px 0; }
    #collection .collection__results-section .user-prompt {
      margin: 0;
      font-weight: 400;
      font-size: 18px;
      line-height: 26px;
      font-weight: 700;
      text-align: left; }
      @media only screen and (min-width: 768px) {
        #collection .collection__results-section .user-prompt {
          font-size: 24px;
          line-height: 32px; } }
    #collection .collection__title {
      margin: 0;
      font-weight: 400;
      font-size: 24px;
      line-height: 32px;
      margin-bottom: 8px; }
      @media only screen and (min-width: 768px) {
        #collection .collection__title {
          font-size: 32px;
          line-height: 40px; } }
    #collection .collection__subtitle {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        #collection .collection__subtitle {
          font-size: 16px;
          line-height: 24px; } }
    #collection .collection__artworks {
      display: flex;
      flex-direction: column;
      justify-content: center; }
    #collection .collection__artworks-grid {
      margin-top: 20px;
      margin-bottom: 20px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 20px;
      overflow: scroll;
      width: calc(100% - 2px); }
      #collection .collection__artworks-grid .artwork-card {
        display: flex; }
    #collection .collection__art {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%; }

@media only screen and (min-width: 768px) {
  #collection .collection__artworks-grid {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr 1fr 1fr; }
  #collection .collection__authorisation {
    padding-bottom: 20px; } }

#search {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center; }
  #search.screen {
    margin-top: 0; }
  #search .form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px; }
  #search .fields {
    display: flex;
    flex-direction: row;
    gap: 5px; }
  #search .hit-count {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      #search .hit-count {
        font-size: 14px;
        line-height: 20px; } }
  #search .filters {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px; }
  #search .trace {
    font-size: 12px;
    line-height: 18px;
    overflow: hidden;
    background-color: #f0f0ec;
    padding: 10px;
    border-radius: 10px; }
  #search .filter {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #ffffff;
    background-color: #888888;
    border-radius: 10px;
    padding: 1px 7px; }
    @media only screen and (min-width: 768px) {
      #search .filter {
        font-size: 14px;
        line-height: 20px; } }
    #search .filter.thumbnail {
      display: flex;
      flex-direction: row;
      padding: 1px 7px 1px 0;
      max-height: 40px;
      min-width: 120px;
      overflow: hidden; }
      #search .filter.thumbnail > img {
        height: 40px;
        padding-right: 10px;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px; }
  #search .search-bar {
    display: flex;
    flex-direction: column;
    width: 100%; }
    #search .search-bar .controls {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 15px; }
      #search .search-bar .controls .field {
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        flex: 1;
        gap: 5px; }
        #search .search-bar .controls .field input,
        #search .search-bar .controls .field textarea {
          text-align: left;
          padding: 8px;
          min-width: 80px; }
          #search .search-bar .controls .field input::placeholder,
          #search .search-bar .controls .field textarea::placeholder {
            text-align: left; }
      #search .search-bar .controls .submit {
        flex: 1; }
        #search .search-bar .controls .submit .button {
          width: 100%;
          min-width: 150px; }
  #search .results {
    display: flex;
    flex-direction: column;
    gap: 10px; }
    #search .results .results-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px; }
      #search .results .results-grid .result-row {
        background-color: #f0f0ec;
        padding: 10px; }
      #search .results .results-grid .result-card {
        position: relative;
        line-height: 0;
        border-radius: 10px;
        overflow: hidden;
        min-height: 50px; }
        #search .results .results-grid .result-card > img {
          width: 100%; }
        #search .results .results-grid .result-card > .prompt {
          width: 100%;
          position: absolute;
          bottom: 0;
          background-color: rgba(0, 0, 0, 0.6);
          padding: 5px; }
          #search .results .results-grid .result-card > .prompt > span {
            font-size: 12px;
            line-height: 16px;
            font-weight: 400;
            color: white;
            font-size: 12px;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            -webkit-line-clamp: 2;
            overflow: hidden; }
            @media only screen and (min-width: 768px) {
              #search .results .results-grid .result-card > .prompt > span {
                font-size: 14px;
                line-height: 20px; } }
        #search .results .results-grid .result-card > .stickers {
          display: flex;
          flex-direction: row;
          position: absolute;
          top: 5px;
          right: 5px;
          gap: 4px; }
          #search .results .results-grid .result-card > .stickers .sticker {
            font-size: 12px;
            line-height: 16px;
            font-weight: 400;
            font-size: 10px;
            line-height: 14px;
            background-color: #ff282d;
            color: white;
            border-radius: 6px;
            padding: 2px 4px; }
            @media only screen and (min-width: 768px) {
              #search .results .results-grid .result-card > .stickers .sticker {
                font-size: 14px;
                line-height: 20px; } }
    #search .results .load-more {
      display: flex;
      flex-direction: column;
      width: 100%; }

@media only screen and (min-width: 1200px) {
  #search .results .results-grid {
    grid-template-columns: repeat(6, 1fr); } }

#style .style {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #style .style__artwork-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%; }
  #style .style__artwork {
    width: 100%;
    margin: 20px 40px; }
  #style .style__selected-product-name {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    margin: 0;
    color: #888888;
    margin-bottom: 4px; }
    @media only screen and (min-width: 768px) {
      #style .style__selected-product-name {
        font-size: 16px;
        line-height: 24px; } }
  #style .style__style-name {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #style .style__style-name {
        font-size: 24px;
        line-height: 32px; } }
  #style .style__prompt {
    width: 100%; }
  #style .style__prompt-hint {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888;
    line-height: 22px;
    text-align: center;
    margin-bottom: 4px; }
    @media only screen and (min-width: 768px) {
      #style .style__prompt-hint {
        font-size: 16px;
        line-height: 24px; } }
  #style .style__grids {
    width: 100%; }
  #style .style__grid-item {
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    cursor: pointer; }

#style .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 8px;
  margin-bottom: 40px; }
  #style .grid-title {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    font-weight: 700;
    color: #888888;
    margin: 0 0 16px 0; }
    @media only screen and (min-width: 768px) {
      #style .grid-title {
        font-size: 16px;
        line-height: 24px; } }
#style #prompt {
  margin-bottom: 40px;
  gap: 2px; }
  #style #prompt .gradient {
    background: none;
    height: fit-content; }

#portrait-subject-selection .portrait-subject-selection__title {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px; }
  @media only screen and (min-width: 768px) {
    #portrait-subject-selection .portrait-subject-selection__title {
      font-size: 32px;
      line-height: 40px; } }
#portrait-subject-selection .portrait-subject-selection__buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 8px; }

#portrait-subject-selection .portrait-subject-selection__subject-type-button, #portrait-subject-selection .portrait-subject-selection__subject-type-button--disabled {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 20px;
  text-decoration: none;
  color: #000000;
  cursor: pointer; }
  #portrait-subject-selection .portrait-subject-selection__subject-type-button--disabled {
    background-color: rgba(0, 0, 0, 0.05);
    color: #888888;
    border: none; }

#portrait-subject-selection .portrait-subject-selection__subject-type-button-labels {
  display: flex;
  flex-direction: column; }
  #portrait-subject-selection .portrait-subject-selection__subject-type-button-labels .primary-label {
    margin: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700; }
    @media only screen and (min-width: 768px) {
      #portrait-subject-selection .portrait-subject-selection__subject-type-button-labels .primary-label {
        font-size: 24px;
        line-height: 32px; } }
  #portrait-subject-selection .portrait-subject-selection__subject-type-button-labels .secondary-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      #portrait-subject-selection .portrait-subject-selection__subject-type-button-labels .secondary-label {
        font-size: 16px;
        line-height: 24px; } }
#portrait-subject-selection .portrait-subject-selection__subject-type-button-image {
  height: 80px;
  border-radius: 8px; }

#category {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0; }
  #category .category {
    display: flex;
    flex-direction: column;
    align-items: center; }
    #category .category__loading {
      padding: 80px 0; }
    #category .category__header {
      width: 100%; }
    #category .category__sub-header {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 0;
      gap: 4px; }
    #category .category__type {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      font-weight: 700;
      color: #888888; }
      @media only screen and (min-width: 768px) {
        #category .category__type {
          font-size: 16px;
          line-height: 24px; } }
    #category .category__title {
      margin: 0;
      font-weight: 400;
      font-size: 24px;
      line-height: 32px; }
      @media only screen and (min-width: 768px) {
        #category .category__title {
          font-size: 32px;
          line-height: 40px; } }
    #category .category__description {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888;
      margin: 0; }
      @media only screen and (min-width: 768px) {
        #category .category__description {
          font-size: 16px;
          line-height: 24px; } }
    #category .category__shelves {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      padding: 0 20px; }
      #category .category__shelves > div {
        width: 100%; }
    #category .category__shelf {
      padding: 20px 0; }
    #category .category__category-chips {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      padding-top: 20px;
      gap: 4px; }
    #category .category__category-chip {
      user-select: none;
      text-decoration: none; }
      #category .category__category-chip:hover {
        cursor: pointer; }
      #category .category__category-chip:active {
        cursor: pointer; }
    #category .category__loading {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh; }
    #category .category__grid-title {
      margin: 0;
      font-weight: 400;
      font-size: 18px;
      line-height: 26px; }
      @media only screen and (min-width: 768px) {
        #category .category__grid-title {
          font-size: 24px;
          line-height: 32px; } }
    #category .category__grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      width: 100%;
      padding: 20px 0; }
      #category .category__grid > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }

@media only screen and (min-width: 768px) {
  #styles-category .styles-category__category-name-wrapper {
    margin-bottom: 40px; }
  #styles-category .styles-category__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; }
  #category .category__header {
    max-width: 1440px; }
  #category .category__shelf {
    width: 66%;
    max-width: 1020px; }
  #category .category__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr; } }

.batch-generate {
  display: flex;
  align-items: center;
  justify-content: center; }
  .batch-generate .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin-top: 100px;
    padding: 20px; }
  .batch-generate .page-title {
    font-size: 24px;
    margin-bottom: 20px; }
  .batch-generate .file-input-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px; }
  .batch-generate .upload-button-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px; }
  .batch-generate .upload-btn {
    font-size: 18px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; }
    .batch-generate .upload-btn:hover {
      background-color: #0056b3; }
  .batch-generate .status-container {
    width: 100%;
    display: flex;
    justify-content: center; }
  .batch-generate .status-message {
    font-size: 16px;
    font-weight: bold;
    color: #28a745; }
  .batch-generate .file-name-display {
    font-size: 16px;
    font-weight: bold;
    color: #212529;
    text-align: center;
    margin-top: 5px; }
  .batch-generate .file-input-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 10px; }
    .batch-generate .file-input-wrapper label {
      display: inline-block;
      padding: 10px 20px;
      background-color: #6c757d;
      color: #fff;
      font-size: 18px;
      text-align: center;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s; }
      .batch-generate .file-input-wrapper label:hover {
        background-color: #5a6268; }
    .batch-generate .file-input-wrapper input[type="file"] {
      display: none; }

#user .user {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #user .user__user-settings {
    max-width: min-content; }
    #user .user__user-settings .user-settings-button {
      border-radius: 22px; }
    #user .user__user-settings .button {
      margin: 0; }
  #user .user__fy-picks-notification {
    background: #e8faf0;
    border-radius: 10px;
    margin: 0 20px;
    padding: 15px 20px;
    width: 100%; }
    #user .user__fy-picks-notification .star {
      display: inline-block;
      margin-right: 15px;
      vertical-align: middle; }
    #user .user__fy-picks-notification p {
      margin: 0;
      padding: 0;
      display: inline-block;
      vertical-align: middle; }
      #user .user__fy-picks-notification p span {
        font-weight: 600; }
    #user .user__fy-picks-notification .close {
      display: none;
      float: right;
      height: 24px; }
      #user .user__fy-picks-notification .close.mobile {
        display: block; }
  #user .user__details {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding-top: 20px; }
  #user .user__avatar {
    border-radius: 80px;
    width: 100px;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px; }
    #user .user__avatar-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative; }
      #user .user__avatar-wrapper svg {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 0; }
  #user .user__subscription-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px;
    height: 24px;
    background: linear-gradient(45deg, #4a00c4 0%, #c66de5 100%);
    color: #ffffff;
    user-select: none;
    border-radius: 20px;
    border: 2px solid #ffffff;
    position: absolute;
    bottom: 0; }
  #user .user__artist-name-bio-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    margin-top: 12px; }
  #user .user__artist-name {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px; }
    @media only screen and (min-width: 768px) {
      #user .user__artist-name {
        font-size: 32px;
        line-height: 40px; } }
  #user .user__artist-bio {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      #user .user__artist-bio {
        font-size: 16px;
        line-height: 24px; } }
  #user .user__artist-tagline {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      #user .user__artist-tagline {
        font-size: 16px;
        line-height: 24px; } }
  #user .user__upgrade-to-pro .upgrade-to-pro-button {
    border-radius: 22px;
    color: #ffffff;
    background: linear-gradient(45deg, #0038fd 0%, #e345fc 100%); }
  #user .user__feeds {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    #user .user__feeds .proposition, #user .user__feeds .proposition--wide {
      margin-top: 0; }
  #user .user .feed > div {
    width: 100%; }
  #user .user .feed__item {
    position: relative; }
    #user .user .feed__item .button {
      margin: 0; }
    #user .user .feed__item .action-button {
      position: absolute;
      bottom: 4px;
      right: 4px; }
      #user .user .feed__item .action-button > .button {
        width: 32px;
        height: 32px; }
  #user .user__likes-feed, #user .user__history-feed {
    width: calc(100% - 6px); }
  #user .user__tabs {
    display: flex;
    width: 100%;
    z-index: 2;
    position: sticky;
    padding-top: 20px;
    top: calc( 90px - 1px);
    height: 90px;
    background-color: #ffffff;
    background: linear-gradient(180deg, white 90%, rgba(255, 255, 255, 0) 100%); }
    #user .user__tabs .segmented-tabs {
      height: 44px;
      margin: 0; }
  #user .user__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    height: 100vh; }
    #user .user__cta .hint {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888;
      inline-size: 280px;
      overflow-wrap: break-word;
      text-align: center; }
      @media only screen and (min-width: 768px) {
        #user .user__cta .hint {
          font-size: 16px;
          line-height: 24px; } }
  #user .user__likes-placeholder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f0f0ec;
    border-radius: 10px;
    color: #888888;
    margin-bottom: 20px; }
  #user .user__pro-section {
    margin-top: 8px; }
  #user .user__pro-features {
    width: 100%;
    padding: 20px 0; }
  #user .user__pro-feeds {
    width: 100%; }
  #user .user__pro-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 20px; }
    #user .user__pro-buttons > .button.ghost.disabled {
      pointer-events: unset; }
  #user .user__selection-controls {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-top: 20px; }
  #user .user__selection-status {
    flex: 1;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400; }
    @media only screen and (min-width: 768px) {
      #user .user__selection-status {
        font-size: 14px;
        line-height: 20px; } }
#user .generation {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400; }
  @media only screen and (min-width: 768px) {
    #user .generation {
      font-size: 16px;
      line-height: 24px; } }
  #user .generation .created-at {
    color: #888888;
    padding-bottom: 8px; }

#user .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  gap: 8px; }
  #user .grid > [style^="--aspect-ratio"]::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio))); }
  #user .grid .row {
    width: 100%; }

.shop-not-live-yet .alert__title, .shop-not-live-yet .alert__body {
  text-align: center; }

.user-settings-modal {
  padding: 40px 20px 20px 20px; }
  .user-settings-modal__avatar {
    border-radius: 80px;
    width: 100px;
    aspect-ratio: 1/1;
    object-fit: cover; }
    .user-settings-modal__avatar-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      position: relative; }
  .user-settings-modal__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px; }
  .user-settings-modal__change-picture-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute; }
  .user-settings-modal__change-picture .button {
    border-radius: 20px;
    padding: 20px;
    width: 32px; }
  .user-settings-modal .form .field .text-field > input {
    padding: 10px 12px; }
  .user-settings-modal .text-area .text-input-wrapper .grow-wrap > textarea {
    text-align: left;
    padding: 10px 12px; }
  .user-settings-modal .text-area .text-input-wrapper .grow-wrap::after {
    padding: 10px 12px; }

@media only screen and (min-width: 768px) {
  #user .user__details {
    flex-direction: row;
    min-height: 120px; }
  #user .user__artist-name-bio-wrapper {
    flex-grow: 1;
    align-items: flex-start;
    text-align: left;
    margin-left: 20px;
    margin-top: auto; }
  #user .user__artist-bio {
    max-width: 66%; }
  #user .user .open-user-settings-button {
    margin: 0; }
  #user .user__pro-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    max-width: min-content;
    gap: 20px;
    padding-top: 0; }
    #user .user__pro-buttons > a {
      min-width: 100%; }
  #user .user__feeds {
    width: 100%; }
  #user .user__history-feed {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #user .user__tabs {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #user .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px; }
    #user .grid > [style^="--aspect-ratio"]::before {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0;
      padding-bottom: calc(100% / (var(--aspect-ratio))); }
  .user-settings-modal {
    width: 590px; } }

#rooms-wrapper .user__selection-buttons, #user .user__selection-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px; }

#rooms-wrapper .user__pagination-buttons, #user .user__pagination-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center; }

#rooms-wrapper .user__pagination-buttons-back, #rooms-wrapper .user__pagination-buttons-next, #user .user__pagination-buttons-back, #user .user__pagination-buttons-next {
  border: 1px solid white !important; }
  #rooms-wrapper .user__pagination-buttons-back.disabled, #rooms-wrapper .user__pagination-buttons-next.disabled, #user .user__pagination-buttons-back.disabled, #user .user__pagination-buttons-next.disabled {
    background-color: white; }
  #rooms-wrapper .user__pagination-buttons-back .icon-right, #rooms-wrapper .user__pagination-buttons-next .icon-right, #user .user__pagination-buttons-back .icon-right, #user .user__pagination-buttons-next .icon-right {
    margin-top: -7px; }

#rooms-wrapper .user__pagination-pages, #user .user__pagination-pages {
  display: flex;
  flex-direction: row;
  overflow: auto;
  white-space: nowrap; }
  #rooms-wrapper .user__pagination-pages .tertiary.pagination-page-btn, #user .user__pagination-pages .tertiary.pagination-page-btn {
    padding: 0 5px; }
    #rooms-wrapper .user__pagination-pages .tertiary.pagination-page-btn--selected, #user .user__pagination-pages .tertiary.pagination-page-btn--selected {
      color: black;
      padding: 0 5px; }
    #rooms-wrapper .user__pagination-pages .tertiary.pagination-page-btn:hover, #user .user__pagination-pages .tertiary.pagination-page-btn:hover {
      background-color: #f0f0ec; }
    #rooms-wrapper .user__pagination-pages .tertiary.pagination-page-btn:active, #user .user__pagination-pages .tertiary.pagination-page-btn:active {
      background-color: #f0f0ec; }

#user-product .user-product .feed__artwork-card {
  cursor: unset; }

#user-product .user-product__rename-artwork {
  margin-top: 20px; }

#user-product .user-product__artwork-name-label {
  font-weight: 700; }

#user-product .user-product__artwork-name-hint {
  color: #888888;
  padding-top: 8px; }

#user-product .user-product__action {
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
  padding: 12px 12px 12px 0;
  border-bottom: 1px solid #888888; }
  #user-product .user-product__action .icon-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 4px; }

#user-settings .user-settings__title {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #user-settings .user-settings__title {
      font-size: 32px;
      line-height: 40px; } }
#user-settings .user-settings__avatar {
  border-radius: 80px;
  width: 100px;
  aspect-ratio: 1/1;
  object-fit: cover; }
  #user-settings .user-settings__avatar-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 8px 0; }

#user-settings .user-settings__buttons {
  display: flex;
  flex-direction: column;
  gap: 8px; }

#user-settings .user-settings__action {
  display: flex;
  flex-direction: row;
  align-items: center;
  user-select: none;
  text-decoration: none;
  color: #000000;
  justify-content: space-between;
  cursor: pointer;
  padding: 12px 0;
  border-bottom: 1px solid #888888; }
  #user-settings .user-settings__action:hover {
    cursor: pointer; }
  #user-settings .user-settings__action:active {
    cursor: pointer; }
  #user-settings .user-settings__action .icon-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px; }
  #user-settings .user-settings__action .labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%; }
    #user-settings .user-settings__action .labels .label-right {
      color: #888888; }
  #user-settings .user-settings__action .icon-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4px; }

#pro-upload .pro-upload {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px; }

@__header {
  #pro-upload .pro-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px; } }
  #pro-upload .pro-upload__title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #pro-upload .pro-upload__title {
        font-size: 32px;
        line-height: 40px; } }
  #pro-upload .pro-upload__description {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888;
    text-align: center; }
    @media only screen and (min-width: 768px) {
      #pro-upload .pro-upload__description {
        font-size: 16px;
        line-height: 24px; } }
  #pro-upload .pro-upload__filestack {
    height: 50vh;
    width: 100%; }
  #pro-upload .pro-upload__in-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 50vh; }
  #pro-upload .pro-upload__in-progress-label {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #888888; }
    @media only screen and (min-width: 768px) {
      #pro-upload .pro-upload__in-progress-label {
        font-size: 16px;
        line-height: 24px; } }
  #pro-upload .pro-upload__footer {
    display: flex;
    flex-direction: column;
    width: 100%; }

#create-account .create-account {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #create-account .create-account__form {
    width: 100%; }
  #create-account .create-account .title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      #create-account .create-account .title {
        font-size: 32px;
        line-height: 40px; } }
#login .login {
  display: flex;
  flex-direction: column;
  align-items: center; }
  #login .login__form {
    width: 100%; }
  #login .login .title {
    margin: 0;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    padding: 20px; }
    @media only screen and (min-width: 768px) {
      #login .login .title {
        font-size: 32px;
        line-height: 40px; } }
#pro-choose-name .pro-choose-name__form {
  display: flex;
  flex-direction: column; }

#pro-choose-name .pro-choose-name__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px; }

#pro-choose-name .pro-choose-name .title {
  margin: 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #pro-choose-name .pro-choose-name .title {
      font-size: 32px;
      line-height: 40px; } }
#pro-choose-name .pro-choose-name__description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888888;
  text-align: center; }
  @media only screen and (min-width: 768px) {
    #pro-choose-name .pro-choose-name__description {
      font-size: 16px;
      line-height: 24px; } }
#pro-choose-name .pro-choose-name__shop-url {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 36px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #888888;
  padding-left: 6px; }
  @media only screen and (min-width: 768px) {
    #pro-choose-name .pro-choose-name__shop-url {
      font-size: 16px;
      line-height: 24px; } }
#landing-page #prompt {
  padding-top: 5px; }
  #landing-page #prompt .prompt__room-inputs .prompt__camera-btn {
    display: block; }
    #landing-page #prompt .prompt__room-inputs .prompt__camera-btn .button {
      margin-bottom: 10px; }

#rooms-history .rooms-history {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 1312px;
  padding: 0; }
  #rooms-history .rooms-history__feeds {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%; }
    #rooms-history .rooms-history__feeds .proposition, #rooms-history .rooms-history__feeds .proposition--wide {
      margin-top: 0; }
  #rooms-history .rooms-history .feed > div {
    width: 100%; }
  #rooms-history .rooms-history .feed__item {
    position: relative; }
    #rooms-history .rooms-history .feed__item .button {
      margin: 0; }
    #rooms-history .rooms-history .feed__item .action-button {
      position: absolute;
      bottom: 4px;
      right: 4px; }
      #rooms-history .rooms-history .feed__item .action-button > .button {
        width: 32px;
        height: 32px; }
  #rooms-history .rooms-history__likes-feed, #rooms-history .rooms-history__history-feed {
    width: calc(100% - 6px); }
  #rooms-history .rooms-history__tabs {
    display: flex;
    width: 100%;
    z-index: 2;
    position: sticky;
    padding-top: 20px;
    top: calc( 0px - 1px);
    height: 90px;
    background-color: #ffffff;
    background: linear-gradient(180deg, white 90%, rgba(255, 255, 255, 0) 100%); }
    #rooms-history .rooms-history__tabs .segmented-tabs {
      height: 44px;
      margin: 0; }
  #rooms-history .rooms-history__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    height: 100vh; }
    #rooms-history .rooms-history__cta .hint {
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
      color: #888888;
      inline-size: 280px;
      overflow-wrap: break-word;
      text-align: center; }
      @media only screen and (min-width: 768px) {
        #rooms-history .rooms-history__cta .hint {
          font-size: 16px;
          line-height: 24px; } }
  #rooms-history .rooms-history__likes-placeholder {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #f0f0ec;
    border-radius: 10px;
    color: #888888;
    margin-bottom: 20px; }

#rooms-history .grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
  gap: 8px;
  padding: 0; }
  #rooms-history .grid > [style^="--aspect-ratio"]::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 0;
    padding-bottom: calc(100% / (var(--aspect-ratio))); }
  #rooms-history .grid .row {
    width: 100%; }

@media only screen and (min-width: 768px) {
  #rooms-history .rooms-history__feeds {
    width: 100%; }
  #rooms-history .rooms-history__history-feed {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #rooms-history .rooms-history__tabs {
    display: flex;
    flex-direction: column;
    align-items: center; }
  #rooms-history .grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px; }
    #rooms-history .grid > [style^="--aspect-ratio"]::before {
      content: "";
      display: inline-block;
      width: 1px;
      height: 0;
      padding-bottom: calc(100% / (var(--aspect-ratio))); } }

body,
#main {
  height: 100vh;
  width: 100vw; }

body.locked {
  overflow: hidden; }

/* Small devices (up to iPhone 5/SE) */
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  #header {
    position: fixed;
    top: 0; }
  .home__product-types {
    height: unset;
    background-color: #ffffff;
    justify-content: center;
    align-items: flex-start; }
  .home__shelves {
    margin: 0;
    max-width: 1020px; }
  .landing-prompt-ui {
    margin: 0 auto;
    width: 100%;
    max-width: 1400px; }
    .landing-prompt-ui .product-type-hero__prompt-box, .landing-prompt-ui .product-type-hero__notice-box {
      width: 500px;
      margin-bottom: 20px; }
    .landing-prompt-ui__with-cropper .product-type-hero__prompt-title, .landing-prompt-ui__with-cropper .product-type-hero__prompt-subtitle {
      display: none; }
  .option-modal {
    height: unset; }
  .product-type-hero__prompt-box #image-cropper {
    height: unset; }
    .product-type-hero__prompt-box #image-cropper img {
      max-height: 200px;
      max-width: 300px; }
  #image-cropper {
    max-width: 400px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  #styles-modal {
    width: 540px;
    height: unset;
    max-height: 80vh; }
    #styles-modal .styles-grid {
      grid-template-columns: 1fr 1fr 1fr 1fr; }
      #styles-modal .styles-grid.mini {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr; }
  .feed {
    align-self: center;
    height: auto; }
    .feed__items {
      width: fit-content; }
    .feed__items {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr 1fr;
      gap: 16px;
      width: 100%; }
      .feed__items > [style^="--aspect-ratio"]::before {
        content: "";
        display: inline-block;
        width: 1px;
        height: 0;
        padding-bottom: calc(100% / (var(--aspect-ratio))); }
    .feed_item {
      padding: 20px; }
    .feed__ctas {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 4px; }
  #results .results__create-more {
    padding-bottom: 20px; }
  #results .grid {
    margin-top: 80px;
    height: fit-content;
    width: fit-content; }
    #results .grid.qa-mode {
      grid-template-columns: 1fr 1fr 1fr 1fr; }
    #results .grid .param-pills {
      max-width: 200px; }
    #results .grid .artwork-card {
      width: 200px; }
  #product, #results {
    align-items: unset; }
  #product .gallery-thumbs {
    --lifestyle-mock-width: calc((450px - 14px) / 3); }
  #reset-password #create-new-password,
  #reset-password #password-successfully-changed {
    width: 500px;
    margin-top: 40px; }
  #order-details .wrapper {
    width: 310px;
    height: 100%; }
  #search #search-panel .search-bar {
    width: 612px;
    margin: 0 auto; }
  #landing-page #ai-art-generator {
    height: auto; }
  #landing-page .landing-page__hero-wrapper {
    min-height: 660px; }
  #landing-page .landing-page__hero {
    padding: 40px; }
  #landing-page .landing-page__hero-text {
    width: 500px;
    padding-top: 0; }
  #landing-page .landing-page__sections {
    background-color: #ffffff;
    width: 100%;
    padding: 80px 20%;
    align-self: center; }
  #landing-page #portrait-how-it-works .section__content .ol {
    display: flex;
    gap: 20px; }
    #landing-page #portrait-how-it-works .section__content .ol > * {
      flex-basis: 100%; }
  #landing-page #portrait-how-it-works .section__content .ol {
    display: flex; }
    #landing-page #portrait-how-it-works .section__content .ol > * {
      flex-basis: 100%; }
  #landing-page #how-it-works .section__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 1rem; }
    #landing-page #how-it-works .section__content div {
      width: 240px;
      margin-bottom: 0; }
  #landing-page #faq {
    gap: 40px; }
    #landing-page #faq.section {
      display: flex; }
    #landing-page #faq .section__text, #landing-page #faq .section__content {
      width: 50%; }
    #landing-page #faq .section__text {
      text-align: left; }
    #landing-page #faq .section__subtitle {
      margin-top: 8px; }
  #landing-page #features .section__content .feature {
    display: flex;
    gap: 40px;
    margin-bottom: 40px; }
    #landing-page #features .section__content .feature__img-wrapper, #landing-page #features .section__content .feature__text {
      width: 50%; }
    #landing-page #features .section__content .feature__text {
      padding-top: 0; }
    #landing-page #features .section__content .feature__copy {
      height: 200px; }
    #landing-page #features .section__content .feature.reverse {
      flex-direction: row-reverse; }
  #portrait-landing {
    background-color: white; }
    #portrait-landing .portrait-landing {
      display: flex;
      flex-direction: column;
      height: 80%;
      padding-bottom: 0; }
      #portrait-landing .portrait-landing__main {
        background-color: white;
        width: 500px;
        margin: auto;
        margin-bottom: 40px;
        border-radius: 10px;
        padding: 40px;
        margin-top: 220px;
        z-index: 2; }
      #portrait-landing .portrait-landing__title {
        margin-bottom: 20px; }
      #portrait-landing .portrait-landing__create-button {
        width: 100%; }
      #portrait-landing .portrait-landing__how-it-works {
        padding: 40px; }
      #portrait-landing .portrait-landing__how-it-works-wrapper {
        background-color: #ffffff; }
      #portrait-landing .portrait-landing__how-it-works-title {
        margin-bottom: 40px; }
      #portrait-landing .portrait-landing__steps {
        display: flex;
        gap: 20px;
        width: 100%; }
        #portrait-landing .portrait-landing__steps > * {
          flex-basis: 100%; }
  #portrait-subject-selection .portrait-subject-selection__title {
    text-align: center; }
  #upload .upload {
    width: 500px; }
    #upload .upload__cta {
      text-align: center; }
    #upload .upload__tip-img-wrapper img {
      height: 115px;
      width: 115px;
      border-radius: 4px; }
    #upload .upload__tip-img-hint img {
      width: 30px;
      height: 30px; }
  #pre-checkout .pre-checkout__secure-checkout {
    padding: 0; }
  #pre-checkout .pre-checkout__faqs {
    background-color: white;
    padding: 40px 0; }
  #pre-checkout .pre-checkout__artwork {
    width: 76px;
    height: 100px; }
    #pre-checkout .pre-checkout__artwork img {
      width: 72px;
      height: 96px; } }

@media only screen and (min-width: 1200px) {
  .option-modal {
    width: 900px;
    height: 450px;
    position: relative;
    --lifestyle-mock-width: 450px; }
  #product .artwork {
    max-width: 490px; }
  #search #search-panel {
    max-width: 80vw;
    margin: 0 auto; }
    #search #search-panel .results .results-grid {
      grid-template-columns: repeat(6, 1fr); }
  .landing-prompt-ui .product-type-hero__prompt-box, .landing-prompt-ui .product-type-hero__notice-box {
    margin-bottom: 59px; } }
