@tailwind base;
@tailwind components;
@tailwind utilities;

@font-face {
  font-family: 'Nunito';
  src: url("../fonts/Nunito-VariableFont_wght.ttf");
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins-Light.ttf");
  font-style: normal;
}

#languageSelect {
  transition: opacity 0.2s ease-out, background-color 0.1s linear;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.2s opacity 0.1s;
  z-index: 4;
}

#languageSelect:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

#anchors {
  display: flex;
  gap: 10px;
}

.anchor {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 10px;
  align-items: center;
  margin: 0;
}

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Nunito";;
}

.poppins {
  font-family: 'Poppins', sans-serif;
}

#contact {
  background-image: url("../img/tlo.jpeg");
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
}
#contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#booking {
  padding: 20px;
  background-color: oklch(26.2% 0.051 172.552);
  display: flex;
}
#booking h2 {
  font-size: 3rem;
  font-weight: 100;
  color: oklch(92.4% 0.12 95.746);
  text-align: center;
}
.calendar {
  width: 100%;
  max-width: 100vw;
  font-family: "Poppins";
}
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: oklch(43.2% 0.095 166.913);
  border-radius: 5px 5px 0 0;
  color: oklch(92.4% 0.12 95.746);
  font-weight: normal;
  font-size: 2rem;
  padding: 5px;
}
.calendar-header .date-change-button {
  cursor: pointer;
  color: oklch(98.7% 0.022 95.277);
  font-weight: 900;
  font-size: 1.5rempx;
  padding: 4px;
  transition: background-color 0.2s;
}
.calendar-header .date-change-button:hover {
  color: oklch(92.4% 0.12 95.746);
  background-color: oklch(37.8% 0.077 168.94);
  border-radius: 5px;
}
.dates-table {
  width: 100%;
  min-width: 320px; /* lub mniej, zależnie od liczby kolumn */
  table-layout: fixed;
}
.date {
  text-align: left;
  cursor: pointer;
  font-weight: 200;
  font-size: 1.5rem;
  color: oklch(43.2% 0.095 166.913);
  border: 1px solid oklch(43.2% 0.095 166.913);
  transition: background-color 0.1s ease-in-out;
}
.date:not(.selected-date):hover {
  background-color: oklch(92.4% 0.12 95.746);
  color: oklch(20.5% 0 0);
}
.event-end-date:not(.selected-date):hover {
  background: linear-gradient(to right, transparent 50%, oklch(92.4% 0.12 95.746));
}
.event-start-date:not(.selected-date):hover {
  background: linear-gradient(to left, transparent 50%, oklch(92.4% 0.12 95.746));
}
@property --fill {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
@keyframes fillFromLeft {
  from {
    --fill: 0%;
  }
  to {
    --fill: 100%;
  }
}
.date-in-preview-range {
  --fill: 0%;
  background: linear-gradient(to right, oklch(92.4% 0.12 95.746) var(--fill), transparent 100%);
  animation: fillFromLeft 0.5s forwards;
}
.date-in-preview-range:hover {
  background: linear-gradient(to right, oklch(92.4% 0.12 95.746), transparent 50%);
}
.date:not(.event-date) {
  padding: 10px;
}
.past-date {
  color: antiquewhite;
  background-color: gray;
}
.event-start, .event-end, .event {
  font-size: 0.8rem;
  background-color: gray;
  padding: 5px;
  white-space: nowrap;
  overflow: hidden;
  color: oklch(93.647% 0.00893 180.274);
}
.event-start {
  border-radius: 10px 0 0 10px;
  margin-left: auto;
  flex-basis: 50%;
  order: 2;
}
.event-end {
  border-radius: 0 10px 10px 0;
  flex-basis: 50%;
  order: 1;
}
.event {
  width: 100%;
}
.event-scheduled-for-day {
  display: flex;
  gap: 2px;
  justify-content: space-between;
}
.dates-container {
  width: 100%;
}
.dates-table > tr:nth-child(odd) {
  background-color: oklch(96.2% 0.044 156.743);
}
.dates-table > tr:nth-child(even) {
  background-color: oklch(97.9% 0.021 166.113);
}
.days-of-week-table-head {
  background-color: oklch(37.8% 0.077 168.94);
  color: oklch(97.9% 0.021 166.113);
  font-weight: 100;
  font-size: 1.3rem;
}
.day-of-week {
  font-weight: 100;
}
html {
  overflow-x: hidden;
  scroll-padding-top: 20px;
}
.day-month {
  font-weight: 100;
  font-size: 1.5em;
}
.year {
  font-weight: 900;
  font-size: 0.75em;
  letter-spacing: 1px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.appear {
  animation: fadeIn 0.75s ease-in-out;
}
@keyframes slideFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-from-right {
  animation: slideFromRight 1s ease forwards;
}

.slide-from-left {
  animation: slideFromLeft 1s ease forwards;
}
@keyframes slideFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideToLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideToRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
.slide-from-bottom {
  animation: slideFromBottom 0.75s ease forwards;
}


@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}


.invisible {
  animation: fadeOut 0.5s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
   
  }
  100% {
    opacity: 1;
    
  }
}

.visible {
  animation: fadeIn 0.5s forwards;
}

body {
  overflow: hidden;
}
html {
  scroll-behavior: smooth;
}

@keyframes expandVertically {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
.expand-vertically {
  animation: expandVertically 0.3s ease-in-out;
}

#info {
  padding-top: 32px;
}

@media (min-width: 1600px) {
  #info {
    padding-inline: 120px;
  }
}

#news {
  background-color: oklch(96.44% 0.01708 103.229);
  box-shadow: inset 0 0px 16px 0 oklch(17.128% 0.03121 179.416);
  padding: 20px;
}

#news-slider {
  flex-grow: 1;
}

.carousel {
  display: flex;
  align-items: center;
}

.carousel-slides-container {
  flex-grow: 1;
  padding: 10px;
  display: flex;
  gap: 10px;
  transition: background-color 0.1s ease-in-out;
}

.carousel-slides-container:hover {
  background-color: oklch(84.913% 0.01493 102.576);
  cursor: pointer;
}

.carousel-slide-thumbnail {
  max-width: 300px;
  width: 100%;
  border: 3px solid oklch(37.8% 0.077 168.94);
}

.carousel-slide-content {
  font-size: 1.2rem;
  color: oklch(21.535% 0.0372 173.551);
}

.carousel-slide {
  display: none;
  position: relative;
}

@media (min-width: 1600px)  {
  .carousel-slide {
    padding: 0 50px;
    display: none;
  }
}

.active-slide {
  animation: 1s fadeIn ease;
  align-items: start;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 10px;
}

@media (max-width: 1000px)  {
  .active-slide {
    flex-direction: column;
    padding: 10px;
  }

  .carousel-slide-thumbnail {
    margin: auto;
  }
  
}

.carousel-slide-title {
  font-size: 3rem;
  font-weight: 100;
  color: oklch(37.8% 0.077 168.94);
}

.carousel-slide-content {
  color: #000;
  font-weight: 300;
}

.carousel-slide-date {
  font-size: 0.8rem;
  color: oklch(70.8% 0 0);
  font-size: 1rem;
}

@media(min-width: 1000px) {
  .carousel-slide-date {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}

@media (min-width: 2000px)  {

  .carousel-slide-title {
    font-size: 3.5rem;
  }

  .carousel-slide-content {
    font-size: 2rem;
  }
  
}

.carousel-prev, .carousel-next {
  transition: all 0.2s;
  cursor: pointer;
  font-size: 5rem;

  padding: 10px 5px;
  opacity: 5%;

  height: 100%;
  display: block;
}

header {
  font-family: 'Poppins', serif;
}

navbar {
  z-index: 2;
}

#bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

#welcome-message {
  position: relative;
  z-index: 2;

  background-color: rgba(0, 0, 0, 0.6);

  text-align: justify;

  width: fit-content;
  max-width: 100%;

  padding: 100px;
  font-size: 4rem;
}

@media (max-width: 1000px) {
  #welcome-message {
    width: 100%;
    padding: 20px;
    font-size: 3rem;
    display: flex;
  }
}

@media (max-width: 600px) {

  #welcome-message {
    width: 100%;
    padding: 20px;
    font-size: 1.6rem;
    display: flex;
  }

  #anchors {
    flex-wrap: wrap;
  }

  .anchor {
    font-size: 1.5rem;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
  }
}

.carousel-prev:hover, .carousel-next:hover {
  background-color: oklch(90.5% 0.093 164.15);
  color: oklch(20.5% 0 0);
  opacity: 100%; 
}

.carousel-indicator {
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.carousel-indicator-dot {
  padding: 5px;
  background-color: oklch(70.8% 0 0);
  border-radius: 10px;
  transition: 0.3s background-color;
  cursor: pointer;
}

.carousel-indicator-dot.active {
  background-color: oklch(14.5% 0 0);
}

@media (max-width: 600px) {
  .carousel{
    flex-wrap: wrap;
  }

  .carousel-slides-container {
    width: 100%;
    order: 1;
  }

  .carousel-prev {
    order: 2;
    flex-grow: 1;
    padding: 0;

  }

  .carousel-next {
    order: 3;
    flex-grow: 1;
    padding: 0;
  }
} 

#reservation-details {
  text-align: right;
  color: oklch(97% 0 0);
  background-color: oklch(37.8% 0.077 168.94);
  border-radius: 0 0 10px 10px;
  font-size: 0.8rem;
  padding: 10px;
  display: flex;
  align-items: center;
}

#reservation-details i:first-child {
  border: 2px solid oklch(97% 0 0);
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 5px;

  width: 30px;
  height: 30px;

  border-radius: 100%
}

#community > a {
  position: relative;
  transition: transform 0.3s ease;
}

#community > a:hover {
  transform: scale(1.10)
}

@media(max-width: 2000px) {
  #community {
    font-size: 2rem !important;
  }
}

.new-marker {
  background-color: #880d2583;
  color: aliceblue;

  transition: 0.2s background-color;

  border-radius: 10px;
  font-size: 0.7rem;
  padding: 5px;

  position: absolute;
  top: -10px;
  right: -10px;
}

*:hover > .new-marker {
  background-color: #880d26;
}

#virtual-tour {
  width: 100vw;
  height: 100vh;

  padding: 50px;
  background-color: #00000056;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 5;

  display: none;
}

@media(max-width: 600px) {
  #virtual-tour {
    padding: 10px;
  }
}

#virtual-tour.visible {
  display: block;
}

#virtual-tour iframe {
  width: 100%;
  height: 100%;
}

#virtual-tour .exit-button {
  position: fixed;
  top: 25px;
  right: 25px;
}

.exit-button {
  background-color: #c52142;
  color: aliceblue;
  padding: 10px;
  border-radius: 10px;

  cursor: pointer;
}

@media (min-width: 2000px) {
  #accommodation-content {
  font-size: 1.25rem !important;
  color: oklch(43.2% 0.095 166.913);
}
}


/*! tailwindcss v4.1.11 | MIT License | https://tailwindcss.com */
@layer properties;
@layer theme, base, components, utilities;
@layer theme {
  :root, :host {
    --font-sans: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
    'Noto Color Emoji';
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
    --color-amber-100: oklch(96.2% 0.059 95.617);
    --color-amber-200: oklch(92.4% 0.12 95.746);
    --color-amber-300: oklch(87.9% 0.169 91.605);
    --color-emerald-50: oklch(97.9% 0.021 166.113);
    --color-emerald-200: oklch(90.5% 0.093 164.15);
    --color-emerald-300: oklch(84.5% 0.143 164.978);
    --color-emerald-500: oklch(69.6% 0.17 162.48);
    --color-emerald-600: oklch(59.6% 0.145 163.225);
    --color-emerald-700: oklch(50.8% 0.118 165.612);
    --color-emerald-800: oklch(43.2% 0.095 166.913);
    --color-emerald-900: oklch(37.8% 0.077 168.94);
    --color-sky-200: oklch(90.1% 0.058 230.902);
    --color-sky-300: oklch(82.8% 0.111 230.318);
    --color-slate-100: oklch(96.8% 0.007 247.896);
    --color-neutral-50: oklch(98.5% 0 0);
    --color-neutral-100: oklch(97% 0 0);
    --color-neutral-400: oklch(70.8% 0 0);
    --color-neutral-600: oklch(43.9% 0 0);
    --color-neutral-700: oklch(37.1% 0 0);
    --color-neutral-800: oklch(26.9% 0 0);
    --color-black: #000;
    --spacing: 0.25rem;
    --container-3xl: 48rem;
    --container-5xl: 64rem;
    --text-sm: 0.875rem;
    --text-sm--line-height: calc(1.25 / 0.875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --text-2xl: 1.5rem;
    --text-2xl--line-height: calc(2 / 1.5);
    --text-3xl: 1.875rem;
    --text-3xl--line-height: calc(2.25 / 1.875);
    --text-4xl: 2.25rem;
    --text-4xl--line-height: calc(2.5 / 2.25);
    --text-5xl: 3rem;
    --text-5xl--line-height: 1;
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --radius-md: 0.375rem;
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --default-transition-duration: 150ms;
    --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *, ::after, ::before, ::backdrop, ::file-selector-button {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid;
  }
  html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: var(--default-font-family, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji');
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b, strong {
    font-weight: bolder;
  }
  code, kbd, samp, pre {
    font-family: var(--default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace);
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(--default-mono-font-variation-settings, normal);
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol, ul, menu {
    list-style: none;
  }
  img, svg, video, canvas, audio, iframe, embed, object {
    display: block;
    vertical-align: middle;
  }
  img, video {
    max-width: 100%;
    height: auto;
  }
  button, input, select, optgroup, textarea, ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    border-radius: 0;
    background-color: transparent;
    opacity: 1;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentcolor;
      @supports (color: color-mix(in lab, red, red)) {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden='until-found'])) {
    display: none!important;
  }
}
@layer utilities {
  .fixed {
    position: fixed;
  }
  .top-20 {
    top: calc(var(--spacing) * 20);
  }
  .right-0 {
    right: calc(var(--spacing) * 0);
  }
  .m-auto {
    margin: auto;
  }
  .flex {
    display: flex;
  }
  .h-72 {
    height: calc(var(--spacing) * 72);
  }
  .h-screen {
    height: 100vh;
  }
  .w-24 {
    width: calc(var(--spacing) * 24);
  }
  .w-full {
    width: 100%;
  }
  .max-w-\[1000px\] {
    max-width: 1000px;
  }
  .grow {
    flex-grow: 1;
  }
  .grow-1 {
    flex-grow: 1;
  }
  .cursor-pointer {
    cursor: pointer;
  }
  .flex-col {
    flex-direction: column;
  }
  .flex-row {
    flex-direction: row;
  }
  .flex-wrap {
    flex-wrap: wrap;
  }
  .items-baseline {
    align-items: baseline;
  }
  .items-center {
    align-items: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-end {
    justify-content: flex-end;
  }
  .justify-evenly {
    justify-content: space-evenly;
  }
  .gap-2 {
    gap: calc(var(--spacing) * 2);
  }
  .gap-4 {
    gap: calc(var(--spacing) * 4);
  }
  .gap-5 {
    gap: calc(var(--spacing) * 5);
  }
  .gap-8 {
    gap: calc(var(--spacing) * 8);
  }
  .space-y-1 {
    :where(& > :not(:last-child)) {
      --tw-space-y-reverse: 0;
      margin-block-start: calc(calc(var(--spacing) * 1) * var(--tw-space-y-reverse));
      margin-block-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
    }
  }
  .space-x-1 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 1) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 1) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .space-x-2 {
    :where(& > :not(:last-child)) {
      --tw-space-x-reverse: 0;
      margin-inline-start: calc(calc(var(--spacing) * 2) * var(--tw-space-x-reverse));
      margin-inline-end: calc(calc(var(--spacing) * 2) * calc(1 - var(--tw-space-x-reverse)));
    }
  }
  .self-start {
    align-self: flex-start;
  }
  .overflow-hidden {
    overflow: hidden;
  }
  .rounded {
    border-radius: 0.25rem;
  }
  .rounded-md {
    border-radius: var(--radius-md);
  }
  .border-1 {
    border-style: var(--tw-border-style);
    border-width: 1px;
  }
  .border-y-2 {
    border-block-style: var(--tw-border-style);
    border-block-width: 2px;
  }
  .border-b-2 {
    border-bottom-style: var(--tw-border-style);
    border-bottom-width: 2px;
  }
  .border-l-2 {
    border-left-style: var(--tw-border-style);
    border-left-width: 2px;
  }
  .border-emerald-500 {
    border-color: var(--color-emerald-500);
  }
  .border-emerald-800 {
    border-color: var(--color-emerald-800);
  }
  .border-slate-100 {
    border-color: var(--color-slate-100);
  }
  .border-b-emerald-200 {
    border-bottom-color: var(--color-emerald-200);
  }
  .border-b-emerald-700 {
    border-bottom-color: var(--color-emerald-700);
  }
  .border-b-emerald-900 {
    border-bottom-color: var(--color-emerald-900);
  }
  .bg-amber-100 {
    background-color: var(--color-amber-100);
  }
  .bg-amber-200 {
    background-color: var(--color-amber-200);
  }
  .bg-emerald-200 {
    background-color: var(--color-emerald-200);
  }
  .bg-emerald-800 {
    background-color: var(--color-emerald-800);
  }
  .bg-slate-100 {
    background-color: var(--color-slate-100);
  }
  .bg-gradient-to-b {
    --tw-gradient-position: to bottom in oklab;
    background-image: linear-gradient(var(--tw-gradient-stops));
  }
  .from-sky-300 {
    --tw-gradient-from: var(--color-sky-300);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }
  .to-sky-200 {
    --tw-gradient-to: var(--color-sky-200);
    --tw-gradient-stops: var(--tw-gradient-via-stops, var(--tw-gradient-position), var(--tw-gradient-from) var(--tw-gradient-from-position), var(--tw-gradient-to) var(--tw-gradient-to-position));
  }
  .p-1 {
    padding: calc(var(--spacing) * 1);
  }
  .p-2 {
    padding: calc(var(--spacing) * 2);
  }
  .p-4 {
    padding: calc(var(--spacing) * 4);
  }
  .p-7 {
    padding: calc(var(--spacing) * 7);
  }
  .py-4 {
    padding-block: calc(var(--spacing) * 4);
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .align-middle {
    vertical-align: middle;
  }
  .text-2xl {
    font-size: var(--text-2xl);
    line-height: var(--tw-leading, var(--text-2xl--line-height));
  }
  .text-3xl {
    font-size: var(--text-3xl);
    line-height: var(--tw-leading, var(--text-3xl--line-height));
  }
  .text-4xl {
    font-size: var(--text-4xl);
    line-height: var(--tw-leading, var(--text-4xl--line-height));
  }
  .text-5xl {
    font-size: var(--text-5xl);
    line-height: var(--tw-leading, var(--text-5xl--line-height));
  }
  .text-sm {
    font-size: var(--text-sm);
    line-height: var(--tw-leading, var(--text-sm--line-height));
  }
  .text-xl {
    font-size: var(--text-xl);
    line-height: var(--tw-leading, var(--text-xl--line-height));
  }
  .text-\[2rem\] {
    font-size: 2rem;
  }
  .font-bold {
    --tw-font-weight: var(--font-weight-bold);
    font-weight: var(--font-weight-bold);
  }
  .font-light {
    --tw-font-weight: var(--font-weight-light);
    font-weight: var(--font-weight-light);
  }
  .font-thin {
    --tw-font-weight: var(--font-weight-thin);
    font-weight: var(--font-weight-thin);
  }
  .text-emerald-50 {
    color: var(--color-emerald-50);
  }
  .text-emerald-200 {
    color: var(--color-emerald-200);
  }
  .text-emerald-500 {
    color: var(--color-emerald-500);
  }
  .text-emerald-800 {
    color: var(--color-emerald-800);
  }
  .text-neutral-50 {
    color: var(--color-neutral-50);
  }
  .text-neutral-100 {
    color: var(--color-neutral-100);
  }
  .text-neutral-400 {
    color: var(--color-neutral-400);
  }
  .text-neutral-600 {
    color: var(--color-neutral-600);
  }
  .text-neutral-700 {
    color: var(--color-neutral-700);
  }
  .text-slate-100 {
    color: var(--color-slate-100);
  }
  .opacity-0 {
    opacity: 0%;
  }
  .opacity-75 {
    opacity: 75%;
  }
  .opacity-95 {
    opacity: 95%;
  }
  .shadow-md {
    --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
    box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  }
  .shadow-black {
    --tw-shadow-color: #000;
    @supports (color: color-mix(in lab, red, red)) {
      --tw-shadow-color: color-mix(in oklab, var(--color-black) var(--tw-shadow-alpha), transparent);
    }
  }
  .transition-all {
    transition-property: all;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-colors {
    transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-opacity {
    transition-property: opacity;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .transition-transform {
    transition-property: transform, translate, scale, rotate;
    transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
    transition-duration: var(--tw-duration, var(--default-transition-duration));
  }
  .duration-100 {
    --tw-duration: 100ms;
    transition-duration: 100ms;
  }
  .duration-500 {
    --tw-duration: 500ms;
    transition-duration: 500ms;
  }
  .ease-in-out {
    --tw-ease: var(--ease-in-out);
    transition-timing-function: var(--ease-in-out);
  }
  .select-none {
    -webkit-user-select: none;
    user-select: none;
  }
  .odd\:bg-emerald-200 {
    &:nth-child(odd) {
      background-color: var(--color-emerald-200);
    }
  }
  .even\:bg-emerald-300 {
    &:nth-child(even) {
      background-color: var(--color-emerald-300);
    }
  }
  .even\:bg-emerald-600 {
    &:nth-child(even) {
      background-color: var(--color-emerald-600);
    }
  }
  .hover\:bg-amber-300 {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-amber-300);
      }
    }
  }
  .hover\:bg-emerald-700 {
    &:hover {
      @media (hover: hover) {
        background-color: var(--color-emerald-700);
      }
    }
  }
  .hover\:text-neutral-800 {
    &:hover {
      @media (hover: hover) {
        color: var(--color-neutral-800);
      }
    }
  }
  .hover\:opacity-100 {
    &:hover {
      @media (hover: hover) {
        opacity: 100%;
      }
    }
  }
  .md\:p-2 {
    @media (width >= 48rem) {
      padding: calc(var(--spacing) * 2);
    }
  }
  .md\:text-xl {
    @media (width >= 48rem) {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
  }
  .xl\:grow-0 {
    @media (width >= 80rem) {
      flex-grow: 0;
    }
  }
  .xl\:basis-3xl {
    @media (width >= 80rem) {
      flex-basis: var(--container-3xl);
    }
  }
  .xl\:basis-5xl {
    @media (width >= 80rem) {
      flex-basis: var(--container-5xl);
    }
  }
  .xl\:flex-row {
    @media (width >= 80rem) {
      flex-direction: row;
    }
  }
  .xl\:flex-nowrap {
    @media (width >= 80rem) {
      flex-wrap: nowrap;
    }
  }
  .xl\:text-2xl {
    @media (width >= 80rem) {
      font-size: var(--text-2xl);
      line-height: var(--tw-leading, var(--text-2xl--line-height));
    }
  }
  .xl\:text-4xl {
    @media (width >= 80rem) {
      font-size: var(--text-4xl);
      line-height: var(--tw-leading, var(--text-4xl--line-height));
    }
  }
  .xl\:text-xl {
    @media (width >= 80rem) {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
  }
  .xl\:font-medium {
    @media (width >= 80rem) {
      --tw-font-weight: var(--font-weight-medium);
      font-weight: var(--font-weight-medium);
    }
  }
  .\32 xl\:text-lg {
    @media (width >= 96rem) {
      font-size: var(--text-lg);
      line-height: var(--tw-leading, var(--text-lg--line-height));
    }
  }
}
@property --tw-space-y-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-space-x-reverse {
  syntax: "*";
  inherits: false;
  initial-value: 0;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-gradient-position {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-via {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-to {
  syntax: "<color>";
  inherits: false;
  initial-value: #0000;
}
@property --tw-gradient-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-via-stops {
  syntax: "*";
  inherits: false;
}
@property --tw-gradient-from-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 0%;
}
@property --tw-gradient-via-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 50%;
}
@property --tw-gradient-to-position {
  syntax: "<length-percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-font-weight {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-inset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-inset-ring-color {
  syntax: "*";
  inherits: false;
}
@property --tw-inset-ring-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-ring-inset {
  syntax: "*";
  inherits: false;
}
@property --tw-ring-offset-width {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tw-ring-offset-color {
  syntax: "*";
  inherits: false;
  initial-value: #fff;
}
@property --tw-ring-offset-shadow {
  syntax: "*";
  inherits: false;
  initial-value: 0 0 #0000;
}
@property --tw-duration {
  syntax: "*";
  inherits: false;
}
@property --tw-ease {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-space-y-reverse: 0;
      --tw-space-x-reverse: 0;
      --tw-border-style: solid;
      --tw-gradient-position: initial;
      --tw-gradient-from: #0000;
      --tw-gradient-via: #0000;
      --tw-gradient-to: #0000;
      --tw-gradient-stops: initial;
      --tw-gradient-via-stops: initial;
      --tw-gradient-from-position: 0%;
      --tw-gradient-via-position: 50%;
      --tw-gradient-to-position: 100%;
      --tw-font-weight: initial;
      --tw-shadow: 0 0 #0000;
      --tw-shadow-color: initial;
      --tw-shadow-alpha: 100%;
      --tw-inset-shadow: 0 0 #0000;
      --tw-inset-shadow-color: initial;
      --tw-inset-shadow-alpha: 100%;
      --tw-ring-color: initial;
      --tw-ring-shadow: 0 0 #0000;
      --tw-inset-ring-color: initial;
      --tw-inset-ring-shadow: 0 0 #0000;
      --tw-ring-inset: initial;
      --tw-ring-offset-width: 0px;
      --tw-ring-offset-color: #fff;
      --tw-ring-offset-shadow: 0 0 #0000;
      --tw-duration: initial;
      --tw-ease: initial;
    }
  }
}
