/* Local fallback for the utility classes used by the Razor pages.
   The Tailwind CDN script remains loaded, but production must not depend on it. */

*, ::before, ::after {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

.relative { position: relative; }
.flex { display: flex; }
.grid { display: grid; }
.hidden, .oculto { display: none; }
.block { display: block; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.whitespace-nowrap { white-space: nowrap; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.resize-none { resize: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cursor-pointer { cursor: pointer; }

.flex-1 { flex: 1 1 0%; }
.flex-grow, .grow { flex-grow: 1; }
.w-full { width: 100%; }
.w-16 { width: 4rem; }
.w-60 { width: 15rem; }
.w-\[400px\] { width: 400px; }
.w-\[512px\] { width: 512px; }
.max-w-md { max-width: 28rem; }
.max-w-\[512px\] { max-width: 512px; }
.max-w-\[960px\] { max-width: 960px; }
.min-w-0 { min-width: 0; }
.min-w-40 { min-width: 10rem; }
.min-w-72 { min-width: 18rem; }
.min-w-\[84px\] { min-width: 84px; }
.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-\[72px\] { height: 72px; }
.min-h-screen { min-height: 100vh; }
.size-full { width: 100%; height: 100%; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-4 { width: 1rem; height: 1rem; }
.aspect-square { aspect-ratio: 1 / 1; }

.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: .5rem; }
.space-x-4 > :not([hidden]) ~ :not([hidden]) { margin-left: 1rem; }
.mr-2 { margin-right: .5rem; }
.mr-3 { margin-right: .75rem; }
.mt-8 { margin-top: 2rem; }
.mt-auto { margin-top: auto; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-\[15px\] { padding: 15px; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-40 { padding-left: 10rem; padding-right: 10rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.py-3 { padding-top: .75rem; padding-bottom: .75rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.pb-2 { padding-bottom: .5rem; }
.pb-3 { padding-bottom: .75rem; }
.pb-4 { padding-bottom: 1rem; }
.pt-1 { padding-top: .25rem; }
.pt-4 { padding-top: 1rem; }
.pt-5 { padding-top: 1.25rem; }
.pb-\[13px\] { padding-bottom: 13px; }

.rounded-md { border-radius: .375rem; }
.rounded-xl { border-radius: .75rem; }
.rounded-full { border-radius: 9999px; }
.border { border-width: 1px; border-style: solid; }
.border-none { border: 0; }
.border-solid { border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-b-\[3px\] { border-bottom-width: 3px; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-\[\#dde1e3\] { border-color: #dde1e3; }
.border-b-\[\#f1f2f4\] { border-bottom-color: #f1f2f4; }
.border-b-transparent { border-bottom-color: transparent; }
.border-t-\[\#dde1e3\] { border-top-color: #dde1e3; }
.bg-white { background-color: #fff; }
.bg-\[\#0b80ee\] { background-color: #0b80ee; }
.bg-\[\#f0f2f5\] { background-color: #f0f2f5; }
.bg-\[\#f1f2f4\] { background-color: #f1f2f4; }
.bg-red-500 { background-color: #ef4444; }
.bg-red-600, .hover\:bg-red-600:hover { background-color: #dc2626; }
.bg-blue-500 { background-color: #3b82f6; }
.bg-blue-600, .hover\:bg-blue-600:hover { background-color: #2563eb; }
.bg-green-500 { background-color: #22c55e; }
.bg-yellow-400 { background-color: #facc15; }
.bg-yellow-500, .hover\:bg-yellow-500:hover { background-color: #eab308; }
.bg-purple-500 { background-color: #a855f7; }
.bg-purple-600, .hover\:bg-purple-600:hover { background-color: #9333ea; }
.bg-center { background-position: center; }
.bg-cover { background-size: cover; }
.bg-no-repeat { background-repeat: no-repeat; }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1); }

.text-white { color: #fff; }
.text-gray-500 { color: #6b7280; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-\[\#111518\] { color: #111518; }
.text-\[\#121416\] { color: #121416; }
.text-\[\#6a7681\] { color: #6a7681; }
.text-\[\#60768a\] { color: #60768a; }
.placeholder\:text-\[\#60768a\]::placeholder { color: #60768a; }
.placeholder\:text-\[\#6a7681\]::placeholder { color: #6a7681; }
.text-sm { font-size: .875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.leading-normal { line-height: 1.5; }
.leading-tight { line-height: 1.25; }
.tracking-\[0\.015em\] { letter-spacing: .015em; }
.tracking-light { letter-spacing: 0; }
.underline { text-decoration-line: underline; }

.form-input,
input.form-input,
select.form-input,
textarea.form-input {
  appearance: none;
}

.focus\:outline-0:focus { outline: 0; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:border-none:focus { border: 0; }
.focus\:border-\[\#dde1e3\]:focus { border-color: #dde1e3; }
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; }
.duration-150 { transition-duration: 150ms; }
.ease-in-out { transition-timing-function: cubic-bezier(.4, 0, .2, 1); }

@media (max-width: 768px) {
  .px-40 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .grid-cols-2 {
    grid-template-columns: 1fr;
  }
}
