@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=fallback");
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600&display=fallback");
html h1 {
  font-family: Lora, "Times New Roman", serif;
  font-weight: 400 !important; }

html body {
  font-family: Inter, "Arial", sans-serif; }

.prose-serif {
  font-family: Lora, "Times New Roman", serif !important;
  text-wrap: normal; }

.prose-serif p {
  font-family: Lora, "Times New Roman", serif !important;
  text-wrap: normal;
  margin: 0;
  padding: 0; }

.prose-serif h2 {
  text-align: center !important;
  font-family: Inter, "Arial", sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  width: 100%; }

.prose-serif h3 {
  text-align: center;
  font-family: Inter, "Arial", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.5rem;
  letter-spacing: 0.01em;
  width: 100%; }

.hide-scrollbar::-webkit-scrollbar {
  display: none; }

.hide-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }

/* Tailwind base - put variables under: tailwind.config.js */
@tailwind base;
/* Tailwind component classes registered by plugins*/
@tailwind components;
@tailwind utilities;
.underline-pagination {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.1em; }

/* Additional styles */
input[type="range"] {
  appearance: none;
  background: #ccc;
  border-radius: 3px;
  height: 6px;
  margin-top: 15px;
  margin-bottom: 15px;
  --thumb-size: 36px; }

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .5v7L12 4zM0 4l4 3.5v-7z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px; }

input[type="range"]::-moz-range-thumb {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .5v7L12 4zM0 4l4 3.5v-7z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px; }

input[type="range"]::-ms-thumb {
  background-color: #000;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 .5v7L12 4zM0 4l4 3.5v-7z' fill='%23FFF' fill-rule='nonzero'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 36px;
  width: 36px; }

input[type="range"]::-moz-focus-outer {
  border: 0; }

.form-switch {
  @apply relative select-none;
  width: 44px; }

.form-switch label {
  @apply block overflow-hidden cursor-pointer h-6 rounded-full; }

.form-switch label > span:first-child {
  @apply absolute block rounded-full;
  width: 20px;
  height: 20px;
  top: 2px;
  left: 2px;
  right: 50%;
  transition: all 0.15s ease-out; }

.form-switch input[type="checkbox"]:checked + label {
  @apply bg-primary-light; }

.form-switch input[type="checkbox"]:checked + label > span:first-child {
  left: 22px; }

.form-input,
.form-textarea,
.form-multiselect,
.form-select,
.form-checkbox,
.form-radio {
  @apply rounded accent-primary-500 caret-neutral-600 text-primary-500 border-2 border-neutral-400; }

.form-input:focus,
.form-textarea:focus,
.form-multiselect:focus,
.form-select:focus,
.form-checkbox:focus,
.form-radio:focus {
  box-shadow: none !important; }

.hamburger svg > *:nth-child(1), .hamburger svg > *:nth-child(2), .hamburger svg > *:nth-child(3) {
  transform-origin: center;
  transform: rotate(0deg); }

.hamburger svg > *:nth-child(1) {
  transition: y 0.075s 0.12s ease, opacity 0.075s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger svg > *:nth-child(2) {
  transition-property: transform;
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger svg > *:nth-child(3) {
  transition: y 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger.active svg > *:nth-child(1) {
  opacity: 0;
  transform: rotate(45deg);
  y: 11;
  transition: y 0.075s ease, opacity 0.075s 0.12s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger.active svg > *:nth-child(2) {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger.active svg > *:nth-child(3) {
  y: 11;
  transform: rotate(-45deg);
  transition: y 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.form-switch input[type="checkbox"].light-switch + label {
  @apply bg-primary-light; }

.dark .form-switch input[type="checkbox"].light-switch + label > span:first-child {
  left: 22px; }

.translate-z-0 {
  transform: translateZ(0); }

.tags-animation {
  animation: tagsmove 30000ms linear infinite; }

.tags-1 {
  animation-delay: -3000ms; }

.tags-2 {
  animation-delay: -4800ms; }

.tags-3 {
  animation-delay: -6900ms; }

.tags-4 {
  animation-delay: -8100ms; }

.tags-5 {
  animation-delay: -13200ms; }

.tags-6 {
  animation-delay: -16500ms; }

.tags-7 {
  animation-delay: -18900ms; }

.tags-8 {
  animation-delay: -21900ms; }

.tags-9 {
  animation-delay: -22800ms; }

.tags-10 {
  animation-delay: -24000ms; }

@keyframes tagsmove {
  from {
    transform: translateX(-100%); }
  to {
    transform: translateX(768px); } }

.form-input:focus,
.form-textarea:focus,
.form-multiselect:focus,
.form-select:focus,
.form-checkbox:focus,
.form-radio:focus {
  @apply focus:ring-2 focus:ring-primary-ultralight; }

/* Hamburger button */
.hamburger svg > *:nth-child(1),
.hamburger svg > *:nth-child(2),
.hamburger svg > *:nth-child(3) {
  transform-origin: center;
  transform: rotate(0deg); }

.hamburger svg > *:nth-child(1) {
  transition: y 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), opacity 0.1s ease-in; }

.hamburger svg > *:nth-child(2) {
  transition: transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger svg > *:nth-child(3) {
  transition: y 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), width 0.1s 0.25s ease-in; }

.hamburger.active svg > *:nth-child(1) {
  opacity: 0;
  y: 11;
  transform: rotate(225deg);
  transition: y 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.1s 0.12s ease-out; }

.hamburger.active svg > *:nth-child(2) {
  transform: rotate(225deg);
  transition: transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger.active svg > *:nth-child(3) {
  y: 11;
  transform: rotate(135deg);
  transition: y 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), width 0.1s ease-out; }

/* Custom AOS distance */
@media screen {
  html:not(.no-js) [data-aos="fade-up"] {
    -webkit-transform: translate3d(0, 16px, 0);
    transform: translate3d(0, 16px, 0); }
  html:not(.no-js) [data-aos="fade-down"] {
    -webkit-transform: translate3d(0, -16px, 0);
    transform: translate3d(0, -16px, 0); }
  html:not(.no-js) [data-aos="fade-right"] {
    -webkit-transform: translate3d(-16px, 0, 0);
    transform: translate3d(-16px, 0, 0); }
  html:not(.no-js) [data-aos="fade-left"] {
    -webkit-transform: translate3d(16px, 0, 0);
    transform: translate3d(16px, 0, 0); }
  html:not(.no-js) [data-aos="fade-up-right"] {
    -webkit-transform: translate3d(-16px, 16px, 0);
    transform: translate3d(-16px, 16px, 0); }
  html:not(.no-js) [data-aos="fade-up-left"] {
    -webkit-transform: translate3d(16px, 16px, 0);
    transform: translate3d(16px, 16px, 0); }
  html:not(.no-js) [data-aos="fade-down-right"] {
    -webkit-transform: translate3d(-16px, -16px, 0);
    transform: translate3d(-16px, -16px, 0); }
  html:not(.no-js) [data-aos="fade-down-left"] {
    -webkit-transform: translate3d(16px, -16px, 0);
    transform: translate3d(16px, -16px, 0); }
  html:not(.no-js) [data-aos="zoom-in-up"] {
    -webkit-transform: translate3d(0, 16px, 0) scale(0.6);
    transform: translate3d(0, 16px, 0) scale(0.6); }
  html:not(.no-js) [data-aos="zoom-in-down"] {
    -webkit-transform: translate3d(0, -16px, 0) scale(0.6);
    transform: translate3d(0, -16px, 0) scale(0.6); }
  html:not(.no-js) [data-aos="zoom-in-right"] {
    -webkit-transform: translate3d(-16px, 0, 0) scale(0.6);
    transform: translate3d(-16px, 0, 0) scale(0.6); }
  html:not(.no-js) [data-aos="zoom-in-left"] {
    -webkit-transform: translate3d(16px, 0, 0) scale(0.6);
    transform: translate3d(16px, 0, 0) scale(0.6); }
  html:not(.no-js) [data-aos="zoom-out-up"] {
    -webkit-transform: translate3d(0, 16px, 0) scale(1.2);
    transform: translate3d(0, 16px, 0) scale(1.2); }
  html:not(.no-js) [data-aos="zoom-out-down"] {
    -webkit-transform: translate3d(0, -16px, 0) scale(1.2);
    transform: translate3d(0, -16px, 0) scale(1.2); }
  html:not(.no-js) [data-aos="zoom-out-right"] {
    -webkit-transform: translate3d(-16px, 0, 0) scale(1.2);
    transform: translate3d(-16px, 0, 0) scale(1.2); }
  html:not(.no-js) [data-aos="zoom-out-left"] {
    -webkit-transform: translate3d(16px, 0, 0) scale(1.2);
    transform: translate3d(16px, 0, 0) scale(1.2); } }

.text-emerald-500 {
  color: #10b981; }

.text-emerald-600 {
  color: #059669; }

.text-green-500 {
  color: #22c55e; }

.bg-emerald-200 {
  background-color: #a7f3d0; }

.overlay {
  border: 3px solid #1ecd97;
  height: 35px;
  width: 70px;
  border-radius: 35px;
  border-width: 5px;
  visibility: hidden; }

.unselectable {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

/* Forms */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance: none; }

/* Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
  display: none; }

.no-scrollbar {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */ }

@keyframes rotate-center {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }

#logo-ring {
  animation: rotate-center 20s linear infinite;
  transform-origin: center; }

.custom-spinner {
  color: #8A1E41;
  font-size: 10px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.3s infinite linear;
  transform: translateZ(0); }

@keyframes mulShdSpin {
  0%,
  100% {
    box-shadow: 0 -3em 0 0.2em,  2em -2em 0 0em, 3em 0 0 -1em,  2em 2em 0 -1em, 0 3em 0 -1em,  -2em 2em 0 -1em, -3em 0 0 -1em,  -2em -2em 0 0; }
  12.5% {
    box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em,  3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em,  -2em 2em 0 -1em, -3em 0 0 -1em,  -2em -2em 0 -1em; }
  25% {
    box-shadow: 0 -3em 0 -0.5em,  2em -2em 0 0, 3em 0 0 0.2em,  2em 2em 0 0, 0 3em 0 -1em,  -2em 2em 0 -1em, -3em 0 0 -1em,  -2em -2em 0 -1em; }
  37.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em,  -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em; }
  50% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em,  -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em; }
  62.5% {
    box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0,  -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em; }
  75% {
    box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em,  3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,  -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0; }
  87.5% {
    box-shadow: 0em -3em 0 0, 2em -2em 0 -1em,  3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em,  -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em; } }

/* Tailwind's utility classes - generated based on config file */
@tailwind utilities;
/* Additional Tailwind directives: https://tailwindcss.com/docs/functions-and-directives/#responsive */
@layer utilities {
  .rtl {
    direction: rtl; } }

/* See Alpine.js: https://github.com/alpinejs/alpine#x-cloak */
[x-cloak=""] {
  display: none; }

/* GOVSTACK_HEADER_STYLES */
:root {
  --header-h: 4rem; }

/* h-16 = 64px */
@media (min-width: 640px) {
  :root {
    --header-h: 4rem; } }

/* Prevent horizontal "jump" when scrollbar appears/disappears */
html {
  scrollbar-gutter: stable;
  scroll-padding-top: calc(var(--header-h) + 0.75rem); }

@supports not (scrollbar-gutter: stable) {
  html {
    overflow-y: scroll; } }

/* Sticky header with invariant height */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06); }

.dark .site-header {
  background: rgba(10, 10, 10, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1); }

/* Links and pills that never change layout on hover/active */
.nav-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  text-decoration: none !important; }

.nav-link:hover,
.nav-link[aria-current="page"] {
  border-bottom-color: currentColor; }

.nav-link:focus {
  outline: none;
  box-shadow: none; }

/* Remove focus ring from the dropdown container if needed */
.dropdown-container:focus {
  outline: none;
  box-shadow: none; }

/* Remove borders from all inputs, textareas, and selects */
input,
textarea,
select {
  border: none !important;
  box-shadow: none !important; }

/* Optionally, remove border on focus too */
input:focus,
textarea:focus,
select:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: #b27b00;
  /* matches cherry-ish primary */
  color: white !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap; }

.nav-pill:hover {
  filter: brightness(1.05); }

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 9999px; }

.nav-icon:hover {
  background: rgba(0, 0, 0, 0.06); }

.dark .nav-icon:hover {
  background: rgba(255, 255, 255, 0.1); }

.nav-pill--outline {
  background: transparent;
  color: currentColor !important;
  border: 1px solid rgba(0, 0, 0, 0.18); }

.nav-pill--outline:hover {
  background: rgba(0, 0, 0, 0.04); }

.dark .nav-pill--outline {
  border-color: rgba(255, 255, 255, 0.22); }

.dark .nav-pill--outline:hover {
  background: rgba(255, 255, 255, 0.08); }

[x-cloak] {
  display: none !important; }

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
  height: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  overflow: visible;
  isolation: isolate; }

.nav-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  border-bottom: 2px solid transparent; }

.nav-link:hover,
.nav-link[aria-current="page"] {
  border-bottom-color: currentColor; }

.nav-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: #882b4a;
  color: white !important;
  text-decoration: none !important;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap; }

.nav-pill--outline {
  background: transparent;
  color: currentColor !important;
  border: 1px solid rgba(255, 255, 255, 0.18); }

.nav-pill--outline:hover {
  background: rgba(255, 255, 255, 0.06); }

html.no-scroll,
html.no-scroll body {
  overflow: hidden;
  height: 100%; }

[x-cloak] {
  display: none !important; }

.mobile-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.85rem 0.75rem;
  border-radius: 0.85rem;
  font-weight: 700;
  text-decoration: none !important; }

.mobile-link:hover {
  background: rgba(0, 0, 0, 0.05); }

.dark .mobile-link:hover {
  background: rgba(255, 255, 255, 0.08); }
