@charset "UTF-8";
/**********************************************************************
Date : 2023 / 12
explanation : styleSheet
**********************************************************************/

/* ++++++++++ 여기서부터 Reset CSS ++++++++++ */

/*모바일 웹 폰트 크기 자동조정 문제*/
html {
  -webkit-text-size-adjust: none; /*Chrome, Safari, newer versions of Opera*/
  -moz-text-size-adjust: none; /*Firefox*/
  -ms-text-size-adjust: none; /*Ie*/
  -o-text-size-adjust: none; /*old versions of Opera*/
}

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap");

/*html,body{width: 100%; height:100%; } 가로스크롤 짤림방지 위해 미디어쿼리에 나눔*/
body {
  font-family: "ui-sans-serif", "Malgun Gothic", sans-serif;
  font-size: 14px;
  color: #000000;
  line-height: 20px;
  letter-spacing: -0.05em;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
}

/*>>default style */
html,
body {
  height: 100%;
}
html {
  /*overflow-y:scroll*/
  overflow-y: auto;
}
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td,
th {
  font-family: "Malgun Gothic", sans-serif;
}
input {
  font-family: "Malgun Gothic", sans-serif;
}
textarea {
  font-family: "Malgun Gothic", sans-serif;
}
dd,
dt,
ol,
dl,
ul,
li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 240618 추가 */
div.ob3 > ul {
  margin-bottom: 1rem;
}
div.ob3 ul > li {
  color: #101010;
  list-style: disc;
  list-style-position: inside;
  padding-left: 1rem;
}
strong {
  list-style: none;
}

form {
  display: inline;
}
label {
  display: none; /*cursor:pointer;*/
}
label.show {
  display: inline;
  margin-right: 0px;
}
label.show2 {
  display: inline;
  margin-right: 12px;
}
label.show3 {
  display: inline;
  margin-left: -3px;
  margin-right: 0px;
}
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
}
legend,
caption,
.hide {
  display: none;
  height: 0;
  width: 0;
  font-size: 0;
}

fieldset {
  vertical-align: top;
  border: 0;
}
p {
  margin: 0;
}
button {
  margin: 0;
  padding: 0;
  border-spacing: 0;
  cursor: pointer;
  border: 0;
  background: none;
}
blockquote,
q {
  quotes: none;
}
ins {
  text-decoration: none;
}
del {
  text-decoration: line-through;
}
hr {
  display: none;
}
a {
  color: #333333;
  text-decoration: none;
}
/*table.nowrap th, table.nowrap td		{ white-space:nowrap; }*/
.clear,
.clear:after,
.clear:before {
  clear: both;
}
.skip,
.blind,
caption,
legend {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  text-indent: -3000px;
  border: none;
  overflow: hidden;
}
.hidden {
  position: absolute;
  left: -1000%;
  top: 0;
  width: 1px;
  height: 1px;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

/*박스 크기 고정(패딩값 영향없음)*/
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
:after,
:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*크롬 input 색상지우기*/
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px white inset !important;
}
input {
  outline: none;
}

/*:::::::::::::::::::::::::::폰트 setting::::::::::::::::::::::::: */
/* 폰트정의*/
.f10 {
  font-size: 10px;
}
.f11 {
  font-size: 11px;
}
.f12 {
  font-size: 12px;
}
.f13 {
  font-size: 13px;
}
.f14 {
  font-size: 14px;
}
.f15 {
  font-size: 15px;
}
.f16 {
  font-size: 16px;
}
.f17 {
  font-size: 17px;
}
.f18 {
  font-size: 18px;
}
.f19 {
  font-size: 19px;
}
.f20 {
  font-size: 20px;
}
.f21 {
  font-size: 21px;
}
.f22 {
  font-size: 22px;
}
.f24 {
  font-size: 24px;
}
.f26 {
  font-size: 26px;
}
.f28 {
  font-size: 28px;
}
.f30 {
  font-size: 30px;
}
.f32 {
  font-size: 32px;
}
.f34 {
  font-size: 34px;
}
.f42 {
  font-size: 42px;
}
.f44 {
  font-size: 44px;
}
.f46 {
  font-size: 46px;
}

/*폰트 굵기 및 색상*/
.t_white {
  color: #ffffff;
}
.t_deepblue {
  color: #035492;
}
.t_blue {
  color: #0000ff;
}
.t_red {
  color: #eb1729;
}
.t_yellow {
  color: #ffff00;
}
.t_green {
  color: #509e1b;
}
.t_emerald {
  color: #16b6c6;
}
.t_orange {
  color: #ff6600;
}
.t_brown {
  color: #c85c1b;
}
.t_purple {
  color: #8248f8;
}
.t_gray {
  color: #757575;
}

.t_bold {
  font-weight: 600;
}
.t_normal {
  font-weight: normal;
}

/*:::::::::::::::::::::::::::콤보박스 setting::::::::::::::::::::::::: */
input,
select {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
input {
  /*outline: none;-webkit-appearance:none;*/
  -webkit-ime-mode: active;
  -moz-ime-mode: active;
  -ms-ime-mode: active;
  ime-mode: active;
}
input[type="submit"],
input[type="button"] {
  cursor: pointer;
}
textarea {
  outline: none;
  resize: none;
}

input[type="button"]:active,
.btnSendMsg:active,
input[type="submit"]:active {
  transform: scale(0.98);
}

/* 기본 스타일 리셋시키기 */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 10px;
  background: #d5d4d3;
  cursor: pointer;
  border-radius: 50px;
  outline: none;
  transition: background 450ms ease-in;
}

input[type=range]:focus {
	outline: none;
}

input[type=range]::-webkit-slider-thumb{
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  background: #6651fb;
  border: 1px solid #6651fb;
  border-radius:50%;
  cursor: pointer;
}

input[type=range]::-moz-range-thumb{
  -webkit-appearance: none;
  width:10px;
  height:10px;
  background: #6651fb;
  border: 1px solid #6651fb;
  border-radius:50%;
  cursor: pointer;
}

/*placeholder 색상변경*/
input[type="text"]::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="text"]::-moz-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="text"]:-ms-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}

input[type="password"]::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="password"]::-moz-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="password"]:-ms-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}

input[type="email"]::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="email"]::-moz-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}
input[type="email"]:-ms-input-placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
  letter-spacing: -0.05em;
}

textarea::placeholder {
  font-size: 16px;
  font-weight: bold;
  color: #cccccc;
}

/*disabled 색상변경*/
input:disabled {
  background: #efefef;
  cursor: default !important;
}
select:disabled {
  background: #efefef;
  cursor: default !important;
  color: #a4a4a4;
}
button:disabled {
  background: #efefef;
  cursor: default !important;
}

.img_disabled {
  opacity: 0.5;
  cursor: default;
}
@media only screen and (max-width: 520px) {
  input[type="text"]::-webkit-input-placeholder {
    font-size: 14px;
  }
  input[type="text"]::-moz-placeholder {
    font-size: 14px;
  }
  input[type="text"]:-ms-input-placeholder {
    font-size: 14px;
  }
  
  input[type="password"]::-webkit-input-placeholder {
    font-size: 14px;
  }
  input[type="password"]::-moz-placeholder {
    font-size: 14px;
  }
  input[type="password"]:-ms-input-placeholder {
    font-size: 14px;
  }
  
  input[type="email"]::-webkit-input-placeholder {
    font-size: 14px;
  }
  input[type="email"]::-moz-placeholder {
    font-size: 14px;
  }
  input[type="email"]:-ms-input-placeholder {
    font-size: 14px;
  }
  
  textarea::placeholder {
    font-size: 14px;
  }
  
}

/********** INPUT **********/
input,
select {
  border: 1px #f2f2f2 solid;
}
input.base {
  font-size: 16px;
  height: 45px;
  padding: 0px 0px;
  border: 0px;
  border-bottom: 1px solid #f2f2f2;
}

input.w1 {
  width: 1%;
}
input.w2 {
  width: 2%;
}
input.w3 {
  width: 3%;
}
input.w4 {
  width: 4%;
}
input.w5 {
  width: 5%;
}
input.w6 {
  width: 6%;
}
input.w7 {
  width: 7%;
}
input.w8 {
  width: 8%;
}
input.w9 {
  width: 9%;
}
input.w10 {
  width: 10%;
}
input.w11 {
  width: 11%;
}
input.w12 {
  width: 12%;
}
input.w13 {
  width: 13%;
}
input.w14 {
  width: 14%;
}
input.w15 {
  width: 15%;
}
input.w16 {
  width: 16%;
}
input.w17 {
  width: 17%;
}
input.w18 {
  width: 18%;
}
input.w19 {
  width: 19%;
}
input.w20 {
  width: 20%;
}
input.w21 {
  width: 21%;
}
input.w22 {
  width: 22%;
}
input.w23 {
  width: 23%;
}
input.w24 {
  width: 24%;
}
input.w25 {
  width: 25%;
}
input.w26 {
  width: 26%;
}
input.w27 {
  width: 27%;
}
input.w28 {
  width: 28%;
}
input.w29 {
  width: 29%;
}
input.w30 {
  width: 30%;
}
input.w31 {
  width: 31%;
}
input.w32 {
  width: 32%;
}
input.w33 {
  width: 33%;
}
input.w34 {
  width: 34%;
}
input.w35 {
  width: 35%;
}
input.w36 {
  width: 36%;
}
input.w37 {
  width: 37%;
}
input.w38 {
  width: 38%;
}
input.w39 {
  width: 39%;
}
input.w40 {
  width: 40%;
}
input.w41 {
  width: 41%;
}
input.w42 {
  width: 42%;
}
input.w43 {
  width: 43%;
}
input.w44 {
  width: 44%;
}
input.w45 {
  width: 45%;
}
input.w46 {
  width: 46%;
}
input.w47 {
  width: 47%;
}
input.w48 {
  width: 48%;
}
input.w49 {
  width: 49%;
}
input.w49h {
  width: 49.5%;
}
input.w50 {
  width: 50%;
}
input.w51 {
  width: 51%;
}
input.w52 {
  width: 52%;
}
input.w53 {
  width: 53%;
}
input.w54 {
  width: 54%;
}
input.w55 {
  width: 55%;
}
input.w56 {
  width: 56%;
}
input.w57 {
  width: 57%;
}
input.w58 {
  width: 58%;
}
input.w59 {
  width: 59%;
}
input.w60 {
  width: 60%;
}
input.w61 {
  width: 61%;
}
input.w62 {
  width: 62%;
}
input.w63 {
  width: 63%;
}
input.w64 {
  width: 64%;
}
input.w65 {
  width: 65%;
}
input.w66 {
  width: 66%;
}
input.w67 {
  width: 67%;
}
input.w68 {
  width: 68%;
}
input.w69 {
  width: 69%;
}
input.w70 {
  width: 70%;
}
input.w71 {
  width: 71%;
}
input.w72 {
  width: 72%;
}
input.w73 {
  width: 73%;
}
input.w74 {
  width: 74%;
}
input.w75 {
  width: 75%;
}
input.w76 {
  width: 76%;
}
input.w77 {
  width: 77%;
}
input.w78 {
  width: 78%;
}
input.w79 {
  width: 79%;
}
input.w80 {
  width: 80%;
}
input.w81 {
  width: 81%;
}
input.w82 {
  width: 82%;
}
input.w83 {
  width: 83%;
}
input.w84 {
  width: 84%;
}
input.w85 {
  width: 85%;
}
input.w86 {
  width: 86%;
}
input.w87 {
  width: 87%;
}
input.w88 {
  width: 88%;
}
input.w89 {
  width: 89%;
}
input.w90 {
  width: 90%;
}
input.w91 {
  width: 91%;
}
input.w92 {
  width: 92%;
}
input.w93 {
  width: 93%;
}
input.w94 {
  width: 94%;
}
input.w95 {
  width: 95%;
}
input.w96 {
  width: 96%;
}
input.w97 {
  width: 97%;
}
input.w98 {
  width: 98%;
}
input.w99 {
  width: 99%;
}
input.w100 {
  width: 100%;
}

/* button */
button.w49h {
  width: 49.5%;
}

/********** select **********/
select.base {
  font-size: 16px;
  height: 45px;
  padding: 0px 0px;
  border: 0px;
  border-bottom: 1px solid #d6d6d6;
}
select.w1 {
  width: 1%;
}
select.w2 {
  width: 2%;
}
select.w3 {
  width: 3%;
}
select.w4 {
  width: 4%;
}
select.w5 {
  width: 5%;
}
select.w6 {
  width: 6%;
}
select.w7 {
  width: 7%;
}
select.w8 {
  width: 8%;
}
select.w9 {
  width: 9%;
}
select.w10 {
  width: 10%;
}
select.w11 {
  width: 11%;
}
select.w12 {
  width: 12%;
}
select.w13 {
  width: 13%;
}
select.w14 {
  width: 14%;
}
select.w15 {
  width: 15%;
}
select.w16 {
  width: 16%;
}
select.w17 {
  width: 17%;
}
select.w18 {
  width: 18%;
}
select.w19 {
  width: 19%;
}
select.w20 {
  width: 20%;
}
select.w21 {
  width: 21%;
}
select.w22 {
  width: 22%;
}
select.w23 {
  width: 23%;
}
select.w24 {
  width: 24%;
}
select.w25 {
  width: 25%;
}
select.w26 {
  width: 26%;
}
select.w27 {
  width: 27%;
}
select.w28 {
  width: 28%;
}
select.w29 {
  width: 29%;
}
select.w30 {
  width: 30%;
}
select.w31 {
  width: 31%;
}
select.w32 {
  width: 32%;
}
select.w33 {
  width: 33%;
}
select.w34 {
  width: 34%;
}
select.w35 {
  width: 35%;
}
select.w36 {
  width: 36%;
}
select.w37 {
  width: 37%;
}
select.w38 {
  width: 38%;
}
select.w39 {
  width: 39%;
}
select.w40 {
  width: 40%;
}
select.w41 {
  width: 41%;
}
select.w42 {
  width: 42%;
}
select.w43 {
  width: 43%;
}
select.w44 {
  width: 44%;
}
select.w45 {
  width: 45%;
}
select.w46 {
  width: 46%;
}
select.w47 {
  width: 47%;
}
select.w48 {
  width: 48%;
}
select.w49 {
  width: 49%;
}
select.w50 {
  width: 50%;
}
select.w51 {
  width: 51%;
}
select.w52 {
  width: 52%;
}
select.w53 {
  width: 53%;
}
select.w54 {
  width: 54%;
}
select.w55 {
  width: 55%;
}
select.w56 {
  width: 56%;
}
select.w57 {
  width: 57%;
}
select.w58 {
  width: 58%;
}
select.w59 {
  width: 59%;
}
select.w60 {
  width: 60%;
}
select.w61 {
  width: 61%;
}
select.w62 {
  width: 62%;
}
select.w63 {
  width: 63%;
}
select.w64 {
  width: 64%;
}
select.w65 {
  width: 65%;
}
select.w66 {
  width: 66%;
}
select.w67 {
  width: 67%;
}
select.w68 {
  width: 68%;
}
select.w69 {
  width: 69%;
}
select.w70 {
  width: 70%;
}
select.w71 {
  width: 71%;
}
select.w72 {
  width: 72%;
}
select.w73 {
  width: 73%;
}
select.w74 {
  width: 74%;
}
select.w75 {
  width: 75%;
}
select.w76 {
  width: 76%;
}
select.w77 {
  width: 77%;
}
select.w78 {
  width: 78%;
}
select.w79 {
  width: 79%;
}
select.w80 {
  width: 80%;
}
select.w81 {
  width: 81%;
}
select.w82 {
  width: 82%;
}
select.w83 {
  width: 83%;
}
select.w84 {
  width: 84%;
}
select.w85 {
  width: 85%;
}
select.w86 {
  width: 86%;
}
select.w87 {
  width: 87%;
}
select.w88 {
  width: 88%;
}
select.w89 {
  width: 89%;
}
select.w90 {
  width: 90%;
}
select.w91 {
  width: 91%;
}
select.w92 {
  width: 92%;
}
select.w93 {
  width: 93%;
}
select.w94 {
  width: 94%;
}
select.w95 {
  width: 95%;
}
select.w96 {
  width: 96%;
}
select.w97 {
  width: 97%;
}
select.w98 {
  width: 98%;
}
select.w99 {
  width: 99%;
}
select.w100 {
  width: 100%;
}

.left10 {
  float: left;
  width: 10%;
}
.left20 {
  float: left;
  width: 20%;
}
.left30 {
  float: left;
  width: 30%;
}
.left40 {
  float: left;
  width: 40%;
}
.left50 {
  float: left;
  width: 50%;
}

/********** textarea **********/

/********** 공간넣기 **********/
.space5 {
  float: left;
  width: 100%;
  height: 5px;
}
.space10 {
  float: left;
  width: 100%;
  height: 10px;
}
.space20 {
  float: left;
  width: 100%;
  height: 20px;
}
.space30 {
  float: left;
  width: 100%;
  height: 30px;
}
.space40 {
  float: left;
  width: 100%;
  height: 40px;
}
.space50 {
  float: left;
  width: 100%;
  height: 50px;
}
.space60 {
  float: left;
  width: 100%;
  height: 60px;
}
.space70 {
  float: left;
  width: 100%;
  height: 70px;
}
.space80 {
  float: left;
  width: 100%;
  height: 80px;
}
.space90 {
  float: left;
  width: 100%;
  height: 90px;
}
.space100 {
  float: left;
  width: 100%;
  height: 100px;
}
.space150 {
  float: left;
  width: 100%;
  height: 150px;
}
.space180 {
  float: left;
  width: 100%;
  height: 187px;
}

/********** TABLE **********/
table {
  border-collapse: collapse;
}

/*테이블 width값(col속성 웹접근성위해 추가)*/
.tbl_w1 {
  width: 1%;
}
.tbl_w2 {
  width: 2%;
}
.tbl_w3 {
  width: 3%;
}
.tbl_w4 {
  width: 4%;
}
.tbl_w5 {
  width: 5%;
}
.tbl_w6 {
  width: 6%;
}
.tbl_w7 {
  width: 7%;
}
.tbl_w8 {
  width: 8%;
}
.tbl_w9 {
  width: 9%;
}
.tbl_w10 {
  width: 10%;
}
.tbl_w11 {
  width: 11%;
}
.tbl_w12 {
  width: 12%;
}
.tbl_w13 {
  width: 13%;
}
.tbl_w14 {
  width: 14%;
}
.tbl_w15 {
  width: 15%;
}
.tbl_w16 {
  width: 16%;
}
.tbl_w17 {
  width: 17%;
}
.tbl_w18 {
  width: 18%;
}
.tbl_w19 {
  width: 19%;
}
.tbl_w20 {
  width: 20%;
}
.tbl_w21 {
  width: 21%;
}
.tbl_w22 {
  width: 22%;
}
.tbl_w23 {
  width: 23%;
}
.tbl_w24 {
  width: 24%;
}
.tbl_w25 {
  width: 25%;
}
.tbl_w26 {
  width: 26%;
}
.tbl_w27 {
  width: 27%;
}
.tbl_w28 {
  width: 28%;
}
.tbl_w29 {
  width: 29%;
}
.tbl_w30 {
  width: 30%;
}
.tbl_w31 {
  width: 31%;
}
.tbl_w32 {
  width: 32%;
}
.tbl_w33 {
  width: 33%;
}
.tbl_w34 {
  width: 34%;
}
.tbl_w35 {
  width: 35%;
}
.tbl_w36 {
  width: 36%;
}
.tbl_w37 {
  width: 37%;
}
.tbl_w38 {
  width: 38%;
}
.tbl_w39 {
  width: 39%;
}
.tbl_w40 {
  width: 40%;
}
.tbl_w41 {
  width: 41%;
}
.tbl_w42 {
  width: 42%;
}
.tbl_w43 {
  width: 43%;
}
.tbl_w44 {
  width: 44%;
}
.tbl_w45 {
  width: 45%;
}
.tbl_w46 {
  width: 46%;
}
.tbl_w47 {
  width: 47%;
}
.tbl_w48 {
  width: 48%;
}
.tbl_w49 {
  width: 49%;
}
.tbl_w50 {
  width: 50%;
}
.tbl_w51 {
  width: 51%;
}
.tbl_w52 {
  width: 52%;
}
.tbl_w53 {
  width: 53%;
}
.tbl_w54 {
  width: 54%;
}
.tbl_w55 {
  width: 55%;
}
.tbl_w56 {
  width: 56%;
}
.tbl_w57 {
  width: 57%;
}
.tbl_w58 {
  width: 58%;
}
.tbl_w59 {
  width: 59%;
}
.tbl_w60 {
  width: 60%;
}
.tbl_w61 {
  width: 61%;
}
.tbl_w62 {
  width: 62%;
}
.tbl_w63 {
  width: 63%;
}
.tbl_w64 {
  width: 64%;
}
.tbl_w65 {
  width: 65%;
}
.tbl_w66 {
  width: 66%;
}
.tbl_w67 {
  width: 67%;
}
.tbl_w68 {
  width: 68%;
}
.tbl_w69 {
  width: 69%;
}
.tbl_w70 {
  width: 70%;
}
.tbl_w71 {
  width: 71%;
}
.tbl_w72 {
  width: 72%;
}
.tbl_w73 {
  width: 73%;
}
.tbl_w74 {
  width: 74%;
}
.tbl_w75 {
  width: 75%;
}
.tbl_w76 {
  width: 76%;
}
.tbl_w77 {
  width: 77%;
}
.tbl_w78 {
  width: 78%;
}
.tbl_w79 {
  width: 79%;
}
.tbl_w80 {
  width: 80%;
}
.tbl_w81 {
  width: 81%;
}
.tbl_w82 {
  width: 82%;
}
.tbl_w83 {
  width: 83%;
}
.tbl_w84 {
  width: 84%;
}
.tbl_w85 {
  width: 85%;
}
.tbl_w86 {
  width: 86%;
}
.tbl_w87 {
  width: 87%;
}
.tbl_w88 {
  width: 88%;
}
.tbl_w89 {
  width: 89%;
}
.tbl_w90 {
  width: 90%;
}
.tbl_w91 {
  width: 91%;
}
.tbl_w92 {
  width: 92%;
}
.tbl_w93 {
  width: 93%;
}
.tbl_w94 {
  width: 94%;
}
.tbl_w95 {
  width: 95%;
}
.tbl_w96 {
  width: 96%;
}
.tbl_w97 {
  width: 97%;
}
.tbl_w98 {
  width: 98%;
}
.tbl_w99 {
  width: 99%;
}
.tbl_w100 {
  width: 100%;
}

/* ++++++++++ 여기서부터 레이아웃 디자인 CSS ++++++++++ */

/* ◆◆◆◆◆◆◆◆◆◆ 480px 이상 ◆◆◆◆◆◆◆◆◆◆ */

/*메인*/
.main_con {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  top: 20%;
  z-index: 1;
}
.main_logo {
  margin-bottom: 2.5rem;
  text-align: center;
}
.main_logo img{
  width: 70px;
}

a.btn_start {
  width: 360px;
  font-weight: bold;
  font-size: 22px;
  color: #ffffff;
  line-height: 50px;
  background: #8248f8;
  border-radius: 100px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/*서브*/
.con_wrap {
  position: relative;
  top: 130px;
  width: 360px;
  margin: 0 auto;
  padding: 0px 0px 70px;
}
.logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 30px;
}
.logo a{
  text-align: center;
}
.logo a img{
  width: 50%;
  display: inline-block;
}  
.title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2rem;
  text-align: center;
}
.title h2 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 1rem;
}
.title p {
  font-size: 14px;
}

/*=====로그인=====*/
.idpw_find_txt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 0px;
}
.idpw_find_txt a:lang(en){
  text-align: center;
}
.gr_line {
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0px 15px;
  background: #cccccc;
}

.sns_title {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 30px;
  margin-bottom: 16px;
}
.sns_title > .line {
  width: 100%;
  height: 1px;
  background: #d6d6d6;
}
.sns_title > p {
  position: absolute;
  padding: 2px 6px;
  font-size: 15px;
  background: #ffffff;
}

.sns_wrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

a.icon_sns {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0px 15px;
  width: 60px;
}
a.icon_sns p {
  padding-top: 5px;
}

.btn_wrap_row {
  display: flex;
  justify-content: space-between;
}
.btn_wrap_column {
  display: flex;
  flex-direction: column;
}

/*=====아이디만들기=====*/
p.pw_txt {
  color: #eb1729;
  margin-bottom: 10px;
}
.circle_number {
  width: 15px;
  height: 15px;
  background: #d6d6d6;
  border-radius: 100px;
}

.resident_wrap {
  display: flex;
  flex-direction: row;
  margin-bottom: 12px;
}
.resident_front {
  float: left;
  width: 50%;
  padding-right: 5px;
}
.resident_back {
  float: left;
  width: 50%;
  padding-left: 5px;
}
.resident_back ul li {list-style: none;}
.resident_num {
  float: left;
  width: 45px;
}
.resident_num input {
  text-align: center;
}
.resident_dot {
  float: left;
  width: calc(100% - 50px);
  margin-left: 5px;
  height: 45px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

/*정보동의*/
.consent_wrap {
  display: flex;
  flex-direction: column;
  /* margin-bottom: 30px; */
}
.consent {
  display: flex;
  align-items: center;
  height: 45px;
  /* margin-bottom: 5px; */
}
.agree_area {
  /* float: left; */
  display: flex;
  align-items: flex-start;
}

a.view {
  margin-left: 5px;
  display: flex;
  align-items: center;
  height: 20px;
  gap: 2px;
}
a.view::after{
  display: inline-block;
  width: 17px;
  height: 18px;
  content:'';
  background: url("../images/icon_view.svg") no-repeat center 1px;
}

.dg_check {
  margin-right: 5px;
  padding: 0px 0px;
  position: relative;
  top: 1px;
}
.dg_check input[type="checkbox"] {
  display: none;
}

.dg_check input[type="checkbox"] + label {
  float: left;
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../images/check_off.svg") no-repeat center;
  cursor: pointer;
}
.dg_check:after {
  display: block;
  clear: both;
  content: "";
}

.dg_check input[type="checkbox"]:checked + label {
  background: url("../images/check_on.svg") no-repeat center;
  float: left;
}
.dg_check input[type="checkbox"] + label span {
  position: absolute;
  top: 0;
  left: 0px;
  display: block;
  font-size: 14px;
  display: none; /*font-weight: bold*/
}

.bm7 {
  margin-bottom: 7px;
}

/*정보동의 문단*/
.con_set {
  float: left;
  position: relative;
  width: 100%;
  display: block; /*border-bottom: 1px dashed #ddd;*/
  margin: 0px 0px 20px 0px;
  padding: 5px;
  word-break: keep-all;
}
.con_set .h_title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 5px; /*background:red*/
}
.con_set h3.num {
  float: left;
  padding-left: 0px;
  background: none;
  font-size: 15px;
  font-weight: bold;
  line-height: 21px;
}
.con_set h3.num span.step {
  position: relative;
  top: 0px;
  float: left;
  width: 21px;
  margin-right: 5px;
  padding: 0px 0px 0px 0px;
  text-align: center;
  color: #ffffff;
  background: #8248f8;
  border-radius: 3px;
}

p.word {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 18px;
}
ul.paragraph {
  float: left;
  width: 100%;
  padding: 4px 0px 4px 0px;
  font-size: 14px;
  word-wrap: break-word;
  word-break: keep-all;
}
ul.paragraph li.dep1 {
  position: relative;
  float: left;
  width: 100%;
  padding: 2px 0px 2px 8px;
  line-height: 18px;
  background: url("../images/bullet1.svg") no-repeat 0px 9px;
}
ul.paragraph li.dep2 {
  position: relative;
  float: left;
  width: 100%;
  padding: 2px 0px 2px 8px;
  line-height: 18px;
  background: url("../images/bullet2.svg") no-repeat 0px 11px;
}

/*정보동의 모달레이어팝업*/
.modal-wrapper {
  pointer-events: auto;
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  z-index: 9999;
  overflow: hidden; /* // iOS 스크롤 막기 */
  display: none; /* // 팝업 열릴 때만 block 처리 */
  background-color: rgba(0, 0, 0, 0.6);
  cursor: default;
  inset: 0;

  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.modal-wrapper.show {
  display: block;
}
.modal-wrapper.hide {
  display: none;
}
/* .overlay {
  position: absolute; // 부모 기준
  top: 0; 
  left: 0;
  right: 0; 
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
  cursor: default;
  visibility: hidden;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
} */
.popup {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 600px;
  height: 600px;
  background: #ffffff;
  border: 0px solid #000000;
  /* opacity: 0; */
  padding: 15px; /*text-align: justify;*/
  /* visibility: hidden; */
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border-radius: 10px;
  z-index: 9999;
}
.overlay:target + .popup {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.close {
  width: 20px;
  height: 20px;
  background: url("../images/pop_close.svg") no-repeat center right;
  position: absolute;
  top: 15px;
  right: 15px;
}
.overlay:target + .popup .close{
  background: url("../images/pop_close.svg") no-repeat center right;
  filter: invert(45%) sepia(0%) saturate(0%) hue-rotate(0deg);

}

.element {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="black"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  background-color: red; /* 변경할 색상 */
  mask-image: url('your-svg.svg');
  -webkit-mask-image: url('your-svg.svg');
}

.close_w {
  width: 20px;
  height: 20px;
  background: url("../images/icon_close_w.svg") no-repeat center right;
  position: absolute;
  top: 15px;
  right: 15px;
}
.close_b {
  width: 20px;
  height: 20px;
  background: url("../images/icon_close_b.svg") no-repeat center right;
  position: absolute;
  top: 16px;
  right: 15px;
}
.close_modal {
  cursor: pointer;
}

.pop_tit {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-end;
  margin-bottom: 10px;
  height: 45px;
}
.pop_tit p {
  font-size: 18px;
  font-weight: bold;
}
.pop_con {
  width: 100%;
  height: 515px;
  border: 1px solid #d6d6d6; /*overflow:auto; */
}
.pop_con > .txt_box {
  width: 100%;
  padding: 0px;
  font-size: 14px;
}
/* iframe 스크롤 Wrapper */
.iframe-scroll-wrapper {
  flex: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* // iOS 부드러운 스크롤 */
}
/* iframe 자체 */
.iframe-scroll-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}


/*기본정보 및 과거력 입력*/
.basic_wrap {
  display: flex;
  flex-direction: row;
  margin-bottom: 7px;
}
.basic_area {
  float: left;
  width: 100%;
  margin-bottom: 7px;
}
.basic_front {
  float: left;
  width: calc(100% - 35px);
}
.basic_back {
  float: right;
  width: 35px;
  margin-left: 0px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.basic_wrap .gender_box{
  display: flex;
  align-items: center;
  height: 45px;
  gap: 15px;
}
.basic_wrap .gender_box li{
  padding: 0;
}
.basic_wrap .gender_box li .radio_box{
  font-size: 1rem;
  line-height: 20px;
}

.basic_wrap .gender_box li .radio_box .on_rad{
  top: 1px;
  left: 2px;
}
.basic_wrap .gender_box li .radio_box .on_rad::after{
  left: 5px;
  top: 2px;
}
.past_wrap {
  display: flex;
  flex-direction: column;
  /* margin-top: 20px; */
}
h3.past {
  margin-bottom: 10px;
  font-size: 16px;
}

ul.past_area {
  display: flex;
  flex-direction: coliumn;
  justify-content: space-between;
  margin-bottom: 10px;
}
ul.past_area li {
  width: 100%;
  margin-right: 5px;
  padding: 5px 7px;
  font-size: 1vw;
  background: #edf1fc;
  border-radius: 6px;
  list-style: none;
}
ul.past_area li:last-child {
  margin-right: 0px;
}

textarea.past_txt {
  width: 100%;
  border-radius: 6px;
  height: 120px;
  margin-bottom: 30px;
  padding: 5px;
}

/*=====인풋 스타일 버튼=====*/
.btn {
  width: 100%;
  font-size: 16px;
  line-height: 2;
  background: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
.active {
  color: #8248f8;
  border: 1px solid #8248f8;
  background-color: transparent;
}
.active:hover {
  color: #fff;
  background-color: #8248f8; 
  border-color: #8248f8;
}

.inactive {
  color: #333333;
}

/*비밀번호 눈 아이콘*/
.pwdbox,
.nicknamebox{
  position: relative;
  width: 100%;
  display: inline-block;
}
.pwdbox input[type="password"],
.pwdbox input[type="text"],
.nicknamebox input[type="text"] {
  /* padding-right: 30px; */
  padding-right: 0;
} /* 이미지 배치용 공간 확보. */
.password-toggle,
.edit-nickname {
  position: absolute;
  top: 45%;
  right: 0px;
  width: 24px;
  transform: translateY(-50%);
  cursor: pointer;
} /* 오른쪽 여백 조절 */

/*체크박스*/
.chk_box {
  display: block;
  position: relative;
  padding-left: 23px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 15px;
  letter-spacing: -0.02em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.chk_box input[type="checkbox"] {
  display: none;
}
.on_ch {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #c5c5c5;
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 3px;
}
.chk_box input[type="checkbox"]:checked + .on_ch {
  background: #8248f8;
  border: 1px solid #6d3fcc;
  border-radius: 3px;
}
.on_ch:after {
  content: "";
  position: absolute;
  display: none;
}
.chk_box input[type="checkbox"]:checked + .on_ch:after {
  display: block;
}
.on_ch:after {
  width: 7px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 1px;
}

/*라디오*/
.radio_box {
  display: inline-block;
  position: relative;
  padding-left: 23px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: -0.02em;
  line-height: 18px;
}
.radio_box input[type="radio"] {
  display: none;
}
.on_rad {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border: 1px solid #c5c5c5;
  position: absolute;
  top: 1px;
  left: 0;
  border-radius: 100px;
}
.radio_box input[type="radio"]:checked + .on_rad {
  background: #8248f8;
  border: 1px solid #6d3fcc;
  border-radius: 100px;
}
.on_rad:after {
  content: "";
  position: absolute;
  display: none;
}
.radio_box input[type="radio"]:checked + .on_rad:after {
  display: block;
}
.on_rad:after {
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  left: 6px;
  top: 3px;
}

/*챗독전체*/
.chat_wrap {
  position: relative;
  top: 0px;
  left: 0;
  width: 100%;
  margin: 0 auto;
}

/*상단*/
.chat_logo a img {
  width: 182px;
}
.chat_logo_modal a img {
  width: 120px;
}

/*상단유저정보*/
ul.user li.u_list a span:after {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
ul.user {
  position: absolute;
  left: 0;
  top: 0px;
  text-align: left;
  text-wrap: nowrap;
}

ul.user {
  position: relative;
  z-index: 99;
  margin-top: 0px;
  list-style: none;
}
ul.user:after {
  content: "";
  display: block;
  clear: both;
}
/* ul.user ul {float:left;} */
ul.user ul:after {
  content: "";
  display: block;
  clear: both;
}
ul.user li {
  float: left;
  position: relative;
  /* margin-right: 1rem; */
}
ul.user li:last-child {
  margin-right: 0;
}
ul.user li a.my {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-decoration: none;
  background: url(../icons/icon_user.svg) no-repeat center;
  background-size: 20px;
  padding-left: 1rem;
}

ul.user li.u_list a span:after {
  content: "";
  display: block;
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #7d7d7d;
}
ul.user li.u_list a.on span:after {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

ul.user li.u_list ul.op_layout {
  position: absolute;
  width: 10rem;
  right: -10px;
  top: 28px;
  padding: 8px;
  margin-right: 10px;
  border-radius: 1rem;
  background: #ffffff;
  border: 1px solid #c4c4c4; /*border-top:2px solid #8248F8;*/
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.1);
}
ul.user li.u_list ul.op_layout > li {
  margin-right: 0px;
}

/*ul.user li.u_list ul.op_layout p { float:left;  width:100%;  margin-top:5px; font-weight:bold; }*/
ul.user li.u_list ul li {
  padding-left: 10px;
  line-height: 22px;
  float: none;
  background: none;
  padding: 10px;
}
ul.user li.u_list ul li:first-child {
  border-top: 0;
}
ul.user li.u_list ul li:after {
  display: none;
}
ul.user li.u_list ul li a {
  display: block;
  padding-left: 20px;
  height: auto;
  text-decoration: none;
  color: #101010;
}

ul.user li.u_list ul li:hover {
  background-color: #f9f9f9;
  border-radius: 1rem;
}

a.mypage {
  background: url("../images/icon_mypage.svg") no-repeat left center; /*  font-size: 14px; color:#101010; */
}
a.logout {
  background: url("../images/icon_logout.svg") no-repeat left center; /* font-size: 14px; color:#101010; */
}

/*컨텐츠*/
.chat_area {
  position: relative;
  width: 100%;
  border-top: 0;
}

/* common.scss로 이동 */
/* .chat_title { display: flex; align-items: center; width:100%; height:40px; padding-left:10px; border-radius:5px 5px 0px 0px; }
.chat_title h2 {  font-size:20px; font-weight:bold;letter-spacing:-0.02em; } */

/*상세내용*/
.chat_box {
  position: relative;
  border-top: 0;
  border-radius: 0px;
}

/* common.scss로 이동 */
/* .chat_step {  display: flex; justify-content: flex-end; align-items: center;  padding:10px; border-bottom:1px solid #E7E7E7;  } */

/*진행단계*/
.step_wrap {
  display: inline-block;
}
.step_wrap .start {
  margin-left: 10px;
  padding-left: 20px;
  background: url("../images/step_start.svg") no-repeat left center;
}
.step_wrap .going {
  display: none;
  padding-left: 20px;
  background: url("../images/step_going.svg") no-repeat left center;
}
.step_wrap .end {
  display: none;
  margin-left: 10px;
  padding-left: 20px;
  background: url("../images/step_end.svg") no-repeat left center;
}

/*진행단계 마우스오버 레이어 보이기*/
.jb-text {
  position: absolute;
  top: 25px;
  right: 0px;
  width: 220px;
  padding: 6px 8px;
  font-size: 13px;
  border-radius: 5px;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  line-height: 18px;
  /*color: #ffffff;*/
  /*word-break:keep-all;*/
  display: none;
  z-index: 999;
}

a.jb-title:hover + .jb-text {
  display: block;
}

.chat_reset {
  text-align: right;
}
.chat_default {
  padding: 10px;
  border-bottom: 1px solid #e7e7e7;
}
.chat_input {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-bottom: 0px;
}
.bottom_none {
  border-bottom: 0px !important;
}

p.tit_talk {
  padding: 0px 10px;
  border: 1px solid #d6d6d6;
  border-radius: 100px;
  font-size: 13px;
  line-height: 22px;
}
.btn_reset {
  color: #757575;
  padding: 0px 24px 0px 0px;
  font-size: 0.8rem;
  background: url("../icons/refresh.png") no-repeat right center;
  background-size: 1rem;
}

/*답변과질문*/
.speech_wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: auto;
  letter-spacing: -0.3px;
  line-height: 1.5;
  border-top: none;
}
.speech_wrap > .txt_box2 {
  width: 100%;
  padding: 0px;
  font-size: 14px;
}
.speech_area {
  word-break: keep-all;
}
.speech_line {
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.speech_loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}

/* common.scss로 이동 */
.speech_line_left .ob2 {
  width: 10px;
  /* display: none; */
  margin-top: 10px;
}
.speech_line_left .ob3 {
  padding: 10px;
  background: transparent;
  border-radius: 0px 10px 10px 10px;
  line-height: 1.6;  
  letter-spacing: 0.1px;
  background: #fafafa;
  margin-top: 10px;
}

.speech_line_left .ob3 > p:first-child {
  margin-bottom: 1rem;
}
.speech_line_left .ob3 > p:last-child {
  margin-bottom: 0px;
}
.speech_line_left .ob3 ol > li {
  padding-left: 8px;
  margin-bottom: 4px;
}

.speech_line_right .ob3 {
  max-width: 55%;
  width: fit-content;
  padding: 10px;
  /* letter-spacing: 0.5px; */
  background: #edf1fc;
  border-radius: 10px 0px 10px 10px;
  color: #333333;
  word-wrap: break-word;
  word-break: break-all;
  white-space: normal;
}
.speech_line_right .ob3 > * {
  list-style: none;
}

img.human {
  width: 2rem;
}

/*대화입력창*/
.write_wrap {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: stretch;
}

.write_con {
  position: relative;
  width: inherit;
  min-height: 46px;
  border-radius: 6px;
}

textarea.write::placeholder {
  font-size: 14px;
  font-weight: normal;
  color: #c4c4c4;
}
textarea.write {
  position: relative;
  width: calc(100% - 45px);
  resize: none;
  padding-left: 10px;
  background: #fff;
  border-left: none;
  border-right: none;
}

.btn_delete {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 52px;
  width: 35px;
  z-index: 5;
  height: 35px;
  background: url("../images/input_close.svg") no-repeat center;
}
.btnSendMsg {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 48px;
  height: 48px;
  background-color: rgba(244, 244, 244, 1);
  background-image: url(../images/btn_send.svg);
  background-repeat: no-repeat;
  background-position: center;
}
#btn_send_index {
  background-image: url(../images/btn_send.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}


/*DIM 처리 팝업*/
.dimpop,
.dimloading,
.requestDim {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.6);
}
.pop_layer {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0px;
  bottom: 0px;
  right: 0px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: fit-content;
  min-width: 320px;
  height: fit-content;
  padding: 1rem;
  border-radius: 10px;
  background: #ffffff;
}
.pop_layer .wrap {
  position: relative;
  height: auto;
}
.pop_layer > iframe {
  display: block;
  margin-bottom: 8px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.pop_layer .text_wrap p.text {
  width: 100%;
  padding: 0px 15px;
  text-align: center;
}
.pop_layer .btn_wrap {
  display: flex;
  justify-content: center;
}
.dimpop .close {
  /* position: absolute;
  top: 40%;
  bottom: 0px;
  right: 0px;
  left: 0px; */
  margin: 0 auto;
  min-width: 320px;
  height: 40px;
  background: url("../images/pop_close.svg") no-repeat 270px center;
  cursor: pointer;
  z-index: 999;
}
.btn_pop {
  margin: 0px 3px;
  font-weight: bold;
  font-size: 14px;
  line-height: 35px;
  background: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
.dimloading {
  position: absolute;
}
.dimloading .pop_layer {
  padding: 0;
  left: calc(50% - 220px);
  transform: translateY(-50%);
}
.dimloading .pop_layer .dimloading_button{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.dimloading .pop_layer .btn_icon{
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/icon-refresh.svg") no-repeat center;
  margin-right: 10px;
}
.dimloading .pop_layer .btn_text{
  display: block;
  height: 24px;
  line-height: 24px;
}

/* 250315 DIM 상담 내용 정리 팝업추가 */
.requestDim{
  overflow-y: auto;
}
.requestDim .icon_close{
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 15px;
  position: absolute;
  right: calc(22px + 1rem);
  top: calc(29px + 1rem);
  background: url("../images/icon_close_p.svg") no-repeat center center / 25px;
  cursor: pointer;
  z-index: 999;
}

.requestDim .pop_layer{
  max-width: 480px;
  width: 100%;
  height: 650px;
  background: url("../images/bg_chat.svg") no-repeat center / contain;
  padding: 29px 22px 20px;
}
.requestDim .pop_layer .modalWrap{
  margin:  3.5rem 1rem 1rem;
  height: 100%;
  overflow-y: auto;
}

/* 240603 DIM 결과문받기 팝업추가 */
.dimpop_survey {
  position: absolute;
  text-align: center;
  width: calc(100% - 40px);
  height: 100%;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  font-size: 14px;
}
.dimpop_survey .dimpop_survey_wrap {
  padding: 16px 10px 10px 10px;
  position: absolute;
  top: 35%;
  left: 50%;
  width: 50%;
  height: fit-content;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 10px;
  z-index: 9999;
}
.dimpop_survey .dimpop_survey_btn {
  display: flex;
  justify-content: space-between;
}
.dimpop_survey .dimpop_survey_wrap .close_modal {
  display: flex;
  justify-content: flex-end;
}
.dimpop_survey .dimpop_survey_wrap .modal_msg {
  display: block;
  margin-bottom: 32px;
}
.dimpop_survey .dimpop_survey_wrap .close_modal > a {
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 15px;
  background: url("../images/pop_close.svg") no-repeat right center;
  cursor: pointer;
  z-index: 999;
}

.dimpop_starter .layer_starter .close_div {
  width: 100%;
  display: flex;
  /* justify-content: space-between; */
  justify-content: flex-end; /* 임시 */
  position: absolute;
  bottom: 4px;
  color: #fff;
  max-width: 1480px;
  left: 50%;
  transform: translateX(-50%);
}
.dimpop_starter .layer_starter .close_div > span {
  cursor: pointer;
}
.dimpop_starter .layer_starter .close_div > a {
  color: #fff;
}
.dimpop_starter .layer_starter .swiper-pagination {
  display: inline-block;
  margin-top: 6px;
}
.dimpop_starter .layer_starter .swiper-pagination .swiper-pagination-bullet {
  display: inline-block;
  font-size: 1rem;
  width: 14px;
  height: 14px;
  line-height: 1.7;
  padding: 0px;
  border-radius: 50%;
  background: #c4c4c4;
  text-wrap: nowrap;
}
.dimpop_starter
  .layer_starter
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background: #8248f8;
}

/* 튜토리얼 닫기버튼 */
.dimpop_starter .layer_starter .slidebtn_wrap {
  width: 100%;
  height: 30px;
}
.dimpop_starter .layer_starter .slidebtn_wrap > a.no_watch {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 16px;
  cursor: pointer;
  font-size: 14px;
  display: inline-block;
  z-index: inherit;
  color: #fafafa;
}
.dimpop_starter .layer_starter .slide_control {
  max-width: 1600px;
  width: 100%;
  display: flex;
  gap: 2rem;
  /* position: fixed;
  top: 50%;
  left: 210px; */
  right: 0;
  margin: 0 auto;
  
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}
.btn_next {
  font-weight: normal;
  font-size: 16px;
  background: transparent;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  position: unset;
  color: #fff;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}
.swiper-button-next {
  content: "다음";
}
.swiper-button-next::after {
  content: "\e5c8";
  font-family: "Swiper";
  font-size: 18px;
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-button-prev {
  content: "이전";
}
.swiper-button-prev::after {
  content: "";
  display: block;
  width: 27px;
  height: 44px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  border-radius: 0px;
}
.dimpop_starter
  .layer_starter
  .close_div
  .swiper-pagination
  .swiper-pagination-bullet-active {
  /* background-image: url('../images/icon_checkStroke.png');
  background-repeat: no-repeat; 
  background-position: center;
  background-size: 1rem; */
  display: inline-block;
  font-size: 1rem;
  width: 14px;
  height: 14px;
  line-height: 1.7;
  padding: 0px;
  border-radius: 50%;
  background: #333;
  text-wrap: nowrap;
  transform: scale(1.2);
}

.pop_loading {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 35px;
  margin-bottom: 0px;
}
.dimloading .pop_loading{
  height: 50px;
}
.dimloading .pop_loading img{
  width: 50px;
}

/* 도움말 버튼 */
span.tutorial_icon {
  display: inline-block;
  margin-right: 10px;
  background: url("../images/icon_help.svg");
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
span.tutorial_icon > a {
  padding-left: 22px;
}

/*설문지*/
.title_survey_wrap {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.title_survey_wrap_etc {
  display: flex;
  flex-direction: column;
  height: 50px; /*margin-bottom:10px; */
}
h3.title_survey {
  display: flex;
  align-items: flex-start;
  /* padding: 1rem 0 0; */
  font-size: 1rem;
  line-height: 1.6;
}
h3.title_survey span.bullet {
  position: relative;
  /* top: 4px; */
  top: 3px;
  /* margin-right: 4px; */
  margin-right: 8px;
  width: 4px;
  /* height: 14px; */
  height: 21px;
  background: #8248f8;
  flex-shrink: 0;
}

ul.survey_list {
  padding: 0;
  list-style-type: none;
  margin: 0;
}

ul.survey_list li {
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 6px;
  box-sizing: border-box;
}

ul.survey_list li:last-child {
  margin-bottom: 0;
  margin-right: 0px;
}

.chk_box {
  display: inline;
  width: 100%;
  font-size: 14px;
}


/* 회원탈퇴 */
.delete_id_wrap{
  margin-top: 10px;
}
ul.reason-list li.item-open{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
ul.reason-list .reason-item-box{
  width: 100%;
  align-items: center;
  display: flex;
  height: auto;
  padding:7px 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
ul.reason-list .reason-item-box .chk_box{
  line-height: 18px;
}
ul.reason-list .item-context{
  width: 100%;
  display: none;
}
ul.reason-list li.item-open .item-context{
  display: block;
}
ul.reason-list .textarea-wrap{
  box-sizing: content-box;
  position: relative;
}
ul.reason-list .textarea-wrap .textarea-form{
  box-sizing: border-box;
  resize: none;
  width: 100%;
  border-radius: 6px;
  height: 100px;
  margin-bottom: 0px;
  padding: 5px;
}
h3.title_need_improved{
  margin-bottom: 15px;
  font-size: 16px;
  padding-top: 1.5rem;
}
textarea.need_improved_txt{
  width: 100%;
  border-radius: 6px;
  height: 100px;
  margin-bottom: 0px;
  padding: 5px;
}

.btn_survey_wrap > input {
  display: block;
}
.btn_survey_wrap > input.btn_survey_start {
  width: 100%;
}
/*설문셀렉트*/
select.select_box {
  width: 100%;
  height: 40px;
  padding: 0px 10px 0px 10px;
  background: url("../images/select_arrow.svg") no-repeat 100% center;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  /* for IE 11 */
  display: none;
}

/*설문인풋*/
input.input_box {
  width: 100%;
  height: 40px;
  padding: 0px 10px 0px 10px;
  border: 1px solid #d6d6d6;
  border-radius: 5px;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*영역처리*/
.block {
  display: flex;
  width: 100%;
  margin-bottom: 30px;
  height: 100%;
  align-items: center;
}
.block_column {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/*기존*/
.one_block {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.two_block {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 20px;
}
.bk_left {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 5px;
}
.bk_right {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 5px;
}

p.explan {
  padding-left: 8px;
  font-size: 14px;
  color: #6d6d6d;
}

.space_vw {
  width: 4%;
}

.ex_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  margin-bottom: 10px;
}
.ex_area {
  width: 100%;
  height: 1px;
  border-top: 1px dashed #035492;
}
span.ex_txt {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 45px;
  line-height: 50px;
  background: #ffffff;
  text-align: center;
  color: #035492;
}

/*작업후 삭제할것(필요없음)*/
.bottom_fixed {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #c7ccd1;
  margin: 0px 0px 0px 0px;
  padding: 10px 0px 10px 0px;
  background: #ffffff;
  text-align: center;
  z-index: 9999;
}
.bottom_fixed a {
  display: inline-block;
  margin: 0px 10px;
  padding: 0px 0px;
  font-size: 14px;
  line-height: 24px;
  color: blue;
  letter-spacing: -0.02em;
}

/*20231228 마이페이지 추가*/
.mypage_wrap {
  padding: 1rem 0 0 0;
}
.mypage_area {
  width: 100%;
  /* height: 408px; */
  /* height: auto; */
  height: calc(100vh - 147px);
  /* max-height: 700px; */
  overflow: auto;
  /* overflow: hidden; */
  border: 0px solid red;
}

.my_con {
  width: 100%;
}
.my_menu {
  float: left;
  max-width: 240px;
  width: 32%;
  margin-right: 10%;
}

div.demolayout {
  width: 100%;
  margin: 0px 0px 0px 0px;
}
ul.demolayout {
  width: 100%;
  float: left;
  padding-top: 1rem;
}
ul.demolayout li {
  float: left;
  width: 100%;
  margin: 0px 0px 7px 0px;
  text-align: center;
}
ul.demolayout li:last-child {
  float: left;
  margin: 0px 0px 0px 0px;
}
ul.demolayout a {
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
  line-height: 40px;
  text-align: left;
}
ul.demolayout a:lang(en){
  white-space: normal;
}
ul.demolayout a.active {
  /* background: #8248f8; */
  /* color: #ffffff; */
  color: #8248f8;
  border: 1px solid #8248f8;
  border-radius: 7px;
}
/* ul.demolayout a.active:hover {
  background: transparent!important;
} */
.tabs-container {
  float: left;
  display: flex;
  justify-content: center;
  /* width: 58%; */
  max-width: calc(90% - 240px);
  width: 100%;
  border: 0px solid #ccc;
  padding: 0px;
}
.tabs-container .tab {
  width: 100%;
  border: 0px solid green;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

ul.demolayout .iconBox{
  display: flex;
  align-items: center;
  gap: 5px;
}
ul.demolayout .iconBox .icontxt{
  display: inline-block;
  white-space: nowrap;
}
ul.demolayout .iconBox .icon{
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
ul.demolayout .iconBox .icon1 {
  background: #ffffff url("../icons/my01_off.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox.active .icon1 {
  background: #ffffff url("../icons/my01_active.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox:not(.active):hover .icon1{
  background: #8248f8 url("../icons/my01_on.svg") no-repeat center / 20px;
}

ul.demolayout .iconBox .icon2 {
  background: #fff url("../icons/my02_off.png") no-repeat center / 20px;
}
ul.demolayout .iconBox.active .icon2 {
  background: #fff url("../icons/my02_active.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox:not(.active):hover .icon2{
  background: #8248f8 url("../icons/my02_on.png") no-repeat center / 20px;
}

ul.demolayout .iconBox .icon3 {
  background: #ffffff url("../icons/my03_off.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox.active .icon3 {
  background: #fff url("../icons/my03_active.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox:not(.active):hover .icon3{
  background: #8248f8 url("../icons/my03_on.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox .icon4 {
  background: #ffffff url("../icons/my04_off.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox.active .icon4 {
  background: #fff url("../icons/my04_active.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox:not(.active):hover .icon4{
  background: #8248f8 url("../icons/my04_on.svg") no-repeat center / 20px;
}
ul.demolayout .iconBox .icon5 {
  background: #ffffff url("../icons/my05_off.png") no-repeat center / 20px;
}
ul.demolayout .iconBox.active .icon5 {
  background: #fff url("../icons/my05_active.png") no-repeat center / 20px;
}
ul.demolayout .iconBox:not(.active):hover .icon5{
  background: #8248f8 url("../icons/my05_on.png") no-repeat center / 20px;
}
ul.demolayout .iconBox.active:hover{
  background-color: #fff;
}
ul.demolayout .iconBox.active:hover .icon{
  background-color: #fff;
  color: #fff;
}
ul.demolayout .iconBox:not(.active):hover{
    background: #8248f8;
    color: #ffffff;
}



/* 생활복용력 탭 */
.Wrapper {
  width: 100%;
}
.Container {
  float: left;
  width: 100%;
  border: 1px solid #d6d6d6;
  /* overflow-y: auto; */
}
.Container.three-tab{
  /* height: calc(100vh - 262px); */
}

.Content {
  float: left;
  width: 100%;
  padding: 10px;
}
.Navigation {
  position: relative;
  height: 35px;
  display: block;
  width: 100%; /*border:1px solid red*/
}

ul.primary {
  width: 100%;
  margin: 0;
  padding: 0;
}
ul.primary a.active {
  border: 1px solid #8248f8;
  border-bottom: 0;
  /* background: #8248f8; */
  /* color: #ffffff; */
  color:#8248f8;
}
ul.primary a.active:hover {
  color: #ffffff;
}
ul.primary a {
  display: flex;
  align-items: center;
  justify-content: center;
  float: left;
  /* width: 19.2%; */
  width: 32.3%;
  height: 35px;
  margin-right: 1%;
  color: #101010;
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-bottom: 0;
  font-size: 1rem;
  letter-spacing: -0.05em;
  border-radius: 5px 5px 0px 0px;
  text-wrap: nowrap;
}
ul.primary a.last {
  width: 33.4%;
  margin-right: 0%;
}
ul.primary a:hover {
  background:#8248f8;;
  color: #ffffff;
}

.h_title {
  width: 100%;
  margin-bottom: 10px;
}
.h_title h4 {
  font-size: 14px;
  font-weight: 500;
}

ul.survey_list2 {
  display: flex;
  justify-content: space-between;
  float: left;
  width: 100%;
  /* margin-bottom: 20px; */
}
ul.survey_list2 li {
  display: flex;
  justify-content: center;
  float: left;
  width: 30%;
  margin: 0px 0px 0px 0px;
  padding: 9px;
  background: #edf1fc;
  border-radius: 6px;
}
ul.survey_list2 li:first-child {
  width: 35%;
}
ul.survey_list2 li:last-child {
  margin-right: 0px;
}

.basic_line_wrap {
  display: flex;
  align-items: flex-start;
  width: 100%;
  float: left;
  margin: 5px 0px;
}
.basic_line_wrap:first-child{
  margin-top: 20px;
}
.basic_line01 {
  width: 182px;
  padding-left: 0px;
  font-size: 15px;
}
.basic_line_right{
  width: calc(100% - 182px);
  
}
.basic_line_inner{
  display: flex;
  align-items: center;
}
.basic_line02 {
  width: 35%;
}
.basic_line03 {
  display: flex;
  justify-content: flex-start;
  width: 15%;
  font-size: 15px;
  padding-left: 7px;
}

.btn_wrap_row_100 {
  display: flex;
  justify-content: space-between;
  float: left;
  width: 100%;
  /* margin-top: 10px; */
  margin-top: 35px;
}

.btn_small {
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  line-height: 35px !important;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
}
.btn_link {
  display: inline-block;
  font-size: 14px;
  line-height: 36px;
  height: 36px;
  padding: 0 34px;
  border-radius: 5px;
}
p.qa_dot {
  float: left;
  width: 100%;
  padding: 0px 0px 0px 10px;
  line-height: 40px;
  background: url("../images/r_bullet1.svg") no-repeat 0px 16px;
}

.fl_100 {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  padding: 0px 0px;
}

.textBox {
  clear: both;
  width: 100%;
  border-radius: 6px;
  height: 100px;
  margin-bottom: 0px;
  padding: 5px;
  padding-right: 0;
  border: 1px solid rgb(118, 118, 118);
}

.textBox textarea.past_txt2 {
  border: none;
  width: 100%;
  height: 100%;
}

/* 설문지 완료후 처음사용자 CSS처리 */
.consult_right_area {
  position: relative;
}
.consult_balloon {
  display: none;
  position: relative;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  border: #d6d6d6 solid 1px;
  position: absolute;
  font-size: 16px;
  text-align: center;
  width: fit-content;
  height: auto;
  font-size: 12px;
  color: #101010;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  transition: 0.3s;
  position: absolute;
  bottom: 74px;
  left: 10px;
  transition: 0.3s;
}
.history_balloon {
  display: none;
  position: relative;
  padding: 10px;
  background: #ffffff;
  border-radius: 5px;
  border: #d6d6d6 solid 1px;
  position: absolute;
  font-size: 16px;
  text-align: center;
  width: 100%;
  height: auto;
  font-size: 12px;
  color: #101010;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
  transition: 0.3s;
  position: absolute;
  top: -7px;
  left: 0;
  z-index: 9999;
  transition: 0.3s;
}
.history_balloon .close_wrap {
  display: flex;
  justify-content: end;
}
.history_balloon span.balloon_txt {
  display: block;
  margin-bottom: 24px;
  padding-left: 72px;
  text-align: left;
  background: url("../images/icon_grcheck.png");
  background-repeat: no-repeat;
  background-position: 20px center;
  background-size: 22px auto;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: -0.4px;
}
.history_balloon .history_health {
  position: relative;
  font-size: 13px;
  margin-bottom: 16px;
  color: #fff;
  background: linear-gradient(270deg, #ba76f2 0%, #624ffb 100%);
}
.history_balloon .history_health::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 8px;
  right: 10px;
  background-image: url(../images/icon_moreview.png);
  background-size: contain;
  background-repeat: no-repeat;
}
/* .history_balloon a.history_link { display: inline-block; font-size: 14px; text-align: right; position: absolute; right: 10px; top: 70px; } */
.history_balloon .close_wrap > span {
  display: inline-block;
  width: fit-content;
  margin-bottom: 0px;
  color: #757575;
  cursor: pointer;
}
.history_balloon .close_wrap > span:last-child {
  margin-right: 0px;
}
.history_balloon .close_wrap > span {
  margin-right: 12px;
}
/* 말풍선 삼각형 처리 */
.consult_balloon:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 16px 16px 0px 16px;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
  z-index: 1;
  bottom: -15px;
  left: 49px;
}
.consult_balloon:before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 16px 16px 0px 16px;
  border-color: #d6d6d6 transparent;
  display: block;
  width: 0;
  z-index: 0;
  bottom: -16px;
  left: 49px;
}
.history_balloon:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0px 16px 16px 16px;
  border-color: #ffffff transparent;
  display: block;
  width: 0;
  z-index: 1;
  top: -15px;
  right: 49px;
}
.history_balloon:before {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0px 16px 16px 16px;
  border-color: #d6d6d6 transparent;
  display: block;
  width: 0;
  z-index: 0;
  top: -16px;
  right: 49px;
}
/* //말풍선 삼각형 처리 */

.consult_balloon > span,
.history_balloon > span {
  display: block;
}
.consult_balloon > .close_modal,
.history_balloon > .close_modal {
  border: 1px solid #8248f8;
  padding: 4px;
  text-align: center;
  margin: 16px 0px 5px;
  border-radius: 5px;
}

/* ◆◆◆◆◆◆◆◆◆◆ 481px 이상 ◆◆◆◆◆◆◆◆◆◆ */
@media screen and (min-width: 481px) {
  /*진행단계 마우스오버 레이어 보이기*/
  .jb-text .close {
    display: none;
  }
}

/* ◆◆◆◆◆◆◆◆◆◆ 480px 이하 ◆◆◆◆◆◆◆◆◆◆ */
@media screen and (max-width: 480px) {
  /*메인*/
  .main_txt {
    line-height: 30px;
    font-size: 23px;
  }

  a.btn_start {
    width: 70%;
  }

  .main_object {
    width: 100%;
    background: url("../images/main_object_mo.svg") no-repeat bottom;
    background-size: 100%;
  }

  /*서브*/
  .con_wrap {
    position: relative;
    top: 50px;
    width: 100%;
    padding: 0px 20px 20px;
  }

  /*챗독전체*/
  .chat_wrap {
    transform: unset;
    position: relative;
    top: 0px;
    width: 100%;
    padding: 0px 0px 0px 0px;
  }

  /*진행단계 마우스오버 레이어 보이기*/
  .jb-text {
    padding: 6px 25px 8px 8px;
    line-height: 17px;
    display: none;
  }

  .jb-text .close {
    position: absolute;
    top: 9px;
    right: 9px;
    width: 12px;
    height: 12px;
    background: url("../images/pop_close.svg") no-repeat center;
    cursor: pointer;
  }

  /*상세내용*/
  .chat_default {
    padding: 10px;
    height: 100%;
    border-bottom: 1px solid #e7e7e7;
  }

  /*답변과질문*/
  .speech_wrap {
    width: 100%;
    height: 400px;
    overflow: auto;
  }

  /*대화입력창*/
  textarea.write {
    padding: 0px;
    padding-left: 4px;
  }

  /*DIM 처리 팝업*/
  .pop_layer {
    width: 70%;
  }
  .dimpop {
    width: 100%;
  }
  .dimpop .close {
    width: 70%;
    background: url("../images/pop_close.svg") no-repeat 95% center;
    cursor: pointer;
    z-index: 999;
  }

  .requestDim .icon_close{
    right: calc(13px + 0.5rem);
    top: calc(22px + 0.5rem);
    background: url("../images/icon_close_p.svg") no-repeat center center / 20px;
  }
  .requestDim .pop_layer{
    max-width: 320px;
    height: 440px;
    padding: 22px 13px 16px;
  }
  
  /*설문지*/
  .block {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem 0px;
  }
  .block_column {
    height: 100%;
    margin: 20px 0px;
  }

  /*기존*/
  .two_block {
    display: flex;
    flex-direction: column;
  }
  .bk_left {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    padding-right: 0px;
  }
  .bk_right {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0px;
    padding-left: 0px;
  }
  .bottom_fixed {
    padding: 5px 0px 10px 0px;
  }
  .bottom_fixed a {
    margin: 0px 5px;
    padding: 0px 0px;
    line-height: 22px;
    font-size: 12px;
  }

  /* 결과문받기 버튼 */
  .btn_survey_wrap > input {
    background-position: 10px center;
  }

  /* 추가상담 말풍선 */
  .history_balloon {
    top: -335px;
  }

  /* 회원가입 */
  .resident_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .resident_front {
    float: none;
    width: 100%;
    padding-right: 0;
  }
  .resident_back {
    float: none;
    width: 100%;
    padding-left: 0;
  }
  .resident_back ul.survey_list li:first-child {
    margin-bottom: 0;
    margin-right: 0px;
    padding-left: 0px;
  }
}

@media only screen and (min-width:481px) and (max-width: 769px) {
  .tabs-container {
    width: 58%;
    max-width: initial;
  }
  .mypage_area {
    height: calc(100vh - 131px);
  }
  ul.demolayout a:lang(en){
    /* line-height: 1; */
    /* padding: 10px 10px 10px 35px; */
    /* height: 52px; */
  }

  .requestDim .icon_close{
    right: calc(15px + 0.5rem);
    top: calc(22px + 0.5rem);
    background: url("../images/icon_close_p.svg") no-repeat center center / 20px;
  }
  .requestDim .pop_layer{
    max-width: 350px;
    height: 480px;
    padding: 22px 15px 17px;
  }
  .requestDim .pop_layer .modalWrap{
    margin:  3.5rem 1rem 0;
  }

}
@media screen and (max-width: 769px) {
  /*정보동의 모달레이어팝업*/
  .popup {
    max-width: 360px;
    width: 90%;
    height: 360px;
    background: #ffffff;
  }
  .pop_con {
    height: 275px;
  }
  .commonDim .pop_layer{
    min-width: 320px !important;
  }
  .alertDim .pop_layer{
    min-width: 320px !important;
  }
}
@media only screen and (max-width: 960px) {
  .dimpop_starter .layer_starter .close_div {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 28px;
    left: 0;
    color: #fff;
    padding: 0px 10px;
  }
  .dimpop_starter .layer_starter .close_div .slidebtn_wrap {
    width: auto;
  }
}
