@charset 'utf-8';
/**
 * 1. 테두리를 기준으로 크기 설정
 * 2.  iOS와 IE에서 텍스트 크기 자동 조절 안되도록
 */
@import "icons.css";
* {
  margin: 0;
  padding: 0;
  /*1*/
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*2*/
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
}
html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
li,
dd {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
}
em,
var,
dfn,
cite {
  font-style: normal;
}
img {
  border: 0px;
}
fieldset {
  border: none;
}
table {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
/* Forms */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
  -webkit-tap-highlight-color: transparent;
}
/*ios input outline radius */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  -webkit-appearance: none;
  border-radius: 0;
}
button,
a {
  border: none;
  background: none;
  cursor: pointer;
  *overflow: visible;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
legend,
caption {
  height: 1px;
  margin-top: -1px;
  opacity: 0;
  overflow: hidden;
}
label,
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a,
span,
li,
img,
div {
  -webkit-touch-callout: none !important;
  -ms-user-select: none;
  -moz-user-select: -moz-none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}
b,
strong {
  font-weight: bold;
}
b,
strong,
span {
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}
::-webkit-scrollbar {
  -webkit-overflow-scrolling: touch;
  -webkit-appearance: none;
  width: 4px;
}
::-webkit-scrollbar-thumb {
  -webkit-overflow-scrolling: touch;
  background: #a9a9a9;
}
/* Variables */
/* 노토 산스 NotoSansKR-Hestia
http://theeluwin.github.io/NotoSansKR-Hestia/
IE8 (윈도우 XP) : 힌팅이 적용되지 않아 비추천,지원 않함.
출처: http://webdir.tistory.com/440 [WEBDIR]
Black(900)  /  Bold(700) / Medium(500)   / Regular(400)  /
DemiLight(350)  /  Light(300)  / Thin(100)
*/
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 100;
  src: local('Noto Sans Thin'), local('NotoSans-Thin'), url(../fonts/NotoSansKR-Thin-Hestia.eot), url(../fonts/NotoSansKR-Thin-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Thin-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Thin-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 300;
  src: local('Noto Sans Light'), local('NotoSans-Light'), url(../fonts/NotoSansKR-Light-Hestia.eot), url(../fonts/NotoSansKR-Light-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Light-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Light-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans Regular'), local('NotoSans-Regular'), url(../fonts/NotoSansKR-Regular-Hestia.eot), url(../fonts/NotoSansKR-Regular-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Regular-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Regular-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 500;
  src: local('Noto Sans Medium'), local('NotoSans-Medium'), url(../fonts/NotoSansKR-Medium-Hestia.eot), url(../fonts/NotoSansKR-Medium-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Medium-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Medium-Hestia.otf) format('opentype');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 700;
  src: local('Noto Sans Bold'), local('NotoSans-Bold'), url(../fonts/NotoSansKR-Bold-Hestia.eot), url(../fonts/NotoSansKR-Bold-Hestia.eot?#iefix) format('embedded-opentype'), url(../fonts/NotoSansKR-Bold-Hestia.woff) format('woff'), url(../fonts/NotoSansKR-Bold-Hestia.otf) format('opentype');
}
* {
  font-family: 'NotoSans', 'Apple SD Gothic Neo', arial, '나눔고딕', 'Nanum Gothic', '돋움', 'Dotum', Tahoma, 'Geneva', sans-serif;
  font-weight: 300;
  letter-spacing: -0.5px;
}
/* Layout */
#wrap {
  min-width: 320px;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-color: #fff;
  color: #5d5d5d;
  font-size: 14px;
}
#wrap #header {
  position: relative;
}
#wrap #contents {
  height: calc(100% - 50px);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  width: 100%;
}
#wrap #footer {
  text-align: center;
}
#wrap #footer .copyright {
  display: block;
  line-height: 50px;
  font-size: 10px;
  color: #969696;
  text-align: center;
  letter-spacing: 0;
}
#header {
  position: relative;
  height: 50px;
  overflow: hidden;
  width: 100%;
  border: 1px solid #e1e1e1;
}
#header .logo {
  width: 100%;
  height: 50px;
  background: url('../images/cs_logo.png') no-repeat 50% 50%;
  background-size: auto 26px;
}
#header .h-title {
  color: #333333;
  letter-spacing: -0.75px;
  line-height: 50px;
  font-size: 16px;
  outline: 1px solid red;
  text-align: left;
  font-weight: 400;
  padding-left: 46px;
}
#header .btn-left,
#header .btn-right {
  position: absolute;
  top: 10px;
  width: 30px;
  height: 30px;
  display: inline-block;
  color: #333333;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  filter: alpha(opacity=10);
  -moz-opacity: 1;
  opacity: 1;
}
#header .btn-left .icon,
#header .btn-right .icon {
  vertical-align: middle;
  color: inherit;
  width: 30px;
  height: 30px;
}
#header .btn-left .icon.icons-back,
#header .btn-right .icon.icons-back {
  background: url('../images/cs_icon_ui.png') no-repeat 0 0;
  background-size: auto 30px;
}
#header .btn-left .icon.icons-close,
#header .btn-right .icon.icons-close {
  background: url('../images/cs_icon_ui.png') no-repeat -30px 0;
  background-size: auto 30px;
}
#header .btn-left .icon:before,
#header .btn-right .icon:before {
  display: none;
}
#header .btn-left:hover,
#header .btn-right:hover,
#header .btn-left:active,
#header .btn-right:active {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  filter: alpha(opacity=5);
  -moz-opacity: 0.5;
  opacity: 0.5;
}
#header .btn-left {
  left: 10px;
}
#header .btn-right {
  right: 10px;
}
.menu-list-wrap {
  padding: 0;
}
.menu-list-wrap .title {
  background-color: #f2f2f2;
  font-size: 15px;
  color: #5d5d5d;
  padding: 6px 18px;
  margin: 4px -18px 6px;
  font-weight: 400;
}
.menu-list {
  padding: 0 !important;
  margin: 0 !important;
  list-style: inside none;
  width: 100%;
}
.menu-list li {
  width: 100%;
  margin-bottom: 6px;
}
.menu-list li:last-child {
  margin-bottom: 0;
}
.menu-list li .btn {
  display: block;
  text-align: left;
  width: 100%;
  position: relative;
  padding: 12px 16px;
  border: 1px solid #cccccc;
}
.menu-list li .btn:after {
  font-family: "iconfont";
  content: "\72";
  position: absolute;
  top: 50%;
  right: 16px;
  font-size: 18px;
  margin-top: -10px;
  color: inherit;
}
.menu-list li .btn .num {
  width: 24px;
  line-height: 24px;
  background-color: #f2f2f2;
  font-size: 15px;
  color: #5d5d5d;
  text-align: center;
  display: inline-block;
}
.menu-list li .btn .text {
  width: calc(100% - 46px);
  display: inline-block;
  line-height: 1.2;
  letter-spacing: -0.25px;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  color: #333333;
  vertical-align: middle;
  padding-left: 20px;
}
.menu-list li .btn .text small {
  margin-top: 6px;
  font-size: 12px;
  color: #888888;
  letter-spacing: 0;
  margin-left: 5px;
}
.menu-list li .btn .text .sub-text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #888888;
  font-weight: 400;
}
.menu-list li .btn:hover,
.menu-list li .btn:hover {
  background-color: #f2f2f2;
}
.menu-list li .btn:hover .text,
.menu-list li .btn:hover .text {
  color: #1263a8;
}
.main-banner {
  *zoom: 1;
  padding: 0 20px;
}
.main-banner:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.main-banner .btn {
  border: 1px #cccccc solid;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #fff;
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
}
.main-banner .btn:after {
  position: absolute;
  right: 10px;
  top: 50%;
  font-family: "iconfont";
  content: "\72";
  font-size: 24px;
  margin-top: -12px;
  color: #d9d9d9;
}
.main-banner .btn .icon {
  display: inline-block;
  width: 70px;
  height: 60px;
  margin: 0 auto 6px;
  background: url('../images/cs_icon_bn.png') no-repeat 50% 50%;
  background-size: auto 40px;
}
.main-banner .btn .text {
  display: inline-block;
  width: calc(100% - 60px);
  font-size: 16px;
  color: #333333;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  padding-top: 10px;
}
.main-banner .btn .text small {
  font-size: 12px;
  color: #969696;
  display: block;
}
.main-banner .btn:hover,
.main-banner .btn:active {
  border-color: #01a0b6;
}
.main-banner .btn:hover .text,
.main-banner .btn:active .text,
.main-banner .btn:hover .text small,
.main-banner .btn:active .text small {
  color: #01a0b6;
}
.btn-callcenter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #01a0b6;
  -webkit-border-radius: 70px;
  -moz-border-radius: 70px;
  border-radius: 70px;
  width: 70px;
  height: 70px;
  text-align: center;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.btn-callcenter .icon {
  background: url('../images/cs_icon_support.png') no-repeat 50% 0;
  background-size: 30px auto;
  height: 30px;
  margin-top: -2px;
  width: 100%;
}
.btn-callcenter .text {
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.5px;
}
.btn-callcenter:hover,
.btn-callcenter:active {
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
  background-color: #15b4ca;
  -webkit-border-radius: 80px;
  -moz-border-radius: 80px;
  border-radius: 80px;
  width: 80px;
  height: 80px;
  margin-bottom: -5px;
  margin-right: -5px;
}
#contents .s-msg {
  text-align: center;
  color: #4b4b4b;
  font-size: 13px;
  line-height: 30px;
  font-weight: 300;
  margin-bottom: 5px;
}
#contents .s-msg.type-L {
  text-align: left;
}
#contents .s-msg.type-C {
  text-align: center;
}
#contents .s-msg.type-R {
  text-align: right;
}
#contents .s-notice {
  font-size: 12px;
  color: #868686;
  line-height: 1.2;
  margin-top: -10px;
}
#contents .inner {
  padding: 20px 20px 10px;
}
#contents .inner h2 {
  margin-top: 15px;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 2px;
  font-weight: 400;
  color: #333333;
}
#contents .inner h2:first-child {
  margin-top: 0 !important;
}
#contents .inner h2 small.count {
  font-size: 11px;
  float: right;
  color: #adadad;
  margin-top: 2px;
}
.msg-notice {
  position: absolute;
  bottom: 30px;
  left: 40px;
  width: calc(100% - 80px);
  background-color: #f2f2f2;
  font-size: 13px;
  color: #333333;
  padding: 15px 20px;
  margin: 10px 0;
  text-align: center;
}
.msg-box {
  margin: 20px 0;
  text-align: center;
  padding: 20px 15px;
  border: 3px solid #ebebeb;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.msg-box p {
  font-size: 12px;
  line-height: 1.3;
  color: #666;
}
.msg-box p.msg-01 {
  font-size: 13px;
  font-weight: 400;
  padding: 0 0 15px;
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 15px;
}
.msg-box p.msg-01 b {
  font-size: 15px;
  color: #af2951;
}
p.att {
  font-size: 12px;
  line-height: 1.5;
  color: #666666;
}
.att-box {
  margin-top: 20px;
}
.att-box .title {
  font-size: 14px;
  color: #262626;
  font-weight: 400;
}
.att-box .title:before {
  content: '';
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url('../images/cs_icon_ui.png') no-repeat -90px -2px;
  background-size: auto 30px;
  vertical-align: middle;
  margin-right: 2px;
}
.att-box .att-msg {
  font-size: 13px;
  padding-left: 5px;
  color: #262626;
}
ul.att {
  margin-top: 10px;
}
ul.att li {
  font-size: 12px;
  line-height: 1.3;
  color: #5d5d5d;
  margin-bottom: 6px;
  text-indent: -10px;
  padding-left: 10px;
}
ul.att li:last-child {
  margin-bottom: 0 !important;
}
.notice-box {
  background-color: #f2f2f2;
  padding: 15px 20px;
  font-size: 13px;
  font-weight: 400;
  margin: 10px 0;
}
.map-box {
  width: 100%;
  margin-top: 10px;
  border: 1px solid #cccccc;
}
.map-box img {
  width: 100%;
  height: auto;
}
.img-box img {
  width: 100%;
  height: auto;
}
.terms-box {
  font-size: 13px;
  line-height: 1.3;
}
.bank-list-wrap {
  *zoom: 1;
  margin: 0 -3px;
}
.bank-list-wrap:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.bank-list-wrap .btn {
  float: left;
  width: calc(33.333% - 6px);
  border: 1px solid #cccccc;
  font-weight: 300;
  text-align: center;
  padding: 15px 0px;
  margin: 0 3px 6px;
  min-height: 50px;
  font-size: 14px;
  color: #333333;
}
.bank-list-wrap .btn:hover,
.bank-list-wrap .btn:active {
  border-color: #1263a8;
  color: #1263a8;
  font-weight: 400;
}
.keypad {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 142px;
  z-index: 9999;
  background-color: #f1f2f4;
  border-top: 1px #d7d7d7 solid;
  padding: 4px 1px 4px 4px;
  *zoom: 1;
}
.keypad:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.keypad .btn {
  width: calc(25% - 3px);
  margin-right: 3px;
  float: left;
  display: inline-block;
  text-align: center;
  height: 42px;
  line-height: 40px;
  background-color: #fff;
  outline: 0;
  border: 1px #d7d7d7 solid;
  margin-bottom: 3px;
  font-size: 21px;
  border-radius: 3px;
  -webkit-appearance: none;
  -webkit-border-radius: 3px;
  color: #000;
}
.keypad .btn#reload {
  font-size: 16px;
  background-color: #e8e8e8;
}
.keypad .btn.back {
  background: #e8e8e8 url('../images/cs_backspace.png') no-repeat 50% 50%;
  background-size: auto 20px;
}
.keypad .btn:hover {
  background-color: #efefef;
}
.keypad .btn.close {
  position: absolute;
  right: -4px;
  top: -45px;
  font-size: 26px;
  padding-bottom: 5px;
  width: 46px;
  height: 46px;
  background-color: #f1f2f4;
  border: 1px #d7d7d7 solid;
  border-width: 1px 1px 0 1px;
}
.toast-msg {
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  padding: 10px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  text-align: center;
  position: fixed;
  bottom: 80px;
  left: 15px;
  font-size: 14px;
  color: #fff;
  width: calc(100% - 30px);
}
.text-red {
  color: #c5023e !important;
}
.text-blue {
  color: #01a0b6 !important;
}
.text-green {
  color: green !important;
}
.nowrap {
  white-space: nowrap;
}
.tbl {
  border-collapse: collapse;
  border-spacing: 0px;
  width: 100%;
  border-top: 1px #000 solid;
}
.tbl tbody tr th,
.tbl tbody tr td {
  border-bottom: 1px solid #cccccc;
  vertical-align: middle;
}
.tbl tbody tr th {
  text-align: center;
  font-size: 13px;
  color: #666666;
  background-color: #f7f7f7;
  line-height: 1.2;
  padding: 10px 0px;
}
.tbl tbody tr th + td {
  padding-left: 15px !important;
}
.tbl tbody tr td {
  color: #000;
  font-size: 13px;
  letter-spacing: 0;
  position: relative;
  line-height: 1.3;
  letter-spacing: 0px;
  font-weight: 400;
  padding: 10px 4px 10px 4px;
  text-align: left;
}
.tbl tbody tr td dl.address {
  *zoom: 1;
  margin-top: -8px;
}
.tbl tbody tr td dl.address:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.tbl tbody tr td dl.address dt {
  float: left;
  width: 44px;
  line-height: 20px;
  margin-right: 6px;
  background-color: #e5e5e5;
  font-size: 12px;
  color: #7e7e7e;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  text-align: center;
  margin-top: 8px;
}
.tbl tbody tr td dl.address dd {
  width: calc(100% - 52px);
  float: left;
  font-size: 12px;
  color: #000;
  line-height: 1.2;
  margin-top: 8px;
}
.tbl tbody tr td.text-center {
  padding: 10px 0;
  font-size: 12px;
}
.tbl thead tr th {
  background-color: #f7f7f7;
  font-size: 12px;
  color: #666;
  text-align: center;
  border-bottom: 1px solid #cccccc;
  padding: 8px 0px;
}
.tbl-address td {
  padding: 8px 2px !important;
}
/**아코디언스타일*/
.tbl-explode {
  border-collapse: collapse;
  border-top: 1px #2c2f38 solid !important;
}
.tbl-explode .btn-menu {
  display: block;
  height: 44px;
  font-size: 15px;
  color: #5d5d5d;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  position: relative;
  width: 100%;
  text-align: left;
}
.tbl-explode .btn-menu .text {
  display: inline-block;
  width: calc(100% - 50px);
  padding-left: 16px;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.75px;
  color: #333333;
  line-height: 44px;
}
.tbl-explode .btn-menu:hover .text {
  color: #1263a8;
}
.tbl-explode tr.sub-container {
  border-bottom: 1px solid #cccccc;
}
.tbl-explode tr.sub-container td {
  position: relative;
}
.tbl-explode tr.sub-container .icon {
  position: absolute;
  top: 50%;
  right: 10px;
  display: inline-block;
  float: right;
  color: inherit;
  font-size: 16px;
  vertical-align: middle;
  transform: rotate(0deg);
  margin-top: -8px;
}
.tbl-explode tr.sub-container .icon:before {
  color: inherit;
  content: "\66";
}
.tbl-explode tr.sub-container.active .btn-menu .text {
  color: #1263a8;
}
.tbl-explode tr.sub-container.active td {
  color: #1263a8;
}
.tbl-explode tr.sub-container.active td .icon {
  transform: rotate(-180deg);
  margin-top: -12px;
}
.tbl-explode .explode {
  border-bottom: 1px solid #cccccc;
  width: 100%;
  display: none;
}
.tbl-explode .explode.active {
  display: block;
}
.tbl-explode .explode > td {
  width: 100%;
  display: block;
  background-color: #f2f2f2;
}
.tbl-explode .explode > td .in {
  padding: 20px;
}
.tbl-explode .explode > td .in .tbl {
  border: 1px solid #cccccc !important;
}
.tbl-explode .explode > td .in .tbl th,
.tbl-explode .explode > td .in .tbl td {
  background-color: #fff;
}
.tbl-explode .explode > td .in .btn {
  font-size: 13px;
}
/*****************
FORM
******************/
.form-group .form-input + .form-input {
  margin-top: 10px;
}
.form-group-inline {
  *zoom: 1;
}
.form-group-inline:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.form-group-inline .form-input {
  width: calc(50% - 4px);
  display: inline-block;
}
.form-group-inline .form-input:last-child {
  float: right;
}
.form-group-address {
  *zoom: 1;
  margin-bottom: 1px;
}
.form-group-address:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.form-group-address .form-input {
  width: calc(100% - 180px);
  display: inline-block;
}
.form-group-address .btn {
  
  float: right;
  margin: 2px;
}
.form-group-text {
  margin-top: 15px;
  width: 100%;
  *zoom: 1;
}
.form-group-text:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.form-group-text h2 {
  width: 70px;
  line-height: 40px !important;
  display: inline-block;
}
.form-group-text .form-box {
  width: calc(100% - 72px);
  float: right;
  display: inline-block;
}
.form-group-selected .form-input {
  width: 60px;
  text-align: center;
  background-color: #f7f7f7;
  font-size: 13px;
  color: #666666;
  padding: 0 10px;
}
.form-group-selected .form-textarea {
  width: calc(100% - 70px);
  float: right;
  background-color: #f7f7f7;
  height: 42px;
  text-align: left !important;
  padding: 0 10px;
  font-size: 12px;
}
.form-textarea {
  border: 1px solid #cccccc;
  padding: 10px 15px;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
  width: 100%;
  font-size: 14px;
  color: #333333;
  outline: 0;
  resize: none;
}
.form-textarea:-moz-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-textarea::-moz-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-textarea:-ms-input-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-textarea::-webkit-input-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-input {
  border: 1px solid #cccccc;
  line-height: 40px;
  font-size: 14px;
  color: #333333;
  width: 100%;
  font-weight: 400;
  padding: 0 15px;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
  outline: 0;
}
.form-input:-moz-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-input::-moz-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-input:-ms-input-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-input::-webkit-input-placeholder {
  color: #666666;
  font-size: 13px;
  font-weight: 300;
}
.form-input.is-on {
  background-color: #f7f7f7;
}
.form-input:disabled {
  background-color: #f4f4f4;
}
.btn-group {
  margin-top: 12px;
  text-align: center;
}
.btn {
  display: inline-block;
  outline: 0;
  color: #333333;
}
.btn.btn-normal {
  border: 1px solid #089db5;
  color: #089db5;
  width: 100%;
  line-height: 1.1;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.btn.btn-normal:active {
  background-color: #089db5;
  color: #fff;
}
/* .btn.btn-normal:hover {
  background-color: #089db5;
  color: #fff;
} */
.btn.btn-primary {
  border: 1px solid #ccc;
  color: #333333;
  width: 100%;
  line-height: 1.1;
  height: 40px;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.btn.btn-primary:hover {
  background-color: #089db5;
  color: #fff;
}
.btn.btn-primary2 {
	border: 1px solid #ccc;
	color: #333333;
	width: 100%;
	line-height: 1.1;
	height: 40px;
	font-size: 15px;
	font-weight: 400;
	text-align: center;
  }
  .btn.btn-primary2:active {
	background-color: #089db5;
	color: #fff;
  }
.btn.btn-sm {
  border: 1px solid #ccc;
  color: #262626;
  width: 70px;
  line-height: 1.1;
  height: 20px;
  font-size: 12px;
  text-align: center;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  border-radius: 40px;
}
.btn.btn-sm:hover {
  border-color: #01a0b6;
  color: #01a0b6;
}
.btn.btn-input {
  border: 1px #dddddd solid;
  padding: 0 10px;
  height: 40px;
  text-align: left;
  line-height: 40px;
  font-size: 14px;
  width: 100%;
  color: #322f2f;
}
.btn.btn-input:hover {
  background-color: #f2f2f2;
}
.form-box {
  border: 1px solid #ccc;
  position: relative;
  -webkit-border-radius: 3px !important;
  -moz-border-radius: 3px !important;
  border-radius: 3px !important;
}
.form-box .form-input {
  border: 0 !important;
}
.form-box .close-icon {
  position: absolute;
  right: 0px;
  top: 0;
  width: 30px;
  height: 40px;
  background: url('../images/cs_icon_ui.png') no-repeat -60px 50%;
  background-size: auto 30px;
  display: inline-block;
  outline: 0;
  cursor: pointer;
}
.chekcbox-group {
  position: relative;
  margin-top: 20px;
}
.chekcbox-group .btn-sm {
  position: absolute;
  top: 2px;
  right: 0;
}
.chekcbox-group .checkbox-msg {
  padding-left: 30px;
  padding-top: 10px;
  color: #262626;
  font-size: 13px;
  font-weight: 400;
}
.chekcbox-group .checkbox-msg .title {
  font-size: 14px;
  color: #262626;
}
.chekcbox-group .checkbox-msg small {
  font-size: 12px;
  margin-top: 10px;
  display: block;
  color: #c5023e;
}
.chekcbox-group .checkbox-msg a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 12px;
  padding: 10px 0;
  display: block;
}
.chekcbox-group .checkbox-msg a .underline {
  border-bottom: 1px solid #8a8a8a;
}
[type="checkbox"]:checked,
[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
  width: 20px;
  height: 20px;
}
[type="checkbox"]:checked + label,
[type="checkbox"]:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  line-height: 22px;
  height: 20px;
  width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: #262626;
  line-height: 1.1;
  padding-top: 4px;
}
[type="checkbox"]:checked + label:before,
[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #cccccc;
  background: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
[type="checkbox"]:checked + label:after,
[type="checkbox"]:not(:checked) + label:after {
  font-family: "iconfont" !important;
  content: "\69";
  text-align: center;
  color: #fff;
  width: 22px;
  height: 22px;
  line-height: 22px;
  background: #01a0b6;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type="checkbox"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
[type="checkbox"]:disabled {
  cursor: not-allowed;
}
[type="checkbox"]:disabled + label:before {
  border: 1px solid #999 !important;
}
.radio-group {
  margin-bottom: 5px;
}
.is-type {
  display: none;
}
[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}
[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  color: #888888;
  margin-right: 15px;
  margin-bottom: 5px;
}
[type='radio']:checked + label {
  color: #333333;
  font-weight: 400;
}
[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before {
  content: "";
  border: 1px solid #cccccc;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
}
[type='radio']:checked + label:after,
[type='radio']:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  background-color: #01a0b6;
  top: 5px;
  left: 5px;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
[type='radio']:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
[type='radio']:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
[type='radio']:disabled {
  cursor: not-allowed;
}
[type='radio']:disabled + label:before {
  border: 1px solid #999 !important;
}
.div-dropdown {
  position: relative;
}
.div-dropdown .dropdown-toggle {
  z-index: 200;
  color: #333333;
  border: 1px solid #cccccc;
  background-color: #fff;
  border-radius: 2px;
  padding: 6px 30px 8px 12px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  text-align: left;
  cursor: pointer;
  user-select: none;
}
.div-dropdown .dropdown-toggle:after {
  position: absolute;
  font-family: 'iconfont' !important;
  content: "\66";
  top: 50%;
  margin-top: -8px;
  font-size: 16px;
  right: 15px;
}
.div-dropdown .dropdown-toggle.disabled {
  background-color: #f2f2f2;
}
.div-dropdown .dropdown-menu {
  z-index: 300;
  position: absolute;
  top: 39px;
  left: 0;
  border: 1px solid #cccccc;
  background-color: #fff;
  width: 100%;
  z-index: 999;
  display: none;
  max-height: 200px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.div-dropdown .dropdown-menu:hover {
  display: block;
}
.div-dropdown .dropdown-menu a {
  display: block;
  width: 100%;
  height: 40px;
  padding: 8px 25px 8px 12px;
  border-bottom: 1px solid #cccccc;
  font-weight: 400;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
}
.div-dropdown .dropdown-menu a:hover {
  background-color: #f2f2f2;
}
.div-dropdown:hover + .dropdown-menu {
  display: block;
}
.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  top: 0;
  left: 0;
  visibility: hidden;
  width: 100%;
  opacity: 0;
  height: 0;
}
.modal.is-visible {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.4);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 0;
  width: calc(100% - 40px);
  margin: 0 20px;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.35);
  overflow: hidden;
}
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translateY(-10%);
  opacity: 0;
}
.modal.is-visible .modal-transition {
  transform: translateY(0);
  opacity: 1;
}
.modal-header {
  position: relative;
  background-color: #fff;
  text-align: center;
  height: 50px;
}
.modal-header h2.modal-heading {
  color: #089db5;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  line-height: 50px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.modal-header .btn-close {
  position: absolute;
  top: 5px;
  right: 10px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-decoration: none;
}
.modal-header .btn-close .icon {
  color: #888888;
}
.modal-close {
  display: block;
  width: 100px;
  margin: 0 auto;
  background-color: #b2b2b2;
  color: #fff;
  line-height: 35px;
}
.modal-footer {
  padding: 20px;
}
.modal-footer.col-2 {
  *zoom: 1;
}
.modal-footer.col-2:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.modal-footer.col-2 .btn {
  width: calc(50% - 5px) !important;
}
.modal-footer.col-2 .btn:last-child {
  float: right;
}
.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}
.modal-body .modal-content {
  padding: 0 20px;
  max-height: 74vh;
  overflow-y: auto;
}
.modal-body .m-msg {
  background-color: #f7f7f7;
  font-size: 13px;
  color: #666;
  line-height: 1.2;
  padding: 15px;
  text-align: center;
}
.modal-body .msg-box {
  padding: 10px;
  font-size: 18px;
  color: #000;
  letter-spacing: 0.5px;
  font-weight: 400;
}
.modal-body .inner h2 {
  margin-top: 15px;
  font-size: 14px;
  line-height: 30px;
  margin-bottom: 2px;
  font-weight: 400;
  color: #333333;
}
.modal-body .inner .date-wrap {
  *zoom: 1;
  width: 100%;
}
.modal-body .inner .date-wrap:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.modal-body .inner .date-wrap [type='radio'] + label:before,
.modal-body .inner .date-wrap [type='radio'] + label:after {
  display: none;
}
.modal-body .inner .date-wrap [type='radio'] + label {
  display: inline-block;
  width: calc(25% - 6px);
  float: left;
  border: 1px solid #cccccc;
  color: #333333;
  font-size: 14px;
  line-height: 34px;
  margin: 3px 3px;
  font-weight: 400;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 0;
  text-align: center;
}
.modal-body .inner .date-wrap [type='radio']:checked + label {
  border-color: #01a0b6;
  color: #01a0b6;
}
.calendar {
  width: 100%;
  margin-top: 20px;
}
.calendar .calendar-header {
  text-align: center;
}
.calendar .calendar-header .minusmonth,
.calendar .calendar-header .addmonth {
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
.calendar .calendar-header .minusmonth .icon,
.calendar .calendar-header .addmonth .icon {
  color: #cbcbcb;
  font-size: 16px;
  width: 30px;
  text-align: center;
}
.calendar .calendar-header .monthname {
  width: auto;
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  text-align: center;
  color: #000;
  letter-spacing: 0;
}
.calendar .msg {
  text-align: center;
  font-size: 12px;
  color: #a3a3a3;
  letter-spacing: 0;
  margin: 0px 0 4px;
}
.calendar .calendar-group {
  border-top: 1px solid #000;
  border-bottom: 1px solid #cccccc;
  padding: 0 0 10px;
}
.calendar .group {
  *zoom: 1;
}
.calendar .group:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.calendar .group li {
  float: left;
  width: calc(100% / 7);
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  font-size: 12px;
  color: #000;
  -webkit-tap-highlight-color: transparent;
}
.calendar .group li.empty {
  pointer-events: none;
}
/*
.calendar .group li.today {
  position: relative;
}
.calendar .group li.today:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  content: '';
  display: inline-block;
  width: 31px;
  height: 31px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
*/
.calendar .group li.notoday {
  position: relative;
}
.calendar .group li.notoday:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0 0 -15px;
  content: '';
  display: inline-block;
  width: 31px;
  height: 31px;
  background-color: rgba(0, 0, 0, 0.15);
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.calendar .group li.active {
  position: relative;
}
.calendar .group li.active:after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -16.5px 0 0 -16.5px;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #01a0b6;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.calendar .group li:nth-child(-n+7) {
  color: #000;
  font-size: 12px;
  border-bottom: 1px solid #ebebeb;
  height: 30px;
  line-height: 30px;
  margin-bottom: 4px;
}
.calendar .group li:nth-child(-n+7).active:after {
  display: none;
}
.calendar .group li:nth-child(7n + 1) {
  color: red !important;
}
.calendar .center {
  text-align: center;
}
.main-list-wrap {
  background-color: #f2f2f2;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.main-list-wrap .m-title {
  height: 120px;
  background: url('../images/cs_main_bg.jpg') no-repeat 64% 0;
  background-size: auto 120px;
  font-size: 18px;
  font-weight: bold;
  color: #4b4b4b;
  padding-top: 40px;
  padding-left: 50px;
}
.main-list {
  *zoom: 1;
  width: 100%;
  padding: 0 15px;
}
.main-list:after {
  clear: both;
  display: block;
  visibility: hidden;
  content: " ";
  height: 0;
  line-height: 0;
}
.main-list li {
  width: 33.333%;
  padding: 5px;
  float: left;
  text-align: center;
}
.main-list li .btn {
  display: block;
  width: 100%;
  height: 110px;
  vertical-align: top;
  position: relative;
  border: 1px solid #cccccc;
  background-color: #fff;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  padding: 8px 0;
}
.main-list li .btn .icon {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.main-list li .btn .icon.icon-01 {
  background: url('../images/cs_icon_main.png') no-repeat 0 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-02 {
  background: url('../images/cs_icon_main.png') no-repeat -50px 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-03 {
  background: url('../images/cs_icon_main.png') no-repeat -100px 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-04 {
  background: url('../images/cs_icon_main.png') no-repeat -150px 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-05 {
  background: url('../images/cs_icon_main.png') no-repeat -200px 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-06 {
  background: url('../images/cs_icon_main.png') no-repeat -250px 0;
  background-size: auto 50px;
}
.main-list li .btn .icon.icon-thinQ {
	background: url('../images/ic_launcher_thinq.png');
	background-size: auto 50px;
}
.main-list li .btn .text {
  font-size: 14px;
  letter-spacing: -1px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  display: table;
  width: 100%;
  height: 45px;
}
.main-list li .btn .text span {
  display: table-cell;
  width: 100%;
  height: 45px;
  line-height: 1.3;
  vertical-align: middle;
  font-size: 14px;
  letter-spacing: -1px;
  font-weight: 400;
  color: #333333;
}
.main-list li .btn:hover {
  border-color: #01a0b6;
}
.main-list li .btn:hover .text span {
  color: #01a0b6;
}
.floatR {
  float: right !important;
}
.floatL {
  float: left !important;
}
.text-center {
  text-align: center !important;
}
.text-left {
  text-align: left !important;
}
.text-right {
  text-align: right !important;
}
.text-justify {
  text-align: justify !important;
}
.m-0 {
  margin: 0 !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-t-25 {
  margin-top: 25px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-t-35 {
  margin-top: 35px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.p-0 {
  padding: 0 !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.p-l-10 {
  padding-left: 10px;
}
.p-r-10 {
  padding-right: 10px;
}
.p-l-5 {
  padding-left: 5px;
}
.p-r-5 {
  padding-right: 5px;
}
/* Alert */
#dialogoverlay{
	display: none;
	opacity: .8;
	position: fixed;
	top: 0px;
	left: 0px;
	background: #FFFFFF;
	width: 100%;
	z-index: 10;
}
#dialogbox{
	display: none;
	position: fixed;
	background: #A9E2F3;
	border-radius: 7px;
	width: 300px;
	z-index: 10;
}
#dialogbox > div{ background:#FFFFFF; margin:1px; }
#dialogbox > div > #dialogboxhead{ background:#FFFFFF; font-size:19px; padding:10px; color:#000000; }
#dialogbox > div > #dialogboxbody{ background:#FFFFFF; padding:20px; color:#000000; }
#dialogbox > div > #dialogboxfoot{ background:#FFFFFF; padding:10px; text-align:right; }


/* 시스템점검 */
#errorPage {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    height: 100%;
    text-align: center;
    background: #f8f8f8;
}
#errorPage .errorMsg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    margin-top: -180px;
    padding-top: 130px;
    background: url("../images/ico_system.png") center top no-repeat;
    background-size: 100px;
}
#errorPage .errorMsg .txt1 {
    font-size: 16px;
    color: #666;
    line-height: 26px;
}
#errorPage .errorMsg .txt2 {
    font-size: 15px;
    color: #333;
    line-height: 24px;
}
#errorPage .check_date {
    width: 250px;
    margin: 24px auto 0;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #ccc;
    overflow: hidden;
}
#errorPage .check_date .txt1 {
    color: #01a0b6;
    line-height: 44px;
}
#errorPage .check_date .txt2 {
    padding: 12px 0;
    background: #fafafa;
}


.popup-wrap .pop-dscl {
	font-size: 14px;
	margin-bottom: 40px
}

.popup-wrap.align-between {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}

.popup-wrap.align-between .pop-conts {
	flex: 1
}

.popup-wrap .pop-conts.support.align-center {
	text-align: center
}

.popup-wrap .pop-conts.support .input-info .tit-wrap {
	margin-bottom: 24px
}

.popup-wrap .pop-conts.support .info-desc {
	margin-bottom: 48px;
	color: #616161;
	font-size: 16px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.support .info-desc {
		margin-bottom: 40px;
		font-size: 14px;
		line-height: 18px;
		text-align: center
	}
}

.popup-wrap .pop-conts.support .text-box {
	font-size: 14px;
	margin-bottom: 0
}

.popup-wrap .pop-conts.support .paragraph-1 {
	margin-top: 18px
}

.popup-wrap .pop-conts.support-section {
	margin-top: 32px
}

.popup-wrap .pop-conts.support-section.type-A {
	margin-top: 64px
}

.popup-wrap .pop-conts.support-section.top-border {
	padding-top: 32px;
	margin-top: 28px;
	border-top: 1px solid #ddd
}

.popup-wrap .pop-conts.support-section:first-child {
	margin-top: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.support-section.type-A {
		margin-top: 56px
	}
}

.popup-wrap .pop-conts.support .modal-gray-box {
	border-radius: 4px;
	background-color: #f4f4f4;
	padding: 40px 32px;
	line-height: 1.5
}

.popup-wrap .pop-conts.support .modal-gray-box-title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom: 24px;
	margin-bottom: 24px;
	border-bottom: 1px solid #ddd
}

.popup-wrap .pop-conts.support .modal-gray-box-title .tit {
	font-size: inherit
}

.popup-wrap .pop-conts.support .modal-gray-box.type-A {
	padding: 16px 40px;
	color: #616161;
	border-radius: 8px
}

.popup-wrap .pop-conts.support .modal-gray-box.type-A:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .pop-conts.support .modal-gray-box.type-A .text {
	float: left
}

.popup-wrap .pop-conts.support .modal-gray-box.type-A [class^=btn] {
	color: #212121;
	font-size: 14px;
	float: right;
	line-height: 1
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.support .modal-gray-box.type-A {
		padding: 16px 20px
	}
	.popup-wrap .pop-conts.support .modal-gray-box.type-A .text {
		width: 156px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts .modal-gray-box {
		padding: 40px 20px
	}
	.popup-wrap .pop-conts .modal-gray-box-title {
		font-size: 16px;
		padding-bottom: 32px;
		margin-bottom: 32px;
		text-align: center
	}
	.popup-wrap .pop-conts .modal-gray-box-title .tit {
		font-size: inherit
	}
	.popup-wrap#agreePrivacyPopup,
	.popup-wrap#cancelServicePopup,
	.popup-wrap#certificationPopup,
	.popup-wrap#choiceEngineerPopup,
	.popup-wrap#fileSendToEmail,
	.popup-wrap#ratesWarrantyGuidePopup,
	.popup-wrap#reservationTimePopup,
	.popup-wrap#solutionsPopup {
		position: fixed!important;
		left: 0!important;
		top: 0!important;
		margin-left: 0!important;
		transform: none!important;
		margin-top: 0!important;
		min-height: auto!important;
		width: 100%!important;
		height: 100%!important
	}
}

.popup-wrap .pop-conts .section {
	margin-top: 80px
}

.popup-wrap .pop-conts .section:first-child {
	margin-top: 0
}

.popup-wrap .pop-conts .section .tit-wrap {
	margin-bottom: 24px
}

.popup-wrap .pop-conts .section .tit-wrap .tit {
	font-size: 20px;
	line-height: 30px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts .section .tit-wrap .tit {
		font-size: 16px;
		line-height: 24px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts .section {
		margin-top: 60px
	}
	.popup-wrap .pop-conts .section:first-child {
		margin-top: 0
	}
}

.popup-wrap .pop-conts.file-popup .tb-col th {
	text-align: center
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list {
	position: relative;
	overflow: hidden;
	max-height: 24px;
	padding-right: 22px;
	transition: max-height .8s cubic-bezier(0, 1, 0, 1) -.1s
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list.on {
	max-height: 9999px;
	transition-timing-function: cubic-bezier(.5, 0, 1, 0);
	transition-delay: 0s
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list .list {
	margin: 0 -8px
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list .list:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list li {
	float: left;
	width: 25%;
	padding: 0 8px
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list li.on {
	color: #000;
	font-weight: 700
}

.popup-wrap .pop-conts.file-popup .tb-col .model-list .btn-more {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 20px;
	height: 20px;
	background: url(/lg5-common/images/icons/btn-more-20.svg) no-repeat
}

.popup-wrap .pop-conts.file-popup .tb-col .file-wrap:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .pop-conts.file-popup .tb-col .file-wrap p {
	float: left;
	margin: 4px 0 0
}

.popup-wrap .pop-conts.file-popup .tb-col .file-wrap .btn {
	float: right
}

.popup-wrap .pop-conts.file-popup #driverDatilContent p {
	font-size: 14px;
	line-height: 24px;
	white-space: pre-line
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.file-popup #driverDatilContent p {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .pop-conts.file-popup #driverDatilContent img {
	max-width: 100%
}

@media screen and (max-width:1024px) {
	.popup-wrap .pop-conts.file-popup .tb-col .model-list li {
		width: calc(100% / 3)
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.file-popup .tb-col .model-list li {
		width: 50%
	}
	.popup-wrap .pop-conts.file-popup .tb-col .file-wrap p {
		float: none;
		margin: 0 0 8px
	}
	.popup-wrap .pop-conts.file-popup .tb-col .file-wrap button {
		float: none
	}
}

.popup-wrap .pop-conts.survey-pop {
	padding-top: 12px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-controls button.prev {
	left: -24px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-controls button.next {
	right: -24px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .indi-wrap {
	position: absolute;
	bottom: 0;
	width: 100%
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-content {
	margin: -12px -12px 0;
	padding: 0 0 12px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-track:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-conts {
	float: left;
	width: 25%;
	padding: 12px 12px 24px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box {
	border-radius: 8px;
	box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, .14)
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label {
	display: block;
	position: relative;
	padding: 32px;
	text-align: center;
	cursor: pointer
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .img {
	width: 100%;
	margin-bottom: 24px
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .img img {
	width: 100%
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .tit {
	font-size: 18px;
	line-height: 28px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .tit {
		font-size: 15px;
		line-height: 23px
	}
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .desc {
	margin-top: 4px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box label .desc {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box input {
	position: absolute;
	z-index: -10;
	width: 0!important;
	height: 0!important;
	overflow: hidden!important;
	font-size: medium;
	line-height: normal;
	word-break: break-all
}

.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box input:checked+label:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	border: 2px solid #ec455a
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.engineer-pop .slide-controls {
		display: none
	}
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .slide-conts {
		width: calc((100vw - 16px)/ 3 * 2);
		padding: 0 8px 24px
	}
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box .label {
		padding: 24px
	}
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box .label .img {
		margin-bottom: 24px
	}
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box .label .tit {
		font-size: 14px
	}
	.popup-wrap .pop-conts.engineer-pop .engineer-slider .engineer-box .label .desc {
		margin-top: 4px;
		font-size: 14px
	}
}

.popup-wrap .pop-conts.reservation-time-pop {
	overflow-x: hidden;
	padding-top: 8px
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap {
	position: relative
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info {
	position: absolute;
	right: 0;
	top: 3px;
	font-size: 0
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li {
	display: inline-block;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li+li {
	margin-left: 24px
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li:before {
	content: '';
	display: inline-block;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	vertical-align: middle
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li.black:before {
	background: #222
}

.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li.red:before {
	background: #ec455a
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info {
		position: static;
		margin-top: 12px
	}
	.popup-wrap .pop-conts.reservation-time-pop .tit-wrap .info>li+li {
		margin-left: 20px
	}
}

.popup-wrap .pop-conts.cancel-pop {
	margin-bottom: 32px
}

.popup-wrap .pop-conts.cancel-pop .guide-box {
	margin-bottom: 8px;
	padding: 24px;
	background: #f4f4f4;
	border-radius: 10px
}

.popup-wrap .pop-conts.cancel-pop .guide-box .desc {
	font-size: 24px;
	line-height: 1.45;
	color: #222;
	text-align: center;
	border-radius: 8px
}

.popup-wrap .pop-conts.cancel-pop .guide-box .desc .type {
	color: #da0f47
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.cancel-pop {
		margin-bottom: 0
	}
	.popup-wrap .pop-conts.cancel-pop .guide-box {
		padding: 22px 18px
	}
	.popup-wrap .pop-conts.cancel-pop .guide-box .desc {
		font-size: 18px
	}
}


.popup-wrap {
	display: none;
	position: absolute;
	width: 100%;
	max-width: 678px;
	overflow: hidden;
	border-radius: 8px;
	background: #fff
}

.popup-wrap.wide {
	max-width: 1146px
}

@media screen and (max-width:767px) {
	.popup-wrap.wide {
		max-width: 100%
	}
}

.popup-wrap.full {
	max-width: 912px
}

@media screen and (max-width:767px) {
	.popup-wrap.full {
		max-width: 100%
	}
}

.popup-wrap.full-sm {
	max-width: 444px
}

@media screen and (max-width:767px) {
	.popup-wrap.full-sm {
		max-width: 100%
	}
}

.popup-wrap.small {
	max-width: 444px
}

.popup-wrap.small .pop-conts {
	padding-top: 48px
}

.popup-wrap.small .pop-footer.check-type {
	padding: 20px 40px 40px
}

.popup-wrap.small.appMobile-pop {
	max-width: 300px;
	background-color: rgba(255, 255, 255, 0);
	color: #fff;
	outline: 0
}

.popup-wrap.small.appMobile-pop .pop-conts {
	padding: 20px 20px 0 20px;
	font-size: 36px;
	max-height: none
}

.popup-wrap.small.appMobile-pop .pop-conts .appMobile-pop-content {
	display: flex;
	justify-content: space-between;
	padding: 0 6px
}

.popup-wrap.small.appMobile-pop .pop-conts .appMobile-pop-content .appMobile-popImg {
	box-shadow: 0 0 10px 10px rgba(0, 0, 0, .3);
	border-radius: 20px
}

.popup-wrap.small.appMobile-pop .pop-conts .appMobile-pop-content .appMobile-popImg .pop-img {
	width: 100%;
	max-width: 87px;
	height: 87px
}

.popup-wrap.small.appMobile-pop .pop-conts .appMobile-pop-content .text-cont {
	text-align: left;
	font-size: 16px;
	align-self: center
}

.popup-wrap.small.appMobile-pop .pop-conts .btn-wrap {
	margin: 23px 0
}

.popup-wrap.small.appMobile-pop .pop-conts .btn-wrap .btn {
	border: 0;
	color: #fff;
	background: linear-gradient(130deg, #fa263e, #fb5a72 80%);
	height: 43px;
	font-size: 13px;
	width: 100%
}

.popup-wrap.small.appMobile-pop .pop-conts .btn-wrap .btn:hover {
	background-color: transparent;
	border: 0
}

.popup-wrap.small.appMobile-pop .ui_modal_close {
	text-align: center;
	font-size: 13px;
	width: 100%;
	text-decoration: underline;
	color: #fff
}

@media screen and (max-width:767px) {
	.popup-wrap.small {
		height: auto;
		width: 87.5%;
		left: 50%!important;
		top: 50%!important;
		transform: translateX(-50%) translateY(-50%)!important;
		border-radius: 8px
	}
	.popup-wrap.small .pop-header {
		padding: 24px 0 14px
	}
	.popup-wrap.small .pop-header .tit span {
		font-size: 18px;
		line-height: 26px
	}
	.popup-wrap.small .pop-conts {
		padding: 32px 16px 40px
	}
	.popup-wrap.small .pop-footer.check-type {
		padding: 10px 16px
	}
	.popup-wrap.small .btn-close {
		top: 21px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap {
		left: 0!important;
		top: 0!important;
		width: 100%;
		height: 100%;
		max-width: none;
		border-radius: 0;
		transform: none!important
	}
	.popup-wrap.tit-line3 .pop-conts {
		max-height: calc(100% - 146px);
		height: calc(100% - 146px)
	}
}

.popup-wrap>.btn-close {
	position: absolute;
	top: 28px;
	right: 40px;
	width: 24px;
	height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap>.btn-close {
		top: 24px;
		right: 16px;
		width: 24px;
		height: 24px
	}
}

.popup-wrap>.btn-close::before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 24px;
	height: 24px;
	background: url(../images/btn-close-32.svg) no-repeat;
	background-size: 24px
}

.popup-wrap .pop-header {
	padding: 28px 0 14px;
	margin: 0 40px;
	border-bottom: 2px solid #222
}

.popup-wrap .pop-header .tit span {
	display: block;
	height: 34px;
	font-size: 20px;
	line-height: 30px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	word-break: keep-all
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-header .tit span {
		font-size: 16px;
		line-height: 24px
	}
}

.popup-wrap .pop-header .tit span br {
	display: none
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-header {
		margin: 0 16px;
		padding: 24px 48px 12px 0
	}
	.popup-wrap .pop-header .tit span {
		height: auto;
		font-size: 16px;
		line-height: 24px
	}
	.popup-wrap .pop-header .tit span br {
		display: none
	}
}

.popup-wrap .pop-guide {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	padding: 30px 40px;
	border-radius: 10px;
	background: #f4f4f4
}

.popup-wrap .pop-guide .text {
	color: #000;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-guide {
		padding: 24px 16px
	}
}

.popup-wrap .pop-conts {
	height: auto;
	max-height: 580px;
	padding: 48px 40px 0;
	overflow-y: auto
}

.popup-wrap .pop-conts.pop4 {
	padding: 48px 40px 40px
}

.popup-wrap .pop-conts.sibling-pop {
	padding: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box {
	padding: 0;
	border-radius: 0;
	background-color: #fff
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box p {
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box p {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option {
	margin-bottom: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-] {
	display: flex;
	width: 100%;
	flex-wrap: wrap
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] {
	position: relative;
	padding: 24px 40px 30px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont]:after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 40px;
	right: 40px;
	height: 1px;
	background: #ddd
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] {
		margin-bottom: 30px;
		padding: 20px 15px 30px
	}
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont]:after {
		left: 15px;
		right: 15px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color,
.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select {
	width: 100%;
	margin-top: 30px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead,
.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead {
	display: flex;
	width: 100%;
	font-size: 16px;
	align-items: center;
	margin-bottom: 20px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead.disabled .color-text,
.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead.disabled .color-text {
	color: #979797
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead,
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead {
		margin-bottom: 10px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead .text,
.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead .text {
	width: auto;
	margin-bottom: 0;
	margin-right: 35px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead .text,
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead .text {
		margin-right: 0
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead .color-text,
.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead .color-text {
	color: #da0f47;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .sibling-colorHead .color-text,
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .sibling-colorHead .color-text {
		font-size: 14px;
		margin-left: 10px
	}
}

@media screen and (min-width:768px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color .text,
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select .text {
		margin-top: 0
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color,
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select {
		text-align: left
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-color {
	position: relative
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-select:first-of-type {
	margin-top: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-text {
	margin-top: 24px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .sibling-text .text {
	padding-top: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont] .text {
	flex: none;
	display: block;
	width: 100%;
	font-size: 16px;
	line-height: 24px;
	font-weight: 700;
	margin-bottom: 8px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-][class*=cont]:first-child {
	margin-top: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option {
		padding: 0 0 0;
		border-bottom: 0
	}
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-] {
		flex-direction: column;
		justify-content: left;
		align-content: flex-start
	}
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option>[class*=sibling-] .text {
		text-align: left;
		width: auto;
		margin-bottom: 8px;
		padding-right: 0;
		font-size: 14px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option .option-list {
	margin-top: 0;
	margin-right: 15px
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option .option-list:last-of-type {
	margin-right: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option .option-list {
		margin-top: 0;
		margin-right: 10px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color {
	flex: auto;
	display: flex
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip {
	width: 40px;
	height: 40px;
	margin-top: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip {
		width: 34px;
		height: 34px;
		margin-top: 3px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip:not(:last-child) {
	margin-right: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip:not(:last-child) {
		margin-right: 3px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input+label {
		width: 34px;
		height: 34px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input+label:before {
	top: 0;
	left: 0;
	width: 40px;
	height: 40px;
	border: 0;
	background-size: 144px auto
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input+label:before {
		width: 34px;
		height: 34px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input+label:after {
	display: none
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input:checked+label:after {
	display: block;
	top: calc(50% - -10px);
	left: calc(50% - 5px);
	width: 20px;
	height: 13px;
	border: 0;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	border-radius: 0;
	transform: rotate(-45deg)
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip input:checked+label:after {
		top: calc(50% - 8px);
		left: calc(50% - 8px);
		width: 17px;
		height: 11px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip.snow_white input+label::after {
	border-bottom: 2px solid #000;
	border-left: 2px solid #000
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .chk-wrap-colorchip.white input+label::after {
	border-bottom: 2px solid #000;
	border-left: 2px solid #000
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .color-text {
	margin-top: 8px;
	color: #da0f47;
	font-size: 12px;
	line-height: 22px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.color .color-text {
		line-height: 20px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .option-list {
	margin-right: 0;
	margin-bottom: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2 {
	margin-right: 8px;
	margin-bottom: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2 {
		margin-right: 3px;
		margin-bottom: 3px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2:last-of-type {
	margin-right: 0
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2.disabled input+label {
	border: 1px solid;
	font-size: 14px;
	line-height: 26px;
	color: #aaa
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2.disabled input:checked+label {
	color: #aaa;
	border-color: #da0f47
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2 input+label {
	width: auto;
	min-width: 60px;
	padding: 6px 14px;
	border-radius: 40px;
	border: 1px solid;
	font-size: 14px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2 input+label {
		min-width: 55px;
		font-size: 13px;
		padding: 3px 14px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .select-option.select .rdo-wrap.btn-type2 input:checked+label {
	color: #da0f47
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .text-option {
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-option .text-option {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group {
	padding: 0 30px 40px 30px;
	margin-top: 30px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group {
		padding-bottom: 0;
		padding: 0
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group .sibling-btn {
	display: flex;
	justify-content: center;
	width: 100%
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group .sibling-btn {
		position: relative
	}
}

.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group .sibling-btn .btn {
	width: 192px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.sibling-pop .process-info .info-box .sibling-group .sibling-btn .btn {
		width: 100%;
		border-radius: 0
	}
}

.popup-wrap .pop-conts.no-footer {
	max-height: 706px;
	padding-bottom: 48px;
	text-align: left
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts.no-footer {
		height: calc(100% - 62px);
		max-height: calc(100% - 62px)
	}
}

.popup-wrap .pop-conts.support {
	background-color: #fff
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts {
		padding: 32px 16px 60px;
		height: calc(100% - 122px);
		max-height: calc(100% - 122px)
	}
}

.popup-wrap .pop-conts .not-cancel-footer h2 {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700
}

.popup-wrap .pop-conts .not-cancel-footer p {
	font-size: 18px;
	font-weight: 600;
	margin-top: 24px
}

.popup-wrap .pop-conts .not-cancel-footer .btn-group {
	margin-top: 32px
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts .not-cancel-footer {
		margin-top: 24px
	}
	.popup-wrap .pop-conts .not-cancel-footer h2 {
		font-size: 20px;
		line-height: 28px;
		font-weight: 700
	}
	.popup-wrap .pop-conts .not-cancel-footer p {
		margin-top: 12px;
		font-size: 14px;
		line-height: 22px
	}
	.popup-wrap .pop-conts .not-cancel-footer .btn-group {
		margin-top: 24px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-conts .tabs-wrap:first-child {
		margin: 0 -16px
	}
}

.popup-wrap .pop-conts .tabs-contents {
	padding-top: 32px
}

.popup-wrap .pop-footer {
	padding: 32px 48px 48px;
	background: 0 0;
	font-size: 0
}

.popup-wrap .pop-footer.center {
	text-align: center
}

.popup-wrap .pop-footer.no-padding {
	padding: 0 0 40px
}

.popup-wrap .pop-footer.check-type {
	text-align: left
}

.popup-wrap .pop-footer .btn-group {
	margin: 0;
	padding: 0
}

.popup-wrap .pop-footer .btn {
	margin-left: 8px;
	border-radius: 26px;
	vertical-align: top
}

.popup-wrap .pop-footer .btn:first-child {
	margin-left: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-footer .btn {
		padding: 17px 0;

	}
	.popup-wrap .pop-footer .btn:first-child:nth-last-child(2),
	.popup-wrap .pop-footer .btn:first-child:nth-last-child(2)~.btn {
		width: 50%
	}
}

@media screen and (min-width:768px) {
	.popup-wrap .pop-footer.check-type {
		padding: 20px 56px 40px
	}
	.popup-wrap .pop-footer.check-type input+label {
		padding-left: 20px;
		font-size: 12px;
		line-height: 16px
	}
	.popup-wrap .pop-footer.check-type input+label:before {
		width: 16px;
		height: 16px
	}
	.popup-wrap .pop-footer.check-type input+label:after {
		top: 5px;
		left: 4px;
		width: 8px;
		height: 4px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pop-footer {
		padding: 0
	}
	.popup-wrap .pop-footer.check-type {
		padding: 12px 24px 24px
	}
	.popup-wrap .pop-footer .btn-group .btn {
		margin-left: 0;
		border-radius: 0;
		line-height: 0;
	}
}

.popup-wrap.video {
	overflow: visible;
	max-width: 1284px;
	border-radius: 0
}

@media screen and (max-width:767px) {
	.popup-wrap.video {
		background-color: #000
	}
	.popup-wrap.video .video-asset {
		position: absolute;
		top: 50%;
		left: 16px;
		right: 16px;
		transform: translateY(-50%);
		overflow: hidden
	}
}

.popup-wrap.video .btn-close {
	top: -87px;
	right: 0;
	width: 48px;
	height: 48px
}

.popup-wrap.video .btn-close:before {
	width: 48px;
	height: 48px;
	background-image: url(/lg5-common/images/icons/btn-close-48-white.svg);
	background-size: 48px
}

@media screen and (max-width:767px) {
	.popup-wrap.video .btn-close {
		top: 24px;
		right: 16px;
		width: 24px;
		height: 24px
	}
	.popup-wrap.video .btn-close:before {
		width: 24px;
		height: 24px;
		background-size: 24px 24px
	}
}

.popup-wrap.video .pop-conts {
	padding: 0
}

.popup-wrap.video .video-box {
	overflow: hidden;
	width: 100%;
	height: calc((100vw - 15px) * (9/16))
}

.popup-wrap.video .video-box iframe {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 0
}

.popup-wrap.animation {
	overflow: visible;
	max-width: 1380px;
	border-radius: 0;
	background-color: transparent
}

@media screen and (max-width:767px) {
	.popup-wrap.animation {
		background-color: #000
	}
	.popup-wrap.animation .video-asset {
		position: absolute;
		top: 50%;
		left: 16px;
		right: 16px;
		transform: translateY(-50%);
		overflow: hidden
	}
}

.popup-wrap.animation .btn-close {
	top: -48px;
	right: 0;
	width: 48px;
	height: 48px
}

.popup-wrap.animation .btn-close:before {
	width: 48px;
	height: 48px;
	background-image: url(/lg5-common/images/icons/btn-close-48-white.svg)
}

@media screen and (max-width:767px) {
	.popup-wrap.animation .btn-close {
		top: 24px;
		right: 16px;
		width: 24px;
		height: 24px
	}
	.popup-wrap.animation .btn-close:before {
		width: 24px;
		height: 24px;
		background-size: 24px 24px
	}
}

.popup-wrap.animation .pop-conts {
	max-height: none;
	padding: 0
}

.popup-wrap.animation .video-box {
	position: relative;
	overflow: hidden;
	width: 100%
}

.popup-wrap.animation .video-box video {
	width: 100%;
	height: 100%
}

.popup-wrap.animation .video-box .video-controller .btn-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 80px;
	height: 80px;
	background: url(/lg5-common/images/icons/btn-play-80.svg) no-repeat 0 0;
	background-size: 100% 100%
}

@media screen and (max-width:767px) {
	.popup-wrap.animation .video-box .video-controller .btn-video {
		width: 40px;
		height: 40px
	}
}

.popup-wrap.animation .video-info {
	padding-top: 32px;
	color: #fff;
	text-align: center
}

.popup-wrap.animation .video-info .title {
	font-weight: 700;
	font-size: 24px;
	line-height: 34px
}

@media screen and (max-width:767px) {
	.popup-wrap.animation .video-info .title {
		font-size: 24px;
		line-height: 31px
	}
}

.popup-wrap.animation .video-info .body-copy {
	margin-top: 16px;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap.animation .video-info .body-copy {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .text-area {
	padding: 46px 8px 0
}

.popup-wrap .text-area .tit {
	margin-bottom: 12px;
	font-weight: 700;
	font-size: 24px;
	line-height: 34px;
	text-align: center
}

@media screen and (max-width:767px) {
	.popup-wrap .text-area .tit {
		font-size: 24px;
		line-height: 31px
	}
}

.popup-wrap .text-area .text {
	font-size: 16px;
	line-height: 26px;
	text-align: center
}

@media screen and (max-width:767px) {
	.popup-wrap .text-area .text {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .text-area .text.tit {
	margin-top: 20px;
	font-weight: 700;
	font-size: 24px;
	line-height: 34px
}

@media screen and (max-width:767px) {
	.popup-wrap .text-area .text.tit {
		font-size: 24px;
		line-height: 31px
	}
}

.popup-wrap .text-area .text .em {
	font-weight: 700;
	color: #da0f47
}

.popup-wrap .dl-txt-cont+.bullet-list {
	margin-top: 32px
}

.popup-wrap .dl-txt-cont dd.bold {
	font-size: 20px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .dl-txt-cont dd.bold {
		font-size: 18px
	}
}

.popup-wrap .btn-wrap.top {
	margin-bottom: 48px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-wrap.top {
		margin-bottom: 40px
	}
}

.popup-wrap .btn.icon-msg:before {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 4px;
	background: url(/lg5-common/images/icons/icon-sms-16.svg) no-repeat 0 0;
	vertical-align: -2px;
	content: ''
}

.video-modal {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	background-color: rgba(0, 0, 0, .7)
}

.video-modal .close-video {
	overflow: hidden;
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 1;
	width: 48px;
	height: 48px;
	font-size: 0
}

.video-modal .close-video:before {
	display: block;
	width: 48px;
	height: 48px;
	background-image: url(/lg5-common/images/icons/btn-close-48-white.svg);
	content: ''
}

@media screen and (max-width:767px) {
	.video-modal .close-video {
		top: 24px;
		right: 16px
	}
}

.video-modal .modal-video-asset {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1460px;
	padding: 0 40px;
	border-radius: 0;
	background-color: transparent
}

@media screen and (max-width:767px) {
	.video-modal .modal-video-asset {
		padding: 0 16px
	}
}

.video-modal.youtube .video-asset {
	overflow: hidden;
	width: 100%;
	height: calc((100vw - 15px) * (9/16));
	max-height: 706px
}

.video-modal.youtube .video-asset iframe {
	width: 100%;
	height: 100%
}

.video-modal.animation .video-box {
	position: relative;
	overflow: hidden;
	width: 100%
}

.video-modal.animation .video-box video {
	width: 100%;
	height: 100%
}

.video-modal.animation .video-box .video-controller .btn-video {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
	width: 80px;
	height: 80px;
	background: url(/lg5-common/images/icons/btn-play-80.svg) no-repeat 0 0;
	background-size: 100% 100%
}

@media screen and (max-width:767px) {
	.video-modal.animation .video-box .video-controller .btn-video {
		width: 40px;
		height: 40px
	}
}

.video-modal.animation .video-info {
	padding-top: 32px;
	color: #fff;
	text-align: center
}

.video-modal.animation .video-info .title {
	font-weight: 700;
	font-size: 24px;
	line-height: 34px
}

@media screen and (max-width:767px) {
	.video-modal.animation .video-info .title {
		font-size: 24px;
		line-height: 31px
	}
}

.video-modal.animation .video-info .body-copy {
	margin-top: 16px;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.video-modal.animation .video-info .body-copy {
		font-size: 14px;
		line-height: 22px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .pc-only {
		display: none
	}
}

@media screen and (min-width:768px) {
	.popup-wrap .mo-only {
		display: none
	}
}

.popup-wrap .common-pop .info-req {
	margin: -40px 0 48px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .info-req {
		margin: -24px 0 32px;
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .info-req:before {
	content: '*';
	display: inline-block;
	margin-right: 2px;
	color: #da0f47
}

.popup-wrap .common-pop .info-req.type2 {
	margin-bottom: -32px
}

.popup-wrap .common-pop .form-wrap {
	max-width: 630px
}

.popup-wrap .common-pop .form-wrap .forms .tit {
	width: 29.2%
}

.popup-wrap .common-pop .form-wrap .forms .tit .app-exec {
	display: none
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap .forms .tit {
		width: 100%
	}
	.popup-wrap .common-pop .form-wrap .forms .tit .app-exec {
		display: none
	}
	.popup-wrap .common-pop .form-wrap .forms .tit.app-type {
		display: flex;
		justify-content: space-between;
		align-items: center
	}
	.popup-wrap .common-pop .form-wrap .forms .tit.app-type .app-exec {
		display: block;
		min-width: 114px;
		height: 34px;
		border-radius: 40px;
		padding: 0 11px
	}
}

.popup-wrap .common-pop .form-wrap .forms .conts {
	width: 70.8%
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap .forms .conts {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap .forms .conts .date-select-box.col-2 {
	padding-right: 0
}

.popup-wrap .common-pop .form-wrap .forms .conts .date-select-box.col-2 .cell:first-child {
	width: 60%
}

.popup-wrap .common-pop .form-wrap .forms .conts .date-select-box.col-2 .cell:last-child {
	width: 40%
}

.popup-wrap .common-pop .form-wrap.mix-type {
	max-width: 100%
}

.popup-wrap .common-pop .form-wrap.mix-type .forms .tit {
	width: 17.52%
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .forms .tit {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap.mix-type .forms .conts {
	width: 82.48%
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .forms .conts {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap.mix-type .input-wrap.half,
.popup-wrap .common-pop .form-wrap.mix-type .select-wrap.half {
	width: calc((100% - 8px)/ 2)
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .input-wrap.half,
	.popup-wrap .common-pop .form-wrap.mix-type .select-wrap.half {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap {
	width: 100%;
	max-width: 100%
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap .forms .conts {
	width: 100%
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap.col-2 {
	display: flex;
	justify-content: space-between
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap.col-2 .forms {
	width: calc((100% - 8px)/ 2)
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap.col-2 .forms.inner-type {
	margin-top: 0
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap:not(:first-child) {
	margin-top: 16px
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap .bank-input-box .select-wrap {
	width: 39.2%
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap .bank-input-box .select-wrap {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap .bank-input-box .box {
	width: calc(100% - (39.2% + 8px))
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .gray-box .form-wrap .bank-input-box .box {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap.mix-type .input-wrap.count {
	position: relative
}

.popup-wrap .common-pop .form-wrap.mix-type .input-wrap.count textarea {
	padding-right: 100px
}

.popup-wrap .common-pop .form-wrap.mix-type .input-wrap.count .total {
	position: absolute;
	bottom: 16px;
	right: 24px;
	margin-top: 0
}

.popup-wrap .common-pop .form-wrap.mix-type .cancel-agree-box {
	margin-top: 16px;
	padding-left: 17.52%
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mix-type .cancel-agree-box {
		padding-left: 0
	}
}

.popup-wrap .common-pop .form-wrap.pop-wide {
	max-width: 100%
}

.popup-wrap .common-pop .form-wrap.pop-wide .forms .tit {
	width: 263px
}

.popup-wrap .common-pop .form-wrap.pop-wide .forms .conts {
	width: calc(100% - 263px)
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.pop-wide .forms .conts,
	.popup-wrap .common-pop .form-wrap.pop-wide .forms .tit {
		width: 100%
	}
}

.popup-wrap .common-pop .form-wrap:first-child .form-infos:first-child {
	margin-top: -36px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap:first-child .form-infos:first-child {
		margin-top: -20px
	}
}

.popup-wrap .common-pop .sect-wrap {
	margin-top: 48px
}

.popup-wrap .common-pop .sect-wrap.cnt01 {
	margin-top: 80px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .sect-wrap.cnt01 {
		margin-top: 60px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .sect-wrap {
		margin-top: 40px
	}
}

.popup-wrap .common-pop .sect-wrap:first-child {
	margin-top: 0
}

.popup-wrap .common-pop .sect-wrap .tit-wrap {
	margin-bottom: 16px
}

.popup-wrap .common-pop .sect-wrap .tit-wrap .h2-tit {
	color: #000;
	font-weight: 700;
	font-size: 24px;
	line-height: 34px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .sect-wrap .tit-wrap .h2-tit {
		font-size: 20px;
		line-height: 28px
	}
}

.popup-wrap .common-pop .sect-wrap .tit-wrap.type2 {
	margin-bottom: 24px
}

.popup-wrap .common-pop .my-address-wrap .address-lists {
	margin-top: 24px
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists {
	margin-top: 10px;
	padding: 32px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid #ddd
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists:first-child {
	margin-top: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists {
		padding: 20px;
		border-radius: 4px
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner {
	position: relative;
	min-height: 80px;
	padding: 0 154px 0 32px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner {
		min-height: 100%;
		padding: 0 0 0 32px
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dt {
	margin-bottom: 8px;
	font-size: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dt p {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dt p {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dt .flag-wrap {
	display: inline-block;
	margin-left: 8px;
	vertical-align: middle
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd {
	margin-top: 2px;
	font-size: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd:first-child {
	margin-top: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd p {
	display: inline-block;
	position: relative;
	margin-right: 8px;
	padding-right: 9px;
	color: #616161;
	font-size: 14px;
	line-height: 24px;
	vertical-align: top
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd p {
		font-size: 14px;
		line-height: 18px
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd p::after {
	content: ' ';
	position: absolute;
	top: 50%;
	right: 0;
	width: 1px;
	height: 10px;
	margin-top: -5px;
	background: grey
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd p:last-child {
	margin-right: 0;
	padding-right: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .addr dd p:last-child::after {
	display: none
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .btns {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .btns {
		position: relative;
		top: auto;
		right: auto;
		margin: 16px 0 0 0;
		font-size: 0;
		text-align: left;
		transform: translateY(0)
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .btns .btn {
	margin-left: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .btns .btn {
		margin-left: 6px
	}
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .btns .btn:first-child {
	margin-left: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .rdo-wrap {
	position: absolute;
	top: 0;
	left: 0
}

.popup-wrap .common-pop .my-address-wrap .address-lists .lists .inner .rdo-wrap input+label {
	font-size: 0
}

.popup-wrap .common-pop .my-address-wrap .no-data {
	padding: 88px 0 124px
}

.popup-wrap .common-pop .fee-info-wrap {
	margin-bottom: 80px;
	padding: 24px 40px 32px;
	border-radius: 8px;
	background: #f4f4f4
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap {
		margin-bottom: 60px;
		padding: 24px 20px
	}
}

.popup-wrap .common-pop .fee-info-wrap dl {
	display: table;
	width: 100%;
	margin-top: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap dl {
		margin-top: 8px
	}
}

.popup-wrap .common-pop .fee-info-wrap dl:first-child {
	margin-top: 0
}

.popup-wrap .common-pop .fee-info-wrap dl dd,
.popup-wrap .common-pop .fee-info-wrap dl dt {
	display: table-cell;
	font-size: 14px;
	line-height: 24px;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap dl dd,
	.popup-wrap .common-pop .fee-info-wrap dl dt {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .fee-info-wrap dl dt {
	padding-right: 24px;
	color: #000;
	text-align: left;
	word-break: keep-all
}

.popup-wrap .common-pop .fee-info-wrap dl dd {
	min-width: 97px;
	text-align: right;
	font-weight: 700
}

.popup-wrap .common-pop .fee-info-wrap dl dd.minus {
	color: #da0f47
}

.popup-wrap .common-pop .fee-info-wrap dl.total {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid #ddd
}

.popup-wrap .common-pop .fee-info-wrap dl.total dd,
.popup-wrap .common-pop .fee-info-wrap dl.total dt {
	vertical-align: bottom
}

.popup-wrap .common-pop .fee-info-wrap dl.total dt {
	color: #000;
	font-weight: 500
}

.popup-wrap .common-pop .fee-info-wrap dl.total dd {
	font-size: 24px;
	line-height: 34px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap dl.total dd {
		font-size: 24px;
		line-height: 31px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap dl.total dd {
		font-size: 24px;
		line-height: 32px
	}
}

.popup-wrap .common-pop .fee-info-wrap.type2 {
	padding: 24px 40px
}

.popup-wrap .common-pop .fee-info-wrap.type2 dl.total {
	margin-top: 0;
	padding-top: 0;
	border-top: 0
}

.popup-wrap .common-pop .fee-info-wrap.type2 dl.total dt {
	font-size: 14px;
	line-height: 24px;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap.type2 dl.total dt {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .fee-info-wrap.type2 dl.total dd {
	font-size: 20px;
	line-height: 30px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-info-wrap.type2 dl.total dd {
		font-size: 16px;
		line-height: 24px
	}
}

.popup-wrap .common-pop .fee-txt dt {
	color: #000;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-txt dt {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .fee-txt dd {
	margin-top: 8px;
	color: #000;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-txt dd {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .fee-txt dd em {
	color: #da0f47
}

.popup-wrap .common-pop .fee-txt dd small {
	display: block;
	margin-top: 4px;
	color: #767676;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .fee-txt dd small {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .fee-txt dd .btn {
	margin-top: 24px
}

.popup-wrap .common-pop .fee-txt dd .bullet-list {
	margin-top: 12px
}

.popup-wrap .common-pop .fee-txt dd .bullet-list+.btn-link {
	margin-top: 24px
}

.popup-wrap .common-pop .form-wrap.mt-type {
	margin-top: 40px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .form-wrap.mt-type {
		margin-top: 20px
	}
}

.popup-wrap .common-pop .bk-infos dt {
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .bk-infos dt {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .bk-infos dt strong {
	color: #ec455a;
	font-weight: 400
}

.popup-wrap .common-pop .bk-infos dd {
	position: relative;
	margin-top: 12px;
	padding-left: 11px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .bk-infos dd {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .bk-infos dd:before {
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	border-radius: 100px;
	background-color: #000;
	content: ''
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .bk-infos dd {
		margin-top: 12px
	}
}

.popup-wrap .common-pop .bk-infos dd .btn {
	margin-top: 16px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .bk-infos dd .btn {
		margin-top: 8px
	}
}

.popup-wrap .common-pop .input-info:not(.type2) .bk-infos dd:last-child:before {
	display: none
}

.popup-wrap .common-pop .btn-link {
	margin-top: 24px
}

.popup-wrap .common-pop .btn-link-area .btn-link,
.popup-wrap .common-pop .link .btn-link {
	margin-top: 0
}

.popup-wrap .common-pop .top-txt {
	margin-bottom: 12px;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .top-txt {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .gray-txt-box {
	padding: 20px 24px;
	border-radius: 8px;
	background: #f4f4f4
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .gray-txt-box {
		padding: 16px 20px
	}
}

.popup-wrap .common-pop .gray-txt-box p {
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .gray-txt-box p {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .gray-txt-box p em {
	display: block;
	margin-top: 4px;
	font-weight: 700
}

.popup-wrap .common-pop .gray-txt-box.align-center {
	text-align: center
}

.popup-wrap .common-pop .gray-txt-box .txt-list {
	font-weight: 700;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .gray-txt-box .txt-list {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .gray-txt-box .txt-list li:not(:first-child) {
	margin-top: 2px
}

.popup-wrap .common-pop .gray-txt-box .desc {
	margin-top: 8px;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	color: #666
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .gray-txt-box .desc {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .common-pop .careship-info {
	margin-top: 16px
}

.popup-wrap .common-pop .careship-info:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .common-pop .careship-info li {
	float: left;
	position: relative;
	padding-left: 48px;
	font-size: 16px;
	line-height: 26px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .careship-info li {
		font-size: 14px;
		line-height: 22px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .careship-info li {
		padding-left: 10.6707vw
	}
}

.popup-wrap .common-pop .careship-info li:before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 12px;
	width: 24px;
	height: 24px;
	background: url(/lg5-common/images/icons/btn-arrow_right_24.svg) no-repeat;
	background-size: 24px 24px;
	transform: translateY(-50%)
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .careship-info li:before {
		left: 12px
	}
}

.popup-wrap .common-pop .careship-info li:first-child {
	padding-left: 0
}

.popup-wrap .common-pop .careship-info li:first-child:before {
	display: none
}

.popup-wrap .common-pop.academy-pop .noti-txt {
	font-weight: 700;
	font-size: 24px;
	line-height: 34px
}

.popup-wrap .common-pop.academy-pop .noti-txt em {
	color: #da0f47
}

.popup-wrap .common-pop.academy-pop .example-list {
	padding-top: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list {
		padding-top: 32px
	}
}

.popup-wrap .common-pop.academy-pop .example-list dl {
	padding-top: 4px;
	font-size: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list dl {
		padding-top: 18px
	}
}

.popup-wrap .common-pop.academy-pop .example-list dl:first-child {
	padding-top: 0
}

.popup-wrap .common-pop.academy-pop .example-list dl dd,
.popup-wrap .common-pop.academy-pop .example-list dl dt {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	vertical-align: top
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list dl dd,
	.popup-wrap .common-pop.academy-pop .example-list dl dt {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop.academy-pop .example-list dl dt {
	width: 83px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list dl dt {
		width: 108px
	}
}

.popup-wrap .common-pop.academy-pop .example-list dl dd {
	width: calc(100% - 83px)
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list dl dd {
		width: calc(100% - 108px)
	}
}

.popup-wrap .common-pop.academy-pop .example-list dl.sel-category {
	margin-top: 48px;
	padding-right: 77px
}

.popup-wrap .common-pop.academy-pop .example-list dl.sel-category dt {
	display: block;
	width: auto;
	margin-bottom: 16px
}

.popup-wrap .common-pop.academy-pop .example-list dl.sel-category dd {
	display: block;
	margin-top: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list dl.sel-category {
		margin-top: 40px;
		padding-right: 0
	}
	.popup-wrap .common-pop.academy-pop .example-list dl.sel-category dt {
		margin-bottom: 8px
	}
	.popup-wrap .common-pop.academy-pop .example-list dl.sel-category dd {
		margin-top: 6px
	}
}

.popup-wrap .common-pop.academy-pop .example-list .example-img {
	margin-top: 80px
}

.popup-wrap .common-pop.academy-pop .example-list .example-img .desc {
	margin-bottom: 12px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-list .example-img {
		margin-top: 60px
	}
	.popup-wrap .common-pop.academy-pop .example-list .example-img .desc {
		margin-bottom: 24px
	}
}

.popup-wrap .common-pop.academy-pop .example-list .example-img img {
	width: 100%
}

.popup-wrap .common-pop.academy-pop .example-list .example-img.no-img:after {
	display: block;
	min-height: 140px;
	background: #fff url(/lg5-common/images/icons/noimage-79.png) no-repeat center center;
	content: ''
}

.popup-wrap .common-pop.academy-pop .example-result {
	padding-top: 80px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-result {
		padding-top: 60px
	}
}

.popup-wrap .common-pop.academy-pop .example-result .txt {
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .example-result .txt {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop.academy-pop .example-result .img {
	margin-top: 12px
}

.popup-wrap .common-pop.academy-pop .example-result .img img {
	width: 100%;
	height: auto;
	vertical-align: top
}

.popup-wrap .common-pop.academy-pop .example-result .img .btn-img-view {
	display: block;
	position: relative
}

.popup-wrap .common-pop.academy-pop .example-result .img .btn-img-view:after {
	content: '';
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	background: center/24px rgba(0, 0, 0, .5) url(/kr/support/images/icon/icon_viewer.svg) no-repeat
}

.popup-wrap .common-pop.academy-pop .category-select {
	margin-top: 48px
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop.academy-pop .category-select {
		margin-top: 40px
	}
}

.popup-wrap .common-pop .process-list {
	display: flex
}

.popup-wrap .common-pop .process-list li {
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .process-list li {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .common-pop .process-list li:after {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin: 0 12px;
	background: url(/lg5-common/images/icons/btn-arrow_right_24.svg) no-repeat 0 center;
	vertical-align: bottom;
	content: ''
}

.popup-wrap .common-pop .process-list li:last-child {
	padding-right: 0
}

.popup-wrap .common-pop .process-list li:last-child:after {
	display: none
}

.popup-wrap .common-pop .process-list li .num {
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 22px;
	color: #666
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .process-list li .num {
		line-height: 20px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .common-pop .process-list li:after {
		width: 16px;
		height: 16px;
		margin: 0 8px;
		background-size: 16px 16px;
		vertical-align: sub
	}
}

.popup-wrap .input-info .tit-wrap {
	position: relative;
	margin-bottom: 24px;
	padding: 0
}

.popup-wrap .input-info .tit-wrap:after {
	content: "";
	display: block;
	clear: both
}

.popup-wrap .input-info .tit-wrap .h2-tit {
	font-size: 24px;
	line-height: 34px
}

@media screen and (max-width:767px) {
	.popup-wrap .input-info .tit-wrap .h2-tit {
		font-size: 20px;
		line-height: 28px
	}
}

.popup-wrap .input-info .tit-wrap .h2-tit .point {
	display: inline-block;
	margin-left: 4px;
	color: #da0f47
}

.popup-wrap .input-info .tit-wrap .h2-tit.req:after {
	content: '*';
	display: inline-block;
	margin-left: 1px;
	color: #ec455a;
	font-size: inherit;
	line-height: inherit;
	vertical-align: top
}

.popup-wrap .input-info .tit-wrap.type2 {
	margin-bottom: 12px
}

.popup-wrap .input-info .tit-wrap.type2 .h2-tit {
	display: inline-block;
	padding-right: 100px;
	font-size: 16px;
	line-height: 26px;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .input-info .tit-wrap.type2 .h2-tit {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .input-info .tit-wrap.type3 .h2-tit {
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .input-info .tit-wrap.type3 .h2-tit {
		font-size: 14px;
		line-height: 22px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .input-info .tit-wrap.type3 .h2-tit {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .input-info .tit-wrap .btn-link {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%)
}

.popup-wrap .input-info.type2 {
	margin-top: 48px
}

.popup-wrap .input-info.type2 .bullet-list.top-border {
	margin-top: 32px
}

.popup-wrap .rmsf-pop .form-infos {
	margin-top: -40px
}

.popup-wrap .rmsf-pop .input-info+.input-info {
	margin-top: 80px
}

@media screen and (max-width:767px) {
	.popup-wrap .rmsf-pop .form-infos {
		margin-top: -20px
	}
	.popup-wrap .rmsf-pop .input-info+.input-info {
		margin-top: 60px
	}
}

.popup-wrap .pop-list-wrap+.pop-list-wrap {
	margin-top: 24px
}

.popup-wrap .com-pop-tit {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .com-pop-tit {
		font-size: 15px;
		line-height: 23px
	}
}

.popup-wrap .com-pop-list li {
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .com-pop-list li {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .com-pop-list li a {
	text-decoration: underline
}

.popup-wrap .non-members .cont-wrap {
	max-width: 1226px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .cont-wrap {
		padding: 0 16px
	}
}

.popup-wrap .non-members .cont-wrap.login-type {
	max-width: 758px
}

.popup-wrap .non-members .welcome-joinus {
	display: table;
	width: 100%;
	margin-bottom: 48px;
	padding: 24px 40px;
	border-radius: 8px;
	background: #f4f4f4
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .welcome-joinus {
		margin-bottom: 40px;
		padding: 20px 16px
	}
}

.popup-wrap .non-members .welcome-joinus .cell {
	display: table-cell;
	vertical-align: middle
}

.popup-wrap .non-members .welcome-joinus .cell.text {
	font-size: 16px;
	line-height: 26px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .welcome-joinus .cell.text {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .non-members .welcome-joinus .cell.btns {
	padding-left: 24px;
	text-align: right
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .welcome-joinus .cell.btns {
		padding-left: 16px
	}
}

.popup-wrap .non-members .gy-info-box {
	padding: 40px;
	border-radius: 8px;
	background: #f4f4f4
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .gy-info-box {
		padding: 24px 16px
	}
}

.popup-wrap .non-members .gy-info-box .gy-tit {
	margin-top: 24px;
	color: #000;
	font-size: 14px;
	line-height: 24px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .gy-info-box .gy-tit {
		font-size: 13px;
		line-height: 21px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .gy-info-box .gy-tit {
		margin-top: 16px
	}
}

.popup-wrap .non-members .gy-info-box .gy-tit:first-child {
	margin-top: 0
}

.popup-wrap .non-members .gy-info-box .bullet-list {
	margin-top: 8px
}

.popup-wrap .non-members .customer-center-info {
	display: table;
	width: 100%;
	table-layout: fixed;
	margin-top: 24px;
	padding: 24px 32px;
	border-radius: 8px;
	background: #f4f4f4
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info {
		display: block;
		position: relative;
		padding: 24px 16px;
		padding-left: 76px
	}
}

.popup-wrap .non-members .customer-center-info .hello {
	display: table-cell;
	padding-right: 24px;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	vertical-align: middle
}

.popup-wrap .non-members .customer-center-info .hello::before {
	content: ' ';
	display: inline-block;
	width: 48px;
	height: 48px;
	margin-right: 20px;
	background: url(/lg5-common/images/icons/icon-call-svc-48.svg) center no-repeat;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info .hello {
		font-size: 13px;
		line-height: 21px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info .hello {
		display: block
	}
	.popup-wrap .non-members .customer-center-info .hello::before {
		position: absolute;
		top: 24px;
		left: 16px
	}
}

.popup-wrap .non-members .customer-center-info.type2 {
	margin-top: 80px;
	margin-bottom: 16px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info.type2 {
		margin-top: 60px;
		margin-bottom: 12px
	}
}

.popup-wrap .non-members .customer-center-info.type2 .hello {
	position: relative;
	width: 59%;
	padding-left: 68px;
	padding-right: 56px;
	word-break: keep-all
}

.popup-wrap .non-members .customer-center-info.type2 .hello::before {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -24px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info.type2 .hello {
		position: static;
		width: 100%;
		padding: 0
	}
	.popup-wrap .non-members .customer-center-info.type2 .hello::before {
		top: 24px;
		left: 16px;
		margin-top: 0
	}
}

.popup-wrap .non-members .customer-center-info .call-info {
	display: table-cell;
	border-left: 1px solid #ddd;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info .call-info {
		display: block;
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid #ddd;
		border-left: none
	}
}

.popup-wrap .non-members .customer-center-info .call-info ul {
	font-size: 0
}

.popup-wrap .non-members .customer-center-info .call-info ul li {
	display: inline-block;
	margin-left: 32px;
	vertical-align: middle;
	color: #767676;
	font-size: 12px;
	line-height: 22px;
	word-break: keep-all;
	vertical-align: top
}

.popup-wrap .non-members .customer-center-info .call-info ul li br {
	display: none
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info .call-info ul li {
		width: 50%;
		margin-left: 0;
		padding-right: 40px;
		line-height: 20px
	}
	.popup-wrap .non-members .customer-center-info .call-info ul li br {
		display: block
	}
}

.popup-wrap .non-members .customer-center-info .call-info ul li em {
	display: inline-block;
	margin-left: 12px;
	color: #000;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700;
	vertical-align: middle
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info .call-info ul li em {
		display: block;
		margin-top: 8px;
		margin-left: 0;
		font-size: 15px;
		line-height: 23px
	}
}

.popup-wrap .non-members .customer-center-info.type2 .call-info ul li {
	margin: 0;
	padding-left: 32px;
	width: 50%
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .customer-center-info.type2 .call-info ul li {
		padding-left: 0
	}
}

.popup-wrap .non-members .customer-center-info.type2 .call-info ul li br {
	display: block
}

.popup-wrap .non-members .customer-center-info.type2 .call-info ul li em {
	display: block;
	margin: 0;
	margin-top: 2px
}

.popup-wrap .non-members .membership-benefit {
	display: table;
	width: calc(100% + 48px);
	margin: 40px -24px 0;
	table-layout: fixed;
	border-collapse: separate;
	border-spacing: 24px 0
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit {
		display: block;
		width: auto;
		margin: 60px -16px 0;
		padding: 32px 16px 60px;
		border-top: 12px solid #f4f4f4
	}
}

.popup-wrap .non-members .membership-benefit .box {
	display: table-cell;
	padding: 32px 40px;
	border-radius: 8px;
	box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, .14)
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit .box {
		display: block;
		margin-top: 12px;
		padding: 24px 20px
	}
	.popup-wrap .non-members .membership-benefit .box:first-child {
		margin-top: 0
	}
}

.popup-wrap .non-members .membership-benefit .box dl::before {
	content: ' ';
	display: block;
	width: 64px;
	height: 64px;
	margin-bottom: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit .box dl::before {
		margin-bottom: 16px
	}
}

.popup-wrap .non-members .membership-benefit .box dl dt {
	color: #000;
	font-size: 24px;
	line-height: 34px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit .box dl dt {
		font-size: 24px;
		line-height: 31px
	}
}

.popup-wrap .non-members .membership-benefit .box dl dd {
	margin-top: 8px;
	color: #767676;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit .box dl dd {
		font-size: 14px;
		line-height: 22px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .membership-benefit .box dl dd {
		margin-top: 6px
	}
}

.popup-wrap .non-members .membership-benefit .box.membership dl::before {
	background: url(/lg5-common/images/icons/icon-img01-64.svg) center no-repeat
}

.popup-wrap .non-members .membership-benefit .box.card-benefit dl::before {
	background: url(/lg5-common/images/icons/icon-img03-64.svg) center no-repeat
}

.popup-wrap .non-members .non-members-login {
	text-align: center
}

.popup-wrap .non-members .non-members-login .hello-msg {
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 26px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .non-members-login .hello-msg {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .non-members .non-members-login .hello-desc {
	font-size: 16px;
	line-height: 26px;
	word-break: keep-all
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .non-members-login .hello-desc {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .non-members .non-members-login .hello-desc em {
	font-weight: 700;
	color: #da0f47
}

.popup-wrap .non-members .non-members-login .call-info {
	margin-top: 20px;
	padding: 24px;
	border-radius: 8px;
	background: #f4f4f4
}

.popup-wrap .non-members .non-members-login .call-info ul {
	font-size: 0
}

.popup-wrap .non-members .non-members-login .call-info ul li {
	display: inline-block;
	width: 50%;
	vertical-align: top;
	color: #767676;
	font-size: 12px;
	line-height: 22px;
	font-weight: 500
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .non-members-login .call-info ul li {
		line-height: 20px
	}
}

.popup-wrap .non-members .non-members-login .call-info ul li em {
	display: block;
	margin-top: 2px;
	color: #000;
	font-size: 18px;
	line-height: 28px;
	font-weight: 700
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .non-members-login .call-info ul li em {
		font-size: 15px;
		line-height: 23px
	}
}

.popup-wrap .non-members .non-members-login-tabs {
	padding: 24px 24px 0
}

.popup-wrap .non-members .non-members-login-tabs .btn-group {
	margin-top: 32px
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members .non-members-login-tabs {
		padding: 24px 12px 0
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .non-members[data-consumables=true] .info-tbl-wrap .box .tbl-layout .tbody .row {
		padding-left: 0
	}
}

.popup-wrap .btn {
	border: 1px solid #089db5;
    color: #089db5;
    line-height: 1.1;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
	display: inline-block;
	min-width: 112px;
	padding: 11px 31px;
	text-align: center;
	vertical-align: top;

	/*
    width: 100%;
	font-size: 16px;
	line-height: 26px;
	border: 1px solid #fa263e;
	border-radius: 26px;
	background-color: #fa263e;
	background-image: linear-gradient(280deg, #fb5a72, #fa263e);
	color: #fff;
	font-weight: 500*/
}

@media screen and (max-width:767px) {
	.popup-wrap .btn {
		font-size: 14px;
		line-height: 22px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .btn {
		min-width: 124px;
		font-size: 16px;
		line-height: 24px;
		padding: 15px 25px;
		border-radius: 28px
	}
}

.popup-wrap .btn:active,
.popup-wrap .btn:focus,
.popup-wrap .btn:hover {
	background-color: #089db5;
	background-image: none;
	color: #fff
}

.popup-wrap .btn.black {
	border-color: #000;
	background: #000;
	color: #fff
}

.popup-wrap .btn.black:hover {
	background: #000;
	color: #fff
}

.popup-wrap .btn.gray {
	border: 1px solid #ccc;
    color: #333333;
    line-height: 1.1;
    height: 40px;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
}

.popup-wrap .btn.gray:hover {
	border: 1px solid #089db5;
	background-color:white;
    color: #089db5;
}

.popup-wrap .btn.dark-gray {
	border-color: #767676;
	background: #767676;
	color: #fff
}

.popup-wrap .btn.dark-gray:hover {
	background: #767676;
	color: #fff
}

.popup-wrap .btn.mix {
	border: none;
	padding: 12px 32px;
	background-image: linear-gradient(135deg, #9c86e7, #ff537c);
	color: #fff
}

.popup-wrap .btn.border {
	border-color: #000!important;
	background: 0 0;
	color: #000
}

.popup-wrap .btn.border.pink {
	border-color: #da0f47!important;
	background: 0 0;
	color: #da0f47
}

.popup-wrap .btn.border:active,
.popup-wrap .btn.border:focus,
.popup-wrap .btn.border:hover {
	border-color: #da0f47!important;
	background: #da0f47;
	color: #fff
}

.popup-wrap .btn.disabled,
.popup-wrap .btn:disabled {
	border-color: #ddd!important;
	background: #f4f4f4;
	color: #aaa;
	cursor: default
}

.popup-wrap .btn.disabled:active,
.popup-wrap .btn.disabled:focus,
.popup-wrap .btn.disabled:hover,
.popup-wrap .btn:disabled:active,
.popup-wrap .btn:disabled:focus,
.popup-wrap .btn:disabled:hover {
	border-color: #ddd!important;
	background: #f4f4f4;
	color: #aaa
}

.popup-wrap .btn.size {
	min-width: 64px;
	padding: 3px 11px;
	border-radius: 16px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn.size {
		font-size: 13px;
		line-height: 21px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .btn.size {
		padding: 5px 15px;
		line-height: 22px
	}
}

.popup-wrap .btn.size.mix {
	padding: 4px 12px
}

.popup-wrap .btn.size-m {
	min-width: 80px;
	padding: 7px 15px;
	border-radius: 20px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn.size-m {
		font-size: 13px;
		line-height: 21px
	}
}

@media screen and (max-width:767px) {
	.popup-wrap .btn.size-m {
		padding: 10px 19px;
		border-radius: 22px
	}
}

.popup-wrap .btn.block {
	display: block;
	width: 100%
}

.popup-wrap .btn.border {
	position: relative
}

.popup-wrap .btn.border.arrow {
	padding-right: 40px
}

.popup-wrap .btn.border.arrow:after {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	width: 20px;
	height: 20px;
	margin-top: -8px;
	background: url(/lg5-common/images/icons/btn-arrow-right-40.svg) center no-repeat;
	background-size: 20px 20px
}

.popup-wrap .btn.border.arrow:hover {
	background: #fff;
	border-color: #000;
	color: #000
}

.popup-wrap .btn.border.plus {
	padding-right: 44px
}

.popup-wrap .btn.border.plus:after {
	content: '';
	position: absolute;
	right: 16px;
	top: 50%;
	width: 20px;
	height: 20px;
	transform: translateY(-50%);
	background: url(/lg5-common/images/icons/icon-plus-40.svg) center no-repeat;
	background-size: 20px 20px
}

.popup-wrap .btn.border.plus:hover {
	background: #fff;
	border-color: #000;
	color: #000
}

.popup-wrap .btn.question {
	position: relative;
	padding-left: 32px;
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn.question {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .btn.question:before {
	content: '';
	position: absolute;
	left: 14px;
	top: 50%;
	width: 14px;
	height: 14px;
	transform: translateY(-50%);
	background: url(/lg5-common/images/icons/icon-question-16.svg) center no-repeat
}

.popup-wrap .btn-text {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	line-height: 24px;
	vertical-align: top
}

.popup-wrap .btn-text.small {
	font-size: 14px;
	line-height: 24px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-text.small {
		font-size: 13px;
		line-height: 21px
	}
}

.popup-wrap .btn-text.pink {
	color: #ec455a
}

.popup-wrap .btn-text.black {
	color: #000
}

.popup-wrap .btn-text.red01 {
	color: #ec455a;
	border-bottom-color: #ec455a
}

.popup-wrap .btn-text:focus,
.popup-wrap .btn-text:hover {
	color: #000;
	text-decoration: underline
}

.popup-wrap .btn-text.disabled,
.popup-wrap .btn-text:disabled,
.popup-wrap .btn-text[aria-disabled=true] {
	color: #ccc
}

.popup-wrap .btn-text.disabled:hover,
.popup-wrap .btn-text:disabled:hover,
.popup-wrap .btn-text[aria-disabled=true]:hover {
	text-decoration: none
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-text {
		font-size: 14px;
		line-height: 18px;
		text-decoration: underline
	}
}

.popup-wrap .btn-link {
	position: relative;
	display: inline-block;
	padding-right: 18px;
	font-size: 16px;
	line-height: 26px;
	color: #000;
	text-decoration: underline;
	vertical-align: top
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-link {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .btn-link:after {
	content: '';
	position: absolute;
	right: 0;
	top: 6px;
	width: 14px;
	height: 14px;
	background: url(/lg5-common/images/icons/btn-arr-16-black.svg) center no-repeat;
	background-size: 14px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-link:after {
		top: 4px
	}
}

.popup-wrap .btn-link:focus,
.popup-wrap .btn-link:hover {
	color: #000
}

.popup-wrap .btn-link.white {
	color: #fff
}

.popup-wrap .btn-link.white:after {
	background: url(/lg5-common/images/icons/btn-arrow-right-white-20.svg) center;
	background-size: 15px
}

.popup-wrap .btn-moreinfo {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500
}

.popup-wrap .btn-moreinfo span {
	display: inline-block;
	vertical-align: top
}

.popup-wrap .btn-moreinfo:after {
	content: '';
	display: inline-block;
	margin-left: 4px;
	vertical-align: top;
	width: 16px;
	height: 16px;
	background: url(/lg5-common/images/icons/icon-more.svg) no-repeat;
	background-size: 16px 16px
}

.popup-wrap .btn-pr-list {
	display: inline-block;
	position: relative;
	font-size: 14px;
	line-height: 16px;
	font-weight: 500;
	color: #767676
}

.popup-wrap .btn-pr-list span {
	display: inline-block;
	vertical-align: top
}

.popup-wrap .btn-pr-list:after {
	content: '';
	display: inline-block;
	margin-top: -1px;
	margin-left: 4px;
	vertical-align: top;
	width: 20px;
	height: 20px;
	background: url(/lg5-common/images/icons/icon-more-pk-20.svg) no-repeat;
	background-size: 20px 20px
}

.popup-wrap .btn-moreview {
	display: none;
	padding: 3px 11px;
	border: 1px solid #222;
	border-radius: 16px;
	color: #000;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-align: center;
	vertical-align: top
}

.popup-wrap .btn-moreview::before {
	content: ' ';
	display: inline-block;
	width: 20px;
	height: 24px;
	margin-right: 2px;
	background: url(/lg5-common/images/icons/btn-more-20.svg) center no-repeat;
	vertical-align: top
}

.popup-wrap .btn-moreview.block {
	width: auto;
	margin: 32px auto 0
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-moreview.block {
		margin-top: 24px
	}
}

.popup-wrap .btn-banner {
	display: inline-block;
	position: relative;
	padding: 15px 72px 15px 16px;
	color: #ec455a;
	font-size: 16px;
	line-height: 24px;
	text-align: left;
	vertical-align: top;
	border: 1px solid #ec455a;
	border-radius: 8px;
	background: url(/lg5-common/images/icons/icon-arrow-right-red.svg) no-repeat right 16px top 16px
}

.popup-wrap .btn-banner [class^=icon-] {
	display: block;
	padding-left: 36px;
	background-repeat: no-repeat;
	background-size: 24px
}

.popup-wrap .btn-banner [class^=icon-].icon-solution {
	background-image: url(/lg5-common/images/icons/icon-solution.svg)
}

.popup-wrap .btn-banner [class^=icon-].icon-driver {
	background-image: url(/lg5-common/images/icons/icon-driver.svg)
}

.popup-wrap .btn-banner [class^=icon-].icon-plus {
	background-image: url(/lg5-common/images/icons/icon-plus.svg)
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-banner {
		width: 100%;
		padding: 14px 12px;
		background: 0 0
	}
	.popup-wrap .btn-banner [class^=icon-] {
		padding-left: 32px
	}
}

.popup-wrap .btn-banner.block {
	display: block;
	width: 100%
}

.popup-wrap .btn-addr {
	display: inline-block;
	position: relative;
	padding: 10px 16px;
	color: #ec455a;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	vertical-align: top;
	font-weight: 500;
	border: 1px solid #ec455a;
	border-radius: 8px;
	vertical-align: top
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-addr {
		font-size: 14px;
		line-height: 22px
	}
}

.popup-wrap .btn-addr [class^=icon-] {
	display: inline-block;
	padding-left: 36px;
	background-repeat: no-repeat;
	background-size: 24px
}

.popup-wrap .btn-addr [class^=icon-].icon-plus {
	background-image: url(/lg5-common/images/icons/icon-plus.svg)
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-addr {
		width: 100%;
		padding: 14px 12px;
		background: 0 0
	}
	.popup-wrap .btn-addr [class^=icon-] {
		padding-left: 26px;
		background-size: 20px 20px
	}
}

.popup-wrap .btn-addr.block {
	display: block;
	width: 100%
}

.popup-wrap .btn-group {
	display: block;
	font-size: 0
}

.popup-wrap .btn-group.right {
	text-align: right
}

.popup-wrap .btn-group.center {
	text-align: center
}

.popup-wrap .btn-group .popup-wrap .btn {
	margin-left: 8px
}

.popup-wrap .btn-group .popup-wrap .btn:first-child {
	margin-left: 0
}

.popup-wrap .btn-group .popup-wrap .btn+.popup-wrap .btn {
	margin-left: 8px
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-group .popup-wrap .btn {
		width: 100%;
		margin-left: 8px;
		border-radius: 60px
	}
	.popup-wrap .btn-group .popup-wrap .btn:first-child,
	.popup-wrap .btn-group .popup-wrap .btn:only-child {
		margin-left: 0
	}
	.popup-wrap .btn-group .popup-wrap .btn:first-child:nth-last-child(2),
	.popup-wrap .btn-group .popup-wrap .btn:first-child:nth-last-child(2)~.popup-wrap .btn {
		width: calc((100% - 8px)/ 2)
	}
	.popup-wrap .btn-group .popup-wrap .btn:first-child:nth-last-child(3),
	.popup-wrap .btn-group .popup-wrap .btn:first-child:nth-last-child(3)~.popup-wrap .btn {
		width: calc((100% - 12px)/ 3)
	}
	.popup-wrap .btn-group.block-type {
		padding: 0;
		margin-top: 0
	}
	.popup-wrap .btn-group.block-type .popup-wrap .btn {
		border-radius: 0
	}
}

.popup-wrap .btn-group>.popup-wrap .btn-group:not(:first-child)>.popup-wrap .btn,
.popup-wrap .btn-group>.popup-wrap .btn-group:not(:last-child)>.popup-wrap .btn,
.popup-wrap .btn-group>.popup-wrap .btn:not(:first-child),
.popup-wrap .btn-group>.popup-wrap .btn:not(:last-child):not(.dropdown-toggle) {
	border-radius: 26px
}

.popup-wrap .btn-group {
	position: initial
}

.popup-wrap .btn-arrow {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
	padding: 4px;
	border-radius: 50%;
	font-size: 0
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-arrow {
		width: 36px;
		height: 36px
	}
}

.popup-wrap .btn-arrow::before {
	content: ' ';
	display: block;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-size: 100%;
	box-shadow: 2px 4px 16px 0 rgba(0, 0, 0, .14)
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-arrow::before {
		width: 28px;
		height: 28px
	}
}

.popup-wrap .btn-arrow.prev::before {
	background-image: url(/lg5-common/images/icons/btn-arr-40x40-lt.svg)
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-arrow.prev::before {
		background-image: url(/lg5-common/images/icons/btn-arr-40x40-lt-m.svg)
	}
}

.popup-wrap .btn-arrow.prev.disabled {
	display: none!important
}

.popup-wrap .btn-arrow.next::before {
	background-image: url(/lg5-common/images/icons/btn-arr-40x40-rt.svg)
}

@media screen and (max-width:767px) {
	.popup-wrap .btn-arrow.next::before {
		background-image: url(/lg5-common/images/icons/btn-arr-40x40-rt-m.svg)
	}
}

.popup-wrap .btn-arrow.next.disabled {
	display: none!important
}

.popup-wrap .btn-arrow.ui_carousel_hidden {
	display: none!important
}

.popup-wrap .input-info .txt-cont .dl-txt-cont dt {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
}
.popup-wrap .dl-txt-cont strong{ font-weight:bold; }
.popup-wrap .dl-txt-cont p{ font-size:14px; }

.popup-wrap .blind, .popup-wrap caption, .popup-wrap legend {
    position: absolute;
    z-index: -10;
    width: 0!important;
    height: 0!important;
    overflow: hidden!important;
    font-size: medium;
    line-height: normal;
    word-break: break-all;
}

/* 
* csportal 커스터마이징 alert 관련 정보
* <<start>>
*/

.csportal_wrapp{}
.csportal_wrapp .csportalDim{position: absolute; inset: 0px; background: rgb(0, 0, 0); opacity: 0.7;display:none;}
.csportal_wrapp .csportalModalWrap{position: fixed; inset: 0px; z-index: 9000;display:none;}
.csportal_wrapp .csportalModalWrapAlert{position: fixed; inset: 0px; z-index: 9000;display:none;}
.csportal_wrapp .csportalMsgBoxes{position: fixed; background-clip: padding-box; transform: translateX(-50%) translateY(-50%); left: 50%; top: 50%;}
.csportal_wrapp .csportalPopupBoxes{display: block; position: absolute; background-clip: padding-box; transform: translateX(-50%) translateY(-50%); left: 50%; top: 50%; }
.csportal_wrapp .csportalDims{display:none;}
.csportal_wrapp .csportalSpinner{display:none;}

.lay-wrap .btn-wrap .btn {
    display: inline-block;
    min-width: 112px;
    padding: 11px 31px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    vertical-align: top;
    border: 1px solid #089db5;
    border-radius: 26px;
    background-color: #089db5;
    color: #fff;
    font-weight: 500;
}
.lay-wrap {
    display: none;
    position: absolute;
    width: 444px;
    padding-top: 48px;
    background-color: #fff;
    box-shadow: 2px 4px 12px 0 rgba(0, 0, 0, 0.16);
    border-radius: 8px;
    z-index: 9000;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .lay-wrap {
        width: 87.5%;
        padding-top: 60px;
    }
}
.lay-wrap .lay-conts {
    padding: 0 40px 40px;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
}
.lay-wrap .lay-conts h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
}
@media screen and (max-width: 767px) {
    .lay-wrap .laypop.btn-wrap .btn {
        width: 50%;
        margin-left: 0;
        border-radius: 0;
    }
    .lay-wrap .laypop.btn-wrap .btn:only-child {
        width: 100%;
    }
}
.lay-wrap .laypop.btn-wrap {
    padding-bottom: 48px;
    font-size: 0;
    text-align: center;
}
@media screen and (max-width: 767px) {
    .lay-wrap .laypop.btn-wrap {
        padding: 0;
    }
}
.lay-wrap .laypop.btn-wrap .btn {
    margin-left: 8px;
}
.lay-wrap .laypop.btn-wrap .btn:first-child {
    margin-left: 0;
}

/* 
* csportal 커스터마이징 alert 관련 정보
* <<end>>
*/