@import "https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&family=Lato:wght@400;700;900&family=Pacifico&display=swap";
/* [project]/styles/globals.css [app-client] (css) */
:root {
  --canvas: #ededed;
  --panel: #fff;
  --ink: #111;
  --muted: #576071;
  --line: #ddd;
  --accent: #f2a56d;
  --accent-strong: #eb9558;
  --accent-soft: #ffe4cf;
  --accent-shadow: #eb955838;
  --ocean: #5f8f9c;
}

* {
  box-sizing: border-box;
}

body {
  color: var(--ink);
  background: radial-gradient(circle at 8% 6%, #fff7f0 0%, transparent 38%), radial-gradient(circle at 92% 4%, #ffecd9 0%, transparent 34%), var(--canvas);
  margin: 0;
  font-family: Lato, Lucida Sans, Lucida Sans Unicode, Segoe UI, sans-serif;
}

.page-transition {
  animation: .25s ease-out pageTransitionIn;
}

@keyframes pageTransitionIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loader-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  min-height: 140px;
  padding: 2.5rem 1rem;
  display: flex;
}

.loader-inline {
  align-items: center;
  gap: .6rem;
  display: inline-flex;
}

.loader-spinner {
  border: 3px solid var(--line);
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: .7s linear infinite loaderSpin;
}

.loader-inline .loader-spinner {
  border-width: 2px;
  width: 22px;
  height: 22px;
}

.loader-message {
  color: var(--muted);
  margin: 0;
  font-size: .95rem;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

.landing-page {
  min-height: 100vh;
}

.lang-en {
  font-family: Lato, Lucida Sans, Lucida Sans Unicode, Segoe UI, sans-serif;
}

.lang-ar {
  font-family: Cairo, Tahoma, Segoe UI, sans-serif;
}

.page-container {
  width: min(1240px, 94%);
  margin: 0 auto;
}

.brand-mark {
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
}

.logo-text {
  color: #3a3a3a;
  font-family: Pacifico, cursive;
  font-size: 1.75rem;
  line-height: 1;
}

.site-header {
  z-index: 20;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: #ffffffe0;
  border-bottom: 1px solid #1212120f;
  position: sticky;
  top: 0;
  box-shadow: 0 1px #fffc;
}

.header-ribbon {
  background: linear-gradient(90deg, var(--accent) 0%, var(--ocean) 50%, var(--accent) 100%);
  height: 4px;
}

.header-inner {
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 72px;
  display: flex;
}

.header-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: .6rem;
  display: flex;
}

.header-nav {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.header-nav-links {
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.nav-link {
  color: var(--ink);
  border-radius: 8px;
  padding: .5rem .9rem;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.nav-link:hover {
  color: var(--ink);
  background: #0000000a;
}

.nav-link.nav-btn {
  cursor: pointer;
  background: none;
  border: 0;
  font-family: inherit;
}

.nav-link-cta {
  background: var(--accent);
  box-shadow: 0 2px 10px var(--accent-shadow);
  color: #fff !important;
}

.nav-link-cta:hover {
  background: var(--accent-strong);
  color: #fff !important;
}

.header-panel {
  background: #ffffffad;
  border: 1px solid #5f8f9c33;
  border-radius: 999px;
  padding: .35rem;
}

.cta-btn {
  color: var(--ink);
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding: .65rem 1.05rem;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
  display: inline-flex;
}

.cta-btn:hover {
  transform: translateY(-1px);
}

.cta-btn.ghost {
  background: #ffffffe6;
  border-color: #11111124;
}

.cta-btn.solid, .cta-btn.accent {
  background: var(--accent);
  box-shadow: 0 7px 18px var(--accent-shadow);
}

.cta-btn.solid:hover, .cta-btn.accent:hover {
  background: var(--accent-strong);
}

.lang-switch {
  border: 1px solid var(--line);
  background: #ffffffd9;
  border-radius: 8px;
  align-items: center;
  gap: .2rem;
  margin-left: .5rem;
  padding: .25rem .35rem;
  display: inline-flex;
}

.lang-btn {
  color: #5d6370;
  cursor: pointer;
  background: none;
  border: 0;
  border-radius: 999px;
  padding: .32rem .52rem;
  font-size: .78rem;
  font-weight: 700;
}

.lang-btn.active {
  background: color-mix(in oklab, var(--ocean) 28%, white);
  color: #244a55;
}

.header-burger-wrap {
  position: relative;
}

.header-burger-btn {
  width: 44px;
  height: 44px;
  color: var(--ink);
  cursor: pointer;
  background: #ffffffe6;
  border: 1px solid #1111111f;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  transition: background .2s, border-color .2s;
  display: inline-flex;
}

.header-burger-btn:hover {
  border-color: var(--accent-soft);
  background: #fff;
}

.header-burger-dropdown {
  border: 1px solid var(--line);
  z-index: 30;
  background: #fff;
  border-radius: 12px;
  min-width: 180px;
  padding: .5rem;
  animation: .18s ease-out headerDropdownIn;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  box-shadow: 0 10px 28px #0000001f;
}

.lang-ar .header-burger-dropdown {
  left: 0;
  right: auto;
}

@keyframes headerDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-burger-item {
  color: var(--ink);
  border-radius: 8px;
  padding: .6rem .75rem;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.header-burger-item:hover {
  background: var(--accent-soft);
}

.search-shell {
  padding: 1.8rem 0 1.1rem;
}

.search-box {
  border: 1px solid var(--line);
  background: #ffffffe6;
  border-radius: 20px;
  grid-template-columns: 1fr 1fr auto;
  align-items: end;
  gap: .72rem;
  padding: 1.2rem;
  display: grid;
}

.search-field {
  flex-direction: column;
  display: flex;
}

.search-field label {
  color: #4d5561;
  margin-bottom: .35rem;
  font-size: .82rem;
}

.search-field input {
  background: #fff;
  border: 1px solid #dbdde2;
  border-radius: 12px;
  height: 46px;
  padding: 0 .8rem;
  font-size: .94rem;
}

.hero-shell {
  padding: 3.8rem 0 2.6rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  pointer-events: none;
  opacity: .55;
  filter: blur(28px);
  background: var(--accent-soft);
  border-radius: 50%;
  width: 280px;
  height: 280px;
  position: absolute;
}

.hero-glow-top {
  top: -130px;
  right: -90px;
}

.hero-glow-bottom {
  bottom: -130px;
  left: -120px;
}

.hero-grid {
  z-index: 1;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 2rem;
  display: grid;
  position: relative;
}

.eyebrow {
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #81502f;
  margin: 0 0 .62rem;
  font-size: .78rem;
  font-weight: 700;
}

.hero-title {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.1;
}

.hero-copy {
  color: var(--muted);
  max-width: 58ch;
  margin: 1.05rem 0 0;
  font-size: 1rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.45rem;
  display: flex;
}

.hero-note {
  color: #686f7c;
  margin: .95rem 0 0;
  font-size: .9rem;
}

.pwa-card {
  background: linear-gradient(170deg, #fff6ef 0%, #fff 58%);
  border: 1px solid #efd4c2;
  border-radius: 22px;
  padding: 1.7rem;
  box-shadow: 0 10px 24px #0000000f;
}

.card-label {
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8b5a37;
  margin: 0;
  font-size: .75rem;
  font-weight: 700;
}

.pwa-card h2 {
  margin: .7rem 0 0;
  font-size: 1.45rem;
}

.pwa-list {
  color: #3f4652;
  margin: 1.1rem 0 1.2rem;
  padding-left: 1.05rem;
}

.pwa-list li {
  margin-bottom: .42rem;
}

.featured-shell {
  padding: 2.5rem 0 1.8rem;
}

.section-head {
  justify-content: space-between;
  align-items: baseline;
  gap: .6rem;
  margin-bottom: 1.1rem;
  display: flex;
}

.section-head h2 {
  margin: 0;
  font-size: 1.33rem;
}

.section-head a {
  color: var(--ocean);
  font-weight: 600;
  text-decoration: none;
}

.salons-page-section .section-head.salons-page-head {
  margin-bottom: 1.5rem;
  display: block;
}

.salons-page-head h1 {
  margin: 0 0 .35rem;
  font-size: 1.75rem;
}

.salons-grid {
  margin-top: .5rem;
}

.reviews-subtitle {
  color: #67707e;
  margin: 0;
  font-size: .9rem;
}

.featured-grid, .reviews-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
  display: grid;
}

.featured-card, .review-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
}

.salon-image {
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: 196px;
  margin-bottom: .72rem;
}

.featured-card .rating {
  color: #97562f;
  margin: 0 0 .35rem;
  font-size: .88rem;
  font-weight: 700;
}

.featured-card h3 {
  margin: 0 0 .38rem;
  font-size: 1.05rem;
}

.featured-card p {
  color: #3f4754;
  margin: 0 0 .35rem;
}

.featured-card span {
  color: #6b7280;
  font-size: .9rem;
}

.featured-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  display: block;
}

.featured-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #00000014;
}

.featured-card-cta {
  margin-top: .5rem;
  font-weight: 700;
  display: inline-block;
  color: var(--accent-strong) !important;
}

.section-subtitle {
  color: var(--muted);
  margin: .35rem 0 0;
  font-size: .95rem;
}

.section-cta {
  text-align: center;
  margin-top: 1.25rem;
}

.landing-no-data {
  color: var(--muted);
  text-align: center;
  padding: 2rem;
}

.landing-services-shell {
  background: linear-gradient(#ffe4cf59 0%, #0000 100%);
  padding: 2.5rem 0;
}

.landing-services-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  display: grid;
}

.landing-service-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow .2s, transform .2s;
  overflow: hidden;
}

.landing-service-card:hover {
  box-shadow: 0 8px 24px var(--accent-shadow);
}

.landing-service-card-inner {
  padding: 1.25rem;
}

.landing-service-card h3 {
  color: var(--ink);
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.landing-service-desc {
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 .5rem;
  font-size: .9rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.landing-service-meta {
  color: #6b7280;
  margin: 0 0 .35rem;
  font-size: .85rem;
}

.landing-service-price {
  color: var(--accent-strong);
  margin: 0 0 .75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.landing-service-cta {
  text-align: center;
  width: 100%;
  display: inline-block;
}

.landing-products-shell {
  padding: 2.5rem 0;
}

.landing-products-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  display: grid;
}

.landing-product-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: box-shadow .2s;
  overflow: hidden;
}

.landing-product-card:hover {
  box-shadow: 0 8px 24px #5f8f9c26;
}

.landing-product-card-inner {
  padding: 1.25rem;
}

.landing-product-card h3 {
  color: var(--ink);
  margin: 0 0 .5rem;
  font-size: 1.1rem;
}

.landing-product-desc {
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 0 .5rem;
  font-size: .9rem;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.landing-product-meta {
  color: #6b7280;
  margin: 0 0 .35rem;
  font-size: .85rem;
}

.landing-product-price {
  color: var(--ocean);
  margin: 0 0 .75rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.landing-product-cta {
  display: inline-block;
}

.book-flow {
  flex-direction: column;
  gap: 1rem;
  display: flex;
}

.book-services-list {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.book-service-chip {
  background: var(--panel);
  border: 1px solid var(--line);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: .35rem;
  padding: .5rem .75rem;
  font-size: .9rem;
  display: inline-flex;
}

.book-service-chip input {
  margin: 0;
}

.book-service-meta {
  color: var(--muted);
  font-size: .85rem;
}

.book-slots {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.book-slot-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
}

.book-tabs {
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.book-tab {
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  border-radius: 8px;
  padding: .5rem 1rem;
  font-size: .95rem;
}

.book-tab.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--ink);
}

.book-products-list {
  flex-direction: column;
  gap: .75rem;
  display: flex;
}

.book-product-row {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  padding: .75rem;
  display: flex;
}

.book-product-info {
  flex-direction: column;
  gap: .2rem;
  display: flex;
}

.book-product-name {
  font-weight: 600;
}

.book-product-meta {
  color: var(--muted);
  font-size: .85rem;
}

.book-product-qty input {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 4rem;
  padding: .35rem .5rem;
}

.book-slots-section {
  margin-top: 1rem;
}

.book-partner-slots {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 1rem;
  padding: 1rem;
}

.book-partner-slots strong {
  margin-bottom: .5rem;
  display: block;
}

.book-slot-row {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
  display: flex;
}

.book-slot-row input[type="date"] {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .5rem;
}

.user-bookings-empty {
  text-align: center;
  padding: 2rem;
}

.user-bookings-empty p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.user-bookings-list {
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.user-booking-card {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem;
}

.user-booking-card p {
  margin: 0 0 .35rem;
  font-size: .95rem;
}

.user-booking-salon, .user-booking-datetime, .user-booking-status {
  color: var(--ink);
}

.user-booking-services {
  color: var(--muted);
  font-size: .9rem;
}

.reviews-shell {
  padding: 1.5rem 0 3.6rem;
}

.review-card p {
  color: #404754;
  margin: 0 0 .8rem;
  line-height: 1.55;
}

.review-card strong {
  font-size: .94rem;
  display: block;
}

.review-card span {
  color: #6c7380;
  font-size: .86rem;
}

.review-user {
  align-items: center;
  gap: .72rem;
  display: flex;
}

.review-avatar {
  border: 1px solid #e3d6c6;
  border-radius: 50%;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.site-footer {
  background: radial-gradient(circle at 12% 10%, #5f8f9c1f, #0000 32%), linear-gradient(#fff9, #fafafaf2);
  border-top: 1px solid #12121214;
  padding: 0;
}

.footer-ribbon {
  background: linear-gradient(90deg, var(--accent) 0%, var(--ocean) 50%, var(--accent) 100%);
  height: 3px;
}

.footer-inner {
  padding: 2.5rem 0 1.5rem;
}

.footer-brand-block {
  grid-column: 1;
}

.footer-col h4 {
  color: var(--ink);
  margin: 0 0 .52rem;
  font-size: .95rem;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  padding-top: 1.25rem;
}

.footer-copyright {
  color: var(--muted);
  margin: 0;
  font-size: .8rem;
}

.partner-register-layout {
  min-height: 100vh;
}

.partner-dashboard-layout {
  min-height: 100vh;
  padding: 0;
}

.partner-dashboard-shell {
  background: #fff;
  border: 0;
  border-radius: 0;
  grid-template-columns: 270px 1fr;
  width: 100%;
  min-height: 100vh;
  display: grid;
  overflow: hidden;
}

.partner-dashboard-sidebar {
  background: linear-gradient(#fff2e8 0%, #fff 54%);
  border-right: 1px solid #e7ebf0;
  flex-direction: column;
  gap: 1rem;
  padding: 1.15rem .95rem .95rem;
  display: flex;
}

.sidebar-lang-switch {
  border-bottom: 1px solid #e7ebf0;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
  padding-bottom: .5rem;
  display: flex;
}

.sidebar-lang-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .75rem;
  font-weight: 700;
}

.sidebar-lang-buttons {
  gap: .25rem;
  display: flex;
}

.sidebar-lang-btn {
  color: var(--muted);
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 8px;
  padding: .25rem .5rem;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s;
}

.sidebar-lang-btn:hover {
  border-color: var(--accent-soft);
  color: var(--accent-strong);
}

.sidebar-lang-btn.active {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.partner-dashboard-brand p {
  color: #5c6572;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: .4rem 0 0;
  font-size: .8rem;
  font-weight: 700;
}

.partner-dashboard-nav {
  flex-direction: column;
  gap: .35rem;
  display: flex;
}

.partner-dashboard-link {
  color: #39414e;
  border: 1px solid #0000;
  border-radius: 12px;
  padding: .7rem .72rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}

.partner-dashboard-link:hover {
  background: #fff;
  border-color: #d2d9e2;
}

.partner-dashboard-link.active {
  color: #2d1d12;
  background: linear-gradient(90deg, #f7ae79 0%, #f2a56d 100%);
  border-color: #d483436b;
}

.partner-dashboard-signout {
  color: #833f16;
  cursor: pointer;
  background: #fff8f2;
  border: 1px solid #e8b895;
  border-radius: 12px;
  margin-top: auto;
  padding: .7rem;
  font-family: inherit;
  font-size: .92rem;
  font-weight: 700;
}

.partner-dashboard-signout:hover {
  background: #ffefe2;
}

.partner-dashboard-content {
  background: radial-gradient(circle at 90% 4%, #f2a56d33, #0000 28%), #fcfdff;
  padding: clamp(1.1rem, 2.4vw, 1.8rem);
}

.partner-dashboard-header h1 {
  margin: 0;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}

.partner-dashboard-header p {
  color: #5d6471;
  margin: .65rem 0 0;
}

.partner-dashboard-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
  display: grid;
}

.dashboard-overview-cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
  display: grid;
}

.dashboard-overview-card {
  background: linear-gradient(#fff 0%, #fffaf6 100%);
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  padding: .95rem;
  box-shadow: 0 7px 16px #1e232f0d;
}

.dashboard-overview-card p {
  color: #5a6270;
  margin: 0;
  font-size: .85rem;
}

.dashboard-overview-card strong {
  color: #1e2430;
  margin-top: .35rem;
  font-size: 1.6rem;
  line-height: 1.1;
  display: block;
}

.dashboard-overview-card span {
  color: #6a7280;
  margin-top: .45rem;
  font-size: .8rem;
  display: inline-block;
}

.dashboard-charts-grid, .dashboard-recent-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 1rem;
  display: grid;
}

.dashboard-panel {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  padding: .95rem;
  box-shadow: 0 10px 20px #1e232f0a;
}

.dashboard-panel-head {
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  margin-bottom: .8rem;
  display: flex;
}

.dashboard-panel-head h2 {
  margin: 0;
  font-size: 1rem;
}

.dashboard-panel-head span {
  color: #677080;
  font-size: .8rem;
}

.dashboard-bar-chart {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .6rem;
  height: 170px;
  display: grid;
}

.dashboard-bar-item {
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: .35rem;
  display: flex;
}

.dashboard-bar-item span {
  color: #656f7d;
  font-size: .74rem;
}

.dashboard-bar-track {
  background: #eff3f8;
  border-radius: 999px;
  align-items: flex-end;
  width: 100%;
  height: 130px;
  display: flex;
}

.dashboard-bar-fill {
  background: linear-gradient(#f7bf97 0%, #f2a56d 100%);
  border-radius: 999px;
  width: 100%;
  min-height: 10%;
}

.dashboard-line-chart {
  padding: .5rem .2rem 0;
}

.dashboard-line-chart svg {
  width: 100%;
  height: 130px;
}

.dashboard-line-stroke {
  fill: none;
  stroke: #5f8f9c;
  stroke-width: 6px;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.dashboard-line-labels {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: .35rem;
  display: grid;
}

.dashboard-line-labels span {
  text-align: center;
  color: #656f7d;
  font-size: .74rem;
}

.dashboard-orders-list {
  flex-direction: column;
  gap: .55rem;
  display: flex;
}

.dashboard-order-row {
  border: 1px solid #e8edf4;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  gap: .8rem;
  padding: .7rem;
  display: flex;
}

.dashboard-order-row strong {
  color: #29303d;
  font-size: .86rem;
}

.dashboard-order-row p {
  color: #677080;
  margin: .2rem 0 0;
  font-size: .76rem;
}

.dashboard-order-meta {
  flex-shrink: 0;
  align-items: center;
  gap: .5rem;
  display: flex;
}

.dashboard-order-meta span {
  color: #212937;
  font-size: .84rem;
  font-weight: 700;
}

.dashboard-order-meta em {
  border-radius: 999px;
  padding: .22rem .5rem;
  font-size: .72rem;
  font-style: normal;
  font-weight: 700;
}

.dashboard-order-meta em.ok {
  color: #13653b;
  background: #e8f9f0;
}

.dashboard-order-meta em.pending {
  color: #874500;
  background: #fff3e7;
}

.partner-dashboard-card {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 14px;
  padding: .95rem;
}

.partner-dashboard-card strong {
  color: #4c5462;
  margin-bottom: .35rem;
  font-size: .83rem;
  display: block;
}

.partner-dashboard-card span {
  color: #1f2631;
}

.partner-dashboard-card-wide {
  margin-top: 1rem;
}

.salon-detail-layout {
  min-height: 100vh;
}

.salon-detail-shell {
  background: radial-gradient(circle at 90% 4%, #f2a56d33, #0000 28%), #fcfdff;
  padding: clamp(1.1rem, 2.4vw, 1.8rem) 0 5rem;
}

.salon-detail-container {
  max-width: 900px;
  margin: 0 auto;
}

.salon-detail-header-row {
  margin-bottom: 1rem;
}

.salon-detail-back {
  font-size: .9rem;
}

.salon-detail-slider {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 7px 16px #1e232f0d;
}

.salon-detail-slider-inner {
  width: 100%;
  height: 320px;
  position: relative;
}

.salon-detail-slide {
  opacity: 0;
  transition: opacity .4s;
  position: absolute;
  inset: 0;
}

.salon-detail-slide.active {
  opacity: 1;
  z-index: 1;
}

.salon-detail-slide-img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.salon-detail-slider-dots {
  z-index: 2;
  gap: .5rem;
  display: flex;
  position: absolute;
  bottom: .75rem;
  left: 50%;
  transform: translateX(-50%);
}

.salon-detail-dot {
  cursor: pointer;
  background: #fff9;
  border: 0;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  transition: background .2s;
}

.salon-detail-dot.active {
  background: var(--accent);
}

.salon-detail-info {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

.salon-detail-title {
  margin: 0 0 .35rem;
  font-size: 1.5rem;
}

.salon-detail-meta, .salon-detail-owner {
  color: var(--muted);
  margin: .35rem 0 0;
  font-size: .95rem;
}

.salon-detail-map {
  margin-bottom: 1.25rem;
  padding: 1rem 1.25rem;
}

.salon-detail-map-title {
  margin: 0 0 .75rem;
  font-size: 1.1rem;
}

.salon-detail-map-iframe {
  border-radius: 12px;
  min-height: 280px;
  display: block;
}

.salon-detail-tabs {
  margin-bottom: 1rem;
}

.salon-detail-list {
  padding: 1rem 1.25rem;
}

.salon-detail-services-list, .salon-detail-products-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.salon-detail-service-row, .salon-detail-product-row {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  display: flex;
}

.salon-detail-service-row:last-child, .salon-detail-product-row:last-child {
  border-bottom: 0;
}

.salon-detail-service-info, .salon-detail-product-info {
  flex: 1;
  min-width: 0;
}

.salon-detail-service-info strong, .salon-detail-product-info strong {
  font-size: 1.05rem;
  display: block;
}

.salon-detail-service-info p, .salon-detail-product-info p {
  color: var(--muted);
  margin: .4rem 0 0;
  font-size: .9rem;
  line-height: 1.4;
}

.salon-detail-service-meta, .salon-detail-product-price {
  color: var(--accent-strong);
  margin-top: .35rem;
  font-size: .9rem;
  font-weight: 600;
  display: inline-block;
}

.salon-detail-product-qty input {
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 4rem;
  margin-left: .5rem;
  padding: .35rem .5rem;
}

.salon-detail-floating-bar {
  z-index: 30;
  background: linear-gradient(#fff2e8 0%, #fff 20%);
  border-top: 1px solid #e7ebf0;
  padding: .85rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: 0 -4px 20px #0000000f;
}

.salon-detail-floating-inner {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  display: flex;
}

.salon-detail-floating-total {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
}

.salon-detail-floating-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  display: flex;
}

.salon-detail-selected-slot {
  color: var(--muted);
  font-size: .9rem;
}

.salon-detail-modal-overlay {
  z-index: 50;
  background: #00000080;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: fixed;
  inset: 0;
}

.salon-detail-modal {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  padding: 1.5rem;
  overflow-y: auto;
}

.salon-detail-modal h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}

.salon-detail-calendar-wrap {
  margin-bottom: 1rem;
}

.salon-detail-calendar-wrap .fc {
  font-size: .9rem;
}

.salon-detail-slots-section {
  border-top: 1px solid var(--line);
  margin-top: 1rem;
  padding-top: 1rem;
}

.salon-detail-slots-section h3 {
  margin: 0 0 .75rem;
  font-size: 1rem;
}

.salon-detail-slots-list {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.salon-detail-modal-actions {
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.25rem;
  display: flex;
}

.partner-register-page {
  padding: 2.6rem 0 3.6rem;
}

.auth-page {
  justify-content: center;
  display: flex;
}

.partner-register-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  width: min(760px, 100%);
  padding: clamp(1.15rem, 2.6vw, 1.8rem);
  box-shadow: 0 10px 24px #14172014;
}

.partner-eyebrow {
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #7d5130;
  margin: 0 0 .5rem;
  font-size: .82rem;
  font-weight: 700;
}

.partner-register-card h1 {
  margin: 0 0 .8rem;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
}

.partner-register-card p {
  color: #5a6270;
  max-width: 72ch;
  margin: 0;
}

.partner-register-lead {
  margin-top: 1.1rem;
  font-size: .95rem;
}

.partner-step-minimal {
  margin-top: .85rem;
}

.partner-step-minimal-head {
  color: #5f6672;
  justify-content: space-between;
  margin-bottom: .42rem;
  font-size: .82rem;
  font-weight: 700;
  display: flex;
}

.partner-progress-track {
  background: #edf0f3;
  border-radius: 999px;
  width: 100%;
  height: 7px;
  overflow: hidden;
}

.partner-progress-fill {
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  border-radius: 999px;
  height: 100%;
  transition: width .24s;
  display: block;
}

.partner-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
  display: grid;
}

.partner-step-panel {
  animation: .22s partnerStepIn;
}

.partner-step-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  display: grid;
}

.partner-field {
  flex-direction: column;
  display: flex;
}

.partner-field label {
  color: #48505d;
  margin-bottom: .32rem;
  font-size: .86rem;
}

.partner-field input, .partner-field select, .partner-field textarea {
  background: linear-gradient(#fff, #fdfefe);
  border: 1px solid #d6dce6;
  border-radius: 14px;
  padding: .78rem .86rem;
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.partner-field select {
  appearance: none;
}

.partner-field input:focus, .partner-field select:focus, .partner-field textarea:focus {
  border-color: color-mix(in oklab, var(--accent-strong) 44%, #cbd5e1);
  outline: none;
  box-shadow: 0 0 0 4px #f2a56d2e;
}

.partner-field textarea {
  resize: vertical;
}

.field-hint {
  color: var(--muted);
  margin-top: .25rem;
  font-size: .8rem;
}

.full-width {
  grid-column: 1 / -1;
}

.partner-step-note {
  color: var(--muted);
  margin: 0 0 .5rem;
  font-size: .85rem;
}

.partner-actions {
  flex-wrap: wrap;
  gap: .72rem;
  display: flex;
}

.partner-actions .cta-btn[disabled] {
  opacity: .7;
  cursor: not-allowed;
}

.partner-profile-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.1rem;
  display: grid;
}

.partner-profile-item {
  background: #fff;
  border: 1px solid #e2e5eb;
  border-radius: 12px;
  padding: .8rem;
}

.partner-profile-item strong {
  color: #5b6370;
  margin-bottom: .3rem;
  font-size: .8rem;
  display: block;
}

.partner-profile-item span {
  color: #222733;
}

.footer-top {
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
  display: flex;
}

.footer-chip {
  color: #2f5661;
  background: color-mix(in oklab, var(--ocean) 20%, white);
  border: 1px solid #5f8f9c47;
  border-radius: 999px;
  padding: .3rem .6rem;
  font-size: .72rem;
  font-weight: 700;
}

.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 1.4rem;
  display: grid;
}

.footer-brand {
  margin-bottom: .75rem;
  display: inline-block;
}

.footer-note {
  color: var(--muted);
  max-width: 36ch;
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: .35rem;
}

.site-footer a {
  color: #3f4754;
  text-decoration: none;
}

.stylelist-swal-popup {
  background: #fff9f4;
  border: 1px solid #edd3c0;
  border-radius: 16px;
  box-shadow: 0 18px 36px #00000024;
}

.stylelist-swal-title {
  color: #3a3a3a;
}

.stylelist-swal-confirm, .stylelist-swal-cancel {
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: .62rem 1.05rem;
  font-weight: 700;
}

.stylelist-swal-confirm {
  background: var(--accent-strong);
  box-shadow: 0 8px 18px var(--accent-shadow);
}

.stylelist-swal-cancel {
  background: var(--ocean);
}

@keyframes partnerStepIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.datatable-wrap {
  margin-top: 1rem;
}

.datatable-toolbar {
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.datatable-filter {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  min-width: 200px;
  padding: .5rem .85rem;
  font-size: .9rem;
}

.datatable-filter:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-soft);
  outline: none;
}

.datatable-pagesize {
  color: var(--muted);
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  display: inline-flex;
}

.datatable-pagesize select {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 8px;
  padding: .4rem .6rem;
  font-size: .9rem;
}

.datatable-pagination {
  color: var(--muted);
  border-top: 1px solid #f1f3f5;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  font-size: .9rem;
  display: flex;
}

.datatable-pagination-buttons {
  align-items: center;
  gap: .5rem;
  display: flex;
}

.datatable-pagination-page {
  margin: 0 .25rem;
}

.crud-section {
  margin-top: 1rem;
}

.crud-section-header {
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.crud-section-actions {
  display: inline-flex;
}

.crud-loading {
  color: #6a7280;
  margin: 1.5rem 0;
  font-size: .95rem;
}

.crud-empty {
  text-align: center;
  background: #fafbfc;
  border: 2px dashed #e2e7ef;
  border-radius: 16px;
  padding: 2rem;
}

.crud-empty p {
  color: #5a6270;
  margin: 0 0 1rem;
}

.crud-table-wrap {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 16px;
  overflow-x: auto;
  box-shadow: 0 4px 14px #1e232f0f;
}

.crud-table {
  border-collapse: collapse;
  width: 100%;
  font-size: .9rem;
}

.crud-table th {
  text-align: left;
  color: #4c5462;
  background: linear-gradient(#f8fafc 0%, #f1f5f9 100%);
  border-bottom: 1px solid #e2e7ef;
  padding: .85rem 1rem;
  font-weight: 700;
}

.crud-table th:last-child {
  white-space: nowrap;
  width: 1%;
}

.crud-table td {
  vertical-align: top;
  border-bottom: 1px solid #f1f3f5;
  padding: .85rem 1rem;
}

.crud-table tbody tr:hover {
  background: #fefefe;
}

.crud-table tbody tr:last-child td {
  border-bottom: 0;
}

.crud-table .crud-desc {
  color: #6b7280;
  margin-top: .25rem;
  font-size: .8rem;
  font-weight: 400;
  display: block;
}

.crud-badge {
  border-radius: 999px;
  padding: .25rem .6rem;
  font-size: .75rem;
  font-weight: 700;
  display: inline-block;
}

.crud-badge.active {
  color: #13653b;
  background: #e8f9f0;
}

.crud-badge.inactive {
  color: #6b7280;
  background: #f1f3f5;
}

.crud-muted {
  color: #9ca3af;
  font-size: .85rem;
}

.crud-tags {
  color: #4b5563;
  font-size: .85rem;
}

.crud-actions {
  flex-wrap: wrap;
  gap: .5rem;
  display: flex;
}

.crud-btn.icon {
  color: #5a6270;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 10px;
  padding: .4rem .65rem;
  font-size: .8rem;
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s;
}

.crud-btn.icon:hover {
  border-color: var(--accent-soft);
  color: var(--accent-strong);
  background: #f8fafc;
}

.crud-btn.icon.danger:hover {
  color: #b91c1c;
  background: #fef2f2;
  border-color: #fecaca;
}

.crud-actions-dropdown-wrap {
  display: inline-block;
  position: relative;
}

.crud-btn.actions-dots {
  padding: .35rem .5rem;
}

.crud-actions-dropdown {
  z-index: 20;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  min-width: 120px;
  margin-top: .25rem;
  animation: .15s crudFadeIn;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px #0000001a;
}

.crud-actions-dropdown-portal {
  margin: 0;
  position: fixed;
}

.crud-actions-dropdown-item {
  width: 100%;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  font-size: .9rem;
  transition: background .15s;
  display: flex;
}

.crud-actions-dropdown-item:hover {
  background: var(--accent-soft);
}

.crud-actions-dropdown-item.danger:hover {
  color: #b91c1c;
  background: #fef2f2;
}

.crud-actions-dropdown-item svg {
  flex-shrink: 0;
}

.crud-modal-overlay {
  z-index: 100;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #0f172a80;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  animation: .2s crudFadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

@keyframes crudFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.crud-modal {
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 20px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  animation: .25s crudSlideUp;
  overflow: auto;
  box-shadow: 0 24px 48px #0000001f;
}

.crud-modal-wide {
  max-width: 520px;
}

@keyframes crudSlideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crud-modal-head {
  background: linear-gradient(#fffaf6 0%, #fff 100%);
  border-bottom: 1px solid #e2e7ef;
  border-radius: 20px 20px 0 0;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.25rem;
  display: flex;
}

.crud-modal-head h3 {
  color: #1e2430;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.crud-modal-close {
  color: #64748b;
  cursor: pointer;
  background: #f1f5f9;
  border: 0;
  border-radius: 12px;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  line-height: 1;
  transition: background .2s, color .2s;
}

.crud-modal-close:hover {
  color: #334155;
  background: #e2e7ef;
}

.crud-form {
  padding: 1.25rem 1.25rem 1.5rem;
}

.crud-form .partner-field {
  margin-bottom: 1rem;
}

.crud-form-row {
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  display: grid;
}

.crud-checkbox-wrap label {
  color: #4b5563;
  cursor: pointer;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  display: inline-flex;
}

.crud-form-actions {
  border-top: 1px solid #f1f3f5;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  display: flex;
}

.crud-service-chips {
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .35rem;
  display: flex;
}

.crud-chip {
  color: #4b5563;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e2e7ef;
  border-radius: 12px;
  align-items: center;
  padding: .4rem .75rem;
  font-size: .85rem;
  transition: border-color .2s, background .2s, color .2s;
  display: inline-flex;
}

.crud-chip:hover {
  border-color: var(--accent-soft);
  background: #fffaf6;
}

.crud-chip input {
  margin-right: .4rem;
}

.crud-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: #833f16;
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero-grid, .featured-grid, .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .dashboard-overview-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-charts-grid, .dashboard-recent-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: .82rem 0;
  }

  .search-box, .hero-grid, .featured-grid, .reviews-grid, .footer-grid, .partner-profile-grid, .partner-step-grid {
    grid-template-columns: 1fr;
  }

  .header-actions {
    width: 100%;
  }

  .header-panel {
    border-radius: 18px;
  }

  .lang-ar .header-inner, .lang-ar .header-actions {
    align-items: flex-end;
  }

  .hero-shell {
    padding-top: 2.1rem;
    padding-bottom: 1.6rem;
  }

  .partner-dashboard-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .partner-dashboard-sidebar {
    border-bottom: 1px solid #e7ebf0;
    border-right: 0;
  }

  .partner-dashboard-nav {
    flex-direction: row;
    padding-bottom: .2rem;
    overflow-x: auto;
  }

  .partner-dashboard-link {
    white-space: nowrap;
  }

  .partner-dashboard-grid, .dashboard-overview-cards, .crud-form-row {
    grid-template-columns: 1fr;
  }

  .crud-table th, .crud-table td {
    padding: .6rem .75rem;
    font-size: .85rem;
  }
}

.partner-field .PhoneInput--container, .crud-form .PhoneInput--container {
  background: linear-gradient(#fff, #fdfefe);
  border: 1px solid #d6dce6;
  border-radius: 14px;
  align-items: center;
  padding: 0 .86rem;
  transition: border-color .2s, box-shadow .2s;
  display: flex;
}

.partner-field .PhoneInput--container:focus-within, .crud-form .PhoneInput--container:focus-within {
  border-color: color-mix(in oklab, var(--accent-strong) 44%, #cbd5e1);
  outline: none;
  box-shadow: 0 0 0 4px #f2a56d2e;
}

.PhoneInput--container .PhoneInputInput {
  background: none;
  border: 0;
  flex: 1;
  min-width: 0;
  padding: .78rem 0;
  font-family: inherit;
  font-size: .95rem;
}

.PhoneInput--container .PhoneInputInput:focus {
  outline: none;
}

.PhoneInputCountrySelect {
  margin-right: .5rem;
}

.PhoneInputCountrySelectArrow {
  opacity: .6;
}

/* [project]/node_modules/sweetalert2/dist/sweetalert2.min.css [app-client] (css) */
:root {
  --swal2-outline: 0 0 0 3px #6496c880;
  --swal2-container-padding: .625em;
  --swal2-backdrop: #0006;
  --swal2-backdrop-transition: background-color .15s;
  --swal2-width: 32em;
  --swal2-padding: 0 0 1.25em;
  --swal2-border: none;
  --swal2-border-radius: .3125rem;
  --swal2-background: white;
  --swal2-color: #545454;
  --swal2-show-animation: swal2-show .3s;
  --swal2-hide-animation: swal2-hide .15s forwards;
  --swal2-icon-zoom: 1;
  --swal2-icon-animations: true;
  --swal2-title-padding: .8em 1em 0;
  --swal2-html-container-padding: 1em 1.6em .3em;
  --swal2-input-border: 1px solid #d9d9d9;
  --swal2-input-border-radius: .1875em;
  --swal2-input-box-shadow: inset 0 1px 1px #0000000f, 0 0 0 3px transparent;
  --swal2-input-background: transparent;
  --swal2-input-transition: border-color .2s, box-shadow .2s;
  --swal2-input-hover-box-shadow: inset 0 1px 1px #0000000f, 0 0 0 3px transparent;
  --swal2-input-focus-border: 1px solid #b4dbed;
  --swal2-input-focus-box-shadow: inset 0 1px 1px #0000000f, 0 0 0 3px #6496c880;
  --swal2-progress-step-background: #add8e6;
  --swal2-validation-message-background: #f0f0f0;
  --swal2-validation-message-color: #666;
  --swal2-footer-border-color: #eee;
  --swal2-footer-background: transparent;
  --swal2-footer-color: inherit;
  --swal2-timer-progress-bar-background: #0000004d;
  --swal2-close-button-position: initial;
  --swal2-close-button-inset: auto;
  --swal2-close-button-font-size: 2.5em;
  --swal2-close-button-color: #ccc;
  --swal2-close-button-transition: color .2s, box-shadow .2s;
  --swal2-close-button-outline: initial;
  --swal2-close-button-box-shadow: inset 0 0 0 3px transparent;
  --swal2-close-button-focus-box-shadow: inset var(--swal2-outline);
  --swal2-close-button-hover-transform: none;
  --swal2-actions-justify-content: center;
  --swal2-actions-width: auto;
  --swal2-actions-margin: 1.25em auto 0;
  --swal2-actions-padding: 0;
  --swal2-actions-border-radius: 0;
  --swal2-actions-background: transparent;
  --swal2-action-button-transition: background-color .2s, box-shadow .2s;
  --swal2-action-button-hover: black 10%;
  --swal2-action-button-active: black 10%;
  --swal2-confirm-button-box-shadow: none;
  --swal2-confirm-button-border-radius: .25em;
  --swal2-confirm-button-background-color: #7066e0;
  --swal2-confirm-button-color: #fff;
  --swal2-deny-button-box-shadow: none;
  --swal2-deny-button-border-radius: .25em;
  --swal2-deny-button-background-color: #dc3741;
  --swal2-deny-button-color: #fff;
  --swal2-cancel-button-box-shadow: none;
  --swal2-cancel-button-border-radius: .25em;
  --swal2-cancel-button-background-color: #6e7881;
  --swal2-cancel-button-color: #fff;
  --swal2-toast-show-animation: swal2-toast-show .5s;
  --swal2-toast-hide-animation: swal2-toast-hide .1s forwards;
  --swal2-toast-border: none;
  --swal2-toast-box-shadow: 0 0 1px #00000013, 0 1px 2px #00000013, 1px 2px 4px #00000013, 1px 3px 8px #00000013, 2px 4px 16px #00000013;
}

[data-swal2-theme="dark"] {
  --swal2-dark-theme-black: #19191a;
  --swal2-dark-theme-white: #e1e1e1;
  --swal2-background: var(--swal2-dark-theme-black);
  --swal2-color: var(--swal2-dark-theme-white);
  --swal2-footer-border-color: #555;
  --swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
  --swal2-validation-message-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
  --swal2-validation-message-color: var(--swal2-dark-theme-white);
  --swal2-timer-progress-bar-background: #ffffffb3;
}

@media (prefers-color-scheme: dark) {
  [data-swal2-theme="auto"] {
    --swal2-dark-theme-black: #19191a;
    --swal2-dark-theme-white: #e1e1e1;
    --swal2-background: var(--swal2-dark-theme-black);
    --swal2-color: var(--swal2-dark-theme-white);
    --swal2-footer-border-color: #555;
    --swal2-input-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
    --swal2-validation-message-background: color-mix(in srgb, var(--swal2-dark-theme-black), var(--swal2-dark-theme-white) 10%);
    --swal2-validation-message-color: var(--swal2-dark-theme-white);
    --swal2-timer-progress-bar-background: #ffffffb3;
  }
}

body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
  overflow: hidden;
}

body.swal2-height-auto {
  height: auto !important;
}

body.swal2-no-backdrop .swal2-container {
  pointer-events: none;
  background-color: #0000 !important;
}

body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}

body.swal2-no-backdrop .swal2-container .swal2-modal {
  box-shadow: 0 0 10px var(--swal2-backdrop);
}

body.swal2-toast-shown .swal2-container {
  box-sizing: border-box;
  pointer-events: none;
  background-color: #0000;
  width: 360px;
  max-width: 100%;
}

body.swal2-toast-shown .swal2-container.swal2-top {
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  inset: 0 0 auto auto;
}

body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
  inset: 0 auto auto 0;
}

body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
  inset: 50% auto auto 0;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-center {
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
  inset: 50% 0 auto auto;
  transform: translateY(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  inset: auto auto 0 0;
}

body.swal2-toast-shown .swal2-container.swal2-bottom {
  inset: auto auto 0 50%;
  transform: translateX(-50%);
}

body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  inset: auto 0 0 auto;
}

@media print {
  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) {
    overflow-y: scroll !important;
  }

  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) > [aria-hidden="true"] {
    display: none;
  }

  body.swal2-shown:not(.swal2-no-backdrop, .swal2-toast-shown) .swal2-container {
    position: static !important;
  }
}

div:where(.swal2-container) {
  z-index: 1060;
  box-sizing: border-box;
  height: 100%;
  padding: var(--swal2-container-padding);
  transition: var(--swal2-backdrop-transition);
  -webkit-overflow-scrolling: touch;
  grid-template-rows: minmax(min-content, auto) minmax(min-content, auto) minmax(min-content, auto);
  grid-template-areas: "top-start top top-end"
                       "center-start center center-end"
                       "bottom-start bottom-center bottom-end";
  display: grid;
  position: fixed;
  inset: 0;
  overflow-x: hidden;
}

div:where(.swal2-container).swal2-backdrop-show, div:where(.swal2-container).swal2-noanimation {
  background: var(--swal2-backdrop);
}

div:where(.swal2-container).swal2-backdrop-hide {
  background: none !important;
}

div:where(.swal2-container).swal2-top-start, div:where(.swal2-container).swal2-center-start, div:where(.swal2-container).swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}

div:where(.swal2-container).swal2-top, div:where(.swal2-container).swal2-center, div:where(.swal2-container).swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

div:where(.swal2-container).swal2-top-end, div:where(.swal2-container).swal2-center-end, div:where(.swal2-container).swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}

div:where(.swal2-container).swal2-top-start > .swal2-popup {
  align-self: start;
}

div:where(.swal2-container).swal2-top > .swal2-popup {
  grid-column: 2;
  place-self: start center;
}

div:where(.swal2-container).swal2-top-end > .swal2-popup, div:where(.swal2-container).swal2-top-right > .swal2-popup {
  grid-column: 3;
  place-self: start end;
}

div:where(.swal2-container).swal2-center-start > .swal2-popup, div:where(.swal2-container).swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}

div:where(.swal2-container).swal2-center > .swal2-popup {
  grid-area: 2 / 2;
  place-self: center;
}

div:where(.swal2-container).swal2-center-end > .swal2-popup, div:where(.swal2-container).swal2-center-right > .swal2-popup {
  grid-area: 2 / 3;
  place-self: center end;
}

div:where(.swal2-container).swal2-bottom-start > .swal2-popup, div:where(.swal2-container).swal2-bottom-left > .swal2-popup {
  grid-area: 3 / 1;
  align-self: end;
}

div:where(.swal2-container).swal2-bottom > .swal2-popup {
  grid-area: 3 / 2;
  place-self: end center;
}

div:where(.swal2-container).swal2-bottom-end > .swal2-popup, div:where(.swal2-container).swal2-bottom-right > .swal2-popup {
  grid-area: 3 / 3;
  place-self: end;
}

div:where(.swal2-container).swal2-grow-row > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1 / 4;
  width: 100%;
}

div:where(.swal2-container).swal2-grow-column > .swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1 / 4;
  align-self: stretch;
}

div:where(.swal2-container).swal2-no-transition {
  transition: none !important;
}

div:where(.swal2-container)[popover] {
  border: 0;
  width: auto;
}

div:where(.swal2-container) div:where(.swal2-popup) {
  box-sizing: border-box;
  width: var(--swal2-width);
  max-width: 100%;
  padding: var(--swal2-padding);
  border: var(--swal2-border);
  border-radius: var(--swal2-border-radius);
  background: var(--swal2-background);
  color: var(--swal2-color);
  grid-template-columns: minmax(0, 100%);
  font-family: inherit;
  font-size: 1rem;
  display: none;
  position: relative;
  container-name: swal2-popup;
}

div:where(.swal2-container) div:where(.swal2-popup):focus {
  outline: none;
}

div:where(.swal2-container) div:where(.swal2-popup).swal2-loading {
  overflow-y: hidden;
}

div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable, div:where(.swal2-container) div:where(.swal2-popup).swal2-draggable div:where(.swal2-icon) {
  cursor: grab;
}

div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging, div:where(.swal2-container) div:where(.swal2-popup).swal2-dragging div:where(.swal2-icon) {
  cursor: grabbing;
}

div:where(.swal2-container) h2:where(.swal2-title) {
  max-width: 100%;
  padding: var(--swal2-title-padding);
  color: inherit;
  text-align: center;
  text-transform: none;
  overflow-wrap: break-word;
  cursor: initial;
  margin: 0;
  font-size: 1.875em;
  font-weight: 600;
  position: relative;
}

div:where(.swal2-container) div:where(.swal2-actions) {
  z-index: 1;
  box-sizing: border-box;
  align-items: center;
  justify-content: var(--swal2-actions-justify-content);
  width: var(--swal2-actions-width);
  margin: var(--swal2-actions-margin);
  padding: var(--swal2-actions-padding);
  border-radius: var(--swal2-actions-border-radius);
  background: var(--swal2-actions-background);
  flex-wrap: wrap;
  display: flex;
}

div:where(.swal2-container) div:where(.swal2-loader) {
  border: .25em solid #2778c4;
  border-color: #2778c4 #0000;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  animation: 1.5s linear infinite swal2-rotate-loading;
  display: none;
}

div:where(.swal2-container) button:where(.swal2-styled) {
  transition: var(--swal2-action-button-transition);
  border: none;
  margin: .3125em;
  padding: .625em 1.1em;
  font-weight: 500;
  box-shadow: 0 0 0 3px #0000;
}

div:where(.swal2-container) button:where(.swal2-styled):not([disabled]) {
  cursor: pointer;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
  border-radius: var(--swal2-confirm-button-border-radius);
  background: initial;
  background-color: var(--swal2-confirm-button-background-color);
  box-shadow: var(--swal2-confirm-button-box-shadow);
  color: var(--swal2-confirm-button-color);
  font-size: 1em;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):hover {
  background-color: color-mix(in srgb, var(--swal2-confirm-button-background-color), var(--swal2-action-button-hover));
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm):active {
  background-color: color-mix(in srgb, var(--swal2-confirm-button-background-color), var(--swal2-action-button-active));
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny) {
  border-radius: var(--swal2-deny-button-border-radius);
  background: initial;
  background-color: var(--swal2-deny-button-background-color);
  box-shadow: var(--swal2-deny-button-box-shadow);
  color: var(--swal2-deny-button-color);
  font-size: 1em;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):hover {
  background-color: color-mix(in srgb, var(--swal2-deny-button-background-color), var(--swal2-action-button-hover));
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-deny):active {
  background-color: color-mix(in srgb, var(--swal2-deny-button-background-color), var(--swal2-action-button-active));
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel) {
  border-radius: var(--swal2-cancel-button-border-radius);
  background: initial;
  background-color: var(--swal2-cancel-button-background-color);
  box-shadow: var(--swal2-cancel-button-box-shadow);
  color: var(--swal2-cancel-button-color);
  font-size: 1em;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):hover {
  background-color: color-mix(in srgb, var(--swal2-cancel-button-background-color), var(--swal2-action-button-hover));
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-cancel):active {
  background-color: color-mix(in srgb, var(--swal2-cancel-button-background-color), var(--swal2-action-button-active));
}

div:where(.swal2-container) button:where(.swal2-styled):focus-visible {
  box-shadow: var(--swal2-action-button-focus-box-shadow);
  outline: none;
}

div:where(.swal2-container) button:where(.swal2-styled)[disabled]:not(.swal2-loading) {
  opacity: .4;
}

div:where(.swal2-container) button:where(.swal2-styled)::-moz-focus-inner {
  border: 0;
}

div:where(.swal2-container) div:where(.swal2-footer) {
  border-top: 1px solid var(--swal2-footer-border-color);
  background: var(--swal2-footer-background);
  color: var(--swal2-footer-color);
  text-align: center;
  cursor: initial;
  margin: 1em 0 0;
  padding: 1em 1em 0;
  font-size: 1em;
}

div:where(.swal2-container) .swal2-timer-progress-bar-container {
  border-bottom-right-radius: var(--swal2-border-radius);
  border-bottom-left-radius: var(--swal2-border-radius);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  grid-column: auto !important;
}

div:where(.swal2-container) div:where(.swal2-timer-progress-bar) {
  background: var(--swal2-timer-progress-bar-background);
  width: 100%;
  height: .25em;
}

div:where(.swal2-container) img:where(.swal2-image) {
  max-width: 100%;
  cursor: initial;
  margin: 2em auto 1em;
}

div:where(.swal2-container) button:where(.swal2-close) {
  position: var(--swal2-close-button-position);
  inset: var(--swal2-close-button-inset);
  z-index: 2;
  width: 1.2em;
  height: 1.2em;
  transition: var(--swal2-close-button-transition);
  border-radius: var(--swal2-border-radius);
  outline: var(--swal2-close-button-outline);
  color: var(--swal2-close-button-color);
  font-family: monospace;
  font-size: var(--swal2-close-button-font-size);
  cursor: pointer;
  background: none;
  border: none;
  justify-content: center;
  justify-self: end;
  align-items: center;
  margin-top: 0;
  margin-bottom: -1.2em;
  margin-right: 0;
  padding: 0;
  overflow: hidden;
}

div:where(.swal2-container) button:where(.swal2-close):hover {
  transform: var(--swal2-close-button-hover-transform);
  color: #f27474;
  background: none;
}

div:where(.swal2-container) button:where(.swal2-close):focus-visible {
  box-shadow: var(--swal2-close-button-focus-box-shadow);
  outline: none;
}

div:where(.swal2-container) button:where(.swal2-close)::-moz-focus-inner {
  border: 0;
}

div:where(.swal2-container) div:where(.swal2-html-container) {
  z-index: 1;
  padding: var(--swal2-html-container-padding);
  color: inherit;
  text-align: center;
  overflow-wrap: break-word;
  word-break: break-word;
  cursor: initial;
  justify-content: center;
  margin: 0;
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  overflow: auto;
}

div:where(.swal2-container) input:where(.swal2-input), div:where(.swal2-container) input:where(.swal2-file), div:where(.swal2-container) textarea:where(.swal2-textarea), div:where(.swal2-container) select:where(.swal2-select), div:where(.swal2-container) div:where(.swal2-radio), div:where(.swal2-container) label:where(.swal2-checkbox) {
  margin: 1em 2em 3px;
}

div:where(.swal2-container) input:where(.swal2-input), div:where(.swal2-container) input:where(.swal2-file), div:where(.swal2-container) textarea:where(.swal2-textarea) {
  box-sizing: border-box;
  width: auto;
  transition: var(--swal2-input-transition);
  border: var(--swal2-input-border);
  border-radius: var(--swal2-input-border-radius);
  background: var(--swal2-input-background);
  box-shadow: var(--swal2-input-box-shadow);
  color: inherit;
  font-size: 1.125em;
}

div:where(.swal2-container) input:where(.swal2-input).swal2-inputerror, div:where(.swal2-container) input:where(.swal2-file).swal2-inputerror, div:where(.swal2-container) textarea:where(.swal2-textarea).swal2-inputerror {
  border-color: #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}

div:where(.swal2-container) input:where(.swal2-input):hover, div:where(.swal2-container) input:where(.swal2-file):hover, div:where(.swal2-container) textarea:where(.swal2-textarea):hover {
  box-shadow: var(--swal2-input-hover-box-shadow);
}

div:where(.swal2-container) input:where(.swal2-input):focus, div:where(.swal2-container) input:where(.swal2-file):focus, div:where(.swal2-container) textarea:where(.swal2-textarea):focus {
  border: var(--swal2-input-focus-border);
  box-shadow: var(--swal2-input-focus-box-shadow);
  outline: none;
}

div:where(.swal2-container) input:where(.swal2-input)::placeholder, div:where(.swal2-container) input:where(.swal2-file)::placeholder, div:where(.swal2-container) textarea:where(.swal2-textarea)::placeholder {
  color: #ccc;
}

div:where(.swal2-container) .swal2-range {
  background: var(--swal2-background);
  margin: 1em 2em 3px;
}

div:where(.swal2-container) .swal2-range input {
  width: 80%;
}

div:where(.swal2-container) .swal2-range output {
  width: 20%;
  color: inherit;
  text-align: center;
  font-weight: 600;
}

div:where(.swal2-container) .swal2-range input, div:where(.swal2-container) .swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

div:where(.swal2-container) .swal2-input {
  height: 2.625em;
  padding: 0 .75em;
}

div:where(.swal2-container) .swal2-file {
  background: var(--swal2-input-background);
  width: 75%;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125em;
}

div:where(.swal2-container) .swal2-textarea {
  height: 6.75em;
  padding: .75em;
}

div:where(.swal2-container) .swal2-select {
  background: var(--swal2-input-background);
  min-width: 50%;
  max-width: 100%;
  color: inherit;
  padding: .375em .625em;
  font-size: 1.125em;
}

div:where(.swal2-container) .swal2-radio, div:where(.swal2-container) .swal2-checkbox {
  background: var(--swal2-background);
  color: inherit;
  justify-content: center;
  align-items: center;
}

div:where(.swal2-container) .swal2-radio label, div:where(.swal2-container) .swal2-checkbox label {
  margin: 0 .6em;
  font-size: 1.125em;
}

div:where(.swal2-container) .swal2-radio input, div:where(.swal2-container) .swal2-checkbox input {
  flex-shrink: 0;
  margin: 0 .4em;
}

div:where(.swal2-container) label:where(.swal2-input-label) {
  justify-content: center;
  margin: 1em auto 0;
  display: flex;
}

div:where(.swal2-container) div:where(.swal2-validation-message) {
  background: var(--swal2-validation-message-background);
  color: var(--swal2-validation-message-color);
  justify-content: center;
  align-items: center;
  margin: 1em 0 0;
  padding: .625em;
  font-size: 1em;
  font-weight: 300;
  overflow: hidden;
}

div:where(.swal2-container) div:where(.swal2-validation-message):before {
  content: "!";
  color: #fff;
  text-align: center;
  background-color: #f27474;
  border-radius: 50%;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 .625em;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
}

div:where(.swal2-container) .swal2-progress-steps {
  background: none;
  flex-wrap: wrap;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  font-weight: 600;
}

div:where(.swal2-container) .swal2-progress-steps li {
  display: inline-block;
  position: relative;
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  color: #fff;
  text-align: center;
  background: #2778c4;
  border-radius: 2em;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  line-height: 2em;
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
  background: var(--swal2-progress-step-background);
  color: #fff;
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step-line {
  background: var(--swal2-progress-step-background);
}

div:where(.swal2-container) .swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  background: #2778c4;
  flex-shrink: 0;
  width: 2.5em;
  height: .4em;
  margin: 0 -1px;
}

div:where(.swal2-icon) {
  box-sizing: content-box;
  zoom: var(--swal2-icon-zoom);
  cursor: default;
  -webkit-user-select: none;
  user-select: none;
  border: .25em solid #000;
  border-radius: 50%;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto .6em;
  font-family: inherit;
  line-height: 5em;
  position: relative;
}

div:where(.swal2-icon) .swal2-icon-content {
  align-items: center;
  font-size: 3.75em;
  display: flex;
}

div:where(.swal2-icon).swal2-error {
  color: #f27474;
  border-color: #f27474;
}

div:where(.swal2-icon).swal2-error .swal2-x-mark {
  flex-grow: 1;
  position: relative;
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"] {
  background-color: #f27474;
  border-radius: .125em;
  width: 2.9375em;
  height: .3125em;
  display: block;
  position: absolute;
  top: 2.3125em;
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"][class$="left"] {
  left: 1.0625em;
  transform: rotate(45deg);
}

div:where(.swal2-icon).swal2-error [class^="swal2-x-mark-line"][class$="right"] {
  right: 1em;
  transform: rotate(-45deg);
}

@container swal2-popup style(--swal2-icon-animations: true) {
  div:where(.swal2-icon).swal2-error.swal2-icon-show {
    animation: .5s swal2-animate-error-icon;
  }

  div:where(.swal2-icon).swal2-error.swal2-icon-show .swal2-x-mark {
    animation: .5s swal2-animate-error-x-mark;
  }
}

div:where(.swal2-icon).swal2-warning {
  color: #f8bb86;
  border-color: #f8bb86;
}

@container swal2-popup style(--swal2-icon-animations: true) {
  div:where(.swal2-icon).swal2-warning.swal2-icon-show {
    animation: .5s swal2-animate-error-icon;
  }

  div:where(.swal2-icon).swal2-warning.swal2-icon-show .swal2-icon-content {
    animation: .5s swal2-animate-i-mark;
  }
}

div:where(.swal2-icon).swal2-info {
  color: #3fc3ee;
  border-color: #3fc3ee;
}

@container swal2-popup style(--swal2-icon-animations: true) {
  div:where(.swal2-icon).swal2-info.swal2-icon-show {
    animation: .5s swal2-animate-error-icon;
  }

  div:where(.swal2-icon).swal2-info.swal2-icon-show .swal2-icon-content {
    animation: .8s swal2-animate-i-mark;
  }
}

div:where(.swal2-icon).swal2-question {
  color: #87adbd;
  border-color: #87adbd;
}

@container swal2-popup style(--swal2-icon-animations: true) {
  div:where(.swal2-icon).swal2-question.swal2-icon-show {
    animation: .5s swal2-animate-error-icon;
  }

  div:where(.swal2-icon).swal2-question.swal2-icon-show .swal2-icon-content {
    animation: .8s swal2-animate-question-mark;
  }
}

div:where(.swal2-icon).swal2-success {
  color: #a5dc86;
  border-color: #a5dc86;
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-circular-line"] {
  border-radius: 50%;
  width: 3.75em;
  height: 7.5em;
  position: absolute;
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-circular-line"][class$="left"] {
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
  top: -.4375em;
  left: -2.0635em;
  transform: rotate(-45deg);
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-circular-line"][class$="right"] {
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
  top: -.6875em;
  left: 1.875em;
  transform: rotate(-45deg);
}

div:where(.swal2-icon).swal2-success .swal2-success-ring {
  z-index: 2;
  box-sizing: content-box;
  border: .25em solid #a5dc864d;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -.25em;
  left: -.25em;
}

div:where(.swal2-icon).swal2-success .swal2-success-fix {
  z-index: 1;
  width: .4375em;
  height: 5.625em;
  position: absolute;
  top: .5em;
  left: 1.625em;
  transform: rotate(-45deg);
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"] {
  z-index: 2;
  background-color: #a5dc86;
  border-radius: .125em;
  height: .3125em;
  display: block;
  position: absolute;
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"][class$="tip"] {
  width: 1.5625em;
  top: 2.875em;
  left: .8125em;
  transform: rotate(45deg);
}

div:where(.swal2-icon).swal2-success [class^="swal2-success-line"][class$="long"] {
  width: 2.9375em;
  top: 2.375em;
  right: .5em;
  transform: rotate(-45deg);
}

@container swal2-popup style(--swal2-icon-animations: true) {
  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: .75s swal2-animate-success-line-tip;
  }

  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: .75s swal2-animate-success-line-long;
  }

  div:where(.swal2-icon).swal2-success.swal2-icon-show .swal2-success-circular-line-right {
    animation: 4.25s ease-in swal2-rotate-success-circular-line;
  }
}

[class^="swal2"] {
  -webkit-tap-highlight-color: #0000;
}

.swal2-show {
  animation: var(--swal2-show-animation);
}

.swal2-hide {
  animation: var(--swal2-hide-animation);
}

.swal2-noanimation {
  transition: none;
}

.swal2-scrollbar-measure {
  width: 50px;
  height: 50px;
  position: absolute;
  top: -9999px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}

.swal2-rtl .swal2-timer-progress-bar {
  left: auto;
  right: 0;
}

.swal2-toast {
  box-sizing: border-box;
  border: var(--swal2-toast-border);
  background: var(--swal2-background);
  box-shadow: var(--swal2-toast-box-shadow);
  pointer-events: all;
  grid-template-columns: min-content auto min-content;
  padding: 1em;
  overflow-y: hidden;
  grid-area: 1 / 1 / 4 / 4 !important;
}

.swal2-toast > * {
  grid-column: 2;
}

.swal2-toast h2:where(.swal2-title) {
  text-align: initial;
  margin: .5em 1em;
  padding: 0;
  font-size: 1em;
}

.swal2-toast .swal2-loading {
  justify-content: center;
}

.swal2-toast input:where(.swal2-input) {
  height: 2em;
  margin: .5em;
  font-size: 1em;
}

.swal2-toast .swal2-validation-message {
  font-size: 1em;
}

.swal2-toast div:where(.swal2-footer) {
  margin: .5em 0 0;
  padding: .5em 0 0;
  font-size: .8em;
}

.swal2-toast button:where(.swal2-close) {
  grid-area: 1 / 3 / 99 / 3;
  align-self: center;
  width: .8em;
  height: .8em;
  margin: 0;
  font-size: 2em;
}

.swal2-toast div:where(.swal2-html-container) {
  overflow: initial;
  text-align: initial;
  margin: .5em 1em;
  padding: 0;
  font-size: 1em;
}

.swal2-toast div:where(.swal2-html-container):empty {
  padding: 0;
}

.swal2-toast .swal2-loader {
  grid-area: 1 / 1 / 99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: .25em;
}

.swal2-toast .swal2-icon {
  grid-area: 1 / 1 / 99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 .5em 0 0;
}

.swal2-toast .swal2-icon .swal2-icon-content {
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  display: flex;
}

.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  width: 1.375em;
  top: .875em;
}

.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] {
  left: .3125em;
}

.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] {
  right: .3125em;
}

.swal2-toast div:where(.swal2-actions) {
  justify-content: flex-start;
  height: auto;
  margin: .5em 0 0;
  padding: 0 .5em;
}

.swal2-toast button:where(.swal2-styled) {
  margin: .25em .5em;
  padding: .4em .6em;
  font-size: 1em;
}

.swal2-toast .swal2-success {
  border-color: #a5dc86;
}

.swal2-toast .swal2-success [class^="swal2-success-circular-line"] {
  border-radius: 50%;
  width: 1.6em;
  height: 3em;
  position: absolute;
}

.swal2-toast .swal2-success [class^="swal2-success-circular-line"][class$="left"] {
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
  top: -.8em;
  left: -.5em;
  transform: rotate(-45deg);
}

.swal2-toast .swal2-success [class^="swal2-success-circular-line"][class$="right"] {
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
  top: -.25em;
  left: .9375em;
}

.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}

.swal2-toast .swal2-success .swal2-success-fix {
  width: .4375em;
  height: 2.6875em;
  top: 0;
  left: .4375em;
}

.swal2-toast .swal2-success [class^="swal2-success-line"] {
  height: .3125em;
}

.swal2-toast .swal2-success [class^="swal2-success-line"][class$="tip"] {
  width: .75em;
  top: 1.125em;
  left: .1875em;
}

.swal2-toast .swal2-success [class^="swal2-success-line"][class$="long"] {
  width: 1.375em;
  top: .9375em;
  right: .1875em;
}

@container swal2-popup style(--swal2-icon-animations: true) {
  .swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
    animation: .75s swal2-toast-animate-success-line-tip;
  }

  .swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
    animation: .75s swal2-toast-animate-success-line-long;
  }
}

.swal2-toast.swal2-show {
  animation: var(--swal2-toast-show-animation);
}

.swal2-toast.swal2-hide {
  animation: var(--swal2-toast-hide-animation);
}

@keyframes swal2-show {
  0% {
    opacity: 0;
    transform: translate3d(0, -50px, 0)scale(.9);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0)scale(1);
  }
}

@keyframes swal2-hide {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0)scale(1);
  }

  100% {
    opacity: 0;
    transform: translate3d(0, -50px, 0)scale(.9);
  }
}

@keyframes swal2-animate-success-line-tip {
  0% {
    width: 0;
    top: 1.1875em;
    left: .0625em;
  }

  54% {
    width: 0;
    top: 1.0625em;
    left: .125em;
  }

  70% {
    width: 3.125em;
    top: 2.1875em;
    left: -.375em;
  }

  84% {
    width: 1.0625em;
    top: 3em;
    left: 1.3125em;
  }

  100% {
    width: 1.5625em;
    top: 2.8125em;
    left: .8125em;
  }
}

@keyframes swal2-animate-success-line-long {
  0% {
    width: 0;
    top: 3.375em;
    right: 2.875em;
  }

  65% {
    width: 0;
    top: 3.375em;
    right: 2.875em;
  }

  84% {
    width: 3.4375em;
    top: 2.1875em;
    right: 0;
  }

  100% {
    width: 2.9375em;
    top: 2.375em;
    right: .5em;
  }
}

@keyframes swal2-rotate-success-circular-line {
  0% {
    transform: rotate(-45deg);
  }

  5% {
    transform: rotate(-45deg);
  }

  12% {
    transform: rotate(-405deg);
  }

  100% {
    transform: rotate(-405deg);
  }
}

@keyframes swal2-animate-error-x-mark {
  0% {
    opacity: 0;
    margin-top: 1.625em;
    transform: scale(.4);
  }

  50% {
    opacity: 0;
    margin-top: 1.625em;
    transform: scale(.4);
  }

  80% {
    margin-top: -.375em;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
  }
}

@keyframes swal2-animate-error-icon {
  0% {
    opacity: 0;
    transform: rotateX(100deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes swal2-rotate-loading {
  0% {
    transform: rotate(0);
  }

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

@keyframes swal2-animate-question-mark {
  0% {
    transform: rotateY(-360deg);
  }

  100% {
    transform: rotateY(0);
  }
}

@keyframes swal2-animate-i-mark {
  0% {
    opacity: 0;
    transform: rotateZ(45deg);
  }

  25% {
    opacity: .4;
    transform: rotateZ(-25deg);
  }

  50% {
    opacity: .8;
    transform: rotateZ(15deg);
  }

  75% {
    opacity: 1;
    transform: rotateZ(-5deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes swal2-toast-show {
  0% {
    transform: translateY(-.625em)rotateZ(2deg);
  }

  33% {
    transform: translateY(0)rotateZ(-2deg);
  }

  66% {
    transform: translateY(.3125em)rotateZ(2deg);
  }

  100% {
    transform: translateY(0)rotateZ(0);
  }
}

@keyframes swal2-toast-hide {
  100% {
    opacity: 0;
    transform: rotateZ(1deg);
  }
}

@keyframes swal2-toast-animate-success-line-tip {
  0% {
    width: 0;
    top: .5625em;
    left: .0625em;
  }

  54% {
    width: 0;
    top: .125em;
    left: .125em;
  }

  70% {
    width: 1.625em;
    top: .625em;
    left: -.25em;
  }

  84% {
    width: .5em;
    top: 1.0625em;
    left: .75em;
  }

  100% {
    width: .75em;
    top: 1.125em;
    left: .1875em;
  }
}

@keyframes swal2-toast-animate-success-line-long {
  0% {
    width: 0;
    top: 1.625em;
    right: 1.375em;
  }

  65% {
    width: 0;
    top: 1.25em;
    right: .9375em;
  }

  84% {
    width: 1.125em;
    top: .9375em;
    right: 0;
  }

  100% {
    width: 1.375em;
    top: .9375em;
    right: .1875em;
  }
}

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