@charset "utf-8";
@import url("../css/base.css");

/* remove bounce effect on iOS */

body, html {
  position: fixed;
}

/* fix : Some font-size's rendered larger on Safari (iPhone) */

@media screen and (max-device-width: 480px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media screen and (max-device-width: 413px) {
  body {
    -webkit-text-size-adjust: none;
  }
  .bannerTxt {
    width: 165px;
  }  
  .bannerTitlePre {
    font-size: 1rem;
  }
}
@media screen and (min-device-width: 420px) {
  body {
    -webkit-text-size-adjust: none;
  }
  .bannerTxt {
    width: 200px;
  }  
  .bannerTitlePre {
    font-size: 1.15rem;
  }
}
@media screen and (min-device-width: 700px) {
  body {
    -webkit-text-size-adjust: none;
  }
  .bannerTxt {
    width: 100%;
  }  
  .bannerTitlePre {
    font-size: 1.15rem;
  }
}

/*
 * Commmon Component : begin
 */

/* input[text] & textarea */

input[type=text], input[type=number], input[type=date], input[type=tel], textarea {
  -webkit-appearance: none;
  border-radius: 0;
  color: #636363;
  border-color: #dbdbdb;
  background-color: #fff;
  font-size: 12px;
  line-height: 25px;
}
input[type=text], input[type=number], input[type=date], input[type=tel] {
  height: 27px;
  padding: 0 18px;
}
textarea {
  padding: 0 18px;
}
input[type=text][readonly], input[type=number][readonly], textarea[readonly] {
  border-color: #d8d8d9;
  background: #f7f7f7 !important;
}
input[type=text]:disabled, input[type=number]:disabled, textarea:disabled {
  border-color: #e5e5e5 !important;
  background: #fff !important;
  color: #d3d3d3 !important;
  cursor: default !important;
}
input[type=text]:focus, input[type=number]:focus, input[type=date]:focus, input[type=tel]:focus, textarea:focus {
	outline: 0;
}

#captcha_text {
  margin-top: 7px;
}


/* input[checkbox] */

input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
input[type=checkbox] + label {
  display: inline-block;
}
input[type=checkbox] + label:after {
  content: '';
  display: block;
  clear: both;
}
input[type=checkbox] + label > span, input[type=checkbox] + label > i {
  display: block;
  float: left;
  height: 18px;
  color: #4f4f4f;
  line-height: 18px;
}
input[type=checkbox] + label > i {
  width: 18px;
  background: url(../images/common/bottom_checkbox.png) no-repeat;
  background-size: 18px 36px;
  overflow: hidden;
}
input[type=checkbox]:disabled + label {
  cursor: default !important;
}
input[type=checkbox]:disabled + label > span {
  color: #ccc !important;
}
input[type=checkbox]:disabled + label > i {}
input[type=checkbox] + label:hover > i, input[type=checkbox]:focus + label > i {}
input[type=checkbox]:checked + label > i {
  background-position-y: -18px;
}
input[type=checkbox] + label > span {
  margin-left: 14px;
  font-size: 12px;
}

/* input[radio] */

input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
input[type=radio] + label {
  display: inline-block;
}
input[type=radio] + label:after {
  content: '';
  display: block;
  clear: both;
}
input[type=radio] + label > span,
input[type=radio] + label > i {
  display: block;
  float: left;
  height: 18px;
  color: #4f4f4f;
  line-height: 21px;
}
input[type=radio] + label > i {
  width: 18px;
  background: url(../images/common/radiobtn.png) no-repeat;
  background-size: 18px 36px;
  overflow: hidden;
}
input[type=radio]:disabled + label {
  cursor: default !important;
}
input[type=radio]:disabled + label > span {
  color: #ccc !important;
}
input[type=radio] + label > i {}
input[type=radio]:disabled + label > i {}
input[type=radio] + label:hover > i, input[type=radio]:focus + label > i {}
input[type=radio]:checked + label > i {
  background-position-y: -18px;
}
input[type=radio] + label > span {
  margin-left: 14px;
  font-size: 13px;
}


/* button */
button:focus {
	outline: 0;
}


/* select */

select {
  border-radius: 0;
  color: #636363;
  border: 1px solid #dbdbdb;
  box-sizing: border-box;
  -webkit-appearance: none;
  background: url(../images/common/input_ico_dropdown.png) no-repeat right center;
  background-size: 22px auto;
  background-color: #fff;
  font-size: 12px;
  /*line-height: 25px;*/
  height: 27px;
  padding: 0 18px 0 18px;
}
select:focus {
	outline: 0;
}
option {
  color: #4f4f4f;
  /*background-color: #fff;*/
}
/*
 * Commmon Component : end
 */


/*
 * Popup : begin
 */
#container-popup {display: none; width: 100%; height: 100%; position: absolute;	top: 0;	z-index: 1000;}
#container-popup .mask {width: 100%; height: 100%; background-color: #000; opacity: 0.8;}
.popup-wrap {position:absolute; left: 30px; right: 30px; background-color: #fff;}
/*.popup-wrap.large {top:100px; bottom: 100px;}*/
.popup-titlebar {
  padding: 0px 15px;
  font-size: 15px;
  line-height: 49px;
  height: 49px;
}
.popup-titlebar button.btn-popup-close {
  position: absolute;
  right: 11px;
  top: 13px;
  border: 0;
  width: 25px; height: 25px;
  background: url(../images/common/popup_delete.png) no-repeat;
  background-size: 25px 50px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
.popup-titlebar button.btn-popup-close:focus {
  outline: 0;
}
.popup-titlebar button.btn-popup-close:active {
  background-position-y: -25px;
}
.popup-contents {
  padding: 0px 15px 15px;
}
.popup-contents table {
  width: 100%;
}
.popup-contents th {
  text-align: center;
  background-color: #dddddd;
  border: 1px solid #cccccc;
  padding: 5px 0;
}
.popup-contents th input[type=radio] + label {
  display: block;
  text-align: center;
}
.popup-contents th input[type=radio] + label > span {
  float: none;
  margin-left: 0;
  font-size: 12px;
}
.popup-contents th input[type=radio] + label > i {
  float: none;
  display: inline-block;
}
.popup-contents td {
  font-size: 9px;
  text-align: center;
  background-color: #efefef;
  border: 1px solid #dddddd;
  padding: 5px 0;
}
/*.popup-contents .text-contents {padding: 48px 15px; font-size: 16px; text-align: center;}*/
/*.popup-contents .input-section-wrap {background-color: #fff;}*/
/*.popup-wrap .command-section {padding: 0px 12px 15px; height: 65px;}*/

#container-popup.no-title .popup-contents {padding: 30px 15px;}
#container-popup .popup-control {font-size: 0;}
#container-popup .popup-control button {
	width: 50%;
	height: 53px;
	font-size: 14px;
	display: inline-block;
	border: 0;
	color: #fff;
}
#container-popup .popup-control .btn-popup-close {background-color: #8a8a8a;}
#container-popup .popup-control .btn-popup-close:active {background-color: #676767;}
#container-popup .popup-control .btn-popup-ok {background-color: #4b83ff;}
#container-popup .popup-control .btn-popup-ok:active {background-color: #2850a8;}
/*
 * Popup : end
 */


/*
 * common layout : begin
 */

#wrap {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-overflow-scrolling: touch;
}
.header {
  width: 100%;
  height: 44px;
  background-color: #f2f2f2;
  padding: 0px 54px;
  box-sizing: border-box;
  border-bottom: 1px solid #d0d0d0;
  display: table;
}
#btn-back {
  display: block;
  width: 30px;
  height: 30px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/action_icon_back.png) no-repeat;
  background-size: 30px 60px;
  position: absolute;
  top: 7px;
  left: 12px;
}
#btn-back:active {
  background-position-y: -30px;
}
.header h1 {
  font-size: 15px;
  color: #313131;
  font-weight: bold;
  line-height: 26px;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 0;
  width: 100%;
}
.nav-holder {
  width: 100%;
  height: 36px;
  padding: 0 11px 0;
  background-color: #f2f2f2;
  box-sizing: border-box;
  overflow-x: auto;
  overflow-y: hidden;
}
.nav-holder::-webkit-scrollbar {
  display: none;
}
.nav-holder .nav-list {
  white-space: nowrap;
}
.nav-holder .nav-list .nav-item {
  display: inline-block;
}
.nav-holder .nav-list .nav-item a {
  display: block;
  height: 36px;
  box-sizing: border-box;
  font-size: 13px;
  text-align: center;
  color: #959595;
  margin: 0 auto;
  font-weight: bold;
  padding-top: 9px;
  line-height: 21px;
}
.nav-holder .nav-list .nav-item a.selected {
  color: #000;
  border-bottom: 3px solid #4b83ff;
}
.container {
  position: absolute;
  left: 0;
  top: 80px;
  right: 0;
  bottom: 0;
  background-color: #f2f2f2;
  overflow-x: hidden;
  overflow-y: auto;
}

 .contents.bottom-margin {
  padding-bottom: 80px!important;
}
/*
 * common layout : end
 */


/*
 * Carousel : begin
 */

#carousel {
  overflow: hidden;
  /* don't use overflow-x:auto */
}
#carousel::-webkit-scrollbar {
  display: none;
}
#carousel .slide-list {
  position: relative;
  white-space: nowrap;
}
#carousel .slide {
  left: -100%;
  overflow: hidden;
  z-index: 1;
  position: absolute;
  -webkit-transition-property: left, height;-moz-transition-property: left, height;-ms-transition-property: left, height;-o-transition-property: left, height;transition-property: left, height;
  -webkit-transition-duration: 100ms;-moz-transition-duration: 100ms;-ms-transition-duration: 100ms;-o-transition-duration: 100ms;transition-duration: 100ms;
/*   -webkit-transition-duration: 333ms;-moz-transition-duration: 333ms;-ms-transition-duration: 333ms;-o-transition-duration: 333ms;transition-duration: 333ms;
  -webkit-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);-moz-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);-ms-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);-o-transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);transition-timing-function: cubic-bezier(0.1, 0.7, 0.7, 1);
  -webkit-transform: translate3d(0, 0, 0);-moz-transform: translate3d(0, 0, 0);-ms-transform: translate3d(0, 0, 0);-o-transform: translate3d(0, 0, 0);transform: translate3d(0, 0, 0);
 */}
#carousel .slide.active {
  left: 0;
  overflow: visible;
  z-index: 2;
}
#carousel .slide.active ~ .slide {
  left: 100%;
}
#carousel .slide.active ~ .slide.active {
  left: 0;
}
.slide-pagination-wrap {
  width: 100%;
}
.slide-pagination {
  white-space: nowrap;
  height: 18px;
  margin: 0 auto;
  padding-top: 7px;
  font-size: 0;
  box-sizing: border-box;
}
.slide-pagination li {
  display: inline-block;
}
.slide-pagination .button {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #d9d9d9;
  border-radius: 3px;
  margin: 0 2px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
.slide-pagination .button.selected {
  background-color: #4e84ff;
}
#carousel .slide-list .slide {
  width: 100%;
}
#carousel .slide-list .slide img {
  width: 100%;
}
#carousel .btn-page {
  width: 37px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: 18.5px 108px;
  background-position-x: center;
  position: absolute;
  top: 30px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  border: 0;
}
#carousel .btn-page:focus {
	outline: 0;
}
#carousel .btn-page.prev {
  left: 20px;
  background-image: url(../images/common/btn_page_prev.png);
}
#carousel .btn-page.next {
  right: 20px;
  background-image: url(../images/common/btn_page_next.png);
}
#carousel .btn-page:active {
  background-position-y: -36px;
  outline: 0;
}
#carousel .btn-page:disabled {
  background-position-y: -72px;
}

/*
 * 기본 화면 (금융플라자) : begin
 */

.container .contents h2 {
  box-sizing: border-box;
  height: 38px;
  padding: 16px 22px 0;
  font-size: 13px;
  line-height: 16px;
  font-weight: bold;
  color: #4f4f4f;
}
.container .contents .list li {
  padding: 4px 11px;
}
.container .contents .list li a:active {
  opacity: 0.6;
}
.container .contents .list li .res {
  width: 100%;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15);
}

/*
 * 기본 화면 (금융플라자) : end
 */



/*
 * 0.1.서비스 소개 : begin
 */
.intro .container {
  top: 0;
  bottom: 120px;
}
.intro .contents h3 {
  position: absolute;
  top: 20px;
  width: 100%;
  text-align: center;
}
.intro .control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  font-size: 0;
}
.intro .control-info-wrap {
  height: 50px;
  padding-top: 5px;
  font-size: 14px;
  text-align: center;
}
.intro .control button {
  display: inline-block;
  width: 50%;
  height: 53px;
  background-color: #4b83ff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 53px;
  border: 0;
}
.intro .control button.light {
	background-color: #4EAEFF;
}
.intro .control button:active {
  background-color: #2850a8;
}
.intro .slide-pagination-wrap {
  position: absolute;
  bottom: 100px;
  bottom: 110px;
  background-color: #fff;
  z-index: 10;
}
/*
 * 0.1.서비스 소개 : begin
 */



/*
 * Webzine : begin
 */

.webzine .nav-holder {
  position: relative;
  height: 51px;
  background-color: #fff;
  padding: 0 30px;
}
.webzine .nav-holder a {
  position: absolute;
  top: 10px;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 30px 90px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}
.webzine .nav-holder a.btn-prev {
  left: 22px;
  background-image: url(../images/common/left_icon.png);
}
.webzine .nav-holder a.btn-next {
  right: 22px;
  background-image: url(../images/common/right_icon.png);
}
.webzine .nav-holder a:active {
  background-position-y: -30px;
}
.webzine .nav-holder a.disabled {
  pointer-events: none;
  cursor: default;
  background-position-y: -60px;
}
.webzine .nav-holder .select-date-wrap {
  width: 100%;
  text-align: center;
  font-size: 15px;
  line-height: 51px;
}
.webzine .nav-holder .select-date-wrap select {
  border: 0;
  padding-right: 30px;
  font-size: 15px;
}
.webzine .container {
  top: 94px;
}
.webzine .container .contents .list {
  font-size: 0;
}
.webzine .container .contents .list li {
  float: left;
  padding: 0;
}
.webzine .container .contents .list li img {
  width: 100%;
}

.webzine.detail .container {
  top: 44px;
}
/*
 * Webzine : end
 */


/*
 * 유용한정보_신용상식TIP : begin
 */

.container .title-desc {
  background-color: #f7f7f7;
  font-size: 12px;
  line-height: 16px;
  padding: 18px 22px;
  box-sizing: border-box;
  border-bottom: 1px solid #ebebeb;
}
.header + .container {
  top: 44px;
}
.container .question-title {
  display: block;
  padding: 22px 35px 20px 50px;
  font-size: 13px;
  line-height: 18px;
  color: #303030;
  background: url(../images/common/question_icon.png) no-repeat 23px 22px;
  background-size: 14px 16px;
  background-color: #f2f2f2;
  border-bottom: 1px solid #d0d0d0;
}
a.question-title:active {
  background-color: #d9d9d9;
}
.container.detail .question-title {
  border-bottom: 0;
  background-color: #f7f7f7;
}
.container.detail .contents {
  background-color: #f2f2f2;
  padding: 22px 22px;
  font-size: 12px;
  line-height: 16px;
}

/*
 * 유용한정보_신용상식TIP : end
 */


/*
 * 유용한정보_개인정보보호TIP : begin
 */

.container .contents .title {
  height: 38px;
  font-size: 15px;
  line-height: 38px;
  padding: 0 22px;
  color: #4f4f4f;
  border-bottom: 1px solid #d0d0d0;
}
.container .ordered-list {
  font-size: 0;
  padding-top: 18px;
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
}
.container .ordered-list li {
  padding: 7px 22px 18px 69px;
  font-size: 12px;
  /*line-height: 18px;*/
  background-repeat: no-repeat;
  background-position: 32px 0px;
  background-size: 26px 26px;
  position: relative;
  box-sizing: border-box;
  height: 44px;
  color: #636363;
}
.container .ordered-list li:nth-child(1) {background-image: url(../images/step/step_01.png);}
.container .ordered-list li:nth-child(2) {background-image: url(../images/step/step_02.png);}
.container .ordered-list li:nth-child(3) {background-image: url(../images/step/step_03.png);}
.container .ordered-list li:nth-child(4) {background-image: url(../images/step/step_04.png);}
.container .ordered-list li:nth-child(5) {background-image: url(../images/step/step_05.png);}
.container .ordered-list li:nth-child(6) {background-image: url(../images/step/step_06.png);}
.container .ordered-list li:last-child {
  padding-bottom: 0px;
}
.container .ordered-list li:after {
  content: '';
  display: block;
  width: 100%;
  height: 18px;
  background: url(../images/step/step_line.png) no-repeat;
  background-size: 26px 18px;
  position: absolute;
  left: 32px;
  top: 26px;
}
.container .ordered-list li:last-child:after {
  display: none;
}
.container .ordered-list li strong {
  color: #000;
}
.container .q-list li {
  position: relative;
}
.container .q-list li.folding em {
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/drop_arrow_icon.png) no-repeat;
  background-size: 22px 22px;
  display: block;
  width: 22px;
  height: 22px;
  position: absolute;
  right: 14px;
  top: 17px;
}
.container .q-list li.folding em.show {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}
.container .q-list li.folding .answer {
  display: none;
  padding: 22px 22px;
  background-color: #f7f7f7;
  font-size: 12px;
  line-height: 16px;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 359px) {
  .container .ordered-list li {
    font-size: 10px;
    padding-top: 9px;
    padding-left: 63px;
    background-position: 26px 0px;
    /*line-height: 22px;*/
  }
  .container .ordered-list li:after {
    left: 26px;
  }
}

/*
 * 유용한정보_개인정보보호TIP : end
 */



/*
 * 유용한정보_비금융정보신용평가반영 : begin
 */
.container.nonfinance {
  background-color: #f7f7f7;
}
.container.nonfinance .title-desc {
  border-bottom: 0;
  font-size: 11px;
}
.container .contents .summary-wrap {
  text-align: center;
  margin-bottom: 20px;
}
.container .contents .summary-wrap h2 {
  font-size: 13px;
  line-height: 15px;
  color: #4e84ff;
}
.container .contents .summary-wrap h3 {
  font-size: 10px;
  line-height: 11px;
  margin-top: 5px;
  color: #838383;
}
.container.nonfinance .contents h2 {
  padding-top: 0;
  height: 15px;
  font-size: 12px;
}
.container.nonfinance .contents h3 {
  padding-bottom: 0;
}
.summary-wrap ul {
  font-size: 0;
  padding: 0px 22px;
}
.summary-wrap ul li {
  display: inline-block;
  width: 25%;
  font-size: 10px;
  color: #838383;
  height: 70px;
}
.summary-wrap ul li img {
  display: block;
  margin: 13px auto;
  width: 31px;
  height: 31px;
}
.container .contents .detail-info {
  margin: 5px 22px 15px;
  font-size: 11px;
  color: #444;
}
.container .contents .detail-info li,
.container .contents .detail-info td {
  line-height: 16px;
}
.container .contents table.detail-info.contacts td:first-child {
  width: 36px;
}
.container .contents table.detail-info.documents {
  margin-top: 0;
}
.container .contents table.detail-info.documents th {
  height: 30px;
  background-color: #dddddd;
  vertical-align: middle;
  color: #444444;
  font-size: 11px;
  border: 1px solid #cccccc;
}
.container .contents table.detail-info.documents td {
  background-color: #efefef;
  color: #636363;
  font-size: 9px;
  line-height: 12px;
  padding: 6px;
  border: 1px solid #dddddd;
}
.container .contents table.detail-info.documents td:nth-child(1) {width: 24%;}
.container .contents table.detail-info.documents td:nth-child(2) {width: 45%;}
.container .contents table.detail-info.documents td:nth-child(3) {width: 31%;}
.container .contents h3 {
  padding: 5px 22px 10px;
  font-size: 11px;
}
.container .contents h3.info {
  padding: 0px 22px 22px;
}
.container .contents h3.info a {
	text-decoration: underline;
}
.container .contents h3 a {
  color: #4e84ff;
  font-weight: bold;
}
/*
 * 유용한정보_비금융정보신용평가반영 : end
 */



/*
 * 고객센터_공지사항 : begin
 */

.container .notice-list {}
.container .notice-item {
  display: block;
  /*padding: 16px 68px 16px 22px;*/
  padding: 16px 60px 16px 22px;
  /*font-size: 13px;*/
  font-size: 12px;
  line-height: 16px;
  color: #303030;
  background-color: #f2f2f2;
  border-bottom: 1px solid #d0d0d0;
  position: relative;
}
a.notice-item:active {
  background-color: #d9d9d9;
}
.container .notice-item .date {
  display: block;
  color: #838383;
  font-size: 12px;
  line-height: 12px;
  margin-top: 4px;
}
.container .notice-item em {
  display: block;
  width: 26px;
  height: 12px;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  background-color: #ff3642;
  border-radius: 10px;
  text-align: center;
  position: absolute;
  /*top: 31px;*/
  top: 16px;
  right: 22px;
  padding: 4px 0;
}
.container.detail .notice-item {
  padding-right: 90px;
  background-color: #f7f7f7;
}
.container.detail .notice-item .date {
  position: absolute;
  top: 18px;
  right: 22px;
}

/*
 * 고객센터_공지사항 : end
 */


/*
 * 고객센터_FAQ : begin
 */

.container .title-desc .contact {
  display: block;
  color: #0065cc;
  font-weight: bold;
  margin-top: 2px;
}

.nav-holder.faq-category {
  height: 52px;
  /*border-bottom: 1px solid #d0d0d0;*/
}
.nav-holder.faq-category .nav-list .nav-item {
  vertical-align: top;
}
.nav-holder.faq-category .nav-list .nav-item a {
  height: 52px;
  line-height: 18px;
}
.nav-holder.faq-category .nav-list .nav-item a {
  padding-top: 15px;
}
.nav-holder.faq-category .nav-list .nav-item a.wrapped {
  padding-top: 9px;
}
.nav-holder.faq-category + .container {
  top: 95px;
}
/* Information Panel > 이용약관 */
.nav-holder.faq-category + .container.term {
  top: 122px;
}
/*
 * 고객센터_FAQ : end
 */


/*
 * 휴대전화로 인증-통신사 선택 : begin
 */

#wrap.has-control .container {
  bottom: 53px;
}
#wrap.popup-full .header {
  height: 70px;
  background-color: #fff;
  box-sizing: border-box;
  border-bottom: 1px solid #eaeaea;
}
#wrap.popup-full .header h1 {
  font-size: 18px;
  line-height: 26px;
  white-space: normal;
}
#btn-close {
  display: block;
  width: 30px;
  height: 30px;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../images/common/action_icon_close.png) no-repeat;
  background-size: 30px 60px;
  position: absolute;
  top: 20px;
  right: 12px;
}
#btn-close:active {
  background-position-y: -30px;
}
#wrap.popup-full .header + .container {
  top: 70px;
/*   background-color: #fff; */
}
.container .progress-wrap {
  background-color: #f7f7f7;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
}
.container .progress {
  font-size: 0;
}
.container .progress li {
  display: inline-block;
  height: 47px;
  font-size: 14px;
  width: 46%;
  box-sizing: border-box;
  text-align: center;
}
.container .progress li:first-child {
  background: url(../images/progress/step_slash.png) no-repeat right;
  background-size: 28px 47px;
  padding-right: 28px;
  width: 52%;
}
.container .progress li span {
  height: 47px;
  display: inline-block;
  line-height: 50px;
  font-weight: bold;
  color: #4f4f4f;
}
.container .progress li span > i {
  float: left;
  width: 23px;
  background-repeat: no-repeat;
  background-size: 23px 23px;
  height: 47px;
  background-position-y: center;
  margin-right: 10px;
}
.container .progress li.selected span {
  color: #4b83ff;
}
.container .progress li:nth-child(1) span > i {background-image: url(../images/progress/list_title_number_01_d.png);}
.container .progress li:nth-child(1).selected span > i {background-image: url(../images/progress/list_title_number_01.png);}
.container .progress li:nth-child(2) span > i {background-image: url(../images/progress/list_title_number_02_d.png);}
.container .progress li:nth-child(2).selected span > i {background-image: url(../images/progress/list_title_number_02.png);}
.container .section h2 {
  height: 38px;
  padding: 15px 19px 10px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 16px;
  color: #4f4f4f;
  font-weight: bold;
}
.container .select-telecom {
  font-size: 0;
  padding: 0 11px;
}
.container .select-telecom li {
  display: inline-block;
  width: 25%;
  height: 100px;
  /*border: 1px solid #f2f2f2;*/
  box-sizing: border-box;
  background-color: #fff;
}

/* telecom-select input[radio] */

.container .select-telecom li input[type=radio] + label {
  display: block;
  height: 100px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
}
.container .select-telecom li input[type=radio]:checked + label {
  border: 1px solid #588bff;
}
.container .select-telecom li input[type=radio] + label > i {
  display: block;
  margin: 7px auto 0;
  width: 69px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 69px 60px;
  float: none;
}
.container .select-telecom li input[type=radio] + label > span {
  text-align: center;
  font-size: 12px;
  float: none;
  margin-left: 0;
}
#radio-skt + label > i {background-image: url(../images/telecom/logo_s.png);}
#radio-skt:checked + label > i {background-position-y: 0;}
#radio-kt + label > i {background-image: url(../images/telecom/logo_k.png);}
#radio-kt:checked + label > i {background-position-y: 0;}
#radio-lgt + label > i {background-image: url(../images/telecom/logo_l.png);}
#radio-lgt:checked + label > i {background-position-y: 0;}
#radio-mvno + label > i {background-image: url(../images/telecom/logo_m.png);}
#radio-mvno:checked + label > i {background-position-y: 0;}
.container .select-mvno-telecom {
  font-size: 0;
  padding: 0 11px;
}
.container .select-mvno-telecom li {
  display: inline-block;
  width: 33.33%;
  height: 100px;
  /*border: 1px solid #f2f2f2;*/
  box-sizing: border-box;
  background-color: #fff;
}

/* telecom-select input[radio] */

.container .select-mvno-telecom li input[type=radio] + label {
  display: block;
  height: 100px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
}
.container .select-mvno-telecom li input[type=radio]:checked + label {
  border: 1px solid #588bff;
}
.container .select-mvno-telecom li input[type=radio] + label > i {
  display: block;
  margin: 7px auto 0;
  width: 69px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: 69px 60px;
  float: none;
}
.container .select-mvno-telecom li input[type=radio] + label > span {
  text-align: center;
  font-size: 12px;
  float: none;
  margin-left: 0;
}

/*#radio-mvno-skt + label > i {background-image: url(../images/telecom/logo_s.png);}*/
/*#radio-mvno-kt + label > i {background-image: url(../images/telecom/logo_k.png);}*/
/*#radio-mvno-lgt + label > i {background-image: url(../images/telecom/logo_l.png);}*/

.container .terms-agree {
  font-size: 0;
  padding: 0 11px;
}
.container .terms-agree li {
  height: 59px;
  line-height: 32px;
  border-bottom: 1px solid #f2f2f2;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 12px;
  color: #303030;
  padding: 17.5px 11px;
}
.container .terms-agree li input[type=checkbox] + label {
  margin-left: 11px;
}
.container .terms-agree li input[type=checkbox] + label > span {
  font-size: 11px;
  margin-left: 10px;
  line-height: 20px;
}
.container .terms-agree li #check-terms-all + label {
  margin-left: 0px;
}
.container .terms-agree li #check-terms-all + label > span {
  margin-left: 10px;
  font-weight: bold;
  font-size: 12px;
  line-height: 20px;
}
.container .terms-agree li button {
  float: right;
  font-size: 11px;
  color: #4e84ff;
  border: 1px solid #4e84ff;
  width: 63px;
  height: 23px;
  line-height: 23px;
}
.container .terms-agree li button:active {
  background-color: #4b83ff;
  color: #fff;
}
.container .terms-agree li.sub-title
{
	background-color: #f7f7f7;
    line-height: normal;
    height: 30px;
    padding: 6px 11px;
    font-weight: bold;
}
.container .section.bottom-link {
  padding: 10px 11px 27px;
  text-align: right;
}
.container .section .link {
  font-size: 12px;
  color: #0077ca;
}
#wrap.has-control .control {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #fff;
}
#wrap.has-control .control a {
  display: block;
  width: 100%;
  height: 53px;
  background-color: #4b83ff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 53px;
}
#wrap.has-control .control a:active {
  background-color: #2850a8;
}
@media screen and (max-width: 400px) {
  .container .progress li:first-child {
     width: 54%;
  }
}
@media screen and (min-width: 401px) and (max-width: 540px) {
  .container .progress li:first-child {
    width: 53%;
  }
}

/*
 * 휴대전화로 인증-통신사 선택 : end
 */


/*
 * 휴대전화로 인증-인증번호 확인 : begin
 */

.container .section h2.telecom {
  text-align: right;
  height: 65px;
  padding-top: 10px;
  line-height: 45px;
}
.container .section h2.telecom .telecom-logo {
  float: left;
  height: 45px;
}
.container .section .contents .block-wrap {
  margin: 0 11px;
  background-color: #fff;
}
.container .section .contents .block {
  padding: 17px 17px 3px;
}
.container .section .contents .block-wrap .h-item {
  padding: 0 0 7px;
  font-size: 0;
}
.container .section .contents .block-wrap .h-item .single {
  width: 100%;
}
.container .section .contents .block-wrap .h-item select {
  width: 33%;
  margin-right: 1%;
}
.container .section .contents .block-wrap .h-item label {
  width: 24%;
  margin-left: 8%;
  margin-right: 2%;
  /* to align vertically with select */
  float: left;
  margin-top: 5px;
}
.container .section .contents .block-wrap .h-item select + input[type=tel] {
  width: 66%;
}
.container .section .contents .block-wrap .h-item select + select + select {
  width: 32%;
  margin-right: 0;
}
.container .section .contents .block-wrap .h-item label + select {
  width: 32%;
  margin-right: 0;
}
.container .section .contents .block-wrap button {
  width: 100%;
  height: 43px;
  background-color: #8fb1ff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 43px;
  border: 0;
}
.container .section .contents .block-wrap button:active {
  background-color: #4a66a6;
}
.container .section h2.empty {
  height: 15px;
  padding: 0;
}

/*
 * 휴대전화로 인증-인증번호 확인 : end
 */


/*
 * 500_종합신용관리 : begin
 */

#wrap.has-control.payment .container {
  bottom: 106px;
}
#wrap.has-control.payment.device-ios .container {
  bottom: 0;
}
.header .btn-sample {
  position: absolute;
  top: 10px;
  right: 22px;
  display: block;
  width: 63px;
  height: 22px;
  border: 1px solid #4e84ff;
  color: #4e84ff;
  font-size: 11px;
  line-height: 24px;
  text-align: center;
}
.header .btn-sample:active {
  color: #fff;
  background-color: #4e84ff;
}
.contents.service-info .summary {
  background-color: #fff;
  padding: 0 29px;
  height: 100px;
  text-align: center;
  border-bottom: 1px solid #dddddd;
}
.contents.service-info .summary h2 {
  font-size: 28px;
  color: #313131;
  height: 48px;
  line-height: 32px;
  font-weight: normal;
}
.contents.service-info .summary h3 {
  font-size: 12px;
  color: #a4a4a4;
  padding-top: 6px;
  line-height: 16px;
}
.contents.service-info .summary-list {
  background-color: #fff;
  font-size: 0;
}
.contents.service-info .summary-list li {
  display: inline-block;
  height: 122px;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-size: 40px 40px;
  background-position: center 25px;
  /*	color: #636363;*/
  color: #a4a4a4;
  font-size: 13px;
  padding-top: 73px;
  text-align: center;
}
.contents.service-info.service1 .summary-list li {
  width: 33.3%;
}
.contents.service-info.service1 .summary-list li:nth-child(1) {background-image: url(../images/service/service_01_01.png);}
.contents.service-info.service1 .summary-list li:nth-child(2) {background-image: url(../images/service/service_01_02.png);}
.contents.service-info.service1 .summary-list li:nth-child(3) {background-image: url(../images/service/service_01_03.png);}
.contents.service-info.service2 .summary-list li, .contents.service-info.service3 .summary-list li {
  width: 25%;
}
.contents.service-info.service2 .summary-list li:nth-child(1) {background-image: url(../images/service/service_02_01.png);}
.contents.service-info.service2 .summary-list li:nth-child(2) {background-image: url(../images/service/service_02_02.png);}
.contents.service-info.service2 .summary-list li:nth-child(3) {background-image: url(../images/service/service_02_03.png);}
.contents.service-info.service2 .summary-list li:nth-child(4) {background-image: url(../images/service/service_02_04.png);}
.contents.service-info.service3 .summary-list li:nth-child(1) {background-image: url(../images/service/service_03_01.png);}
.contents.service-info.service3 .summary-list li:nth-child(2) {background-image: url(../images/service/service_03_02.png);}
.contents.service-info.service3 .summary-list li:nth-child(3) {background-image: url(../images/service/service_03_03.png);}
.contents.service-info.service3 .summary-list li:nth-child(4) {background-image: url(../images/service/service_03_04.png);}
.contents.service-info .section {
  padding-bottom: 15px;
}
/*
.contents.service-info .summary-table {
  width: 100%;
  height: 255px;
  padding: 0 11px;
  box-sizing: border-box;
  display: block;
}
.contents.service-info.service2 .summary-table {
  height: 170px;
}
.contents.service-info .summary-table li {
  width: 33.3%;
  float: left;
  height: 85px;
  box-sizing: border-box;
  padding: 15px 15px;
  font-size: 13px;
  color: #fcfcfc;
}
.contents.service-info .summary-table li i {
  font-size: 9px;
  color: #f0f0f0;
}
.contents.service-info.service1 .summary-table li:nth-child(1) {background-color: #36d9ad;}
.contents.service-info.service1 .summary-table li:nth-child(2) {background-color: #30bf99;}
.contents.service-info.service1 .summary-table li:nth-child(3) {background-color: #29a685;}
.contents.service-info.service1 .summary-table li:nth-child(4) {background-color: #30bf99;}
.contents.service-info.service1 .summary-table li:nth-child(5) {background-color: #29a685;}
.contents.service-info.service1 .summary-table li:nth-child(6) {background-color: #238c70;}
.contents.service-info.service1 .summary-table li:nth-child(7) {background-color: #29a685;}
.contents.service-info.service1 .summary-table li:nth-child(8) {background-color: #238c70;}
.contents.service-info.service1 .summary-table li:nth-child(9) {background-color: #1d735c;}
.contents.service-info.service2 .summary-table li:nth-child(1) {background-color: #43c2d9;}
.contents.service-info.service2 .summary-table li:nth-child(2) {background-color: #3babbf;}
.contents.service-info.service2 .summary-table li:nth-child(3) {background-color: #3395a6;}
.contents.service-info.service2 .summary-table li:nth-child(4) {background-color: #3babbf;}
.contents.service-info.service2 .summary-table li:nth-child(5) {background-color: #3395a6;}
.contents.service-info.service2 .summary-table li:nth-child(6) {background-color: #2b7e8c;}
.contents.service-info.service3 .summary-table li:nth-child(1) {background-color: #d8c481;}
.contents.service-info.service3 .summary-table li:nth-child(2) {background-color: #bfad73;}
.contents.service-info.service3 .summary-table li:nth-child(3) {background-color: #a69663;}
.contents.service-info.service3 .summary-table li:nth-child(4) {background-color: #bfad73;}
.contents.service-info.service3 .summary-table li:nth-child(5) {background-color: #a69663;}
.contents.service-info.service3 .summary-table li:nth-child(6) {background-color: #8c7f54;}
.contents.service-info.service3 .summary-table li:nth-child(7) {background-color: #a69663;}
.contents.service-info.service3 .summary-table li:nth-child(8) {background-color: #8c7f54;}
.contents.service-info.service3 .summary-table li:nth-child(9) {background-color: #736845;}*/
.contents.service-info .summary-table-wrap {
  width: 100%;
  /* height: 255px; */
  padding: 0 11px;
  box-sizing: border-box;
}
.contents.service-info .summary-table {
  width: 100%;
  height: 255px;
  /* padding: 0 11px; */
  box-sizing: border-box;
  display: block;
  box-shadow: 2px 2px 2px #dddddd;
}
.contents.service-info.service2 .summary-table {
  height: 170px;
}
.contents.service-info .summary-table li {
  width: 33.3%;
  float: left;
  height: 85px;
  box-sizing: border-box;
  padding: 15px 15px;
  font-size: 13px;
  /* color: #fcfcfc; */
  color: #7e7e7e;
  background-color: #fff;
  border-right: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
.contents.service-info.service1 .summary-table li:nth-child(3) {border-right: 0;}
.contents.service-info.service1 .summary-table li:nth-child(6) {border-right: 0;}
.contents.service-info.service1 .summary-table li:nth-child(9) {border-right: 0;}
.contents.service-info.service1 .summary-table li:nth-child(7) {border-bottom: 0;}
.contents.service-info.service1 .summary-table li:nth-child(8) {border-bottom: 0;}
.contents.service-info.service1 .summary-table li:nth-child(9) {border-bottom: 0;}
.contents.service-info .summary-table li i {
  font-size: 9px;
  color: #c5c5c5;
}

.contents.service-info .section-folding>h2 {
  background-color: #fff;
  width: 100%;
  height: 60px;
  padding-top: 22px;
  padding-right: 0;
  font-size: 16px;
  line-height: 16px;
}
.contents.service-info .section-folding h2 em {
  float: right;
  background: url(../images/common/input_ico_dropdown.png) no-repeat right;
  background-size: 35px 14px;
  display: block;
  width: 35px;
  height: 14px;
}
.contents.service-info .section-folding h2 em.show {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}
.contents.service-info .section-folding .section {
  display: none;
}
.contents.service-info .section-folding .section .section-table {
  padding: 0 11px;
}
.contents.service-info .section-folding .section table {
  width: 100%;
  border: 1px solid #eee;
  white-space: normal;
}
.contents.service-info .section-folding .section table tr {
  border-bottom: 1px solid #eee;
}
.contents.service-info .section-folding .section table th {
  font-size: 12px;
  background: #e7e7e7;
  text-align: center;
  vertical-align: middle;
  color: #636363;
  padding: 8px;
}
.contents.service-info .section-folding .section table td {
  font-size: 10px;
  background: #fff;
  vertical-align: middle;
  padding: 10px 8px 6px 8px;
  border-left: 1px solid #eee;
  color: #636363;
  line-height: 12px;
}
.contents.service-info .section-folding .section table td:nth-child(odd) {
  text-align: center;
  width: 32px;
}
.contents.service-info .section-folding .section table tr:first-child {
  border-bottom: none;
}
.contents.service-info .section-folding .section table td:first-child {
  border-left: none;
}
.contents.service-info .section-folding .section table th:first-child {
  border-right: 1px solid #d9d9d9;
}
.contents.service-info .section-folding .section .info-style-border-bottom {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}
.contents.service-info .info-type1 {
  background-color: #f2f2f2;
  padding: 15px 19px;
  font-size: 11px;
}
.contents.service-info .section .info-type1 {
  padding-bottom: 0;
}
.contents.service-info .info-type1.info-style-border-bottom {
  padding: 0;
  margin: 15px 11px 0;
}
.contents.service-info .info-type1.info-style-border-bottom .info-list {
  padding: 0 8px;
}
.contents.service-info .info-list li {
  padding-left: 8px;
  background: url(../images/common/list_style.png) no-repeat 0 6px;
  background-size: 2px 2px;
  font-size: 11px;
}
.contents.service-info .info-list .li-color-red {
  padding-left: 8px;
  background: url(../images/common/list_style_red.png) no-repeat 0 6px;
  background-size: 2px 2px;
}
.contents.service-info .info-type1 li,
.contents.service-info .info-type2 li {
  white-space: normal;
  color: #7e7d7d;
  line-height: 16px;
}
.contents.service-info .info-type2 {
  background-color: #e9e9e9;
  padding: 15px 19px;
  font-size: 11px;
}
.contents.service-info .info-type1 .li-color-red,
.contents.service-info .info-type2 .li-color-red {
  color: #ec0000;
}
#wrap.has-control.payment .amount-info-wrap,
#wrap.has-control.payment .control-info-wrap {
  height: 52px;
  border-top: 1px solid #ddd;
  position: relative;
  background-color: #fff;
}
#wrap.has-control.payment .contents.service-info.service2 .amount-info-wrap {
  height: 94px;
}
/* for iOS */
#wrap.has-control.payment.device-ios .amount-info-wrap {
  height: 82px;
}
#wrap.has-control.payment.device-ios .contents.service-info.service2 .amount-info-wrap {
  height: 124px;
}
#wrap.has-control.payment.device-ios .amount-info-wrap h3 {
  text-align: right;
  color: #ec0000;
}

#wrap.has-control.payment .amount-info,
#wrap.has-control.payment .control-info {
  line-height: 62px;
  display: none;
  position: relative;
}
#wrap.has-control.payment.terms .control-info {
	display: block;
}
#wrap.has-control.payment .amount-info {
  height: 29px;
  margin: 12px 0;
}
#wrap.has-control.payment .amount-info {
  display: list-item;
}
#wrap.has-control.payment .contents.service-info.service2 .amount-info {
  position: relative;
  height: 29px;
  margin: 12px 0;
}
#wrap.has-control.payment .amount-info .type,
#wrap.has-control.payment .control-info .type {
  font-size: 11px;
  height: 20px;
  border-radius: 10px;
  box-sizing: border-box;
  width: 78px;
  text-align: center;
  position: absolute;
  right: 130px;
  top: 16px;
  line-height: 20px;

/*   border: 1px solid #4b83ff; */
/*   color: #4b83ff; */
  border: 1px solid #999999;
  background-color: #999999;
  color: #fff;
}
#wrap.has-control.payment .amount-info .type {
  top: inherit;
  bottom: 5px;
}
#wrap.has-control.payment .amount-info .monthly,
#wrap.has-control.payment .control-info .monthly {
  font-size: 11px;
  position: absolute;
  top: 20px;
  right: 112px;
  color: #636363;
  line-height: 15px;
}
#wrap.has-control.payment .amount-info .monthly {
  top: inherit;
  bottom: 6px;
  line-height: normal;
}
#wrap.has-control.payment .amount-info .amount,
#wrap.has-control.payment .control-info .amount {
  font-size: 28px;
  position: absolute;
  right: 26px;
  top: 4px;
  color: #4a4a4a;
  line-height: 41px;
}
#wrap.has-control.payment .amount-info .amount {
  top: inherit;
  bottom: 0;
  line-height: 28px;
}
#wrap.has-control.payment .amount-info .currency,
#wrap.has-control.payment .control-info .currency {
  font-size: 11px;
  position: absolute;
  right: 11px;
  top: 20px;
  color: #a6a6a6;
  line-height: 15px;
}
#wrap.has-control.payment .amount-info .currency {
  top: inherit;
  bottom: 6px;
  line-height: normal;
}
#wrap.has-control.payment .control-info .select-type {
  margin-left: 11px;
  padding-right: 12px;
  border-right: 1px solid #e5e5e5;
  position: absolute;
  top: 12px;
  height: 29px;
  line-height: 39px;
}
#wrap.has-control.payment .control-info .select-type input[type=radio] + label > span {
  margin-left: 6px;
}
#wrap.has-control.payment .control-info .select-type #radio-monthly+label {
  margin-right: 12px;
}
@media screen and (max-width: 359px) {
  #wrap.has-control.payment .control-info .select-type input[type=radio] + label > span {
    font-size: 10px;
  }
  #wrap.has-control.payment .control-info .select-type {
    padding-right: 14px;
  }
  #wrap.has-control.payment .control-info .monthly {
    font-size: 10px;
    right: 100px;
    top: 21px;
  }
  #wrap.has-control.payment .control-info .amount {
    font-size: 24px;
    top: 7px;
    line-height: 37px;
  }
  #wrap.has-control.payment .control-info .currency {
    font-size: 10px;
    top: 21px;
  }
  .contents.service-info .summary-list li {
    font-size: 11px;
  }
  .contents.service-info .summary-table li {
    font-size: 12px;
    padding: 8px 8px;
  }
  .contents.service-info .summary h2 {
    font-size: 24px;
  }
  .contents.service-info .summary h3 {
    font-size: 10px;
  }
  .contents.service-info .section-folding .section table {
    white-space: pre-line;
  }
}

/*
 * 500_종합신용관리 : end
 */


/*
 * 503_샘플보기 : begin
 */

#wrap.sample-view .container .section {
  height: 42px;
  padding: 13px 0;
  box-sizing: border-box;
  position: relative;
}
#wrap.sample-view .container .section span {
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
  height: 13px;
  top: 13px;
  line-height: 16px;
}
#wrap.sample-view .container #carousel {
  margin: 0 10px;
}
#wrap.sample-view .container #carousel .slide-list {
  margin-bottom: 15px;
}

@media screen and (max-height: 480px) {
  #wrap.popup-full .header {
    height: 50px;
  }
  #wrap.popup-full .header h1 {
    white-space: nowrap;
  }
  #btn-close {
    top: 10px;
  }
  #wrap.popup-full .header + .container {
    top: 50px;
  }
  #wrap.sample-view .container #carousel {
    margin: 0 24px;
  }
  #wrap.sample-view .container #carousel .slide-list {
    margin-bottom: 5px;
  }
}

/*
 * 503_샘플보기 : end
 */


/*
 * 504_결제하기_이용약관_종합신용관리 : begin
 */

#wrap.has-control.payment.terms .container {
  bottom: 106px;
}
#wrap.has-control.terms .container .section {
  position: absolute;
  top: 48px;
  bottom: 0px;
  left: 0;
  right: 0;
}
#wrap.has-control.payment.terms .control-info-wrap {
  height: 52px;
}
#wrap.has-control.payment.terms .control-info {
  line-height: 56px;
  float: none;
  padding: 0 30px;
}
.terms-wrap {
  position: absolute;
  top: 38px;
  bottom: 15px;
  left: 11px;
  right: 11px;
}
.terms-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/*
 * 504_결제하기_이용약관_종합신용관리 : end
 */


/*
 * 505_결제하기_결제정보 : begin
 */

.container .select-payment {
  font-size: 0;
  padding: 0 0px;
}
.container .select-payment li {
  display: inline-block;
  width: 50%;
  height: 90px;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
}

/* telecom-select input[radio] */

.container .select-payment li input[type=radio] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.container .select-payment li input[type=radio] + label {
  display: block;
  height: 90px;
  box-sizing: border-box;
  border: 1px solid #f2f2f2;
}
.container .select-payment li input[type=radio]:checked + label > span {
  color: #939393;
}
.container .select-payment li input[type=radio]:checked + label:after {
  content: '';
  background: url(../images/payment/pay_ico_select.png) no-repeat;
  background-size: 61px 63px;
  display: block;
  width: 61px;
  height: 63px;
  position: absolute;
  top: 14px;
  right: 50px;
}
.container .select-payment li input[type=radio] + label > i {
  position: absolute;
  top: 14px;
  right: 30px;
  background-repeat: no-repeat;
  background-size: 59px 63px;
  display: block;
  width: 59px;
  height: 63px;
  background-position-y: 0;
}
.container .select-payment li input[type=radio] + label > span {
  position: absolute;
  top: 14px;
  left: 30px;
}
#radio-phone + label > i {
  background-image: url(../images/payment/pay_ico_phone.png);
}
#radio-card + label > i {
  background-image: url(../images/payment/pay_ico_card.png);
}
.section .payment-info li {
  padding: 12px 30px;
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
  font-size: 12px;
  color: #858585;
}
.section .payment-info li.notice {
  background-color: #fbfbfb;
  color: #838383;
}
.section .payment-info li.notice strong {
  color: #ec0000;
  line-height: 14px;
}
.section .payment-info li .info-value {
  position: absolute;
  top: 12px;
  right: 30px;
  text-align: right;
  font-weight: bold;
  color: #000;
}
.section .payment-info li em {
  color: #b0b0b0;
}
.section.notice {
  color: #838383;
  padding: 15px 19px 10px;
  font-size: 12px;
  line-height: 14px;
}
@media screen and (max-width: 359px) {
  .container .terms-agree li #check-terms-all + label > span {
    font-size: 11px;
    line-height: 21px;
  }
  .container .terms-agree li input[type=checkbox] + label > span {
    font-size: 10px;
    line-height: 21px;
  }
  .container .terms-agree li button {
    font-size: 10px;
    width: 50px;
  }
}

/*
 * 505_결제하기_결제정보 : end
 */


/*
 * 505_결제하기_결제완료 : begin
 */

.section.payment-completed {
  background-color: #fff;
  text-align: center;
  position: relative;
  height: 215px;
}
.section.payment-completed img {
  width: 150px;
  height: 107px;
  margin-top: 28px;
}
.section.payment-completed div {
  position: absolute;
  top: 124px;
  width: 100%;
}
.section.payment-completed div h3 {
  color: #4b83ff;
  font-size: 18px;
  font-weight: bold;
}
.section.payment-completed div span {
  color: #959595;
  font-size: 11px;
  line-height: 14px;
  margin-top: 14px;
  display: block;
}

.container.alert {
	background-color: #fff;
}
.container.alert .section.payment-completed {
	position: absolute;
	top: 50%;
	margin-top: -106px;
	width: 100%;
}
.container.alert .section.payment-completed div h3 {
  color: #fd4481;
}

/*
 * 505_결제하기_결제완료 : end
 */

 /*
  * 약관상세 (SIREN24_회원가입_약관.html)
  */
.container.detail.term {
  background-color: #fff;
}
.container.detail.term .contents {
  background-color: #fff;
}
.container.detail.term .contents h5 {
  margin-bottom: 5px;
  font-weight: bold;
}
.container.detail.term .contents p,
.container.detail.term .contents ol {
  margin-bottom: 10px;
}


 /*
  * 본인인증_선택
  */
.container h2.info {
	padding: 17px 22px;
	font-size: 12px;
	line-height: 15px;
	color: #636363;
	background-color: #f7f7f7;
}
.container.certification {
	background-color: #fff;
}
.container.certification .block-wrap {
  margin: 13px 11px 0;
  background-color: #f7f7f7;
}
.container.certification .block-wrap .block {
	padding: 21px 21px;
}
.container.certification .block-wrap .block h3 {
	font-size: 17px;
	color: #4f4f4f;
}
.container.certification .block-wrap .block .h-item {
	margin-top: 8px;
	font-size: 12px;
}
.container.certification .block-wrap .block .h-item a {
	color: #639ed7;
	font-weight: bold;
}
a.btn-b2 {
	display: block;
  width: 100%;
  height: 43px;
  background-color: #4b83ff;
  text-align: center;
  font-size: 14px;
  color: #fff;
  line-height: 43px;
  border: 0;
}
.container.certification ul.guide {
	padding: 12px 22px;
}
.container.certification ul.guide li {
	padding-bottom: 8px;
	font-size: 12px;
}


/* SCI 개인정보 취급방침 */
.container.detail.term iframe {
	padding: 22px 22px;
	box-sizing: border-box;
	width: 100%;
	height: 99%;
}


/* 서비스소개 리뉴얼--------------------------- */
/* 종합신용관리 메인 */
.bannerContainer {
  background-color: #FFFFFF;
  margin-top: 10px;
  margin-bottom: 10px;
}
.bannerWrap {
  display: flex;
  justify-content: center;
}
.bannerBox {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: space-between;
  background-color: rgb(251,251,251);
  border-radius: 24px;
  height: 150px;
  width: 73%;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 6%;
  padding-right: 6%;
}
.premiumBoxWrap {
  display: flex;
  justify-content: center;
}
.premiumBox {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: space-between;
  width: 85%;
  margin-bottom: 15px;
}
.premiumBox button {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: space-around;
  width: 100%;
  border: none;
}
.premiumBox .left {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  height: 197px;
  border: 2px solid #F0F0F0;
  border-style: solid;
  border-radius: 60px 24px 24px 24px;
  transform: translateZ(0);
  padding-left: 6%;
  padding-right: 6%;
}
.premiumBox .right {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  height: 197px;
  border: 2px solid #F0F0F0;
  border-style: solid;
  border-radius: 24px 24px 60px 24px;
  transform: translateZ(0);
  padding-left: 6%;
  padding-right: 6%;
}
.iconWrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.plusIcon {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  justify-content: center;
  position: absolute;
  padding-bottom: 5px;
  top: 26%;
  z-index: 1000;
  width: 30px;
  height: 25px;
  background-color: #ACACAC;
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  border-radius: 10px 10px 10px 10px;
}
.one {
  display: flex;  
  justify-content: center;
  align-items: baseline;
  padding-top: 45px;
  padding-bottom: 25px;
  height: 45px;
  margin-left: 5px;
}
.one div:nth-child(2) {
  margin-left: 7px;
}
.one img {
  width: 8px;
  height: 14px;
}
.two {
  width: 40px;
  height: 40px;
}
.plusIcon {
  display: flex;
  align-items: center;
}
.bannerTitlePre {
  color: #4F4F4F;
  font-weight: bolder;
  text-align: center;
}
.top1 {
  margin-top: 30px;
}
.bottom1 {
  margin-bottom: 30px;
}

.bannerBoxImgWrap {
  display: flex;
  align-items: center;
}

.bannerBoxImgWrap div:first-child {
  padding-right: 10px;
}

.bannerBoxImgWrap img {
  width: 50px;
}

.bannerTitle {
  color: #4F4F4F;
  font-size: 1.2rem;
  font-weight: bolder;
  white-space: normal;
}

.bannerTxt {
  font-size: 0.85rem;
  color: #666666;
  padding-top: 4px;
  white-space: normal;
}
/* 종합적인 신용관리 */
.totalContainer {
  background-color: #FFFFFF;
  width: 100%;
  height: auto;
  padding-bottom: 20px;
}
.mainSection {
  display: flex;
  position: relative;
  height: 180px;
  background-color: #EFFEF9;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
.mainSection.colorVer2 {
  background-color: #EAFAFF;
}
.mainSection.colorVer3 {
  background-color: #F5F7FF;
}
.mainSection img {
  width: 45px;
  height: 45px;
  padding-top: 45px;
}

.imgColorVer1 {
  display: none;
}

.imgColorVer2 {

}
 
.mainImg {
  padding-right: 9%;
}

.totalTxtWrap {
  padding-right: 5%;
  width: 70%;
}

.totalTitle {
  /* font-size: 1.75rem; */
  font-size: 1.55rem;
  letter-spacing: -2px;
  font-weight: bolder;
  padding-bottom: 15px;
  padding-left: 9%;
}

.totalTxt {
  width: 85%;
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  color: #4F4F4F;
  padding-left: 9%;
  white-space: normal;
}

.subBannerWrap {
  display: flex;
  justify-content: left;
  padding-top: 10px;
  padding-bottom: 20px;
  padding-left: 7%;
  padding-right: 5%;
}

.subBannerImg {
  width: 60px;
}

.subBannerTxtWrap {
  width: 75%;
  white-space: normal;
  /* width: 305px; */
  padding-left: 20px;
}

.subInfoTitleWrap {
  padding-top: 30px;
  display: flex;
  justify-content: left;
  padding-left: 7%;
}

.sublineWrap {
  width: 91%;
}

.infoSection hr {
  border: 0;
  width: 100%;
  height: 0.8px;
  background: #C0C9CF;
  align: left;
}

.subInfoTitle {
  color: #67BAA2;
  font-weight: bolder;
  font-size: 1.2rem;
  letter-spacing: -1px;
  width: 100%;
  padding-bottom: 6px;
}

.subInfoTitle.colorVer2 {
  color: #79AED0;
}

.subInfoTitle.colorVer3 {
  color: #758DDB;
}

.subBannerTitle {
  color: #4F4F4F;
  font-weight: bolder;
  font-size: 1rem;
}

.subBannerTxt {
  color: #666666;
  font-size: 0.85rem;
  padding-top: 5px;
}

.subBannerImg2 {
  width: 16px;
}

.subBannerWrap2 {
  display: flex;
  justify-content: left;
  padding-top: 10px;
  padding-bottom: 8px;
  padding-left: 7%;
  padding-right: 5%;
}

.subBannerTxtWrap2 {
  padding-left: 8px;
  width: 90%;
  white-space: normal;
  /* width: 360px; */
}

.subBannerTxt2 {
  color: #666666;
  font-size: 0.85rem;
  
}

.subBannerTxt2 li {
  list-style-type:disc;
  color: #666666;
  font-size: 0.85rem;
  margin-left: 18px;
}

.subBannerTxt3 {
  color: #666666;
  font-size: 0.88rem;
  font-weight: bolder;
  padding-bottom: 5px;
}

.subTableWrap {
  display: flex;
  justify-content: center;
}

.subTable {
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: relative;
  background-color: rgb(251,251,251);
  margin-left: 7%;
  margin-right: 7%;
  width: 100%;
  border-radius: 24px;
  border-collapse: separate;
  margin-top: 10px;
  padding: 18px 22px 15px 22px;
  white-space: normal;
}

.subTable thead td{
  border-bottom: #C0C9CF solid 2px;
  font-size: 0.85rem;
  font-weight: bolder;
  padding-bottom: 10px;
}

.subTable thead td:first-child {
  padding-left: 8%;
  width: 25%;
}

.subTable thead td:last-child {
  padding-left: 32%;
  width: 60%;
}

.subTable tbody td{
  align-content: center;
  border-top: #C0C9CF solid 1px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 6%;
}

.subTable tbody td:first-child {
  color: #666666;
  font-weight: bold;
  font-size: 0.8rem;
}

.subTable tbody td:last-child {
  color: #777777;
  font-size: 0.8rem;
  padding-right: 15px;
}

.clauseWrap {
  padding: 0px 30px 0px 30px;
  width: 86%;
}

.clauseWrap ul li {
  white-space: normal;
  padding: 5px 10px 10px 10px;
  font-size: 0.7rem;
  line-height: 17px;
}

.clauseWrap hr {
  border: 0;
  width: 100%;
  height: 2px;
  background: #C0C9CF;
  box-align:left;
}

#clauseId {
  background-color: #FFFFFF;
}

#clauseId h2 {
  font-size: 0.75rem;
  font-weight: bolder;
  color: #282C2F;
  padding-left: 30px;
}

#clauseId li {
  padding-bottom: 20px;
}

#clauseContainer {
  margin-top: 15px;
}
