/* [project]/src/app/[locale]/dashboard/myinfo.css [app-client] (css) */
.rb-myinfo {
  gap: 28px;
  width: 100%;
  max-width: 640px;
}

.rb-myinfo-avatar {
  border-radius: var(--rb-radius-pill);
  width: 84px;
  height: 84px;
  box-shadow: 0 0 0 3px var(--rb-surface-invert), 0 0 0 4px #00000026;
  background: #0a0a0a0f;
  flex-shrink: 0;
  overflow: hidden;
}

.rb-myinfo-avatar img {
  object-fit: cover;
}

.rb-myinfo-avatar-ico {
  color: #0a0a0a52;
  width: 50px;
  height: auto;
}

.rb-myinfo-photo-label {
  font-size: 13px;
  font-weight: var(--rb-fw-medium);
  color: var(--rb-ink-on-light);
}

.rb-myinfo-grid {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  display: grid;
}

.rb-phone-code {
  flex-shrink: 0;
  width: auto;
}

.rb-myinfo-subtitle {
  font-family: var(--rb-font-display);
  letter-spacing: var(--rb-tracking-brand);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 650;
  font-stretch: expanded;
}

.rb-myinfo-hint {
  color: var(--rb-ink-ghost);
  font-size: 13px;
  font-weight: 350;
}

.rb-address {
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-md);
  transition: border-color var(--rb-dur-fast) var(--rb-ease);
  margin: 0;
  padding: 16px;
}

.rb-address.is-default {
  border-color: #d11d4a73;
  box-shadow: 0 0 0 1px #d11d4a2e;
}

.rb-address-label {
  width: auto;
  max-width: 200px;
  font-weight: var(--rb-fw-medium);
}

.rb-address-default-tag {
  border-radius: var(--rb-radius-pill);
  background: var(--rb-ruby);
  color: var(--rb-white);
  font-size: 11px;
  font-weight: var(--rb-fw-medium);
  letter-spacing: var(--rb-tracking-brand);
  text-transform: uppercase;
  flex-shrink: 0;
  padding: 4px 10px;
}

.rb-address-grid {
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  display: grid;
}

.rb-address-grid > :nth-child(2) {
  grid-column: 1 / -1;
}

.rb-address-actions {
  justify-content: flex-end;
}

.rb-myinfo-savebar {
  padding-top: 4px;
}

.rb-myinfo-saved {
  color: var(--rb-success);
  font-size: 13px;
  font-weight: var(--rb-fw-medium);
}

.rb-datepicker {
  width: 100%;
  position: relative;
}

.rb-datepicker-trigger {
  text-align: left;
  cursor: pointer;
  width: 100%;
}

.rb-datepicker-trigger.is-placeholder {
  color: var(--rb-ink-faint);
}

.rb-datepicker-pop {
  z-index: var(--rb-z-overlay);
  background: var(--rb-white);
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-md);
  width: 300px;
  max-width: calc(100vw - 40px);
  box-shadow: var(--rb-shadow-md);
  color: var(--rb-ink-on-light);
  padding: 14px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
}

.rb-datepicker-nav {
  border-radius: var(--rb-radius-sm);
  width: 32px;
  height: 32px;
  color: var(--rb-ink-on-light);
  cursor: pointer;
  transition: background var(--rb-dur-fast) var(--rb-ease);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

.rb-datepicker-nav:hover {
  background: #0000000d;
}

.rb-datepicker-select {
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-sm);
  background: var(--rb-white);
  color: var(--rb-ink-on-light);
  font-family: var(--rb-font-display);
  font-size: 13px;
  font-weight: var(--rb-fw-medium);
  cursor: pointer;
  padding: 6px 8px;
}

.rb-datepicker-grid {
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  width: 100%;
  display: grid;
}

.rb-datepicker-wd {
  text-align: center;
  font-size: 11px;
  font-weight: var(--rb-fw-medium);
  color: var(--rb-ink-faint);
  padding-bottom: 4px;
}

.rb-datepicker-day {
  aspect-ratio: 1;
  border-radius: var(--rb-radius-sm);
  color: var(--rb-ink-on-light);
  cursor: pointer;
  transition: background var(--rb-dur-fast) var(--rb-ease);
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  display: inline-flex;
}

.rb-datepicker-day:hover {
  background: #0000000f;
}

.rb-datepicker-day.is-selected {
  background: var(--rb-ruby);
  color: var(--rb-white);
  font-weight: var(--rb-fw-medium);
}

.rb-datepicker-day:disabled {
  color: var(--rb-ink-faint);
  opacity: .4;
  cursor: not-allowed;
}

.rb-datepicker-day:disabled:hover {
  background: none;
}

@media (max-width: 640px) {
  .rb-myinfo-grid, .rb-address-grid {
    grid-template-columns: 1fr;
  }
}

/* [project]/src/design-system/Container/Container.module.css [app-client] (css) */
.Container-module__V7bQUq__container {
  width: 100%;
  padding-inline: var(--rb-gutter);
  margin-inline: auto;
}

.Container-module__V7bQUq__default {
  max-width: var(--rb-container);
}

.Container-module__V7bQUq__narrow {
  max-width: var(--rb-container-narrow);
}

.Container-module__V7bQUq__full {
  max-width: none;
}

.Container-module__V7bQUq__bleed {
  padding-inline: 0;
}

/* [project]/src/design-system/Badge/Badge.module.css [app-client] (css) */
.Badge-module__tFvXSW__badge {
  align-items: center;
  gap: var(--rb-space-1);
  border-radius: var(--rb-radius-xs);
  font-family: var(--rb-font-display);
  font-size: var(--rb-text-xs);
  font-weight: var(--rb-fw-medium);
  text-transform: uppercase;
  letter-spacing: var(--rb-tracking-wide);
  padding: 4px 10px;
  line-height: 1;
  display: inline-flex;
}

.Badge-module__tFvXSW__t-sale {
  background: var(--rb-ruby);
  color: var(--rb-white);
}

.Badge-module__tFvXSW__t-new {
  background: var(--rb-white);
  color: var(--rb-ink-on-light);
}

.Badge-module__tFvXSW__t-gold {
  background: var(--rb-gold);
  color: var(--rb-ink-on-light);
}

.Badge-module__tFvXSW__t-neutral {
  background: var(--rb-surface-3);
  color: var(--rb-ink-muted);
}

/* [project]/src/design-system/Skeleton/Skeleton.module.css [app-client] (css) */
.Skeleton-module__hVSmsq__skeleton {
  background: var(--rb-surface-3);
  position: relative;
  overflow: hidden;
}

.Skeleton-module__hVSmsq__skeleton:after {
  content: "";
  animation: Skeleton-module__hVSmsq__shimmer 1.4s var(--rb-ease) infinite;
  background: linear-gradient(90deg, #fff0 0%, #ffffff0f 50%, #fff0 100%);
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
}

@keyframes Skeleton-module__hVSmsq__shimmer {
  100% {
    transform: translateX(100%);
  }
}

/* [project]/src/design-system/Avatar/Avatar.module.css [app-client] (css) */
.Avatar-module__ZYOtkq__avatar {
  border-radius: var(--rb-radius-pill);
  transition: background-color .25s var(--rb-ease);
  flex: none;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  overflow: hidden;
}

.Avatar-module__ZYOtkq__t-dark {
  color: var(--rb-ink);
  background: #ffffff1a;
}

.Avatar-module__ZYOtkq__t-dark:hover {
  background: #ffffff40;
}

.Avatar-module__ZYOtkq__t-light {
  color: var(--rb-ink-on-light);
  background: #0000000d;
}

.Avatar-module__ZYOtkq__t-light:hover {
  background: #0000001a;
}

.Avatar-module__ZYOtkq__avatar svg {
  fill-opacity: .25;
  transition: fill-opacity .25s var(--rb-ease);
}

.Avatar-module__ZYOtkq__avatar:hover svg {
  fill-opacity: .5;
}

.Avatar-module__ZYOtkq__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: scale .15s var(--rb-ease);
}

.Avatar-module__ZYOtkq__avatar:hover .Avatar-module__ZYOtkq__img {
  scale: 1.1;
}

/* [project]/src/app/[locale]/dashboard/help.css [app-client] (css) */
.rb-help {
  gap: 28px;
  width: 100%;
  max-width: 720px;
}

.rb-help-intro {
  max-width: 560px;
}

.rb-help-cats {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  display: grid;
}

.rb-help-cat {
  text-align: left;
  border: 1px solid var(--rb-line-on-light);
  border-radius: var(--rb-radius-md);
  width: 100%;
  color: var(--rb-ink-on-light);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color var(--rb-dur-fast) var(--rb-ease),
    background var(--rb-dur-fast) var(--rb-ease);
  background: none;
  padding: 16px;
}

.rb-help-cat:hover {
  background: #00000005;
  border-color: #0000003d;
}

.rb-help-cat:focus-visible {
  outline: 2px solid var(--rb-ruby);
  outline-offset: 2px;
}

.rb-help-cat-ico {
  border-radius: var(--rb-radius-sm);
  width: 40px;
  height: 40px;
  color: var(--rb-ruby);
  background: #d11d4a14;
  flex-shrink: 0;
}

.rb-help-cat-title {
  font-family: var(--rb-font-display);
  font-weight: var(--rb-fw-medium);
  letter-spacing: var(--rb-tracking-brand);
  font-size: 14px;
  line-height: 120%;
}

.rb-help-cat-blurb {
  letter-spacing: var(--rb-tracking-brand);
  color: var(--rb-ink-ghost);
  font-size: 12px;
  line-height: 140%;
}

.rb-help-cat-chev {
  color: var(--rb-ink-faint);
  flex-shrink: 0;
  transform: rotate(-90deg);
}

.rb-help-back {
  min-height: 36px;
  color: var(--rb-ink-ghost);
  cursor: pointer;
  font-family: var(--rb-font-display);
  font-size: 12px;
  font-weight: var(--rb-fw-medium);
  letter-spacing: var(--rb-tracking-brand);
  text-transform: uppercase;
  transition: color var(--rb-dur-fast) var(--rb-ease);
  background: none;
  border: none;
  padding: 4px 0;
}

.rb-help-back:hover {
  color: var(--rb-ink-on-light);
}

.rb-help-back-chev {
  flex-shrink: 0;
  transform: rotate(90deg);
}

.rb-help-cat-head {
  align-items: center;
}

.rb-help-faqs {
  border-top: 1px solid var(--rb-line-on-light);
}

.rb-help-faq {
  border-bottom: 1px solid var(--rb-line-on-light);
}

.rb-help-faq-q {
  text-align: left;
  width: 100%;
  min-height: 56px;
  color: var(--rb-ink-on-light);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: none;
  border: none;
  padding: 16px 0;
}

.rb-help-faq-qtext {
  font-family: var(--rb-font-display);
  font-weight: var(--rb-fw-medium);
  letter-spacing: var(--rb-tracking-brand);
  font-size: 14px;
  line-height: 135%;
}

.rb-help-faq-chev {
  color: var(--rb-ink-faint);
  transition: transform var(--rb-dur-fast) var(--rb-ease);
  flex-shrink: 0;
}

.rb-help-faq.is-open .rb-help-faq-chev {
  color: var(--rb-ink-on-light);
  transform: rotate(180deg);
}

.rb-help-faq-panel {
  max-height: 0;
  transition: max-height var(--rb-dur) var(--rb-ease);
  overflow: hidden;
}

.rb-help-faq.is-open .rb-help-faq-panel {
  max-height: 480px;
}

.rb-help-faq-a {
  max-width: 600px;
  padding: 0 0 18px;
  line-height: 155%;
}

@media (max-width: 640px) {
  .rb-help-cats {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_1eqnok3._.css.map*/