@charset "UTF-8";

/* 웹접근성 포커싱 테스트 */
*:focus {
  outline-width: 2px !important;
  outline-color: #0052a0 !important;
  outline-offset: -1px;
}
:focus-visible {
  outline: -webkit-focus-ring-color auto 1px;
}
.nofocus:focus {
  outline: none;
}
.textbox > .more {
  border-radius: 0;
}

.control-radio {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 9px 25px 9px 0;
  line-height: 22px;
  cursor: pointer;
  margin: 0;
}
.control-radio input {
  width: 1px;
  height: 1px;
  opacity: 0;
}
.control-radio input:checked + .outer {
  border: 1px solid #d1d1d1;
}
.control-radio input:checked + .outer:before {
  transform: scale(1);
  opacity: 1;
}
.control-radio input:focus + .outer:before {
  transform: scale(1);
  opacity: 1;
  background-color: #0075c2;
}
.control-radio input[disabled] + .outer, .control-radio input[readonly] + .outer {
  border-color: #D5D5D5;
}
.control-radio input[disabled] + .outer:before, .control-radio input[readonly] + .outer:before {
  border-color: #c1c1c1;
  background-color: #c1c1c1;
}
.control-radio .outer {
  width: 20px;
  height: 20px;
  display: block;
  float: left;
  margin: 0 5px 0 0;
  border: 1px solid #D5D5D5;
  border-radius: 50%;
  background-color: #fff;
}
.control-radio .outer:before {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  margin: 2px;
  border-radius: 50%;
  background-color: #0075c2;
  opacity: 0;
  transition: all 0.25s ease-in-out;
  transform: scale(0);
}
.control-radio:hover .outer {
  border-color: #C1C1C1;
}
.control-radio:hover .outer:before {
  transform: scale(0.5);
  opacity: 0.5;
}
.control-radio:hover .outer input + .outer:before {
  transform: scale(0.5);
  opacity: 0.5;
}
.control-radio:hover .outer input[disabled] + .outer, .control-radio:hover .outer input[readonly] + .outer {
  border-color: rgb(243, 243, 243);
}

.control-checkbox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 9px 25px 9px 0;
  line-height: 22px;
  cursor: pointer;
  margin: 0;
}
.control-checkbox .ckview, .control-checkbox:hover input[disabled]:checked + .outer:before, .control-checkbox:hover input:checked + .outer:before, .control-checkbox input:focus:checked + .outer:before, .control-checkbox input:checked + .outer:before {
  transform: rotate(-45deg) scaleY(0.5);
  opacity: 1;
}
.control-checkbox input {
  width: 1px;
  height: 1px;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.control-checkbox input:focus:checked + .outer:before, .control-checkbox input:checked + .outer:before {
  top: -2px;
  margin: 0;
  width: 18px;
  height: 18px;
  background-color: transparent;
  border-left: 2px solid #0075c2;
  border-bottom: 4px solid #0075c2;
}
.control-checkbox input:checked + .outer {
  border: 1px solid #D5D5D5;
}
.control-checkbox input:focus + .outer:before {
  transform: scale(0.5);
  opacity: 0.5;
}
.control-checkbox input[disabled] + .outer, .control-checkbox input[readonly] + .outer {
  border-color: rgb(243, 243, 243);
}
.control-checkbox input[disabled] + .outer:before, .control-checkbox input[readonly] + .outer:before {
  border-color: #c1c1c1;
  background-color: #c1c1c1;
}
.control-checkbox .outer {
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin: 0 5px 0 0;
  border: 1px solid #D5D5D5;
  background-color: #fff;
}
.control-checkbox .outer:before {
  position: relative;
  content: "";
  margin: 2px;
  display: block;
  width: 14px;
  height: 14px;
  transition: all 0.2s ease;
  background-color: #E34724;
  transform: scale(0);
  opacity: 0;
}
.control-checkbox:hover input + .outer:before {
  transform: scale(0.5);
  opacity: 0.5;
}
.control-checkbox:hover input[disabled] + .outer, .control-checkbox:hover input[readonly] + .outer {
  border-color: rgb(243, 243, 243);
}
.control-checkbox.control-checkbox-all-check {
  padding: 5px;
  line-height: 20px;
  float: none;
}
.control-checkbox.control-checkbox-all-check .outer {
  margin: 0;
}
.control-checkbox.list-checkbox {
  padding: 0px;
  line-height: 20px;
  float: none;
}
.control-checkbox.list-checkbox .outer {
  margin: 0;
}

/*reset*/
div,
ul,
li,
span,
a,
p,
img,
address,
body,
h1,
h2,
input,
label,
h3,
dl,
dt,
dd,
h4,
label,
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "나눔스퀘어", "NanumSquare", malgun-gothic, Malgun Gothic, "맑은고딕", "맑은 고딕", "돋움", "dotum", sans-serif;
  font-size: 14px;
  height: 100%;
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  color: #333;
}

#wrap {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
}

ul,
li,
ol {
  list-style: none;
}

a:link,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
  color: inherit;
}

img,
fieldset {
  border: none;
}

address {
  font-style: normal;
}

img,
input,
select {
  vertical-align: top;
  border: none;
}

button {
  border: 0;
  background: none;
}

/*20230907 웹 접근성 조치*/
/*button:focus {*/
/*  outline: 0;*/
/*}*/

input::-moz-placeholder {
  font-size: 13px;
  color: #444;
  font-weight: 500;
  font-size: 15px;
}

input:-ms-input-placeholder {
  font-size: 13px;
  color: #444;
  font-weight: 500;
  font-size: 15px;
}

input::placeholder {
  font-size: 13px;
  color: #444;
  font-weight: 500;
  font-size: 15px;
}

h1 {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.skip {
  font-size: 0px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  /*visibility: hidden;*/
  line-height: 0;
  position: absolute;
  left: -999px;
}

#skipmenu {
  position: absolute;
  width: 100%;
}

#skipmenu a {
  position: absolute;
  top: -100px;
}

#skipmenu a:hover,
#skipmenu a:active,
#skipmenu a:focus {
  position: absolute;
  top: 0px;
  background: #fff;
  color: #333;
  width: 100%;
  padding: 10px 0;
  font-size: 18px;
  text-align: center;
  z-index: 200;
}

.shadow {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  display: none;
}
.shadow.on {
  display: block;
}
.shadow.on2 {
  display: block;
  background: rgba(0, 0, 0, 0.1);
}

.width_50 {
  width: 50px;
}

/* font class */
.color_white {
  color: #fff !important;
}

.color_blue {
  color: #0084ea !important;
}

.color_red {
  color: #cc330d !important;
}

.color_yellow {
  color: #f5f07b !important;
}

.font1 {
  font-size: 9px;
}

.font2 {
  font-size: 13px;
}

.font3 {
  font-size: 16px;
}

.font4 {
  font-size: 20px;
}

.font5 {
  font-size: 24px;
}

/*menu*/
.container {
  margin: 0 auto;
  position: relative;
}

.contents {
  position: fixed;
  top: 60px;
  height: calc(100% - 60px);
  overflow-y: auto;
  width: 100%;
  background: #f8faff;
}

.menu {
  background-color: white;
  width: 100%;
  border-bottom: 1px solid #d9d9d9;
  position: fixed;
  top: 68px;
  z-index: 100;
}
.menu > ul {
  display: table;
  width: 100%;
  table-layout: fixed;
  height: 40px;
  padding-top: 11px;
}
.menu > ul li {
  display: table-cell;
  text-align: center;
}
.menu > ul li a {
  display: inline-block;
  padding: 2px 3px 9px 3px;
  color: #666;
}
.menu > ul li a img {
  height: 15.5px;
}
.menu > ul li a.on {
  border-bottom: 3px solid #ff0000;
  color: #333;
}
.menu > ul li:first-child span {
  border-bottom: 4px solid red;
}
.menu > ul li:last-child {
  margin-right: 0;
}

.con2,
.con3,
.con4 {
  display: none;
}

.web_first_adv,
.web_second {
  display: none;
}

.mobile_first_adv,
.mobile_second {
  display: block;
}

/*확인받을 것*/
.contents.on {
  overflow-y: hidden;
}

/* sub header */
#dic_wrap .sub_header,
#hwoto_wrap .sub_header,
#help_wrap .sub_header {
  height: 53px;
  background-color: white;
  overflow: hidden;
  border-top: 2px solid #5f94d6;
  border-bottom: 1px solid #bfc8d8;
}
#dic_wrap .sub_header h2,
#hwoto_wrap .sub_header h2,
#help_wrap .sub_header h2 {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5b5b5b;
}
#dic_wrap .sub_header .prev_page,
#hwoto_wrap .sub_header .prev_page,
#help_wrap .sub_header .prev_page {
  text-indent: -9999px;
  border: none;
  width: 25px;
  height: 30px;
  float: left;
  margin: 15px 0 0 20px;
  background: url(../images/prev_page.png) 4px 1px no-repeat;
  background-size: 14px;
}

.sub_contents {
  background-color: #e2eefa;
}

/*chatbot*/
.header {
  width: 100%;
  height: 60px;
  background-color: #0052A0;
  overflow: hidden;
  position: fixed;
  top: 0;
  z-index: 100;
}

.header .logo {
  font-size: 20px;
  padding-top: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.total_menu {
  float: left;
  width: 30px;
  height: 28px;
  background: url(../images/menu_icon.png) 2px 4px no-repeat;
  background-size: 26px 20px;
  margin: 16px 0 0 21px;
  background-size: 25px;
}
.total_menu a {
  width: 30px;
  height: 28px;
  display: inline-block;
}

.header-menu {
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #E18831;
  position: absolute;
  left: 0;
  bottom: 0;
}
.header-menu > ul {
  display: table;
  width: 100%;
  table-layout: fixed;
  height: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-menu > ul li {
  display: table-cell;
  text-align: center;
  padding: 0;
  margin: 0;
}
.header-menu > ul li a {
  display: block;
  font-size: 14px;
  line-height: 30px;
  overflow: hidden;
  text-align: center;
  border-bottom: 3px solid #fff;
}
.header-menu > ul li a.on {
  font-weight: 700;
  border-bottom: 3px solid #E18831;
}

.top_r {
  float: right;
  overflow: hidden;
  margin: 13px 20px 0 0;
}
.top_r .font_size {
  text-indent: -9999px;
  width: 21px;
  height: 21px;
  background: url(../images/font.png) no-repeat;
  background-size: 21px 21px;
  margin-left: 8px;
}
.top_r .help a {
  color: white;
  display: inline-block;
  border: 1px solid white;
  padding: 5px 12px;
  border-radius: 15px;
  margin-right: 10px;
}
.top_r .search {
  float: left;
  width: 28px;
  height: 28px;
  background: url(../images/bg_search_b.png) 2px 2px no-repeat;
  background-size: 24px 24px;
  margin-top: 1px;
  text-indent: -999px;
  border: none;
}
.top_r .search a {
  display: inline-block;
  width: 28px;
  height: 28px;
}

.chatbot {
  overflow-y: auto;
  height: calc(100% - 115px);
  width: 100%;
  transition: all 0.4s;
  /*adviser*/
}
.chatbot .mainBannerArea {
  background-color: #fff;
  padding: 23px 26px 21px 26px;
  background: url("../images/banner_icon.png") #fff no-repeat calc(100% - 28px) 20px;
  background-size: 78px;
  border-bottom: 1px solid #eaeef1;
}
.chatbot .mainBannerArea h5 {
  font-size: 13.5px;
  line-height: 14px;
  color: #727272;
  margin-bottom: 8px;
  font-family: NotoKrL;
  letter-spacing: -0.6px;
}
.chatbot .mainBannerArea p {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  line-height: 129%;
}
.chatbot .re_box {
  display: block;
  padding: 0 0 15px 130px;
  overflow: hidden;
  width: 900px;
}
.chatbot .re_box ul li {
  float: left;
  max-width: 500px;
  width: 50%;
  padding: 5px;
  box-sizing: border-box;
  cursor: pointer;
}
.chatbot .re_box ul li a {
  width: 100%;
  text-align: center;
  display: block;
  border: 1px solid #0052a0;
  border-radius: 25px;
  padding: 10px 10% 10px 10px;
}
.chatbot .re_box ul li .revert {
  background: url(../images/revert.png) no-repeat 10%;
  background-size: 15px;
}
.chatbot .re_box ul li .prev {
  background: url(../images/prev.png) no-repeat 10%;
  background-size: 15px;
}
.chatbot .chat {
  font-size: 15px;
  line-height: 134%;
  letter-spacing: -0.5px;
}
.chatbot .chat .chat_type3 p span.ad_subtext {
  font-size: 15px;
  color: #777;
  display: block;
  padding: 0 15px 10px 15px;
}
.chatbot .chat .chat_type3 p span.text_icon {
  display: inline-block;
  border-radius: 16px;
  padding: 2px 8px 0px 8px;
  border: 1px solid #d9d9d9;
  font-size: 11px;
  margin-bottom: 12px;
  color: #777;
}
.chatbot .chat .chat_type3 p span.text_icon1 {
  margin-left: 13px;
}
.chatbot .date {
  text-align: center;
  width: 95%;
  padding-top: 7px;
  margin: 4px auto;
  height: 25px;
  color: #446175;
}
.chatbot .date > span {
  padding: 0 9px 5px 23px;
  font-size: 10.5px;
  position: relative;
  top: -4px;
}
.chatbot .date > span:before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background: url("../images/chatbot_icon_clock.png") no-repeat left 50%;
  background-size: 13px;
  left: 5px;
  top: 0;
}
.chatbot .adv {
  margin-top: 18px;
}
.chatbot .before_select {
  margin-bottom: 90px;
}
.chatbot .adviser {
  position: relative;
  margin: 10px 8px;
  padding: 0 10px 0 48px;
  display: block;
  /* 테이블 table */
  /* 정책정보 컨텐츠 */
  /* 설문조사 컨텐츠 */
  /* 컨텐츠와 같이 리스트형  */
  /* 용어안내와 같이 숫자 형 */
}
.chatbot .adviser .title {
  color: #2d3850;
  margin-bottom: 5px;
  padding-left: 10px;
}
.chatbot .adviser .ads {
  display: inline-block;
  width: 100%;
  max-width: 980px;
  position: relative;
}
.chatbot .adviser .adv_box {
  display: inline-block;
  width: 90%;
  background: #fff;
  overflow: hidden;
  border-radius: 0px 10px 10px 10px;
  -moz-border-radius: 0px 10px 10px 10px;
  -webkit-border-radius: 0px 10px 10px 10px;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.chatbot .adviser .adviser_list {
  overflow: hidden;
  position: relative;
  background: #fff;
  width: auto;
  max-width: 980px;
  display: inline-block;
}
.chatbot .adviser .ca-thumbnail {
  display: block;
  width: 40px;
  height: 40px;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  padding: 0;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  background: url("../images/chatbot_head.png") no-repeat 50% 70%;
  background-size: 40px;
}
.chatbot .adviser.adv.first, .chatbot .adviser.first {
  padding: 0 0px 0 85px;
}
.chatbot .adviser.adv.first .a_time, .chatbot .adviser.first .a_time {
  display: none;
}
.chatbot .adviser.adv.first .ca-thumbnail, .chatbot .adviser.first .ca-thumbnail {
  width: 75px;
  height: 75px;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border: 0;
  box-shadow: none;
  background: none;
  background: url("../images/chatbot_pull.png") no-repeat 0 0 transparent;
  background-size: cover;
}
.chatbot .adviser.adv.first .ca-thumbnail img, .chatbot .adviser.first .ca-thumbnail img {
  width: 100%;
}
.chatbot .adviser > div .adviserTitle {
  display: inline-block;
  padding-left: 26px;
  float: left;
  margin-left: 3px;
  color: #2157a6;
  font-weight: bold;
  font-size: 17px;
}
.chatbot .adviser > div p, .chatbot .adviser > div > span {
  float: left;
}
.chatbot .adviser p {
  padding: 8px;
  border-radius: 5px;
  background-color: white;
  color: #222;
  max-width: 100%;
  word-wrap: break-word;
  word-break: keep-all;
  font-family: NotoKrL;
  width: 100%;
}

.chatbot .adviser p.skip {
  visibility: hidden;
}

.chatbot .adviser p > span {
  color: #E60000;
  /*시작, 처음으로 btn*/
}
.chatbot .adviser p > span.chat_btn1 {
  color: #3c5ebf;
  border: 0.5px solid #3c5ebf;
  padding: 3.5px 13px 1px 10px;
  border-radius: 20px;
  font-size: 12.5px;
  display: inline-block;
  margin-bottom: 4px;
  cursor: pointer;
}
.chatbot .adviser p > span.chat_btn1.on {
  color: white;
  border: 0.5px solid #3c5ebf;
  background-color: #3c5ebf;
}
.chatbot .adviser p > span.chat_btn2 {
  color: white;
  border: 0.5px solid #3c5ebf;
  padding: 4px 55px 3.5px 55px;
  border-radius: 20px;
  font-size: 12.5px;
  display: inline-block;
  margin-bottom: 1px;
  cursor: pointer;
  background-color: #3c5ebf;
}
.chatbot .adviser p > span.chat_btn2.on {
  color: white;
  border: 0.5px solid #666;
  background-color: #333;
}
.chatbot .adviser p > a {
  display: inline-block;
  padding: 5px 20px 3px 20px;
  border-radius: 15px;
  margin: 7px 0 9px 0;
  border: 1px solid #ccc;
  font-weight: 400;
}
.chatbot .adviser p > .coice_con {
  display: inline-block;
  padding: 7px 15px 5px 15px;
  color: #3c5ebf;
  border-radius: 7px;
  border: 1px solid #ccc;
  font-weight: 6500;
  width: 100%;
  margin: 3px 0;
}
.chatbot .adviser p > .coice_con:first-child {
  margin-top: 10px;
}
.chatbot .adviser p > .coice_con.on {
  background-color: #3c5ebf;
  color: white;
  border: 1px solid #3c5ebf;
}
.chatbot .adviser p .con_name {
  color: #3c5ebf;
}
.chatbot .adviser .adviser_list {
  box-shadow: none;
  float: left;
  margin-top: 10px;
  width: 100%;
}
.chatbot .adviser .adviser_list ul {
  display: block;
}
.chatbot .adviser .adviser_list ul li {
  list-style: none;
  border-top: 1px solid #eee;
}
.chatbot .adviser .adviser_list ul li a {
  display: block;
  padding: 8px 10px;
}
.chatbot .adviser .adviser_list ul li .hide {
  background-color: #0075c2;
  color: #fff;
}
.chatbot .adviser .con_box {
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  width: 90%;
  border-radius: 5px;
}
.chatbot .adviser .con_box img {
  display: block;
  margin: 0 auto;
  height: auto;
  padding: 10px 0;
}
.chatbot .adviser .chat_name {
  color: #555;
  font-weight: 600;
}
.chatbot .adviser p + .tableA {
  padding-top: 0;
}
.chatbot .adviser .tableA {
  font-size: 12px;
  display: block;
  padding: 8px 10px;
  text-align: center;
  float: left;
}
.chatbot .adviser .tableA .tit {
  color: #0075c2;
  font-size: 16px;
  text-align: left;
  font-weight: 700;
  padding: 0 0 8px 0;
}
.chatbot .adviser .tableA table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
  border-collapse: collapse;
  border-top: 2px solid #b4b7c3;
}
.chatbot .adviser .tableA table th,
.chatbot .adviser .tableA table td {
  padding: 7px;
  border-right: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  font-weight: 400;
  word-break: break-all;
  word-wrap: break-word;
  line-height: 1.3;
  letter-spacing: -1px;
}
.chatbot .adviser .tableA table thead th {
  font-weight: 600;
  background: #f0f1f5;
}
.chatbot .adviser .tableA table thead th:last-child {
  border-right-width: 0;
}
.chatbot .adviser .tableA table tbody th {
  font-weight: 600;
  background: #f0f1f5;
}
.chatbot .adviser .tableA table tbody th:last-child {
  border-right-width: 0;
}
.chatbot .adviser .tableA table tbody td:last-child {
  border-right-width: 0;
}
.chatbot .adviser .tableA table tfoot td {
  background: #f3f4f6;
  font-weight: 500;
}
.chatbot .adviser .tableA.multi tbody th {
  background: none;
}
.chatbot .adviser .tableA .txt {
  text-align: left;
  display: block;
  line-height: 1.3;
  font-size: 13px;
  margin-top: 5px;
}
.chatbot .adviser .tableA .txt p {
  position: relative;
  padding: 3px 0;
  display: block;
}
.chatbot .adviser .tableA .txt p.annex {
  padding-left: 8px;
}
.chatbot .adviser .tableA .txt p.annex:before {
  content: "*";
  color: #f4681c;
  position: absolute;
  left: 0;
  top: 7px;
}
.chatbot .adviser > div.policy {
  padding: 0;
}
.chatbot .adviser > div.policy .subject {
  padding: 8px;
  padding-left: 46px;
  font-weight: bold;
  border-bottom: solid 1px #B7B7B7;
  background: url(../images/notice/guid.png) no-repeat 16px 50% transparent;
  background-size: 15px;
}
.chatbot .adviser > div.policy .memo {
  padding: 8px 16px;
  font-size: 0.9em;
}
.chatbot .adviser > div.policy .memo img {
  max-width: 100%;
}
.chatbot .adviser > div.policy ul.list {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}
.chatbot .adviser > div.policy ul.list li {
  border-top: solid 1px #B7B7B7;
}
.chatbot .adviser > div.policy ul.list li:first-child {
  border-top: 0;
}
.chatbot .adviser > div.policy ul.list li a {
  position: relative;
  display: block;
  padding: 8px;
  padding-right: 20px;
}
.chatbot .adviser > div.policy ul.list li a:after {
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/notice/arrow_right.png) no-repeat 50% 50% transparent;
  background-size: 9px;
}
.chatbot .adviser > div.policy ul.list li.on a {
  color: #fff;
  background-color: #1F457A;
}
.chatbot .adviser > div.policy ul.list.unbind:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 99;
}
.chatbot .adviser > div.poll {
  padding: 0;
  position: relative;
  overflow: hidden;
}
.chatbot .adviser > div.poll.unbind:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 99;
}
.chatbot .adviser > div.poll .subject {
  padding: 8px;
  padding-left: 46px;
  font-weight: bold;
  border-bottom: solid 1px #B7B7B7;
  background: url(../images/notice/research.png) no-repeat 16px 50% transparent;
  background-size: 15px;
}
.chatbot .adviser > div.poll .progress-wrap {
  position: relative;
  height: 50px;
  margin: 0 30px;
}
.chatbot .adviser > div.poll .progress-wrap .progress-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #E0E1E2;
}
.chatbot .adviser > div.poll .progress-wrap .progress-bar:after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 4px;
  background-color: #E18831;
}
.chatbot .adviser > div.poll .progress-wrap .progress-step {
  position: absolute;
  left: 0;
  top: 8px;
  width: 30px;
  height: 40px;
  text-align: center;
  color: #fff;
  line-height: 35px;
  background: url(../images/seq_o.png) no-repeat 50% 50% transparent;
  background-size: cover;
  z-index: 20;
}
.chatbot .adviser > div.poll .progress-wrap.per10 .progress-step {
  left: calc(10% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per10 .progress-bar:after {
  width: 10%;
}
.chatbot .adviser > div.poll .progress-wrap.per20 .progress-step {
  left: calc(20% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per20 .progress-bar:after {
  width: 20%;
}
.chatbot .adviser > div.poll .progress-wrap.per30 .progress-step {
  left: calc(30% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per30 .progress-bar:after {
  width: 30%;
}
.chatbot .adviser > div.poll .progress-wrap.per40 .progress-step {
  left: calc(40% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per40 .progress-bar:after {
  width: 40%;
}
.chatbot .adviser > div.poll .progress-wrap.per50 .progress-step {
  left: calc(50% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per50 .progress-bar:after {
  width: 50%;
}
.chatbot .adviser > div.poll .progress-wrap.per60 .progress-step {
  left: calc(60% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per60 .progress-bar:after {
  width: 60%;
}
.chatbot .adviser > div.poll .progress-wrap.per70 .progress-step {
  left: calc(70% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per70 .progress-bar:after {
  width: 70%;
}
.chatbot .adviser > div.poll .progress-wrap.per80 .progress-step {
  left: calc(80% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per80 .progress-bar:after {
  width: 80%;
}
.chatbot .adviser > div.poll .progress-wrap.per90 .progress-step {
  left: calc(90% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per90 .progress-bar:after {
  width: 90%;
}
.chatbot .adviser > div.poll .progress-wrap.per100 .progress-step {
  left: calc(100% - 15px);
}
.chatbot .adviser > div.poll .progress-wrap.per100 .progress-bar:after {
  width: 100%;
}
.chatbot .adviser > div.poll .question-wrap {
  overflow: hidden;
  position: relative;
}
.chatbot .adviser > div.poll .question-wrap:after {
  display: block;
  clear: both;
  content: "";
}
.chatbot .adviser > div.poll .question-wrap .complete-msg {
  display: none;
}
.chatbot .adviser > div.poll .question-wrap.question-complete {
  height: 200px;
}
.chatbot .adviser > div.poll .question-wrap.question-complete .complete-msg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
}
.chatbot .adviser > div.poll .question {
  padding: 16px;
  display: none;
}
.chatbot .adviser > div.poll .question .question-subject {
  font-weight: bold;
  margin-bottom: 8px;
}
.chatbot .adviser > div.poll .question .question-list {
  display: block;
  padding: 0;
  margin: 0;
  padding-left: 16px;
}
.chatbot .adviser > div.poll .question .question-list li {
  padding: 0;
}
.chatbot .adviser > div.poll .poll-buttons {
  padding: 0;
  margin: 0;
  float: left;
  width: 98%;
}
.chatbot .adviser > div.poll .poll-buttons:after {
  display: block;
  clear: both;
  content: "";
}
.chatbot .adviser > div.poll .poll-buttons .btn {
  display: block;
  float: left;
  border-radius: 15px;
  width: calc(50% - 10px);
  height: 40px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-size: 16px;
  margin: 0 5px;
}
.chatbot .adviser > div.poll .poll-buttons .btn.btn-prev {
  background-color: #EAEAEA;
}
.chatbot .adviser > div.poll .poll-buttons .btn.btn-next {
  color: #fff;
  background-color: #5f94d6;
}
.chatbot .adviser > div.poll .poll-buttons .btn.btn-complete {
  display: none;
  width: calc(50% - 10px);
  color: #fff;
  background-color: #5f94d6;
}
.chatbot .adviser > div.poll ul.list {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}
.chatbot .adviser > div.poll ul.list li {
  border-top: solid 1px #B7B7B7;
}
.chatbot .adviser > div.poll ul.list li:first-child {
  border-top: 0;
}
.chatbot .adviser > div.poll ul.list li a {
  position: relative;
  display: block;
  padding: 8px;
  padding-right: 20px;
}
.chatbot .adviser > div.poll ul.list li a:after {
  display: block;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/notice/arrow_right.png) no-repeat 50% 50% transparent;
  background-size: 9px;
}
.chatbot .adviser > div.poll ul.list li.on a {
  color: #fff;
  background-color: #1F457A;
}
.chatbot .adviser > div.poll ul.list.unbind:after {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 99;
}
.chatbot .adviser ul.adviser_list {
  padding: 0;
}
.chatbot .adviser ul.adviser_list li {
  border-bottom: 1px solid #d4e2ed;
}
.chatbot .adviser ul.adviser_list li a:not(.imglink) {
  display: block;
  padding: 10px 10px 10px 44px;
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 16px 50%;
  word-break: keep-all;
  word-wrap: break-word;
}
.chatbot .adviser ul.adviser_list li.video a {
  background-image: url("../images/chatbot_icon_video.png");
}
.chatbot .adviser ul.adviser_list li.cartoon a {
  background-image: url("../images/chatbot_icon_cartoon.png");
}
.chatbot .adviser ul.adviser_list li.list a {
  background-image: url("../images/chatbot_icon_list.png");
}
.chatbot .adviser ul.adviser_list li.filedown a {
  background-image: url("../images/chatbot_icon_filedown.png");
}
.chatbot .adviser ol.adviser_list {
  font-size: 0;
  padding: 10px 18px 7px;
  margin-top: 0;
}
.chatbot .adviser ol.adviser_list li,
.chatbot .adviser ol.adviser_list button {
  display: inline-block;
  font-size: 17px;
  margin-right: 20px;
  color: #2d3850;
  cursor: pointer;
}
.chatbot .adviser ol.adviser_list li .number,
.chatbot .adviser ol.adviser_list button .number {
  font-style: initial;
  display: inline-block;
  border-radius: 50%;
  background-color: #657ba8;
  color: #fff;
  margin-right: 2px;
  width: 22px;
  text-align: center;
  line-height: 24px;
  height: 22px;
}
.chatbot .adviser .con_text_link {
  margin-top: 6px;
  padding: 0;
  max-width: 250px;
}
.chatbot .adviser .con_text_link img {
  width: 100%;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.chatbot .adviser .con_text_link > span {
  display: block;
  color: #555;
  padding: 10px 15px;
}
.chatbot .adviser .con_text_link .more_link {
  border: none;
  border-top: 1px solid #d9d9d9;
  border-radius: 0px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 10px 10px 10px 0;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0;
  color: #264fe6;
  background: url(../images/more_link.png) 95% 13px no-repeat;
  background-size: 9px 14px;
}
.chatbot .adviser > .chat_type2 {
  background: none;
  padding-bottom: 0;
}
.chatbot .adviser .chat_type3 p {
  padding: 0;
}
.chatbot .adviser .chat_type3 p span {
  padding: 10px 15px;
  display: block;
  color: #555;
}
.chatbot .adviser .chat_type3 .check_list {
  border: none;
  border-top: 1px solid #dedbd5;
  border-radius: 0px;
  width: 100%;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  background-color: #f7fbff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0;
  color: #e66e26;
  background-color: white;
}
.chatbot .adviser .chat_type3 .download {
  padding-left: 15px;
  background: url(../images/download.png) no-repeat;
  background-position: calc(100% - 15px) 9px;
  background-size: 19px 19px;
}
.chatbot .adviser .chat_type3 .showcon {
  padding-left: 15px;
  background-color: white;
}
.chatbot .adviser .chat_type3 .good {
  padding-left: 15px;
  background: url(../images/good.png) no-repeat;
  background-position: calc(100% - 15px) 9px;
  background-size: 19px 19px;
}
.chatbot .adviser .chat_type3 .con_title {
  font-weight: bold;
  font-size: 15px;
}
.chatbot .adviser .chat_type3 span:first-child {
  margin-top: 5px;
}
.chatbot .adviser .chat_type4 p {
  padding: 0;
}
.chatbot .adviser .chat_type4 p span {
  padding: 10px 15px;
  display: block;
  color: #555;
}
.chatbot .adviser .chat_type4 .check_list {
  border: none;
  border-top: 1px solid #dedbd5;
  border-radius: 0px;
  width: 100%;
  display: inline-block;
  padding: 10px 15px 10px 15px;
  background-color: #f7fbff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin: 0;
  color: #264fe6;
  background-color: white;
}
.chatbot .adviser.chat_Btn p {
  padding: 10px 13px 9px 13px;
}
.chatbot .adviser > .a_time {
  float: none;
  margin: 0;
  position: absolute;
  right: 5px;
  bottom: 10px;
}
.chatbot .adviserInfoText {
  border-bottom: 1px solid #c1ccd4;
  margin-bottom: 10px;
  padding-bottom: 5px;
  clear: both;
  height: auto;
  overflow: hidden;
}
.chatbot .a_time {
  font-size: 12px;
  display: inline-block;
  line-height: 10px;
  color: #5c5c5c;
  float: right;
  margin-top: 7px;
  font-family: NotoKrL;
  position: absolute;
  bottom: 0;
  right: 0;
}

.first-tag {
  padding: 0;
  margin: 0 0 20px 85px;
}
.first-tag .btn {
  display: inline-block;
  width: 47%;
  padding: 5px 8px;
  border-radius: 100px;
  color: #1F457A;
  border: 1px solid #1F457A;
  margin: 3px;
  font-size: 15px;
  cursor: auto;
  text-align: center;
}
.first-tag .btn.on {
  color: #fff;
  border-color: #04006E;
  background-color: #1F457A;
}

/*guest*/
.guest {
  padding: 8px 10px;
  background-size: 15px 13px;
  overflow: hidden;
}
.guest.first {
  margin-top: 20px;
}
.guest > div {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  float: right;
  padding-left: 62px;
}
.guest .bubble {
  padding: 10px 13px;
  background-color: #7a7979;
  color: #fff;
  border-radius: 16px 16px 3px;
  -moz-border-radius: 16px 16px 3px;
  -webkit-border-radius: 16px 16px 3px;
  word-wrap: break-word;
  max-width: 100%;
  float: right;
}

.g_time {
  font-size: 10px;
  width: 50px;
  color: #666;
  position: absolute;
  bottom: 0;
  text-align: right;
  left: 0;
}

.type2 {
  width: 100%;
  height: 260px;
  margin: 10px auto;
}
.type2 img {
  margin: 0 0 15px 25px;
}
.type2 .title {
  border: none;
}
.type2 .sub_text {
  border-top: 1px solid #e3e3e3;
}

/* select Btn Area */
/* 최초 선택 */
.btnWrap_type1 {
  padding: 8px 16px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  background-color: #d4e5f1;
  text-align: center;
  font-size: 0;
}
.btnWrap_type1.mini {
  padding: 0px 16px 8px 16px;
  max-height: 70px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  z-index: 999;
  transition: all 0.4s;
}
.btnWrap_type1.mini .arrow-btn {
  display: block;
}
.btnWrap_type1.mini .arrow-btn button {
  background-image: url(../images/arrow_up_white.png);
}
.btnWrap_type1.mini.open {
  max-height: 250px;
}
.btnWrap_type1 .arrow-btn {
  display: none;
}
.btnWrap_type1 .arrow-btn button {
  display: inline-block;
  padding: 0;
  margin: 0;
  width: 80px;
  height: 25px;
  background: url(../images/arrow_up_white.png) no-repeat 50% 50% transparent;
  background-size: 80px 3px;
  font-size: 0;
  cursor: pointer;
}
.btnWrap_type1 .options {
  padding: 5px 0px;
  overflow: hidden;
}
.btnWrap_type1 .options .opt {
  display: block;
}
.btnWrap_type1 .options .opt ul li {
  width: 32.5%;
  float: left;
  margin: 0.3%;
  height: 95px;
}
.btnWrap_type1 .options .opt ul a {
  display: block;
  font-size: 15px;
  padding: 10px 0;
  background-color: #fff;
  border-radius: 10px;
  height: 100%;
  position: relative;
}
.btnWrap_type1 .options .opt ul a span {
  position: absolute;
  background: #38424b;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 10px;
  bottom: 10px;
  right: 20%;
}
.btnWrap_type1 .options .opt ul a.opt_01 {
  background-image: url(../images/opt_icon01.png);
  background-repeat: no-repeat;
  background-position: center 40px;
  background-size: 60px;
}
.btnWrap_type1 .options .opt ul a.opt_02 {
  background-image: url(../images/opt_icon02.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100px;
}
.btnWrap_type1 .options .opt ul a.opt_03 {
  background-image: url(../images/opt_icon03.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100px;
}
.btnWrap_type1 .options .opt ul a.opt_04 {
  background-image: url(../images/opt_icon04.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100px;
}
.btnWrap_type1 .options .opt ul a.opt_05 {
  background-image: url(../images/opt_icon05.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 80px;
}
.btnWrap_type1 .options .opt ul a.opt_06 {
  background-image: url(../images/opt_icon06.png);
  background-repeat: no-repeat;
  background-position: center 40px;
  background-size: 60px;
}

/* 이미 선택된 버튼 - 선택 불가 */
.btnWrap_type2 {
  font-size: 0;
  height: 37px;
  margin: 0 8px 16px 56px;
  overflow: hidden;
  position: relative;
  padding-right: 34px;
  /* 암 종류 모두보기 */
}
.btnWrap_type2.on {
  height: auto;
}
.btnWrap_type2 .btnType2 {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  color: #1F457A;
  border: 1px solid #1F457A;
  margin: 3px;
  font-weight: bold;
  font-size: 15px;
  cursor: auto;
  text-align: center;
}
.btnWrap_type2 .btnType2.on {
  color: #fff;
  border-color: #04006E;
  background-color: #1F457A;
}
.btnWrap_type2 .showAllBtn {
  position: absolute;
  top: 0;
  right: 0;
  text-indent: -999px;
  font-size: 0;
  border: 0;
  padding: 17px;
  border-radius: 50%;
  background: url("../images/chatbot_icon_showAllBtn.png") #1F457A no-repeat 50% 50%;
  background-size: 14px;
  transition: all 0.2s;
}
.btnWrap_type2 .showAllBtn.on {
  transform: rotate(180deg);
}

/* 대화 내 선택 - 선택 가능 */
.btnWrap_type3 {
  font-size: 0;
  margin: 0 23px;
}
.btnWrap_type3 .btnType3 {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  color: #556e87;
  border: 1px solid #8aa9c6;
  margin: 3px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  text-align: center;
}
.btnWrap_type3 .btnType3.on {
  color: #1f79e8;
  border-color: #1f79e8;
}
.btnWrap_type3:last-child {
  margin-bottom: 10px;
}

/*입력창*/
.text_wrap {
  width: 100%;
  background: white;
  height: 48px;
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: 10;
  border-top: 1px solid #ddd;
  z-index: 9999;
}

.textbox {
  overflow: hidden;
  height: inherit;
}
.textbox > .more, .textbox > input, .textbox > .send, .textbox > .voice {
  float: left;
}
.textbox > .more {
  position: absolute;
  left: 12px;
  top: 9px;
  width: 30px;
  height: 30px;
  cursor: default;
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
  overflow: hidden;
}
.textbox > .more a {
  height: 30px;
  display: block;
  font-size: 24px;
  text-align: center;
  line-height: 30px;
  color: #fff;
  background: url(../images/question.png) no-repeat;
  background-size: 25px;
  text-indent: -9999px;
  cursor: default;
}
.textbox > .more.on a {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.textbox > input {
  width: 100%;
  height: 49px;
  border-radius: 45px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  float: right;
  font-size: 15px;
  padding: 0 46px 0 55px;
  line-height: 37px;
}
.textbox > input::-moz-placeholder {
  color: #999999;
}
.textbox > input:-ms-input-placeholder {
  color: #999999;
}
.textbox > input::placeholder {
  color: #999999;
}
/*20230907 웹 접근성 조치*/
/*.textbox > input :focus {*/
/*  outline: none;*/
/*}*/
.textbox > .send {
  height: 100%;
  width: 50px;
  background: url(../images/chatbot_icon_send.png) center 50% no-repeat #8f8f8f;
  background-size: 22px;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
  position: absolute;
  right: 0;
}
.textbox > .voice {
  width: 42px;
  height: 45px;
  background: url(../images/voice.png) 11px 9px no-repeat;
  background-size: 18px 25px;
  cursor: pointer;
  border: none;
  text-indent: -9999px;
}
.textbox input::-moz-placeholder {
  font-size: 15px;
}
.textbox input:-ms-input-placeholder {
  font-size: 15px;
}
.textbox input::placeholder {
  font-size: 15px;
}

/*20230907 웹 접근성 조치*/
/*.textbox input:focus {*/
/*  outline: none;*/
/*}*/

textarea.chat-textarea {
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  width: 100%;
}

/* 자동완성 */
#autoComplete {
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  border-top: 1px solid #ddd;
  position: absolute;
  bottom: 48px;
  box-shadow: 0px 13px 20px black;
}
#autoComplete ul {
  padding: 0;
  margin: 0;
}
#autoComplete ul li a {
  padding: 0.8rem 1rem 0.8rem 47px;
  font-size: 0.9rem;
  background: url(../images/autocomplete.png) no-repeat left top;
  background-size: 26px;
  background-position: 13px;
  display: block;
}
#autoComplete ul li:hover, #autoComplete ul li:active, #autoComplete ul li:focus {
  background-color: #f9fafb;
}

/* 자세히 보기 */
.moreDetail_Wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  background-color: #fff;
  border-top: 1px solid #404b4b;
  padding: 0;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  overflow: auto;
  max-height: 240px;
}
.moreDetail_Wrap ul h5 {
  color: #0d7c78;
  font-weight: bold;
  padding: 10px 20px;
  font-size: 16px;
}
.moreDetail_Wrap ul li a {
  color: #484848;
  display: block;
  padding: 10px 20px;
  font-size: 16px;
}
.moreDetail_Wrap ul li a:hover, .moreDetail_Wrap ul li a:active, .moreDetail_Wrap ul li a:focus {
  display: block;
  background-color: #e7f5f5;
  color: #1e4746;
  font-weight: bold;
}
.moreDetail_Wrap.on {
  bottom: 48px;
}

/*qna (문답지식)*/
.qna {
  background: white;
}
.qna .banner {
  padding: 20px 13px 18px 13px;
  overflow: hidden;
  background-color: #fff6e0;
  border-bottom: 1px solid #e1e1e1;
}
.qna .banner .ban_tit {
  color: #444;
  font-size: 18.5px;
  font-weight: 700;
  margin-right: 5px;
  float: left;
}
.qna .banner .list_tab {
  font-size: 13px;
  float: right;
  padding-top: 3px;
  overflow: hidden;
}
.qna .banner .list_tab li {
  float: left;
  margin-left: 8px;
}
.qna .banner .list_tab li:first-child {
  margin-left: 0;
}
.qna .banner .list_tab li a {
  color: #666;
  font-size: 15.5px;
  font-weight: 700;
}
.qna .banner .list_tab li.on a {
  color: #e71b12;
}
.qna .ban_sub2 {
  width: 100%;
  height: 30px;
  border: 1px solid #e9e9e9;
  border-bottom: 1px solid #aaa;
  margin-top: 10px;
  padding-left: 7px;
  font-size: 12px;
  color: #555;
  font-weight: bold;
}
.qna .list_contents {
  padding: 5px 11.5px 0 11.5px;
}
.qna .list_con_01,
.qna .list_con_02,
.qna .list_con_03 {
  display: none;
}
.qna .list_con_01.on,
.qna .list_con_02.on,
.qna .list_con_03.on {
  display: block;
}
.qna .list_con .con_tit {
  font-size: 15.5px;
  font-weight: 600;
  color: #555;
  padding: 12px 0 5px 0;
  line-height: 138%;
  letter-spacing: -0.5px;
}
.qna .list_con .con_tit span {
  color: #eb1111;
  margin-right: 3px;
}
.qna .list_con .con_con {
  font-size: 14px;
  height: 35.5px;
  line-height: 132%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  margin-bottom: 3px;
  color: #7d7d7d;
  font-weight: normal;
}
.qna .list_con .con_con.on {
  height: auto;
  overflow: auto;
  text-overflow: unset;
  display: unset;
}
.qna .list_con .con_con.off {
  display: none;
}
.qna .list_con .num {
  text-align: right;
  padding: 6px 5px 7px 0;
  border-bottom: 1px solid #d9d9d9;
  font-size: 13px;
}
.qna .list_con .num span {
  color: #002174;
  font-weight: bold;
}
.qna #selectmenu-button {
  left: 0 !important;
  margin: 10px 0 0 0;
  padding: 7px 5px 7px 15px;
  width: 100%;
  border: none;
  box-shadow: 1px 2px 5px #f3efe4;
}
.qna .list .no_data {
  text-align: center;
  padding-top: 104px;
  background: url(../images/no-data.jpg) 32px 0 no-repeat;
  background-size: 79px 92px;
  width: 150px;
  height: 150px;
  font-size: 16px;
  color: #666;
  margin: 32% auto 0 auto;
}

/*page*/
.page_num {
  width: 100%;
  margin: 25px auto;
}
.page_num ul {
  overflow: hidden;
  display: table;
  margin: 0 auto;
  font-size: 0;
}
.page_num ul li {
  display: inline-block;
  margin: 0 4px;
}
.page_num ul li a {
  font-size: 14px;
  color: #000000;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}
.page_num ul li a.on {
  color: #0052A0;
  font-weight: bold;
  border-color: #0052A0;
}
.page_num .pprev,
.page_num .next,
.page_num .nnext {
  width: 16px;
}
.page_num ul .pprev a,
.page_num .prev a,
.page_num .next a,
.page_num .nnext a {
  width: 14px;
  height: 14px;
}
.page_num ul a img {
  width: 100%;
  display: inline-block;
  margin-top: 2px;
}

/*dictionary (용어사전)*/
.dictionary {
  background: white;
}
.dictionary .dic_top {
  background-color: #1c82de;
  background: linear-gradient(to right, #003C83, #003368);
  padding: 20px 13px 10px;
  overflow: hidden;
}
.dictionary .banner {
  height: auto;
  overflow: hidden;
  color: #fff;
}
.dictionary .banner .ban_tit {
  font-size: 18px;
  font-weight: 700;
}
.dictionary .banner .ban_sub1 {
  font-size: 13px;
  padding: 3px 0 5px;
}
.dictionary .keword_w {
  margin-top: 8px;
}
.dictionary .keword {
  overflow: hidden;
  color: #555;
  font-weight: bold;
  font-size: 13px;
}
.dictionary .keword > ul {
  overflow: hidden;
  font-size: 0;
}
.dictionary .keword > ul li {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  cursor: pointer;
  margin: 0 4px 4px 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.13);
  line-height: 32px;
  color: #fff;
  border-radius: 10px;
}
.dictionary .keword > ul li:last-child {
  margin-right: 0;
}
.dictionary .keword > ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: bold;
  font-size: 14px;
}
.dictionary .keword > ul li.on {
  background-color: #fff;
}
.dictionary .keword > ul li.on a {
  color: #003368;
}
.dictionary .keword > ul li.total_keyword {
  display: inline-block;
  text-align: center;
  cursor: pointer;
  font-size: 15px;
  position: absolute;
  top: 0;
  right: 10px;
  margin: 0;
  padding: 0 9px;
}
.dictionary .keword > ul li.total_keyword.on {
  padding-left: 26px;
  background: url("../images/dic_iocn_check2.png") #fff no-repeat 5px 50%;
  background-size: 16px;
}
.dictionary .keword .search_div {
  float: right;
  width: 30%;
}
.dictionary .keword .search_div input {
  border-radius: 10px;
  padding: 10px 10px;
  width: 100%;
}
.dictionary .keword .search_div a {
  background: url(../images/sub/sch_ico.png) no-repeat center;
  position: absolute;
  right: 10px;
  background-size: 50%;
  text-indent: -9999px;
  width: 33px;
  height: 33px;
}
.dictionary .keword .no_data {
  text-align: center;
  padding-top: 104px;
  background: url(../images/no-data.jpg) 32px 0 no-repeat;
  background-size: 79px 92px;
  width: 150px;
  height: 150px;
  font-size: 16px;
  color: #666;
  margin: 32% auto 0 auto;
}
.dictionary .english2 {
  /* margin-left:calc(14.5% + 3px); */
  margin-top: -1px;
}
.dictionary button {
  border: none;
  text-indent: -9999px;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 13px;
  right: 10px;
  background: url("../images/chatbot_icon_showAllBtn.png") #aaa no-repeat 50% 50%;
  background-size: 14px;
}

.keword_list {
  font-size: 15px;
  margin-bottom: 10px;
  overflow: auto;
}
.keword_list ul li {
  border-bottom: 1px solid #e1e1e1;
  background-color: #f5f5f5;
  color: #40495f;
  overflow: hidden;
  padding: 15px 23px;
  position: relative;
}
.keword_list ul li.on {
  background-color: #fff;
  color: #313131;
}
.keword_list ul li a {
  width: 100%;
  display: inline-block;
  padding: 14px 0;
  padding-left: 14px;
}
.keword_list ul li a:hover, .keword_list ul li a:active, .keword_list ul li a:focus {
  color: #516bb4;
}
.keword_list ul li h5 {
  font-size: inherit;
  color: inherit;
  display: inline-block;
  font-size: 17px;
}
.keword_list ul li h5.on {
  padding-right: 22px;
  background: url(../images/dic_iocn_check.png) no-repeat right 50%;
  background-size: 18px;
}
.keword_list ul li > div {
  display: none;
}
.keword_list ul li > div.on {
  display: block;
  color: #4e5d68;
  font-weight: 100;
  line-height: 140%;
  margin-top: 10px;
}
.keword_list .list_more.on {
  transform: rotate(180deg);
  background-color: #eee;
}
.keword_list .list_close {
  display: none;
}
.keword_list .list_close.on {
  background: url(../images/d_close.png) 4px 5px no-repeat;
  background-size: 9.5px 9.5px;
}

/*상품안내*/
.goods {
  background-color: white;
}
.goods .g_wrap1,
.goods .g_wrap2,
.goods .g_wrap3 {
  display: none;
}
.goods .g_wrap1.on,
.goods .g_wrap2.on,
.goods .g_wrap3.on {
  display: block;
}
.goods .banner {
  padding: 20px 13px 18px 13px;
  overflow: hidden;
  background-color: #fff6e0;
  border-bottom: 1px solid #e1e1e1;
}
.goods .banner .ban_tit {
  color: #444;
  font-size: 18.5px;
  font-weight: 700;
  margin-right: 5px;
  float: left;
}
.goods .banner .ban_sub1 {
  font-size: 13px;
  float: right;
  padding-top: 3px;
  overflow: hidden;
}
.goods .banner .ban_sub1 li {
  float: left;
  margin-left: 7.5px;
}
.goods .banner .ban_sub1 li:first-child {
  margin-left: 0;
}
.goods .banner .ban_sub1 li a {
  color: #666;
  font-size: 15.5px;
  font-weight: 700;
}
.goods .banner .ban_sub1 li.on a {
  color: #e71b12;
}
.goods .banner .ban_sub2 {
  width: 100%;
  height: 30px;
  border: 1px solid #e9e9e9;
  border-bottom: 1px solid #aaa;
  margin-top: 10px;
  padding-left: 7px;
  font-size: 12px;
  color: #555;
  font-weight: bold;
}
.goods .glist_wrap {
  padding: 10px 5px 5px 5px;
}
.goods .glist_contents {
  padding: 10px 5px 10px 18px;
  border-bottom: 1px solid #e1e1e1;
}
.goods .glist1 {
  padding-top: 11px;
}
.goods .glist_contents .g_title {
  font-size: 17px;
  margin-bottom: 5px;
}
.goods .glist_contents .g_title p:first-child {
  text-indent: -13px;
  font-weight: 700;
  color: #234dc6;
  width: 80%;
  display: inline-block;
}
.goods .glist_contents .g_title > span {
  font-size: 13px;
  color: #333;
  font-weight: bold;
  letter-spacing: -0.5px;
  border-bottom: 1px solid #444;
  text-align: right;
  width: 57px;
  display: inline-block;
  float: right;
}
.goods .glist_contents .g_title .num {
  margin-right: 6px;
  color: #e71b12;
  font-size: 15px;
}
.goods .glist_contents .g_contents {
  line-height: 155%;
}
.goods .glist_contents .g_contents p:first-child {
  font-size: 14px;
  color: #494949;
  margin-bottom: 5px;
  height: 37px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 134%;
}
.goods .glist_contents .g_contents p:first-child + p {
  font-size: 12px;
  font-weight: 700;
  color: #518f14;
  padding-bottom: 4px;
}
.goods .glist_contents .g_contents .keyword span {
  font-size: 11px;
  border: 1px solid #ddd;
  padding: 2.5px 4.5px;
  border-radius: 3.5px;
  color: #777;
  font-weight: 600;
  margin-right: 1.5px;
}
.goods .glist_contents .g_contents .keyword + p {
  font-size: 11px;
  color: #777;
  padding-top: 4px;
  font-weight: 600;
}
.goods #car-type-button {
  left: 0 !important;
  margin: 10px 0 0 0;
  padding: 7px 5px 7px 15px;
  width: 100%;
  border: none;
  box-shadow: 1px 2px 5px #f3efe4;
}
.goods .ui-controlgroup {
  display: block;
}

/*문답지식2P------------------------------------------------------------------------------------------------------*/
#qna_wrap {
  background-color: #f3f3f3;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  position: relative;
}

.qna_header {
  width: 100%;
  height: 53px;
  background-color: white;
  overflow: hidden;
  border-bottom: 2px solid #d1d1d1;
  position: fixed;
  top: 0;
}
.qna_header h2 {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 17px;
}
.qna_header .prev_page {
  text-indent: -9999px;
  border: none;
  width: 25px;
  height: 30px;
  float: left;
  margin: 15px 0 0 20px;
  background: url(../images/prev_page.png) 4px 1px no-repeat;
  background-size: 15px 20px;
}
.qna_header .font_size {
  text-indent: -9999px;
  border: none;
  width: 22px;
  height: 20px;
  float: right;
  margin: 15px 20px 0 0;
  background: url(../images/font_2.png) no-repeat;
  background-size: 22px 20px;
}

.qna_con {
  background-color: white;
  width: 92%;
  padding: 15px;
  margin: 65px auto 15px auto;
  border-radius: 10px;
}
.qna_con .title .con_title {
  border: 1px solid #222572;
  padding: 2px 9px;
  border-radius: 13px;
  color: #222572;
  display: inline-block;
  font-weight: 700;
  margin: 3px 0 13px 0;
  font-size: 12px;
}
.qna_con .title .con_title + p {
  font-size: 18px;
  font-weight: 800;
  color: #454545;
  line-height: 132%;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 11px;
  margin-bottom: 18px;
}
.qna_con .qna_text {
  line-height: 165%;
  font-size: 14px;
  height: 100%;
  overflow: auto;
}
.qna_con .qna_text .qna_text p {
  margin-bottom: 20px;
}

.web_title {
  display: none;
}

/*용어사전2P------------------------------------------------------------------------------------------------------*/
#dic_wrap {
  display: block;
  overflow: hidden;
  margin-top: 60px;
}

.dic_header {
  height: 53px;
  background-color: white;
  overflow: hidden;
  border-top: 1px solid #5f94d6;
}
.dic_header h2 {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5b5b5b;
}
.dic_header .prev_page {
  text-indent: -9999px;
  border: none;
  width: 25px;
  height: 30px;
  float: left;
  margin: 15px 0 0 20px;
  background: url(../images/prev_page.png) 4px 1px no-repeat;
  background-size: 14px;
}
.dic_header .font_size {
  text-indent: -9999px;
  border: none;
  width: 22px;
  height: 20px;
  float: right;
  margin: 15px 20px 0 0;
  background: url(../images/font_2.png) no-repeat;
  background-size: 22px 20px;
}

.dic_con {
  background-color: white;
  width: 92%;
  padding: 15px;
  margin: 65px auto 15px auto;
  border-radius: 10px;
}
.dic_con .dic_title p {
  font-size: 18px;
  font-weight: 800;
  color: #454545;
  line-height: 132%;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 15px;
  margin: 10px 0 18px 0;
  text-align: center;
}
.dic_con > .dic_text {
  line-height: 165%;
  font-size: 15px;
  overflow: auto;
}
.dic_con > .dic_text .line {
  font-weight: 700;
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 1px;
}
.dic_con > .dic_text .red {
  font-weight: 800;
  color: #e71b12;
}
.dic_con > .dic_text p {
  margin-bottom: 20px;
}

/*상품추천------------------------------------------------------------------------------------------------------*/
.swiper-container {
  width: 100%;
  height: 192px;
  margin: 10px auto;
}
.swiper-container.sw_2 {
  height: 237px;
}
.swiper-container.sw_2 .title {
  text-align: center;
  font-size: 17.5px;
  border-bottom: 1px solid #e1e1e1;
  display: block;
  padding-bottom: 10px;
  width: 100%;
  margin: 0 0 5px 0;
  border: none;
}
.swiper-container.sw_2 .sub_text {
  width: 100%;
}

.swiper-slide {
  text-align: left;
  font-size: 16px;
  background: #fff;
  flex-direction: column;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px !important;
  border-radius: 5px;
}
.swiper-slide:first-child {
  margin-left: 72px;
}
.swiper-slide .num {
  color: white;
  background-color: #e61a11;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 20px;
  padding-top: 4px;
  margin: 0 0 8px 0;
}
.swiper-slide > div {
  padding: 10px 18px;
  text-align: center;
  width: 200px;
}
.swiper-slide .title {
  text-align: center;
  font-size: 17.5px;
  border-bottom: 1px solid #e1e1e1;
  display: block;
  padding-bottom: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: break-word;
  overflow: hidden;
}
.swiper-slide .sub_text {
  font-size: 13px;
  color: #555;
  padding-top: 10px;
  line-height: 135%;
  width: 80%;
  margin: 0 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  line-height: 1.5em;
  height: 8em;
}
.swiper-slide > a {
  border-top: 1px solid #e3e3e3;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 11px 0 7px 0;
  font-size: 14px;
  color: #3c5ebf;
  background: url(../images/more_link.png) 95% 13px no-repeat;
  background-size: 9px 14px;
}

/*대화유형(6)---------------------------------------------------------------------------------------*/
.type_6 div div p.title {
  border-bottom: none;
}

.type_6 div div p.sub_text {
  width: 90%;
}

/*검색---------------------------------------------------------------------------------------*/
.search_box .input_wrap {
  width: calc(100% - 77px);
  height: 32px;
  float: left;
  border-radius: 25px;
  background-color: #F1F1F1;
  margin: 12px 0 0 19px;
  border: 1px solid white;
}
.search_box input,
.search_box p a {
  vertical-align: middle;
}
.search_box input {
  border: none;
  background-color: #F1F1F1;
  width: calc(100% - 55px);
  height: 28px;
  border-radius: 25px;
}
.search_box .search_in {
  padding-left: 10px;
  float: left;
}
.search_box p a {
  text-indent: -9999px;
  height: 25px;
  width: 25px;
  display: inline-block;
  background-size: 21px 20px;
  float: right;
  margin: 5px 10px 0 0;
}

.ui-widget input.search_in {
  font-size: 13px;
  color: #444;
  padding-left: 5px;
  margin-left: 12px;
  margin-top: 2px;
}

/*검색2*/
.search_contents {
  padding: 10px 20px;
  position: absolute;
  top: 101px;
  height: calc(100% - 101px);
  overflow: auto;
  width: 100%;
}
.search_contents .con {
  margin-top: 20px;
  padding-bottom: 20px;
}
.search_contents > div .title {
  overflow: hidden;
  color: #444;
  border-bottom: 1px solid #777;
  padding-bottom: 7px;
}
.search_contents > div .title p {
  float: left;
  font-size: 17px;
  font-weight: bold;
  padding-top: 3px;
}
.search_contents > div .title .num {
  font-size: 15px;
  padding-left: 3px;
  font-size: 14px;
  display: inline-block;
  padding-top: 5px;
}
.search_contents > div .title .num + button {
  padding: 3px 20px 3px 10px;
  display: inline-block;
  float: right;
  border: 1px solid #d1d1d1;
  border-radius: 15px;
  font-size: 12px;
  background: url(../images/more_off.png) no-repeat;
  background-position: 47px 5px;
  background-size: 9px 9px;
  color: #c7c7c7;
}
.search_contents > div .title .num + button.on {
  padding: 2px 20px 3px 10px;
  display: inline-block;
  float: right;
  border: 1px solid #a5a5a5;
  border-radius: 15px;
  font-size: 12px;
  background: url(../images/more_on.png) no-repeat;
  background-position: 47px 5px;
  background-size: 9px 9px;
  color: #333;
}
.search_contents .text {
  padding: 15px 5px 12px 5px;
  border-bottom: 1px solid #e1e1e1;
  color: #353535;
}
.search_contents .text.off {
  display: none;
}
.search_contents .text > p {
  line-height: 140%;
  font-size: 15px;
}
.search_contents .text > p:first-child + p {
  color: #888;
}
.search_contents .text span {
  color: #d11010;
}
.search_contents .search_none {
  padding-top: 15px;
  font-size: 15px;
  color: #999;
  text-align: center;
  padding-bottom: 10px;
}

/*fax, email modal---------------------------------------------------------------------------*/
.fax_email {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  background-color: white;
  padding-top: 13px;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  display: none;
}
.fax_email .title {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin: 15px 0 16px 0;
}
.fax_email .selectmenu {
  font-size: 17px;
  border: none;
  border-bottom: 1px solid #d5d5d5;
  padding-bottom: 8px;
  width: 83%;
  margin: 18px 0 5px 23px;
  color: #444;
}
.fax_email input {
  width: 83%;
  border-bottom: 1px solid #d5d5d5;
  height: 29px;
  margin-left: 24px;
  padding: 0 0 5px 10px;
  margin-top: 19px;
}
.fax_email input::-moz-placeholder {
  font-size: 17px;
  color: #999;
}
.fax_email input:-ms-input-placeholder {
  font-size: 17px;
  color: #999;
}
.fax_email input::placeholder {
  font-size: 17px;
  color: #999;
}
.fax_email .send_btn {
  margin-top: 10px;
}
.fax_email .f_send,
.fax_email .f_close {
  width: 50%;
  display: inline-block;
  text-align: center;
  height: 45px;
  padding: 13px 0 16px 0;
  border-top: 1px solid #ddd;
  cursor: pointer;
  font-size: 17px;
  margin-top: 27px;
  font-weight: 700;
}
.fax_email a.f_send {
  border-right: 1px solid #ddd;
  color: #f7fbff;
  background-color: #e71b12;
}
.fax_email a.f_close {
  background-color: #f2f2f2;
  color: #555;
}

/*hamburger_menu---------------------------------------------------------------------------*/
.ham_top {
  position: relative;
  padding: 16px 48px 16px 67px;
  background: url(../images/login.png) no-repeat 16px 50% #fff;
  background-size: 37px 45px;
}

.ham_menu {
  width: 88%;
  max-width: 750px;
  height: 100%;
  background-color: #0052a0;
  position: fixed;
  overflow: auto;
  top: 0;
  left: -750px;
  z-index: 150;
  display: none;
}
.ham_menu .ham_title {
  font-size: 21px;
  font-weight: 700;
  color: #000;
}
.ham_menu .ham_title a {
  display: inline-block;
}
.ham_menu .ham_subtitle {
  font-size: 14px;
  color: #333;
  padding-top: 8px;
}
.ham_menu .logout {
  position: absolute;
  right: 48px;
  top: 12px;
  background: #000000;
  border-radius: 30px;
  color: #ffffff;
  padding: 7px 10px;
  font-size: 13px;
}
.ham_menu .ham_c {
  float: right;
  margin-right: 2px;
  border: none;
  width: 30px;
  height: 24px;
  position: absolute;
  top: 18px;
  right: 11px;
  background: transparent;
}
.ham_menu .ham_close {
  width: 20px;
  height: 20px;
}
.ham_menu .ham_contWrap {
  padding: 16px;
}
.ham_menu .ham_menu_list li a {
  padding: 19px 0 14px 48px;
  font-size: 18px;
  font-weight: 500;
  display: block;
  color: #fff;
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 0 50%;
}
.ham_menu .ham_menu_list li a.ico1 {
  background-image: url(../images/ham_menu_ico_01.png);
}
.ham_menu .ham_menu_list li a.ico2 {
  background-image: url(../images/ham_menu_ico_02.png);
}
.ham_menu .ham_menu_list li a.ico3 {
  background-image: url(../images/ham_menu_ico_03.png);
}
.ham_menu .ham_menu_list li a.ico4 {
  background-image: url(../images/ham_menu_ico_04.png);
}
.ham_menu .ham_menu_list li a.ico5 {
  background-image: url(../images/ham_menu_ico_05.png);
}
.ham_menu .ham_menu_list li a.ico6 {
  background-image: url(../images/ham_menu_ico_06.png);
}
.ham_menu .ham_menu_list li a.ico7 {
  background-image: url(../images/ham_menu_ico_07.png);
}
.ham_menu .ham_menu_list li a.ico8 {
  background-image: url(../images/ham_menu_ico_08.png);
}
.ham_menu .ham_menu_list li a.ico9 {
  background-image: url(../images/ham_menu_ico_09.png);
}
.ham_menu .ham_menu_list li a.ico10 {
  background-image: url(../images/ham_menu_ico_10.png);
}
.ham_menu .ham_menu_list li a.ico11 {
  background-image: url(../images/ham_menu_ico_11.png);
}
.ham_menu .ham_sublist {
  margin: 40px 0 0;
}
.ham_menu .ham_sublist li {
  margin-bottom: 10px;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  background: url("../images/menu_icon_arrow.png") no-repeat 95% 50%;
  background-color: #f4f4f4;
  background-size: 9px;
}
.ham_menu .ham_sublist li a {
  display: block;
  padding: 18px 0 18px 50px;
  font-size: 17px;
  background-repeat: no-repeat;
  background-size: 25px;
  background-position: 10px 50%;
  color: #283747;
}
.ham_menu .ham_sublist li:first-child a {
  background-image: url(../images/menu_icon_6.png);
}
.ham_menu .ham_sublist li:nth-child(2) a {
  background-image: url(../images/menu_icon_7.png);
}
.ham_menu .ham_sublist li:nth-child(3) a {
  background-image: url(../images/menu_icon_8.png);
}
.ham_menu .ham_subtop {
  display: block;
  padding: 0;
  margin: 0;
  border-top: solid 1px #0052a0;
  background-color: #E9F1F7;
}
.ham_menu .ham_subtop:after {
  display: block;
  clear: both;
  content: "";
}
.ham_menu .ham_subtop li {
  display: block;
  float: left;
  width: 50%;
  border-left: solid 1px #0052a0;
}
.ham_menu .ham_subtop li:first-child {
  border-left: 0;
}
.ham_menu .ham_subtop li a {
  font-size: 16px;
  display: block;
  height: 50px;
  line-height: 50px;
  color: #000;
  text-align: center;
}
.ham_menu .ham_subtop li.cel1 {
  width: 10%;
}
.ham_menu .ham_subtop li.cel2 {
  width: 20%;
  background: url(../images/cel2.png) no-repeat center;
  text-indent: -9999px;
  background-size: 25px;
}
.ham_menu .ham_subtop li.cel3 {
  width: 30%;
}
.ham_menu .ham_subtop li.cel4 {
  width: 40%;
}
.ham_menu .ham_subtop li.cel5 {
  width: 50%;
}
.ham_menu .ham_subtop li.cel6 {
  width: 60%;
}
.ham_menu .ham_subtop li.cel7 {
  width: 70%;
}
.ham_menu .ham_subtop li.cel8 {
  width: 80%;
}
.ham_menu .ham_subtop li.cel9 {
  width: 90%;
}
.ham_menu .ham_subtop li.cel10 {
  width: 100%;
}

/*popup*/
.pop_up {
  background-color: #fff;
  border: 1px solid #d4e2ed;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.05);
  display: none;
}
.pop_up.on {
  display: block;
}
.pop_up.popType1 {
  width: 70%;
  padding: 15px 15px;
  border-radius: 10px;
}

.popup_close {
  position: absolute;
  top: 15px;
  right: 17px;
  width: 15px;
  height: 15px;
  background: url("../images/close_gray.png") no-repeat 50% 50%;
  background-size: contain;
  font-size: 0;
  text-indent: -9999px;
}

.popup_btnArea {
  justify-content: space-between;
  display: flex;
}
.popup_btnArea .popup_btn {
  display: flex;
  padding: 8px 0;
  width: 48%;
  justify-content: center;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
}
.popup_btnArea .popup_btn.btn_gray {
  color: #737373;
  background-color: #e4e4e4;
}
.popup_btnArea .popup_btn.btn_blue {
  color: #fff;
  background-color: #0090ff;
}

.popType1 .popTitle {
  font-size: 18px;
  font-weight: bold;
  color: #25375b;
  line-height: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d1d1d1;
}
.popType1 .popup_conts {
  padding: 14px 3px 20px;
}
.popType1 .popup_conts .main_text {
  font-size: 18px;
  color: #5a5a5a;
}
.popType1 .popup_conts .sub_text {
  color: #6f6f6f;
  font-size: 15px;
  margin-top: 10px;
  line-height: 140%;
}

/*슬라이드 팝업 slider popup coachmark*/
.coachmark {
  float: right;
  width: 30px;
  height: 29px;
  margin: 16px 21px 0 0;
  background-image: url(../images/coachmark/coachmark.png);
  cursor: pointer;
}
.coachmark > span {
  position: absolute !important;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#main_modal {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
#main_modal .list-pops {
  width: 1000px;
  position: fixed;
  border-radius: 20px;
  top: calc(50% - 20px);
  left: 50%;
  transform: translate(-50%, -50%);
}
#main_modal .close_btn {
  cursor: pointer;
  text-align: center;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 999;
  transition: background-color 0.2s linear;
}
#main_modal .close_btn > span {
  width: 26px;
  height: 26px;
  margin: 0.5rem;
  display: block;
  overflow: hidden;
  text-indent: -9999999px;
  background-image: url(../images/sub/times-solid.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#slide {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
}
#slide .sp-mask {
  border-radius: 20px 20px 0 0;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  isolation: isolate;
}
#slide .sp-arrows .sp-previous-arrow {
  left: -40px;
}
#slide .sp-arrows .sp-next-arrow {
  right: -40px;
}
#slide .sp-thumbnail {
  display: inline-block;
  height: 55px;
  line-height: 55px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
#slide .sp-thumbnails > div:last-child .sp-thumbnail {
  border-right: none;
}
#slide .sp-thumbnails .sp-thumbnail {
  width: 100%;
}
#slide .sp-bottom-thumbnails .sp-selected-thumbnail .sp-thumbnail {
  background: #FFD800;
}
#slide .sp-bottom-thumbnails .sp-selected-thumbnail:before, #slide .sp-bottom-thumbnails .sp-selected-thumbnail:after {
  display: none;
}
#slide .sp-bottom-thumbnails.sp-has-pointer {
  margin-top: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
#slide .sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail {
  position: static;
  top: auto;
}
#slide .sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail-container {
  margin: 0 5px;
  border-radius: 50%;
  background-color: #d4d4d4;
}
#slide .sp_bottomset {
  margin-top: 0;
  position: absolute;
  bottom: -41px;
  left: 50%;
  width: 100%;
  background: #f4f4f4;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  border-top: 1px solid #ddd;
  overflow: hidden;
}
#slide .sp_bottomset > a {
  width: 50%;
  float: left;
  text-align: center;
  height: 40px;
  line-height: 40px;
  font-weight: 700;
  font-size: 0.8rem;
}
#slide .sp_bottomset > a:first-child {
  border-right: 1px solid #afafaf;
}

/*컨텐츠 이미지 여러장 표출 multiimg*/
.chatbot .adviser .type_media {
  box-shadow: none;
  width: 90%;
  max-width: 300px;
  border-radius: 5px;
  display: block;
  float: none;
  background: none;
}
.chatbot .adviser .type_media img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-height: 600px;
}
.chatbot .adviser ul.adviser_list li.multiimg {
  overflow: hidden;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  margin-bottom: 5px;
  border: 0;
}
.chatbot .adviser ul.adviser_list li.multiimg > a {
  display: none;
  position: relative;
}
.chatbot .adviser ul.adviser_list li.multiimg > a:first-child {
  display: block;
  text-align: center;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > span.count {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  background: #000;
  padding: 11px 0;
  color: #ffffff;
  border-radius: 5px;
  width: 45px;
  height: 45px;
  text-align: center;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div {
  display: block;
  width: auto;
  position: relative;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div .hidden {
  position: absolute;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div > img {
  padding: 0;
  width: 100%;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div > span.playtype {
  display: inline-block;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: url(../images/ico_video.png) no-repeat left top;
  width: 80px;
  height: 80px;
  z-index: 999;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div > span.playtype.gallery {
  background: url(../images/ico_gallery.png) no-repeat left top;
}
.chatbot .adviser ul.adviser_list li.multiimg > a > div > span.thumb_dim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  filter: alpha(opacity=40);
  background-color: #000;
}

/*만족도*/
.satis_pop_up {
  width: 280px;
  margin: 0 auto;
  background-color: white;
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  display: none;
}
.satis_pop_up ul {
  overflow: hidden;
  margin: -10px 0 20px 60px;
}
.satis_pop_up ul li {
  float: left;
  padding-left: 5px;
  text-indent: -9999px;
  width: 31px;
  height: 30px;
  background: url(../images/star_off.jpg) no-repeat;
}
.satis_pop_up ul li.on {
  background: url(../images/star_on.jpg) no-repeat;
}
.satis_pop_up ul li:first-child {
  padding-left: 0;
}

/*음성*/
.voice_intro {
  width: 300px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
  background: url(../images/voice_2.png) center 0 no-repeat;
  background-size: 88px 88px;
}
.voice_intro p {
  padding-top: 105px;
  color: white;
  font-size: 19px;
  text-align: center;
  line-height: 140%;
}
.voice_intro .voice_btn {
  margin: 12px auto;
  width: 255px;
}
.voice_intro .voice_btn span a {
  color: white;
  display: inline-block;
  padding: 8px 48px;
  border: 1px solid white;
  border-radius: 20px;
  font-size: 14px;
}
.voice_intro .voice_btn span:first-child a {
  margin-right: 3px;
  border: 1px solid #ff950e;
  color: #ff9712;
  font-weight: bold;
}

.voice_textbox1,
.voice_textbox2 {
  width: 100%;
  height: 150px;
  position: absolute;
  bottom: 0;
  background-color: white;
  box-shadow: 0 2px 6px #e0e1d7;
}
.voice_textbox1 .voice_1,
.voice_textbox2 .voice_1 {
  background: url(../images/voice_move.gif) no-repeat;
  background-size: 60px 54px;
  background-position: 20px 28px;
  height: 105px;
}
.voice_textbox1 .close,
.voice_textbox2 .close {
  background: url(../images/vo_close.png) 2.5px 2.5px no-repeat;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 15px 15px;
  position: absolute;
  top: 15px;
  right: 15px;
}
.voice_textbox1 .close a,
.voice_textbox2 .close a {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-indent: -9999px;
}
.voice_textbox1 .text_go,
.voice_textbox2 .text_go {
  height: 45px;
  width: 100%;
  color: white;
  font-size: 15px;
  text-align: center;
  padding-top: 15px;
  background: url(../images/voice_go.png) no-repeat #454444;
  background-position: calc(100% - 15px) 13px;
  background-size: 13px 20px;
}

.voice_textbox1 .voice_1 p {
  font-size: 20px;
  color: #888;
  font-weight: bold;
  padding: 43px 94px;
}
.voice_textbox1 .text_go p a {
  color: white;
}

.voice_textbox2 {
  display: table;
  display: block;
}
.voice_textbox2 .voice_1 {
  display: table-cell;
  vertical-align: middle;
}
.voice_textbox2 .voice_1 p {
  font-size: 20px;
  color: #555;
  font-weight: bold;
  padding: 0 42px 0 94px;
  display: table;
  line-height: 140%;
  padding-top: 3px;
}
.voice_textbox2 .text_go {
  background: url(../images/voice_go.png) no-repeat #fd7102;
  background-position: calc(100% - 15px) 13px;
  background-size: 13px 20px;
}
.voice_textbox2 .text_go a {
  color: white;
  display: inline-block;
}

/*callcenter*/
.call_wrap {
  padding: 33px 15px 24px 13px;
}

.call_center {
  width: 300px;
  height: 240px;
  background-color: white;
  margin: 0 auto;
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 200;
}
.call_center .title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 25px;
}
.call_center .title + p, .call_center .title + p + p {
  font-size: 18.5px;
  margin: 0 0 10px 10px;
}
.call_center .title + p a, .call_center .title + p + p a {
  color: #425da9;
  font-weight: 600;
  border-bottom: 1px solid #c2c3c6;
  letter-spacing: -0.8px;
}
.call_center .sub_text {
  font-size: 14.5px;
  line-height: 140%;
  color: #585858;
  margin-left: 13px;
  display: inline-block;
  margin-top: 10px;
}
.call_center .sub_text span {
  color: red;
  margin-right: 2px;
}
.call_center .call_btn {
  background-color: #e71b12;
  display: block;
  width: 50%;
  height: 45px;
  color: white;
  font-size: 16px;
  text-align: center;
  padding-top: 14px;
  float: left;
  border-top: 1px solid #d9d9d9;
}
.call_center span.call_btn.btnClose {
  background-color: #f2f2f2;
  color: #333;
  font-weight: 600;
}

/*도움말*/
.help_contents {
  padding-bottom: 40px;
  /* 도움말 비주얼 영역 */
  /* 도움말 컨텐츠 */
}
.help_contents .inner {
  max-width: 740px;
  margin: 0 auto;
  height: inherit;
  overflow: hidden;
}
.help_contents img {
  width: 100%;
}
.help_contents .help_intro {
  background: #1c81de;
  background-image: url("../images/help_webBg_01.png"), url("../images/help_webBg_02.png"), linear-gradient(47deg, #1c81de, 41%, #48a5e8);
  background-repeat: no-repeat, no-repeat, repeat;
  background-position: left bottom, right top;
  background-size: 60%, 40%, contain;
  padding-top: 58px;
}
.help_contents .hele_introText {
  color: #fff;
  text-align: center;
}
.help_contents .hele_introText h4 {
  font-size: 30px;
  font-weight: normal;
  line-height: 28px;
}
.help_contents .hele_introText p {
  word-break: keep-all;
  font-size: 15px;
  line-height: 150%;
  margin: 22px 10px 0;
}
.help_contents .hele_introImg {
  padding: 0 15%;
  margin-top: 30px;
}
.help_contents .help_conBox {
  padding: 35px 22px 0;
}
.help_contents .help_conBox .help_conTitle {
  color: #5a5a5a;
  font-size: 23px;
}
.help_contents .help_conBox .help_box {
  margin: 25px auto 60px;
}
.help_contents .help_conBox .help_box.help_box_last {
  margin-bottom: 20px;
}
.help_contents .help_conBox .help_box .num {
  display: none;
}
.help_contents .help_conBox .help_box .main_text {
  color: #1c82de;
  font-size: 21px;
  margin: 17px 0 8px;
  font-weight: bold;
}
.help_contents .help_conBox .help_box .sub_text {
  color: #424242;
  font-size: 16px;
  word-break: keep-all;
  line-height: 140%;
}
.help_contents .help_conBox .help_imgBox {
  font-size: 0;
  background-color: #f2f8fd;
  padding: 30px 0 20px;
  margin-top: 25px;
  text-align: center;
}
.help_contents .help_conBox .imgBox {
  font-size: 14px;
  color: #4e618b;
  width: 70%;
  display: inline-block;
  margin-bottom: 20px;
}
.help_contents .help_conBox .imgBox span {
  display: inline-block;
  margin-top: 20px;
  font-weight: bold;
}

/* 도움말 버튼 */
.help_btn a {
  display: block;
  color: #fff;
  background: url("../images/icon_arrow.png") #1398ff no-repeat 96% 50%;
  padding: 12px 0;
  border-radius: 4px;
  text-align: center;
  font-weight: bold;
  background-size: 8px;
}

/*error*/
.error_contents {
  text-align: center;
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.error_contents .error_img {
  width: 20%;
  margin: 0 auto 20px;
}
.error_contents .error_img img {
  width: 100%;
}
.error_contents .error_text .main_text {
  font-size: 23px;
  color: #5b5b5b;
  display: inline-block;
  margin: 0 auto;
  line-height: 135%;
  letter-spacing: -0.5px;
  padding-bottom: 9px;
  font-weight: 700;
}
.error_contents .error_text .main_text span {
  color: #1f84de;
}
.error_contents .error_text .sub_text {
  font-size: 14px;
  color: #5b5b5b;
  margin: 0 auto;
  line-height: 157%;
  word-break: keep-all;
  width: 80%;
}

.error_btn {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 19px;
}
.error_btn span {
  margin-right: 2%;
}
.error_btn span a {
  display: block;
  font-size: 17px;
  border-radius: 4px;
  padding: 10px 0;
  letter-spacing: -0.5px;
  background-color: #1398ff;
  color: #fff;
  text-align: center;
}
.error_btn .home a {
  border: 1.5px solid #ff6d00;
  color: #ff6d00;
  background-color: #fff7f0;
}
.error_btn .prev_page {
  margin-right: 0;
}

/*search2*/
.search2_box {
  overflow: hidden;
}
.search2_box p {
  float: left;
  text-indent: -9999px;
  width: 15px;
  height: 20px;
  float: left;
  margin: 18px 0 0 20px;
  background: url(../images/prev_page.png) no-repeat;
  background-size: 15px 20px;
}
.search2_box div {
  float: right;
}

.search2 {
  top: 68px;
}
.search2 .title_wrap {
  background-color: white;
  padding: 20px 25px;
  border-bottom: 1px solid #d9d9d9;
  box-shadow: 4px 0px 5px #e1e1e1;
}
.search2 .category {
  display: inline-block;
  font-size: 12px;
  padding: 0 3px 4px 3px;
  color: #676767;
  margin-bottom: 6px;
}
.search2 .category span:first-child {
  padding-right: 12px;
  background: url(../images/search_na.png) right 1px no-repeat;
  background-size: 6px 9px;
}
.search2 .category span:first-child + span {
  padding-left: 4px;
}
.search2 .con_tit p {
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
}
.search2 .con_text {
  padding: 20px 25px;
  font-size: 14px;
  line-height: 24px;
  margin-top: 25px;
  background: url(../images/search_bar.gif) 25px 3px no-repeat;
  background-size: 23px 3px;
}
.search2 .con_text p {
  padding-bottom: 20px;
}

.radio label::before,
.radio label::after {
  content: " ";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #cccccc;
  display: inline-block;
  position: absolute;
  left: 0px;
  bottom: -17px;
  padding: 1px;
  transition: opacity 0.3s linear;
}

.radio input[type=radio] + label:after,
.radio input[type=radio] {
  opacity: 0;
}

.radio input[type=radio]:checked + label::after {
  width: 2px;
  height: 2px;
  background-color: #707070;
  bottom: -13px;
  left: 4px;
  opacity: 1;
  border-color: #707070;
}

.radio input[type=radio]:checked + label::after {
  opacity: 1;
}

.radio input[type=radio]:disabled + label {
  color: #9A9A9A;
}

.radio input[type=radio]:disabled + label::before,
.radio input[type=radio]:disabled + label::after {
  color: #9A9A9A;
}

/*font-size*/
.font_contents {
  height: calc(100% - 164px);
  position: absolute;
  top: 53px;
  left: 0;
  right: 0;
}

.font_contents .fontSize {
  height: 100%;
}

.font_control {
  border-top: 1px solid #bfc8d8;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
  height: 113px;
}

.font_control > p {
  margin-top: 16px;
  text-align: center;
  font-size: 19px;
  font-size: 14px;
  color: #888;
  padding: 12px 15px 2px 15px;
}

.font_control .font_w {
  text-align: center;
  font-size: 0;
  padding-top: 20px;
}

.font_control .font_w li {
  text-align: center;
  display: inline-block;
  margin: 0 24px;
  position: relative;
  height: 42px;
  vertical-align: top;
}

.font_control .font_w li label {
  display: inline-block;
  line-height: 24px;
  color: #67707e;
}

.font_control .font_w li input:checked + label {
  color: #0086ed;
  font-weight: bold;
}

.font_control .font_w li input {
  display: block;
}

.font-set {
  display: none;
  position: absolute;
  bottom: 60px;
  left: 20px;
  right: 20px;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 16px;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  text-align: center;
  font-size: 16px;
}
.font-set .tit {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.font-set .font-size-set {
  margin-top: 16px;
}
.font-set .font-size-set ul,
.font-set .font-size-set li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.font-set .font-size-set ul {
  display: block;
}
.font-set .font-size-set li {
  display: block;
  float: left;
  width: 20%;
  color: #8E8E92;
  cursor: pointer;
  padding: 8px;
}
.font-set .font-size-set li.f1 {
  font-size: 14px;
}
.font-set .font-size-set li.f2 {
  font-size: 15px;
}
.font-set .font-size-set li.f3 {
  font-size: 16px;
}
.font-set .font-size-set li.f4 {
  font-size: 17px;
}
.font-set .font-size-set li.f5 {
  font-size: 18px;
}
.font-set .font-size-set li.on {
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000;
  background-color: #f19700;
  border-radius: 8px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
}

.pop-alert {
  position: absolute;
  left: 8px;
  top: 60px;
  right: 8px;
  z-index: 99;
  background: #fff;
  border: solid 1px #D7D7D7;
  border-top: 0;
  border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -webkit-border-radius: 0 0 8px 8px;
  box-shadow: 0px 2px 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.4s;
}
.pop-alert ul,
.pop-alert li {
  display: block;
  padding: 0;
  margin: 0;
}
.pop-alert ul {
  transition: all 0.4s;
}
.pop-alert ul li {
  border-bottom: solid 1px #D7D7D7;
}
.pop-alert ul li a {
  display: block;
  padding: 0;
  padding-left: 45px;
  position: relative;
  height: 40px;
  line-height: 40px;
  overflow: hidden;
  font-size: 15px;
  color: #000;
}
.pop-alert ul li a .badge {
  display: block;
  text-align: center;
  padding: 0 5px;
  font-size: 13px;
  color: #fff;
  background-color: #E18831;
  min-width: 25px;
  height: 25px;
  line-height: 25px;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 20px;
  -moz-border-radius: 20px;
  -webkit-border-radius: 20px;
}
.pop-alert ul li a .badge.badge-more {
  background: url(../images/notice/notice_open.png) no-repeat 50% 50% transparent;
  background-size: 15px 8px;
}
.pop-alert ul li.notice > a {
  background: url(../images/notice/notice_icon.png) no-repeat 16px 50% transparent;
  background-size: 17px;
}
.pop-alert ul li.policy > a {
  background: url(../images/notice/guid.png) no-repeat 16px 50% transparent;
  background-size: 15px;
}
.pop-alert ul li.poll > a {
  background: url(../images/notice/research.png) no-repeat 16px 50% transparent;
  background-size: 14px;
}
.pop-alert ul li.bizNotice > a {
  background: url(../images/notice/notice_icon.png) no-repeat 16px 50% transparent;
  background-size: 17px;
}
.pop-alert ul.bottom-ul:after {
  display: block;
  clear: both;
  content: "";
}
.pop-alert ul.bottom-ul li {
  border-left: solid 1px #D7D7D7;
  float: left;
  width: 50%;
}
.pop-alert ul.bottom-ul li:first-child {
  border-left: 0;
}
.pop-alert ul.bottom-ul li a {
  text-align: center;
  padding: 0;
}
.pop-alert ul.first {
  display: none;
}
.pop-alert .btn-pop-alert-open {
  display: none;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  overflow: hidden;
  background: url(../images/notice/notice_icon.png) no-repeat 50% 50% transparent;
  background-size: 17px;
}
.pop-alert.pop-alert-open ul {
  display: none;
}
.pop-alert.pop-alert-open ul.first {
  display: block;
}
.pop-alert.pop-alert-fold {
  left: auto;
  top: 68px;
  border-radius: 40px;
  -moz-border-radius: 40px;
  -webkit-border-radius: 40px;
  border: solid 1px #D7D7D7;
}
.pop-alert.pop-alert-fold ul {
  display: none;
}
.pop-alert.pop-alert-fold .btn-pop-alert-open {
  display: block;
}

#load_wrap {
  margin-top: 60px;
}
#load_wrap .flip-card {
  padding: 8px 16px;
  background-color: #d4e5f1;
  border-bottom-left-radius: 2em;
  border-bottom-right-radius: 2em;
  position: absolute;
  width: calc(100% - 360px);
  z-index: 99;
  top: 60px;
}
#load_wrap .flip-card .title {
  color: #0043A0;
  display: inline-block;
  height: 18px;
  line-height: 18px;
}
#load_wrap .flip-card .title.title-ico-filter {
  background-image: url(../images/sub/filter-solid.png);
  padding-left: 25px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 18px;
  font-size: 18px;
}
#load_wrap .flip-card .filter_close {
  background-image: url(../images/filter_ico.png);
  background-repeat: no-repeat;
  background-position: 0 -133px;
  text-indent: -9999px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background-size: 20px;
  float: right;
}
#load_wrap .flip-card .filter_open {
  background-image: url(../images/filter_ico.png);
  background-repeat: no-repeat;
  background-position: 0 -197px;
  text-indent: -9999px;
  display: inline-block;
  width: 17px;
  height: 17px;
  background-size: 20px;
  float: right;
}
#load_wrap .flip-card hr {
  color: #C8D5E3;
  border: thin solid #C8D5E3;
}
#load_wrap .flip-card .flip-card-inner {
  width: 100%;
}
#load_wrap .flip-card .flip-card-inner .card-header {
  padding: 5px 30px;
}
#load_wrap .flip-card .flip-card-inner .card-content {
  padding: 2px 30px;
  color: #0043A0;
  line-height: 37px;
  border-top: 1px solid #a0b9d0;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail {
  font-size: 13px;
  padding: 5px 0 5px 0;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .detail-title {
  padding-right: 10px;
  display: inline;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .selectBox {
  border-radius: 15px;
  width: calc(31% - 10px);
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  background: url("../images/sub/angle-down-solid.png") 90% center no-repeat;
  background-size: 12px;
  background-color: #fff;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .selectBox select {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  opacity: 0;
  appearance: none; /* 기본 스타일 없애기 */
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .selectBox label {
  position: absolute;
  color: black;
  margin-left: 10px;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .dong {
  display: inline-block;
  width: calc(32% - 10px);
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .dong .selectBox {
  border-radius: 15px;
  width: calc(81% - 10px);
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  position: relative;
  display: inline-block;
  background: url("../images/sub/angle-down-solid.png") 90% center no-repeat;
  background-size: 12px;
  background-color: #fff;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .dong .selectBox select {
  width: 100%;
  height: 40px;
  padding-left: 10px;
  opacity: 0;
  appearance: none; /* 기본 스타일 없애기 */
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .dong .selectBox label {
  position: absolute;
  color: black;
  margin-left: 10px;
}
#load_wrap .flip-card .flip-card-inner .card-content-detail .datail-location {
  background: url(../images/sub/location.png) no-repeat;
  background-position: center;
  background-size: 30px;
  background-color: #ffffff;
  padding: 10px 15px;
  border-radius: 20px;
  cursor: pointer;
}
#load_wrap .flip-card .flip-card-inner .card-bottom {
  display: block;
  padding-top: 5px;
  text-align: center;
  border-top: 1px solid #a0b9d0;
}
#load_wrap .flip-card .flip-card-inner .card-bottom a {
  max-width: 30%;
  cursor: pointer;
  width: 100%;
  text-align: center;
  display: inline-block;
  border-radius: 15px;
  padding: 10px 10px 10px 10px;
}
#load_wrap .flip-card .flip-card-inner .card-bottom .cancel {
  color: #000000;
  background-color: #fff;
  border: 1px solid #000;
  background-image: url(../images/filter_ico.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 28px) 12px
}
#load_wrap .flip-card .flip-card-inner .card-bottom .cancel1 {
  color: #000000;
  background-color: #fff;
  border: 1px solid #000;
  background-image: url(../images/filter_ico_1.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 28px) 12px
}
#load_wrap .flip-card .flip-card-inner .card-bottom .apply {
  color: #ffffff;
  background-color: #0052a0;
  border: 1px solid #0052a0;
  background-image: url(../images/filter_ico.png);
  background-repeat: no-repeat;
  background-position: calc(50% - 40px) -39px;
}
#load_wrap .flip-card .flip-card-inner .card-bottom .arrow-btn button {
  width: 80px;
  height: 10px;
  background: url(../images/arrow_up_white.png) no-repeat 50% 50% transparent;
  background-size: 80px 3px;
  font-size: 0;
  cursor: pointer;
  padding-bottom: 10px;
}
#load_wrap .bigdata_con {
  padding: 0 2% 2% 2%;
}
#load_wrap .bigdata_con .no_value {
  border: 1px solid #eee;
  overflow: hidden;
  clear: both;
}
#load_wrap .bigdata_con .no_value p {
  text-align: center;
  padding: 30px 0;
  font-size: 1.2em;
}
#load_wrap .bigdata_con .tab {
  width: 100%;
  display: block;
  margin: 110px 0 0;
}
#load_wrap .bigdata_con .tab ul {
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
  padding: 18px 0;
}
#load_wrap .bigdata_con .tab ul li {
  text-align: center;
  margin: 0 2%;
  display: inline-block;
}
#load_wrap .bigdata_con .tab ul li a {
  font-size: 1.5em;
  color: #e1e1e1;
  padding: 50px 0;
}
#load_wrap .bigdata_con .tab ul li a.on {
  color: rgb(0, 35, 151);
  font-weight: bold;
  position: relative;
}
#load_wrap .bigdata_con .tab ul li a.on:before {
  content: "";
  position: absolute;
  width: 51px;
  bottom: 30px;
  height: 7px;
  background: #0052A0;
}
#load_wrap .bigdata_con h2 {
  font-size: 1.5em;
  margin: 20px 0;
  line-height: 30px;
}
#load_wrap .bigdata_con .epln {
  text-align: right;
  background: url(../images/epln_ico.png) no-repeat;
  padding-left: 30px;
  font-size: 1.2em;
  background-size: 19px;
  float: right;
  margin: 30px 0 10px;
  color: #bdc6d7;
}
#load_wrap .bigdata_con .graph {
  width: 100%;
  overflow: hidden;
}
#load_wrap .bigdata_con .graph div .amcharts-main-div .amcharts-chart-div {
  touch-action: auto !important;
}
#load_wrap .bigdata_con .graph_circle {
  width: 100%;
  height: 300px;
  overflow: hidden;
}
#load_wrap .bigdata_con .graph_circle div .amcharts-main-div .amcharts-chart-div {
  touch-action: auto !important;
}
#load_wrap .bigdata_con .graph_txt {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 2%;
  margin: 30px 0;
  overflow: hidden;
}
#load_wrap .bigdata_con .graph_txt ul li {
  width: calc(50% - 40px);
  float: left;
  margin: 20px;
  text-align: center;
  position: relative;
}
#load_wrap .bigdata_con .graph_txt ul li em {
  font-style: normal;
  font-size: 1.1em;
  text-align: left;
  width: 100%;
  display: block;
  margin: 0 0 10px;
  font-weight: bold;
}
#load_wrap .bigdata_con .graph_txt ul li .txt {
  display: block;
  text-align: left;
  font-size: 1.5em;
  margin: 10px 0;
  font-weight: bold;
  /*매우좋음*/
  /*좋음*/
  /*보통*/
  /*나쁨*/
  /*매우나쁨*/
  /*데이터 없음*/
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtdeeblue {
  color: #599dea;
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtblue {
  color: #67cee0;
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtgreen {
  color: #aedd56;
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtorangy {
  color: #f5a611;
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtred {
  color: #e55151;
}
#load_wrap .bigdata_con .graph_txt ul li .txt.Analytxtgrey {
  color: #e1e1e1;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy {
  color: #fff;
  float: right;
  position: absolute;
  right: 0;
  top: 0;
  padding: 10px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 45px;
  font-size: 1.5em;
  /*매우좋음*/
  /*좋음*/
  /*보통*/
  /*나쁨*/
  /*매우나쁨*/
  /*데이터없음*/
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analydeeblue {
  background: #599dea;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analyblue {
  background: #67cee0;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analygreen {
  background: #aedd56;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analyorangy {
  background: #f5a611;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analyred {
  background: #e55151;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li .Analy.Analygrey {
  background: #e1e1e1;
  color: #fff;
}
#load_wrap .bigdata_con .graph_txt ul li p {
  font-size: 1.1em;
  text-align: left;
  line-height: 1.5em;
  word-break: keep-all;
}
#load_wrap .bigdata_con .con h2 {
  font-size: 1.5em;
  margin: 20px 0;
  line-height: 30px;
}
#load_wrap .bigdata_con .con .cons_analy {
  padding: 0 10px;
}
#load_wrap .bigdata_con .con .cons_analy p {
  text-align: center;
}
#load_wrap .bigdata_con .con .cons_analy p .txt {
  font-size: 1.3em;
  font-weight: 600;
}
#load_wrap .bigdata_con .con .cons_analy p .num {
  font-size: 2em;
  font-weight: bold;
  color: #6b6b6b;
}
#load_wrap .bigdata_con .con .cons_analy p .num.num_up {
  color: #e55151;
}
#load_wrap .bigdata_con .con .cons_analy p .num.num_down {
  color: #599dea;
}
#load_wrap .bigdata_con .con .cons_analy p .num .down_ico {
  background: url(../images/triangle_ico.png) no-repeat right;
  background-size: 40px;
  background-position: 5px 10px;
  text-indent: -9999px;
  display: inline-block;
  width: 25px;
  height: 25px;
}
#load_wrap .bigdata_con .con .cons_analy p .num .up_ico {
  background: url(../images/triangle_ico.png) no-repeat right;
  background-size: 40px;
  background-position: -17px 10px;
  text-indent: -9999px;
  display: inline-block;
  width: 25px;
  height: 25px;
}
#load_wrap .bigdata_con .con .cons_analy p .num .no_ico {
  background: url(../images/no.png) no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  text-indent: -9999px;
  margin: 0 10px;
  background-position: 0;
  margin: 0 10px;
}
#load_wrap .bigdata_con .con .cons_analy ul {
  margin: 30px 0;
  display: block;
}
#load_wrap .bigdata_con .con .cons_analy ul li {
  font-size: 1.2em;
  margin: 10px 0;
}
#load_wrap .bigdata_con .con .cons_analy ul li span {
  width: 120px;
  display: inline-block;
  font-weight: 600;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num {
  color: #6b6b6b;
  font-style: normal;
  font-weight: 600;
  font-size: 1.2em;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num.num_up {
  color: #d00d0c;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num.num_down {
  color: #599dea;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num .down_ico {
  background: url(../images/triangle_ico.png) no-repeat right;
  background-size: 35px;
  background-position: 0px 5px;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 0 10px;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num .up_ico {
  background: url(../images/triangle_ico.png) no-repeat right;
  background-size: 35px;
  background-position: -20px 5px;
  text-indent: -9999px;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin: 0 10px;
}
#load_wrap .bigdata_con .con .cons_analy ul li .num .no_ico {
  background: url(../images/no.png) no-repeat;
  width: 15px;
  height: 15px;
  display: inline-block;
  text-indent: -9999px;
  margin: 0 10px;
  background-position: 0;
  margin: 0 10px;
}
#load_wrap .bigdata_con .con .cons_analy ul li p {
  text-align: left;
  display: inline-block;
  word-break: keep-all;
}
#load_wrap .bigdata_con .con .goodtxt {
  text-align: center;
  font-size: 1.2em;
  word-break: keep-all;
  line-height: 25px;
  margin: 5px 0 20px;
}
#load_wrap .bigdata_con .con .goodtmt {
  border: 1px solid rgba(238, 238, 238, 0.9333333333);
  border-radius: 25px;
  padding: 5px 4%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
#load_wrap .bigdata_con .con .goodtmt span {
  text-align: left;
  position: absolute;
  top: 22px;
  font-size: 1.3em;
  font-weight: bold;
  display: inline-block;
}
#load_wrap .bigdata_con .con .goodtmt ul {
  display: inline-block;
  margin-left: 120px;
  margin: 13px 0 0 140px;
}
#load_wrap .bigdata_con .con .goodtmt ul li {
  float: left;
}
#load_wrap .bigdata_con .con .goodtmt ul li.fa {
  background: url(../images/star_ico.png) no-repeat;
  background-position: 0 0;
  background-size: 30px;
  text-indent: -9999px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
}
#load_wrap .bigdata_con .con .goodtmt ul li.active {
  background: url(../images/star_ico.png) no-repeat;
  background-position: 0 -45px;
  background-size: 30px;
  text-indent: -9999px;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 0 5px;
}
#load_wrap .bigdata_con .con .goodtmt .submit {
  background: url(../images/submit_ico.png) no-repeat;
  background-size: 15px;
  float: right;
  font-size: 1.2em;
  padding-left: 20px;
  margin: 20px 0;
  color: #00499b;
  font-weight: 600;
}
#load_wrap .layerPopup {
  position: absolute;
  top: 0;
  z-index: 99999;
  width: calc(100% - 360px);
  height: 100%;
}
#load_wrap .layerPopup .layerPopupBg {
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: fixed;
}
#load_wrap .layerPopup .pop-layer {
  width: calc(100% - 600px);
  background: #fff;
  border-radius: 30px;
  box-shadow: 3px 5px 25px #6b6b6b;
  position: fixed;
  top: 11%;
  left: 60%;
  transform: translate(-50%);
}
#load_wrap .layerPopup .pop-layer .pop-container .pop_contop {
  border-bottom: 2px solid #eee;
  padding: 20px 3%;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop_contop .plen {
  background: url(../images/epln_ico.png) no-repeat;
  padding-left: 30px;
  font-size: 1.3em;
  background-size: 20px;
  color: #bdc6d7;
  display: inline-block;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop_contop .btn {
  float: right;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop_contop .btn a {
  background: url(../images/pop_close.png) no-repeat;
  background-size: 22px;
  height: 22px;
  width: 22px;
  text-indent: -9999px;
  display: inline-block;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts {
  padding: 70px 6%;
  box-sizing: border-box;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con {
  height: 420px;
  overflow: auto;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .con_ul li {
  margin: 20px 0;
  font-size: 1.3em;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .con_ul li:first-child {
  margin-top: 0;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .con_ul li:last-child {
  margin-bottom: 0;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .con_ul li span {
  margin-right: 10px;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .con_ul li span.titbold {
  font-weight: 800;
  font-size: 1.1em;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .titbold {
  font-weight: 800;
  font-size: 1.5em;
  margin: 40px 0 20px 0;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con p {
  font-size: 1.2em;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .popudwn {
  margin: 10px 0;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .popudwn .up {
  background: url(../images/triangle_ico.png) no-repeat;
  width: 27px;
  height: 17px;
  display: inline-block;
  background-size: 50px;
  text-indent: -9999px;
  margin: 0 10px;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .popudwn .no {
  background: url(../images/no.png) no-repeat;
  width: 13px;
  height: 17px;
  display: inline-block;
  text-indent: -9999px;
  margin: 0 10px;
  background-position: 0;
  margin: 0;
}
#load_wrap .layerPopup .pop-layer .pop-container .pop-conts .con .popudwn .down {
  background: url(../images/triangle_ico.png) no-repeat;
  width: 27px;
  height: 17px;
  display: inline-block;
  background-size: 50px;
  text-indent: -9999px;
  background-position: -27px 0px;
  margin: 0 10px;
}
#load_wrap .sub_header {
  position: relative;
  min-height: 50px;
  overflow: hidden;
  border-bottom: 1px solid #bfc8d8;
  background-color: #daedff;
  padding: 16px 32px;
  text-align: center;
}
#load_wrap .sub_header .title {
  color: #000;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}
#load_wrap .sub_header .title.title-ico-alam, #load_wrap .sub_header .title.title-ico-guide, #load_wrap .sub_header .title.title-ico-self, #load_wrap .sub_header .title.title-ico-guide_new, #load_wrap .sub_header .title.title-ico-sellist, #load_wrap .sub_header .title.title-ico-result {
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 30px;
  font-size: 25px;
}
#load_wrap .sub_header .title.title-ico-alam {
  background-image: url(../images/sub/alam_title.png);
}
#load_wrap .sub_header .title.title-ico-guide {
  background-image: url(../images/sub/guide_title.png);
}
#load_wrap .sub_header .title.title-ico-self {
  background-image: url(../images/sub/self_title.png);
}
#load_wrap .sub_header .title.title-ico-sellist {
  background-image: url(../images/sub/sellist_title.png);
}
#load_wrap .sub_header .title.title-ico-guide_new {
  background-image: url(../images/sub/guide_title_new.png);
}
#load_wrap .sub_header .title.title-ico-result {
  background-image: url(../images/sub/result_title.png);
}
#load_wrap .sub_header .title.qna_title {
  background-image: url(../images/sub/qna_title.png) !important;
}
#load_wrap .sub_header .sub-title {
  display: block;
  text-align: center;
  color: #565758;
  padding: 16px 0 0 0;
  font-size: 14px;
  font-weight: normal;
}
#load_wrap .sub_header .prev_page {
  display: block;
  position: absolute;
  left: 16px;
  top: 23px;
  text-indent: -9999px;
  border: none;
  width: 25px;
  height: 30px;
  background: url(../images/prev_page.png) 4px 1px no-repeat;
  background-size: 14px;
  cursor: pointer;
}
#load_wrap .sub_contents {
  background-color: #fff;
  position: relative;
}
#load_wrap .sub_contents .btn-add {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px 0;
  background-color: #294B85;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
#load_wrap .sub_contents .btn-add span.ico {
  display: inline-block;
  margin-left: 8px;
}
#load_wrap .sub_contents .btn-add span.ico.plus {
  width: 20px;
  height: 20px;
  text-indent: -9999px;
  background: url(../images/sub/en_icon.png) no-repeat 50% 50% transparent;
  background-size: cover;
}
#load_wrap .sub_contents .company-list {
  padding: 0;
  margin-top: 16px;
}
#load_wrap .sub_contents .company-list .items {
  padding: 16px 0;
  border-bottom: solid 1px #F0F1F1;
}
#load_wrap .sub_contents .company-list .items .subject {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #222;
}
#load_wrap .sub_contents .company-list .items .subject span.bnum {
  margin-left: 16px;
  font-size: 14px;
  color: #777;
}
#load_wrap .sub_contents .company-list .items .button-group {
  padding: 8px 16px;
}
#load_wrap .sub_contents .company-list .items .button-group:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .company-list .items .button-group a {
  display: block;
  float: left;
  width: 48%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: solid 1px #ccc;
}
#load_wrap .sub_contents .company-list .items .button-group a:last-child {
  float: right;
}
#load_wrap .sub_contents .self-menu-list {
  padding: 0;
  margin: 0;
  display: block;
}
#load_wrap .sub_contents .self-menu-list li {
  display: block;
  padding: 0;
  margin: 0;
  border-bottom: solid 1px #F0F1F1;
  background: url(../images/sub/self_more.png) no-repeat 90% 50% transparent;
  background-size: 55px;
}
#load_wrap .sub_contents .self-menu-list li a {
  display: block;
  height: 100px;
  line-height: 100px;
  padding-left: 100px;
  font-size: 18px;
}
#load_wrap .sub_contents .self-menu-list li a.ico1 {
  background: url(../images/sub/self_icon01.png) no-repeat 20px 50% transparent;
}
#load_wrap .sub_contents .self-menu-list li a.ico2 {
  background: url(../images/sub/self_icon02.png) no-repeat 20px 50% transparent;
}
#load_wrap .sub_contents .self-menu-list li a.ico3 {
  background: url(../images/sub/self_icon03.png) no-repeat 20px 50% transparent;
}
#load_wrap .sub_contents .self-menu-list li a.ico4 {
  background: url(../images/sub/self_icon04.png) no-repeat 20px 50% transparent;
}
#load_wrap .sub_contents .self-menu-list li a.ico1, #load_wrap .sub_contents .self-menu-list li a.ico2, #load_wrap .sub_contents .self-menu-list li a.ico3 {
  background-size: 23px 50px;
  background-position: 50px 50%;
}
#load_wrap .sub_contents .self-menu-list li a.ico4 {
  background-size: 23px 34px;
  background-position: 50px 50%;
}
@media screen and (min-width: 321px) {
  #load_wrap .sub_contents .self-menu-list li a {
    padding-left: 120px;
  }
}
#load_wrap .sub_contents table.self-history-table {
  border: 0;
  margin: 0;
  font-size: 16px;
  width: 100%;
  border-spacing: 0;
}
#load_wrap .sub_contents table.self-history-table > thead > tr > th, #load_wrap .sub_contents table.self-history-table > thead > tr > td, #load_wrap .sub_contents table.self-history-table > tbody > tr > th, #load_wrap .sub_contents table.self-history-table > tbody > tr > td, #load_wrap .sub_contents table.self-history-table > tfoot > tr > th, #load_wrap .sub_contents table.self-history-table > tfoot > tr > td {
  border-bottom: 1px solid #e5e5e5;
  position: relative;
  padding: 8px;
  font-size: 16px;
  font-weight: normal;
}
#load_wrap .sub_contents table.self-history-table > thead > tr > th {
  background: #294B85;
  color: #fff;
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}
#load_wrap .sub_contents table.self-history-table > tbody > tr > td, #load_wrap .sub_contents table.self-history-table > tbody > tr > th {
  color: #333;
  white-space: nowrap;
  text-align: center;
}
#load_wrap .sub_contents .guide {
  padding: 16px;
}
#load_wrap .sub_contents .guide .conTitle {
  font-size: 21px;
  color: #5a5a5a;
  margin: 20px 0;
}
#load_wrap .sub_contents .guide .faq-list {
  padding: 0;
  margin: 0;
}
#load_wrap .sub_contents .guide .faq-list .item {
  margin-bottom: 2px;
}
#load_wrap .sub_contents .guide .faq-list .item span.q,
#load_wrap .sub_contents .guide .faq-list .item span.a {
  position: absolute;
  left: 8px;
  top: 8px;
  font-size: 20px;
}
#load_wrap .sub_contents .guide .faq-list .item h4 {
  display: block;
  margin: 0;
  padding: 8px 30px 8px 30px;
  font-size: 16px;
  line-height: 24px;
  position: relative;
  color: #fff;
  cursor: pointer;
  background: url(../images/sub/guide_on.png) no-repeat 99% 50% #599dea;
  background-size: 15px;
}
#load_wrap .sub_contents .guide .faq-list .item .ask {
  display: none;
  position: relative;
  padding: 16px 8px 8px 30px;
  border: solid 1px #D6D7D8;
  border-top: 0;
  font-size: 14px;
  line-height: 22px;
  transition: all 200ms ease;
}
#load_wrap .sub_contents .guide .faq-list .item .ask span.a {
  top: 16px;
  color: #000;
}
#load_wrap .sub_contents .guide .faq-list .item.on h4 {
  background: url(../images/sub/guide_off.png) no-repeat 99% 50% #6D8EB3;
  background-size: 15px;
}
#load_wrap .sub_contents .guide .faq-list .item.on .ask {
  display: block;
}
#load_wrap .sub_contents .guide .guide-down-info {
  margin-top: 40px;
  text-align: center;
}
#load_wrap .sub_contents .guide .guide-down-info img.cal {
  max-width: 100px;
}
#load_wrap .sub_contents .guide .guide-down-info p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 20px;
}
#load_wrap .sub_contents .guide .guide-down-info .menual-down {
  margin-top: 16px;
  display: block;
  padding: 16px;
  border: solid 1px #ccc;
  color: #000;
  font-size: 16px;
}
#load_wrap .sub_contents .guide .guide-down-info .menual-down span.ico {
  display: inline-block;
  margin-left: 8px;
  height: 16px;
  width: 16px;
  vertical-align: middle;
  background: url(../images/sub/guide_down.png) no-repeat 50% 50% transparent;
  background-size: cover;
}
#load_wrap .sub_contents .guide h2 {
  padding-bottom: 10px;
  display: grid;
}
#load_wrap .sub_contents .guide h2.title-ico-guide {
  background: url(../images/sub/guide_title_new.png) no-repeat;
  display: block;
  background-size: 30px;
  padding-left: 40px;
}
#load_wrap .sub_contents .guide h2.title-ico-guide-video {
  background: url(../images/sub/guide_title.png) no-repeat;
  display: block;
  background-size: 30px;
  padding-left: 40px;
}
#load_wrap .sub_contents .checklist-form {
  padding: 16px 8px;
}
#load_wrap .sub_contents .checklist-form h3 {
  font-size: 21px;
}
#load_wrap .sub_contents .checklist-form .checklist-info {
  font-size: 16px;
  margin-top: 16px;
  padding: 8px;
  background-color: #F8ECDB;
}
#load_wrap .sub_contents .checklist-form .checklist-info ul,
#load_wrap .sub_contents .checklist-form .checklist-info li {
  padding: 0;
  margin: 0;
}
#load_wrap .sub_contents .checklist-form .checklist-info ul {
  margin-top: 8px;
}
#load_wrap .sub_contents .checklist-form .checklist-info li {
  display: block;
  position: relative;
  line-height: 22px;
  padding-left: 16px;
  font-size: 15px;
}
#load_wrap .sub_contents .checklist-form .checklist-info li:after {
  display: block;
  position: absolute;
  left: 4px;
  top: 8px;
  width: 3px;
  height: 3px;
  background-color: #666;
  content: "";
}
#load_wrap .sub_contents .form-horizontal {
  margin-top: 32px;
  padding: 0 8px;
}
#load_wrap .sub_contents .form-horizontal h4 {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 8px;
}
#load_wrap .sub_contents .form-horizontal .form-group {
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 16px;
  position: relative;
  font-size: 15px;
}
#load_wrap .sub_contents .form-horizontal .form-group:before, #load_wrap .sub_contents .form-horizontal .form-group:after {
  display: block;
  content: "";
}
#load_wrap .sub_contents .form-horizontal .form-group:after {
  clear: both;
}
#load_wrap .sub_contents .form-horizontal .form-group-cell2:before, #load_wrap .sub_contents .form-horizontal .form-group-cell2:after {
  display: block;
  content: "";
}
#load_wrap .sub_contents .form-horizontal .form-group-cell2:after {
  clear: both;
}
#load_wrap .sub_contents .form-horizontal .form-group-cell2 .form-group {
  float: left;
  width: 48%;
}
#load_wrap .sub_contents .form-horizontal .form-group-cell2 .form-group:first-child {
  margin-right: 4%;
}
#load_wrap .sub_contents .form-horizontal .control-label {
  display: block;
  line-height: 28px;
  padding-top: 0px;
  font-size: 16px;
  color: #373A3C;
  text-align: left;
  font-weight: 600;
}
#load_wrap .sub_contents .form-horizontal .control-label .pil {
  display: inline-block;
  width: 10px;
  height: 20px;
  position: relative;
  text-indent: 99999px;
  overflow: hidden;
  vertical-align: middle;
}
#load_wrap .sub_contents .form-horizontal .control-label .pil:before {
  position: relative;
  content: "\f00c";
  display: block;
  color: #E34724;
  text-indent: 0;
  font: normal normal normal 11px/1 FontAwesome;
}
#load_wrap .sub_contents .input-group {
  position: relative;
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 8px;
}
#load_wrap .sub_contents .input-group:last-child {
  margin-bottom: 0;
}
#load_wrap .sub_contents .input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  display: table-cell;
}
#load_wrap .sub_contents .input-group-addon {
  display: table-cell;
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
}
#load_wrap .sub_contents .input-group-addon:first-child {
  border-right: 0;
}
#load_wrap .sub_contents .input-group-addon:last-child {
  border-left: 0;
}
#load_wrap .sub_contents .form-control {
  display: block;
  width: 100%;
  height: 36px;
  padding: 0 12px;
  font-size: 15px;
  color: #222;
  line-height: 36px;
  border-radius: 0px;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  box-shadow: none;
  -webkit-appearance: none;
  border: 1px solid #DDDDDD;
  background: #fff;
}
#load_wrap .sub_contents .form-control::-moz-placeholder {
  color: #999;
}
#load_wrap .sub_contents .form-control:-ms-input-placeholder {
  color: #999;
}
#load_wrap .sub_contents .form-control::placeholder {
  color: #999;
}
#load_wrap .sub_contents .form-control:focus {
  box-shadow: none;
  border-color: #DDDDDD;
  background: #FFF;
}
#load_wrap .sub_contents .form-control.form-control-sm {
  height: 31px;
  line-height: 28px;
}
#load_wrap .sub_contents .form-control.form-control-select, #load_wrap .sub_contents .form-control.form-control-select:focus {
  padding-right: 36px;
  background-image: url(/images/select_arr.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 38px 100px;
}
#load_wrap .sub_contents .form-control[disabled], #load_wrap .sub_contents .form-control[readonly] {
  color: #999;
  background-color: #eee;
  opacity: 1;
  cursor: not-allowed;
}
#load_wrap .sub_contents .form-control[disabled]:focus, #load_wrap .sub_contents .form-control[readonly]:focus {
  background-color: #EEE;
  color: #CCC;
  border-color: #D5D5D5;
}
#load_wrap .sub_contents select.form-control,
#load_wrap .sub_contents select.form-control:focus {
  padding-right: 45px;
  background-image: url(/images/select_arr.png);
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: 38px 100px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#load_wrap .sub_contents select.form-control::-ms-expand {
  display: none;
}
#load_wrap .sub_contents textarea.form-control {
  line-height: 25px;
  padding-top: 6px;
}
#load_wrap .sub_contents .form-footer {
  padding: 16px 0;
  border-top: solid 1px #dddddd;
}
#load_wrap .sub_contents .form-footer:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .form-footer .btn {
  margin-top: 16px;
  display: block;
  width: 50%;
  float: left;
  padding: 16px;
  border: solid 1px #ccc;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #5f94d6;
  text-align: center;
}
#load_wrap .sub_contents .form-footer .btn-submit {
  margin-top: 16px;
  display: block;
  width: 100%;
  padding: 16px;
  border: solid 1px #ccc;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #0052A0;
  border-color: #0052A0;
  cursor: pointer;
}
#load_wrap .sub_contents .form-footer .btn-submit.btn {
  width: 50%;
  float: right;
}
#load_wrap .sub_contents .text-center {
  text-align: center;
}
#load_wrap .sub_contents .checklist-result {
  padding: 16px 8px;
}
#load_wrap .sub_contents .checklist-result .result-text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 22px;
  padding: 8px;
}
#load_wrap .sub_contents .checklist-result .result-text strong.red {
  color: #CE5F4B;
}
#load_wrap .sub_contents .checklist-result .result-text strong.blue {
  color: #3442F7;
}
#load_wrap .sub_contents .checklist-result .result-text strong.green {
  color: #A2BA66;
}
#load_wrap .sub_contents .sub_contents_footer {
  padding: 16px 0;
}
#load_wrap .sub_contents .sub_contents_footer:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .pagination {
  display: block;
  width: 100%;
  padding: 0;
  margin: 10px 0px;
  text-align: center;
}
#load_wrap .sub_contents .pagination > .active > a, #load_wrap .sub_contents .pagination > .active > a:focus, #load_wrap .sub_contents .pagination > .active > a:hover, #load_wrap .sub_contents .pagination > .active > span, #load_wrap .sub_contents .pagination > .active > span:focus, #load_wrap .sub_contents .pagination > .active > span:hover {
  background-color: #212223;
  border-color: #212223;
}
#load_wrap .sub_contents .pagination > li > a, #load_wrap .sub_contents .pagination > li > span {
  padding: 10px 16px;
  color: #212223;
}
#load_wrap .sub_contents .pagination > li {
  display: inline;
}
#load_wrap .sub_contents .pagination > li > a, #load_wrap .sub_contents .pagination > li > span {
  margin-left: 3px;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  color: #656d78;
  border-color: #E5E5E5;
}
#load_wrap .sub_contents .pagination > li > a:hover, #load_wrap .sub_contents .pagination > li > span:hover {
  color: #222;
}
#load_wrap .sub_contents .pagination > li.active > a, #load_wrap .sub_contents .pagination > li.active > span, #load_wrap .sub_contents .pagination > li.active > a:hover {
  background: #33414e;
  color: #FFF;
  border-color: #33414e;
}
#load_wrap .sub_contents .pagination.pagination-sm {
  width: auto;
}
#load_wrap .sub_contents .pagination.pagination-sm > li > a, #load_wrap .sub_contents .pagination.pagination-sm > li > span {
  padding: 8px 10px;
}
#load_wrap .sub_contents .creditRiskAlerts_content {
  padding: 16px 8px;
}
#load_wrap .sub_contents .creditRiskAlerts_content h2 {
  margin-bottom: 16px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportBtn {
  display: inline-block;
  padding: 0 16px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: solid 1px #1c84c6;
  color: #fff;
  background-color: #1c84c6;
  position: absolute;
  right: 8px;
  top: 8px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportInformation {
  margin-bottom: 32px;
  margin-top: 16px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportInformation:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportInformation .table td > ul {
  padding: 0 0 0 10px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportInformation .table td > ul,
#load_wrap .sub_contents .creditRiskAlerts_content .basicReportInformation .table li {
  list-style: disc;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation {
  margin-bottom: 32px;
  margin-top: 16px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb {
  text-align: center;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb img {
  width: 100%;
  max-width: 500px;
  vertical-align: middle;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb dl {
  display: flex;
  text-align: center;
  margin: 10px 0;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb dl dt,
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb dl dd {
  display: block;
  color: #fff;
  padding: 20px 16px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb dl dt {
  width: 30%;
  font-size: 24px;
  font-weight: 700;
}
#load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb dl dd {
  width: 70%;
  background-color: #666;
}
@media (min-width: 768px) {
  #load_wrap .sub_contents .creditRiskAlerts_content .creditInformation {
    display: flex;
  }
  #load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .thumb {
    width: 60%;
  }
  #load_wrap .sub_contents .creditRiskAlerts_content .creditInformation .info {
    width: 40%;
    padding-left: 10px;
  }
}
#load_wrap .sub_contents .creditRiskAlerts_content .table {
  width: 100%;
  border-top: 3px solid #2e78ff;
  border-collapse: collapse;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table th,
#load_wrap .sub_contents .creditRiskAlerts_content .table td {
  padding: 13px;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbLeft tbody tr th {
  padding: 20px;
  font-size: 33px;
  color: white;
  font-weight: 750;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbLeft tbody tr td, #load_wrap .sub_contents .creditRiskAlerts_content .table.tbRight tbody tr td:nth-child(odd), #load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr td {
  text-align: center;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbLeft tbody tr:nth-child(even) td {
  background-color: gray;
  font-size: 16px;
  color: rgb(19, 4, 4);
  font-weight: 700;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter {
  border-top: 5px gray solid;
  border-collapse: collapse;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr:nth-child(1) td:nth-child(odd) {
  background-color: #0c77a5;
  color: white;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr:nth-child(1) td:nth-child(even) {
  background-color: #ad310b;
  color: white;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr:nth-child(2) td:nth-child(odd) {
  background-color: #0a5e83;
  color: white;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr:nth-child(2) td:nth-child(even) {
  background-color: #8a2909;
  color: white;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter tbody tr td,
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbCenter thead tr th {
  border-right: 5px solid white;
  border-collapse: collapse;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbRight {
  border-top: 3px solid #2e78ff;
  border-collapse: collapse;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbRight tbody td {
  border: solid 1px #e1e1e1;
}
#load_wrap .sub_contents .creditRiskAlerts_content .table.tbRight thead tr th {
  background-color: #e9e9e9;
}
#load_wrap .sub_contents .sedaSurvey_content {
  padding: 0px 16px;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 {
  margin: 0 auto 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .lt,
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .rt {
  text-align: center;
  margin: 50px auto 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .title h3 {
  font-size: 32px;
  letter-spacing: -2px;
  margin: 0;
  padding: 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .title .info {
  font-size: 14px;
  margin: 10px 0 0 0;
  padding: 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .btn-submit {
  margin-top: 16px;
  display: block;
  width: 100%;
  padding: 16px;
  border: solid 1px #ccc;
  color: #fff;
  font-size: 16px;
  line-height: 26px;
  background-color: #0052A0;
  border-color: #0052A0;
  max-width: 200px;
  margin: 50px auto 0 auto;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .btn-submit.btn {
  width: 50%;
  float: right;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .lt .con {
  padding: 50px 0 0 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .list {
  background-color: #fff;
  border: 1px solid #cfd5e7;
  margin: 15px auto 0;
  padding: 10px 16px;
  text-align: left;
  width: 90%;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .list dt {
  position: relative;
  float: left;
  color: #26292e;
  font-size: 16px;
  letter-spacing: -1px;
  padding: 0 0 0 16px;
  line-height: 35px;
  height: 35px;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .list dt:before {
  content: "";
  position: absolute;
  top: 15px;
  left: 0px;
  background-color: #3163e3;
  border-radius: 50%;
  width: 5px;
  height: 5px;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .list dd {
  font-size: 16px;
  padding: 0 0 7px 120px;
  min-height: 35px;
}
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .list dd .txt1 {
  padding: 6px 0 6px 10px;
}
@media screen and (min-width: 640px) {
  #load_wrap .sub_contents .sedaSurvey_content .mCreate0:before {
    content: "";
    position: absolute;
    top: 50px;
    left: 50%;
    bottom: 0;
    background-color: #cfd5e7;
    width: 1px;
  }
  #load_wrap .sub_contents .sedaSurvey_content .mCreate0 .lt,
#load_wrap .sub_contents .sedaSurvey_content .mCreate0 .rt {
    float: left;
    width: 50%;
  }
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 {
  position: relative;
  line-height: 80px;
  height: 80px;
  border-bottom: 1px solid #e9ecf4;
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 h3 {
  color: #303239;
  font-size: 24px;
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 h3 .ts {
  color: #999faf;
  font-size: 21px;
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 h3 .ts em {
  color: #0052A0;
  font-style: normal;
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 .rt {
  position: absolute;
  top: 0;
  right: 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mTitle11 .rt .mBtn1 {
  display: inline-block;
  border: 1px solid #848895;
  background-color: #fff;
  font-weight: bold;
  padding: 0 10px;
  line-height: 33px;
  letter-spacing: -1px;
  text-align: center;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 {
  position: relative;
  border-bottom: 1px solid #e9ecf4;
  margin: 0 auto;
  padding: 0;
  line-height: 50px;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .tag {
  display: inline-block;
  letter-spacing: -1px;
  margin: 0 20px 0 0;
  padding: 0 0 0 37px;
  line-height: 22px;
  background: url(/images/seda/ico_radio1.png) 5px 0 no-repeat;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .tag .t {
  display: inline-block;
  font-size: 19px;
  font-weight: 500;
  text-decoration: underline;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .tag .n {
  color: #9b9faa;
  font-size: 17.4px;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .tag .n em {
  color: #3163e3;
  font-style: normal;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .rt {
  position: absolute;
  top: 0;
  right: 0;
}
#load_wrap .sub_contents .sedaSurvey_content .mTag1 .rt .mBtn1 {
  width: 88px;
}
@media screen and (min-width: 980px) {
  #load_wrap .sub_contents .sedaSurvey_content .mList1 .form-horizontal {
    padding-left: 0;
    padding-right: 0;
  }
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox {
  margin: 20px auto 0;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox h3 {
  color: #303239;
  font-size: 24px;
  margin-bottom: 8px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox h4 {
  color: #303239;
  line-height: 33px;
  height: 35px;
  font-size: 18px;
  margin-bottom: 8px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox h4 .bl {
  display: inline-block;
  background-color: #3163e3;
  padding: 0 15px;
  border-radius: 35px;
  -moz-border-radius: 35px;
  -webkit-border-radius: 35px;
  color: #fff;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox h5 {
  color: #3163e3;
  font-size: 16px;
  margin-bottom: 8px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .box {
  border: 1px solid #cfd5e7;
  background-color: #fff;
  color: #26292e;
  font-size: 14px;
  line-height: 150%;
  margin: 0 0 20px 0;
  padding: 16px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox ul.l1:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox ul.l1 li {
  position: relative;
  float: left;
  padding: 0 0 0 15px;
  min-width: 170px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox ul.l1 li .c {
  color: #3163e3;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox ul.l1 li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  background-color: #3163e3;
  border-radius: 50%;
  width: 7px;
  height: 7px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .mBoard1 table {
  width: 100%;
  border-collapse: collapse !important;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .mBoard1 caption {
  display: none;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .mBoard1 th,
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .mBoard1 td {
  background-color: #efefef;
  height: 37px;
  border: solid 1px #ccc;
  padding: 0;
  text-align: center;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .mBoard1 tbody td {
  background-color: #fff;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst {
  padding: 40px 0;
  text-align: center;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst ul {
  display: block;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst ul:after {
  display: block;
  clear: both;
  content: "";
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li {
  position: relative;
  display: block;
  float: left;
  width: 25%;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li:before {
  content: "";
  position: absolute;
  top: 15px;
  left: -6px;
  background: url(/images/seda/ico_create3_arr.png) 0 0 no-repeat;
  width: 12px;
  height: 19px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li:first-child:before {
  background-image: none;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .im {
  background: url(/images/seda/ico_create3_1.png) 50% 50% no-repeat #cdcfd1;
  font-size: 16px;
  border-radius: 50%;
  margin: 0 auto 10px;
  width: 60px;
  height: 60px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .ti {
  font-size: 16px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .tx {
  color: #a7a7a7;
  font-size: 13.4px;
  margin: 4px 0 0;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .ti,
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .tx {
  padding: 0 8px;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.i2 .im {
  background-image: url(/images/seda/ico_create3_2.png);
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.i3 .im {
  background-image: url(/images/seda/ico_create3_3.png);
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.i4 .im {
  background-image: url(/images/seda/ico_create3_4.png);
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.selected .ti,
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.selected .tx {
  color: #3c64db;
}
#load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li.selected .im {
  background-color: #3c64db;
}
@media screen and (min-width: 640px) {
  #load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li:before {
    top: 33px;
  }
  #load_wrap .sub_contents .sedaSurvey_content .surveyResultBox .lst li .im {
    width: 86px;
    height: 86px;
  }
}

.loadingWrap {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}
.loadingWrap .tx {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.card-subtitle {
  margin: 5px 0;
}

/*가로 슬라이드 답변 형태*/
.cdSlidWrap {
  padding: 10px 41px 10px 36px;
}

.cdSlidBox01 {
  overflow: hidden;
  padding: 0 20px 0 15px;
  font-family: NotoKrL;
}
.cdSlidBox01 .slick-prev,
.cdSlidBox01 .slick-next {
  cursor: pointer;
  position: absolute;
  box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.2);
  top: calc(50% - 12px);
  width: 24px;
  height: 24px;
  margin-top: 0;
  border-radius: 100%;
  border: 1px solid #e3e6e8;
  background: #ffffff;
  color: transparent;
  white-space: nowrap;
  z-index: 50;
}
.cdSlidBox01 .slick-prev:hover,
.cdSlidBox01 .slick-next:hover {
  background: #dbdbdb;
  border: 1px solid #a2a2a2;
}
.cdSlidBox01 .slick-prev {
  left: 5px;
}
.cdSlidBox01 .slick-next {
  right: 10px;
}
.cdSlidBox01 .slick-prev:before {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -3px;
  border-bottom: 2px solid #747474;
  border-left: 2px solid #747474;
  content: "";
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cdSlidBox01 .slick-next:before {
  position: absolute;
  right: 43%;
  top: 50%;
  width: 10px;
  height: 10px;
  margin: -5px -2px 0 0;
  border-top: 2px solid #747474;
  border-right: 2px solid #747474;
  content: "";
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.cdSlidBox01 .slick-slide div {
  padding: 0 2px;
}
.cdSlidBox01 ul.cdInfoList {
  position: relative;
  padding: 10px 20px 15px 20px;
  min-height: 360px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);
}
.cdSlidBox01 ul.cdInfoList > li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
.cdSlidBox01 ul.cdInfoList > li:first-child {
  padding: 5px 0;
  min-height: 130px;
}
.cdSlidBox01 ul.cdInfoList > li:last-child {
  padding: 5px 0 35px 0;
  margin: 5px 0;
  border-bottom: none;
}
.cdSlidBox01 h5 {
  font-size: 1.25rem;
}
.cdSlidBox01 p {
  font-size: 15px;
  padding: 6px 0;
}
.cdSlidBox01 a, .cdSlidBox01 span {
  display: block;
  line-height: 1.5em;
}
.cdSlidBox01 h5.title {
  padding: 5px 0 10px 0;
}
.cdSlidBox01 p.cdCntAdd span.addtle {
  font-weight: 600;
}
.cdSlidBox01 p.cdCntdist {
  padding: 0 0 5px 0;
  font-weight: 600;
  color: #7a7979;
}
.cdSlidBox01 p.cdCntdist span {
  padding: 0 0 0 12px;
}
.cdSlidBox01 p.cdCnt {
  padding: 0 0 5px 0;
}
.cdSlidBox01 p.cdCntBtn {
  position: absolute;
  bottom: 10px;
  width: calc(100% - 40px);
}
.cdSlidBox01 p.cdCntBtn a {
  background: #0052a0;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
}
.cdSlidBox01 p.cdCntBtn a span {
  text-align: center;
  line-height: 35px;
}
.cdSlidBox01 p.cdCntBtn a:hover {
  background-color: #00386d;
}

@media screen and (min-width: 851px) and (max-width: 899px) {
  ul.cdInfoList {
    min-height: 300px !important;
  }
}
@media screen and (min-width: 780px) and (max-width: 850px) {
  ul.cdInfoList {
    min-height: 330px !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 719px) {
  ul.cdInfoList {
    min-height: 300px !important;
  }
}
@media screen and (min-width: 550px) and (max-width: 599px) {
  ul.cdInfoList {
    min-height: 330px !important;
  }
}
@media screen and (max-width: 419px) {
  ul.cdInfoList {
    min-height: 300px !important;
  }
}
/*날씨 카드 답변 형태*/
.adviser {
  font-family: NotoKrL;
}
.adviser .card-resz {
  padding: 30px 20px;
  position: relative !important;
  width: 280px !important;
  border: 1px solid rgba(0, 0, 0, 0.125) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1) !important;
}
.adviser .card-body h5, .adviser .card-body h6 {
  line-height: 1.2em;
}
.adviser .card-body h5 {
  font-size: 1.1rem;
  text-align: center;
}
.adviser .card-body p, .adviser .card-body span {
  display: block;
  line-height: 1.2em;
}
.adviser .card-body .card-address {
  padding: 0;
}
.adviser .card-body .card-temper {
  padding: 20px 0 20px 0;
}
.adviser .card-body .card-temper h6 {
  font-size: 2.5rem;
  text-align: center;
}
.adviser .card-body .card-temper span {
  color: #7a7979;
  font-weight: 600;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}
.adviser .card-body .card-temper-exp .card-temper-info {
  font-size: 15px;
}
.adviser .card-body .card-temper-exp .card-temper-info p {
  padding: 5px 0 0 0;
}
.adviser .card-body .card-temper-exp .card-temper-info i {
  color: #868B94;
  width: 27px;
  text-align: center;
}
.adviser .card-body .card-temper-exp .card-temper-info span {
  display: inline-block;
  padding: 0 0 0 10px;
  color: #333333;
  font-weight: 600 !important;
}
.adviser .card-body .card-temper-exp .card-temper-icon {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

/*---------------------------------------------------------------------- 만족도 조사 -------------------------------------------------------------------------------*/
.feedback-survey {padding: 10px 0 20px 56px;max-width: 988px;}
@media screen and (min-width: 980px) { .feedback-survey {width: 93%;} }
.feedback-survey .blind {position: absolute;width: 1px;height: 1px;margin: -1px;padding: 0;border: 0 none;overflow: hidden;clip: rect(0, 0, 0, 0);}
.feedback-survey .btn-good, .feedback-survey .btn-bad, .feedback-survey .btn-etc {display: block;padding: 5px;box-sizing: border-box;cursor: pointer;}
.feedback-survey .btn-good:before, .feedback-survey .btn-bad:before, .feedback-survey .btn-etc:before {content: '';display: inline-block;line-height: 1;width: 17px;height: 17px;}
.feedback-survey .btn-good:before {background: url("../images/icon_thumb_up_line.svg") center center no-repeat;background-size: 17px 17px;}
.feedback-survey .btn-good:hover, .feedback-survey .btn-good.active {color: #ffc700;}
.feedback-survey .btn-bad:hover, .feedback-survey .btn-bad.active {color: #01c0a6;}
.feedback-survey .btn-bad:before {background: url("../images/icon_thumb_down_line.svg") center center no-repeat;background-size: 17px 17px;}
.feedback-survey .btn-etc:before {background: url("../images/icon_edit_line.svg") center center no-repeat;background-size: 17px 17px;}
.feedback-survey .btn-etc.active:before {background: url("../images/icon_close_line.svg") center center no-repeat;background-size: 17px 17px;}
.feedback-survey .feedback-area {padding: 10px 15px;background: #fff;border-radius: 10px;font-weight: 500;font-size: 14px;line-height: 1.43;color: #505154;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);width: 100%;}
@media screen and (min-width: 550px) and (max-width: 980px) { .feedback-survey .feedback-area {width: calc(100% - 33px);} }
@media screen and (max-width: 549px) { .feedback-survey .feedback-area {width: calc(100% - 10px);} }
.feedback-survey .simple-feedback {display: flex;align-items: center;}
.feedback-survey .simple-feedback .qeustion {font-size: 15px;font-weight: 600;color: #222;}
.feedback-survey .simple-feedback .controls {display: flex;align-items: center;margin-left: auto;}
.feedback-survey .detail-feedback {margin-top: 10px;text-align: right;display: none;}
.feedback-survey .detail-feedback.is-open {display: block;}
.feedback-survey .detail-feedback textarea {width: 100%;padding: 8px 10px;line-height: 1.4;border: 1px solid #eee;border-radius: 8px;font-size: 15px;}
.feedback-survey .detail-feedback button {background-color: #7a7979;color: #fff;padding: 8px 17px;margin-top: 5px;border-radius: 8px;font-size: 15px;}
.feedback-survey .detail-feedback button:hover, .feedback-survey .detail-feedback button:focus {background-color: #0052a0; cursor: pointer;}

.feedback-survey {padding: 10px 0 20px 56px;max-width: 988px;}
@media screen and (min-width: 980px) { .feedback-survey {width: 93%;} }
.feedback-survey .blind {position: absolute;width: 1px;height: 1px;margin: -1px;padding: 0;border: 0 none;overflow: hidden;clip: rect(0, 0, 0, 0);}
.feedback-survey .btn-good, .feedback-survey .btn-bad, .feedback-survey .btn-etc {display: block;padding: 5px;box-sizing: border-box;cursor: pointer;}
.feedback-survey .btn-good:before, .feedback-survey .btn-bad:before, .feedback-survey .btn-etc:before {content: '';display: inline-block;line-height: 1;width: 21px;height: 21px;}
.feedback-survey .btn-good:before {background: url("../images/icon_thumb_up_line.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .btn-good:hover:before,
.feedback-survey .btn-good:focus:before,
.feedback-survey .btn-good:active:before,
.feedback-survey .btn-good.active:before {background: url("../images/icon_thumb_up_fill.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .btn-bad:before {background: url("../images/icon_thumb_down_line.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .btn-bad:hover:before,
.feedback-survey .btn-bad:focus:before,
.feedback-survey .btn-bad:active:before,
.feedback-survey .btn-bad.active:before {background: url("../images/icon_thumb_down_fill.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .btn-etc:before {background: url("../images/icon_edit_line.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .btn-etc.active:before {background: url("../images/icon_close_line.svg") center center no-repeat;background-size: 21px 21px;}
.feedback-survey .feedback-area {padding: 10px 15px;background: #fff;border-radius: 10px;font-weight: 500;font-size: 14px;line-height: 1.43;color: #505154;box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.1);width: 100%;}
@media screen and (min-width: 550px) and (max-width: 980px) { .feedback-survey .feedback-area {width: calc(100% - 33px);} }
@media screen and (max-width: 549px) { .feedback-survey .feedback-area {width: calc(100% - 10px);} }
.feedback-survey .simple-feedback {display: flex;align-items: center;}
.feedback-survey .simple-feedback .qeustion {font-size: 17px;font-weight: 600;color: #222;}
.feedback-survey .simple-feedback .controls {display: flex;align-items: center;margin-left: auto;}
.feedback-survey .detail-feedback {margin-top: 10px;text-align: right;display: none;}
.feedback-survey .detail-feedback.is-open {display: block;}
.feedback-survey .detail-feedback textarea {width: 100%;padding: 8px 10px;line-height: 1.4;border: 1px solid #eee;border-radius: 8px;font-size: 17px; font-family: NotoKrL;}
.feedback-survey .detail-feedback button {background-color: #7a7979;color: #fff;padding: 8px 17px;margin-top: 5px;border-radius: 8px;font-size: 17px; font-family: NotoKrL;}
.feedback-survey .detail-feedback button:hover, .feedback-survey .detail-feedback button:focus {background-color: #0052a0;}

/*---------------------------------------------------------------------- WEB -------------------------------------------------------------------------------*/
@media screen and (min-width: 980px) {
  .shadow.on {
    display: none;
  }
  .ham_menu {
    display: block !important;
    left: 0 !important;
    box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.5);
  }
  .ham_menu .logout {
    right: 20px;
  }
  .ham_menu .ham_c {
    display: none;
  }
  .ham_top {
    padding-right: 16px;
  }
  .header,
.contents {
    left: 360px;
    right: 0;
    width: auto;
  }
  .pop-alert {
    left: 368px;
  }
  .total_menu {
    display: none;
  }
  .font-set {
    left: 380px;
  }
  #load_wrap,
#dic_wrap {
    margin-left: 360px;
  }
  #load_wrap .sub_contents .form-horizontal,
#load_wrap .sub_contents .guide,
#load_wrap .sub_contents .checklist-form,
#load_wrap .sub_contents .company-list,
#load_wrap .sub_contents .my-config,
#load_wrap .sub_contents .bepAnalsContent,
#load_wrap .sub_contents .sedaSurvey_content {
    padding-left: 32px;
    padding-right: 32px;
  }
  #load_wrap .sub_contents {
    background-color: #fff;
    position: relative;
    margin: 20px;
  }
}
@media screen and (min-width: 980px) {
  .chatbot .adviser .adv_box {
    display: inline-block;
    width: 95%;
  }
  .chatbot .adviser .con_box {
    width: 95%;
  }
  /*메인*/
  .menu > ul {
    width: 60%;
    margin: 0 auto;
  }
  .web_first_adv,
.web_second {
    display: block;
  }
  .chatbot .date {
    width: 96.5%;
  }
  .mobile_first_adv,
.mobile_second {
    display: none;
  }
  .chatbot .guest {
    margin-right: 27px;
  }
  .chatbot .web_first_adv {
    display: block;
    padding-bottom: 20px;
  }
  .chatbot .web_second {
    display: block;
    margin-top: 30px;
  }
  .chatbot .chat .chat_wrap .adviser {
    background-size: 50px 49px;
  }
  .chatbot .adviser p {
    line-height: 140%;
  }
  .chatbot .chat {
    font-size: 17px;
  }
  .chatbot .guest > div {
    padding-left: 84px;
  }
  .chatbot .a_time,
.chatbot .g_time {
    font-size: 12px;
    width: 68px;
    text-align: right;
  }
  .chatbot .adviser p > span.chat_btn1.on,
.chatbot .adviser p > span.chat_btn1 {
    font-size: 16px;
    letter-spacing: 0px;
    padding: 5.5px 18px 5px 18px;
  }
  .chatbot .adviser p > span.chat_btn2 {
    font-size: 16px;
    padding: 6.5px 100px 6px 100px;
  }
  /*문답지식*/
  .qna .banner .list_tab li {
    margin-left: 10px;
  }
  .qna .banner .list_tab li a {
    font-size: 15px;
  }
  .qna .banner .ban_tit {
    font-size: 19px;
  }
  .qna .banner {
    padding: 20px 20% 18px 20%;
  }
  .qna .list_contents {
    padding: 35px 20% 0 20%;
  }
  .page_num ul li {
    margin-right: 14px;
  }
  .qna .list_con .con_tit {
    font-size: 17px;
  }
  .qna .list_con .con_con {
    font-size: 15px;
    height: 39.5px;
  }
  .qna .list1 {
    border-top: 1px solid #d9d9d9;
  }
  .page_num .prev {
    margin-right: 7px;
  }
  /*용어사전*/
  .dictionary .total_keyword {
    width: 95px;
    height: 38px;
    padding-top: 11px;
    margin-right: 5px;
    font-size: 15px;
  }
  .dictionary .keword > ul {
    float: left;
  }
  .dictionary .keword > ul li {
    height: 36px;
    margin: 0 4.5px 4.5px 0;
    font-size: 15px;
    line-height: 36px;
  }
  .dictionary .banner .ban_tit {
    font-size: 19px;
  }
  .dictionary .banner .ban_sub1 {
    font-size: 14px;
    padding: 5px 0 5px 7px;
  }
  .dictionary .keword_list ul li {
    font-size: 16px;
  }
  .dictionary .keword_list ul li:first-child {
    border-top: 1px solid #e3e3e3;
  }
  .dictionary .keword > ul li.total_keyword {
    padding-top: 0px;
    height: 36px;
    margin-right: 5px;
    line-height: 36px;
  }
  /*상품안내*/
  .goods .banner {
    padding: 20px 20% 18px 20%;
  }
  .goods .banner .ban_tit {
    font-size: 19px;
  }
  .goods .banner .ban_sub1 li a {
    font-size: 15px;
  }
  .goods .banner .ban_sub1 li {
    margin-left: 10px;
  }
  .goods .glist_wrap {
    padding: 35px 20% 5px 20%;
  }
  .goods .glist_contents .g_title p:first-child {
    font-size: 17px;
  }
  .goods .glist_contents .g_contents p:first-child {
    font-size: 15px;
  }
  .goods .glist_contents .g_contents p:first-child + p {
    font-size: 13px;
  }
  .glist1 {
    border-top: 1px solid #e1e1e1;
    padding-top: 15px;
  }
  /*menu*/
  .ham_menu {
    max-width: 360px;
  }
  /*대화유형*/
  p.coice {
    width: 42%;
    min-width: 550px;
  }
  /*문답지식2p*/
  .qna_contents {
    padding: 0 20%;
    margin: 0 auto;
  }
  .qna_con {
    padding: 20px 27px 20px 27px;
    margin: 75px auto 15px auto;
    height: 90%;
  }
  .qna_con .title,
.qna_con .web_title {
    display: none;
  }
  .qna_con .web_title {
    overflow: hidden;
    display: block;
    border-bottom: 1px solid #d9d9d9;
  }
  .qna_con .web_title .con_title {
    float: left;
  }
  .qna_con .web_title .con_title + p {
    text-align: center;
    padding-bottom: 17px;
    width: 75%;
    margin: 15px auto 7px auto;
    border-bottom: none;
  }
  .qna_con .qna_text {
    font-size: 15px;
    margin-top: 26px;
  }
  /*용어사전2p*/
  .dic_con {
    margin: 75px auto 20px auto;
    padding: 20px 27px 20px 27px;
    width: calc(58% - 40px);
  }
  .dic_con .dic_title {
    margin: 15px auto 7px auto;
  }
  .dic_con .dic_title p {
    padding-bottom: 24px;
  }
  .dic_con .dic_text {
    margin-top: 26px;
  }
  /*자주하는 질문*/
  .auto1 .que_list ul,
.auto2 .que_list ul {
    max-height: 196px;
  }
  .auto1 .que_list ul li,
.auto2 .que_list ul li {
    padding: 5.5px 15px 5.5px 15px;
  }
  .auto1 .que_list ul li a,
.auto2 .que_list ul li a {
    font-size: 15px;
    line-height: 140%;
  }
  /*데이터없음*/
  .web .qna .list .no_data {
    margin: 13% auto 0 auto;
  }
  /*데이터 없음*/
  .qna .list .no_data {
    margin: 245px auto 0 auto;
    background: url(../images/no-data.jpg) 28px 12px no-repeat;
    background-size: 60px 70px;
    font-size: 17.5px;
    padding: 40px 0 0 45px;
    width: 300px;
    color: #888;
  }
  /*satisfaction*/
  .chat_type3 p {
    width: 42%;
    min-width: 550px;
  }
  /*search*/
  .search_contents {
    padding: 10px 20%;
  }
  .search_contents .text > p:first-child {
    font-size: 17px;
  }
  .search_contents .text > p:first-child + p {
    font-size: 15px;
  }
}
/*min-width:980px*/
@media screen and (min-width: 720px) {
  /*도움말*/
  .help_contents {
    padding-bottom: 100px;
  }
  .help_contents .inner {
    max-width: 740px;
    margin: 0 auto;
    height: inherit;
    overflow: hidden;
  }
  /* 도움말 비주얼 영역 */
  .help_contents .help_intro {
    background: #1c81de;
    background-image: url("../images/help_webBg_01.png"), url("../images/help_webBg_02.png"), linear-gradient(47deg, #1c81de, 41%, #48a5e8);
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: left bottom, right top;
    background-size: 252px, 216px, contain;
    padding-top: 78px;
  }
  .help_contents .hele_introText {
    float: left;
    width: 50%;
    margin-top: 90px;
    text-align: left;
  }
  .help_contents .hele_introText h4 {
    font-size: 40px;
    font-weight: normal;
    line-height: 38px;
  }
  .help_contents .hele_introText p {
    word-break: keep-all;
    font-size: 17px;
    line-height: 150%;
    margin-top: 22px;
  }
  .help_contents .hele_introImg {
    float: right;
    width: 50%;
    padding: 0 5%;
    margin-top: 0;
  }
  /* 도움말 컨텐츠 */
  .help_contents .help_conBox {
    margin-top: 57px;
    text-align: center;
    padding: 35px 0;
  }
  .help_contents .help_conBox .help_conTitle {
    color: #5f94d6;
    font-size: 29px;
  }
  .help_contents .help_conBox .help_box {
    margin: 35px auto;
  }
  .help_contents .help_conBox .help_box:last-child {
    margin-bottom: 35px;
  }
  .help_contents .help_conBox .help_box .num {
    display: block;
    margin: 0 auto;
    width: 58px;
    height: 58px;
    line-height: 62px;
    border-radius: 50%;
    background-color: #39aabb;
    color: #fff;
    text-align: center;
    font-size: 30px;
  }
  .help_contents .help_conBox .help_box .main_text {
    color: #222222;
    font-size: 28px;
    line-height: 27px;
    margin: 17px 0 13px;
  }
  .help_contents .help_conBox .help_box .sub_text {
    color: #424242;
    font-size: 18px;
  }
  .help_contents .help_conBox .imgBox {
    width: 39%;
    margin: 0 17px;
  }
  /* 도움말 버튼 */
}
/*---------------------------------------------------------------------- TAB -------------------------------------------------------------------------------*/
@media screen and (min-width: 550px) and (max-width: 980px) {
  .web_first_adv,
.web_second {
    display: block;
  }
  .chatbot .date {
    width: 92.5%;
  }
  .mobile_first_adv,
.mobile_second {
    display: none;
  }
  .chatbot .guest {
    margin-right: 23px;
  }
  .chatbot .web_first_adv {
    display: block;
    padding-bottom: 11px;
  }
  .chatbot .web_second {
    display: block;
    margin-top: 19px;
  }
  .chatbot .chat .chat_wrap .adviser {
    background-size: 46px 45px;
  }
  .chatbot .chat {
    font-size: 16px;
  }
  .chatbot .guest > div {
    padding-left: 84px;
  }
  .chatbot .adviser p > span.chat_btn1.on,
.chatbot .adviser p > span.chat_btn1 {
    font-size: 15px;
    letter-spacing: 0px;
    padding: 5.5px 18px 5px 18px;
  }
  .chatbot .adviser p > span.chat_btn2 {
    font-size: 15px;
    padding: 6.5px 100px 6px 100px;
  }
  /*문답지식*/
  .qna .banner .ban_tit {
    font-size: 19px;
  }
  .qna .title .con_title {
    display: none;
  }
  .qna .banner {
    padding: 20px 7% 18px 7%;
  }
  .qna .list_contents {
    padding: 35px 7% 0 7%;
  }
  .qna .list_con .con_tit {
    font-size: 17px;
  }
  .qna .list_con .con_con {
    font-size: 14px;
    height: 36.5px;
  }
  .qna .list1 {
    border-top: 1px solid #d9d9d9;
  }
  /*용어사전*/
  .dictionary .banner .ban_tit {
    font-size: 19px;
    font-weight: 700;
    margin-right: 5px;
    float: left;
  }
  .dictionary .keword_list ul li:first-child {
    border-top: 1px solid #e3e3e3;
  }
  .dictionary .keword_list {
    font-size: 15.5px;
  }
  .dictionary .keword_list ul li {
    padding-left: 5px;
  }
  /*상품안내*/
  .goods .banner {
    padding: 20px 7% 18px 7%;
  }
  .goods .banner .ban_tit {
    font-size: 19px;
  }
  .goods .banner .ban_sub1 li a {
    font-size: 15px;
  }
  .goods .banner .ban_sub1 li {
    margin-left: 10px;
  }
  .goods .glist_wrap {
    padding: 35px 7% 5px 7%;
  }
  .goods .glist_contents .g_title p:first-child {
    font-size: 17px;
  }
  .goods .glist_contents .g_contents p:first-child {
    font-size: 14px;
  }
  .goods .glist_contents .g_contents p:first-child + p {
    font-size: 13px;
  }
  .glist1 {
    border-top: 1px solid #e1e1e1;
    padding-top: 15px;
  }
  /*menu*/
  .ham_menu {
    max-width: 420px;
    min-height: 450px;
  }
  /*추천상품*/
  p.coice {
    width: 85%;
    max-width: 600px;
  }
  /*문답지식2p*/
  .qna_contents {
    padding: 0 5%;
    margin: 0 auto;
  }
  .qna_con {
    padding: 20px 27px 20px 27px;
    margin: 75px auto 15px auto;
    height: 90%;
  }
  .qna_con .title {
    display: none;
  }
  .qna_con .web_title {
    overflow: hidden;
    display: block;
    border-bottom: 1px solid #d9d9d9;
  }
  .qna_con .web_title .con_title {
    float: left;
  }
  .qna_con .web_title .con_title + p {
    text-align: center;
    padding-bottom: 17px;
    width: 75%;
    margin: 15px auto 7px auto;
    border-bottom: none;
  }
  .qna_con .qna_text {
    font-size: 15px;
    margin-top: 26px;
  }
  /*용어사전2p*/
  .dic_con {
    margin: 75px auto 20px auto;
    padding: 20px 27px 20px 27px;
    width: 83%;
  }
  .dic_con .dic_title {
    margin: 15px auto 7px auto;
  }
  .dic_con .dic_title p {
    padding-bottom: 24px;
  }
  .dic_con .dic_text {
    margin-top: 26px;
  }
  /*font-size*/
  .font_control > p {
    font-size: 17px;
    text-align: center;
    margin-top: 16px;
  }
  .font_control {
    max-height: 125px;
  }
  .font_w {
    margin: 13px auto;
    width: 345px;
  }
  .font_w div {
    height: 40px;
    margin-right: 60px;
    text-align: center;
  }
  .chatbot .adviser .chat_type3 p {
    width: 85%;
    max-width: 600px;
  }
  /*satisfaction*/
  /*search*/
  .search_contents {
    padding: 10px 7%;
  }
  .search_contents .text > p:first-child {
    font-size: 17px;
  }
  .search_contents .text > p:first-child + p {
    font-size: 15px;
  }
  /*search2*/
  .search2 .title_wrap {
    background-color: white;
    padding: 20px 7%;
    text-align: center;
  }
  .search2 .category span:first-child {
    padding-right: 12px;
    background: url(../images/search_na.png) right 1px no-repeat;
    background-size: 6px 9px;
  }
  .search2 .category span:first-child + span {
    padding-left: 4px;
  }
  .search2 .con_tit p {
    font-size: 23px;
    line-height: 30px;
    font-weight: 600;
  }
  .search2 .con_text {
    padding: 20px 7%;
    font-size: 16px;
    background: url(../images/search_bar.gif) center 0px no-repeat;
    background-size: 23px 3px;
  }
  .search2 .con_text p {
    padding-bottom: 20px;
  }
}
/*min-width:550px*/
/*---------------------------------------------------------------------- Mobile -------------------------------------------------------------------------------*/
@media (max-width: 1400px) {
  .chatbot .re_box {
    padding: 0 0 15px 100px;
    width: calc(100% - 100px);
  }
  #load_wrap .layerPopup .pop-layer {
    width: calc(100% - 500px);
  }
}
@media (max-width: 980px) {
  .chatbot .adviser > div.poll .poll-buttons {
    padding: 0;
    margin: 0;
    float: left;
    width: 95%;
  }
  .chatbot .re_box {
    width: calc(95% - 100px);
  }
  .dictionary .keword .search_div {
    float: right;
    width: 100%;
  }
  #load_wrap .flip-card {
    padding: 8px 16px;
    width: 100%;
  }
  #load_wrap .flip-card .flip-card-inner .card-content {
    padding: 2px 1%;
  }
  #load_wrap .flip-card .flip-card-inner .card-content-detail .selectBox {
    width: calc(31% - 20px);
  }
  #load_wrap .flip-card .flip-card-inner .card-bottom .cancel {
    background-position: 20% 12px;
  }
  #load_wrap .flip-card .flip-card-inner .card-bottom .apply {
    background-position: 15% -39px;
  }
  #load_wrap .flip-card .flip-card-inner .card-bottom a {
    max-width: calc(50% - 10px);
  }
  #load_wrap .bigdata_con {
    padding: 0 4% 4% 4%;
  }
  #load_wrap .bigdata_con .tab ul li a {
    font-size: 1.5em;
  }
  #load_wrap .bigdata_con .epln {
    font-size: 1.2em;
  }
  #load_wrap .layerPopup .pop-layer {
    width: calc(100% - 100px);
    left: 50%;
  }
  #load_wrap .layerPopup {
    width: 100%;
  }
  /*슬라이드 팝업 slider popup*/
  #main_modal .list-pops {
    max-width: 400px;
  }
  #slide .sp-arrows .sp-previous-arrow {
    left: 20px;
  }
  #slide .sp-arrows .sp-next-arrow {
    right: 20px;
  }
}
@media (max-width: 480px) {
  #load_wrap .bigdata_con .con .goodtmt {
    padding: 20px 5%;
  }
  #load_wrap .bigdata_con .con .goodtmt span {
    position: static;
    display: block;
    width: 100%;
  }
  #load_wrap .bigdata_con .con .goodtmt ul {
    margin: 15px 0;
  }
}
@media (max-width: 420px) {
  #load_wrap .bigdata_con h2 {
    font-size: 1.3em;
  }
  #load_wrap .bigdata_con .con h2 {
    font-size: 1.3em;
  }
  .chatbot .adviser > div.poll .question .question-subject {
    word-break: keep-all;
  }
  .chatbot .adviser > div.poll .poll-buttons {
    padding: 0;
    margin: 0;
    float: left;
    width: 90%;
  }
  #load_wrap .bigdata_con .graph_txt ul li {
    width: calc(100% - 40px);
  }
  .chatbot .re_box {
    padding: 0 0 15px 80px;
    width: calc(100% - 80px);
  }
  .re_box li {
    float: left;
    width: 50%;
    padding: 5px;
    box-sizing: border-box;
  }
  .re_box a {
    width: 100%;
    text-align: center;
    display: block;
    border: 1px solid #0052a0;
    border-radius: 25px;
    padding: 10px;
    cursor: pointer;
  }
  .re_box .revert {
    background: url(../images/revert.png) no-repeat 50px;
  }
  .re_box .prev {
    background: url(../images/prev.png) no-repeat 50px;
  }
  .btnWrap_type3 {
    margin-right: 0;
  }
  .btnWrap_type3 .btnType3 {
    font-size: 14px;
    padding: 5px 9px;
  }
  /*슬라이드 팝업 slider popup*/
  #main_modal .list-pops {
    max-width: 400px;
  }
  /* 용어사전 */
  /*.dictionary .keword_list{}*/
  .chatbot .adviser .re_box ul li a {
    text-align: center;
  }
  .chatbot .adviser .re_box {
    display: block;
    overflow: hidden;
    width: 100%;
  }
  #load_wrap .bigdata_con .graph_txt ul li .Analy {
    width: 40px;
    height: 40px;
    line-height: 23px;
  }
  #load_wrap .flip-card .flip-card-inner .card-content-detail .dong {
    width: calc(97% - 15px);
    margin: 10px 0% 5px 41px;
  }
  #load_wrap .flip-card .flip-card-inner .card-content-detail .selectBox {
    width: calc(48% - 20px);
    margin-right: 1%;
  }


}/*# sourceMappingURL=mobile.css.map */
