/*! tailwindcss v2.0.3 | MIT License | https://tailwindcss.com */

/*! modern-normalize v1.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize */

/*
Document
========
*/

/**
Use a better box model (opinionated).
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
Use a more readable tab size (opinionated).
*/

:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/*
Sections
========
*/

/**
Remove the margin in all browsers.
*/

body {
  margin: 0;
}

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/

body {
  font-family:
		system-ui,
		-apple-system, /* Firefox supports this but not yet `system-ui` */
		'Segoe UI',
		Roboto,
		Helvetica,
		Arial,
		sans-serif,
		'Apple Color Emoji',
		'Segoe UI Emoji';
}

/*
Grouping content
================
*/

/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/

/*
Text-level semantics
====================
*/

/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/

/**
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/

code,
pre {
  font-family:
		ui-monospace,
		SFMono-Regular,
		Consolas,
		'Liberation Mono',
		Menlo,
		monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
Add the correct font size in all browsers.
*/

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

/*
Tabular data
============
*/

/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
}

/*
Forms
=====
*/

/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/

button,
input,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/

button,
select { /* 1 */
  text-transform: none;
}

/**
Correct the inability to style clickable types in iOS and Safari.
*/

button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button;
}

/**
Remove the inner border and padding in Firefox.
*/

/**
Restore the focus styles unset by the previous rule.
*/

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/

/**
Add the correct vertical alignment in Chrome and Firefox.
*/

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/

/*
Interactive
===========
*/

/*
Add the correct display in Chrome and Safari.
*/

/**
 * Manually forked from SUIT CSS Base: https://github.com/suitcss/base
 * A thin layer on top of normalize.css that provides a starting point more
 * suitable for web applications.
 */

/**
 * Removes the default spacing and border for appropriate elements.
 */


h1,
h2,
h3,
h4,
h5,
p,
pre {
  margin: 0;
}

button {
  background-color: transparent;
  background-image: none;
}

/**
 * Work around a Firefox/IE bug where the transparent `button` background
 * results in a loss of the default `button` focus styles.
 */

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}


ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
 * Tailwind custom reset styles
 */

/**
 * 1. Use the user's configured `sans` font-family (with Tailwind's default
 *    sans-serif font stack as a fallback) as a sane default.
 * 2. Use Tailwind's default "normal" line-height so the user isn't forced
 *    to override it to ensure consistency even when using the default theme.
 */

html {
  font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 1 */
  line-height: 1.5; /* 2 */
}

/**
 * Inherit font-family and line-height from `html` so users can set them as
 * a class directly on the `html` element.
 */

body {
  font-family: inherit;
  line-height: inherit;
}

/**
 * 1. Prevent padding and border from affecting element width.
 *
 *    We used to set this in the html element and inherit from
 *    the parent element for everything else. This caused issues
 *    in shadow-dom-enhanced elements like <details> where the content
 *    is wrapped by a div with box-sizing set to `content-box`.
 *
 *    https://github.com/mozdevs/cssremedy/issues/4
 *
 *
 * 2. Allow adding a border to an element by just adding a border-width.
 *
 *    By default, the way the browser specifies that an element should have no
 *    border is by setting it's border-style to `none` in the user-agent
 *    stylesheet.
 *
 *    In order to easily add borders to elements by just setting the `border-width`
 *    property, we change the default border-style for all elements to `solid`, and
 *    use border-width to hide them instead. This way our `border` utilities only
 *    need to set the `border-width` property instead of the entire `border`
 *    shorthand, making our border utilities much more straightforward to compose.
 *
 *    https://github.com/tailwindcss/tailwindcss/pull/116
 */

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

/*
 * Ensure horizontal rules are visible by default
 */

/**
 * Undo the `border-style: none` reset that Normalize applies to images so that
 * our `border-{width}` utilities have the expected effect.
 *
 * The Normalize reset is unnecessary for us since we default the border-width
 * to 0 on all elements.
 *
 * https://github.com/tailwindcss/tailwindcss/issues/362
 */

img {
  border-style: solid;
}

textarea {
  resize: vertical;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: inherit;
  font-weight: inherit;
}

/**
 * Reset links to optimize for opt-in styling instead of
 * opt-out.
 */

a {
  color: inherit;
  text-decoration: inherit;
}

/**
 * Reset form element properties that are easy to forget to
 * style explicitly so you don't inadvertently introduce
 * styles that deviate from your design system. These styles
 * supplement a partial reset that is already applied by
 * normalize.css.
 */

button,
input,
select,
textarea {
  padding: 0;
  line-height: inherit;
  color: inherit;
}

/**
 * Use the configured 'mono' font family for elements that
 * are expected to be rendered with a monospace font, falling
 * back to the system monospace stack if there is no configured
 * 'mono' font family.
 */

pre,
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/**
 * Make replaced elements `display: block` by default as that's
 * the behavior you want almost all of the time. Inspired by
 * CSS Remedy, with `svg` added as well.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
svg,
video,
iframe {
  display: block;
  vertical-align: middle;
}

/**
 * Constrain images and videos to the parent width and preserve
 * their instrinsic aspect ratio.
 *
 * https://github.com/mozdevs/cssremedy/issues/14
 */

img,
video {
  max-width: 100%;
  height: auto;
}


      [type='text'],
      [type='email'],
      [type='url'],
      [type='password'],
      [type='date'],
      [type='search'],
      [type='tel'],
      textarea,
      select
     {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
}

[type='text']:focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='date']:focus, [type='search']:focus, [type='tel']:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder, textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}


      [type='radio']
     {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
}

[type='radio'] {
  border-radius: 100%;
}


      [type='radio']:focus
     {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}


      [type='radio']:checked
     {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}


      [type='radio']:checked:hover,
      [type='radio']:checked:focus
     {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px auto -webkit-focus-ring-color;
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.prose {
  color: #374151;
  max-width: 65ch;
}

.prose [class~="lead"] {
  color: #4b5563;
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose a {
  color: #111827;
  text-decoration: underline;
  font-weight: 500;
}

.prose strong {
  color: #111827;
  font-weight: 600;
}

.prose ul > li {
  position: relative;
  padding-left: 1.75em;
}

.prose ul > li::before {
  content: "";
  position: absolute;
  background-color: #d1d5db;
  border-radius: 50%;
  width: 0.375em;
  height: 0.375em;
  top: calc(0.875em - 0.1875em);
  left: 0.25em;
}

.prose h1 {
  color: #111827;
  font-weight: 800;
  font-size: 2.25em;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
}

.prose h2 {
  color: #111827;
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose h3 {
  color: #111827;
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose h4 {
  color: #111827;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose code {
  color: #111827;
  font-weight: 600;
  font-size: 0.875em;
}

.prose code::before {
  content: "`";
}

.prose code::after {
  content: "`";
}

.prose a code {
  color: #111827;
}

.prose pre {
  color: #e5e7eb;
  background-color: #1f2937;
  overflow-x: auto;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose pre code {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: 400;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose pre code::before {
  content: "";
}

.prose pre code::after {
  content: "";
}

.prose table {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose thead {
  color: #111827;
  font-weight: 600;
  border-bottom-width: 1px;
  border-bottom-color: #d1d5db;
}

.prose thead th {
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose tbody tr {
  border-bottom-width: 1px;
  border-bottom-color: #e5e7eb;
}

.prose tbody tr:last-child {
  border-bottom-width: 0;
}

.prose tbody td {
  vertical-align: top;
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose {
  font-size: 1rem;
  line-height: 1.75;
}

.prose p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose img {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose video {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose h2 code {
  font-size: 0.875em;
}

.prose h3 code {
  font-size: 0.9em;
}

.prose ul {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.prose li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose > ul > li p {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose > ul > li > *:first-child {
  margin-top: 1.25em;
}

.prose > ul > li > *:last-child {
  margin-bottom: 1.25em;
}

.prose ul ul {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose h2 + * {
  margin-top: 0;
}

.prose h3 + * {
  margin-top: 0;
}

.prose h4 + * {
  margin-top: 0;
}

.prose thead th:first-child {
  padding-left: 0;
}

.prose thead th:last-child {
  padding-right: 0;
}

.prose tbody td:first-child {
  padding-left: 0;
}

.prose tbody td:last-child {
  padding-right: 0;
}

.prose > :first-child {
  margin-top: 0;
}

.prose > :last-child {
  margin-bottom: 0;
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(2rem * var(--tw-space-x-reverse));
  margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}

.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgba(229, 231, 235, var(--tw-bg-opacity));
}

.bg-gray-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.bg-gray-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

.bg-gray-900 {
  --tw-bg-opacity: 1;
  background-color: rgba(17, 24, 39, var(--tw-bg-opacity));
}

.bg-red-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(252, 165, 165, var(--tw-bg-opacity));
}

.bg-red-500 {
  --tw-bg-opacity: 1;
  background-color: rgba(239, 68, 68, var(--tw-bg-opacity));
}

.bg-blue-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(147, 197, 253, var(--tw-bg-opacity));
}

.bg-blue-700 {
  --tw-bg-opacity: 1;
  background-color: rgba(29, 78, 216, var(--tw-bg-opacity));
}

.bg-pink-300 {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 168, 212, var(--tw-bg-opacity));
}

.hover\:bg-gray-50:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.hover\:bg-gray-100:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(209, 213, 219, var(--tw-bg-opacity));
}

.focus\:bg-gray-50:focus {
  --tw-bg-opacity: 1;
  background-color: rgba(249, 250, 251, var(--tw-bg-opacity));
}

.focus\:bg-gray-100:focus {
  --tw-bg-opacity: 1;
  background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
}

.border-transparent {
  border-color: transparent;
}

.border-gray-100 {
  --tw-border-opacity: 1;
  border-color: rgba(243, 244, 246, var(--tw-border-opacity));
}

.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgba(229, 231, 235, var(--tw-border-opacity));
}

.border-gray-300 {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.border-gray-700 {
  --tw-border-opacity: 1;
  border-color: rgba(55, 65, 81, var(--tw-border-opacity));
}

.hover\:border-white:hover {
  --tw-border-opacity: 1;
  border-color: rgba(255, 255, 255, var(--tw-border-opacity));
}

.focus\:border-gray-300:focus {
  --tw-border-opacity: 1;
  border-color: rgba(209, 213, 219, var(--tw-border-opacity));
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-full {
  border-radius: 9999px;
}

.border-2 {
  border-width: 2px;
}

.border {
  border-width: 1px;
}

.border-t {
  border-top-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.cursor-pointer {
  cursor: pointer;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-evenly {
  justify-content: space-evenly;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.font-sans {
  font-family: Nunito, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.font-thin {
  font-weight: 100;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-9 {
  height: 2.25rem;
}

.h-10 {
  height: 2.5rem;
}

.h-16 {
  height: 4rem;
}

.h-20 {
  height: 5rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.leading-4 {
  line-height: 1rem;
}

.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mr-3 {
  margin-right: 0.75rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.mt-10 {
  margin-top: 2.5rem;
}

.-mr-0 {
  margin-right: 0px;
}

.-mr-2 {
  margin-right: -0.5rem;
}

.max-w-xl {
  max-width: 36rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.min-h-screen {
  min-height: 100vh;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.overflow-hidden {
  overflow: hidden;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-6 {
  padding: 1.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

* {
  --tw-shadow: 0 0 #0000;
}

.shadow {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-xl {
  --tw-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

* {
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
}

.fill-current {
  fill: currentColor;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.text-gray-100 {
  --tw-text-opacity: 1;
  color: rgba(243, 244, 246, var(--tw-text-opacity));
}

.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgba(75, 85, 99, var(--tw-text-opacity));
}

.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.text-gray-800 {
  --tw-text-opacity: 1;
  color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.text-red-100 {
  --tw-text-opacity: 1;
  color: rgba(254, 226, 226, var(--tw-text-opacity));
}

.text-red-500 {
  --tw-text-opacity: 1;
  color: rgba(239, 68, 68, var(--tw-text-opacity));
}

.text-green-500 {
  --tw-text-opacity: 1;
  color: rgba(16, 185, 129, var(--tw-text-opacity));
}

.text-green-600 {
  --tw-text-opacity: 1;
  color: rgba(5, 150, 105, var(--tw-text-opacity));
}

.text-blue-500 {
  --tw-text-opacity: 1;
  color: rgba(59, 130, 246, var(--tw-text-opacity));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

.hover\:text-gray-500:hover {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.hover\:text-gray-700:hover {
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.hover\:text-gray-900:hover {
  --tw-text-opacity: 1;
  color: rgba(17, 24, 39, var(--tw-text-opacity));
}

.focus\:text-gray-500:focus {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

.underline {
  text-decoration: underline;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-10 {
  width: 2.5rem;
}

.w-20 {
  width: 5rem;
}

.w-24 {
  width: 6rem;
}

.w-60 {
  width: 15rem;
}

.w-auto {
  width: auto;
}

.w-1\/3 {
  width: 33.333333%;
}

.w-1\/4 {
  width: 25%;
}

.w-3\/4 {
  width: 75%;
}

.w-1\/5 {
  width: 20%;
}

.w-1\/6 {
  width: 16.666667%;
}

.w-full {
  width: 100%;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-4 {
  gap: 1rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-150 {
  transition-duration: 150ms;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  50% {
    opacity: .5;
  }
}

@keyframes pulse {
  50% {
    opacity: .5;
  }
}

@-webkit-keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    -webkit-animation-timing-function: cubic-bezier(0.8,0,1,1);
            animation-timing-function: cubic-bezier(0.8,0,1,1);
  }

  50% {
    transform: none;
    -webkit-animation-timing-function: cubic-bezier(0,0,0.2,1);
            animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

button:focus,
input:focus {
  box-shadow: none;
  outline: 0;
}

pre {
  font-family: inherit;
  white-space: pre-wrap;
}

.container {
  padding: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1000px;
  }
}

.container-full {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

* {
  font-size: 18px;
  font-family: "Microsoft JhengHei", Arial, sans-serif;
  box-sizing: border-box;
}

@media (max-width: 640px) {
  * {
    font-size: 16px;
  }
}

body {
  display: flex;
  justify-content: center;
  position: relative;
}

main {
  box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.3), -4px 0 8px -4px rgba(0, 0, 0, 0.3);
  min-height: calc(100vh - 82px);
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  border-color: #dadada;
  border-top-width: 1px;
}

.title h5 {
  font-size: 24px;
  color: #0291B4;
  font-weight: 700;
  margin: 0px;
}

@media (max-width: 640px) {
  .title h5 {
    font-size: 18px;
  }
}

.input-block {
  font-size: 24px;
  color: #808080;
  font-weight: 700;
  padding-bottom: 0px;
  padding: 1rem;
}

@media (max-width: 640px) {
  .input-block {
    font-size: 18px;
  }
}

.input-block div {
  font-size: 24px;
  color: #808080;
}

@media (max-width: 640px) {
  .input-block div {
    font-size: 18px;
  }
}

.input-block span {
  font-size: 18px;
  color: #b3b3b3;
  margin-right: 10px;
}

@media (max-width: 640px) {
  .input-block span {
    font-size: 14px;
  }
}

.input-block .input-item {
  position: relative;
}

.input-block .input-item input {
  border: 1px solid #b3b3b3;
  color: #808080;
  font-size: 21px;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  width: 100%;
}

@media (max-width: 640px) {
  .input-block .input-item input {
    font-size: 16px;
  }
}

.input-block .input-item input#store {
  cursor: pointer;
}

.input-block .input-item:last-of-type input {
  margin-bottom: 0px;
}

.input-block .input-item span {
  color: #c1272d;
  position: absolute;
  top: 0px;
  right: 0px;
}

.input-block.invoice:first-of-type {
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.3);
}

.footerPostion {
  bottom: -2rem;
  position: absolute;
  width: 100%;
}

footer {
  box-shadow: 0px -4px 8px -4px rgba(0, 0, 0, 0.3);
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: relative;
}

footer .copyright {
  font-size: 0.75rem;
  line-height: 1rem;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

.NotoSansTC {
  font-family: "Noto Sans TC", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
}

main {
  min-height: calc(100vh - 54px);
}

@media (max-width: 640px) {
  main {
    min-height: calc(100vh - 64px);
  }
}

header {
  position: absolute;
  width: 100%;
  z-index: 20;
}

nav {
  box-shadow: 0px 4px 8px -4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

nav .nameBlock {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  --tw-text-opacity: 1;
  color: rgba(55, 65, 81, var(--tw-text-opacity));
}

nav .nameBlock .name {
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.75rem;
  letter-spacing: -0.025em;
}

nav .function {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

nav .function .notice {
  margin-right: 1rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

nav .function .notice:hover {
  --tw-text-opacity: 1;
  color: rgba(107, 114, 128, var(--tw-text-opacity));
}

nav .function .member:hover {
  --tw-bg-opacity: 1;
  background-color: rgba(107, 114, 128, var(--tw-bg-opacity));
}

nav .function .member {
  --tw-border-opacity: 1;
  border-color: rgba(156, 163, 175, var(--tw-border-opacity));
}

nav .function .member:hover {
  border-color: transparent;
}

nav .function .member {
  border-radius: 0.25rem;
  border-width: 1px;
  display: flex;
  align-items: center;
  margin-left: 1rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
  --tw-text-opacity: 1;
  color: rgba(156, 163, 175, var(--tw-text-opacity));
}

nav .function .member:hover {
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
}

nav .function .member:first-of-type {
  margin-left: 0px;
}

section:first-of-type {
  margin-top: 46px;
}

.bannerPostion {
  background: #4d4d4d;
  display: flex;
  justify-content: center;
  width: 100%;
}

.bannerPostion .bannerList {
  box-shadow: 4px 0 8px -4px rgba(0, 0, 0, 0.3), -4px 0 8px -4px rgba(0, 0, 0, 0.3);
}

.bannerPostion .bannerList .banner {
  display: flex;
  justify-content: center;
  height: 100%;
}

.bannerPostion .bannerList .banner img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.popularTitle {
  font-size: 24px;
  color: #0291B4;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

@media (max-width: 640px) {
  .popularTitle {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.popular {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .popular {
    margin: 0;
    margin-bottom: 1rem;
  }
}

@media (min-width: 640px) {
  .popular .popularItem {
    width: 25%;
  }
}

.popular .popularItem .itemCard {
  margin: 10px;
  border-color: #dadada;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  border-radius: 0.375rem;
  border-width: 1px;
  transition: all 0.3s ease-in-out;
}

.popular .popularItem .itemCard .img {
  width: 100%;
  border-color: #dadada;
  border-bottom-width: 1px;
  height: 24rem;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .img {
    height: 90vw;
  }
}

.popular .popularItem .itemCard .img img {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.popular .popularItem .itemCard .content {
  color: #808080;
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.popular .popularItem .itemCard .content .name {
  font-weight: 700;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .name {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.popular .popularItem .itemCard .content .name .mainTitle {
  font-size: 24px;
  color: #0291B4;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .name .mainTitle {
    font-size: 18px;
  }
}

.popular .popularItem .itemCard .content .name .subTitle {
  font-size: 21px;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .name .subTitle {
    font-size: 16px;
  }
}

.popular .popularItem .itemCard .content .price {
  justify-content: space-between;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .price {
    display: flex;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.popular .popularItem .itemCard .content .price * {
  font-size: 21px;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .price * {
    font-size: 16px;
  }
}

.popular .popularItem .itemCard .content .price .original span {
  text-decoration: line-through;
}

.popular .popularItem .itemCard .content .price .special {
  color: #c1272d;
  font-weight: 700;
}

.popular .popularItem .itemCard .content .text {
  font-size: 21px;
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .text {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .text {
    font-size: 16px;
  }
}

.popular .popularItem .itemCard .content > div {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content > div {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.popular .popularItem .itemCard .content .text-limit {
  height: 90px;
  word-wrap: break-word;
  overflow: hidden;
  text-overflow: ellipsis;
}

.popular .popularItem .itemCard .content .item-buy {
  padding-top: 0px;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy {
    padding-top: 0px;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main {
  width: 100%;
  height: 56px;
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 0;
  border-radius: 0.375rem;
  border-style: none;
  font-weight: 700;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main {
    font-size: 16px;
    height: 42px;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main {
  color: #FFF;
  background: #0291B4;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main:hover {
  background: #016882;
  color: #f2f2f2;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main:active {
  background: #015468;
  color: #d9d9d9;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-main {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main {
  color: #FFF;
  background: #0291B4;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white {
  color: #0291B4;
  background: #FFF;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-white {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray {
  color: #808080;
  background: #FFF;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray:hover {
  background: #e6e6e6;
  color: #737373;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray:active {
  background: #d9d9d9;
  color: #5a5a5a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray {
    padding: 0;
  }
}

.popular .popularItem .itemCard:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  transform: translatey(-10px);
}

.popular .popularItem .itemCard .img {
  height: 12.5rem;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .img {
    height: 90vw;
  }
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content > div {
    padding: 0.5rem;
  }
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .name {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.popular .popularItem .itemCard .content .name .mainTitle {
  font-size: 21px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .name .mainTitle {
    font-size: 18px;
  }
}

.popular .popularItem .itemCard .content .name .subTitle {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .name .subTitle {
    font-size: 16px;
  }
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .price {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

.popular .popularItem .itemCard .content .price * {
  font-size: 18px;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .price * {
    font-size: 16px;
  }
}

.popular .popularItem .itemCard .content .text {
  font-size: 18px;
}

@media (min-width: 640px) {
  .popular .popularItem .itemCard .content .text {
    padding: 0.5rem;
  }
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .text {
    font-size: 16px;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main {
  width: 100%;
  height: 56px;
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 0;
  border-radius: 0.375rem;
  border-style: none;
  font-weight: 700;
  font-size: 18px;
  height: 40px;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main {
    font-size: 16px;
    height: 42px;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main {
  color: #FFF;
  background: #0291B4;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main:hover {
  background: #016882;
  color: #f2f2f2;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-main:active {
  background: #015468;
  color: #d9d9d9;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-main {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main {
  color: #FFF;
  background: #0291B4;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn2-main {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white {
  color: #0291B4;
  background: #FFF;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-white:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-white {
    padding: 0;
  }
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray {
  color: #808080;
  background: #FFF;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray:hover {
  background: #e6e6e6;
  color: #737373;
}

.popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray:active {
  background: #d9d9d9;
  color: #5a5a5a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .popular .popularItem .itemCard .content .item-buy .btn-main.btn-gray {
    padding: 0;
  }
}

.feature {
  text-shadow: 0px 0px 1px white, 0px 0px 1px white, 0px 0px 1px white;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.feature button {
  width: 60%;
  height: 56px;
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 0;
  border-radius: 0.375rem;
  border-style: none;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .feature button {
    font-size: 16px;
    height: 42px;
  }
}

.feature button.btn-main {
  color: #FFF;
  background: #0291B4;
}

.feature button.btn-main:hover {
  background: #016882;
  color: #f2f2f2;
}

.feature button.btn-main:active {
  background: #015468;
  color: #d9d9d9;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .feature button.btn-main {
    padding: 0;
  }
}

.feature button.btn2-main {
  color: #FFF;
  background: #0291B4;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.feature button.btn2-main:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.feature button.btn2-main:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .feature button.btn2-main {
    padding: 0;
  }
}

.feature button.btn-white {
  color: #0291B4;
  background: #FFF;
}

.feature button.btn-white:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.feature button.btn-white:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .feature button.btn-white {
    padding: 0;
  }
}

.feature button.btn-gray {
  color: #808080;
  background: #FFF;
}

.feature button.btn-gray:hover {
  background: #e6e6e6;
  color: #737373;
}

.feature button.btn-gray:active {
  background: #d9d9d9;
  color: #5a5a5a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .feature button.btn-gray {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .feature button {
    width: 100%;
  }
}

.featureTitle {
  font-size: 48px;
  color: #0291B4;
  margin-bottom: 1rem;
  text-align: center;
}

.featureSubTitle {
  font-size: 18px;
  margin-bottom: 1rem;
  text-align: center;
}

.featurePostion {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.featurePostion .featureItem {
  padding: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .featurePostion .featureItem {
    width: 33.333333%;
  }
}

.featurePostion .featureItem .img {
  display: flex;
  justify-content: center;
  width: 100%;
}

@media (max-width: 640px) {
  .featurePostion .featureItem .img {
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.featurePostion .featureItem .img img {
  box-shadow: 0px 0px 1px white, 0px 0px 1px white, 0px 0px 1px white;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 640px) {
  .featurePostion .featureItem .img img {
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
}

.featurePostion .featureItem .mainTitle {
  color: #0291B4;
  font-size: 1.25rem;
  line-height: 1.75rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.featurePostion .featureItem .subTitle {
  color: #4d4d4d;
}

.featurePostion .featureItem .content {
  color: #666;
  font-size: 1rem;
  line-height: 1.5rem;
  line-height: 1.625;
}

.feature1 {
  --tw-bg-opacity: 1;
  background-color: rgba(254, 243, 199, var(--tw-bg-opacity));
}

.feature1 .img img {
  border-radius: 9999px;
  width: 75%;
}

.feature2 {
  box-shadow: inset 0px 4px 8px -4px rgba(0, 0, 0, 0.3);
}

.feature2 .featureTitle {
  font-size: 32px;
  color: #808080;
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.feature2 .subTitle {
  text-align: left;
}

.feature2 .img {
  border-width: 1px;
}

.imgBg {
  height: 16rem;
  background: no-repeat top;
  background-size: cover;
  background-attachment: fixed;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

@media (min-width: 640px) {
  .imgBg {
    display: flex;
  }
}

@media (max-width: 640px) {
  .imgBg {
    background-position: unset;
    background-attachment: unset;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.imgBg::after {
  content: "";
  background: rgba(0, 0, 0, 0.3);
  height: 100%;
  position: absolute;
  top: 0px;
  width: 100%;
}

.imgBg .imgText {
  font-size: 18px;
  text-shadow: 0px 0px 6px black;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgba(255, 255, 255, var(--tw-text-opacity));
  z-index: 10;
}

.imgBg .imgTitle {
  font-size: 40px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}

.imgBg button {
  width: 30%;
  height: 56px;
  font-size: 21px;
  letter-spacing: 5px;
  line-height: 0;
  border-radius: 0.375rem;
  border-style: none;
  font-weight: 700;
  z-index: 10;
}

@media (max-width: 640px) {
  .imgBg button {
    font-size: 16px;
    height: 42px;
  }
}

.imgBg button.btn-main {
  color: #FFF;
  background: #0291B4;
}

.imgBg button.btn-main:hover {
  background: #016882;
  color: #f2f2f2;
}

.imgBg button.btn-main:active {
  background: #015468;
  color: #d9d9d9;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .imgBg button.btn-main {
    padding: 0;
  }
}

.imgBg button.btn2-main {
  color: #FFF;
  background: #0291B4;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.8);
}

.imgBg button.btn2-main:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.imgBg button.btn2-main:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .imgBg button.btn2-main {
    padding: 0;
  }
}

.imgBg button.btn-white {
  color: #0291B4;
  background: #FFF;
}

.imgBg button.btn-white:hover {
  background: #e6e6e6;
  color: #027d9b;
}

.imgBg button.btn-white:active {
  background: #d9d9d9;
  color: #015468;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .imgBg button.btn-white {
    padding: 0;
  }
}

.imgBg button.btn-gray {
  color: #808080;
  background: #FFF;
}

.imgBg button.btn-gray:hover {
  background: #e6e6e6;
  color: #737373;
}

.imgBg button.btn-gray:active {
  background: #d9d9d9;
  color: #5a5a5a;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25) inset;
}

@media (max-width: 640px) {
  .imgBg button.btn-gray {
    padding: 0;
  }
}

@media (max-width: 640px) {
  .imgBg button {
    width: 100%;
  }
}

.imgBg-1 {
  background-image: url("/img/bg/indexBg3.jpg");
}

.footerPostion {
  position: unset;
}

footer .copyright {
  margin-left: auto;
}

@media (max-width: 640px) {
  footer .copyright {
    margin-left: 0px;
  }
}

footer a {
  padding: 0.5rem;
}

@media (min-width: 640px) {
  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:flex {
    display: flex;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:-my-px {
    margin-top: -1px;
    margin-bottom: -1px;
  }

  .sm\:mt-0 {
    margin-top: 0px;
  }

  .sm\:ml-6 {
    margin-left: 1.5rem;
  }

  .sm\:ml-10 {
    margin-left: 2.5rem;
  }

  .sm\:max-w-2xl {
    max-width: 42rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }

  .sm\:col-span-4 {
    grid-column: span 4 / span 4;
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:hidden {
    display: none;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
