/**
 * @copyright Stevie-Ray
 */
/**
 * @copyright Stevie-Ray
 * Global Color System - Neutral Palette
 * CSS Custom Properties for consistent theming
 */
/* ===========================================
   CSS CUSTOM PROPERTIES - ROOT
   =========================================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.cdnfonts.com/css/sf-pro-display");
:root {
  /* Neutral Color Palette */
  --neutral: #ffffff;
  --neutral-50: #fafafa;
  --neutral-100: #f5f5f5;
  --neutral-200: #e5e5e5;
  --neutral-300: #d4d4d4;
  --neutral-400: #a3a3a3;
  --neutral-500: #737373;
  --neutral-600: #525252;
  --neutral-700: #404040;
  --neutral-800: #262626;
  --neutral-900: #171717;
  --neutral-950: #0a0a0a;
  /* Semantic Color Mappings */
  --background: var(--neutral-50);
  --foreground: var(--neutral-900);
  --muted: var(--neutral-100);
  --muted-foreground: var(--neutral-600);
  --border: var(--neutral-200);
  --input: var(--neutral-100);
  --ring: var(--neutral-400);
  /* Brand Colors */
  --primary: hsl(221.2 83.2% 53.3%);
  --primary-foreground: hsl(210 40% 98%);
  --secondary: var(--neutral-100);
  --secondary-foreground: var(--neutral-900);
  --accent: var(--neutral-100);
  --accent-foreground: var(--neutral-900);
  /* Status Colors */
  --destructive: #FF80AB;
  --destructive-foreground: #000000;
  --success: #CCFF90;
  --success-foreground: #000000;
  --warning: #FFAB40;
  --warning-foreground: #000000;
  --info: #82B1FF;
  --info-foreground: #000000;
  /* Sidebar Specific Colors */
  --sidebar-bg: var(--neutral-50);
  --sidebar-border: var(--neutral-200);
  --sidebar-foreground: var(--neutral-900);
  --sidebar-muted: var(--neutral-600);
  --sidebar-accent: var(--neutral-100);
  --sidebar-accent-foreground: var(--neutral-900);
  --sidebar-hover: var(--neutral-100);
  --sidebar-active-bg: var(--neutral-100);
  --sidebar-active-foreground: var(--neutral-900);
}

/* ===========================================
   SCSS VARIABLES FOR BACKWARDS COMPATIBILITY
   =========================================== */
:root {
  --background-color: hsl(220, 10%, 100%);
  --gradient-color-1: hsl(200, 90%, 50%);
  --gradient-color-2: hsl(290, 90%, 50%);
  --gradient-color-3: hsl(50, 90%, 50%);
}

@keyframes moveGradient {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 100%;
  }
}
body {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fafafa;
  background: var(--neutral-100);
  background: linear-gradient(45deg, var(--neutral-200) 0%, var(--neutral-50) 100%) fixed;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 40%, #eef2ff 70%, #fdf2f8 100%);
  background: linear-gradient(120deg, #f9fafb 0%, #f3f4f6 50%, #eef2f7 100%);
  background-size: 100% 100%;
  background-attachment: fixed;
  padding: 0;
  margin: 0;
  position: relative;
  overflow-x: hidden;
}

* {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

img {
  vertical-align: middle;
  border: 0;
}

.container {
  width: 100%;
  padding: 0 0 0 256px;
  height: 100dvh;
  justify-content: center;
  display: flex;
}
.container .__View {
  display: inline-flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 1000px;
  padding: 2rem 0 2rem 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-weight: 600;
  line-height: 1;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

a {
  outline: none;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
a:visited {
  color: #2563eb;
}
a:active {
  color: #1e40af;
}
a:focus {
  border-radius: 2px;
}

.ModalAction {
  display: flex;
  width: 100%;
  padding: 0.5rem;
  border-top: 1px solid #eee;
  justify-content: flex-end;
}

.PayoutLayoutChooseMethod {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}
.PayoutLayoutChooseMethod .__MethodItems {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}
.PayoutLayoutChooseMethod .__MethodItems .__MethodItem:hover {
  background: var(--neutral-50);
}
.PayoutLayoutChooseMethod .__MethodItems .__MethodItem .__MethodItemName {
  font-weight: 600;
}
.PayoutLayoutChooseMethod .__MethodItems .__MethodItem .__MethodItemIcon {
  width: 40px;
  height: 40px;
  background: var(--neutral-100);
  border-radius: 15px;
  padding: 0.5rem;
}
.PayoutLayoutChooseMethod .__MethodItems .__MethodItem .__MethodItemIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.PayoutLayoutChooseMethod .__MethodItems .__MethodItem {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 10px;
}
.PayoutLayoutChooseMethod .__MethodTitle {
  font-weight: 600;
  font-size: 14px;
}

.PayoutLayout {
  padding-top: 2rem;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  display: flex;
  gap: 0.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
.PayoutLayout .__PayoutAmountText {
  font-weight: 500;
  font-size: 14px;
}
.PayoutLayout .__PayoutInput {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
}
.PayoutLayout .__PayoutInput input {
  background: #fff;
  border: 1px solid #fff;
  width: 100px;
  height: 40px;
  text-align: right;
  font-size: 20px;
}
.PayoutLayout .__PayoutAmount {
  padding-top: 1rem;
  font-weight: 600;
  font-size: 18px;
}
.PayoutLayout span {
  padding-bottom: 1rem;
  font-size: 24px;
}

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

.sidebar-account {
  padding: 0.5rem;
}

.ButtonViolet {
  height: 40px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: black;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.ButtonViolet:hover {
  background: #121212;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.ButtonViolet:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15), inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.UserProfileBadge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.UserProfileBadge .ProfileImageView {
  display: flex;
  width: 60px;
  max-width: 60px;
  min-width: 60px;
}
.UserProfileBadge .ProfileImageView img {
  width: 100%;
}
.UserProfileBadge .ProfileBadgeText span {
  font-size: 9px;
}
.UserProfileBadge .ProfileBadgeText {
  display: flex;
  flex-direction: column;
}

i.icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
}

ul.__BoxItems {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
  margin: 0;
  padding: 0;
}
ul.__BoxItems li .Block.Down {
  align-items: flex-end;
  justify-content: flex-end;
}
ul.__BoxItems li .Block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
ul.__BoxItems li .Block span:nth-child(1) {
  font-size: 16px;
  font-weight: 300;
}
ul.__BoxItems li .Block span:nth-child(2) {
  font-weight: 700;
  font-size: 36px;
}
ul.__BoxItems li {
  gap: 0.5rem;
  justify-content: space-between;
  display: flex;
  padding: 1.2rem;
  list-style: none;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

.ShortItems {
  display: inline-flex;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
}
.ShortItems div {
  display: inline-flex;
  padding: 0.2rem;
}
.ShortItems div:nth-child(1), .ShortItems div:nth-child(2) {
  border-right: 1px solid #e2e2e2;
}

.DashboardLayout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
.DashboardLayout .DashboardLayout_TopItems {
  display: flex;
  width: 100%;
}
.DashboardLayout .DashboardLayout_Chart {
  display: flex;
  width: 100%;
  gap: 1.5rem;
}
.DashboardLayout .DashboardLayout_Chart .Chart {
  flex-direction: column;
  display: flex;
  flex: 1;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}
.DashboardLayout .DashboardLayout_Chart .Chart .ChartSubInformation {
  display: flex;
  padding: 1rem;
  flex-direction: column;
  gap: 0.2rem;
}
.DashboardLayout .DashboardLayout_Chart .Chart .ChartSubInformation span:nth-child(1) {
  font-weight: 500;
}
.DashboardLayout .DashboardLayout_Chart .Chart .ChartSubInformation span:nth-child(2) {
  align-items: center;
  display: inline-flex;
  gap: 1rem;
  font-size: 30px;
  font-weight: 700;
}
.DashboardLayout .DashboardLayout_Chart .Chart .ChartTitle {
  border-bottom: 1px solid #eee;
  display: flex;
  width: 100%;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
}
.DashboardLayout .DashboardLayout_Chart .Chart .ChartTitle .__Title {
  font-weight: 600;
  font-size: 18px;
}
.DashboardLayout .DashboardLayout_Chart .PieChart {
  width: 400px;
  display: flex;
}

.SplitContext {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.InviteLayout .InviteInput b {
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 11px;
}
.InviteLayout .InviteInput {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-bottom: 1rem;
}
.InviteLayout .InviteInput .__Copy {
  position: absolute;
  bottom: 1.9rem;
  cursor: pointer;
  right: 3rem;
}
.InviteLayout .InviteInput input {
  border-radius: 100px;
  height: 50px;
  font-size: 18px;
  width: 280px;
  padding: 0 2.5rem 0 1rem;
}
.InviteLayout .InviteDescription {
  display: flex;
  flex: 1;
  justify-content: center;
  text-align: center;
  color: var(--neutral-700);
  font-weight: 300;
  font-size: 20px;
}
.InviteLayout .InviteTitle {
  text-align: center;
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 30px;
}
.InviteLayout .InviteHeader .lightning-glow {
  position: absolute;
  width: 160%;
  height: 160%;
  top: -40%;
  right: -40%;
  background: radial-gradient(circle at center, rgba(255, 255, 0, 0.9) 0%, rgba(255, 255, 0, 0.5) 25%, rgba(255, 255, 0, 0.15) 45%, transparent 70%);
  filter: blur(30px);
  animation: glowPulse 3.5s ease-in-out infinite;
  z-index: 1;
}
.InviteLayout .InviteHeader .sparkle-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.InviteLayout .InviteHeader .sparkle-layer span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 2.8s infinite ease-in-out;
}
.InviteLayout .InviteHeader .sparkle-layer span:nth-child(1) {
  top: 30px;
  left: 60px;
  animation-delay: 0s;
}
.InviteLayout .InviteHeader .sparkle-layer span:nth-child(2) {
  top: 80px;
  left: 40px;
  animation-delay: 0.6s;
}
.InviteLayout .InviteHeader .sparkle-layer span:nth-child(3) {
  top: 120px;
  left: 50px;
  animation-delay: 1.2s;
}
.InviteLayout .InviteHeader .sparkle-layer span:nth-child(4) {
  top: 120px;
  left: 280px;
  animation-delay: 1.8s;
}
.InviteLayout .InviteHeader .sparkle-layer span:nth-child(5) {
  top: 80px;
  left: 300px;
  animation-delay: 2.2s;
}
@keyframes glowPulse {
  0% {
    opacity: 0.25;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 0.25;
    transform: scale(0.9);
  }
}
@keyframes sparkle {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }
  35% {
    opacity: 1;
    transform: scale(1.4);
  }
  70% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 80%, 100% {
    opacity: 0.25;
  }
  85% {
    opacity: 1;
  }
}
.InviteLayout .InviteHeader .lightning-glow {
  animation: glowPulse 2.5s ease-in-out infinite, flash 5s ease-in-out infinite;
}
.InviteLayout .InviteHeader {
  background: #f2f2f1;
  background: linear-gradient(135deg, #f79acb, #f36aa0);
  width: 100%;
  border-radius: 8px;
  min-height: 150px;
  position: relative;
}
.InviteLayout .InviteHeader .InviteImage {
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
}
.InviteLayout .InviteHeader .InviteImage img {
  width: 85%;
}
.InviteLayout {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 400px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.LoginLayout {
  display: flex;
  width: 100%;
  height: 100dvh;
  align-items: center;
  justify-content: center;
}
.LoginLayout .LoginContainer {
  display: flex;
  width: 400px;
  height: 500px;
  background: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  flex-direction: column;
}
.LoginLayout .LoginContainer .__Content {
  display: flex;
  flex: 1;
  padding-top: 2rem;
  justify-content: center;
}
.LoginLayout .LoginContainer .__Content .__ContentLogo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}
.LoginLayout .LoginContainer .__Content .__ContentLogo .__PageDescription {
  padding-top: 2rem;
  font-size: 24px;
  font-weight: 300;
}
.LoginLayout .LoginContainer .__Content .__ContentLogo .__LogoName {
  display: inline-flex;
  text-align: center;
  font-weight: 700;
  font-size: 30px;
}
.LoginLayout .LoginContainer .__Content .__ContentLogo .__LogoIcon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.LoginLayout .LoginContainer .__Content .__ContentLogo .__LogoIcon {
  width: 80px;
  height: 80px;
  background: #1d4ed8;
  border-radius: 100px;
}
.LoginLayout .LoginContainer .__Action {
  display: flex;
  padding: 2rem 2rem 3rem;
  justify-content: center;
}

/*# sourceMappingURL=app.css.map */
