@charset "UTF-8";
/* =============================================================================
   CSS Variables
   ============================================================================= */
.scroll-container[data-v-74cb007d] {
  --key-color-primary: #ff9016;
  --key-color-primary-rgb: 255, 144, 22;
  --key-color-secondary: #3182f6;
  --key-color-secondary-rgb: 49, 130, 246;
}
.scroll-container.theme-malangtalk[data-v-74cb007d] {
  --key-color-primary: #8b5cf6;
  --key-color-primary-rgb: 139, 92, 246;
  --key-color-secondary: #0891b2;
  --key-color-secondary-rgb: 8, 145, 178;
}

/* =============================================================================
   Layout
   ============================================================================= */
.scroll-container[data-v-74cb007d] {
  min-width: 360px;
  max-width: 600px;
  height: 100vh;
  height: 100dvh;
  margin: 0 auto;
  overflow-y: auto;
  background-color: #18181b;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-container[data-v-74cb007d]::-webkit-scrollbar {
  display: none;
}
.content-wrapper[data-v-74cb007d] {
  padding: 20px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  padding-bottom: calc(40px + constant(safe-area-inset-bottom));
}

/* =============================================================================
   GNB Header
   ============================================================================= */
.gnb-header[data-v-74cb007d] {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: #18181b;
  padding-top: env(safe-area-inset-top);
  padding-top: constant(safe-area-inset-top);
}
.gnb-area[data-v-74cb007d] {
  display: flex;
  align-items: center;
  height: 46px;
  padding: 0 20px;
}
.small-logo[data-v-74cb007d] {
  height: 22px;
  width: auto;
  margin-left: 20px;
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  pointer-events: none;
}
.small-logo.is-visible[data-v-74cb007d] {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

/* =============================================================================
   Header Section
   ============================================================================= */
.header-section[data-v-74cb007d] {
  margin-bottom: 40px;
}

/* =============================================================================
   Category Section
   ============================================================================= */
.category-section[data-v-74cb007d] {
  position: sticky;
  top: 46px;
  z-index: 10;
  margin-left: -20px;
  margin-right: -20px;
  padding: 0 0 20px 20px;
  background-color: #18181b;
}
.category-section.show-fade[data-v-74cb007d]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: calc(100% - 20px);
  background: linear-gradient(to right, transparent, #18181b);
  pointer-events: none;
}
.category-scroll-area[data-v-74cb007d] {
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.scrollbar-hide[data-v-74cb007d] {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scrollbar-hide[data-v-74cb007d]::-webkit-scrollbar {
  display: none;
}
.category-btn[data-v-74cb007d] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.category-spinner[data-v-74cb007d] {
  position: absolute;
  inset: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-top-color: #18181b;
  border-radius: 50%;
  animation: spin-74cb007d 0.8s linear infinite;
}

/* =============================================================================
   Weekly Topic Section
   ============================================================================= */
.weekly-topic-section[data-v-74cb007d] {
  background: linear-gradient(to bottom, rgba(var(--key-color-primary-rgb), 0.28), rgba(var(--key-color-primary-rgb), 0.08));
}
.weekly-topic-title[data-v-74cb007d] {
  color: var(--key-color-primary);
}
.weekly-topic-desc[data-v-74cb007d] {
  align-self: stretch;
  color: rgba(255, 255, 255, 0.7);
}
.news-item-date[data-v-74cb007d] {
  align-self: stretch;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

/* =============================================================================
   Bookmark
   ============================================================================= */
.bookmark-btn[data-v-74cb007d] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
}
.bookmark-icon[data-v-74cb007d] {
  display: block;
  width: 24px;
  height: 24px;
}
.bookmark-spinner[data-v-74cb007d] {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #6b7280;
  border-radius: 50%;
  animation: spin-74cb007d 0.8s linear infinite;
}
.bookmark-filter-btn[data-v-74cb007d]:disabled {
  opacity: 0.6;
}
.bookmark-filter-icon[data-v-74cb007d] {
  display: block;
  width: 24px;
  height: 24px;
}

/* =============================================================================
   Loading
   ============================================================================= */
.load-more-trigger[data-v-74cb007d] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  margin-top: 20px;
}
.loading-indicator[data-v-74cb007d] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.loading-spinner[data-v-74cb007d] {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-74cb007d 0.8s linear infinite;
}
.end-message[data-v-74cb007d] {
  padding: 16px;
  font-size: 14px;
  color: #6b7280;
  text-align: center;
}

/* =============================================================================
   Floating Button
   ============================================================================= */
.floating-top-btn[data-v-74cb007d] {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
  transition:
    transform 0.7s ease-out,
    opacity 0.7s ease-out;
  aspect-ratio: 1/1;
}
.floating-top-btn.is-visible[data-v-74cb007d] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.floating-top-btn[data-v-74cb007d]:active {
  transform: translateY(0) scale(0.95);
}
.go-top-icon[data-v-74cb007d] {
  fill: #2a2a2d;
  stroke: #404040;
  stroke-width: 1px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.16));
}
@supports (padding-bottom: env(safe-area-inset-bottom)) {
.floating-top-btn[data-v-74cb007d] {
    bottom: calc(16px + env(safe-area-inset-bottom));
}
}

/* =============================================================================
   Common
   ============================================================================= */
button[data-v-74cb007d]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
@keyframes spin-74cb007d {
to {
    transform: rotate(360deg);
}
}
.fade-enter-active[data-v-1a7ad9f6],
.fade-leave-active[data-v-1a7ad9f6] {
  transition: all 0.3s ease-in-out;
}
.fade-enter-from[data-v-1a7ad9f6],
.fade-leave-to[data-v-1a7ad9f6] {
  opacity: 0.1;
}
.recording[data-v-1a7ad9f6] {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  display: block;
  background-color: #374151;
  margin: 20px auto;
  position: relative;
  color: #eae2fe;
  animation: animrecording-1a7ad9f6 0.3s 0.3s linear infinite alternate;
}
.recording[data-v-1a7ad9f6]::after,
.recording[data-v-1a7ad9f6]::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: #374151;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  animation: animrecording-1a7ad9f6 0.3s 0.45s linear infinite alternate;
}
.recording[data-v-1a7ad9f6]::before {
  left: -8px;
  animation-delay: 0s;
}
@keyframes animrecording-1a7ad9f6 {
0% {
    height: 20px;
}
100% {
    height: 4px;
}
}
.bottom-fixed-btn[data-v-1a7ad9f6] {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
}
.bottom-fixed-btn .bottom-gra[data-v-1a7ad9f6] {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.39) 69%, rgba(255, 255, 255, 0.4) 70%, rgb(255, 255, 255) 100%);
}
.bottom-fixed-btn .bottom-bg[data-v-1a7ad9f6] {
  background-color: #fff;
  padding-top: 5px;
  padding-inline: 20px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 20px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 20px);
  pointer-events: auto;
}
.processing[data-v-1a7ad9f6] {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.processing span[data-v-1a7ad9f6] {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 4px;
  background: #374151;
  border-radius: 50px;
  animation: up-down6-1a7ad9f6 0.5s ease-in infinite alternate;
}
.processing span[data-v-1a7ad9f6]:nth-child(2) {
  background: #374151;
  animation-delay: 0.16s;
}
.processing span[data-v-1a7ad9f6]:nth-child(3) {
  background: #374151;
  animation-delay: 0.32s;
  margin: 0px !important;
}
@keyframes up-down6-1a7ad9f6 {
0% {
    transform: translateY(-4px);
}
100% {
    transform: translateY(4px);
}
}.content[data-v-86b3b7cc] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 126px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 126px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.black-icon[data-v-aac1b5f2]::after {
  content: "";
  width: 128px;
  height: 74px;
  background: url(data:image/png;base64,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) no-repeat center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.carrot-farm-black-icon[data-v-aac1b5f2]::after {
  content: "";
  width: 128px;
  height: 80px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQEAAACNCAMAAACANz/YAAABpFBMVEVHcEwXFxoWFhkXFxoXFxoXFxoUFBcXFxoaKBYXFxoXFxoWFhoXFxoXFxoEBAYXFxoVFRkVFRkWFhmB1iY7vClNxCiM2SY6uiqL2SZKwCguSx5+1CZ2ySYYGBsAhucwMDD/OCH/oCP/oyP/1M//myP/mCP/hyP/oiP/nCP//////fz99/T/lSP/kSP++fn/nyP/pCT/iiP/jiP86es7uyo+vyr87/D+9PX87O798fM3tSly0Sd61Cc4uCo0sir/ZB+I2CeB1idaySdqzidOxCZizCczsCr/iTHGcyMkIhuvZyGFUSKQ2yb+4txBOzdkY2I/vh2ZXyM0Jhv+tIVvRSD/o0UpqhL+pGP/jy3+xp5GLxxYOB3WdiLxhCP/lijYhyP91sfV09KXgn/xW0ksk9/+w3bmfyNdRSjulCP+17Lu7exMdY3/tVZCRUhGWWNYVlXGu7rQZFf+RC5Ljb6rn55BeiHJSSYvsB2XlpVkSkJbpSTFpySisCWDuiZIgqmDgoKEY1//h1JDlM+6YVaxqCUsgrn1QSCcXFbvTTDHqKSmRzEybZe+CVw+AAAAHXRSTlMAkEzSn7EcwRB95Gtc9wbuNStBSYswxs+Ga/mx6KdOXicAAA9qSURBVHja7JyJX1LpGsdll03crSY0DATBAB3RCcWrgF2WXHArV/SquWSlpaM22j51m/tP3+ddzsZZsOSkor/5TKOCzHm+5/cs73vOqaLiRje60Y1udKMLUsPt+qb6+obrG39TJBLpBjXVV15LAPUofkwAGFxDH1QhAFiIQCzWcC0dQAkgBrHoNUNQVRfhREzQdM0s0FQIIBarv15tICLyQDR6rRpCfbewDCATRG/DC3W3GhtvNVwzAt2MB5oqbt/tHxoaHHx8q/LaEUAWiEZ/6+vHBAYfN5Yzgoa6W3UNt8H7NP6ZKENgIA4EKILfyjb+usbHoMG7EDUqAYjADGOBaLKPRTBYV65jAI4flCTpD1aIzhwyBLr7+nAeIAZlagIMACEY6utmdTgTJQCisQQ2AWYwVJ4EGimAwaGhOAMgBiYgAKIDQIAy6O+vK18LDGIC/SQPYpABhzOEwMBAgkVQpgRusQ6Ac9wXieFhGBE4JAAG4gnCAFEoSwKNg0SYQH8fBRCLzcwQAAPx4UQ8SRD0lTGBIQqgbxiHD8EfMgSSw8PJceqDO5raqnJrhdq7KH7sgCQ+08korYAzhyj+gUdxSgAp7XQ69NoyglBpdjgPcJtDBkiMjychym4CIMoSiA+Pgw8Sw4nEWyeWxVwm87FR44Bw0jR+lALx8fF4Ik57ACHwCAjEEQGkAyeVoxwYGPU0mrek0fX3AYJEEoKN4PyPzsxgANF4PDkOFBCBO05OGuMV97/GzsbylhgABDmQBBvgAgjRIwCPYklCAJR08mW/yj6osjp4oaTf0l6Hix1kQmSAIkCKJBEUrAOnUA7rVa2JWktBKAcJJn6wOiCIsvETAskkGCEeTzsLpdNeSQPoRYEgG9D4gQAgYMJ/9GgAWSCJdeCUkObq2aBGJxWI884wAYDzfTzKEohFIgyBtOQv6q5aRbTZndJKv8UAhhOnpycnX778Bfry5eTk9DQ+HonIWgBVg6uVCXqnvA5OT/7aDPlCLpfXBf96Xa2trV5vq8sb/uvkNNmdlv1FzRUqAQa5ICamcnmPG6IPgVxYEHxrazgcbg17EZHNTHZO7rf1v7IY1GjNepNABr1eYzZbrTattra6xmiU79JVJpkEyObdWD6fL8QioASwEeBbgOPbzE1If4JBHkGl0VhTXavV2qxWs1mj1xuER683a2vOHHytWa9znkV2iw64aMwABZBwxyINYC6z6fEoEAAGmEAoBC+7M/OSH2LiuEPAEC4EazDpLGc6XqdOb64tfu41DudPygE8NGabVhLffMqDxBHwFRBALkAmoAR87vyUZBBam1kDMdt/+ig1il6wmZyqaCrvoeJ7gKsDXs4DLkzAB+/ybGbTqhyNySa7hrWoE/9EyiMA4KZJUOgBL5cFmIDHk59X54ikZ0ybSvGnsx0eEQHJOuDlsoAS8HgyE+oclcH4Qx38XAZY8LiVABRmQYgWAkqgY1ElGzitBRmgUgFwzm+6BQA8PALSWbDk8SxR4V96kFXp0Ez8fm7UqfR/yZGzzneAKAl4BADB03/zBB4ApVTKBB2HoFKlEuDMMEHz4hdZQOiBJR6Ap4RAx0JabQRqOSDjc0uosAwwUzG/F7DGQQAePFhQyQUmlYtgioZCsl/CAiGGAC2Ewm7oZggAg2dpNcthrVo1AIfiExmAAuAlgZeMhK0uPgHWAuCBBw9S6iCw46aoUhvI+jhDSwGQLgMh0g2FSQDqyqhzlHq0ElDno+fI6O8W2MBHCAhmYpdwaSj0AEGAIeTUMQEUQ406k2CenmlfoWQsEBYQcAsIYBN0zalVCdRpBBkXE2nI55aLv4CAy8XvBcI6AATUqYaQBnY1PncqxKQ06wM3Fz4GwDYC2guZlaGoGTIE1CkFuooKVSyQdzEIpFVgAdILvUUILKoxFdjVIbBBz7Fy/DwLMNOAIgF1TFBR4VDFAmIEPhEA3jAQ5iwgWQi7sDpVMIFFlXFgg5xPprLJOEDCAqGC3QGhBbo6VeiIhooKswrjsJciCIkZsD/mA5AZiUUEFkvfDqxqTEQTXpeX5wLWC8IfeHmdMCyoAlwSeIQEujqnSn6waCw2lHxBgAc8hkFB4Lz4p3d21tfXZ9fXd3amwy65JCAEMILOzlSpjxVfhzKWeiLItwoQSEAIT69vjQSQgv4gyO/392yt7xQmQaEFAEGJa6GF7BCUuBJMoO5OEHilTn94fev3AAk/gMNHAPz+9vb2wPLstGISlDwNalXZIMjSXT6XFIPw9CwNnyWAEAQpA79/a0cqCagDOjtLOxJwFw5Kujp6Rve4lloJAz6Ena2eQKBHgMBPsgAAIAQAYWTd55EmAAwWS3mk/KsG1hJ+7uJTohDa8/DyFJ7eQmH3cPFTD2ALUABgA//ITkEScB4oYSGwCC+f1ZZus9SLB3282GHrAdb67xA9+YdB4A+gFCAeIAzgvwBl1ieeBrAHOkt2+cBQePG7slTFYM4bpgjCXh6EcHgrgDOAywG2DrBlgBAABIGRaWkLtJXo6oHkdTNjaRhMka1POumw2hnhJwBNggBXBnlZgKgEetYlLdBWksHYpJW9dqorBYFWbtbD4x76bocGLyyEwSDbDnkAAEFvsLd3UtwJgMD5ZyKdWfH6udFqOOeAlKGF8Kmbg9C6HhAriJPAz5UBgQd6ex/OCpOAMDgfAYfBCmNw0Ztxqs2Gc9TFFHPFZ4mEn0/lcsdjrI72d1cEnYDfCvzbK/tH3HuPs7lMik0C4oGFnw7epLfW/MB9RJX4FhW9wWT5UUvQK2U+N5g/n9tokdLY0QrTCZgy4Pdv74+NSr15I7eAAXT9FAG7xWTQm23V57k52ag1G35gGyVDZp9NOPfS4RO9ONqmRQAz2N5/pfDmjVwqtUg88OwHGr7BrC3dfZhGm8ZkPyMBWAhN8c7my+dvPq2trTU3wx9v3j1/wfx89IhbFRxx7//weW91dfX1Pfhjde9zlvuc0amze8Bu0thUuAm1Sqs/gxdyaCeAPeqX75oLtfbpOX311UowuL3tD24z5//b3ut7hfr6D0sHAJyFgLoP6NQWHRqyPALPm2X0iThhFIf+goQ4KhE+0Z88AkV7gb5W7XstjUVuuEIEQiSkv5vl9a4w17/JxY98MHpGAr/o0aQqq9LgtOFjCDxvbi6OYJRmwId7SiIuAABtSstjne3X3XZrcyhfMs0WJ/AGvWUb90H01V5xAllEQH5dYPm1N5/LL6TS+B6JjbMRIJPA6JkIbCwiAnJrQ/uvfwZDK2eDPCKwCQjGihIYI0uiMfjyczECoxhAm8z+gKX6Ip6jk6kGKXytOAeDgCIB1BLfYwD+o6J1IItyABOQWexdzPNoMjchZtGdEq4UnDVFAi8h7F2yHthFFVGRwFRLSwYDkG4Fhot6Ckn6SYo5vCzYhKiUAKyRQtiO14SoEKwqEYDXFzplC+EFPnwijWATL40gKqV54BNNAgDgb39fpBR+BY+QJJi/XABkEJDVYVa5GaAkWGE2BVbgm2PlQohbYdviZQMACCTK4RS6gdSXh3FXOQnGuG2RMeU0gDKwgABIzUOGC3+yWDwjpzfxTbQbSmlALIA2RTgTvFZKAgxAIgl0F/8oZrVEGqDNfl9GoR/iYaCdFakEnxV6YQYDEG8OOC7Dg5jiC07z5E5yqIXvpAH8jVaE2zwC/m20WPxTGsB/0TiECeQUrntdZCkQ5wF+rMgNI0HLmhSA/6FOuNI++2Rydhk0O/nxSc8K6oj/fJUCAK+kcB0UD4SmS/KErVQtRAhyaHEgYvAJ1YBRAPAvnp4EMYJj0R7B6z20JmqTqYM1l4OAxK1IzxCBJYyg5eW7NyyFtTdkl+zVSnv7JJ/Ax2BwZQyvlr/trVIKr1f3Ph+zi0LQ3CVrhErFMNtBHq9KfeC2Rl9yX+6i5B/hE5hEe4b77B5iyzG3cTiWauuUtoD98vztFOK56BkgQBCWl79/EO4Cv3q/S1qgn2eCj38Ee4OBYO/u+4I3f9hfvt/WJmMB8+V51Fpsgil0ycvT0TF7H2n3+3+I9nf5DYCtBE/+QOEHeh/2Pnz4cHefvvn7Lv7lZQpA1Agcl+kvKBFXghS+8Lm0c1+oEXYCQGuinq3Jjx8nZ0eCwUDg/+Vdy46iQBQtbVvHAaex9646cTFGEyBB+IIRDAtBgjSauDLp//+BoR68q5BpmXQVffYuzuHeW0V5TpEKYOmVn0RYgLqTjqMSoBXB+xpbQKoKkJchDGQg2W7R34RbIoBRVSDACuw5ngJ0K9IeK/BBUQBx/40NNBBb2AGIfiKA4ZZ/QZpgt+B2ISAHRgtGHwQVBbBraFPEdrVKOyARoKqAj/fDHtULyRPqy4F9WcNOuFIU2GQarJBVgHSAAQUwK13AeiV65kwAWmIthv/9V4pA35SxhTMwYZ8LUFHApw8BfraDOWgHBcj/UJoEVsZ9hejDAZCOQAMJYOpubQrweCxAOT2nHZpCBU7lJiDWiaT5UfkX+ZsIJQVC1vEofyVADyo4UIJCH5jkuaPaL/DPCsDUE1QEoMWOOSwB6lHJwkYShFkJQPsMHn1kB0D4JwqYmQC5BGgIUEPHCo8K0G36BzgNiQRu+txR81v5FiArAKKAWxCAmrflsgRYNv1kFmi4Clwrr/uUfbYC5AWQSeAvmf8V83pJGd2dHF80TQuuiQAWWvUy7oh+gX9BAdgIIf1cjMPt4J1hmLwi3KAbzjetMgyjuAKYJf66Hv2BAtDjBD/5vaqPEVfxdokC6+BarPt0/BtU/i4qgBsjaqwAfsFy6R9hJ5zCq1FCTr8swJuPCuDASJZNAc9gxbbsgwpbIYjcdPJn1V99/FGIXwZZSYIJ1wI0XOriOdgdHEauWUCN/gnxP8d3wlH8QmlIHuygK1RT1cCPrvXqf/vwyWHI8sYOVM3mgHcMG8xesaMSaGoQhj5BGAbBSU0PRJfnY8tsEK+Qmwx/9nFHNFjCakCmeS0hn/Hf7RuTRFMgAu7kF+34cFaLyOjfnKPXIiIqAO6H97x47yC3OGF/OTv74/2LRkZAFLSNMtveewLPbhkpF0cA6n3Vj0MgAcB/udVgAMSC3LUAUyAalE4vOJnJQDx0ee3jl9iGO5iHnUXaJ8J+ymPYSSfMJCAuushzP82B0FAenAYvEhAe0iNXGwx68VGnX5/VYDYag77gUxr0iD/aI/6rBoN+8Yd4bX/51exZ7udHj8dSqxB7X+mnq2OzCk8j+Tt8BF6RRvUo/8tkICvgO+HHeP4K77mAkIbK1z35v7Ui3vWu2d5wAAAAAElFTkSuQmCC) no-repeat center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, 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');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          -moz-appearance: none;
       appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
[data-v-949aab14] .swiper {
  z-index: 0;
}
[data-v-949aab14] .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  height: auto;
}
[data-v-949aab14] .swiper .swiper-wrapper .swiper-slide > div {
  width: 100%;
}
[data-v-949aab14] .swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 28px;
}
[data-v-949aab14] .swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  opacity: 1;
}
[data-v-949aab14] .swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #ffffff;
}
[data-v-949aab14] .swiper .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}
[data-v-949aab14] .carrot-farm-swiper {
  z-index: 0;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-wrapper .swiper-slide {
  display: flex;
  height: auto;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-wrapper .swiper-slide > div {
  width: 100%;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  bottom: 28px;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-pagination .swiper-pagination-bullet {
  display: block;
  background-color: #e5e7eb;
  margin: 0;
  opacity: 1;
  height: 6px;
  width: 6px;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 14px;
  height: 6px;
  border-radius: 4px;
  background-color: #374151;
}
[data-v-949aab14] .carrot-farm-swiper .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 6px;
}
.korTitle[data-v-949aab14] {
  font-size: 12px;
}
.scriptText[data-v-949aab14] {
  font-size: 14px;
}
.text-12[data-v-949aab14] {
  font-size: 12px;
}
.text-20[data-v-949aab14] {
  font-size: 20px;
}.expression-text span {
  --tw-text-opacity: 1;
  color: rgb(249, 168, 212, var(--tw-text-opacity));
  font-weight: 700;
}
.expression-text-carrot-farm span {
  color: #ff9016;
  font-weight: 700;
}
/* =============================================================================
   레이아웃
   ============================================================================= */
.script-reading[data-v-b4b815fd] {
  background-color: #2a2a2d;
  border-radius: 12px;
  padding: 24px 20px 0;
}

/* =============================================================================
   헤더
   ============================================================================= */
.script-header[data-v-b4b815fd] {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.script-header[data-v-b4b815fd] > * + * {
  margin-top: 10px;
}
.section-title[data-v-b4b815fd] {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  color: var(--key-color-primary, #ff9016);
  margin: 0;
}

/* =============================================================================
   언어 선택 버튼
   ============================================================================= */
.lang-buttons[data-v-b4b815fd] {
  display: flex;
}
.lang-buttons[data-v-b4b815fd] > * + * {
  margin-left: 10px;
}
.lang-btn[data-v-b4b815fd] {
  padding: 2px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #8b95a1;
  background-color: #374151;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-btn.active[data-v-b4b815fd] {
  color: #fff;
  background-color: var(--key-color-primary, #ff9016);
}

/* =============================================================================
   오디오 플레이어
   ============================================================================= */
.audio-player[data-v-b4b815fd] {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.play-btn[data-v-b4b815fd] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.repeat-btn[data-v-b4b815fd] {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
  padding: 0;
  margin-left: 14px;
}
.repeat-btn.active[data-v-b4b815fd] {
  color: #fff;
}

/* =============================================================================
   프로그레스 바
   ============================================================================= */
.progress-bar[data-v-b4b815fd] {
  flex: 1;
  display: flex;
  align-items: center;
  margin-left: 14px;
  cursor: pointer;
  padding: 10px 0;
  margin-top: -10px;
  margin-bottom: -10px;
  touch-action: none;
}
.progress-track[data-v-b4b815fd] {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #374151;
  border-radius: 999px;
}
.progress-fill[data-v-b4b815fd] {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: var(--key-color-primary, #ff9016);
  border-radius: 999px;
  pointer-events: none;
}
.progress-thumb[data-v-b4b815fd] {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 8px;
  background-color: var(--key-color-primary, #ff9016);
  border-radius: 999px;
  pointer-events: none;
}

/* =============================================================================
   스크립트 내용
   ============================================================================= */
.script-wrapper[data-v-b4b815fd] {
  display: flex;
  flex-direction: column;
}
.script-content-wrapper[data-v-b4b815fd] {
  position: relative;
  display: flex;
}
.script-content[data-v-b4b815fd] {
  flex: 1;
  max-height: 150px;
  overflow-y: scroll;
  transition: max-height 0.3s ease;
  padding-right: 10px;
  /* 네이티브 스크롤바 숨기기 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.script-content[data-v-b4b815fd]::-webkit-scrollbar {
  display: none;
}
.script-content.expanded[data-v-b4b815fd] {
  max-height: none;
  overflow-y: visible;
}
.script-text[data-v-b4b815fd] {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #d1d5db;
  margin: 0;
}

/* =============================================================================
   커스텀 스크롤바
   ============================================================================= */
.custom-scrollbar[data-v-b4b815fd] {
  position: absolute;
  top: 0;
  right: 0;
  width: 3px;
  height: 92px;
  background: transparent;
}
.custom-scrollbar-thumb[data-v-b4b815fd] {
  width: 100%;
  background-color: #6b7280;
  border-radius: 999px;
  cursor: pointer;
  touch-action: none;
}
[data-v-b4b815fd] .highlight-term {
  color: var(--key-color-primary, #ff9016);
}

/* =============================================================================
   TTS 문장 하이라이트
   ============================================================================= */
.sentence-item[data-v-b4b815fd] {
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 2px;
}
.active-sentence[data-v-b4b815fd] {
  background-color: rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.25);
  color: #fff;
}

/* =============================================================================
   펼침/접힘 버튼
   ============================================================================= */
.expand-wrapper[data-v-b4b815fd] {
  display: flex;
  justify-content: center;
  padding: 12px 0;
}
.expand-btn[data-v-b4b815fd] {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.expand-btn img[data-v-b4b815fd] {
  transition: transform 0.3s ease;
}
.expand-btn img.rotated[data-v-b4b815fd] {
  transform: rotate(180deg);
}

.warmup[data-v-37b65106] {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 슬라이드 인디케이터 */
.slide-indicators[data-v-37b65106] {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.slide-indicators[data-v-37b65106] > * + * {
  margin-left: 5px;
}
.indicator[data-v-37b65106] {
  position: relative;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.indicator[data-v-37b65106]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  border-radius: 999px;
  transition: background-color 0.2s;
}
.indicator.expression[data-v-37b65106]::after {
  background-color: rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.2);
}
.indicator.vocabulary[data-v-37b65106]::after {
  background-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.2);
}
.indicator.expression.active[data-v-37b65106]::after {
  background-color: var(--key-color-primary, #ff9016);
}
.indicator.vocabulary.active[data-v-37b65106]::after {
  background-color: var(--key-color-secondary, #3182f6);
}

/* 카드 - 피그마 디자인에서는 카드 래퍼 없음 */
.card[data-v-37b65106] {
  position: relative;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  flex: 1;
}

/* 슬라이드 트랙 */
.slides-track[data-v-37b65106] {
  display: flex;
  will-change: transform;
}
.slides-track[data-v-37b65106] > * + * {
  margin-left: 20px;
}

/* 각 슬라이드 아이템 */
.slide-item[data-v-37b65106] {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  padding-bottom: 119px;
}
.card-header[data-v-37b65106] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-type[data-v-37b65106] {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 4px 10px;
  margin: 2px 0px;
  border-radius: 6px;
}
.card-type.expression[data-v-37b65106] {
  color: var(--key-color-primary, #ff9016);
  background-color: rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.1);
}
.card-type.vocabulary[data-v-37b65106] {
  color: var(--key-color-secondary, #3182f6);
  background-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.1);
}
.card-actions[data-v-37b65106] {
  display: flex;
}
.card-actions[data-v-37b65106] > * + * {
  margin-left: 8px;
}
.action-btn[data-v-37b65106] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.action-btn.volume-btn[data-v-37b65106] {
  background-color: #f3f4f6;
}
.action-btn.volume-btn.playing[data-v-37b65106] {
  background-color: #374151;
}
.action-btn.volume-btn.disabled[data-v-37b65106] {
  opacity: 0.4;
  cursor: not-allowed;
}
.action-btn.translate-btn[data-v-37b65106] {
  background-color: #f3f4f6;
  width: 32px;
  height: 32px;
}
.translate-icon[data-v-37b65106] {
  width: 32px;
  height: 32px;
}
.translate-popup-icon[data-v-37b65106] {
  width: 18px;
  height: 18px;
}
@keyframes pulse-37b65106 {
0%,
  100% {
    opacity: 1;
}
50% {
    opacity: 0.5;
}
}

/* 카드 컨텐츠 */
.card-content[data-v-37b65106] {
  padding-bottom: 16px;
}
.word[data-v-37b65106] {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #18181b;
  margin: 0;
}
.meaning[data-v-37b65106] {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #18181b;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}
.example[data-v-37b65106] {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
  margin: 16px 0 0;
}

/* 번역 버튼 wrapper */
.translate-btn-wrapper[data-v-37b65106] {
  position: relative;
}
[data-v-37b65106] .highlight-orange {
  color: var(--key-color-primary, #ff9016);
  font-weight: 600;
}
[data-v-37b65106] .failed-word {
  color: #9ca3af;
}
[data-v-37b65106] .highlight-blue {
  color: var(--key-color-secondary, #3182f6);
  font-weight: 600;
}

/* 분석 결과 */
.result-section[data-v-37b65106] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: #ffeaf1;
  border-radius: 10px;
  margin-top: 16px;
}
.result-left[data-v-37b65106] {
  display: flex;
  align-items: center;
}
.result-left[data-v-37b65106] > * + * {
  margin-left: 12px;
}
.result-emoji-box[data-v-37b65106] {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
}
.result-emoji-img[data-v-37b65106] {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.result-info[data-v-37b65106] {
  display: flex;
  flex-direction: column;
}
.result-message[data-v-37b65106] {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #18181b;
}
.result-score[data-v-37b65106] {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  color: #ff3378;
}
.retry-btn[data-v-37b65106] {
  display: flex;
  align-items: center;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #18181b;
  background-color: #ffd5e3;
  border: none;
  border-radius: 999px;
  cursor: pointer;
}
.retry-btn[data-v-37b65106] > * + * {
  margin-left: 4px;
}
.replay-icon[data-v-37b65106] {
  width: 14px;
  height: 14px;
}
.record-icon[data-v-37b65106] {
  width: 26px;
  height: 26px;
}

/* 녹음 버튼 */
.record-section[data-v-37b65106] {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.record-area[data-v-37b65106] {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 4px;
}
.record-area[data-v-37b65106] > * + * {
  margin-top: 6px;
}
.record-hint-text[data-v-37b65106] {
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  color: #6b7280;
  margin: 0;
  margin-top: 6px;
  white-space: nowrap;
}
.record-btn-wrapper[data-v-37b65106] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.3);
  border-radius: 999px;
}
.record-btn-wrapper.vocabulary[data-v-37b65106] {
  border-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.3);
}
.record-btn-wrapper.disabled[data-v-37b65106] {
  opacity: 0.4;
}
.record-btn[data-v-37b65106] {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--key-color-primary, #ff9016);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0px 4px 16px rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.2);
}
.record-btn.vocabulary[data-v-37b65106] {
  background-color: var(--key-color-secondary, #3182f6);
  box-shadow: 0px 4px 16px rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.2);
}
.record-btn.disabled[data-v-37b65106] {
  cursor: not-allowed;
}
.record-btn.recording[data-v-37b65106] {
  background-color: var(--key-color-primary, #ff9016);
  position: relative;
  z-index: 2;
}
.record-btn.recording.vocabulary[data-v-37b65106] {
  background-color: var(--key-color-secondary, #3182f6);
}

/* 녹음 중 wrapper */
.record-btn-wrapper.recording[data-v-37b65106] {
  position: relative;
  border-color: transparent;
}

/* 동심원 이펙트 (물결 퍼지기) */
.concentric-circles[data-v-37b65106] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 1;
  pointer-events: none;
}
.circle[data-v-37b65106] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px solid rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.5);
  width: 68px;
  height: 68px;
  opacity: 0;
}

/* 첫 번째 원 - 즉시 시작 */
.circle-1[data-v-37b65106] {
  animation: wave-expand-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

/* 두 번째 원 - 0.9초 딜레이 */
.circle-2[data-v-37b65106] {
  animation: wave-expand-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 0.9s;
}

/* 세 번째 원 - 1.8초 딜레이 */
.circle-3[data-v-37b65106] {
  animation: wave-expand-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 1.8s;
}
.concentric-circles.vocabulary .circle[data-v-37b65106] {
  border-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.5);
}
@keyframes wave-expand-37b65106 {
0% {
    width: 68px;
    height: 68px;
    opacity: 0;
}
8% {
    opacity: 0.5;
}
30% {
    opacity: 0.4;
}
60% {
    opacity: 0.25;
}
100% {
    width: 150px;
    height: 150px;
    opacity: 0;
}
}

/* Vocabulary용 애니메이션 */
.concentric-circles.vocabulary .circle-1[data-v-37b65106] {
  animation: wave-expand-blue-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}
.concentric-circles.vocabulary .circle-2[data-v-37b65106] {
  animation: wave-expand-blue-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 0.9s;
}
.concentric-circles.vocabulary .circle-3[data-v-37b65106] {
  animation: wave-expand-blue-37b65106 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite 1.8s;
}
@keyframes wave-expand-blue-37b65106 {
0% {
    width: 68px;
    height: 68px;
    opacity: 0;
    border-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.5);
}
8% {
    opacity: 0.5;
}
30% {
    opacity: 0.4;
}
60% {
    opacity: 0.25;
}
100% {
    width: 150px;
    height: 150px;
    opacity: 0;
    border-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0);
}
}
@keyframes recording-pulse-37b65106 {
0%,
  100% {
    transform: scale(1);
}
50% {
    transform: scale(1.05);
}
}

/* 비활성 버튼 */
.record-btn[data-v-37b65106]:disabled {
  cursor: not-allowed;
  opacity: 0.9;
}

/* 결과 컨테이너 */
.result-container[data-v-37b65106] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Translation 팝업 오버레이 (Teleport로 body에 렌더링되므로 global 스타일 필요) */
.translation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* Translation 팝업 (Teleport로 body에 렌더링) */
.translation-popup-container {
  z-index: 1001;
}
.translation-popup {
  background-color: #fff;
  border-radius: 12px;
  padding: 14px;
  width: 232px;
  display: flex;
  flex-direction: column;
}
.translation-popup > * + * {
  margin-top: 8px;
}
.translation-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  color: #18181b;
}
.translation-title > * + * {
  margin-left: 6px;
}
.translation-title img {
  width: 18px;
  height: 18px;
}
.translation-close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transform: translateY(-100%);
}
.translation-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
  margin: 0;
}

.topic-talk[data-v-69a32a36] {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* 슬라이드 인디케이터 */
.slide-indicators[data-v-69a32a36] {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.slide-indicators[data-v-69a32a36] > * + * {
  margin-left: 5px;
}
.indicator[data-v-69a32a36] {
  position: relative;
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.indicator[data-v-69a32a36]::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 3px;
  border-radius: 999px;
  transition: background-color 0.2s;
}
.indicator.question[data-v-69a32a36]::after {
  background-color: rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.2);
}
.indicator.discussion[data-v-69a32a36]::after {
  background-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.2);
}
.indicator.question.active[data-v-69a32a36]::after {
  background-color: var(--key-color-primary, #ff9016);
}
.indicator.discussion.active[data-v-69a32a36]::after {
  background-color: var(--key-color-secondary, #3182f6);
}

/* 카드 */
.card[data-v-69a32a36] {
  position: relative;
  background-color: transparent;
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  flex: 1;
}

/* 슬라이드 트랙 */
.slides-track[data-v-69a32a36] {
  display: flex;
  will-change: transform;
}
.slides-track[data-v-69a32a36] > * + * {
  margin-left: 20px;
}

/* 각 슬라이드 아이템 */
.slide-item[data-v-69a32a36] {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
}
.card-header[data-v-69a32a36] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.card-type[data-v-69a32a36] {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  padding: 4px 10px;
  margin: 2px 0px;
  border-radius: 6px;
}
.card-type.question[data-v-69a32a36] {
  color: var(--key-color-primary, #ff9016);
  background-color: rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.1);
}
.card-type.discussion[data-v-69a32a36] {
  color: var(--key-color-secondary, #3182f6);
  background-color: rgba(var(--key-color-secondary-rgb, 49, 130, 246), 0.1);
}
.answer-btn[data-v-69a32a36] {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
}
.answer-btn img[data-v-69a32a36] {
  width: 18px;
  height: 18px;
}

/* 카드 컨텐츠 */
.card-content[data-v-69a32a36] {
  min-height: 100px;
}
.question-text[data-v-69a32a36] {
  font-size: 18px;
  line-height: 26px;
  color: #18181b;
  margin: 0;
}

/* Answer 팝업 오버레이 (Teleport로 body에 렌더링되므로 global 스타일 필요) */
.answer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

/* Answer 팝업 컨테이너 */
.answer-popup-container {
  z-index: 1001;
}
.answer-popup {
  background-color: #fff;
  border-radius: 12px;
  padding: 14px;
  width: 232px;
  display: flex;
  flex-direction: column;
}
.answer-popup > * + * {
  margin-top: 8px;
}
.answer-title {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #18181b;
}
.answer-title > * + * {
  margin-left: 6px;
}
.answer-title-icon {
  width: 18px;
  height: 18px;
}
.answer-close {
  position: absolute;
  top: -8px;
  right: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  transform: translateY(-100%);
}
.answer-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #18181b;
  margin: 0;
}

.wrapup[data-v-fd6f0f04] {
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
}

/* 완료 화면 */
.complete-screen[data-v-fd6f0f04] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  flex: 1;
}
.complete-icon[data-v-fd6f0f04] {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}
.complete-text-main[data-v-fd6f0f04] {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #18181b;
  margin: 0;
  text-align: center;
}
.complete-text-sub[data-v-fd6f0f04] {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #8b95a1;
  margin: 6px 0 0;
  text-align: center;
}

/* 카드 */
.card[data-v-fd6f0f04] {
  background-color: #fff;
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.question[data-v-fd6f0f04] {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: #18181b;
  margin: 0 0 6px;
}
.feedback-hint[data-v-fd6f0f04] {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  color: #ff3378;
  margin: 0 0 16px;
}

/* 텍스트 입력 영역 */
.input-section[data-v-fd6f0f04] {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}
.input-section[data-v-fd6f0f04] > * + * {
  margin-top: 6px;
}
.input-wrapper[data-v-fd6f0f04] {
  position: relative;
}
.text-input[data-v-fd6f0f04] {
  width: 100%;
  height: 200px;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #18181b;
  background-color: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}
.text-input[data-v-fd6f0f04]::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
.text-input[data-v-fd6f0f04]:focus {
  border-color: var(--key-color-primary, #ff9016);
}
.text-input[data-v-fd6f0f04]::-moz-placeholder {
  color: #a1a1aa;
}
.text-input[data-v-fd6f0f04]::placeholder {
  color: #a1a1aa;
}
.char-count-wrapper[data-v-fd6f0f04] {
  display: flex;
  justify-content: flex-end;
}
.char-count[data-v-fd6f0f04] {
  font-size: 14px;
  line-height: 20px;
  color: #8b95a1;
}

/* 제출 버튼 */
.submit-btn[data-v-fd6f0f04] {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  background-color: #b6bac3;
  border: none;
  border-radius: 12px;
  cursor: not-allowed;
  transition: all 0.2s;
}
.submit-btn.active[data-v-fd6f0f04] {
  color: #fff;
  background-color: var(--key-color-primary, #ff9016);
  cursor: pointer;
}
.submit-btn.active[data-v-fd6f0f04]:hover {
  background-color: #f97316;
}

/* 로딩 오버레이 */
.loading-overlay {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #18181b;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* iOS 웹뷰 stacking context 강제 생성 */
  transform: translate3d(0, 0, 0);
  /* safe-area 대응 */
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
}

/* X 버튼 */
.close-btn {
  position: absolute;
  top: calc(16px + env(safe-area-inset-top, 0px));
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1;
}
.loading-content {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 아이콘 캐러셀 */
.icons-carousel {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0px, black 56px, black calc(100% - 56px), transparent 100%);
  mask-image: linear-gradient(to right, transparent 0px, black 56px, black calc(100% - 56px), transparent 100%);
}
.icons-track {
  display: flex;
  animation: scrollIcons 5s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.icons-track > * + * {
  margin-left: 26px;
}
.loading-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes scrollIcons {
from {
    transform: translateX(0);
}
to {
    transform: translateX(calc(-116px * 5)); /* (90px + 26px gap) * 5 icons = 1 세트 */
}
}

/* 로딩 텍스트 */
.loading-text {
  text-align: center;
  margin-bottom: 60px;
}
.loading-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0;
}

/* Fun fact 영역 */
.fun-fact-container {
  width: calc(100% - 40px);
  max-width: 320px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}
.fun-fact-container > * + * {
  margin-top: 8px;
}
.fun-fact-badge {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.fun-fact-badge-text {
  display: inline-block;
  padding: 4px 12px;
  background-color: var(--key-color-primary, #ff9016);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #fff;
}
.fun-fact-badge-tail {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid var(--key-color-primary, #ff9016);
}
.fun-fact-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* 결과 오버레이 */
.result-overlay {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: #18181b;
  z-index: 99;
  overflow-y: auto;
  /* iOS 웹뷰 stacking context 강제 생성 */
  transform: translate3d(0, 0, 0);
  /* safe-area 대응 */
  padding-top: env(safe-area-inset-top, 0px);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
}
.result-content {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: calc(60px + env(safe-area-inset-top, 0px)) 20px calc(20px + env(safe-area-inset-bottom, 0px));
}
.result-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: #fff;
  margin: 0;
  padding: 0 0 30px;
}
.result-overlay.no-corrections-bg {
  background:
    linear-gradient(180deg, transparent 0%, rgba(var(--key-color-primary-rgb, 255, 144, 22), 0.4) 100%),
    #18181b;
}

/* No Corrections Needed */
.no-corrections {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: calc(100vh - 160px);
}
.no-corrections-img {
  width: 219.578px;
  height: 186.555px;
  aspect-ratio: 113/96;
  -o-object-fit: contain;
     object-fit: contain;
}
.no-corrections-text {
  margin: 20px 0 0;
  align-self: stretch;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  color: var(--key-color-primary, #ff9016);
}

/* 피드백 목록 */
.feedback-list {
  display: flex;
  flex-direction: column;
}
.feedback-list > * + * {
  margin-top: 46px;
}
.feedback-item {
  display: flex;
  flex-direction: column;
}
.feedback-item > * + * {
  margin-top: 20px;
}
.original-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #b6bac3;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Try saying 카드 */
.try-saying-card {
  background-color: #2f2f31;
  border-radius: 0 12px 12px 12px;
  padding: 20px;
}
.try-saying-header {
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.try-saying-header > * + * {
  margin-left: 6px;
}
.try-saying-icon {
  width: 20px;
  height: 20px;
}
.try-saying-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  color: #fff;
}
.corrected-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  margin: 0;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* 수정된 단어 하이라이트 */
.highlight {
  color: var(--key-color-primary, #ff9016);
}

/* 종료 확인 모달 오버레이 */
.exit-confirm-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* 종료 확인 모달 */
.exit-confirm-modal {
  width: calc(100% - 40px);
  max-width: 320px;
  background-color: #fff;
  border-radius: 16px;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
}
.exit-confirm-modal > * + * {
  margin-top: 20px;
}
.exit-confirm-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #18181b;
  text-align: center;
  margin: 0;
}
.exit-confirm-buttons {
  display: flex;
}
.exit-confirm-buttons > * + * {
  margin-left: 8px;
}
.exit-btn {
  flex: 1;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}
.exit-btn.cancel {
  background-color: #e5e7eb;
  color: #18181b;
}
.exit-btn.confirm {
  background-color: var(--key-color-primary, #ff9016);
  color: #fff;
}

/* CSS 변수 정의 */
.detail-container[data-v-917622a0] {
  --key-color-primary: #ff9016;
  --key-color-primary-rgb: 255, 144, 22;
  --key-color-secondary: #3182f6;
  --key-color-secondary-rgb: 49, 130, 246;
}

/* malangtalk 테마 */
.detail-container.theme-malangtalk[data-v-917622a0] {
  --key-color-primary: #8b5cf6;
  --key-color-primary-rgb: 139, 92, 246;
  --key-color-secondary: #0891b2;
  --key-color-secondary-rgb: 8, 145, 178;
}
.detail-container[data-v-917622a0] {
  min-width: 360px;
  max-width: 600px;
  margin: 0 auto;
  height: 100vh; /* 폴백 */
  height: 100dvh;
  overflow-y: auto;
  background-color: #18181b;
  /* 스크롤바 숨기기 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.detail-container[data-v-917622a0] * {
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
}
.detail-container[data-v-917622a0]::-webkit-scrollbar {
  display: none;
}

/* GNB 헤더 */
.gnb-header[data-v-917622a0] {
  position: sticky;
  top: 0;
  background-color: #18181b;
  z-index: 20;
  padding-top: env(safe-area-inset-top);
}
.gnb-area[data-v-917622a0] {
  height: 46px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gnb-left[data-v-917622a0] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.back-btn[data-v-917622a0] {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-btn[data-v-917622a0] {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.gnb-logo[data-v-917622a0] {
  width: 92px;
  height: 22px;
}

/* 컨텐츠 영역 */
.content-area[data-v-917622a0] {
  padding: 0 20px 40px;
}

/* 상단 영역 */
.top-section[data-v-917622a0] {
  padding-top: 12px;
  margin-bottom: 24px;
}
.thumbnail-wrapper[data-v-917622a0] {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

/* aspect-ratio 미지원 브라우저 폴백 */
@supports not (aspect-ratio: 16 / 9) {
.thumbnail-wrapper[data-v-917622a0] {
    padding-bottom: 56.25%; /* 9/16 = 0.5625 */
}
.thumbnail-wrapper > img[data-v-917622a0],
  .thumbnail-wrapper > video[data-v-917622a0] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
}
.thumbnail[data-v-917622a0] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-player[data-v-917622a0] {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #000;
}
.play-button[data-v-917622a0] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.title-eng[data-v-917622a0] {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: #fff;
  margin: 0 0 8px;
}
.title-kor[data-v-917622a0] {
  font-size: 14px;
  line-height: 20px;
  color: #a1a1aa;
  margin: 0 0 4px;
}
.news-date[data-v-917622a0] {
  font-size: 14px;
  line-height: 20px;
  color: #71717a;
  margin: 0;
}

/* 탭 섹션 */
.tab-section[data-v-917622a0] {
  margin-top: 40px;
}
.tab-menu[data-v-917622a0] {
  display: flex;
  align-items: flex-end;
}
.tab-btn[data-v-917622a0] {
  flex: 1;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #9ca3af;
  background: transparent;
  border: none;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  position: relative;
}
.tab-btn.active[data-v-917622a0] {
  color: #18181b;
  font-weight: 700;
  background-color: #fff;
}

/* 첫 번째 탭 (Warm-Up) */
.tab-btn-first.active[data-v-917622a0] {
  border-radius: 12px 12px 0 0;
}
.tab-btn-first.active[data-v-917622a0]::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 100% 0, transparent 12px, #fff 12px);
}

/* 중간 탭 (Topic Talk) */
.tab-btn-middle.active[data-v-917622a0] {
  border-radius: 12px 12px 0 0;
}
.tab-btn-middle.active[data-v-917622a0]::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 0 0, transparent 12px, #fff 12px);
}
.tab-btn-middle.active[data-v-917622a0]::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 100% 0, transparent 12px, #fff 12px);
}

/* 마지막 탭 (Wrap-Up) */
.tab-btn-last.active[data-v-917622a0] {
  border-radius: 12px 12px 0 0;
}
.tab-btn-last.active[data-v-917622a0]::before {
  content: "";
  position: absolute;
  left: -12px;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle at 0 0, transparent 12px, #fff 12px);
}
.tab-content[data-v-917622a0] {
  position: relative;
  background-color: #fff;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
}

/* Warm-Up */
.tab-content-warmup[data-v-917622a0] {
  border-radius: 0 12px 12px 12px;
}

/* Topic Talk */
.tab-content-topic-talk[data-v-917622a0] {
  border-radius: 12px 12px 12px 12px;
}

/* Wrap-Up */
.tab-content-wrapup[data-v-917622a0] {
  border-radius: 12px 0 12px 12px;
  display: flex;
  flex-direction: column;
}

/* 슬라이드 가이드 오버레이 */
.slide-guide-overlay[data-v-917622a0] {
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
}
.slide-guide-content[data-v-917622a0] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.slide-guide-img[data-v-917622a0] {
  width: 66px;
  height: auto;
}
.slide-guide-text[data-v-917622a0] {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #fff;
  margin: 0;
}
.answer-wrap b {
  --tw-text-opacity: 1;
  color: rgb(236, 72, 153, var(--tw-text-opacity));
}
.shake[data-v-e9378304] {
  animation: shake-e9378304 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  transform: translate3d(0, 0, 0);
}

/* clamp() 미지원 브라우저용 fallback */
.adjust-text[data-v-e9378304] {
  font-size: 1rem; /* 적당한 중간값 */
}
@supports (font-size: clamp(1rem, 2.5vw, 1.25rem)) {
.adjust-text[data-v-e9378304] {
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* 지원 시 적용 */
}
}
@keyframes shake-e9378304 {
10%, 90% {
    transform: translate3d(-1px, 0, 0);
}
20%, 80% {
    transform: translate3d(2px, 0, 0);
}
30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
}
40%, 60% {
    transform: translate3d(4px, 0, 0);
}
}
.safe-area-bottom[data-v-96338785] {
  bottom: calc(env(safe-area-inset-bottom) + 20px);
  bottom: calc(constant(safe-area-inset-bottom) + 20px);
}
.toast-slide-up[data-v-96338785] {
  animation: slideUpAndDown-96338785 2s ease-out forwards;
}
@keyframes slideUpAndDown-96338785 {
0% {
    transform: translateY(100%);
    opacity: 0;
}
10%,
  90% {
    transform: translateY(0);
    opacity: 1;
}
100% {
    transform: translateY(100%);
    opacity: 0;
}
}
.content[data-v-62d0ae08] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 136px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 136px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.circle[data-v-cf2a1981]::before, .circle[data-v-cf2a1981]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 100%;
  animation: circle-cf2a1981 4s 3s infinite linear;
}
.circle[data-v-cf2a1981]::after {
  opacity: 0;
  animation: circle-cf2a1981 4s 2s infinite linear;
}
.circle2[data-v-cf2a1981]::before, .circle2[data-v-cf2a1981]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 100%;
  animation: circle2-cf2a1981 4s infinite linear;
}
.circle2[data-v-cf2a1981]::after {
  opacity: 0;
  animation: circle-cf2a1981 4s 1s infinite linear;
}
@keyframes circle-cf2a1981 {
0% {
    transform: scale(1);
    opacity: 0.2;
}
100% {
    transform: scale(3);
    opacity: 0;
}
}
@keyframes circle2-cf2a1981 {
0% {
    transform: scale(1);
    opacity: 0.2;
}
100% {
    transform: scale(3);
    opacity: 0;
}
}
.recording[data-v-cf2a1981] {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  display: block;
  background-color: #8b5cf6;
  position: relative;
  margin: 20px auto;
  color: #eae2fe;
  animation: animrecording-cf2a1981 0.3s 0.3s linear infinite alternate;
}
.recording[data-v-cf2a1981]::after,
.recording[data-v-cf2a1981]::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background-color: #8b5cf6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  animation: animrecording-cf2a1981 0.3s 0.45s linear infinite alternate;
}
.recording[data-v-cf2a1981]::before {
  left: -8px;
  animation-delay: 0s;
}
@keyframes animrecording-cf2a1981 {
0% {
    height: 20px;
}
100% {
    height: 4px;
}
}
.processing[data-v-cf2a1981] {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.processing span[data-v-cf2a1981] {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  background: #8b5cf6;
  border-radius: 50px;
  animation: up-down6-cf2a1981 0.5s ease-in infinite alternate;
}
.processing span[data-v-cf2a1981]:nth-child(2) {
  background: #8b5cf6;
  animation-delay: 0.16s;
}
.processing span[data-v-cf2a1981]:nth-child(3) {
  background: #8b5cf6;
  animation-delay: 0.32s;
  margin: 0px !important;
}
@keyframes up-down6-cf2a1981 {
0% {
    transform: translateY(-4px);
}
100% {
    transform: translateY(4px);
}
}.circle[data-v-a3d36649]::before, .circle[data-v-a3d36649]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 100%;
  animation: circle-a3d36649 4s 3s infinite linear;
}
.circle[data-v-a3d36649]::after {
  opacity: 0;
  animation: circle-a3d36649 4s 2s infinite linear;
}
.circle2[data-v-a3d36649]::before, .circle2[data-v-a3d36649]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8b5cf6;
  border-radius: 100%;
  animation: circle2-a3d36649 4s infinite linear;
}
.circle2[data-v-a3d36649]::after {
  opacity: 0;
  animation: circle-a3d36649 4s 1s infinite linear;
}
@keyframes circle-a3d36649 {
0% {
    transform: scale(1);
    opacity: 0.2;
}
100% {
    transform: scale(3);
    opacity: 0;
}
}
@keyframes circle2-a3d36649 {
0% {
    transform: scale(1);
    opacity: 0.2;
}
100% {
    transform: scale(3);
    opacity: 0;
}
}
.recording[data-v-a3d36649] {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  display: block;
  background-color: #8b5cf6;
  position: relative;
  margin: 20px auto;
  color: #eae2fe;
  animation: animrecording-a3d36649 0.3s 0.3s linear infinite alternate;
}
.recording[data-v-a3d36649]::after,
.recording[data-v-a3d36649]::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background-color: #8b5cf6;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  animation: animrecording-a3d36649 0.3s 0.45s linear infinite alternate;
}
.recording[data-v-a3d36649]::before {
  left: -8px;
  animation-delay: 0s;
}
@keyframes animrecording-a3d36649 {
0% {
    height: 20px;
}
100% {
    height: 4px;
}
}
.processing[data-v-a3d36649] {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.processing span[data-v-a3d36649] {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 4px;
  background: #8b5cf6;
  border-radius: 50px;
  animation: up-down6-a3d36649 0.5s ease-in infinite alternate;
}
.processing span[data-v-a3d36649]:nth-child(2) {
  background: #8b5cf6;
  animation-delay: 0.16s;
}
.processing span[data-v-a3d36649]:nth-child(3) {
  background: #8b5cf6;
  animation-delay: 0.32s;
  margin: 0px !important;
}
@keyframes up-down6-a3d36649 {
0% {
    transform: translateY(-4px);
}
100% {
    transform: translateY(4px);
}
}.content[data-v-33f28226] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 136px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 136px);
  height: calc(100% - 56px);
  overflow-y: auto;
}[data-v-5cd01c4e] .swiper {
  z-index: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
[data-v-5cd01c4e] .swiper .swiper-wrapper {
  height: auto;
  margin-top: 32px;
}
[data-v-5cd01c4e] .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  height: auto;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
}
[data-v-5cd01c4e] .swiper .swiper-wrapper .swiper-slide > div {
  width: 100%;
}
[data-v-5cd01c4e] .swiper .swiper-wrapper .swiper-slide > img,[data-v-5cd01c4e] .swiper .swiper-wrapper .swiper-slide > video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
[data-v-5cd01c4e] .swiper .swiper-pagination {
  font-size: 14px;
  margin-top: 16px;
  bottom: unset;
  left: unset;
  top: unset;
  position: relative;
  color: #6b7280;
}
[data-v-5cd01c4e] .swiper .swiper-pagination .swiper-pagination-current {
  color: white;
}
.fade-enter-active[data-v-5cd01c4e],
.fade-leave-active[data-v-5cd01c4e] {
  transition: all 0.3s ease-in-out;
}
.fade-enter-from[data-v-5cd01c4e],
.fade-leave-to[data-v-5cd01c4e] {
  opacity: 0.1;
}
.fade-enter-active,
.fade-leave-active {
  transition: all 0.2s ease-in-out;
}
.fade-enter-from,
.fade-leave-to {
  opacity: 0.1;
}
.video-container[data-v-6eab83af] {
  height: calc(100vh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 56px - 24px - 56px - 10px);
  height: calc(100vh - constant(safe-area-inset-top) - constant(safe-area-inset-bottom) - 56px - 24px - 56px - 10px);
}
.load-row[data-v-d27b1288] {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.load-row span[data-v-d27b1288] {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  background: white;
  border-radius: 50px;
  animation: up-down6-d27b1288 0.5s ease-in infinite alternate;
}
.load-row span[data-v-d27b1288]:nth-child(2) {
  background: white;
  animation-delay: 0.16s;
}
.load-row span[data-v-d27b1288]:nth-child(3) {
  background: white;
  animation-delay: 0.32s;
  margin: 0px !important;
}
@keyframes up-down6-d27b1288 {
0% {
    transform: translateY(-4px);
}
100% {
    transform: translateY(4px);
}
}

/* From Uiverse.io by alexruix */
.loader[data-v-75368135] {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  display: block;
  background-color: white;
  margin: 20px auto;
  position: relative;
  color: #f2f2f2;
  animation: animloader-75368135 0.3s 0.3s linear infinite alternate;
}
.loader[data-v-75368135]::after,
.loader[data-v-75368135]::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: white;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  animation: animloader-75368135 0.3s 0.45s linear infinite alternate;
}
.loader[data-v-75368135]::before {
  left: -8px;
  animation-delay: 0s;
}
@keyframes animloader-75368135 {
0% {
    height: 20px;
}
100% {
    height: 4px;
}
}
.circle[data-v-51d6b873]::before, .circle[data-v-51d6b873]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fbecd0;
  border-radius: 100%;
  animation: circle-51d6b873 2s 1s infinite linear;
}
.circle[data-v-51d6b873]::after {
  opacity: 0;
  animation: circle-51d6b873 2s 2s infinite linear;
}
@keyframes circle-51d6b873 {
0% {
    transform: scale(1.5);
    opacity: 1;
}
100% {
    transform: scale(3.5);
    opacity: 0;
}
}
.fade-enter-active[data-v-51d6b873],
.fade-leave-active[data-v-51d6b873] {
  transition: all 0.2s ease-in-out;
}
.fade-enter-from[data-v-51d6b873],
.fade-leave-to[data-v-51d6b873] {
  opacity: 0.1;
}
.fadeChat-enter-active[data-v-51d6b873],
.fadeChat-leave-active[data-v-51d6b873] {
  transition: all 0.2s ease-in-out;
}
.fadeChat-enter-from[data-v-51d6b873],
.fadeChat-leave-to[data-v-51d6b873] {
  opacity: 0.1;
  transform: translateY(5px);
}
.recording[data-v-51d6b873] {
  max-height: calc(100vh - 270px - 81px - env(safe-area-inset-top));
}
.bottom-size[data-v-51d6b873] {
  padding-bottom: env(safe-area-inset-top);
  padding-bottom: constant(safe-area-inset-top);
}.circle[data-v-a503cd15]::before, .circle[data-v-a503cd15]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fbecd0;
  border-radius: 100%;
  animation: circle-a503cd15 2s 1s infinite linear;
}
.circle[data-v-a503cd15]::after {
  opacity: 0;
  animation: circle-a503cd15 2s 2s infinite linear;
}
@keyframes circle-a503cd15 {
0% {
    transform: scale(1.5);
    opacity: 1;
}
100% {
    transform: scale(3.5);
    opacity: 0;
}
}
.fade-enter-active[data-v-a503cd15],
.fade-leave-active[data-v-a503cd15] {
  transition: all 0.2s ease-in-out;
}
.fade-enter-from[data-v-a503cd15],
.fade-leave-to[data-v-a503cd15] {
  opacity: 0.1;
}
.fadeChat-enter-active[data-v-a503cd15],
.fadeChat-leave-active[data-v-a503cd15] {
  transition: all 0.2s ease-in-out;
}
.fadeChat-enter-from[data-v-a503cd15],
.fadeChat-leave-to[data-v-a503cd15] {
  opacity: 0.1;
  transform: translateY(5px);
}
.record-end[data-v-a503cd15] {
  max-height: calc(100vh - 92px - 90px - env(safe-area-inset-top));
}
.finished-content[data-v-a503cd15] {
  max-height: calc(100vh - 188px - 31px - env(safe-area-inset-top));
}
.recording[data-v-a503cd15] {
  max-height: calc(100vh - 270px - env(safe-area-inset-top));
}.circle[data-v-be48d197]::before, .circle[data-v-be48d197]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #fbecd0;
  border-radius: 100%;
  animation: circle-be48d197 2s 1s infinite linear;
}
.circle[data-v-be48d197]::after {
  opacity: 0;
  animation: circle-be48d197 2s 2s infinite linear;
}
@keyframes circle-be48d197 {
0% {
    transform: scale(1.5);
    opacity: 1;
}
100% {
    transform: scale(3.5);
    opacity: 0;
}
}
.fade-enter-active[data-v-be48d197],
.fade-leave-active[data-v-be48d197] {
  transition: all 0.2s ease-in-out;
}
.fade-enter-from[data-v-be48d197],
.fade-leave-to[data-v-be48d197] {
  opacity: 0.1;
}
.fadeChat-enter-active[data-v-be48d197],
.fadeChat-leave-active[data-v-be48d197] {
  transition: all 0.2s ease-in-out;
}
.fadeChat-enter-from[data-v-be48d197],
.fadeChat-leave-to[data-v-be48d197] {
  opacity: 0.1;
  transform: translateY(5px);
}
.record-end[data-v-be48d197] {
  max-height: calc(100vh - 92px - 90px - 81px - env(safe-area-inset-top));
}
.finished-content[data-v-be48d197] {
  max-height: calc(100vh - 188px - 31px - 81px - env(safe-area-inset-top));
}
.recording[data-v-be48d197] {
  max-height: calc(100vh - 270px - 81px - env(safe-area-inset-top));
}
.wrap-404[data-v-5b4d697c] {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    height: 100vh;
    padding: 62px 0;
    background-color: var(--clr-f9f9f9);
}

/* 문구 */
.wrap-content[data-v-5b4d697c] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.warn[data-v-5b4d697c] {
    width: 177px;
    margin-bottom: 38px;
}
.text1[data-v-5b4d697c] {
    font-size: 35px;
    font-weight: var(--fw-700);
    color: var(--clr-e14246);
    text-align: center;
    margin-bottom: 44px;
}
.text2[data-v-5b4d697c] {
    font-size: 24px;
    color: var(--clr-525252);
    text-align: center;
}
.content[data-v-bc135f85] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 126px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 126px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-aa35ad2d] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 48px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 48px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-180bb409] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 48px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 48px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.all-wrapper[data-v-dc7d5249] {
  min-height: 100vh;
  min-height: 100dvh;
}.content[data-v-04f75dd5] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 136px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 136px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-10aeb119] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  padding-bottom: calc(env(safe-area-inset-bottom) + 136px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 136px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-f7b9a227] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-bottom: calc(env(safe-area-inset-bottom) + 48px);
  padding-bottom: calc(constant(safe-area-inset-bottom) + 48px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-ab753f1d] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-b65da824] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-d2e1ba31] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  height: calc(100% - 56px);
  overflow-y: auto;
}.content[data-v-035df5b2] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  padding-top: 24px;
  height: calc(100% - 56px);
  overflow-y: auto;
}
.load-row[data-v-423de7df] {
  width: 100%;
  height: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
}
.load-row span[data-v-423de7df] {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: #ff9016;
  border-radius: 50px;
  animation: up-down6-423de7df 0.5s ease-in infinite alternate;
}
.load-row span[data-v-423de7df]:nth-child(2) {
  background: #ff9016;
  animation-delay: 0.16s;
}
.load-row span[data-v-423de7df]:nth-child(3) {
  background: #ff9016;
  animation-delay: 0.32s;
  margin: 0px !important;
}
@keyframes up-down6-423de7df {
0% {
    transform: translateY(-4px);
}
100% {
    transform: translateY(4px);
}
}
.circle[data-v-1651cf0a]::before, .circle[data-v-1651cf0a]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 182px;
  height: 182px;
  transform: translate(-50%, -50%);
  border: 1px solid #ffebc6;
  border-radius: 100%;
}
.circle[data-v-1651cf0a]::after {
  width: 286px;
  height: 286px;
  border: 1px solid #ffebc6;
}
.playing[data-v-1651cf0a]::before, .playing[data-v-1651cf0a]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #ffebc6;
  border-radius: 100%;
  animation: playing-1651cf0a 2s 1s infinite linear;
}
.playing[data-v-1651cf0a]::after {
  opacity: 0;
  animation: playing-1651cf0a 2s 2s infinite linear;
}
@keyframes playing-1651cf0a {
0% {
    transform: scale(1.5);
    opacity: 1;
}
100% {
    transform: scale(3.5);
    opacity: 0;
}
}
.loader[data-v-1651cf0a] {
  width: 4px;
  height: 16px;
  border-radius: 4px;
  display: block;
  background-color: #18181b;
  margin: 20px auto;
  position: relative;
  color: #f2f2f2;
  animation: animloader-1651cf0a 0.3s 0.3s linear infinite alternate;
}
.loader[data-v-1651cf0a]::after,
.loader[data-v-1651cf0a]::before {
  content: "";
  width: 4px;
  height: 16px;
  border-radius: 4px;
  background: #18181b;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  animation: animloader-1651cf0a 0.3s 0.45s linear infinite alternate;
}
.loader[data-v-1651cf0a]::before {
  left: -8px;
  animation-delay: 0s;
}
@keyframes animloader-1651cf0a {
0% {
    height: 20px;
}
100% {
    height: 4px;
}
}
.record-start[data-v-1651cf0a] {
  background: conic-gradient(#fff3db 0%, #ff9016 100%);
}
.bottom-fixed[data-v-1651cf0a] {
  padding-bottom: calc(env(safe-area-inset-bottom));
  padding-bottom: calc(constant(safe-area-inset-bottom));
}
.modal[data-v-1651cf0a] {
  padding-top: calc(env(safe-area-inset-top));
  padding-top: calc(constant(safe-area-inset-top));
  padding-bottom: calc(env(safe-area-inset-bottom));
  padding-bottom: calc(constant(safe-area-inset-bottom));
  overflow-y: auto;
}.content[data-v-186c617f] {
  margin-top: calc(env(safe-area-inset-top) + 56px);
  margin-top: calc(constant(safe-area-inset-top) + 56px);
  height: calc(100% - 56px);
  overflow-y: auto;
}.toggle-container[data-v-bf40d9b7] {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 4px solid #fff;
  border-radius: 22px;
  background: #fff;
}
.toggle-container[data-v-bf40d9b7]::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  background: #8b5cf6;
  border-radius: 18px;
  box-shadow: 0 0 10px rgba(55, 65, 81, 0.08);
  transition: all 0.3s;
}
.toggle-checkbox:checked + .toggle-container[data-v-bf40d9b7]::before {
  left: 50%;
}
.toggle-container p[data-v-bf40d9b7] {
  padding: 8px 0;
  font-size: 12px;
  text-align: center;
  z-index: 1;
}
.toggle-checkbox[data-v-bf40d9b7] {
  display: none;
}
.toggle-checkbox:checked + .toggle-container p[data-v-bf40d9b7]:first-child {
  color: #18181b;
  transition: color 0.3s;
}
.toggle-checkbox:checked + .toggle-container p[data-v-bf40d9b7]:last-child {
  color: #fff;
  transition: color 0.3s;
}
.toggle-checkbox + .toggle-container p[data-v-bf40d9b7]:first-child {
  color: #fff;
  transition: color 0.3s;
}
.toggle-checkbox + .toggle-container p[data-v-bf40d9b7]:last-child {
  color: #18181b;
  transition: color 0.3s;
}.korTitle[data-v-9cc423da] {
  font-size: 12px;
}
.all-wrapper {
  position: relative;
  height: 100vh;
  overflow: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.all-wrapper::-webkit-scrollbar {
  display: none;
}
.top-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: unset;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: calc(env(safe-area-inset-top));
  padding-top: calc(constant(safe-area-inset-top));
}
.con-wrapper {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.snack-bottom-fixed-btn {
  bottom: calc(env(safe-area-inset-bottom) + 22px);
  bottom: calc(constant(safe-area-inset-bottom) + 22px);
}
.word-break {
  word-break: break-word;
}
*, ::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: #e5e7eb; /* 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%;
}
@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;
  }
}
.visible{
  visibility: visible;
}
.invisible{
  visibility: hidden;
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.absolute{
  position: absolute;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.inset-0{
  inset: 0px;
}
.-top-\[26px\]{
  top: -26px;
}
.-top-\[45px\]{
  top: -45px;
}
.bottom-0{
  bottom: 0px;
}
.bottom-10{
  bottom: 2.5rem;
}
.bottom-4{
  bottom: 1rem;
}
.bottom-5{
  bottom: 1.25rem;
}
.bottom-\[108px\]{
  bottom: 108px;
}
.bottom-\[20px\]{
  bottom: 20px;
}
.left-0{
  left: 0px;
}
.left-1\/2{
  left: 50%;
}
.left-\[16px\]{
  left: 16px;
}
.left-\[50\%\]{
  left: 50%;
}
.right-0{
  right: 0px;
}
.right-5{
  right: 1.25rem;
}
.right-6{
  right: 1.5rem;
}
.top-0{
  top: 0px;
}
.top-1\/2{
  top: 50%;
}
.top-3{
  top: 0.75rem;
}
.top-5{
  top: 1.25rem;
}
.top-\[45\%\]{
  top: 45%;
}
.top-\[50\%\]{
  top: 50%;
}
.z-0{
  z-index: 0;
}
.z-10{
  z-index: 10;
}
.z-\[0\]{
  z-index: 0;
}
.z-\[100\]{
  z-index: 100;
}
.z-\[1\]{
  z-index: 1;
}
.z-\[2\]{
  z-index: 2;
}
.z-\[99\]{
  z-index: 99;
}
.mx-auto{
  margin-left: auto;
  margin-right: auto;
}
.my-5{
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-\[26px\]{
  margin-top: 26px;
  margin-bottom: 26px;
}
.my-\[8px\]{
  margin-top: 8px;
  margin-bottom: 8px;
}
.mb-1{
  margin-bottom: 0.25rem;
}
.mb-1\.5{
  margin-bottom: 0.375rem;
}
.mb-10{
  margin-bottom: 2.5rem;
}
.mb-12{
  margin-bottom: 3rem;
}
.mb-2{
  margin-bottom: 0.5rem;
}
.mb-2\.5{
  margin-bottom: 0.625rem;
}
.mb-24{
  margin-bottom: 6rem;
}
.mb-3{
  margin-bottom: 0.75rem;
}
.mb-3\.5{
  margin-bottom: 0.875rem;
}
.mb-4{
  margin-bottom: 1rem;
}
.mb-5{
  margin-bottom: 1.25rem;
}
.mb-6{
  margin-bottom: 1.5rem;
}
.mb-7{
  margin-bottom: 1.75rem;
}
.mb-8{
  margin-bottom: 2rem;
}
.mb-9{
  margin-bottom: 2.25rem;
}
.mb-\[10px\]{
  margin-bottom: 10px;
}
.mb-\[11px\]{
  margin-bottom: 11px;
}
.mb-\[12px\]{
  margin-bottom: 12px;
}
.mb-\[14px\]{
  margin-bottom: 14px;
}
.mb-\[18px\]{
  margin-bottom: 18px;
}
.mb-\[20px\]{
  margin-bottom: 20px;
}
.mb-\[22px\]{
  margin-bottom: 22px;
}
.mb-\[26px\]{
  margin-bottom: 26px;
}
.mb-\[30px\]{
  margin-bottom: 30px;
}
.mb-\[34px\]{
  margin-bottom: 34px;
}
.mb-\[36px\]{
  margin-bottom: 36px;
}
.mb-\[38px\]{
  margin-bottom: 38px;
}
.mb-\[3px\]{
  margin-bottom: 3px;
}
.mb-\[4px\]{
  margin-bottom: 4px;
}
.mb-\[50px\]{
  margin-bottom: 50px;
}
.mb-\[6px\]{
  margin-bottom: 6px;
}
.mb-\[8\.5px\]{
  margin-bottom: 8.5px;
}
.ml-1\.5{
  margin-left: 0.375rem;
}
.ml-2{
  margin-left: 0.5rem;
}
.ml-\[6px\]{
  margin-left: 6px;
}
.ml-\[8px\]{
  margin-left: 8px;
}
.ml-auto{
  margin-left: auto;
}
.mr-1{
  margin-right: 0.25rem;
}
.mr-\[10px\]{
  margin-right: 10px;
}
.mr-\[6px\]{
  margin-right: 6px;
}
.mt-2\.5{
  margin-top: 0.625rem;
}
.mt-20{
  margin-top: 5rem;
}
.mt-3\.5{
  margin-top: 0.875rem;
}
.mt-7{
  margin-top: 1.75rem;
}
.mt-\[10px\]{
  margin-top: 10px;
}
.mt-\[12px\]{
  margin-top: 12px;
}
.mt-\[154px\]{
  margin-top: 154px;
}
.mt-\[17px\]{
  margin-top: 17px;
}
.mt-\[20px\]{
  margin-top: 20px;
}
.line-clamp-3{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.block{
  display: block;
}
.flex{
  display: flex;
}
.inline-flex{
  display: inline-flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.contents{
  display: contents;
}
.hidden{
  display: none;
}
.aspect-\[353\/208\]{
  aspect-ratio: 353/208;
}
.aspect-\[385\/313\]{
  aspect-ratio: 385/313;
}
.aspect-square{
  aspect-ratio: 1 / 1;
}
.size-16{
  width: 4rem;
  height: 4rem;
}
.size-8{
  width: 2rem;
  height: 2rem;
}
.size-\[100px\]{
  width: 100px;
  height: 100px;
}
.size-\[122px\]{
  width: 122px;
  height: 122px;
}
.size-\[124px\]{
  width: 124px;
  height: 124px;
}
.size-\[54px\]{
  width: 54px;
  height: 54px;
}
.size-\[82px\]{
  width: 82px;
  height: 82px;
}
.size-full{
  width: 100%;
  height: 100%;
}
.h-1{
  height: 0.25rem;
}
.h-1\.5{
  height: 0.375rem;
}
.h-14{
  height: 3.5rem;
}
.h-2\.5{
  height: 0.625rem;
}
.h-6{
  height: 1.5rem;
}
.h-64{
  height: 16rem;
}
.h-7{
  height: 1.75rem;
}
.h-8{
  height: 2rem;
}
.h-\[104px\]{
  height: 104px;
}
.h-\[134px\]{
  height: 134px;
}
.h-\[153px\]{
  height: 153px;
}
.h-\[159px\]{
  height: 159px;
}
.h-\[18px\]{
  height: 18px;
}
.h-\[1px\]{
  height: 1px;
}
.h-\[200px\]{
  height: 200px;
}
.h-\[21px\]{
  height: 21px;
}
.h-\[22px\]{
  height: 22px;
}
.h-\[280px\]{
  height: 280px;
}
.h-\[34px\]{
  height: 34px;
}
.h-\[35px\]{
  height: 35px;
}
.h-\[36px\]{
  height: 36px;
}
.h-\[44px\]{
  height: 44px;
}
.h-\[46px\]{
  height: 46px;
}
.h-\[48px\]{
  height: 48px;
}
.h-\[51px\]{
  height: 51px;
}
.h-\[53px\]{
  height: 53px;
}
.h-\[54px\]{
  height: 54px;
}
.h-\[78px\]{
  height: 78px;
}
.h-\[84px\]{
  height: 84px;
}
.h-full{
  height: 100%;
}
.max-h-40{
  max-height: 10rem;
}
.min-h-\[200px\]{
  min-height: 200px;
}
.min-h-\[432px\]{
  min-height: 432px;
}
.w-1{
  width: 0.25rem;
}
.w-1\.5{
  width: 0.375rem;
}
.w-10{
  width: 2.5rem;
}
.w-14{
  width: 3.5rem;
}
.w-20{
  width: 5rem;
}
.w-3{
  width: 0.75rem;
}
.w-3\.5{
  width: 0.875rem;
}
.w-36{
  width: 9rem;
}
.w-4{
  width: 1rem;
}
.w-44{
  width: 11rem;
}
.w-5{
  width: 1.25rem;
}
.w-6{
  width: 1.5rem;
}
.w-8{
  width: 2rem;
}
.w-\[100px\]{
  width: 100px;
}
.w-\[105px\]{
  width: 105px;
}
.w-\[124px\]{
  width: 124px;
}
.w-\[132px\]{
  width: 132px;
}
.w-\[146px\]{
  width: 146px;
}
.w-\[14px\]{
  width: 14px;
}
.w-\[18px\]{
  width: 18px;
}
.w-\[200px\]{
  width: 200px;
}
.w-\[21px\]{
  width: 21px;
}
.w-\[226px\]{
  width: 226px;
}
.w-\[22px\]{
  width: 22px;
}
.w-\[26px\]{
  width: 26px;
}
.w-\[320px\]{
  width: 320px;
}
.w-\[34px\]{
  width: 34px;
}
.w-\[44px\]{
  width: 44px;
}
.w-\[50px\]{
  width: 50px;
}
.w-\[54px\]{
  width: 54px;
}
.w-\[78px\]{
  width: 78px;
}
.w-\[80\%\]{
  width: 80%;
}
.w-\[84px\]{
  width: 84px;
}
.w-\[91px\]{
  width: 91px;
}
.w-\[9px\]{
  width: 9px;
}
.w-\[calc\(100\%-34px\)\]{
  width: calc(100% - 34px);
}
.w-\[calc\(100\%-40px\)\]{
  width: calc(100% - 40px);
}
.w-full{
  width: 100%;
}
.w-max{
  width: -moz-max-content;
  width: max-content;
}
.min-w-0{
  min-width: 0px;
}
.max-w-60{
  max-width: 15rem;
}
.max-w-\[1024px\]{
  max-width: 1024px;
}
.max-w-\[80\%\]{
  max-width: 80%;
}
.max-w-full{
  max-width: 100%;
}
.flex-1{
  flex: 1 1 0%;
}
.flex-none{
  flex: none;
}
.flex-shrink{
  flex-shrink: 1;
}
.shrink-0{
  flex-shrink: 0;
}
.flex-grow{
  flex-grow: 1;
}
.grow{
  flex-grow: 1;
}
.-translate-x-1\/2{
  --tw-translate-x: -50%;
  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));
}
.-translate-x-2\/4{
  --tw-translate-x: -50%;
  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));
}
.-translate-y-1\/2{
  --tw-translate-y: -50%;
  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));
}
.-translate-y-2\/4{
  --tw-translate-y: -50%;
  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));
}
.rotate-180{
  --tw-rotate: 180deg;
  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));
}
.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));
}
@keyframes pulse{
  50%{
    opacity: .5;
  }
}
.animate-pulse{
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.cursor-pointer{
  cursor: pointer;
}
.resize{
  resize: both;
}
.grid-cols-2{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col{
  flex-direction: column;
}
.flex-wrap{
  flex-wrap: wrap;
}
.items-start{
  align-items: flex-start;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.items-baseline{
  align-items: baseline;
}
.justify-end{
  justify-content: flex-end;
}
.justify-center{
  justify-content: center;
}
.justify-between{
  justify-content: space-between;
}
.gap-1{
  gap: 0.25rem;
}
.gap-1\.5{
  gap: 0.375rem;
}
.gap-2{
  gap: 0.5rem;
}
.gap-2\.5{
  gap: 0.625rem;
}
.gap-3{
  gap: 0.75rem;
}
.gap-5{
  gap: 1.25rem;
}
.gap-7{
  gap: 1.75rem;
}
.gap-\[8px\]{
  gap: 8px;
}
.gap-x-1\.5{
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.gap-x-2\.5{
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.gap-x-4{
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.gap-y-2{
  row-gap: 0.5rem;
}
.gap-y-3{
  row-gap: 0.75rem;
}
.gap-y-6{
  row-gap: 1.5rem;
}
.space-y-0\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.125rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.125rem * var(--tw-space-y-reverse));
}
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.375rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.375rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.space-y-2\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.625rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.625rem * var(--tw-space-y-reverse));
}
.space-y-3 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-3\.5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(0.875rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.875rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.space-y-5 > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(1.25rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.25rem * var(--tw-space-y-reverse));
}
.space-y-\[14px\] > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(14px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(14px * var(--tw-space-y-reverse));
}
.space-y-\[34px\] > :not([hidden]) ~ :not([hidden]){
  --tw-space-y-reverse: 0;
  margin-top: calc(34px * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(34px * var(--tw-space-y-reverse));
}
.divide-x > :not([hidden]) ~ :not([hidden]){
  --tw-divide-x-reverse: 0;
  border-right-width: calc(1px * var(--tw-divide-x-reverse));
  border-left-width: calc(1px * calc(1 - var(--tw-divide-x-reverse)));
}
.divide-y > :not([hidden]) ~ :not([hidden]){
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}
.divide-solid > :not([hidden]) ~ :not([hidden]){
  border-style: solid;
}
.divide-\[\#FF9016\]\/15 > :not([hidden]) ~ :not([hidden]){
  border-color: rgb(255 144 22 / 0.15);
}
.divide-gray-100 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-divide-opacity, 1));
}
.divide-gray-300 > :not([hidden]) ~ :not([hidden]){
  --tw-divide-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-divide-opacity, 1));
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.overflow-x-auto{
  overflow-x: auto;
}
.overflow-y-auto{
  overflow-y: auto;
}
.whitespace-nowrap{
  white-space: nowrap;
}
.whitespace-pre-wrap{
  white-space: pre-wrap;
}
.break-words{
  overflow-wrap: break-word;
}
.rounded{
  border-radius: 0.25rem;
}
.rounded-2xl{
  border-radius: 1rem;
}
.rounded-\[10px\]{
  border-radius: 10px;
}
.rounded-\[16px\]{
  border-radius: 16px;
}
.rounded-\[4px\]{
  border-radius: 4px;
}
.rounded-\[5px\]{
  border-radius: 5px;
}
.rounded-full{
  border-radius: 9999px;
}
.rounded-lg{
  border-radius: 0.5rem;
}
.rounded-md{
  border-radius: 0.375rem;
}
.rounded-xl{
  border-radius: 0.75rem;
}
.rounded-b-2xl{
  border-bottom-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
}
.rounded-b-xl{
  border-bottom-right-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem;
}
.rounded-l-3xl{
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}
.rounded-r-3xl{
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}
.rounded-t-xl{
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
}
.rounded-bl-2xl{
  border-bottom-left-radius: 1rem;
}
.rounded-bl-xl{
  border-bottom-left-radius: 0.75rem;
}
.rounded-br-2xl{
  border-bottom-right-radius: 1rem;
}
.rounded-br-\[10px\]{
  border-bottom-right-radius: 10px;
}
.rounded-br-xl{
  border-bottom-right-radius: 0.75rem;
}
.rounded-tr-2xl{
  border-top-right-radius: 1rem;
}
.rounded-tr-xl{
  border-top-right-radius: 0.75rem;
}
.border{
  border-width: 1px;
}
.border-b{
  border-bottom-width: 1px;
}
.border-t{
  border-top-width: 1px;
}
.border-solid{
  border-style: solid;
}
.border-dashed{
  border-style: dashed;
}
.border-none{
  border-style: none;
}
.border-\[\#374151\]{
  --tw-border-opacity: 1;
  border-color: rgb(55 65 81 / var(--tw-border-opacity, 1));
}
.border-\[\#B6BAC3\]{
  --tw-border-opacity: 1;
  border-color: rgb(182 186 195 / var(--tw-border-opacity, 1));
}
.border-\[\#FF9016\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 144 22 / var(--tw-border-opacity, 1));
}
.border-\[\#d1d5db\]{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-\[\#e5e7eb\]{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-\[\#f3f4f6\]{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-\[\#ff9016\]{
  --tw-border-opacity: 1;
  border-color: rgb(255 144 22 / var(--tw-border-opacity, 1));
}
.border-gray-100{
  --tw-border-opacity: 1;
  border-color: rgb(243 244 246 / var(--tw-border-opacity, 1));
}
.border-gray-200{
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity, 1));
}
.border-gray-300{
  --tw-border-opacity: 1;
  border-color: rgb(209 213 219 / var(--tw-border-opacity, 1));
}
.border-gray-400{
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity, 1));
}
.border-new-gray-450{
  --tw-border-opacity: 1;
  border-color: rgb(139 149 161 / var(--tw-border-opacity, 1));
}
.border-red-500{
  --tw-border-opacity: 1;
  border-color: rgb(239 68 68 / var(--tw-border-opacity, 1));
}
.border-violet-500{
  --tw-border-opacity: 1;
  border-color: rgb(139 92 246 / var(--tw-border-opacity, 1));
}
.border-white{
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}
.border-white\/50{
  border-color: rgb(255 255 255 / 0.5);
}
.bg-\[\#000\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-\[\#00B777\]{
  --tw-bg-opacity: 1;
  background-color: rgb(0 183 119 / var(--tw-bg-opacity, 1));
}
.bg-\[\#18181b\]{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.bg-\[\#374151\]{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-\[\#5D5D5F\]{
  --tw-bg-opacity: 1;
  background-color: rgb(93 93 95 / var(--tw-bg-opacity, 1));
}
.bg-\[\#78d701\]{
  --tw-bg-opacity: 1;
  background-color: rgb(120 215 1 / var(--tw-bg-opacity, 1));
}
.bg-\[\#B6BAC3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(182 186 195 / var(--tw-bg-opacity, 1));
}
.bg-\[\#EC4899\]{
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF9016\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 144 22 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FF9016\]\/20{
  background-color: rgb(255 144 22 / 0.2);
}
.bg-\[\#FFF3DB\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 243 219 / var(--tw-bg-opacity, 1));
}
.bg-\[\#FFF6C5\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 246 197 / var(--tw-bg-opacity, 1));
}
.bg-\[\#b6bac3\]{
  --tw-bg-opacity: 1;
  background-color: rgb(182 186 195 / var(--tw-bg-opacity, 1));
}
.bg-\[\#f3f4f6\]{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ff3378\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 51 120 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ff9016\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 144 22 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ffe8ec\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 232 236 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ffeaf1\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 234 241 / var(--tw-bg-opacity, 1));
}
.bg-\[\#fff3db\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 243 219 / var(--tw-bg-opacity, 1));
}
.bg-\[\#ffffff\]{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-black{
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-black\/20{
  background-color: rgb(0 0 0 / 0.2);
}
.bg-black\/70{
  background-color: rgb(0 0 0 / 0.7);
}
.bg-cyan-500{
  --tw-bg-opacity: 1;
  background-color: rgb(6 182 212 / var(--tw-bg-opacity, 1));
}
.bg-cyan-600{
  --tw-bg-opacity: 1;
  background-color: rgb(8 145 178 / var(--tw-bg-opacity, 1));
}
.bg-gray-100{
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}
.bg-gray-200{
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity, 1));
}
.bg-gray-300{
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity, 1));
}
.bg-gray-400{
  --tw-bg-opacity: 1;
  background-color: rgb(156 163 175 / var(--tw-bg-opacity, 1));
}
.bg-gray-500{
  --tw-bg-opacity: 1;
  background-color: rgb(107 114 128 / var(--tw-bg-opacity, 1));
}
.bg-gray-700{
  --tw-bg-opacity: 1;
  background-color: rgb(55 65 81 / var(--tw-bg-opacity, 1));
}
.bg-pink-500{
  --tw-bg-opacity: 1;
  background-color: rgb(236 72 153 / var(--tw-bg-opacity, 1));
}
.bg-transparent{
  background-color: transparent;
}
.bg-violet-100{
  --tw-bg-opacity: 1;
  background-color: rgb(237 233 254 / var(--tw-bg-opacity, 1));
}
.bg-violet-200{
  --tw-bg-opacity: 1;
  background-color: rgb(221 214 254 / var(--tw-bg-opacity, 1));
}
.bg-violet-500{
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.bg-white{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.bg-white\/10{
  background-color: rgb(255 255 255 / 0.1);
}
.bg-white\/\[0\.06\]{
  background-color: rgb(255 255 255 / 0.06);
}
.bg-zinc-700{
  --tw-bg-opacity: 1;
  background-color: rgb(63 63 70 / var(--tw-bg-opacity, 1));
}
.bg-zinc-800{
  --tw-bg-opacity: 1;
  background-color: rgb(39 39 42 / var(--tw-bg-opacity, 1));
}
.bg-zinc-900{
  --tw-bg-opacity: 1;
  background-color: rgb(24 24 27 / var(--tw-bg-opacity, 1));
}
.bg-zinc-900\/70{
  background-color: rgb(24 24 27 / 0.7);
}
.bg-opacity-10{
  --tw-bg-opacity: 0.1;
}
.bg-opacity-15{
  --tw-bg-opacity: 0.15;
}
.bg-opacity-40{
  --tw-bg-opacity: 0.4;
}
.bg-opacity-70{
  --tw-bg-opacity: 0.7;
}
.bg-gradient-to-b{
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-transparent{
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-zinc-900{
  --tw-gradient-to: #18181b var(--tw-gradient-to-position);
}
.object-contain{
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover{
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0{
  padding: 0px;
}
.p-1{
  padding: 0.25rem;
}
.p-10{
  padding: 2.5rem;
}
.p-2\.5{
  padding: 0.625rem;
}
.p-3{
  padding: 0.75rem;
}
.p-3\.5{
  padding: 0.875rem;
}
.p-4{
  padding: 1rem;
}
.p-5{
  padding: 1.25rem;
}
.p-6{
  padding: 1.5rem;
}
.p-\[14px\]{
  padding: 14px;
}
.p-\[16px\]{
  padding: 16px;
}
.p-\[26px\]{
  padding: 26px;
}
.p-\[32px\]{
  padding: 32px;
}
.px-1{
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-1\.5{
  padding-left: 0.375rem;
  padding-right: 0.375rem;
}
.px-10{
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5{
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3{
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-3\.5{
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}
.px-4{
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5{
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-\[10px\]{
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[14px\]{
  padding-left: 14px;
  padding-right: 14px;
}
.px-\[16px\]{
  padding-left: 16px;
  padding-right: 16px;
}
.px-\[18px\]{
  padding-left: 18px;
  padding-right: 18px;
}
.px-\[20px\]{
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[22px\]{
  padding-left: 22px;
  padding-right: 22px;
}
.px-\[39px\]{
  padding-left: 39px;
  padding-right: 39px;
}
.px-\[6px\]{
  padding-left: 6px;
  padding-right: 6px;
}
.py-0\.5{
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1{
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5{
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.py-2{
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5{
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-3\.5{
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}
.py-4{
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5{
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-7{
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.py-8{
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[18px\]{
  padding-top: 18px;
  padding-bottom: 18px;
}
.py-\[26px\]{
  padding-top: 26px;
  padding-bottom: 26px;
}
.py-\[2px\]{
  padding-top: 2px;
  padding-bottom: 2px;
}
.py-\[4px\]{
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-\[6px\]{
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[90px\]{
  padding-top: 90px;
  padding-bottom: 90px;
}
.pb-10{
  padding-bottom: 2.5rem;
}
.pb-11{
  padding-bottom: 2.75rem;
}
.pb-16{
  padding-bottom: 4rem;
}
.pb-2\.5{
  padding-bottom: 0.625rem;
}
.pb-3\.5{
  padding-bottom: 0.875rem;
}
.pb-4{
  padding-bottom: 1rem;
}
.pb-5{
  padding-bottom: 1.25rem;
}
.pb-6{
  padding-bottom: 1.5rem;
}
.pb-9{
  padding-bottom: 2.25rem;
}
.pb-\[100px\]{
  padding-bottom: 100px;
}
.pb-\[166px\]{
  padding-bottom: 166px;
}
.pb-\[16px\]{
  padding-bottom: 16px;
}
.pb-\[180px\]{
  padding-bottom: 180px;
}
.pb-\[20px\]{
  padding-bottom: 20px;
}
.pb-\[23px\]{
  padding-bottom: 23px;
}
.pb-\[28px\]{
  padding-bottom: 28px;
}
.pb-\[42px\]{
  padding-bottom: 42px;
}
.pb-\[60px\]{
  padding-bottom: 60px;
}
.pb-\[88px\]{
  padding-bottom: 88px;
}
.pb-\[96px\]{
  padding-bottom: 96px;
}
.pr-5{
  padding-right: 1.25rem;
}
.pt-2\.5{
  padding-top: 0.625rem;
}
.pt-3\.5{
  padding-top: 0.875rem;
}
.pt-4{
  padding-top: 1rem;
}
.pt-5{
  padding-top: 1.25rem;
}
.pt-6{
  padding-top: 1.5rem;
}
.pt-7{
  padding-top: 1.75rem;
}
.pt-8{
  padding-top: 2rem;
}
.pt-9{
  padding-top: 2.25rem;
}
.pt-\[18px\]{
  padding-top: 18px;
}
.pt-\[26px\]{
  padding-top: 26px;
}
.pt-\[28px\]{
  padding-top: 28px;
}
.pt-\[31px\]{
  padding-top: 31px;
}
.pt-\[42px\]{
  padding-top: 42px;
}
.pt-\[60px\]{
  padding-top: 60px;
}
.pt-\[84px\]{
  padding-top: 84px;
}
.pt-\[89px\]{
  padding-top: 89px;
}
.text-center{
  text-align: center;
}
.text-right{
  text-align: right;
}
.text-2xl{
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl{
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-\[12px\]{
  font-size: 12px;
}
.text-\[14px\]{
  font-size: 14px;
}
.text-\[15px\]{
  font-size: 15px;
}
.text-\[16px\]{
  font-size: 16px;
}
.text-\[18px\]{
  font-size: 18px;
}
.text-\[20px\]{
  font-size: 20px;
}
.text-\[28px\]{
  font-size: 28px;
}
.text-\[92px\]{
  font-size: 92px;
}
.text-base{
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg{
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl{
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold{
  font-weight: 700;
}
.font-medium{
  font-weight: 500;
}
.font-normal{
  font-weight: 400;
}
.italic{
  font-style: italic;
}
.leading-5{
  line-height: 1.25rem;
}
.leading-6{
  line-height: 1.5rem;
}
.leading-8{
  line-height: 2rem;
}
.leading-\[14px\]{
  line-height: 14px;
}
.leading-\[18px\]{
  line-height: 18px;
}
.leading-\[20px\]{
  line-height: 20px;
}
.leading-\[22px\]{
  line-height: 22px;
}
.leading-\[24px\]{
  line-height: 24px;
}
.leading-\[26px\]{
  line-height: 26px;
}
.leading-\[28px\]{
  line-height: 28px;
}
.leading-\[30px\]{
  line-height: 30px;
}
.leading-\[70px\]{
  line-height: 70px;
}
.text-\[\#18181b\]{
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.text-\[\#374151\]{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-\[\#6b7280\]{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-\[\#78d701\]{
  --tw-text-opacity: 1;
  color: rgb(120 215 1 / var(--tw-text-opacity, 1));
}
.text-\[\#8B95A1\]{
  --tw-text-opacity: 1;
  color: rgb(139 149 161 / var(--tw-text-opacity, 1));
}
.text-\[\#8b95a1\]{
  --tw-text-opacity: 1;
  color: rgb(139 149 161 / var(--tw-text-opacity, 1));
}
.text-\[\#9ca3af\]{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-\[\#B6BAC3\]{
  --tw-text-opacity: 1;
  color: rgb(182 186 195 / var(--tw-text-opacity, 1));
}
.text-\[\#FF9016\]{
  --tw-text-opacity: 1;
  color: rgb(255 144 22 / var(--tw-text-opacity, 1));
}
.text-\[\#ff3378\]{
  --tw-text-opacity: 1;
  color: rgb(255 51 120 / var(--tw-text-opacity, 1));
}
.text-\[\#ff9016\]{
  --tw-text-opacity: 1;
  color: rgb(255 144 22 / var(--tw-text-opacity, 1));
}
.text-\[\#ffffff\]{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-custom-violet-100{
  --tw-text-opacity: 1;
  color: rgb(214 204 255 / var(--tw-text-opacity, 1));
}
.text-gray-300{
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity, 1));
}
.text-gray-400{
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity, 1));
}
.text-gray-500{
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity, 1));
}
.text-gray-700{
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
.text-new-gray-350{
  --tw-text-opacity: 1;
  color: rgb(182 186 195 / var(--tw-text-opacity, 1));
}
.text-new-gray-450{
  --tw-text-opacity: 1;
  color: rgb(139 149 161 / var(--tw-text-opacity, 1));
}
.text-pink-500{
  --tw-text-opacity: 1;
  color: rgb(236 72 153 / var(--tw-text-opacity, 1));
}
.text-red-500{
  --tw-text-opacity: 1;
  color: rgb(239 68 68 / var(--tw-text-opacity, 1));
}
.text-violet-500{
  --tw-text-opacity: 1;
  color: rgb(139 92 246 / var(--tw-text-opacity, 1));
}
.text-white{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}
.text-zinc-900{
  --tw-text-opacity: 1;
  color: rgb(24 24 27 / var(--tw-text-opacity, 1));
}
.text-zinc-950{
  --tw-text-opacity: 1;
  color: rgb(9 9 11 / var(--tw-text-opacity, 1));
}
.underline{
  text-decoration-line: underline;
}
.opacity-20{
  opacity: 0.2;
}
.opacity-50{
  opacity: 0.5;
}
.shadow-\[0_0_3px_0_rgba\(0\2c 0\2c 0\2c 0\.16\)\]{
  --tw-shadow: 0 0 3px 0 rgba(0,0,0,0.16);
  --tw-shadow-colored: 0 0 3px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_10px_30px_rgba\(139\2c 92\2c 246\2c 0\.15\)\]{
  --tw-shadow: 0 10px 30px rgba(139,92,246,0.15);
  --tw-shadow-colored: 0 10px 30px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_2px_10px_rgba\(107\2c 114\2c 128\2c 0\.05\)\]{
  --tw-shadow: 0 2px 10px rgba(107,114,128,0.05);
  --tw-shadow-colored: 0 2px 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_3px_12px_rgba\(107\2c 114\2c 127\2c 0\.1\)\]{
  --tw-shadow: 0 3px 12px rgba(107,114,127,0.1);
  --tw-shadow-colored: 0 3px 12px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-\[0_5px_10px_rgba\(0\2c 0\2c 0\2c 0\.06\)\]{
  --tw-shadow: 0 5px 10px rgba(0,0,0,0.06);
  --tw-shadow-colored: 0 5px 10px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-type9{
  --tw-shadow: 0 2px 20px rgba(107, 114, 118, 0.1);
  --tw-shadow-colored: 0 2px 20px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline{
  outline-style: solid;
}
.drop-shadow{
  --tw-drop-shadow: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
  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);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  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);
}
.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);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all{
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-200{
  transition-duration: 200ms;
}
.ease-in{
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}
.ease-out{
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.content-none{
  --tw-content: none;
  content: var(--tw-content);
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Pretendard-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Pretendard-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("/fonts/Pretendard-Bold.woff2") format("woff2");
}
html,
body,
header,
nav,
article,
div,
p,
span,
ul,
li,
img,
input,
label,
select,
textarea,
video {
  margin: 0;
  padding: 0;
  border: 0 none;
  outline: 0 none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
html,
body {
  font-family: "Pretendard", "Malgun Gothic", "맑은고딕", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-use-select: none;
  user-select: none;
  touch-action: pan-y;
  word-break: keep-all;
}
header,
nav,
article,
img,
input,
label,
select,
textarea,
video {
  display: block;
}
ul,
li {
  list-style: none;
}
input,
select,
textarea,
video {
  width: 100%;
}
input {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}
img {
  width: 100%;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}
textarea {
  resize: none;
}
.placeholder\:text-\[\#B6BAC3\]::-moz-placeholder{
  --tw-text-opacity: 1;
  color: rgb(182 186 195 / var(--tw-text-opacity, 1));
}
.placeholder\:text-\[\#B6BAC3\]::placeholder{
  --tw-text-opacity: 1;
  color: rgb(182 186 195 / var(--tw-text-opacity, 1));
}
.after\:absolute::after{
  content: var(--tw-content);
  position: absolute;
}
.after\:-bottom-2\.5::after{
  content: var(--tw-content);
  bottom: -0.625rem;
}
.after\:-top-5::after{
  content: var(--tw-content);
  top: -1.25rem;
}
.after\:-top-\[30px\]::after{
  content: var(--tw-content);
  top: -30px;
}
.after\:left-0::after{
  content: var(--tw-content);
  left: 0px;
}
.after\:right-0::after{
  content: var(--tw-content);
  right: 0px;
}
.after\:top-1\/2::after{
  content: var(--tw-content);
  top: 50%;
}
.after\:size-3::after{
  content: var(--tw-content);
  width: 0.75rem;
  height: 0.75rem;
}
.after\:h-2\.5::after{
  content: var(--tw-content);
  height: 0.625rem;
}
.after\:h-5::after{
  content: var(--tw-content);
  height: 1.25rem;
}
.after\:w-full::after{
  content: var(--tw-content);
  width: 100%;
}
.after\:-translate-y-1\/2::after{
  content: var(--tw-content);
  --tw-translate-y: -50%;
  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));
}
.after\:rounded-full::after{
  content: var(--tw-content);
  border-radius: 9999px;
}
.after\:bg-violet-500::after{
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(139 92 246 / var(--tw-bg-opacity, 1));
}
.after\:bg-gradient-to-b::after{
  content: var(--tw-content);
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.after\:bg-gradient-to-t::after{
  content: var(--tw-content);
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
}
.after\:from-transparent::after{
  content: var(--tw-content);
  --tw-gradient-from: transparent var(--tw-gradient-from-position);
  --tw-gradient-to: rgb(0 0 0 / 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.after\:to-white::after{
  content: var(--tw-content);
  --tw-gradient-to: #fff var(--tw-gradient-to-position);
}
.after\:content-\[\'\'\]::after{
  --tw-content: '';
  content: var(--tw-content);
}
.hover\:border-\[\#ff3378\]:hover{
  --tw-border-opacity: 1;
  border-color: rgb(255 51 120 / var(--tw-border-opacity, 1));
}
.hover\:bg-\[\#ff3378\]:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 51 120 / var(--tw-bg-opacity, 1));
}
.hover\:bg-white:hover{
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}
.hover\:text-cyan-600:hover{
  --tw-text-opacity: 1;
  color: rgb(8 145 178 / var(--tw-text-opacity, 1));
}
.hover\:text-white:hover{
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}