/* [project]/components/ui/BlockLoader.module.css [app-client] (css) */
.BlockLoader-module__zc_UqW__root {
  width: var(--loader-size);
  height: var(--loader-size);
  color: currentColor;
  flex: none;
  place-items: center;
  line-height: 0;
  display: inline-grid;
}

.BlockLoader-module__zc_UqW__root > div, .BlockLoader-module__zc_UqW__root svg {
  width: 100% !important;
  height: 100% !important;
}

.BlockLoader-module__zc_UqW__root path {
  stroke: currentColor;
  fill: currentColor !important;
}

@media (prefers-reduced-motion: reduce) {
  .BlockLoader-module__zc_UqW__root {
    animation: none !important;
  }
}

/* [project]/components/navigation/TopLoader.module.css [app-client] (css) */
.TopLoader-module__5OlXaq__root {
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transition: opacity .16s ease, transform .22s var(--anim-ease);
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translate(-50%, -14px);
}

.TopLoader-module__5OlXaq__root[data-active="true"] {
  opacity: 1;
  transform: translate(-50%);
}

.TopLoader-module__5OlXaq__indicator {
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-surface-raised);
  min-width: 74px;
  height: 44px;
  color: var(--color-text);
  box-shadow: 5px 5px 0 color-mix(in srgb, var(--color-text) 12%, transparent);
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  display: grid;
  position: relative;
}

.TopLoader-module__5OlXaq__indicator:after {
  background: var(--color-text);
  width: 5px;
  height: 5px;
  box-shadow: -6px 0 0 var(--color-border-strong), 0 -6px 0 var(--color-border-strong);
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
}

.TopLoader-module__5OlXaq__progressBlocks {
  align-items: end;
  gap: 3px;
  display: flex;
}

.TopLoader-module__5OlXaq__progressBlocks i {
  background: var(--color-border-strong);
  width: 5px;
  height: 5px;
}

.TopLoader-module__5OlXaq__progressBlocks i:nth-child(2) {
  height: 9px;
}

.TopLoader-module__5OlXaq__progressBlocks i:nth-child(3) {
  background: var(--color-text);
  height: 13px;
}

.TopLoader-module__5OlXaq__root[data-completing="true"] .TopLoader-module__5OlXaq__indicator {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .TopLoader-module__5OlXaq__root {
    transition: none;
  }
}

/* [project]/app/globals.css [app-client] (css) */
@font-face {
  font-family: Selfpost Logo;
  src: url("/fonts/Porcine-Heavy.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  --color-bg: #fff;
  --color-surface: #fff;
  --color-surface-raised: #fff;
  --color-surface-sunken: #f7f7f7;
  --color-text: #000;
  --color-text-muted: #5f5f5f;
  --color-text-subtle: #858585;
  --color-border: #e5e5e5;
  --color-border-strong: #c9c9c9;
  --color-primary: #000;
  --color-primary-hover: #2b2b2b;
  --color-primary-text: #fff;
  --color-accent: #0a0a0a;
  --color-accent-soft-bg: #eee;
  --color-accent-soft-text: #0a0a0a;
  --color-focus: #000;
  --color-success-bg: #edf8f1;
  --color-success-text: #18733d;
  --color-warning-bg: #fff7e6;
  --color-warning-text: #8a5700;
  --color-danger-bg: #fff0f0;
  --color-danger-text: #b42318;
  --color-info-bg: #eef6ff;
  --color-info-text: #175cd3;
  --color-loader: #000;
  --color-muted-bg: #efefef;
  --radius-sm: 3px;
  --radius-md: 6px;
  --radius-lg: 9px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 0 #0000000a;
  --shadow-sm: 3px 3px 0 #00000012;
  --shadow-md: 8px 8px 0 #00000014;
  --shadow-lg: 14px 14px 0 #0000001a;
  --block-unit: 5px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --font-sans: var(--font-body, -apple-system), BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: var(--font-sans);
  --anim-duration-fast: .16s;
  --anim-duration-normal: .24s;
  --anim-duration-medium: .34s;
  --anim-duration-slow: .44s;
  --anim-ease: cubic-bezier(.2, 0, 0, 1);
  --anim-ease-emphasized: cubic-bezier(.2, 0, 0, 1);
}

[data-theme="dark"] {
  --lightningcss-light: ;
  --lightningcss-dark: initial;
  color-scheme: dark;
  --color-bg: #000;
  --color-surface: #050505;
  --color-surface-raised: #090909;
  --color-surface-sunken: #000;
  --color-text: #fff;
  --color-text-muted: #a1a1a1;
  --color-text-subtle: #747474;
  --color-border: #252525;
  --color-border-strong: #3b3b3b;
  --color-primary: #fff;
  --color-primary-hover: #d9d9d9;
  --color-primary-text: #000;
  --color-accent: #f7f7f7;
  --color-accent-soft-bg: #202020;
  --color-accent-soft-text: #f7f7f7;
  --color-focus: #fff;
  --color-success-bg: #092b18;
  --color-success-text: #6ce9a6;
  --color-warning-bg: #302100;
  --color-warning-text: #fec84b;
  --color-danger-bg: #351313;
  --color-danger-text: #fda29b;
  --color-info-bg: #102a43;
  --color-info-text: #84caff;
  --color-loader: #fff;
  --color-muted-bg: #1b1b1b;
  --shadow-xs: 0 1px 0 #ffffff0a;
  --shadow-sm: 3px 3px 0 #ffffff0f;
  --shadow-md: 8px 8px 0 #ffffff0f;
  --shadow-lg: 14px 14px 0 #ffffff12;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  min-height: 100%;
}

body {
  background: var(--color-bg);
  min-height: 100%;
  color: var(--color-text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  margin: 0;
  font-size: .925rem;
  line-height: 1.5;
}

h1, h2, h3 {
  font-family: var(--font-display);
  letter-spacing: -.025em;
  font-weight: 680;
  line-height: 1.2;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-border-strong) transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
  background-clip: padding-box;
  border: 3px solid #0000;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-text-muted);
}

button, input, textarea, select {
  font: inherit;
}

a {
  color: inherit;
}

::selection {
  background: var(--color-accent-soft-bg);
  color: var(--color-accent-soft-text);
}

img, video, canvas, svg {
  max-width: 100%;
}

:focus-visible {
  outline: 1px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: 2px;
}

:where([class*="__pageHeading"], [class*="PricingPage"][class*="__heading"], [class*="Layout"][class*="__pageHeader"]) {
  position: relative;
  padding-inline-start: 30px !important;
}

:where([class*="__pageHeading"], [class*="PricingPage"][class*="__heading"], [class*="Layout"][class*="__pageHeader"]):before {
  background: var(--page-accent, var(--color-text));
  width: 13px;
  height: 13px;
  box-shadow: 6px 0 0 var(--page-accent, var(--color-text)),
    0 6px 0 var(--page-accent, var(--color-text)),
    12px 0 0 var(--color-border-strong),
    6px 12px 0 var(--color-border-strong),
    16px 16px 0 var(--color-border);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 48% 45%, 48% 100%, 0 100%);
  content: "";
  pointer-events: none;
  position: absolute;
  top: 8px;
  left: 0;
}

@keyframes animFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes animSlideUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

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

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

@keyframes animScaleIn {
  from {
    opacity: 0;
    transform: scale(.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes animFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

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

.animate-in {
  animation-fill-mode: backwards;
}

.animate-fade {
  animation: animFadeIn var(--anim-duration-normal) var(--anim-ease) backwards;
}

.animate-slide-up {
  animation: animSlideUp var(--anim-duration-normal) var(--anim-ease) backwards;
}

.animate-slide-down {
  animation: animSlideDown var(--anim-duration-normal) var(--anim-ease) backwards;
}

.animate-scale-in {
  animation: animScaleIn var(--anim-duration-normal) var(--anim-ease) backwards;
}

.animate-fade-left {
  animation: animFadeInLeft var(--anim-duration-normal) var(--anim-ease) backwards;
}

.stagger > .animate-in:first-child {
  animation-delay: 0s;
}

.stagger > .animate-in:nth-child(2) {
  animation-delay: 35ms;
}

.stagger > .animate-in:nth-child(3) {
  animation-delay: 70ms;
}

.stagger > .animate-in:nth-child(4) {
  animation-delay: .105s;
}

.stagger > .animate-in:nth-child(5) {
  animation-delay: .14s;
}

.stagger > .animate-in:nth-child(6) {
  animation-delay: .175s;
}

.stagger > .animate-in:nth-child(7) {
  animation-delay: .21s;
}

.stagger > .animate-in:nth-child(8) {
  animation-delay: .245s;
}

[data-animations="disabled"] .animate-in, [data-animations="disabled"] .animate-fade, [data-animations="disabled"] .animate-slide-up, [data-animations="disabled"] .animate-slide-down, [data-animations="disabled"] .animate-scale-in, [data-animations="disabled"] .animate-fade-left, [data-animations="disabled"] .stagger > .animate-in {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}

[data-animations="disabled"] * {
  transition-duration: 60ms !important;
}

[data-animations="disabled"] .animate-in, [data-animations="disabled"] [class*="Card"], [data-animations="disabled"] [class*="Dialog"], [data-animations="disabled"] [class*="Popover"] {
  transition: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *, :before, :after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-loading-indicator="true"] {
    animation-duration: 1.2s !important;
    animation-iteration-count: infinite !important;
  }

  .animate-in, .animate-fade, .animate-slide-up, .animate-slide-down, .animate-scale-in, .animate-fade-left {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

/*# sourceMappingURL=_1ig-fbv._.css.map*/