body {
    background-color: #F2F4F6;
}

#floating_banner {
    display: none;
}

.chat_container {
    padding: 16px 0 50px;
    height: calc(100vh - 136px);
}

.chat_container .chat_title_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.chat_container .chat_title_area .icon_wrap {
    display: flex;
    width: 36px;
}

.chat_container .chat_title_area .icon_wrap.icon {
    aspect-ratio: 1/1;
    width: 25px;
}

.chat_container .chat_title_area .title {
    font-size: 24px;
    font-weight: 700;
    color: var(--main-color);
}

.chat_container .chat_sect {
    background-color: #FFF;
    height: calc(100% - 68px);
    box-shadow: 0px 3.76px 3.76px 0px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.chat_container .search_btn_box {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.chat_container .btn_default.select {
    font-size: 16px;
    padding: 12px;
    border-radius: 50px;
}

.chat_wrap {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.chat_wrap .chat_main_area {
    flex-grow: 1;
    overflow: auto;
    padding: 24px 24px 20px;
}

.chat_main_area .chat_bubble_wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.chat_main_area .chat_bubble_wrap:not(:last-of-type),
.chat_wrap .chat_car_wrap:not(:last-of-type) {
    margin-bottom: 20px;
}

.chat_bubble_wrap .bubble_box {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    flex-grow: 1;
    width: 100%;
}

.chat_bubble_wrap.right .bubble_box {
    flex-direction: row-reverse;
    /* width: 100%; */
}

.chat_bubble_wrap .chat_bubble {
    padding: 10px 14px;
    font-size: 16px;
    border-radius: 12px;
    background-color: #F8F8F8;
    max-width: calc(100% - 40px);
}

.chat_bubble_wrap.right .chat_bubble {
    background-color: var(--main-color);
    color: #fff;
}

.chat_bubble_wrap .chat_bubble pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.chat_bubble_wrap .select_box {
    background-color: #F8F8F8;
    border: 1px solid #E1E1E1;
    border-radius: 12px;
    overflow: hidden;
    width: 274px;
}

.chat_bubble_wrap .select_box .btn_select {
    display: block;
    width: 100%;
    text-align: left;
    background-color: transparent;
    padding: 10px 14px;
    color: var(--main-color);
    font-size: 16px;
    font-weight: 500;
}

.chat_bubble_wrap .select_box .btn_select:not(:last-child) {
    border-bottom: 1px solid #E1E1E1;
}

.chat_wrap .chat_car_wrap {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.chat_car_wrap .car_list {
    min-width: 900px;
    gap: 8px;
    flex-direction: row;
}

.chat_car_wrap .car_list>li {
    box-shadow: none;
    width: calc((100% - 24px)/4);
    flex-direction: column;
    align-items: initial;
}

.chat_car_wrap .car_list .img_wrap {
    width: 100%;
}

.chat_car_wrap .car_list .car_desc {
    border: 1px solid #E1E1E1;
    border-top: none;
    width: 100%;
    flex-grow: 1;
    flex-direction: column;
    padding: 12px;
}

.chat_car_wrap .car_list .car_text_wrap {
    font-size: 14px;
}

.chat_car_wrap .car_list .car_text_wrap>*:not(:last-child) {
    margin-bottom: 2px;
}

.chat_car_wrap .car_list .title,
.chat_car_wrap .car_list .price {
    font-size: 15px;
}

.chat_car_wrap .car_list .info_box *:not(:last-child)::after {
    height: 10px;
    border-color: #E1E1E1;
}

.chat_car_wrap .car_list .info_box .desc {
    color: #5E5E5E;
}

.chat_car_wrap .car_list .detail_btn {
    writing-mode: initial;
    position: static;
    letter-spacing: initial;
    height: fit-content;
}

.chat_car_wrap .car_list .detail_btn::after {
    display: block;
}

.chat_wrap .chat_input_area {
    background-color: #F8F8F8;
    padding: 16px 20px;
}

.chat_input_area .quick_search_area {
    margin-bottom: 12px;
}

.quick_search_area .title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
    color: var(--main-color);
}

.quick_search_area .btn_default.select {
    color: #5E5E5E;
    border-color: #5E5E5E;
}

.chat_input_area input[name='chat'] {
    background-color: #fff;
    border-radius: 50px;
    padding: 16px 0;
}

.chat_input_area .btn_send {
    border-radius: 50px;
    width: 36px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 7px;
    top: 8px;
}

.chat_input_area .btn_send .icon_wrap {
    display: flex;
    width: 25px;
    aspect-ratio: 1/1;
}

.chat_wrap .no_img_box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E1E1E1;
}

.chat_wrap .no_img_box>img {
    width: 90px;
    height: 90px;
}

@media screen and (max-width:1023px) {
    .chat_container {
        padding: 16px 0;
        height: calc(100vh - 72px);
    }

    .chat_container .chat_title_area .icon_wrap {
        width: 30px;
    }

    .chat_container .chat_title_area .icon_wrap.icon {
        width: 20px;
    }

    .chat_container .chat_title_area .title {
        font-size: 18px;
    }

    .chat_container .chat_sect {
        height: calc(100% - 61px);
    }

    .chat_container .btn_default.select {
        font-size: 14px;
        padding: 8px 10px;
    }

}

@media screen and (max-width:767px) {
    .chat_container {
        padding: 16px 8px;
    }
}


.popup_car_detail .popup_center {
    height: calc(100% - 100px);
}

.popup_car_detail .popup_center .popup_body {
    height: calc(100% - 76px);
}

.popup_car_detail .popup_center .popup_body iframe {
    width: 100%;
    height: 100%;
}