@import "https://fonts.googleapis.com/css2?family=Sarabun:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap";
@import "https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap";
@import "https://fonts.googleapis.com/css?family=Montserrat:400,400i,700";
@import "https://cdn.jsdelivr.net/gh/rizmyabdulla/fontawesome-pro@main/releases/v6.7.2/css/fontawesome.css";
@import "https://cdn.jsdelivr.net/gh/rizmyabdulla/fontawesome-pro@main/releases/v6.7.2/css/solid.css";
@import "https://cdn.jsdelivr.net/gh/rizmyabdulla/fontawesome-pro@main/releases/v6.7.2/css/regular.css";
@import "https://cdn.jsdelivr.net/gh/rizmyabdulla/fontawesome-pro@main/releases/v6.7.2/css/light.css";

/* src/css/root.css */
:root {
  --font-icon: "Font Awesome 6 Pro";
  --color-red: #D9534F;
  --color-orange: #E67E22;
  --color-green: #10B981;
  --color-blue: #428BCA;
  --color-purple: #9B59B6;
  --color-gray: #9CA3AF;
  --color-slate: #64748B;
  --color-teal: #0D9488;
  --color-cyan: #0891B2;
  --color-brown: #A1887F;
  --bg-color: #E5E7EB;
  --text-color: #64748B;
  --link-color: var(--text-color);
  --link-hover: #0073AA;
  --link-active: orange;
}

/* src/css/body.css */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "Sarabun", sans-serif;
}
body {
  color: var(--text-color);
  background-color: var(--bg-color);
}
* {
  box-sizing: border-box;
}
form,
ul,
ol {
  margin: 0;
}
.lazy-load {
  content-visibility: auto;
}
a {
  color: var(--link-color);
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}
a:active {
  color: var(--link-active);
  text-decoration: underline;
}
.icon {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  font-family: var(--font-icon);
  font-weight: 400;
  line-height: 1;
}
.icon.pad {
  margin-right: 0.375em;
}
.icon.thin {
  font-weight: 300 !important;
}
.icon.regular {
  font-weight: 400 !important;
}
.icon.solid {
  font-weight: 900 !important;
}
.icon.red {
  color: var(--color-red);
}
.icon.orange {
  color: var(--color-orange);
}
.icon.green {
  color: var(--color-green);
}
.icon.blue {
  color: var(--color-blue);
}
.icon.purple {
  color: var(--color-purple);
}
.icon.gray {
  color: var(--color-gray);
}
.icon.brown {
  color: var(--color-brown);
}
.icon.teal {
  color: var(--color-teal);
}
.icon.cyan {
  color: var(--color-cyan);
}
.left {
  float: left;
}
.right {
  float: right;
}
.box-tb {
  display: table;
  width: 100%;
}
.middle {
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  position: absolute;
  align-items: center;
}
.middle.left {
  float: unset;
  left: 0.5em;
}
.middle.right {
  float: unset;
  right: 0.5em;
}
.middle.left :is(button, input, select) {
  margin-right: 0.45em;
}
.middle.right :is(button, input, select) {
  margin-left: 0.45em;
}
.overlay {
  position: fixed;
  inset: 0;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.05);
  transition: 0.4s;
}
.overlay.center {
  display: flex;
  justify-content: center;
  padding-top: 50px;
}
.overlay.middle {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: unset;
}
#totop {
  display: none;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: 0.4s;
}
#totop button {
  margin: 0 0.5em;
  display: block;
}
body:has(#app.full-page) #totop {
  left: 50%;
}
body:has(#app.tabbar) #totop {
  bottom: 66px;
}

/* src/css/animate.css */
.spinner {
  width: 40px;
  height: 40px;
  border-width: 4px;
  border-style: solid;
  border-color: #0EA5E9 #0EA5E9 #F1F5F9 #F1F5F9;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.spinner.s22 {
  width: 22px;
  height: 22px;
  border-width: 3px;
}
.spinner.s24 {
  width: 24px;
  height: 24px;
  border-width: 3px;
}
.spinner.s28 {
  width: 28px;
  height: 28px;
  border-width: 4px;
}
.spinner.s32 {
  width: 32px;
  height: 32px;
  border-width: 4px;
}
.spinner.s36 {
  width: 36px;
  height: 36px;
  border-width: 4px;
}
.lds-spinner {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-spinner div {
  transform-origin: 32px 32px;
  animation: lds-spinner 1.2s linear infinite;
}
.lds-spinner div:after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 30px;
  width: 5px;
  height: 15px;
  border-radius: 20%;
  background: #FFF;
}
.lds-spinner div:nth-child(1) {
  transform: rotate(0deg);
  animation-delay: -1.1s;
}
.lds-spinner div:nth-child(2) {
  transform: rotate(30deg);
  animation-delay: -1s;
}
.lds-spinner div:nth-child(3) {
  transform: rotate(60deg);
  animation-delay: -0.9s;
}
.lds-spinner div:nth-child(4) {
  transform: rotate(90deg);
  animation-delay: -0.8s;
}
.lds-spinner div:nth-child(5) {
  transform: rotate(120deg);
  animation-delay: -0.7s;
}
.lds-spinner div:nth-child(6) {
  transform: rotate(150deg);
  animation-delay: -0.6s;
}
.lds-spinner div:nth-child(7) {
  transform: rotate(180deg);
  animation-delay: -0.5s;
}
.lds-spinner div:nth-child(8) {
  transform: rotate(210deg);
  animation-delay: -0.4s;
}
.lds-spinner div:nth-child(9) {
  transform: rotate(240deg);
  animation-delay: -0.3s;
}
.lds-spinner div:nth-child(10) {
  transform: rotate(270deg);
  animation-delay: -0.2s;
}
.lds-spinner div:nth-child(11) {
  transform: rotate(300deg);
  animation-delay: -0.1s;
}
.lds-spinner div:nth-child(12) {
  transform: rotate(330deg);
  animation-delay: 0s;
}
@keyframes lds-spinner {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.lds-ellipsis {
  position: absolute;
  width: 60px;
  height: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.8);
}
.lds-ellipsis div {
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 24px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 42px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(18px, 0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0.1);
  }
  100% {
    transform: scale(1.0);
  }
}
@keyframes zoom-out {
  0% {
    transform: scale(1.0);
  }
  100% {
    transform: scale(0.1);
  }
}
@keyframes slide-in-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes slide-out-left {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slide-in-right {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes slide-out-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* src/css/core.css */
/*# sourceMappingURL=core.css.map */