.word-pill {
  padding: 4px 24px;
  background: var(--bg-pills);
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 12px;
  margin-top: 12px;
}

@media only screen and (max-width: 768px) {
  .word-pill {
    font-size: 1.2rem;
    margin-right: 8px;
    margin-top: 8px;
  }
}

.bookmark-container {
  min-height: 240px;
  margin-bottom: 60px;
}

/* Spherical loader animation in css */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.double-bounce1,
.double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #757272;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  animation: sk-bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  animation-delay: -1s;
}

@keyframes sk-bounce {
  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

.recent-term {
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  margin-right: 12px;
}

.week-container {
  background-color: var(--bg-color);
  border-radius: 12px;
}

.week-container .detail {
  overflow: scroll;
}

.highlight {
  background: var(--bg-highlight) !important;
}
.caught-up h1 {
  color: #dfca0c;
}

@media only screen and (max-width: 768px) {
  .week-container {
    padding-bottom: 2rem;
  }
}

.search-container {
  position: relative;
  width: 600px;
}

.search-box {
  width: 540px;
  background: #ffffff;
  border-radius: 12px 0px 0px 12px;
  border: 1.5px solid #4f46e5;
  border-right: 0px;
}

.search-box::-moz-placeholder {
  color: #c4c4c4;
}

.search-box::placeholder {
  color: #c4c4c4;
}

.search-box:focus {
  outline: none;
  border: 1.5px solid #4f46e5;
  border-right: 0px;
}

.search-box::-moz-placeholder {
  color: var(--color-placeholder);
  text-transform: none;
  font-size: 1rem;
}

.search-box::placeholder {
  color: var(--color-placeholder);
  text-transform: none;
  font-size: 1rem;
}

.search-button {
  width: 100px;
  height: 44px;
  border-radius: 0px 12px 12px 0px;
}

@media only screen and (max-width: 768px) {
  .search-container {
    width: 100%;
  }

  .search-box {
    width: 100%;
    border: 0;
    font-size: 1.25rem;
  }

  .search-box:focus {
    outline: none;
    border: 0;
  }

  .search-button-small {
    background: var(--color-action);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.bookmark-container {
  min-height: 240px;
  margin-bottom: 60px;
}

.footer {
}

.user-profile__expanded {
  display: flex;
  position: absolute;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px;
}

.user-profile__expanded p {
  color: var(--color-text-placeholder);
}

.user-profile__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.expanded .user-profile__icon {
  margin-top: 20px;
  margin-left: 20px;
}

.user-profile__icon:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.user-profile__icon p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  text-align: center;
}

.user-profile__icon .user-profile__icon__image {
  width: 60%;
  height: 60%;
}

.profile__disabled {
  background-color: var(--bg-dialog-secondary);
  border: 2px solid var(--bg-highlight);
}

.profile__active {
  background-color: var(--bg-dialog-primary);
  border: 2px solid var(--bg-highlight);
}

.profile__active p {
  font-family: "Kanit", sans-serif;
  color: var(--color-text-white);
}

@media only screen and (max-width: 768px) {
  .user-profile__icon {
    box-shadow: none;
  }

  .user-profile__icon p {
    font-size: 1rem;
  }
}

.user-profile {
  z-index: 9;
  position: fixed;
  bottom: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
}

.expanded {
  width: 200px;
  min-height: 220px;
  background-color: var(--bg-pills);
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 768px) {
  .user-profile {
    position: relative;
    bottom: auto;
    left: auto;
  }

  .expanded {
    top: 0px;
    right: 0px;
    position: absolute;
  }
}

.home-container {
  width: 786px !important;
}

.recent-container {
  height: 400px;
}

.dialog {
  position: fixed;
  background: var(--bg-color);
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  min-height: 320px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
}

@media only screen and (max-width: 768px) {
  .dialog {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 100%;
    margin-top: 24px;
  }
}

.primary-button {
  height: 40px;
  background: var(--color-action);
  border-radius: 20px;
  font-style: normal;
  font-weight: 400;
  font-family: "Kanit", sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

.large {
  min-width: 110px;
}

.disabled {
  background: var(--bg-disabled) !important;
}

@media only screen and (max-width: 768px) {
  .primary-button {
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 24px;
    height: 44px;
    background: var(--color-action);
    color: var(--color-text-white);

    font-family: "Kanit", sans-serif;
    font-weight: 400;
    font-size: 1rem;
  }
}

.link-play {
  background: var(--color-action);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
}

@media only screen and (max-width: 768px) {
  .animation-contnr {
    transition: height 0.5s ease;
    overflow: hidden;
    height: 24px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 0;
    position: fixed;
  }

  .circle {
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-action);
    transition: width 0.5s ease, height 0.5s ease, opacity 0.3s;
    position: absolute;
    margin: 0 auto;
  }

  .box {
    display: flex;
    flex-direction: row;
    gap: 8px;
    transition: width 0.5s ease, height 0.5s ease, opacity 0.2s ease;
    opacity: 0;
    width: 0;
    overflow: hidden;
  }

  .dimension-anim {
    transition: left 0.5s ease, opacity 0.2s ease;
  }

  .child-collapse {
    opacity: 0;
  }
}

.chip {
  background: #fde401;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
}

.chip a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

@media (min-width: 640px) {
  .chip {
    padding: 8px 16px;
  }

  .chip a {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.faqs-container {
  height: 800px;
}

.faqs-items {
  background-color: #f0f0f0;
  margin-top: 16px;
  width: 100%;
  padding: 8px 16px;
}

.faqs-items p {
  padding: 10px;
}

.faqs-items a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 400;
}

.easy-recabulary {
  background-color: rgba(253, 228, 1, 0.1);
  height: 768px;
}

.easy-recabulary img {
  width: 768px;
}

@media only screen and (max-width: 768px) {
  .easy-recabulary {
    height: 640px;
  }
}

.demo-card {
  line-height: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.demo-card::-webkit-scrollbar {
  display: none;
}

.demo-image {
  display: block;
  height: clamp(320px, 60vh, 480px);
  width: auto;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 640px) {
  .demo-card {
    overflow: hidden;
  }

  .demo-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

.logo {
  display: flex;
}

.logo img {
  width: 100%;
}

.home-search-box {
  width: 540px;
  border: 1px solid #c4c4c4;
  border-radius: 12px 0px 0px 12px;
  padding-left: 20px;
  border-right: 0px;
}

.home-search-box::-moz-placeholder {
  color: #c4c4c4;
}

.home-search-box::placeholder {
  color: #c4c4c4;
}

.home-search-box:focus {
  outline: none;
  border: 1.5px solid #4f46e5;
  border-right: 0px;
}

.home-search-button {
  width: 100px;
  height: 44px;

  background: #4f46e5;
  border-radius: 0px 12px 12px 0px;

  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .home-search-box {
    width: 360px;
  }
}

.term-definition {
  background-color: var(--bg-color);
  border-radius: 12px;
  padding-bottom: 1rem;
}

.term-definition .detail {
  overflow: scroll;
  padding-bottom: 1rem;
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
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)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
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)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
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.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}
@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}
@media (min-width: 984px) {

  .container {
    max-width: 984px;
  }
}
.static {
  position: static !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.bottom-0 {
  bottom: 0px !important;
}
.left-0 {
  left: 0px !important;
}
.z-10 {
  z-index: 10 !important;
}
.m-4 {
  margin: 1rem !important;
}
.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.mb-3 {
  margin-bottom: 0.75rem !important;
}
.mb-4 {
  margin-bottom: 1rem !important;
}
.mb-8 {
  margin-bottom: 2rem !important;
}
.ml-2 {
  margin-left: 0.5rem !important;
}
.ml-4 {
  margin-left: 1rem !important;
}
.mr-5 {
  margin-right: 1.25rem !important;
}
.mt-10 {
  margin-top: 2.5rem !important;
}
.mt-16 {
  margin-top: 4rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-20 {
  margin-top: 5rem !important;
}
.mt-4 {
  margin-top: 1rem !important;
}
.mt-8 {
  margin-top: 2rem !important;
}
.block {
  display: block !important;
}
.flex {
  display: flex !important;
}
.hidden {
  display: none !important;
}
.h-3\/4 {
  height: 75% !important;
}
.h-32 {
  height: 8rem !important;
}
.h-40 {
  height: 10rem !important;
}
.h-full {
  height: 100% !important;
}
.h-screen {
  height: 100vh !important;
}
.min-h-screen {
  min-height: 100vh !important;
}
.w-11\/12 {
  width: 91.666667% !important;
}
.w-52 {
  width: 13rem !important;
}
.w-72 {
  width: 18rem !important;
}
.w-80 {
  width: 20rem !important;
}
.w-full {
  width: 100% !important;
}
.w-max {
  width: -moz-max-content !important;
  width: max-content !important;
}
.max-w-3xl {
  max-width: 48rem !important;
}
.max-w-lg {
  max-width: 32rem !important;
}
.shrink-0 {
  flex-shrink: 0 !important;
}
.grow {
  flex-grow: 1 !important;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)) !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.items-start {
  align-items: flex-start !important;
}
.items-center {
  align-items: center !important;
}
.justify-start {
  justify-content: flex-start !important;
}
.justify-end {
  justify-content: flex-end !important;
}
.justify-center {
  justify-content: center !important;
}
.justify-between {
  justify-content: space-between !important;
}
.gap-2 {
  gap: 0.5rem !important;
}
.gap-4 {
  gap: 1rem !important;
}
.gap-8 {
  gap: 2rem !important;
}
.rounded-lg {
  border-radius: 0.5rem !important;
}
.border {
  border-width: 1px !important;
}
.border-b {
  border-bottom-width: 1px !important;
}
.border-solid {
  border-style: solid !important;
}
.border-disabled {
  --tw-border-opacity: 1 !important;
  border-color: rgb(221 221 221 / var(--tw-border-opacity, 1)) !important;
}
.bg-purewhite {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
}
.p-10 {
  padding: 2.5rem !important;
}
.p-2 {
  padding: 0.5rem !important;
}
.p-4 {
  padding: 1rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}
.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.pb-10 {
  padding-bottom: 2.5rem !important;
}
.pb-4 {
  padding-bottom: 1rem !important;
}
.pb-8 {
  padding-bottom: 2rem !important;
}
.pt-10 {
  padding-top: 2.5rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-20 {
  padding-top: 5rem !important;
}
.pt-4 {
  padding-top: 1rem !important;
}
.pt-8 {
  padding-top: 2rem !important;
}
.text-center {
  text-align: center !important;
}
.text-2xl {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}
.text-3xl {
  font-size: 1.875rem !important;
  line-height: 2.25rem !important;
}
.text-base {
  font-size: 1rem !important;
  line-height: 1.5rem !important;
}
.text-lg {
  font-size: 1.125rem !important;
  line-height: 1.75rem !important;
}
.text-sm {
  font-size: 0.875rem !important;
  line-height: 1.25rem !important;
}
.text-xl {
  font-size: 1.25rem !important;
  line-height: 1.75rem !important;
}
.font-bold {
  font-weight: 700 !important;
}
.text-current {
  color: currentColor !important;
}
.underline {
  text-decoration-line: underline !important;
}
.outline {
  outline-style: solid !important;
}
.blur {
  --tw-blur: blur(8px) !important;
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow) !important;
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 150ms !important;
}

:root {
  font-size: 18px;
  font-family: "Actor", sans-serif;

  /*  */
  --color-text-primary: #000000;
  --color-text-secondary: #404040;
  --color-text-placeholder: #d9d9d9;
  --color-text-white: #ffffff;

  /*  */
  --bg-color: #ffffff;
  --bg-pills: #eaeaea;
  --bg-dialog-primary: #364f6b;
  --bg-dialog-secondary: #f5f5f5;
  --bg-highlight: #fde401;
  --bg-disabled: #eaeaea;

  /*  */
  --color-error: #d43939;
  --color-success: #4bba95;
  --color-placeholder: #d9d9d9;
  --color-action: #4f46e5;

  /*  */
  --grid-maxWidth: 120rem;
  --grid-gutter: 2rem;
}

body {
  padding: 0;
  margin: 0;
  outline: none;
  background-color: var(--bg-color);
  color: var(--color-text-primary);
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.75rem;
}

h2 a {
  color: var(--color-text-primary);
}

h2 span {
  margin-left: 10px;
  color: var(--color-text-secondary);
}

h3 {
  font-size: 1.5rem;
}

p,
ul li {
  font-size: 1rem;
}

button {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  background: #4f46e5;
  font-size: 1rem;
  line-height: 29px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

input {
  font-size: 1.125rem;
  border: 1px solid #c4c4c4;
  height: 44px;
  padding-left: 10px;
}

a {
  font-family: "Kanit", sans-serif;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 400;
}

a:hover {
  text-decoration: underline;
}

section {
  margin-top: 50px;
}

section ul li {
  margin: 2px;
}

.static-container {
  padding: 1rem;
}

.link-button {
  font-family: "Kanit", sans-serif;
  color: var(--color-action);
  font-optical-sizing: auto;
  font-weight: 400;
}

.splash-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-pills);
  opacity: 0.5;
}

.splash-bg img {
  height: 24px;
  margin: 0 auto;
}

input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

@media only screen and (max-width: 768px) {
  :root {
    font-size: 16px;
  }
}

@media (min-width: 640px) {

  .sm\:justify-start {
    justify-content: flex-start !important;
  }

  .sm\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media (min-width: 768px) {

  .md\:mb-2 {
    margin-bottom: 0.5rem !important;
  }

  .md\:mb-4 {
    margin-bottom: 1rem !important;
  }

  .md\:block {
    display: block !important;
  }

  .md\:h-screen {
    height: 100vh !important;
  }

  .md\:w-\[768px\] {
    width: 768px !important;
  }

  .md\:items-center {
    align-items: center !important;
  }

  .md\:justify-center {
    justify-content: center !important;
  }

  .md\:px-0 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .md\:pt-0 {
    padding-top: 0px !important;
  }

  .md\:text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
  }
}

.black {
  color: var(--color-text-primary);
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.firebase-emulator-warning {
  display: none !important;
}

.selected {
  background: var(--bg-dialog-primary);
  color: var(--bg-color);
}

.active {
  background: var(--color-action);
}

.wrap {
  white-space: pre-wrap;
  min-height: 440px;
}

.disable {
  opacity: 0.5;
  cursor: default !important;
}

@media only screen and (max-width: 768px) {
  .logo img {
    width: 80%;
  }
}

