@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Color+Emoji&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
.poppins {
  font-family: "Poppins", sans-serif;
}

:root {
  --line-color: #e6e6e6;
}

hr {
  background-color: #e6e6e6;
}

body {
  overflow: hidden;
}

main .pr.w100p {
  height: 50vh;
  min-height: 560px;
}

main.activated {
  padding-bottom: 2rem;
}
main.activated::after {
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 20rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
}
main.activated .scroll {
  position: relative;
  height: calc(100vh - 80px);
  padding: 2rem 0 20rem 0;
  transform: translateY(80px);
}
@media (max-width: 1024px) {
  main.activated .scroll {
    height: calc(100vh - 70px);
    transform: translateY(70px);
  }
}

.switch {
  position: relative;
  display: inline-block;
  width: 54px;
  height: 30px;
}
.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}
.switch .slider {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 3rem;
  background-color: #ebeef4;
  transition: background-color 0.3s ease;
  cursor: pointer;
}
.switch .slider::before {
  bottom: 6px;
  left: 6px;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #a9b1c2;
  transition: transform 0.2s ease-in-out;
}
.switch input:checked + .slider {
  background-color: #de005b;
}
.switch input:checked + .slider::before {
  bottom: 7px;
  background-color: #ffffff;
}
.switch input:checked + .slider::before {
  transform: translateX(24px);
}

.loader {
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 16.6666666667% 50%;
  animation: l3 1s infinite linear;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#A3A3A3 90%,#0000);
}

@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
header {
  border-bottom: 1px solid #e6e6e6;
  background-color: #ffffff;
}
header .logo {
  background: url(/static/images/header_logo.svg) no-repeat left/contain;
}
header .theme-mode {
  color: rgba(0, 0, 0, 0.5);
}
header .theme-mode:has(:checked) {
  color: #de005b;
}
header .share {
  color: #002c73;
}
header .mobile-menu .hamburger {
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  transform: translateY(-50%);
  cursor: pointer;
}
header .mobile-menu .hamburger input {
  width: 0;
  height: 0;
  opacity: 0;
}
header .mobile-menu .hamburger span {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 4px;
  background: currentColor;
  opacity: 0.5;
  transition: all 0.1s ease;
  transform: translate(-50%, -50%);
}
header .mobile-menu .hamburger span:nth-of-type(1) {
  top: 25%;
}
header .mobile-menu .hamburger span:nth-of-type(3) {
  top: 75%;
}
header .mobile-menu .hamburger input:checked ~ span:nth-of-type(1) {
  top: 50%;
  left: 25%;
}
header .mobile-menu .hamburger input:checked ~ span:nth-of-type(3) {
  top: 50%;
  left: 75%;
}
header .mobile-menu .drop-menu {
  visibility: hidden;
  border: 1px solid rgba(227, 227, 227, 0.5019607843);
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
header .mobile-menu .drop-menu .share,
header .mobile-menu .drop-menu .k-startup {
  transition: background-color 0.2s ease-in-out;
}
header .mobile-menu .drop-menu .share:hover,
header .mobile-menu .drop-menu .k-startup:hover {
  background-color: #ebeef4;
}
header .mobile-menu .hamburger:has(:checked) + .drop-menu {
  visibility: visible;
}
@media (min-width: 1024px) {
  header .mobile-menu .hamburger:has(:checked) + .drop-menu {
    visibility: hidden;
  }
}

main .section {
  margin: 0 auto;
}
main .intro .intro-logo {
  margin: 0 auto;
  background: url(/static/images/logo.svg) no-repeat center/contain;
}
main .category a > div {
  border: 1px solid #e3e3e3;
  color: #000000;
  background-color: #ffffff;
  transition: all 0.2s ease-in-out;
}
main .category a > div img {
  border: 2px solid #ffffff;
  border-radius: 100%;
}
main .category a > div:hover {
  border-color: #e31565;
  color: #ffffff;
  background-color: #e31565;
}
main .chat-input {
  left: 50%;
  transform: translateX(-50%);
}
main .chat-input .input-container {
  border: 1px solid rgba(227, 227, 227, 0.5);
  background-color: #f9f9f9;
}
main .chat-input .input-container textarea {
  border: none;
  border-radius: inherit;
  font-size: 1.8rem;
  font-weight: 300;
  background-color: transparent;
  resize: none;
  outline: none;
}
main .chat-input .input-container textarea::placeholder {
  font-size: 1.8rem;
  font-weight: 300;
  color: #b5b5b5;
}
main .chat-input .input-container .btn-send {
  background-color: #002c73;
  transition: background-color 0.3s ease;
}
main .chat-input .input-container .btn-send:hover {
  background-color: #de005b;
}
main .chat-input .input-container .btn-send svg path {
  stroke: #fff;
}
main .bubble {
  padding: 1.6rem 2rem;
  font-weight: 300;
}
main .user {
  padding-left: 20%;
}
main .user .bubble {
  border-radius: 14px 0 14px 14px;
  background: rgba(0, 54, 110, 0.05);
}
main .bot ul {
  padding-left: 1rem;
  list-style: disc;
}
main .reference {
  border: 1px solid #e2e2e2;
}
main .reference .icon {
  color: #1a3d6f;
}
main .progress-bar {
  overflow: hidden;
  width: 100%;
  min-width: 200px;
  height: 8px;
  border-radius: 4px;
  background-color: rgba(227, 227, 227, 0.8);
}
main .progress-fill {
  width: 0%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #002c73, #de005b);
  transition: width 0.3s ease;
}
main .progress-text {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #848484;
}
main .progress-percent {
  font-weight: 500;
  color: #002c73;
}
main .progress-detail {
  font-style: italic;
  white-space: nowrap;
}

.dark {
  color: #ffffff;
  background-color: #202124;
}
.dark ::-webkit-scrollbar-track {
  background-color: #202124;
}
.dark ::-webkit-scrollbar-thumb {
  background-color: #55585b;
}
.dark hr {
  background-color: #3f3f45;
}
.dark main.activated::after {
  background: linear-gradient(to bottom, rgba(32, 33, 36, 0) 0%, rgba(32, 33, 36, 0) 50%, #202124 100%);
}
.dark header {
  border-color: #3f3f45;
  background-color: #202124;
}
.dark header .logo {
  background-image: url(/static/images/header_logo_dark.svg);
}
.dark header .theme-mode {
  color: #e31565;
}
.dark header .share {
  color: #ffffff;
}
.dark header .drop-menu {
  border-color: #3f3f45;
  background-color: #202124;
}
.dark header .drop-menu .share,
.dark header .drop-menu .k-startup {
  transition: background-color 0.2s ease-in-out;
}
.dark header .drop-menu .share:hover,
.dark header .drop-menu .k-startup:hover {
  background-color: #3f3f45;
}
.dark main .intro .intro-logo {
  background-image: url(/static/images/logo_dark.svg);
}
.dark main .category a > div {
  border-color: transparent;
  color: #ffffff;
  background-color: #2e3032;
}
.dark main .category a > div img {
  border: 2px solid transparent;
  border-radius: 100%;
  transition: border-color 0.2s ease-in-out;
}
.dark main .category a > div:hover {
  border-color: #e31565;
  color: #ffffff;
  background-color: #e31565;
}
.dark main .category a > div:hover img {
  border-color: #ffffff;
}
.dark main .chat-input .input-container {
  background-color: #202124;
}
.dark main .chat-input .input-container textarea {
  color: #ffffff;
}
.dark main .chat-input .input-container .btn-send {
  background-color: #55585b;
}
.dark main .chat-input .input-container .btn-send:hover {
  background-color: #de005b;
}
.dark main .chat-contents .user .bubble {
  background: rgba(0, 54, 110, 0.2);
}
.dark main .chat-contents .reference {
  border-color: transparent;
  background-color: #191a1c;
}
.dark main .chat-contents .reference .icon {
  color: #848484;
}
.dark main .progress-bar {
  background-color: rgba(85, 88, 91, 0.3);
}
.dark main .progress-fill {
  background: linear-gradient(90deg, #de005b, #e31565);
}
.dark main .progress-percent {
  color: #de005b;
}
.dark main .progress-text {
  color: #b5b5b5;
}
.dark .markdown-body table thead th {
  background: #191a1c;
}

.markdown-body hr {
  width: 100%;
  height: 1px;
  margin: 3rem 0;
}
.markdown-body h1,
.markdown-body h2,
.markdown-body h3,
.markdown-body h4,
.markdown-body h5,
.markdown-body h6 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2rem 0 1rem 0;
  font-size: 3rem;
}
.markdown-body h2 {
  font-size: 2.7rem;
}
@media (max-width: 1024px) {
  .markdown-body h2 {
    font-size: 2.5rem;
  }
}
.markdown-body h2 > img.emoji {
  max-width: 34px;
  max-height: 30px;
}
@media (max-width: 1024px) {
  .markdown-body h2 > img.emoji {
    max-width: 30px;
  }
}
.markdown-body h3 {
  font-size: 2.5rem;
}
@media (max-width: 1024px) {
  .markdown-body h3 {
    font-size: 2.3rem;
  }
}
.markdown-body h3 > img.emoji {
  max-width: 34px;
  max-height: 30px;
}
@media (max-width: 1024px) {
  .markdown-body h3 > img.emoji {
    max-width: 30px;
  }
}
.markdown-body h4 {
  font-size: 2.1rem;
}
@media (max-width: 1024px) {
  .markdown-body h4 {
    font-size: 2rem;
  }
}
.markdown-body h4 > img.emoji {
  max-width: 26px;
  max-height: 22px;
}
@media (max-width: 1024px) {
  .markdown-body h4 > img.emoji {
    max-width: 24px;
  }
}
.markdown-body h5 {
  font-size: 19px;
}
@media (max-width: 1024px) {
  .markdown-body h5 {
    font-size: 17px;
  }
}
.markdown-body h5 > img.emoji {
  max-width: 24px;
  max-height: 20px;
}
@media (max-width: 1024px) {
  .markdown-body h5 > img.emoji {
    max-width: 22px;
  }
}
.markdown-body h6 {
  font-size: 17px;
}
@media (max-width: 1024px) {
  .markdown-body h6 {
    font-size: 15px;
  }
}
.markdown-body h6 > img.emoji {
  max-width: 20px;
  max-height: 18px;
}
@media (max-width: 1024px) {
  .markdown-body h6 > img.emoji {
    max-width: 18px;
  }
}
.markdown-body section > p:not(.caption) {
  margin: 1rem 0;
}
@counter-style circled-decimal {
  .markdown-body {
    system: fixed;
    symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰" "⑱" "⑲" "⑳";
    suffix: " ";
  }
}
.markdown-body ul,
.markdown-body ol {
  margin-left: 2rem;
  font-size: 15px;
}
.markdown-body ul li,
.markdown-body ol li {
  margin-bottom: 4px;
}
.markdown-body ol {
  list-style: circled-decimal;
}
.markdown-body table {
  width: 100%;
  border: 1px solid #ddd;
  font-size: 14px;
  color: inherit;
}
.markdown-body table th,
.markdown-body table td {
  padding: 8px;
  border: 1px solid #ddd;
}
.markdown-body table thead th {
  font-size: 15px;
  background: #f3f3f3;
}
.markdown-body table + table {
  margin-top: 1rem;
}
.markdown-body .caption {
  margin: 12px 0 4px 0;
  font-size: 13px;
  font-weight: 700;
}
.markdown-body p.intro {
  display: flex;
  gap: 8px;
}
.markdown-body p.intro > img {
  max-width: 24px;
  max-height: 20px;
}
.markdown-body .weather {
  display: flex;
  gap: 8px;
}
.markdown-body .weather > img {
  max-width: 24px;
  max-height: 20px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
td,
th,
span,
div {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", "Noto Color Emoji", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

.login {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  background: url(../images/loing_bg.jpg) no-repeat center/cover;
}
.login input {
  font-size: 15px;
  background: #fff url(../images/tokken.svg) no-repeat 1rem center;
  transition: background-color 1s ease;
}
.login input::placeholder {
  color: #333;
  opacity: 0.3;
}
.login input:focus {
  outline: none;
}
.login button {
  transition: background-color 0.2s ease;
}

#app .header {
  background: url(../images/loing_bg.jpg) no-repeat left bottom/cover;
  background-attachment: fixed;
}