@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-500; }

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

.btn:focus,
.btn-sm:focus,
.form-input:focus,
.form-textarea:focus,
.form-multiselect:focus,
.form-select:focus,
.form-checkbox:focus,
.form-radio:focus {
  @apply border-primary-500 border-2; }

.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-500; }

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

.carousel.swiper-container {
  @apply overflow-visible; }

.carousel .swiper-slide img {
  opacity: 0.32; }

.carousel .swiper-slide > div > div {
  @apply opacity-0; }

.carousel .swiper-slide.swiper-slide-active, .carousel .swiper-slide.swiper-slide-duplicate-active {
  @apply shadow-2xl; }

.carousel .swiper-slide.swiper-slide-active img, .carousel .swiper-slide.swiper-slide-duplicate-active img {
  @apply opacity-100; }

.carousel .swiper-slide.swiper-slide-active > div > div, .carousel .swiper-slide.swiper-slide-duplicate-active > div > div {
  @apply opacity-100; }

.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); } }

.btn {
  border-radius: 35px;
  padding: 0 5px;
  letter-spacing: 1px;
  font-family: 'Inter';
  font-weight: bold;
  font-size: 20px;
  color: #8A1E41;
  border-color: #8A1E41;
  border-width: 3px;
  position: relative;
  outline: none !important;
  min-height: 35px; }

.btn:hover {
  border-color: #8A1E41; }

.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; }

.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; } }

main#main-content {
  padding-top: calc(var(--header-h) + 0.75rem); }

/* 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-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 9999px;
  background: #882b4a;
  /* 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; }
