@import url("./font/Pretendard/pretendard.css");

.chatbot-launcher {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 2000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 20px;
    border: 0;
    border-radius: 999px;
    background: #145fe8;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(20, 95, 232, .32);
    cursor: pointer;
}

.chatbot-launcher__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    font-size: 17px;
}

.chatbot-floating-wrap {
    position: fixed;
    right: 25px;
    bottom: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.chatbot-floating-btn {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
}

.chatbot-floating-btn + .chatbot-floating-btn {
    margin-top: 12px;
}

.chatbot-fab-accordion {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 12px;
}

.chatbot-fab-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    opacity: 0;
    transform: translateX(24px) scale(.88);
    transition:
        opacity .34s cubic-bezier(.34, 1.56, .64, 1),
        transform .34s cubic-bezier(.34, 1.56, .64, 1);
    pointer-events: none;
}

.chatbot-fab-item + .chatbot-fab-item {
    margin-top: 8px;
}

.chatbot-fab-accordion.is-open .chatbot-fab-item {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.chatbot-fab-accordion.is-closing .chatbot-fab-item {
    opacity: 0;
    transform: translateX(24px) scale(.88);
    transition:
        opacity .22s cubic-bezier(.25, .46, .45, .94),
        transform .22s cubic-bezier(.25, .46, .45, .94);
}

.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(1) { transition-delay: 0ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(2) { transition-delay: 50ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(3) { transition-delay: 100ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(4) { transition-delay: 150ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(5) { transition-delay: 200ms; }

.chatbot-fab-accordion.is-closing .chatbot-fab-item:nth-child(1) { transition-delay: 100ms; }
.chatbot-fab-accordion.is-closing .chatbot-fab-item:nth-child(2) { transition-delay: 75ms; }
.chatbot-fab-accordion.is-closing .chatbot-fab-item:nth-child(3) { transition-delay: 50ms; }
.chatbot-fab-accordion.is-closing .chatbot-fab-item:nth-child(4) { transition-delay: 25ms; }
.chatbot-fab-accordion.is-closing .chatbot-fab-item:nth-child(5) { transition-delay: 0ms; }

.chatbot-fab-label {
    display: flex;
    align-items: center;
    height: 36px;
    padding: 0 16px;
    border: 1px solid #E8EEFF;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .12);
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity .28s ease,
        transform .28s ease;
}

.chatbot-fab-accordion.is-open .chatbot-fab-label {
    opacity: 1;
    transform: translateX(0);
}

.chatbot-fab-accordion.is-closing .chatbot-fab-label {
    opacity: 0;
    transform: translateX(8px);
    transition:
        opacity .18s ease,
        transform .18s ease;
}

.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(1) .chatbot-fab-label { transition-delay: 50ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(2) .chatbot-fab-label { transition-delay: 100ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(3) .chatbot-fab-label { transition-delay: 150ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(4) .chatbot-fab-label { transition-delay: 200ms; }
.chatbot-fab-accordion.is-open .chatbot-fab-item:nth-child(5) .chatbot-fab-label { transition-delay: 250ms; }

.chatbot-fab-accordion.is-closing .chatbot-fab-label {
    transition-delay: 0ms;
}

.chatbot-fab-doc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1.5px solid #D4E0FF;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, .10);
    cursor: pointer;
    transition:
        transform .28s cubic-bezier(.34, 1.64, .64, 1),
        box-shadow .22s ease,
        border-color .18s ease;
}

.chatbot-fab-doc-btn:hover,
.chatbot-fab-doc-btn:focus {
    transform: scale(1.1);
    border-color: #1B51E9;
    box-shadow: 0 10px 28px rgba(27, 81, 233, .22);
    outline: none;
}

.chatbot-fab-doc-btn:active {
    transform: scale(.93);
    transition-duration: .10s;
}

.chatbot-fab-doc-btn img {
    max-width: 22px;
    max-height: 22px;
}

.chatbot-floating-list-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 1px solid #D4E0FF;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 4px 16px rgba(15, 23, 42, .10);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease, background-color .3s ease;
}

.chatbot-floating-list-btn:hover,
.chatbot-floating-list-btn:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(15, 23, 42, .12);
    outline: none;
}

.chatbot-floating-list-btn.is-open {
    border-color: #1B51E9;
    background: #F0F4FF;
}

.chatbot-floating-list-icon {
    width: 22px;
    transition: opacity .5s ease, transform .5s ease, width .5s ease;
}

.chatbot-floating-list-icon.is-close {
    width: 0;
    opacity: 0;
    visibility: hidden;
    transform: rotate(360deg) scale(0);
}

.chatbot-floating-list-btn.is-open .chatbot-floating-list-icon.is-down {
    width: 0;
    opacity: 0;
    transform: rotate(-360deg) scale(0);
}

.chatbot-floating-list-btn.is-open .chatbot-floating-list-icon.is-close {
    width: 22px;
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg) scale(1);
    transition-delay: .3s;
}

.chatbot-floating-chat-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #1B51E9 0%, #0D1973 100%);
    box-shadow: 0 10px 32px rgba(13, 25, 115, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
}

.chatbot-floating-chat-btn:hover,
.chatbot-floating-chat-btn:focus {
    transform: scale(1.1);
    box-shadow: 0 20px 48px rgba(27, 81, 233, .52);
    outline: none;
}

.chatbot-floating-icon {
    width: 32px;
    height: 32px;
    animation: chatbotFloatingMove 3.6s ease-in-out infinite;
    transition: transform .3s ease;
}

.chatbot-floating-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    margin-right: 0;
    padding: 0 16px;
    border-radius: 10px;
    background: #555;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease, margin-right .3s ease;
}

.chatbot-floating-text p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.chatbot-floating-chat-btn:hover + .chatbot-floating-text,
.chatbot-floating-chat-btn:focus + .chatbot-floating-text,
.chatbot-floating-list-btn:hover + .chatbot-floating-text,
.chatbot-floating-list-btn:focus + .chatbot-floating-text {
    margin-right: 10px;
    opacity: 1;
    visibility: visible;
}

@keyframes chatbotFloatingMove {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

.chatbot-popup-page {
    min-width: 360px;
    min-height: 560px;
    margin: 0;
    background: #f3f6fb;
    color: #111;
    font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
    letter-spacing: -0.2px;
}

.chatbot-popup-page * {
    box-sizing: border-box;
    font-family: inherit;
    letter-spacing: inherit;
}

.chatbot-window {
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #f3f6fb;
}

.chatbot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    padding: 16px;
    border-bottom: 1px solid #E5E8EF;
    background: #F6F8FB;
    color: #111;
}

.chatbot-header__brand {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 14px;
}

.chatbot-header__icon {
    display: inline-flex;
    flex: 0 0 auto;
    width: 40px;
    height: 46px;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: chatbotSvgMove 3.6s ease-in-out infinite;
}

.chatbot-header__icon svg {
    display: block;
    width: 40px;
    height: 46px;
}

.chatbot-title {
    margin: 0;
    color: #1B51E9;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
}

.chatbot-subtitle {
    margin-bottom: 4px;
    color: #333;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.25;
    font-family: 'Montserrat', inherit;
}

.chatbot-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 4px;
}

.chatbot-icon-btn {
    width: 32px;
    min-width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #DCDFE6;
    border-radius: 50%;
    background: #fff;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
    font-family: inherit;
    transition: .3s;
}

.chatbot-icon-btn:hover,
.chatbot-icon-btn:focus {
    border-color: #1B51E9;
    color: #1B51E9;
    outline: none;
}

.chatbot-font-btn {
    width: 32px;
    border-radius: 50%;
    font-size: 11px;
}

.chatbot-home-btn {
    width: auto;
    min-width: auto;
    height: 30px;
    margin-left: 4px;
    padding: 0 10px;
    border-radius: 8px;
    color: #1B51E9;
    border-color: #1B51E9;
}

@keyframes chatbotSvgMove {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(-2.5px);
    }
    100% {
        transform: translateY(0);
    }
}

.chatbot-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 18px;
    background: #f3f6fb;
    font-size: var(--chatbot-font-size, 14px);
    font-weight: 400;
}

.chatbot-message {
    display: flex;
    margin-bottom: 14px;
}

.chatbot-message.is-user {
    justify-content: flex-end;
}

.chatbot-bubble {
    width: auto;
    max-width: 100%;
    padding: 14px 16px;
    border: 1px solid #dfe7f3;
    border-radius: 12px;
    background: #fff;
    color: #111827;
    font-size: var(--chatbot-font-size, 14px);
    line-height: 1.65;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
    white-space: normal;
}

.chatbot-message.counselor-message .chatbot-bubble {
    width: 100%;
}

.chatbot-message.is-user .chatbot-bubble {
    max-width: calc(100% - 56px);
    width: auto;
    border: 0;
    border-radius: 14px 14px 4px 14px;
    background: #1B51E9;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(27, 81, 233, .26);
}

.chatbot-message.choice-message {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 4px 0 16px;
    padding: 17px;
    border: 1px solid #e5e8ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, .06);
}

.chatbot-message.choice-message .chat-tit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.chatbot-message.choice-message .chat-tit p {
    margin: 0;
    color: #111;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
}

.chatbot-message.choice-message .chat-tit span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 20px;
    padding: 0 9px;
    border-radius: 99px;
    background: #eef3ff;
    color: #1b51e9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.chatbot-message.choice-message .chat-cont .col-list,
.chatbot-message.choice-message .chat-cont .col-list2 {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.chatbot-message.choice-message .chat-cont .col-list2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chatbot-message.choice-message .chat-cont button {
    width: 100%;
    min-height: 52px;
    padding: 12px 10px;
    border: 1px solid #e5e8ef;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: var(--chatbot-font-size, 14px);
    font-weight: 600;
    line-height: 1.35;
    cursor: pointer;
    transition: .2s ease;
}

.chatbot-message.choice-message .chat-cont button:hover,
.chatbot-message.choice-message .chat-cont button:focus {
    border-color: #1b51e9;
    background: #1b51e9;
    color: #fff;
    box-shadow: 0 3px 10px rgba(27, 81, 233, .22);
    outline: none;
}

.chatbot-message.choice-message .chat-cont .chat-main-btn {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
}

.chatbot-message.choice-message .chat-cont .chat-main-btn i {
    width: 22px;
    height: 22px;
    margin: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: .2s ease;
}

.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(1) i { background-image: url('/img/ico-chat01.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(2) i { background-image: url('/img/ico-chat02.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(3) i { background-image: url('/img/ico-chat03.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(4) i { background-image: url('/img/ico-chat04.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(5) i { background-image: url('/img/ico-chat05.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:nth-child(6) i { background-image: url('/img/ico-chat06.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(1) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(1) i { background-image: url('/img/ico-chat01-white.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(2) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(2) i { background-image: url('/img/ico-chat02-white.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(3) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(3) i { background-image: url('/img/ico-chat03-white.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(4) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(4) i { background-image: url('/img/ico-chat04-white.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(5) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(5) i { background-image: url('/img/ico-chat05-white.svg'); }
.chatbot-message.choice-message .chat-cont .chat-main-btn:hover:nth-child(6) i,
.chatbot-message.choice-message .chat-cont .chat-main-btn:focus:nth-child(6) i { background-image: url('/img/ico-chat06-white.svg'); }

.chatbot-message.choice-message .chat-cont .btween button {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
}

.chatbot-message.choice-message .chat-cont .btween button i {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    background: url('/img/ico-arrow-right03.svg') no-repeat center / cover;
    transition: .2s ease;
}

.chatbot-message.choice-message .chat-cont .btween button:hover i,
.chatbot-message.choice-message .chat-cont .btween button:focus i {
    background-image: url('/img/ico-arrow-right03-white.svg');
}

.chatbot-message.choice-message .chat-cont .down-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
    padding: 13px 16px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: #eef3ff;
    cursor: pointer;
    transition: .2s ease;
}

.chatbot-message.choice-message .chat-cont .down-btn:hover,
.chatbot-message.choice-message .chat-cont .down-btn:focus {
    border-color: #1b51e9;
    background: #d4e0ff;
    outline: none;
}

.chatbot-message.choice-message .chat-cont .down-btn .txt {
    min-width: 0;
}

.chatbot-message.choice-message .chat-cont .down-btn .tit {
    display: block;
    margin-bottom: 6px;
    color: #111;
    font-size: var(--chatbot-font-size, 14px);
    font-weight: 800;
    line-height: 1.35;
}

.chatbot-message.choice-message .chat-cont .down-btn:hover .tit,
.chatbot-message.choice-message .chat-cont .down-btn:focus .tit {
    color: #1b51e9;
}

.chatbot-message.choice-message .chat-cont .down-btn .desc {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #555;
    font-size: 13px;
    line-height: 1.45;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.chatbot-message.choice-message .chat-cont .down-btn .ico {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    margin-left: 10px;
}

.chatbot-message.choice-message .chat-cont .down-btn .ico img {
    width: 18px;
    height: 18px;
    margin-left: 4px;
}

.chatbot-message.choice-message .chat-cont .file-type {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 21px;
    padding: 0 7px;
    border-radius: 4px;
    background: #fff;
    color: #1b51e9;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.chatbot-breadcrumb {
    display: block;
    margin-bottom: 8px;
    color: #5d6d89;
    font-size: 12px;
    font-weight: 700;
}

.chatbot-image-note {
    display: block;
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px dashed #9db3d7;
    border-radius: 10px;
    background: #f7faff;
    color: #31507c;
    font-size: 13px;
}

.chatbot-image {
    display: block;
    margin: 12px 0 2px;
}

.chatbot-image__zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.chatbot-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 1px solid #d8e3f4;
    border-radius: 8px;
    background: #fff;
}

.chatbot-image__zoom:hover img,
.chatbot-image__zoom:focus img {
    border-color: #145fe8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(20, 95, 232, .14);
}

.chatbot-image-preview {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(9, 20, 42, .72);
}

.chatbot-image-preview__dialog {
    position: relative;
    max-width: min(960px, 96vw);
    max-height: 92vh;
}

.chatbot-image-preview__dialog img {
    display: block;
    max-width: 100%;
    max-height: 92vh;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.chatbot-image-preview__close {
    position: absolute;
    top: -14px;
    right: -14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #17233c;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .24);
}

.chatbot-choices {
    display: grid;
    gap: 10px;
    margin: 0 0 16px 0;
}

.chatbot-choice-panel {
    margin: 4px 0 16px;
    padding: 18px;
    border: 1px solid #dfe7f3;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.chatbot-choice-panel__title {
    margin: 0 0 14px;
    color: #111;
    font-size: 16px;
    font-weight: 900;
}

.chatbot-choice-panel .chatbot-choices {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.chatbot-choice {
    width: 100%;
    min-height: 72px;
    padding: 13px 12px;
    border: 1px solid #d8e1f0;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: var(--chatbot-font-size, 14px);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.chatbot-choice:hover,
.chatbot-choice:focus {
    border-color: #1B51E9;
    outline: none;
    box-shadow: 0 8px 20px rgba(27, 81, 233, .12);
    transform: translateY(-1px);
}

.chatbot-choice__icon {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    color: #111;
}

.chatbot-choice__icon svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.chatbot-choice__meta {
    display: block;
    margin-top: 3px;
    color: #637797;
    font-size: 12px;
    font-weight: 500;
}

.chatbot-message.choice-message .chat-cont .col-list {
    grid-template-columns: 1fr;
}

.chatbot-message.choice-message .chat-cont .col-list2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.chatbot-message.choice-message .chatbot-choices {
    margin: 0;
}

.chatbot-message.choice-message.is-faq-list .chatbot-choice {
    flex-direction: row;
}

.chatbot-message.choice-message.is-download-list .chatbot-choices {
    display: grid;
    grid-template-columns: 1fr;
}

.chatbot-message.choice-message.is-download-list .chatbot-choice-panel__header {
    margin-bottom: 12px;
}

.chatbot-message.choice-message.is-followup-list {
    padding-top: 16px;
}

.chatbot-footer {
    padding: 12px 14px;
    border-top: 1px solid #e2e8f3;
    background: #f3f6fb;
}

.chatbot-back-btn {
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 10px;
    background: #edf3fb;
    color: #1B51E9;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.chatbot-back-btn:disabled {
    color: #9aa8bd;
    cursor: default;
    opacity: .58;
}

.chatbot-back-btn:not(:disabled):hover,
.chatbot-back-btn:not(:disabled):focus {
    background: #e4edff;
    outline: none;
}

.chatbot-empty {
    color: #667792;
}

@media (max-width: 640px) {
    .chatbot-launcher {
        right: 16px;
        bottom: 16px;
    }

    .chatbot-floating-wrap {
        right: 10px;
        bottom: 20px;
    }

    .chatbot-floating-list-btn,
    .chatbot-floating-chat-btn {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .chatbot-fab-doc-btn {
        width: 44px;
        height: 44px;
    }

    .chatbot-floating-icon {
        width: 24px;
        height: 24px;
    }

    .chatbot-header {
        padding: 16px;
    }

    .chatbot-title {
        font-size: 18px;
    }

    .chatbot-header__icon {
        width: 40px;
        height: 46px;
    }

    .chatbot-choice-panel .chatbot-choices {
        grid-template-columns: 1fr;
    }
}
