@charset "UTF-8";@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400..600&display=swap");
@keyframes showBottomAnim {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showBottom20Anim {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showTopAnim {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showRightAnim {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes showAsideTooltip {
  from {
    transform: translateX(10px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes newProductAnim {
  0% {
    background: var(--white);
  }
  50% {
    background: #f3fff8;
    color: var(--success);
  }
  100% {
    background: var(--white);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
input,
textarea,
select {
  appearance: none;
  width: 100%;
  padding: 18px 12px;
  outline: none;
  border-radius: 4px;
  font-size: var(--text);
  margin-bottom: 15px;
  color: var(--black);
  box-shadow: none;
  font-size: 17px;
  background-color: var(--white);
  border: solid 1px var(--white);
  border-radius: 10px;
}
input:focus,
textarea:focus,
select:focus {
  border: solid 1px var(--black);
}
input:disabled,
textarea:disabled,
select:disabled {
  color: var(--grey);
}
button {
  width: auto;
  padding: 20px 28px !important;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  appearance: none;
  font-weight: 600;
}
button:disabled {
  color: #dbdbdb !important;
  background: #fafafa !important;
  border: none !important;
  pointer-events: none;
  cursor: default !important;
}
button:disabled:hover {
  color: var(--grey) !important;
  background: var(--backgroundAside) !important;
  border: none !important;
}
button.--delete {
  background: var(--white);
  color: var(--error);
  border: solid 1px var(--error);
}
button.--primaryBorder {
  background: var(--white);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px #0052ff;
}
button.--primary {
  background: var(--primary) !important;
  color: var(--white);
}
button.--cancel {
  background: var(--border);
  color: var(--black);
}
button {
  filter: brightness(1);
}
textarea {
  resize: vertical;
  min-height: 150px;
}
button:hover {
  filter: brightness(1.02);
}
button:active {
  filter: brightness(0.98);
}
select {
  appearance: none;
  background-image: url("../base/assets/img/down-arrow.svg") !important;
  background-position: calc(100% - 22px) 50% !important;
  background-repeat: no-repeat !important;
}
input[type=checkbox] {
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  cursor: pointer !important;
  margin: 0;
  border: solid 1px var(--white);
  flex: none;
}
input[type=checkbox]:hover {
  border: solid 1px var(--black);
}
input[type=checkbox]:checked {
  border: solid 1px var(--black);
  background: var(--black);
}
:root {
  --white: #fff;
  --primary: #FF5B00;
  --secondary: #ff6c6c;
  --redOak: #D4A489;
  --primaryLight: #81EFC0;
  --textPrimary: #b9aaf5;
  --primaryDark: #6331e2;
  --primaryHover: #4b6b7a;
  --border: rgb(240, 239, 239);
  --black: #000;
  --grey: #bbb;
  --darkGrey: #868196;
  --backgroundMain: #f8fafd;
  --backgroundAside: #eef2f7;
  --error: #d62727;
  --errorLight: #ffd9d9;
  --success: #32cc77;
  --info: #ffae00;
  --infoBox: #d9ffed;
  --blue: #4285F4;
  --h1: 78px;
  --h2: 32px;
  --h3: 19px;
  --h4: 23px;
  --text: 17px;
  --label: 14px;
  --button: 12px;
  --asideText: 14px;
  --textSemiBig: 18px;
  --textBig: 22px;
  --textSmall: 8px;
  --gradient: linear-gradient(90deg, #4ce3ca, #4CE39D, #ffce7a, #ffa87a);
}
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  /* Evita el destello azul en iOS */
  outline: none;
}
strong {
  font-weight: 600 !important;
}
p {
  user-select: none;
  -webkit-user-select: none;
}
::selection {
  background: var(--black);
  color: var(--white);
}
::placeholder {
  color: #bbb;
}
::-webkit-slider-runnable-track {
  width: 100%;
  background: #edeff5;
  border-radius: 30px;
  height: 4px;
  left: 0;
  top: 16px;
}
::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  cursor: ew-resize;
  border-radius: 50%;
  z-index: 10;
  top: -8px;
  position: relative;
}
::-moz-range-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary);
  cursor: ew-resize;
  border-radius: 50%;
  z-index: 10;
  top: -8px;
  position: relative;
}
body,
html {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: var(--text);
  color: var(--black);
  background: var(--backgroundMain);
  cursor: default !important;
  letter-spacing: 0.2px;
}
html.dark {
  background: #111;
  color: white;
}
p {
  margin: 0;
}
a {
  color: var(--black);
  cursor: pointer;
  text-decoration: none;
}
h1 {
  font-size: var(--h1);
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 70px;
  letter-spacing: -5px;
}
h2 {
  font-size: var(--h2);
  margin: 0 0 35px;
  font-weight: 600;
  line-height: 34px;
  letter-spacing: -1px;
}
h3 {
  font-size: var(--h3);
  margin: 0 0 12px;
  font-weight: 600;
}
h4 {
  font-size: var(--h4);
  margin: 0;
}
ul {
  list-style-type: none;
  padding: 0;
}
input[type=range] {
  appearance: none !important;
  background: none;
  border: none;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 0;
}
button.--primary {
  background: var(--primary);
  color: var(--white) !important;
}
button.--black {
  background: var(--black);
  color: var(--white) !important;
}
button.--black:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}
button.--disabled {
  pointer-events: none;
  background: var(--backgroundAside) !important;
  color: #ccd3da !important;
  border-color: var(--backgroundAside) !important;
}
label {
  font-size: var(--label);
  margin-bottom: 5px;
  display: block;
  color: var(--darkGrey);
}
.content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.main {
  height: 100%;
  left: 240px;
  overflow: auto;
  padding: 20px;
  position: fixed;
  width: calc(100% - 240px);
  top: 64px;
  height: calc(100% - 64px);
}
.main.--full {
  width: 100% !important;
  left: 0 !important;
  top: 0 !important;
}
.main__content {
  border-radius: 10px;
  margin: 0 auto;
  width: 100%;
  max-width: 980px;
  display: flex;
  flex-direction: column;
}
.main h1 {
  font-size: 32px !important;
  margin: 0 auto 20px;
  width: 100%;
  max-width: 600px;
}
.main .box {
  background: var(--white);
  padding: 20px;
  border: solid 1px var(--border);
  border-radius: 5px;
}
.main .box input[type=text],
.main .box textarea,
.main .box label {
  display: block;
  width: 100%;
}
.main input,
.main textarea,
.main select {
  background: var(--backgroundAside);
}
.save {
  width: 100%;
  bottom: 0;
  padding: 15px;
  position: fixed;
  width: calc(100% - 100px);
  border-radius: 10px 10px 0 0;
  display: flex;
  justify-content: flex-end;
  right: 0;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 5px 15px 5px 0;
  width: fit-content;
  cursor: pointer;
}
.checkbox label {
  margin: 0 0 1px;
}
.checkbox p {
  cursor: pointer;
}
input[type=color] {
  width: 47px;
  height: 47px;
  border: none;
  cursor: pointer;
  padding: 1px;
}
.--colorP {
  color: #344dda;
}
.--colorY {
  color: #ffb700;
}
.--colorG {
  color: var(--success);
}
.--colorR {
  color: var(--error);
}
input[type=range] {
  -webkit-appearance: none;
  /* Elimina el estilo predeterminado */
  width: 300px;
  height: 8px;
  /* Color de la pista */
  border-radius: 5px;
  outline: none;
}
@media only screen and (max-width: 700px) {
  input[type=range] {
    width: 100%;
  }
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Elimina el estilo predeterminado */
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--black);
  /* Color del control */
  border-radius: 50%;
}
@media only screen and (max-width: 700px) {
  input[type=range]::-webkit-slider-thumb {
    width: 28px;
    height: 28px;
    position: relative;
    top: -13px;
  }
}
input[type=range]::-moz-range-thumb {
  /* Elimina el estilo predeterminado */
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--black);
  /* Color del control */
  border-radius: 50%;
}
.--box {
  max-width: 1250px;
  background: var(--backgroundAside);
  display: flex;
  margin: 0 auto 80px;
  border-radius: 40px 20px 20px 20px;
}
@media only screen and (max-width: 700px) {
  .--box {
    min-height: initial !important;
    height: initial !important;
    margin: 20px 10px;
    border-radius: 40px 20px 20px 20px;
    max-height: initial !important;
  }
}
.--box:last-child {
  margin-bottom: 100px;
}
.--box img {
  width: 100%;
  object-fit: contain;
}
.--box .--img {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.--box .--container {
  margin: 40px auto;
  max-width: 1200px;
  display: flex;
  padding: 60px;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 700px) {
  .--box .--container {
    flex-direction: column;
    width: 100%;
    padding: 20px;
    gap: 30px;
    margin: 20px 0;
  }
  .--box .--container.--reverse {
    flex-direction: column-reverse;
  }
}
.--box .--container > div {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 100%;
}
.--box button {
  margin-top: 25px;
  width: fit-content;
}
.--box .--info {
  flex-direction: column;
  justify-content: center;
}
.--box .--info p {
  font-size: 20px;
}
@media only screen and (max-width: 700px) {
  .--box .--info p {
    font-size: 16px;
  }
}
.--box video {
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}
@media only screen and (max-width: 700px) {
  .--box video {
    width: 60%;
    height: initial !important;
  }
}
.--box h2 {
  font-weight: 600;
  font-size: 50px;
  line-height: 55px;
  letter-spacing: -3.5px;
  text-align: left;
  width: 100%;
}
@media only screen and (max-width: 700px) {
  .--box h2 {
    font-size: 40px;
    line-height: 45px;
    text-align: left;
    margin-bottom: 20px;
  }
}
.errors {
  margin: 0 0 20px;
  background: var(--errorLight);
  color: var(--error);
  line-height: 20px;
  padding: 15px;
  font-size: 15px;
  border-radius: 10px;
  list-style: disc;
  width: 100%;
}
.signin {
  padding: 20px 40px;
  max-width: 450px;
  margin: 0 auto;
}
.signin__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
  padding: 60px 0 40px;
}
.signin__logo img {
  height: 70px;
}
.signin__or {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.signin__txt {
  margin-bottom: 20px;
  text-align: center;
}
.signin__account {
  font-size: 15px;
  text-align: center;
  width: 100%;
  left: 0;
  color: var(--darkGrey);
  margin-top: 25px;
  padding-bottom: 50px;
}
.signin__account a {
  color: var(--primary);
}
.signin input {
  width: 100%;
}
.signin button {
  width: 100%;
}
.login {
  padding: 20px 40px;
  height: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.login__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 60px 0 40px;
}
.login__logo img {
  height: 70px;
}
.login__txt {
  margin-bottom: 20px;
  text-align: center;
}
.login__or {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.login__account {
  font-size: 15px;
  text-align: center;
  width: 100%;
  left: 0;
  color: var(--darkGrey);
  margin-top: 25px;
  padding-bottom: 30px;
}
.login__account a {
  color: var(--primary);
}
.login input {
  width: 100%;
}
.login button {
  width: 100%;
}
.itemType__page h2 {
  line-height: initial;
  margin: 0 0 10px;
}
.ql-align-center {
  text-align: center !important;
  margin: 0;
}
.ql-align-centerh2 {
  line-height: initial;
}
.itemType__page img {
  width: 100% !important;
}
.modalPremium__content {
  padding-bottom: 100px !important;
}
.modalPremium__content h2 {
  line-height: initial;
}
.modalPremium__content img {
  width: 100% !important;
}
.modalPremium__content a {
  color: var(--primary);
  text-decoration: underline;
}
.page-transition .progress {
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.recommendedRecipesList .mealCard {
  background: var(--white) !important;
}
.recommendedRecipesList .mealCard__icons i {
  background: var(--backgroundAside) !important;
  margin-right: 0 !important;
}
.dropdown .noData {
  flex-direction: column;
  padding: 20px;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
}
.dropdown .noData h3,
.dropdown .noData p {
  text-align: center;
}
.camera-overlay .file {
  z-index: 2000;
  position: absolute;
  top: 40px;
  left: 15px;
}
.camera-overlay .file button {
  flex-direction: row !important;
  border-radius: 100px;
  width: initial !important;
  height: initial !important;
}
.modalHelp .modal__content {
  max-width: calc(100% - 40px) !important;
}
.modalHelp .modal__content h3 {
  margin-bottom: 8px;
  font-size: 24px !important;
}.file.svelte-126sqfw {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  justify-content: center;
  padding: 20px 0;
}
.file.svelte-126sqfw input[type=file]:where(.svelte-126sqfw) {
  display: none;
}
.file__preview.svelte-126sqfw {
  display: block;
  width: 120px;
  height: 120px;
  background-position: center !important;
  background-size: cover !important;
  border-radius: 50%;
}
/* (unused) .file label {
  display: flex !important;
  gap: 12px;
  align-items: center;
  background: var(--backgroundAside);
  color: var(--darkGray);
  border-radius: 100px;
  padding: 5px;
  cursor: pointer;
  width: fit-content !important;
}*/
/* (unused) .file label.--attached {
  background: var(--success);
  color: var(--white);
  pointer-events: none;
}*/
/* (unused) .file label.--attached i {
  color: var(--success);
}*/
/* (unused) .file label:hover {
  background: var(--backgroundAside);
  color: var(--black);
}*/
/* (unused) .file label:active {
  background: var(--primary);
  color: var(--white);
}*/
/* (unused) .file label i {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  color: var(--darkGray);
  border-radius: 50%;
  font-size: 18px;
}*/
/* (unused) .file label p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 22px;
}*/
.file__image.svelte-126sqfw {
  background: var(--backgroundAside);
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  color: var(--darkGrey);
  flex-direction: column;
  gap: 8px;
}
.file__image.svelte-126sqfw p:where(.svelte-126sqfw) {
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
}
.file__delete.svelte-126sqfw {
  display: flex !important;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--error);
  margin-left: 20px;
  position: relative;
  top: -2px;
}
.file__delete.svelte-126sqfw:hover {
  color: var(--error);
}
.file__delete.svelte-126sqfw:active {
  color: var(--error);
}.list.svelte-13yv1oe {
  width: 100%;
  border-radius: 5px;
}
.list.svelte-13yv1oe label:where(.svelte-13yv1oe) {
  text-align: left;
  width: 100%;
  font-weight: 600;
}
.list__header.svelte-13yv1oe {
  margin: 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  border-radius: 5px 5px 0 0;
}
.list__header.svelte-13yv1oe li:where(.svelte-13yv1oe) {
  font-weight: 600;
  width: 100%;
  color: var(--darkGrey);
}
.list__header.svelte-13yv1oe li:where(.svelte-13yv1oe):last-child {
  width: 60px;
}
.list__content.svelte-13yv1oe {
  display: flex;
  flex-direction: column;
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 10px 0 20px;
  margin: 0;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) {
  font-weight: 600;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: none;
  cursor: pointer;
  position: relative;
  margin-bottom: 5px;
  padding: 10px 60px 10px 10px;
  border-bottom: solid 2px #eaeff7;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) input:where(.svelte-13yv1oe) {
  width: 100%;
  margin-bottom: 0;
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) button:where(.svelte-13yv1oe) {
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  background: none;
  color: var(--error);
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe) button:where(.svelte-13yv1oe):hover {
  background: var(--error);
  color: var(--white);
}
.list__content.svelte-13yv1oe .row:where(.svelte-13yv1oe):last-of-type {
  border-bottom: none !important;
  margin-bottom: 0 !important;
}
.list__btn.svelte-13yv1oe {
  display: flex;
  justify-content: flex-end;
  padding: 20px 20px 0 20px;
}
.list__btn.svelte-13yv1oe button:where(.svelte-13yv1oe) {
  width: 100%;
  background: var(--white);
  color: var(--primary);
  border: solid 1px var(--primary);
  padding: 12px 0 !important;
}.modal.svelte-1kvvob5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal.--cancellable.svelte-1kvvob5 .modal__close:where(.svelte-1kvvob5) {
  display: none;
}
.modal.--center.svelte-1kvvob5 {
  backdrop-filter: blur(10px);
}
.modal.--center.svelte-1kvvob5 h2:where(.svelte-1kvvob5) {
  margin: 0;
  line-height: initial !important;
}
.modal.--center.svelte-1kvvob5 .modal__content:where(.svelte-1kvvob5) {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: calc(100% - 40px);
  max-width: 650px;
  border-radius: 0;
  animation: showBottom20Anim 0.3s ease forwards;
  border-radius: 20px;
}
.modal.--center.svelte-1kvvob5 .modal__close:where(.svelte-1kvvob5) {
  position: absolute;
  right: 25px;
  top: 25px;
}
.modal.--center.svelte-1kvvob5 .modal__close:where(.svelte-1kvvob5) button:where(.svelte-1kvvob5) {
  border: none;
}
.modal.--center.svelte-1kvvob5 .modal__close:where(.svelte-1kvvob5) button:where(.svelte-1kvvob5) i:where(.svelte-1kvvob5) {
  color: var(--black);
  font-size: 22px;
}
.modal__close.svelte-1kvvob5 button:where(.svelte-1kvvob5) {
  width: 32px;
  padding: 0 !important;
  height: 32px;
  border-radius: 50%;
  background: var(--backgroundAside);
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal__close.svelte-1kvvob5 button:where(.svelte-1kvvob5):hover i:where(.svelte-1kvvob5) {
  color: var(--error);
}
.modal__close.svelte-1kvvob5 button:where(.svelte-1kvvob5) i:where(.svelte-1kvvob5) {
  font-size: 17px;
}
.modal__content.svelte-1kvvob5 {
  position: fixed;
  padding: 20px 20px 95px;
  background: #fff;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  right: 0;
  z-index: 1;
  overflow: auto;
  animation: showRightAnim 0.3s ease;
}
/* (unused) .modal__content input,
.modal__content textarea,
.modal__content select {
  background: var(--backgroundAside);
}*/
.modal__buttons.svelte-1kvvob5 {
  width: 100%;
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  bottom: 0;
  background: var(--white);
  right: 0;
  padding: 20px 10px;
}
.modal__buttons.svelte-1kvvob5 button:where(.svelte-1kvvob5) {
  padding: 22px;
}
.modal__header.svelte-1kvvob5 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.modal__overlay.svelte-1kvvob5 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 30, 66, 0.2);
  animation: appear 0.3s ease;
}.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) {
  align-items: center;
  cursor: pointer;
  gap: 10px;
  border-radius: 10px;
}
.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) li:where(.svelte-1q9hva2) {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  border: solid 1px var(--white);
}
.multipleselect.svelte-1q9hva2 ul:where(.svelte-1q9hva2) li.--selected:where(.svelte-1q9hva2) {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}.nav.svelte-per2aw {
  position: sticky;
  top: 65px;
  width: 100%;
  margin: 20px 0;
  z-index: 100;
}
.nav.--iOS.svelte-per2aw {
  top: 95px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  gap: 0;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw) {
  list-style: none;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-bottom: solid 2px transparent;
  font-weight: 600;
  color: var(--darkGrey);
  width: 100%;
  justify-content: center;
  display: flex;
  background: var(--white);
  font-size: 15px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw):first-child {
  border-radius: 100px 0 0 100px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw):last-child {
  border-radius: 0 100px 100px 0;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li:where(.svelte-per2aw) i:where(.svelte-per2aw) {
  font-size: 18px;
}
.nav.svelte-per2aw ul:where(.svelte-per2aw) li.--active:where(.svelte-per2aw) {
  color: var(--black);
  background: var(--primary);
}.radiobutton.svelte-joo73f {
  display: flex;
  align-items: center;
  cursor: pointer;
  background: var(--white);
  padding: 20px;
  gap: 10px;
  border-radius: 10px;
  margin-bottom: 5px;
  border: solid 1px var(--white);
}
.radiobutton.svelte-joo73f:last-child {
  margin-bottom: 0;
}
.radiobutton.svelte-joo73f:active {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}
.radiobutton.--selected.svelte-joo73f {
  background: var(--infoBox);
  border: solid 1px var(--primary);
}.selector.svelte-1b1wsr {
  background: var(--white);
  width: 100%;
}.spinner.svelte-jxbss5 {
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--backgroundMain);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  top: 0;
  left: 0;
}
.spinner.--tiny.svelte-jxbss5 {
  width: 50px !important;
  height: 50px !important;
  left: 0 !important;
  top: 0 !important;
  position: relative !important;
  background: transparent;
  justify-content: center;
  align-items: center;
}
.spinner.svelte-jxbss5 span:where(.svelte-jxbss5) {
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-top: 1px solid var(--black);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 1s linear infinite;
}
.spinner.svelte-jxbss5 p:where(.svelte-jxbss5) {
  font-size: 13px;
  margin-top: 10px;
  color: var(--grey);
  white-space: nowrap;
}.toast.svelte-gt7j90 {
  position: fixed;
  top: 20px;
  width: calc(100% - 40px);
  left: 20px;
  background-color: #333;
  color: white;
  padding: 10px 20px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  border-radius: 10px;
  opacity: 0;
  animation: showTopAnim 0.3s forwards;
}
.toast.--iOS.svelte-gt7j90 {
  top: 80px;
}
.toast.--success.svelte-gt7j90 {
  background: var(--success);
}
.toast.--fail.svelte-gt7j90 {
  background: var(--error);
}
.toast.--error.svelte-gt7j90 {
  background-color: #E74C3C;
  color: #fff;
}
.toast.--info.svelte-gt7j90 {
  background-color: #3498DB;
  color: #fff;
}
.toast.--warning.svelte-gt7j90 {
  background-color: #F39C12;
  color: #fff;
}.dialog__overlay.svelte-2cgpo3 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.dialog__spinner.svelte-2cgpo3 {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  z-index: 10;
}
.dialog__modal.svelte-2cgpo3 {
  background: var(--white, #fff);
  padding: 30px 20px;
  border-radius: 12px;
  width: calc(100% - 40px);
  max-width: 350px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}
/* (unused) .dialog h2 {
  font-size: 18px;
}*/
.dialog__message.svelte-2cgpo3 {
  font-size: 16px;
  color: var(--black);
  margin-bottom: 30px;
}
.dialog__actions.svelte-2cgpo3 {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.dialog__btn.svelte-2cgpo3 {
  flex: 1;
  padding: 10px 0;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.dialog__btn.--ok.svelte-2cgpo3 {
  background: var(--primary, #007aff);
  color: #fff;
}
.dialog__btn.--cancel.svelte-2cgpo3 {
  background: var(--backgroundAside);
  color: #444;
}
.dialog__btn.--delete.svelte-2cgpo3 {
  background: var(--error) !important;
  color: var(--white) !important;
}
.dialog__btn.--third.svelte-2cgpo3 {
  background: var(--backgroundMain, #f9f9f9);
  color: var(--primary, #007aff);
  margin-top: 10px;
  width: 100%;
}
.dialog__btn.svelte-2cgpo3:active {
  opacity: 0.7;
}.googleOauth.svelte-cbz9j9 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: var(--black) !important;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.googleOauth.svelte-cbz9j9 i:where(.svelte-cbz9j9) {
  font-size: 20px;
  color: var(--black);
}

.error.svelte-cbz9j9 {
  color: var(--secondary, #e74c3c);
  font-size: 14px;
  margin: 15px 0;
}
.emailAndPwd.svelte-1aot8x4 input:where(.svelte-1aot8x4) {
  background: var(--backgroundAside);
}

.termsContainer.svelte-1aot8x4 {
  width: 100%;
  margin: 15px 0;
}

.terms.svelte-1aot8x4 {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.4;
  gap: 10px;
  cursor: pointer;
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4) {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid var(--primary, #2ecc71);
  border-radius: 4px;
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4):checked {
  background: var(--primary, #2ecc71);
  border-color: var(--primary, #2ecc71);
}

.terms.svelte-1aot8x4 input[type=checkbox]:where(.svelte-1aot8x4):checked::after {
  content: "✔";
  color: white;
  font-size: 12px;
}

.terms.svelte-1aot8x4 a:where(.svelte-1aot8x4) {
  color: var(--primary, #2ecc71);
  text-decoration: underline;
  font-weight: 500;
}

.error.svelte-1aot8x4 {
  color: var(--secondary, #e74c3c);
  font-size: 14px;
  margin: 15px 0;
}.header.svelte-wdtlhe {
  width: 100%;
  padding: 20px 10px;
  background: var(--backgorundMain);
  position: fixed;
  top: 0;
  transition: all 0.3s;
  z-index: 1000;
}
.header.--scrolling.svelte-wdtlhe {
  backdrop-filter: blur(30px);
  transition: all 0.6s;
}
.header.--scrolling.svelte-wdtlhe p:where(.svelte-wdtlhe) {
  opacity: 1;
  transition: all 0.6s;
}
.header.--scrolling.svelte-wdtlhe .header__h2:where(.svelte-wdtlhe) {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
/* (unused) .header.--iOS {
  padding-top: 50px;
}*/
/* (unused) .header.--iOS .header__returnButton {
  top: 53px;
}*/
.header__returnButton.svelte-wdtlhe {
  position: absolute;
  left: 19px;
  background: none;
  color: var(--black);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  top: 22px;
  padding: 0 !important;
  z-index: 100;
}
.header.svelte-wdtlhe button:where(.svelte-wdtlhe) {
  z-index: 100;
}
.header.svelte-wdtlhe p:where(.svelte-wdtlhe) {
  opacity: 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  transition: all 0.3s;
}
.header__h2.svelte-wdtlhe {
  opacity: 1;
  position: absolute;
  left: 19px;
  display: flex;
  top: 40px;
  width: 100%;
  transition: all 0.3s;
  transition-delay: 0.1s;
  line-height: normal;
  max-width: 100%;
  padding: 0 40px;
}.section.svelte-16ti6ag {
  width: 100%;
  padding: 10px;
  margin: 82px auto;
  background: var(--white);
  max-width: 600px;
  border-radius: 20px;
}
.section.--iOS.svelte-16ti6ag {
  margin-top: 120px;
}
.section.svelte-16ti6ag .--fixedBtn:where(.svelte-16ti6ag) {
  width: calc(100% - 20px);
  position: fixed;
  bottom: 20px;
  left: calc(50% - 300px);
  padding: 20px;
  background: var(--black);
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .section.svelte-16ti6ag .--fixedBtn:where(.svelte-16ti6ag) {
    bottom: 50px;
  }
}
.section__content.svelte-16ti6ag {
  width: 100%;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  border-bottom: solid 2px var(--backgroundAside);
  max-width: 600px !important;
}
/* (unused) .section__content input {
  background: var(--backgroundAside);
}*/.menu__section.svelte-560yom {
  background: var(--white);
  border-radius: 12px;
  padding: 0 10px;
  border-bottom: solid 2px var(--backgroundAside);
  margin: 10px 0 0;
}
.menu.svelte-560yom .--last:where(.svelte-560yom) {
  border-bottom: 0 !important;
}
.menu__item.svelte-560yom a:where(.svelte-560yom) {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 15px;
  font-weight: 600;
  color: #1d1147;
  border-bottom: solid 1px var(--border);
}
.menu__item.svelte-560yom a:where(.svelte-560yom):active {
  color: var(--primary);
}
.menu__item.svelte-560yom a:where(.svelte-560yom) p:where(.svelte-560yom) {
  font-weight: 500;
  font-size: 14px;
}
.menu__icon.svelte-560yom {
  font-size: 20px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}.langSelector.svelte-1tk7klh {
  width: 100%;
  position: relative;
  margin-bottom: 12px;
}
/* (unused) .langSelector__label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 0.9rem;
  color: #555;
}*/
.langSelector__select.svelte-1tk7klh {
  padding: 15px 10px;
  border-radius: 5px;
  background: white;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 2;
}
.langSelector__select.svelte-1tk7klh div:where(.svelte-1tk7klh) {
  display: flex;
  align-items: center;
  gap: 10px;
}
.langSelector__select.svelte-1tk7klh span:where(.svelte-1tk7klh) {
  width: 30px;
  height: 30px;
  display: block;
  background-size: 130%;
  border-radius: 50%;
  background-position: center;
}
.langSelector__langs.svelte-1tk7klh {
  background: white;
  position: fixed;
  width: calc(100% - 20px);
  transform: translate(0, 50%);
  top: 10px;
  z-index: 2;
  border-radius: 20px;
  left: 10px;
  padding: 20px;
}
.langSelector__langs.svelte-1tk7klh li:where(.svelte-1tk7klh) {
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 17px;
}
.langSelector__langs.svelte-1tk7klh li:where(.svelte-1tk7klh):hover {
  background: #f0f0f0;
}
.langSelector__langs.svelte-1tk7klh img:where(.svelte-1tk7klh) {
  width: 24px;
  height: 24px;
}
.langSelector__foreground.svelte-1tk7klh {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1;
}.help.svelte-13zoru2 {
  display: flex;
  gap: 40px;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 {
    flex-direction: column;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) {
  width: 250px !important;
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 ul:where(.svelte-13zoru2) {
    width: 100% !important;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2) {
  border: solid 1px var(--border);
  border-radius: var(--radius);
  padding: 10px 15px;
  cursor: pointer;
}
@media only screen and (max-width: 700px) {
  .help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2) {
    width: 100% !important;
  }
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li:where(.svelte-13zoru2):hover {
  background: var(--backgroundMain);
}
.help.svelte-13zoru2 ul:where(.svelte-13zoru2) li.--active:where(.svelte-13zoru2) {
  color: var(--white);
  background: var(--black);
}
.help__images.svelte-13zoru2 {
  width: 100%;
}
.help__images.svelte-13zoru2 img:where(.svelte-13zoru2) {
  width: 100%;
  border-radius: var(--radius);
  border: solid 1px var(--border);
  margin-top: 30px;
}
.help__imageContent.svelte-13zoru2 {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
:root {
  --white: #ffffff;
  --black: #111111;
  --primary: #4ce39d;
  --border: #e5e7eb;
  --backgroundMain: #fafbfc;
  --text: #3a3d40;
  --subtleText: #7b8087;
  --radius: 22px;
  /* ← BORDES GRANDES */
}

.referrals__title.svelte-12zbn74 {
  width: 50%;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ========== CONTENEDOR PRINCIPAL ========== */
.referrals.svelte-12zbn74 {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}
.referrals__header.svelte-12zbn74 {
  position: absolute;
  display: flex;
  align-items: center;
  right: 20px;
  top: 30px;
  gap: 15px;
}
.referrals__header.svelte-12zbn74 i:where(.svelte-12zbn74) {
  font-size: 24px;
  color: var(--darkGrey);
  cursor: pointer;
  transition: 0.2s;
}
.referrals__header.svelte-12zbn74 i:where(.svelte-12zbn74):hover {
  color: var(--black);
}

/* ========== PERFIL ARRIBA ========== */
.referralsProfile.svelte-12zbn74 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}
.referralsProfile.svelte-12zbn74:hover {
  background: #f2f4f6;
}
.referralsProfile.svelte-12zbn74 img:where(.svelte-12zbn74) {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.referralsProfile.svelte-12zbn74 span:where(.svelte-12zbn74) {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

/* ========== CARD BASE ========== */
/* (unused) .card,*/ .referrals__products.svelte-12zbn74, .referrals__stripe.svelte-12zbn74, .referrals__dashboard.svelte-12zbn74, .referrals__qrLink.svelte-12zbn74 {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

/* ========== REFERRAL INPUT ========== */
.referrals__qrLink.svelte-12zbn74 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.referrals__qrLink.svelte-12zbn74 .inputLabel:where(.svelte-12zbn74) {
  flex: 1;
}
.referrals__qrLink.svelte-12zbn74 .inputLabel:where(.svelte-12zbn74) label:where(.svelte-12zbn74) {
  font-size: 13px;
  color: var(--subtleText);
  margin-bottom: 6px;
  display: block;
}
.referrals__qrLink.svelte-12zbn74 .inputLabel:where(.svelte-12zbn74) input:where(.svelte-12zbn74) {
  width: 100%;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0 14px;
  font-size: 15px;
  font-weight: 600;
}
.referrals__qrLink.svelte-12zbn74 .referrals__qrIcons:where(.svelte-12zbn74) {
  display: flex;
  gap: 5px;
}

/* Icon buttons */
.iconAction.svelte-12zbn74 {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.18s;
}
.iconAction.svelte-12zbn74 i:where(.svelte-12zbn74) {
  font-size: 18px;
}
.iconAction.svelte-12zbn74:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #f0fff7;
}
.iconAction.svelte-12zbn74 p:where(.svelte-12zbn74) {
  display: none;
  position: absolute;
  top: -32px;
  background: var(--black);
  color: var(--white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
}
.iconAction.svelte-12zbn74:hover p:where(.svelte-12zbn74) {
  display: block;
}

/* ========== BOTONES ========== */
.button.svelte-12zbn74 {
  border-radius: var(--radius);
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  border: none;
  transition: 0.18s;
}

.button.--primary.svelte-12zbn74 {
  background: var(--primary);
  color: var(--white);
}
.button.--primary.svelte-12zbn74:hover {
  filter: brightness(0.92);
}

.button.--secondary.svelte-12zbn74 {
  background: var(--white);
  border: 2px solid var(--primary);
  color: var(--primary);
}
.button.--secondary.svelte-12zbn74:hover {
  background: #e8fdf3;
}

.button.--success.svelte-12zbn74 {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
}

.button.--delete.svelte-12zbn74 {
  background: none;
  border: none;
  color: #d9534f;
}

/* Alineación de botones editar código */
.referrals__qrLink.editing.svelte-12zbn74 .referrals__buttons:where(.svelte-12zbn74) {
  margin-left: auto;
  display: flex;
  gap: 12px;
}

/* ========== MÉTRICAS ========== */
.referrals__dashboard.svelte-12zbn74 h4:where(.svelte-12zbn74) {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 600;
}

.referrals__metrics.svelte-12zbn74 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metricBox.svelte-12zbn74 {
  background: var(--backgroundMain);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
}

.metricValue.svelte-12zbn74 {
  font-size: 30px;
  font-weight: 700;
  color: var(--primary);
}

.metricLabel.svelte-12zbn74 {
  font-size: 13px;
  color: var(--subtleText);
}

/* ========== STRIPE ========== */
.referrals__stripe.svelte-12zbn74 {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.referrals__stripe.svelte-12zbn74 .referrals__buttons:where(.svelte-12zbn74) {
  display: flex;
  gap: 12px;
}

/* ========== PRODUCTOS ========== */
.referrals__products.svelte-12zbn74 ul:where(.svelte-12zbn74) {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
}

.referrals__products.svelte-12zbn74 ul:where(.svelte-12zbn74) li:where(.svelte-12zbn74) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.prodInfo.svelte-12zbn74 {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 60%;
}

.prodInfo.svelte-12zbn74 img:where(.svelte-12zbn74) {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  object-fit: cover;
}

.prodText.svelte-12zbn74 strong:where(.svelte-12zbn74) {
  font-size: 15px;
  font-weight: 600;
}

.prodText.svelte-12zbn74 span:where(.svelte-12zbn74) {
  color: var(--subtleText);
  font-size: 13px;
}

/* ========== SNACKBAR ========== */
.snackbar.svelte-12zbn74 {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  z-index: 9999;
}

/* ========== RESPONSIVE ========== */
/* ===== RESPONSIVE: CORREGIR LA SECCIÓN DEL CÓDIGO ===== */
@media (max-width: 640px) {
  .referrals__title.svelte-12zbn74 {
    font-size: 18px;
  }
  .referrals__qrLink.svelte-12zbn74 {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .referrals__qrLink.svelte-12zbn74 .inputLabel:where(.svelte-12zbn74) label:where(.svelte-12zbn74) {
    font-size: 11px;
  }
  .referrals__qrLink.svelte-12zbn74 .inputLabel:where(.svelte-12zbn74) input:where(.svelte-12zbn74) {
    font-size: 13px;
  }
  .referrals__qrLink.svelte-12zbn74 .referrals__qrIcons:where(.svelte-12zbn74) {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
  .referrals__qrLink.svelte-12zbn74 .referrals__qrIcons:where(.svelte-12zbn74) .iconAction:where(.svelte-12zbn74) {
    flex: 0 1 0 auto;
    height: 44px;
    border-radius: var(--radius);
    font-size: 16px;
    justify-content: center;
  }
  .referrals__qrIcons.svelte-12zbn74 .iconAction:where(.svelte-12zbn74) p:where(.svelte-12zbn74) {
    display: none !important;
    /* Evitamos tooltips feos en mobile */
  }
  /* Modo edición → Oculta iconos, muestra botones */
  .referrals__qrLink.editing.svelte-12zbn74 .referrals__qrIcons:where(.svelte-12zbn74) {
    display: none;
  }
  .referrals__qrLink.editing.svelte-12zbn74 .referrals__buttons:where(.svelte-12zbn74) {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
  .referrals__products.svelte-12zbn74 .button:where(.svelte-12zbn74) {
    padding: 15px 10px !important;
  }
  .snackbar.svelte-12zbn74 {
    font-size: 12px;
  }
  .referralsProfile.svelte-12zbn74 {
    top: 40px;
    max-width: 45%;
  }
  .referralsProfile.svelte-12zbn74 span:where(.svelte-12zbn74) {
    font-size: 12px;
  }
}.section__content.svelte-13dqfyf > li:where(.svelte-13dqfyf) {
  margin-bottom: 10px;
}

.section__selectorContent.svelte-13dqfyf {
  padding: 10px;
  background: var(--white);
  border-radius: 20px;
  margin-bottom: 20px;
}
/* (unused) .section__selectorContent .multipleselect__content {
  margin-bottom: 0;
}*/

/* (unused) .list label {
  display: none;
}*/
/* (unused) .list input {
  background: var(--white);
}*/
/* (unused) .list.listHours label {
  display: block;
}*/
/* (unused) .list.listHours .row {
  flex-direction: column;
  margin-bottom: 20px;
}*/
/* (unused) .list.listHours input {
  margin-bottom: 10px;
}*/
/* (unused) .list.listActivity label {
  display: block;
}*/
/* (unused) .list.listActivity .row {
  flex-direction: column;
  margin-bottom: 20px;
}*/
/* (unused) .list.listActivity .row input {
  margin-bottom: 10px;
}*/.userProfile.svelte-v9tean {
  background: var(--backgroundMain);
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  overflow: auto;
}
.userProfile.svelte-v9tean label:where(.svelte-v9tean) {
  display: block;
}
/* (unused) .userProfile .file {
  width: 100%;
  justify-content: center;
  margin-top: 20px;
}*/
/* (unused) .userProfile .file__image {
  width: 120px !important;
  height: 120px;
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--backgroundAside);
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}*/
.userProfile.svelte-v9tean .section__content:where(.svelte-v9tean) {
  padding: 0 20px;
  margin-bottom: 40px;
}
.userProfile.svelte-v9tean .section__content:where(.svelte-v9tean) input:where(.svelte-v9tean) {
  background: var(--backgroundAside);
}

.--remove.svelte-v9tean {
  border-radius: 10px;
  border-bottom: solid 1px var(--backgroundAside);
  padding: 20px;
  margin: 40px 0;
  background: var(--white);
}
.--remove.svelte-v9tean p:where(.svelte-v9tean) {
  color: var(--black);
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 15px;
}
.--remove.svelte-v9tean button:where(.svelte-v9tean) {
  width: 100%;
  background: var(--white);
  color: var(--error);
  border: solid 1px var(--error);
  border-radius: 100px;
}

/* (unused) .--restore {
  border-radius: 10px;
  padding: 20px;
  margin: 40px 0;
  background: var(--white);
  border-bottom: solid 1px var(--backgroundAside);
}*/
/* (unused) .--restore p {
  color: var(--black);
  font-weight: 400;
  margin-bottom: 15px;
  font-size: 15px;
}*/
/* (unused) .--restore button {
  width: 100%;
  background: var(--white);
  color: var(--black);
  border: solid 1px var(--black);
  border-radius: 100px;
}*/

.section__content.svelte-v9tean .--remove:where(.svelte-v9tean) {
  margin-top: 24px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}
.section__content.svelte-v9tean .--remove:where(.svelte-v9tean) p:where(.svelte-v9tean) {
  color: #c0392b;
  font-weight: 600;
  margin-bottom: 8px;
}
.section__content.svelte-v9tean .--delete:where(.svelte-v9tean) {
  background: transparent;
  color: #c0392b;
  border: 1px solid #c0392b;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
}
.section__content.svelte-v9tean .--logout:where(.svelte-v9tean) {
  margin-top: 12px;
}
.section__content.svelte-v9tean .--logoutBtn:where(.svelte-v9tean) {
  width: 100%;
  background: transparent;
  color: #444;
  border: 1px solid #bbb;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s;
}
.section__content.svelte-v9tean .--logoutBtn:where(.svelte-v9tean):hover {
  background: #f4f4f4;
}.settings.svelte-1hc66hr {
  width: 100%;
  height: 100%;
  position: fixed;
  background: var(--backgroundMain);
}.frame__content.svelte-1rov0ac {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: auto;
  padding: 20px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
  margin-top: 20px;
  font-size: 15px;
  line-height: 24px;
  margin-top: 35px;
}
/* (unused) .frame__content img {
  width: 100% !important;
}*/
/* (unused) .frame img {
  width: 100% !important;
}*/

/* (unused) img {
  width: 100% !important;
}*/.configurationPage.svelte-1n4wx8s {
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
}

/* (unused) .configurationPage__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}*/

/* (unused) .configurationPage__title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  letter-spacing: normal !important;
}*/

/* (unused) .configurationPage__close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #4ce39d;
}*/

.configurationPage__group.svelte-1n4wx8s {
  margin-bottom: 1.5rem;
  padding-right: 10;
}

.configurationPage__groupTitle.svelte-1n4wx8s {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #666;
}

.configurationPage__item.svelte-1n4wx8s {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.switch.svelte-1n4wx8s {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}

.switch.svelte-1n4wx8s input:where(.svelte-1n4wx8s) {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.svelte-1n4wx8s {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  border-radius: 24px;
  transition: 0.4s;
}

.slider.svelte-1n4wx8s:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input.svelte-1n4wx8s:checked + .slider:where(.svelte-1n4wx8s) {
  background-color: #4ce39d;
}

input.svelte-1n4wx8s:checked + .slider:where(.svelte-1n4wx8s):before {
  transform: translateX(18px);
}

.configurationPage__select.svelte-1n4wx8s {
  padding: 0.4rem;
  font-size: 0.9rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: white;
  color: #333;
}html,
body,
#app {
  background: transparent !important;
  margin: 0;
  padding: 0;
  background: #fefefe;
  font-family: "Inter", "Helvetica Neue", sans-serif;
}

/* (unused) .splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #f2f2f2);
  animation: fadeIn 0.5s ease-out;
}*/

/* (unused) .splash__logo {
  width: 65px;
  height: auto;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.05));
  animation: popIn 0.8s ease;
}*/

/* (unused) .splash__text h1 {
  font-size: 20px;
  font-weight: 600;
  color: #222;
  line-height: initial;
  letter-spacing: normal; /* o 0.05em *\/
  margin-bottom: 10px;
}*/

/* (unused) .splash__text p {
  font-size: 14px;
  color: #555;
  opacity: 0.8;
  letter-spacing: normal; /* o 0.05em *\/
}*/

@keyframes svelte-57909s-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes svelte-57909s-popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}