@charset "UTF-8";
/* @font-face {
    font-family: "Pretendard";
    font-weight: 900;
    font-display: swap;
    src: local("Pretendard Black"), url("../fonts/Pretendard-Black.woff2") format("woff2"), url("../fonts/Pretendard-Black.woff") format("woff");
} */
@font-face {
  font-family: "Pretendard";
  font-weight: 800;
  font-display: swap;
  src: local("Pretendard ExtraBold"), url("../fonts/Pretendard-ExtraBold.woff2") format("woff2"), url("../fonts/Pretendard-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 700;
  font-display: swap;
  src: local("Pretendard Bold"), url("../fonts/Pretendard-Bold.woff2") format("woff2"), url("../fonts/Pretendard-Bold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 600;
  font-display: swap;
  src: local("Pretendard SemiBold"), url("../fonts/Pretendard-SemiBold.woff2") format("woff2"), url("../fonts/Pretendard-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 500;
  font-display: swap;
  src: local("Pretendard Medium"), url("../fonts/Pretendard-Medium.woff2") format("woff2"), url("../fonts/Pretendard-Medium.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 400;
  font-display: swap;
  src: local("Pretendard Regular"), url("../fonts/Pretendard-Regular.woff2") format("woff2"), url("../fonts/Pretendard-Regular.woff") format("woff");
}
/* @font-face {
  font-family: "Pretendard";
  font-weight: 300;
  font-display: swap;
  src: local("Pretendard Light"), url("../fonts/Pretendard-Light.woff2") format("woff2"), url("../fonts/Pretendard-Light.woff") format("woff");
} */
/* @font-face {
  font-family: "Pretendard";
  font-weight: 200;
  font-display: swap;
  src: local("Pretendard ExtraLight"), url("../fonts/Pretendard-ExtraLight.woff2") format("woff2"), url("../fonts/Pretendard-ExtraLight.woff") format("woff");
}
@font-face {
  font-family: "Pretendard";
  font-weight: 100;
  font-display: swap;
  src: local("Pretendard Thin"), url("../fonts/Pretendard-Thin.woff2") format("woff2"), url("../fonts/Pretendard-Thin.woff") format("woff");
} */
:root,
[data-bs-theme=light] {
  --kc-color-bg-header: #1f3674;
  --kc-color-bg-main: #ffffff;
  --kc-color-bg-chat: #edf0fc;
  --kc-color-bg-chat-client: #3155b6;
  --kc-color-bg-footer: #ffffff;
  --kc-color-text-header: #ffffff;
  --kc-color-text-header-em: #ffdd5c;
  --kc-color-border-header: #fcc700;
  --kc-color-border-footer-top: #c0c0c0;
  --kc-color-text-header-btn: #BCC3D6;
  --kc-color-info-hr: #D9DFF2;
  --kc-color-item-primary: #5F4DD0;
  --kc-color-item-second: #C34FDC;
  --kc-color-item-third: #4A6BC4;
  --kc-color-item-fourth: #39A9DF;
  --kc-color-primary: #0085FF;
  --kc-color-secondary : #235B9F;
  --kc-color-input: #A1A4A9;
  --kc-color-white: #ffffff;
  --kc-color-hr: #000000;
  --kc-color-light: #F8F8F8;
  --kc-color-point-1: #FFC000;
  --kc-color-point-2: #FD403A;
  --kc-color-bg-link: #d3dcf9;
  --kc-color-text-link: #1f3674;
    
  --kc-line-height-lg: 1.375;
  --kc-line-height-sm: 1.8334;
  --kc-font-sm: 0.875rem;
}

[data-bs-theme=dark] {
  color-scheme: dark;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  min-height: 100svh;
  scroll-behavior: smooth;
}

html * {
    -webkit-font-smoothing: antialiased;
}

body {
    /*display:flex;
    flex-direction: column;*/
    width: 100%;
    min-width: 300px;
    height: 100vh;
    height: -webkit-fill-available;
    height: 100svh;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;;
    font-weight: 400;
    overflow: hidden;
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(1rem + 6px);
    letter-spacing: -.01em;
    color: #000000;
    background: #ffffff;
}

@media (max-width: 690px) {
    body{
        font-size: 16px;
        font-size: 0.875rem;
        line-height: calc(0.875rem + 6px);
        letter-spacing: -.01em;
    }
}

.ck-body {
    display:flex;
    flex-direction: column;
    width: 100%;
    height: 100svh;
}

a {
  color: inherit;
  text-decoration: none;
}

a:active, a:hover {
  text-decoration: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: unset;
}

h1, .kc-h1{
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: calc(1.5rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h1, .kc-h1{
        font-size: 16px;
        font-size: 1.0rem;
        line-height: calc(1.0rem + 6px);
        letter-spacing: -.01em;
    }
}

h2, .kc-h2{
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: calc(1.25rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h2, .kc-h2{
        font-size: 16px;
        font-size: 1.0rem;
        line-height: calc(1.0em + 6px);
        letter-spacing: -.01em;
    }
}

h3, .kc-h3{
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc(1.125rem + 12px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h3, .kc-h3{
        font-size: 16px;
        font-size: 1rem;
        line-height: calc(1rem + 12px);
        letter-spacing: -.01em;
    }
}

h4, .kc-h4{
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(1rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h4, .kc-h4{
        font-size: 16px;
        font-size: 0.875rem;
        line-height: calc(0.875rem + 6px);
        letter-spacing: -.01em;
    }
}

.kc-h3-normal{
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: calc(1.125rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    .kc-h3-normal{
        font-size: 16px;
        font-size: 1rem;
        line-height: calc(1rem + 6px);
        letter-spacing: -.01em;
    }
}

.kc-h4-bold{
    font-family: 'Pretendard';
    font-weight: 600;
    font-size: 16px;
    font-size: 1rem;
    line-height: calc(1rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    .kc-h4-bold{
        font-size: 16px;
        font-size: 0.875rem;
        line-height: calc(0.875rem + 6px);
        letter-spacing: -.01em;
    }
}

h5, .kc-h5{
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: calc(0.875rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h5, .kc-h5{
        font-weight: 400;
        font-size: 16px;
        font-size: 0.7rem;
        line-height: calc(0.7rem + 6px);
        letter-spacing: -.01em;
    }
}

h6, .kc-h6{
    font-family: 'Pretendard';
    font-weight: 400;
    font-size: 12px;
    font-size: 0.7rem;
    line-height: calc(0.7rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    h6, .kc-h6{
        font-weight: 400;
        font-size: 12px;
        font-size: 0.575rem;
        line-height: calc(0.575rem + 6px);
        letter-spacing: -.01em;
    }
}

.kc-text-em {
    color: var(--kc-color-text-header-em);
}

.kc-text-phone {
    width: 20px;
    height: 20px;
    color: var(--kc-color-bg-header);
}

.kc-bg-em {
    background-color: var(--kc-color-text-header-em);
}

header {
    flex: 0 0 0;
    background-color: var(--kc-color-bg-header);
    color: var(--kc-color-white);
    border-bottom: 4px solid var(--kc-color-border-header);
}

main.index{ margin-bottom:0px !important; }
.btn-margin-bottom{margin-bottom:20px;}

main {
    flex: 1 0 0;
    padding: 40px 34px 0 34px;
    width: 100%;
    overflow-y: scroll;
    background-color: var(--kc-color-bg-main);
    -webkit-overflow-scrolling: touch;
    /* margin-bottom:84px; */
}

@media (max-width: 690px) {
    main {
        padding: 24px 16px 0 16px;
    }
}



/* 채팅 관련 css */
main .btn {
    border: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--kc-color-white) !important;
    background-color: var(--kc-color-item-primary);
    padding: 5px 16px !important;
}
@media (max-width: 690px) {
    main .btn {
        font-size: 16px !important;
        padding: 6px 16px !important;
    }
}

main .btn-brown,
main .btn-brown.line,
main .btn-brown.tline,
main .btn-brown.lg {
    background-color: var(--kc-color-item-second) !important;
}
main .btn-brown.g-line {
    background-color: var(--kc-color-secondary) !important;
}

main .message {
    margin: 0 !important;
    padding: 0 !important;
}

main .bot {
    display: flex !important;
    justify-content: start !important;
    align-items: center !important;
    flex-wrap: wrap !important;
}

main .bot:before {
    content: "" !important;
    order: 3 !important;
    flex-basis: 100% !important;
    height: 0px !important;
}

main .bot > img {
    order: 1 !important;
    flex: 0 1 0 !important;
    width: 52px !important;
    border-radius: 26px !important;
}
@media (max-width: 690px) {
    main .bot > img {
        width: 40px !important;
        border-radius: 20px !important;
    }
}

main .bot > .name {
    order: 2 !important;
    flex: 1 0 1 !important;
    padding-left: 8px !important;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: var(--kc-color-black) !important;
}
@media (max-width: 690px) {
    main .bot > .name {
        font-size: 18px !important;
    }
}

main .bot .bubble {
    order: 4 !important;
    flex: 1 0 2 !important;
    margin: 10px 60px 0 0px !important;
}
@media (max-width: 690px) {
    main .bot .bubble {
        margin: 10px 24px 0 0px !important;
    }
}

main .bot .bubble .answer{
    padding: 14px !important;
    background-color: var(--kc-color-bg-chat) !important;
    border-radius: 0px 20px 20px 20px !important;
}
@media (max-width: 690px) {
    main .bot .bubble .answer{
        padding: 16px !important;
    }
}

main .bot .bubble .answer .box.title {
    display: block !important;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 1.6 !important;
    color: var(--kc-color-black) !important;
    text-align: center !important;
    margin-bottom: 8px !important;
    padding-bottom: 8px !important;

    border-bottom: 1px solid var(--kc-color-info-hr);
}
@media (max-width: 690px) {
    main .bot .bubble .answer .box.title {
        font-size: 16px !important;
        margin-bottom: 10px !important;
    }
}

main .bot .bubble .answer .box.subtitle {
    display: block !important;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--kc-color-black) !important;
    position: relative !important;
    border-radius: 10px !important;
    padding: 6px 16px 6px 48px !important;
    margin: 16px 0px 4px 0px !important;
    background-color: #ffdd5c !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 32 32" fill="rgb(255,107,82)"><path d="M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: 16px 3px !important;
    background-size: 64px !important;
}
main .bot .bubble .answer .box.subtitle::before {
    position: absolute !important;
    bottom: -14px !important;
    left: 15px !important;
    content: '' !important;
    border-top: 15px solid #ffdd5c !important;
    border-left: 15px solid transparent !important;
}
@media (max-width: 690px) {
    main .bot .bubble .answer .box.subtitle {
        font-size: 16px !important;
        padding: 5px 8px 5px 32px !important;
        background-position: 8px 6px !important;
        background-size: 48px !important;
        margin: 10px 0px 3px 0px !important;
    }
}

main .bot .bubble .answer .box.text {
    display: block;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    color: var(--kc-color-black) !important;
    padding: 8px 8px 8px 8px !important;
}

@media (max-width: 690px) {
    main .bot .bubble .answer .box.text {
        font-size: 16px !important;
        padding: 8px 8px 8px 8px !important;
    }
}
main .bot .bubble .answer .box.text > div > div {
    white-space: pre-line;
}
main .bot .bubble .answer .box.text > div > div:has(.accordion) {
    white-space: unset;
}

main .bot .bubble .answer .box.text:has(.btn) {
    text-align: center;
}

main .bot .bubble .answer .box.buttons {
    display: block !important;
    color: var(--kc-color-black) !important;
    /* margin-top: 16px !important; */
    text-align: center !important;
}
@media (max-width: 690px) {
    main .bot .bubble .answer .box.buttons {
        font-size: 16px !important;
        margin-top: 10px !important;
    }
}

main .bot .bubble .time {
    display: inline-block !important;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    
    font-size: var(--kc-font-sm) !important;
    align-self: end !important;
    margin: 8px 4px 0 0 !important;
    
    width: 100% !important;
    text-align: end !important;
}
@media (max-width: 690px) {
    main .bot .bubble .time{
        font-size: 16px !important;
    }
}

main .bot .bubble .answer .btn-gline-group {
    display: flex !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
    padding: 8px 8px !important;
    margin-bottom: 0 !important;
    list-style: none !important;
    gap: 8px;
    /*justify-content: center;*/
}

main .bot .bubble .btn-gline-group .btn {
    border-radius: 25px !important;
    cursor: pointer !important;
    background-color: var(--kc-color-item-primary) !important;
}

main .bot .bubble .btn-gline-group .btn:not(.g-line) {
    background-color: var(--kc-color-item-second) !important;
}

main .bot .bubble .answer .box .media {
    max-width: 100% !important;
    width: inherit !important;
    margin: auto !important;
    display: flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
}

main .kc-chatbot-cert .kc-agree-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
}

main .user{
    margin: 0 10px !important;
    align-self: end !important;
}

main .user .bubble {
    display: flex !important;
    flex-direction: row-reverse !important;
    gap: 8px !important;
}

main .user .bubble .answer{
    display: inline-block;
    padding: 8px 22px;
    background-color: var(--kc-color-bg-chat-client);
    color: var(--kc-color-white);
    border-radius: 20px 0px 20px 20px;
}
main .user .bubble .answer .box.text {
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: var(--kc-color-white);
}
@media (max-width: 690px) {
    main .user .bubble .answer .box.text {
        font-weight: 500 !important;
        font-size: 16px !important;
    }
}

main .user .time{
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    
    font-size: var(--kc-font-sm) !important;
    align-self: end !important;
}
@media (max-width: 690px) {
    main .user .time{
        font-size: 16px !important;
    }
}


/* 채팅과 무관한 css */

main .kc-chatbot-cert{
    margin: 0 40px;
}

main .kc-bg-auth{
    width: 100%;
    padding: 40px 40px 0px 40px;
    background: #2DB2FF;
    border-radius: 20px;
    box-sizing: border-box;
}

main .kc-bg-auth img {
    max-width: 100%;
}

main .kc-text-exclamation {
    color: var(--kc-color-point-1);
}

main .kc-balloon {
    position: relative;
    border-radius: 10px;
    padding: 16px;
    background-color: #ffdd5c;
}

main .kc-balloon::before {
    position: absolute;
    bottom: -14px;
    left: 15px;
    content: '';
    border-top: 15px solid #ffdd5c;
    border-left: 15px solid transparent;
}

main .kc-balloon > div:first-child > .bi{
    color: #ff6a52;
}

main .kc-balloon-text {
    padding: 8px 16px 8px 40px;
}

.kc-icon{
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 48px;
    font-size: 3rem;
    line-height: calc(3rem + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 690px) {
    .kc-icon{
        font-size: 42px;
        font-size: 2.625rem;
        line-height: calc(2.625rem + 6px);
        letter-spacing: -.01em;
    }
}

footer {
    flex: 0 1 0;
    width: 100%;
    -webkit-box-shadow: 0px -3px 2px -2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px -3px 2px -2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px -3px 2px -2px rgba(0, 0, 0, 0.05);
    /*position: fixed;
    bottom: 0; */
    width: 100%;
    background: #fff;
    /*z-index:99999;*/
}

footer .kc-input {
    padding: 10px 20px;
    background-color: var(--kc-color-bg-chat);
    color: var(--kc-color-input);
    resize: none;
    border-radius: 10px;
}

footer .kc-input:focus {
    box-shadow: unset;
}

.kc-circle-shadow{
    background-color: #ffffff;
    border-radius: 50%;
    -webkit-box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.05);
}

.kc-circle-shadow > img {
    width: 36px;
    height: 36px;
}

.kc-btn {
    border: none;
    background: transparent;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25rem;
}

.kc-btn > img {
    width:28px;
}

.kc-btn-header {
    border: none;
    background: transparent;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px;
    width: 36px;
    height: 36px;
    color: #ffffff;
    opacity: 0.8;
}
.kc-btn-header > *:first-child {
    display: inline;
}
.kc-btn-header > *:nth-child(2) {
    display: none;
}

.kc-btn-header:hover {
    opacity: 1;
}

.kc-btn-header.disabled > *:first-child {
    display: none;
}
.kc-btn-header.disabled > *:nth-child(2) {
    display: inline;
}


.kc-btn-send {
    width: 92px;
    height: 38px;
    background-color: var(--kc-color-item-third);
    color: var(--kc-color-white);
    border-radius: 10px;
    -webkit-box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 4px 2px rgba(0, 0, 0, 0.15);
}

.kc-btn-next {
    min-width: 220px;
    min-height: 60px;
    padding: 1rem;
    background-color: var(--kc-color-primary);
    color: var(--kc-color-white);
    font-weight: 600;
    border-radius: 30px;
}

.kc-btn-prev{
    min-width: 220px;
    min-height: 60px;
    padding: 1rem;
    border: 1px solid var(--kc-color-info-hr);
    background-color: var(--kc-color-white);
    font-weight: 600;
    border-radius: 30px;
}

.kc-btn-confirm {
    min-width: 140px;
    min-height: 60px;
    padding: 1rem;
    background-color: var(--kc-color-primary);
    color: var(--kc-color-white);
    border-radius: 8px;
}

.kc-btn-cancel {
    padding: 1rem;
    border: 1px solid var(--kc-color-info-hr);
    background-color: var(--kc-color-white);
    border-radius: 8px;
}

.kc-btn-cert {
    min-width: 220px;
    min-height: 60px;
    padding: 1rem;
    background-color: var(--kc-color-white);
    color: var(--kc-color-primary);
    font-weight: 600;
    border-radius: 30px;
}

@media (max-width: 690px) {
    .kc-btn-next, .kc-btn-prev {
        min-height: 50px;
        min-width: 140px;
        padding: 0 2rem;
    }
    .kc-btn-send {
        width: 50px;
        height: 46px;
    }
}

.kc-title-round {
    padding: 10px 22px;
    border-radius: 25px;
    border: none;
    color: var(--kc-color-text-link);
    background-color: var(--kc-color-bg-link);
    width: 100%;
}

.kc-img-fluid {
    width:inherit !important;
    max-width:100% !important;
}


.kc-text-light{
    color: var(--kc-color-text-header-btn);
}

.kc-text-primary{
    color: var(--kc-color-primary);
}

.kc-bg-primary{
    background-color: var(--kc-color-primary);
    color: var(--kc-color-white);
}

.kc-text-secondary {
    color: var(--kc-color-secondary);
}

.kc-bg-secondary{
    background-color: var(--kc-color-secondary);
    color: var(--kc-color-white);
}

.kc-item-bg-primary{
    background-color: var(--kc-color-item-primary);
    color: var(--kc-color-white);
}

.kc-text-sm {
    font-size: var(--kc-font-sm) !important;
}

.kc-item-bg-second{
    background-color: var(--kc-color-item-second);
    color: var(--kc-color-white);
}

.kc-bg-third{
    background-color: var(--kc-color-item-third);
    color: var(--kc-color-white);
}

.kc-bg-light {
    background-color: var(--kc-color-light);
}

.kc-text-point-red{
    color: var(--kc-color-point-2);
    font-weight: 900;
}

.btn:hover,
.btn:active,
.kc-btn:hover, 
.kc-btn:active,
.kc-chatbot-item:hover,
.accordion-button:hover {
    background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
}

.kc-bg-white{
    background-color: var(--kc-color-white);
}

.kc-chatbot-hr {
    display: inline-block;
    width: 100%;
    background-color: var(--kc-color-info-hr);
    height: 1px;
    margin: 0px 0;
}

.kc-hr {
    display: inline-block;
    width: 100%;
    background-color: var(--kc-color-hr);
    height: 1px;
    margin: 20px 0;
}

.kc-table-border{
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.kc-table-border > div:not(:last-child){
    border-right: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.kc-table-border > div > div > div:not(:last-child){
    border-bottom: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.kc-table-border > div > div > div:first-child{
    background-color: var(--kc-color-light);
}

.kc-table-border > div > div > div{
    padding: 0.5rem;
    text-align: center;
}

@media (max-width: 690px) {
    .kc-table-border > div {
        --bs-border-width : 0;
        /* border: none; */
    }
    .kc-table-border > div > div > div{
        padding: 0.25rem;
        text-align: start;
    }
    .kc-table-border > div > div > div:first-child{
        background-color: unset;
    }
}

.kc-label {
    column-gap: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 6px;
}

@media (max-width: 690px) {
    .kc-label {
        margin-top: 0.5rem;
    }
}

.radio_box input[type=radio] {
    /* height: 100%; */
    left: 0;
    /* position: absolute; */
    display: none;
    top: 0;
    /* width: 100%; */
}

.radio_box input[type=radio] + label {
    align-items: center;
    color: #333;
    display: inline-flex;
    min-height: 26px;
    padding-left: 28px;
    position: relative;
    cursor: pointer;
}

.radio_box input[type=radio] + label::before {
    border: 1px solid #DDD;
    border-radius: 50%;
    box-sizing: border-box;
    content: '';
    height: 18px;
    left: 0;
    position: absolute;
    top: 4px;
    width: 18px;
}

.radio_box input[type=radio]:checked + label::before {
    background: var(--kc-color-primary);
    border: 4px solid #fff;
    outline: 1px solid var(--kc-color-primary);
}

/* bootstrap 관련 */
.accordion{
    --bs-accordion-border-radius : 0;
    --bs-accordion-inner-border-radius : 0;
    --bs-accordion-border-radius: 0;

    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item .accordion-header {
    position: relative !important;
    cursor: pointer !important;
    padding: 6px 16px !important;
    /*color: white !important;*/
    border-radius: 10px !important;
}

.accordion-item .accordion-header .header-title {
    padding-right: 24px;
}

.accordion-item .accordion-header .caret {
    position: absolute !important;
    right: 10px !important;
    top: 10px !important;
    width: 32px !important;
    height: 22px !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 16 16" fill="rgb(21,25,29)"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: center;
    transition: all 0.3s ease;
    pointer-events: none;
}
@media (max-width: 690px) {
    .accordion-item .accordion-header {
        padding: 5px 14px !important;
    }

    .accordion-item .accordion-header .caret {
        right: 5px !important;
        top: 6px !important;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="rgb(21,25,29)"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708"/></svg>') !important;
    }
}

.accordion-item .accordion-header.active {
    border-radius: 10px 10px 0px 0px !important;
}

.accordion-item .accordion-header.active .caret {
    transform: rotate(180deg) !important;
    transform-origin: left 50% bottom 50% !important;
}

.accordion-item .accordion-content {
    position: relative;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0px 16px !important;
    overflow: hidden !important;
    height: 0px;
    max-height: 0px;
    /* transition: all 0.3s ease-in-out; */
}
.accordion-item .accordion-header.active+.accordion-content {
    padding: 4px 16px 16px 16px !important;
    height: fit-content !important;
}

.accordion-content > p {
    display: inline-block !important;
    font-family: "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 0px !important;

}
@media (max-width: 690px) {
    .accordion-content,
    .accordion-content > p {
        font-size: 12px !important;
    }
}

.accordion-content > img{
    width: 100% !important;
}

.accordion-item{
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5L8 11L14 5'/%3e%3c/svg%3e");
    border: 0;
    -webkit-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.15);
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, 0.15);
    border-radius: 10px !important;
}


.accordion-item:nth-child(odd) .accordion-header{
    /* background-color: var(--kc-color-item-third); */
    border: 1px solid var(--kc-color-item-third);
}

.accordion-item:nth-child(even) .accordion-header{
    /* background-color: var(--kc-color-item-fourth); */
    border: 1px solid var(--kc-color-item-fourth);
}


.form-control {
    border-radius: 0.875rem;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.7;
}

.MuiAutocomplete-input{
    padding: 10px 20px;
    background-color: var(--kc-color-bg-chat);
    color: var(--kc-color-input);
    resize: none;
    border-radius: 10px;
}

.MuiAutocomplete-input:focus {
    box-shadow: unset;
    outline: none;
}

textarea.MuiAutocomplete-input {
    min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))
}

.MuiAutocomplete-input {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out
}

.kc-cert-title {
    font-family: 'Pretendard';
    font-weight: 700;
    font-size: 30px;
    line-height: calc(30px + 6px);
    letter-spacing: -.01em;
}

@media (max-width: 767px) {
    .kc-cert-title {
        font-size: 24px;
        line-height: calc(24px + 6px);
    }
}

@media (max-width: 767px) {
    .accordion-body > img, .modal-body > img {
        width: -webkit-fill-available;
    }
}