@charset "utf-8";
/* CSS Document */

/*Layout*/
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 0;
}
#wrap,
#root {
  min-width: 320px;
  min-height: 100%;
  position: relative;
}
#wrap.chat,
#root.chat {
  background: #eff6f9;
}
#container {
}
#contents {
}

/* -- common -- */
/*단일 클래스*/
.skip {
  width: 100%;
  height: 50px;
  position: fixed;
  top: -10000px;
  padding: 20px 0;
  text-align: center;
  color: #000;
  background: #ccc;
  z-index: 1000;
}
.skip:focus {
  top: 0;
}
.blind {
  font-size: 0 !important;
  width: 1px;
  height: 1px;
  position: absolute;
  top: -1000px;
  text-indent: -9999px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.inner {
  padding: 0 15px;
}

/*Font*/
.fontBlue {
  color: #1d81a5;
}
.fontDeepBlue {
  color: #0e6683;
}
.fontGray {
  color: #666666;
}
.fontLightGray {
  color: #8a8a8a;
}
.fontBlack {
  color: #000000;
}
.fontRed {
  color: #b60000;
}
.fontL {
  font-weight: 300 !important;
}
.fontR {
  font-weight: 400 !important;
}
.fontM {
  font-weight: 500 !important;
}
.fontB {
  font-weight: 700 !important;
}
.txtAlignC {
  text-align: center;
}
.txtAlignL {
  text-align: left;
}
.txtAlignR {
  text-align: right;
}
.txtNote {
  font-size: 13px;
  font-weight: 400;
  color: #666666;
  line-height: 1.2;
}

/*Scrollbar*/
.scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 12px;
}
.scroll::-webkit-scrollbar {
  width: 6px;
}
.scroll::-webkit-scrollbar,
.scroll::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
.scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
.coverBar {
  width: 10px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  opacity: 1;
  background: #ffffff;
} /*마우스오버시에만 스크롤바 노출*/
:hover .coverBar {
  opacity: 0;
  -webkit-transition: all 0.5s;
} /*마우스오버시에만 스크롤바 노출*/

/*Off Canvas*/
.canvasToggle {
  transition: all 0.3s ease-in-out;
}
.canvasToggle.opaque {
  background: #ffffff;
}
.offCanvas {
  color: #000000;
  width: 100%;
  height: 100%;
  background: #ffffff;
  /* transform: translateX(100%);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); */
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.canvasisOpen .offCanvas {
  transform: translateX(0);
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}
.offCanvas .canvasHeader {
  padding: 20px 15px;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.offCanvas .canvasHeader h2 {
  font-size: 16px;
  line-height: 24px;
}
.offCanvas .canvasCont {
  height: calc(100% - 64px);
  overflow-y: auto;
}
.fileBox .fileGroup {
}
.fileBox .fileGroup + .fileGroup {
  margin-top: 24px;
}
.fileBox .fileGroup .upDate {
  font-size: 13px;
  font-weight: 400;
  color: #8a8a8a;
  display: block;
  margin-bottom: 6px;
}
.fileBox .fileGroup .fileList {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(3, 1fr);
}

/*Tab*/
.tabSt01 {
}
.tabSt01 .tabBtn {
  width: 100%;
  height: 42px;
  display: table;
  table-layout: fixed;
  border-bottom: 1px solid #e5e5e5;
  background: #ffffff;
  z-index: 1000;
}
.tabSt01 .tabBtn.sticky {
  position: sticky;
  top: 0px;
}
.tabSt01 .tabBtn .item {
  font-size: 14px;
  font-weight: 400;
  color: #8a8a8a;
  text-align: center;
  vertical-align: middle;
  display: table-cell;
  cursor: pointer;
}
.tabSt01 .item:hover {
  font-weight: 500;
}
.tabSt01 .item.isCurrent {
  font-weight: 500;
  color: #000000;
  position: relative;
}
.tabSt01 .item.isCurrent:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #222222;
  position: absolute;
  bottom: -1px;
  left: 0px;
  display: block;
}
.tabSt01 .tabCont {
  margin: 24px 0;
  padding: 0 15px;
  overflow-y: auto;
}

/* Form*/
.formTable {
}
.formTable .formD {
  margin-top: 24px;
}
.formTable .formD > div + div {
  margin-top: 6px;
}
.formTable .formD input,
.formD textarea {
  width: 100%;
  display: block;
}
.formTable .formD label {
  display: inline-block;
}
.formTable .formD .formTit {
  font-size: 14px;
  font-weight: 500;
  color: #666666;
  margin-bottom: 12px;
  display: inline-block;
}
.formTable .formD .required {
  position: relative;
}
.formTable .formD .required:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #b60000;
  border-radius: 2px;
  position: absolute;
  top: 2px;
  right: -8px;
}
.formTable .formD input[type="radio"] {
  display: none;
}
.formTable .formD input[type="radio"] + label {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
  background: #b4b4b4;
  border-radius: 19px;
  padding: 12px 20px;
  cursor: pointer;
}
.formTable .formD input[type="radio"]:checked + label {
  color: #ffffff;
  background: #1d81a5;
  border-radius: 19px;
}
.formTable .formD .textCount {
  font-size: 13px;
  font-weight: 300;
  color: #8a8a8a;
  float: right;
}
.formTable .formD .alertInfo {
  font-size: 12px;
  font-weight: 400;
  color: #b60000;
  line-height: 18px;
  position: relative;
  padding-left: 20px;
  margin-top: 6px;
}
.formTable .formD .alertInfo:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_error.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.alertInfo {
  font-size: 12px;
  font-weight: 400;
  color: #b60000;
  line-height: 18px;
  position: relative;
  padding-left: 20px;
  margin-top: 6px;
}
.alertInfo:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_error.svg) no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

/*Document Type*/
.docu {
  display: block;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px;
}
.docu > span {
  display: block;
}
.docu .fileName {
  font-size: 13px;
  font-weight: 400;
  line-height: 15px;
  word-break: break-all;
  height: 45px;
  margin: 6px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.docu .capacity {
  font-size: 12px;
  font-weight: 300;
  line-height: 14px;
  color: #8a8a8a;
}
.docuType {
  position: relative;
}
.docuType:before {
  content: "";
  width: 30px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0;
}
.docuType.pdf:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_pdf.svg") no-repeat;
}
.docuType.xls:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_xls.svg") no-repeat;
}
.docuType.xlsx:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_xls.svg") no-repeat;
}
.docuType.ppt:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_ppt.svg") no-repeat;
}
.docuType.pptx:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_ppt.svg") no-repeat;
}
.docuType.doc:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_doc.svg") no-repeat;
}
.docuType.docx:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_doc.svg") no-repeat;
}
.docuType.jpg:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_jpg.svg") no-repeat;
}
.docuType.jpeg:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_jpg.svg") no-repeat;
}
.docuType.png:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_png.svg") no-repeat;
}
.docuType.gif:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_gif.svg") no-repeat;
}
.docuType.zip:before {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_docu_zip.svg") no-repeat;
}

/*리스트 없음*/
.noList {
  font-size: 13px;
  color: #8a8a8a;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*버튼스타일*/
.btnPrev {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_btn_prev.svg") no-repeat 50% 50%;
  width: 8px;
  height: 24px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}
.btnClose {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_btn_close.svg") no-repeat 50% 50%;
  width: 24px;
  height: 24px;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}
.btnAreaRight {
  margin-left: auto;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
}
.btnAreaRight a {
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}
.btnAreaRight button {
  width: 24px;
  height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}
.btnFixedArea {
  position: sticky;
  bottom: 0;
  padding: 8px 15px;
}
.btnFixedArea a.btnFull,
.btnFixedArea button.btnFull {
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  display: block;
  padding: 12px 12px;
  border-radius: 8px;
}
.btnFixedArea a.btnBlue,
.btnFixedArea a.btnActive {
  background: #0c6a8d;
}
.btnFixedArea button.btnBlue,
.btnFixedArea button.btnActive {
  background: #0c6a8d;
}
.btnFixedArea a.btnGray,
.btnFixedArea a.btnDisabled {
  background: #b4b4b4;
}
.btnFixedArea button.btnGray,
.btnFixedArea button.btnDisabled {
  background: #b4b4b4;
}

/*Header*/
#header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 899;
}
#header h1,
#header .logo {
  font-size: 16px;
  line-height: 24px;
  height: 24px;
}
#header .btnAreaRight .btnPin {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_pin_big_gray.svg") no-repeat 50% 50%;
}
#header .btnAreaRight .btnPin.on {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_pin_big_blue.svg") no-repeat 50% 50%;
}
#header .btnAreaRight .btnSearch {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_search_black.svg") no-repeat 50% 50%;
}
#header .btnAreaRight .btnMenu {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_attach.svg") no-repeat 50% 50%;
}

/*Footer Fixed*/
#footerFixed {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
}
#footerFixed .gnb {
  display: flex;
  justify-content: space-between;
  background: #f5f7f9;
  padding: 15px 24px;
}
#footerFixed .gnb .mm {
  text-align: center;
  width: 86px;
  padding-top: 24px;
}
#footerFixed .gnb .mm.on {
  font-weight: 500;
  color: #1d81a5;
}
#footerFixed .gnb .mm.chat {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/ico_chat.svg") no-repeat center top;
}
#footerFixed .gnb .mm.chat.on {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_chat_on.svg") no-repeat center top;
}
#footerFixed .gnb .mm.faq {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/ico_question.svg") no-repeat center top;
}
#footerFixed .gnb .mm.faq.on {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/ico_question_on.svg") no-repeat center top;
}
#footerFixed .gnb .mm.myqlist {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/ico_myqlist.svg") no-repeat center top;
}
#footerFixed .gnb .mm.myqlist.on {
  display: block;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/ico_myqlist_on.svg") no-repeat center top;
}
#footerFixed.msgArea {
  background: #ffffff;
  padding: 15px 15px;
}
#footerFixed.msgArea .sendMsg {
  display: flex;
  align-items: center;
  width: 100%;
  background: inherit;
  border: 1px solid #1d81a5;
  border-radius: 8px;
  padding-left: 10px;
}
#footerFixed.msgArea .sendMsg input {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  width: calc(100% - 32px);
  line-height: 32px;
  padding: 0;
  margin: 3px 0;
  border: none;
}
#footerFixed.msgArea .sendMsg button {
  padding: 8px 8px;
  margin-left: auto;
}
#footerFixed.msgArea .caution {
  font-size: 12px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 14px;
  word-break: keep-all;
  margin-top: 6px;
  padding-left: 7px;
  text-indent: -7px;
}
#footerFixed.moveArea {
  background: #ffffff;
  padding: 15px 15px;
}
#footerFixed.moveArea .btnAreaRight .btnUp {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_up.svg") no-repeat 50% 50%;
}
#footerFixed.moveArea .btnAreaRight .btnUp.disabled {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_up_disabled.svg") no-repeat 50% 50%;
}
#footerFixed.moveArea .btnAreaRight .btnDown {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_down.svg") no-repeat 50% 50%;
}
#footerFixed.moveArea .btnAreaRight .btnDown.disabled {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_down_disabled.svg") no-repeat 50% 50%;
}

/* -- AI Chat -- */
/*AI상담 List*/
.searchWrap {
  background: #ffffff;
  position: sticky;
  top: 64px;
  padding-bottom: 6px;
  box-sizing: border-box;
}
.searchWrap .search {
  width: 100%;
  border: 2px solid #1d81a5;
  border-radius: 8px;
  padding: 0 10px;
  display: flex;
  align-items: center;
}
.searchWrap .search input {
  font-size: 15px;
  font-weight: 500;
  color: #1d81a5;
  line-height: 38px;
  width: calc(100% - 20px);
  border: none;
  background: inherit;
  padding: 0;
  margin: 3px 0;
}
.searchWrap .search .btnSearch {
  margin-left: auto;
}
.searchWrap .relatedTerms {
  background: #fbfcfd;
  border: 1px solid #1d81a5;
  border-radius: 8px;
  padding: 24px 4px 24px 24px;
  position: absolute;
  top: 49px;
  left: 15px;
  right: 15px;
  z-index: 998;
}
.searchWrap .relatedTerms .scroll {
  max-height: 40vh;
}
.searchWrap .relatedTerms .gList li a {
  line-height: 20px;
}
.searchWrap .relatedTerms .gList li + li {
  margin-top: 8px;
}
.searchWrap .relatedTerms .scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding-right: 12px;
}
.searchWrap .relatedTerms .scroll::-webkit-scrollbar {
  width: 6px;
}
.searchWrap .relatedTerms .scroll::-webkit-scrollbar,
.scroll::-webkit-scrollbar-thumb {
  overflow: visible;
  border-radius: 4px;
}
.searchWrap .relatedTerms .scroll::-webkit-scrollbar-thumb {
  background: #8ec0d2;
}
.chatListCont {
  height: calc(100vh - 186px);
  overflow-y: auto;
}
.chatListCont .scroll {
  padding-right: 0px;
}
.chatList {
}
.chatList li .goChat {
  padding: 16px 15px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
  gap: 12px;
}
.chatList li .goChat:focus,
.chatList li .goChat:hover {
  background: #f5f7f9;
}
.chatList li .goChat .aiCon {
  width: calc(100% - 44px);
}
.chatList li .goChat .aiCon .aiInfo {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}
.chatList li .goChat .aiCon .aiInfo .date {
  font-size: 13px;
  font-weight: 300;
  color: #999999;
  margin-left: auto;
}
.chatList li .goChat .aiCon .textPreview {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
/*AI상담 Chatroom*/
#wrap.aiChatRoom,
#root.aiChatRoom {
  height: 100vh;
  max-height: 100vh;
  background: #eff6f9;
  overflow: hidden;
}
#contents .chatRoom .scroll {
  height: calc(100vh - 168px);
  overflow-y: auto;
  padding: 15px 15px;
  z-index: 999;
}
#contents .chatRoom.searchResult .scroll {
  height: calc(100vh - 120px);
  overflow-y: auto;
  padding: 15px 15px;
  z-index: 999;
}
.searchToggle {
  transition: all 0.3s ease-in-out;
}
.searchToggle.opaque {
  background: #eff6f9;
}
.searchIsOpen .searchChatWrap {
  transform: translateX(0);
  visibility: visible;
  -webkit-overflow-scrolling: touch;
}
.searchChatWrap {
  width: 100%;
  height: 64px;
  background: #eff6f9;
  transform: translateY(-100%);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
.searchChatWrap.on {
  width: 100%;
  height: 64px;
  background: #eff6f9;
  transform: translateY(0%);
  transition-property: transform;
  transition-duration: 0.4s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}
#wrap.aiChatRoom #header .searchChatWrap {
  padding: 13px 15px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
  z-index: 1001;
}
#wrap.aiChatRoom #header .searchChatWrap .searchChat {
  width: calc(100% - 42px);
  background: #ffffff;
  border-radius: 20px;
  padding: 0 12px;
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  align-items: center;
}
#wrap.aiChatRoom #header .searchChatWrap .searchChat input {
  width: calc(100% - 36px);
  border: none;
}
#wrap.aiChatRoom #header .searchChatWrap .searchChat .btnSearch {
  margin-left: auto;
  padding: 4px;
}
#wrap.aiChatRoom #header .searchChatWrap .btnCancel {
  width: 30px;
  text-align: center;
  margin-left: auto;
}

.chatRoom .msg {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.chatRoom .msg.bot {
  align-items: flex-start;
}

.chatRoom .msg.user {
  align-items: flex-end;
}
.chatRoom .msg + .msg {
  margin-top: 12px;
}
.chatRoom .msg .msgTop {
  display: flex;
  gap: 6px;
  align-items: center;
}
.chatRoom .msg.user .msgTop {
  flex-direction: row-reverse;
}
.chatRoom .msg .msgTop .flag img,
.chatRoom .msg .msgTop .idPhoto img {
  width: 24px;
  height: 24px;
}
.chatRoom .msg .response {
  text-align: justify;
  word-break: break-all;
  line-height: 20px;
  max-width: calc(100% - 32px);
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
}
.chatRoom .msg.user .response {
  color: #ffffff;
  background: #1d81a5;
}
.chatRoom .msg .response > a {
  font-weight: 500;
  color: #000000;
  text-decoration: underline;
}
.chatRoom .msg .attachList {
  width: calc(100% + 30px);
  height: 100%;
  left: -15px;
  padding-left: 15px;
  display: flex;
  justify-content: flex-start;
  gap: 6px;
}
.chatRoom .msg .attachList .docu {
  border: none;
  background: #ffffff;
  border-radius: 12px;
  display: block;
  padding: 12px;
}
.chatRoom .msg .msgFooter {
  font-size: 12px;
  font-weight: 300;
  color: #8a8a8a;
  line-height: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}
.chatRoom .msg.user .msgFooter {
  flex-direction: row-reverse;
}
.chatRoom .msg .msgFooter > a {
  width: 16px;
  height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}

.chatRoom .msg .msgFooter > button {
  width: 16px;
  height: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
}
.chatRoom .msg .msgFooter .like {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_like.svg") no-repeat;
}
.chatRoom .msg .msgFooter .like.on {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_like_on.svg") no-repeat;
}
.chatRoom .msg .msgFooter .dislike {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_dislike.svg") no-repeat;
}
.chatRoom .msg .msgFooter .dislike.on {
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_dislike_on.svg") no-repeat;
}
.findWord {
  color: #ffffff;
  background: #222222;
  padding: 0 2px;
  border-radius: 2px;
}
.floatArea {
}
.floatArea .btnDown {
  width: 40px;
  height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: url("https://img.hyundaidreamtour.com/images/aihdt/mobile/m_ico_down.svg") no-repeat 50% 50%, #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-indent: -1000px;
  position: absolute;
  bottom: 8px;
  right: 20px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  z-index: 900;
}

.floatArea .hidden {
  display: none;
}

/* --popup-- */
.popHeader {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}
.popHeader .popTit {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.popupDimmed {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
}
/*FullLayer Popup*/
.popupFullD {
  width: 100%;
  height: 100%;
  background: #ffffff;
  margin: 0;
  padding: 0;
  position: fixed;
  /* top: 100%; */
  top: 0;
  left: 0;
  /* transition: all 600ms cubic-bezier(0.86, 0, 0.07, 1); */
  z-index: 1001;
}

.popupFullIsOpen .popupFullD {
  top: 0;
}
.popupFullD .popHeader {
  padding: 20px 15px;
}
.popupFullD .popCont {
  height: calc(100% - 120px);
  padding: 12px 0;
  overflow-y: auto;
}
.popupFullD .popCont .scroll {
  padding-right: 0;
}
/*Layer Popup*/
.popupD {
  /* background: #ffffff;
  border-radius: 16px;
  position: absolute;
  left: 50%;
  top: 25vh;
  transform: translateX(-50%);
  z-index: 1001; */
}
.popupD.popupAlert {
  width: calc(100vw - 60px);
  padding: 24px;
}
.popupD .popHeader {
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}
.popupD .popCont {
  margin-top: 16px;
}
.popupD .popCont .alertText {
  font-size: 14px;
  line-height: 20px;
  color: #666666;
}

/* -- 반응형 -- */
/* Z폴드 */
@media (min-width: 540px) {
  #footerFixed .gnb {
    justify-content: center;
  }
  #contents .chatRoom .scroll {
    height: calc(100vh - 156px);
  }
}
