@charset 'utf-8';
/**
 * 1. 테두리를 기준으로 크기 설정 
 * 2.  iOS와 IE에서 텍스트 크기 자동 조절 안되도록 
 */
* {
  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 {
  /*20240731 html,body 정리*/
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 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;
}
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: 300;
  src: local('Noto Sans Light'),
    local('NotoSans-Light') url(../fonts/NotoSansKR-Light-Hestia.woff)
      format('woff');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 400;
  src: local('Noto Sans Regular'), local('NotoSans-Regular'),
    url(../fonts/NotoSansKR-Regular-Hestia.woff) format('woff');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 500;
  src: local('Noto Sans Medium'), local('NotoSans-Medium'),
    url(../fonts/NotoSansKR-Medium-Hestia.woff) format('woff');
}
@font-face {
  font-family: 'NotoSans';
  font-style: normal;
  font-weight: 700;
  src: local('Noto Sans Bold'), local('NotoSans-Bold'),
    url(../fonts/NotoSansKR-Bold-Hestia.woff) format('woff');
}
* {
  font-family: 'NotoSans', 'Helvetica Neue', 'Apple SD Gothic Neo', arial,
    '나눔고딕', 'Nanum Gothic', '돋움', 'Dotum', Tahoma, 'Geneva', sans-serif;
  font-weight: 400;
}
/* Layout */
/*20240731 wrap 화면 사이즈 조정*/
#wrap {
  /* position: fixed;
    top: 0;
    left: 0; */
  min-width: 320px;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  height: 100vh;
  width: 100vw;
  height: -webkit-fill-available;
  height: fill-available;
  background-color: #fff;
  overflow: hidden;
  /* 20240805
    display: flex;
    flex-direction: column; */
  font-size: 16px;
  font-weight: 300;
  color: #1c1c25;
  letter-spacing: -0.75px;
}
#wrap #header {
  /* 20240805
     position: relative;
    flex: 0 1 auto; */
  width: 100%;
  margin-bottom: auto;
}
#wrap #contents {
  /* 20240805  flex: 1; */
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /*  20240805 
    padding: 30px 20px 10px; >  padding: 70px 20px 10px;*/
  padding: 70px 20px 90px;
  height: 100%;
  /*     20240805
    margin-top: 40px;
    margin-bottom: 70px;*/
}
#wrap #contents.is-keypad {
  padding-bottom: 40rem;
}
#wrap #main-call-ui {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  width: 100vw;
}
#header {
  /*20240805  position: relative; */
  width: 100%;
}
#header .btn-close {
  /* 20240805 absolute > fixed   */
  position: fixed;
  top: 10px;
  right: 10px;
  background: url('../images/icon_ui.png') no-repeat 0 0;
  background-size: auto 30px;
  width: 30px;
  height: 30px;
  /*20240813*/
  z-index: 999;
}
#header .btn-pre {
  /* 20240805 absolute > fixed   */
  position: fixed;
  top: 10px;
  left: 10px;
  background: url('../images/icon_ui.png') no-repeat -120px 0;
  background-size: auto 30px;
  width: 30px;
  height: 30px;
}
#main-call-ui {
  padding: 20px;
  /*20240805 add  background-color*/
  background-color: #fff;
}
#main-call-ui .call-ui {
  display: flex;
}
#main-call-ui button.btn {
  flex: 1;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #4945c5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
#main-call-ui button.btn:hover,
#main-call-ui button.btn:active {
  background-color: #5d59d9;
}
#main-call-ui button.btn:disabled {
  background-color: #eeeeee;
  color: #999;
}
#contents .h-title {
  color: #1c1c25;
  /* 20240821 yoo update : font-size: 22px; */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}
#contents .h-title em {
  display: inline-block;
  position: relative;
  font-weight: 700;
  letter-spacing: 0;
}
#contents .h-title em::before {
  position: absolute;
  bottom: 2px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  border-bottom: 10px solid rgba(73, 69, 197, 0.15);
}
#contents .inner {
  padding: 4vh 0 0;
}
#contents h2 {
  color: #26255a;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}
.modal {
  position: absolute;
  z-index: 10000;
  /* 1 */
  bottom: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  /*20240805 삼성브라우저 여백생김 영향으로 수정*/
  width: 0;
  height: 0;
}
.modal.is-visible {
  /*20240805 삼성브라우저 여백생김 영향으로 수정*/
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.7);
  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 {
  width: 100%;
  z-index: 9999;
  margin: 0 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.3);
  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 {
  background-color: #fff;
  position: relative;
  min-height: 50px;
}
.modal-header .modal-heading {
  color: #26255a;
  font-size: 20px;
  margin: 0;
  text-align: center;
  padding: 30px 15px 15px 15px;
  font-weight: 500;
  line-height: 1.1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*20241028 클래스 추가 .modal-header .modal-close */
.modal-header .btn-close,
.modal-header .modal-close {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 10px;
  overflow: hidden;
  background: url('../images/icon_ui.png') no-repeat 0 0;
  background-size: auto 30px;
  text-indent: -999px;
}
.modal-footer {
  display: flex;
  padding: 10px 20px 20px;
}
.modal-footer .btn {
  flex: 1;
}
.modal-footer .btn + .btn {
  margin-left: 6px;
}
.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}
.modal-body {
  padding: 30px 15px;
  max-height: 80vh;
  overflow-y: auto;
}
.modal-body .modal-text {
  padding: 0 10px;
  text-align: center;
  /*20240731 사이즈 16> 18 */
  font-size: 18px;
  line-height: 1.3;
}
.modal-body .modal-text .icon {
  /*20240731 사이즈 40> 60 */
  width: 60px;
  height: 60px;
  margin: 10px auto 30px;
  background: url('../images/ic_notice.png') no-repeat 50% 50%;
  background-size: auto 100%;
}
.modal-body .modal-text p {
  /*20240731 사이즈 18> 20 */
  font-size: 20px;
  line-height: 1.3;
}
.modal-body .modal-text small {
  margin-top: 10px;
  display: block;
  /*20240731 사이즈 15> 16 */
  font-size: 16px;
  color: #8287a0;
  font-weight: 400;
  line-height: 1.3;
}
.modal.modal-full .modal-wrapper {
  height: 100%;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  margin: 0;
}
.modal.modal-full .modal-wrapper .modal-body {
  padding: 0;
  max-height: calc(100% - 130px);
  height: calc(100% - 130px);
  /*20240812 add */
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.modal.modal-full .modal-wrapper .modal-body iframe {
  border: 0;
  outline: 0;
  width: 100%;
  /*20240812 수정 아이폰에서 스크롤안되는 문제 height: 100% >> 99%;   */
  height: 99%;
}
.modal.modal-full .modal-wrapper .modal-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.modal.modal-pullup {
  align-items: flex-end;
}
.modal.modal-pullup .modal-transition {
  transform: translateY(10%);
}
.modal.modal-pullup.is-visible .modal-transition {
  transform: translateY(0);
}
.modal.modal-pullup .modal-wrapper {
  width: 100%;
  margin: 0 !important;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
}
.modal.modal-pullup .modal-body {
  /*20241115 modi : padding  */
  padding: 28px 10px;
  text-align: center;
}
.modal.modal-alert .modal-wrapper {
  width: calc(100% - 56px);
  margin: 0 28px;
}
/*****************
FORM 
******************/
.form-group-wrp {
  /*20250116  수정 margin: 4vh 0; > margin: 20px 0; */
  margin: 20px 0;
}
.form-group-wrp p {
  font-size: 15px;
}
.form-group-wrp p.msg {
  color: #cf2424;
}
.form-group {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.form-group span {
  font-size: 18px;
  padding: 0 5px;
  line-height: 1;
}
.form-group span.star {
  font-size: 20px;
  letter-spacing: 6px;
}
.form-group .form-input {
  flex: 1;
}
.form-group .form-input.form-sm {
  flex: 0 1 80px;
}
.form-group .btn {
  flex: 1 0 100px;
  margin-left: 6px;
}
.form-group .div-dropdown {
  flex: 1;
}
.form-textarea {
  border: 1px solid #dddddd;
  padding: 10px 10px;
  font-size: 16px;
  color: #1c1c25;
  font-weight: 500;
  margin: 8px 0 4px;
  width: 100%;
  outline: 0;
}
.form-textarea:-moz-placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.form-textarea::-moz-placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.form-textarea:-ms-input-placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.form-textarea::-webkit-input-placeholder {
  color: #999;
  font-size: 16px;
  font-weight: 400;
}
.form-input {
  outline: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  border: 1px solid #dddddd;
  border-width: 0 0 1px;
  padding: 0;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
}
.form-input:-moz-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.form-input::-moz-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.form-input:-ms-input-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.form-input::-webkit-input-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.form-input:focus {
  border-color: #4945c5;
}
.form-input.error {
  border-color: #cf2424;
}
.form-input:disabled {
  border-color: #eeeeee;
  color: #999999;
}
.btn-group {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
.btn-group .btn {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0;
}
.btn-group .btn + .btn {
  margin-left: 10px;
}
.btn-group + .btn-group {
  margin-top: 10px !important;
}
.btn {
  display: inline-block;
  outline: 0;
}
.btn.btn-secondary {
  width: 100%;
  color: #4945c5;
  line-height: 1.1;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid #4945c5;
  background-color: #fff;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.btn.btn-secondary:hover {
  background-color: #eeeeee;
}
.btn.btn-primary {
  width: 100%;
  color: #fff;
  line-height: 1.1;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  background-color: #4945c5;
  text-align: center;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
}
.btn.btn-primary:hover {
  background-color: #5d59d9;
}
.btn::disabled {
  background-color: #eeeeee;
  color: #555;
}
.btn::disabled:hover {
  background-color: #eeeeee;
}
.div-dropdown {
  position: relative;
}
.div-dropdown .dropdown-toggle {
  z-index: 200;
  color: #232c4a;
  border: 1px solid #dddddd;
  border-width: 0 0 1px;
  background-color: #fff;
  padding: 0;
  height: 50px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
}
.div-dropdown .dropdown-toggle:-moz-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.div-dropdown .dropdown-toggle::-moz-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.div-dropdown .dropdown-toggle:-ms-input-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.div-dropdown .dropdown-toggle::-webkit-input-placeholder {
  color: #999999;
  font-size: 16px;
  font-weight: 400;
}
.div-dropdown .dropdown-toggle:after {
  flex: 0 0 30px;
  margin-left: auto;
  content: '';
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url('../images/icon_ui.png') no-repeat -90px 0px;
  background-size: auto 30px;
  transform: rotate(90deg);
}
.div-dropdown .dropdown-toggle.disabled {
  background-color: #eeeeee;
}
.div-dropdown .dropdown-menu {
  z-index: 300;
  position: absolute;
  top: 49px;
  left: 0;
  border: 1px solid #dddddd;
  background-color: #fff;
  min-width: 100%;
  width: auto;
  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%;
  padding: 12px 15px;
  border-bottom: 1px solid #dddddd;
  cursor: pointer;
}
.div-dropdown .dropdown-menu a:last-child {
  border-bottom: 0 !important;
}
.div-dropdown .dropdown-menu .div-dropdown .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.div-dropdown:hover + .dropdown-menu {
  display: block;
}
.receipt-wrap {
  padding: 20px 0;
  /*20241029 modi 4vh > 2vh */
  margin: 2vh 0;
}
.receipt-wrap .info-list {
  position: relative;
  padding: 8px;
  /*20240731 컬러값수정*/
  background-color: #f4f4fa;
}
.receipt-wrap .info-list::after {
  position: absolute;
  content: '';
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(../images/img_receipt.png) repeat-x 0 0;
  background-size: auto 30px;
}
.receipt-wrap .info-list::before {
  position: absolute;
  content: '';
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: url(../images/img_receipt.png) repeat-x 0 0;
  background-size: auto 30px;
  transform: rotate(180deg);
}
.receipt-wrap .info-list p {
  display: block;
  display: flex;
  margin: 8px 16px 8px;
  align-items: center;
}
.receipt-wrap .info-list p span {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.receipt-wrap .info-list p span b {
  font-size: 18px;
  font-weight: bold;
  color: #4945c5;
  letter-spacing: 0;
}
.receipt-wrap .info-list p span.tit {
  flex: 0 0 80px;
  font-weight: 700;
}
.agreelist-wrap {
  /*20241029 modi 8vh > 0 */
  margin-top: 0px;
}
.agreelist-wrap .list {
  display: flex;
  align-items: center;
  font-size: 15px;
  padding: 2px 8px;
}
.agreelist-wrap .list .btn-view {
  font-size: 13px;
  font-weight: 500;
  margin-left: auto;
  padding: 4px 8px;
  color: #999;
}
.agreelist-wrap .list .btn-view:hover {
  color: #4945c5;
}
.att-wrap {
  /*20241029 modi*/
  margin-top: 10px;
  padding: 10px 8px;
  border-top: 2px solid #f4f4f4;
}
.att-wrap p {
  font-size: 14px;
  line-height: 1.3;
  margin: 0 0 4px;
}
.msg-wrap {
  /*20240805 height 70 > 65*/
  height: 65vh;
  display: flex;
  text-align: center;
  padding: 0 0 10vh;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.msg-wrap .msg-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  text-align: center;
}
.msg-wrap .msg-icon img {
  width: 100%;
  height: auto;
}
.msg-wrap h1 {
  font-size: 20px;
  letter-spacing: -1px;
  color: #1c1c25;
  font-weight: 500;
}
.msg-wrap h1 b {
  font-weight: 700;
}
.msg-wrap p {
  font-size: 16px;
  line-height: 1.4;
  margin: 20px 0;
  font-weight: 400;
}
.msg-wrap small {
  font-size: 14px;
  color: #555;
}
.text-red {
  color: #cf2424 !important;
}
.text-blue {
  color: #4945c5 !important;
}
#wrap.p-sdk {
  background-color: #26255a;
  overflow-y: auto;
  height: 100%;
}
#wrap.p-sdk #header .btn-close {
  /* 20240805 
    position: absolute;
    top: 10px;
    right: 10px; */
  background: url('../images/icon_ui.png') no-repeat -30px 0;
  background-size: auto 30px;
  width: 30px;
  height: 30px;
}
#wrap.p-sdk #contents {
  /*20240805 
     padding: 50px 20px 0;
    margin-top: 0;
    margin-bottom: 0;
    height: auto; */
  padding-top: 50px;
}
#wrap.p-sdk #contents .h-title {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
}
#wrap.p-sdk #contents .h-title b {
  font-size: 30px;
  font-weight: 700;
}
#wrap.p-sdk #main-call-ui {
  /* 20240805 
       padding: 10px 18px 18px;
     position: relative; */
  padding: 4px 18px 0px;
  background-color: #26255a;
}
.btn-text {
  color: #fff;
  /*20240723 font-size up, width add*/
  font-size: 15px;
  text-align: center;
  padding-left: 8px;
  margin: 0 0 10px;
  text-decoration: underline;
}
.btn-text::after {
  content: ' →';
}
.btn-text:hover {
  color: #4aa7ec;
}
.btn-text + .btn-text {
  margin-left: 15px;
}
.guide_wrap {
  padding-top: 20px;
}
.guide_wrap small {
  display: block;
  color: #fff;
  font-weight: 300;
  /*20240723 font-size  up  ,  b 추가 */
  font-size: 15px;
  line-height: 1.34;
}
.guide_wrap small b {
  font-weight: 500;
}
.guide_wrap .guide {
  text-align: center;
  background-color: #fff;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  border-radius: 16px;
  margin: 10px 0;
}
.guide_wrap .guide .btn {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4945c5;
  padding: 18px;
}
.guide_wrap .guide .btn::after {
  content: '';
  width: 24px;
  height: 24px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
  background: #a7abb7 url('../images/icon_ui.png') no-repeat -183px -4px;
  background-size: auto 30px;
  transform: rotate(90deg);
}
.guide_wrap .guide .btn.btn-guide::after {
  transform: rotate(180deg);
}
.guide_wrap .guide .btn:hover::after {
  background-color: #26255a;
}
.guide_wrap .guide .guide-body {
  display: none;
  padding: 15px 0;
}
.guide_wrap .guide .guide-body .msg {
  font-size: 14px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  padding: 8px 4px;
  background-color: #f4f4f4;
  color: #8287a0;
}
.guide_wrap .guide .guide-body .msg b {
  color: #1c1c25;
}
.guide_wrap .guide .guide-body .img_nfc {
  width: 100%;
  height: 280px;
  background: url('../images/nfc_info.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay {
  width: 100%;
  height: 280px;
  background: url('../images/tappay_tap.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay.typeA {
  background: url('../images/tappayA.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay.typeB {
  background: url('../images/tappayB.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay.typeC {
  background: url('../images/tappayC.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay.typeD {
  background: url('../images/tappayD.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide .guide-body .img_tappay.typeE {
  background: url('../images/tappayE.gif') no-repeat 50% 50%;
  background-size: contain;
}
.guide_wrap .guide.active .btn::after {
  transform: rotate(0deg);
  background-color: #4945c5;
}
.guide_wrap .guide.active .guide-body {
  display: block;
  height: auto;
  transform: all 0.2s;
}

.loading_full {
  position: fixed;
  z-index: 999999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.6);
}

/*20241119  전체로딩 화면 디자인 수정*/
.loading_full .inner {
  z-index: 9999;
  width: calc(100% - 32px);
  margin: 0 16px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  padding: 36px 16px;
  background-color: #fff;
  box-shadow: 0 0 1.5em hsla(0, 0%, 0%, 0.3);
  overflow: hidden;
  text-align: center;
}

.loading_full img {
  width: 160px;
  height: auto;
}
.loading_full p {
  font-size: 22px;
  /* color: #fff; */
  text-align: center;
  font-weight: 700;
  margin: 0 0;
  letter-spacing: -1px;
}
.loading_full small {
  font-size: 12px;
  color: #8287a0;
  margin-bottom: 28px;
}

.loding_msg {
  margin-top: 36px;
}
.loding_msg .btn {
  width: 160px !important;
  height: 40px !important;
  border-radius: 20px;
  color: #4945c5 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  margin: 16px auto 0 !important;
  background-color: #fff !important;
  border: 1px solid #4945c5;
}

.loading {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}
.loading img {
  margin: -36px 0;
  width: 120px;
  height: auto;
}

/*20241119  전체로딩 화면 디자인 수정 end*/
.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-8 {
  margin-top: 8px !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;
}
.btn.has-msg {
  position: relative;
}
.btn.has-msg::after {
  content: '';
  width: 119px;
  height: 56px;
  display: inline-block;
  background: url('../images/tabpay_msg.png') no-repeat 0 0;
  background-size: auto 56px;
  position: absolute;
  top: -50px;
  right: 0px;
  animation: motion 0.4s linear 0s infinite alternate;
}
@keyframes motion {
  0% {
    margin-top: 0px;
  }
  100% {
    margin-top: 10px;
  }
}
#wrap.p-sdk2 {
  background-color: #fff;
  overflow-y: auto;
  height: 100%;
}
#wrap.p-sdk2 #contents {
  padding-top: 50px;
  /* 
    padding: 50px 20px 0; 
      margin-top: 0;
    margin-bottom: 0;
    height: auto; */
}
#wrap.p-sdk2 #contents .h-title {
  color: #000;
  font-size: 22px;
  font-weight: 400;
}
#wrap.p-sdk2 #contents .h-title b {
  font-size: 30px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 -18px 0 0 #c3e3ff;
}
#wrap.p-sdk2 #main-call-ui {
  /*20240805 
     padding: 10px 18px 18px;
        position: relative; */
  padding: 4px 18px 0px;
}
#wrap.p-sdk2 small.text-center {
  color: #000;
}
#wrap.p-sdk2 .guide_wrap small {
  color: #000;
}
#wrap.p-sdk2 .btn-text {
  color: #000;
}
#wrap.p-sdk2 .btn-text:hover {
  color: #26255a;
}
#main-call-ui .btn-group {
  margin-top: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/*20240729 add*/
.guide_wrap .guide .guide-body .img_tappay.typeF {
  background: url('../images/tappayF.gif') no-repeat 50% 50%;
  background-size: contain;
}

/*20240731 add*/
.loding_msg {
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.loding_msg small {
}
.loding_msg .btn {
  display: block;
  margin: 10px auto;
  background-color: #4945c5;
  color: #fff;
  height: 40px;
  border-radius: 20px;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
}
.loding_msg .btn:hover {
  background-color: #5d59d9;
}

.modal-body .modal-text .icon.icon-card {
  background: url(../images/ic_creditCard.png) no-repeat 50% 50%;
  background-size: auto 100%;
}

/*20240805 add*/
.modal.modal-pullup .modal-body {
  position: relative;
}
.modal-body .btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: url('../images/icon_ui.png') no-repeat 0 0;
  background-size: auto 30px;
  width: 30px;
  height: 30px;
}
#wrap.p-sdk2 #main-call-ui .btn-group {
  margin-bottom: 20px !important;
}

/* 슬라이드 배너*/
.banner_wrap {
  margin: 15px 0;
}
.banner_wrap .swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner_wrap .swiper-container .swiper-wrapper {
}
.banner_wrap .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #f5f6f8;
  border-radius: 15px;
}
.banner_wrap .swiper-container .swiper-wrapper .swiper-slide .slide_text {
  line-height: 1.6;
}
.banner_wrap .swiper-container .swiper-wrapper .swiper-slide .slide_icon {
  width: 70px;
  height: 70px;
}
.banner_wrap
  .swiper-container
  .swiper-wrapper
  .swiper-slide:nth-child(1)
  .slide_icon {
  background: url(../images/img_banner_01.png) no-repeat center;
  background-size: contain;
}
.banner_wrap
  .swiper-container
  .swiper-wrapper
  .swiper-slide:nth-child(2)
  .slide_icon {
  background: url(../images/img_banner_02.png) no-repeat center;
  background-size: contain;
}
.banner_wrap
  .swiper-container
  .swiper-wrapper
  .swiper-slide:nth-child(3)
  .slide_icon {
  background: url(../images/img_banner_03.png) no-repeat center;
  background-size: contain;
}
.banner_wrap .swiper-container .swiper-pagination {
  position: absolute;
}
.banner_wrap .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #7e7e8b;
  opacity: 0.5;
}
.banner_wrap .swiper-pagination-bullet-active {
  background-color: #0052ff;
  opacity: 1;
}

.banner_wrap .ft_smm {
  font-size: 13px;
  font-weight: 400;
}

.banner_wrap h4 {
  font-size: 17px;
  font-weight: 700;
}

.setup_method {
  border: 1px solid #e3e8f1;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}
.setup_method h4 {
  font-size: 20px;
}

.setup_method h4 .color {
  color: #0052ff;
}

.setup_method .method_list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
  padding-top: 25px;
  border-top: 1px solid #e3e8f1;
}
.setup_method .method_list .method_btn {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 2fr 1fr;
  grid-column-gap: 10px;
  color: unset;
  overflow: hidden;
}

.setup_method .method_list .method_btn .text_part h4 {
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 500;
}

.setup_method .method_list .method_btn:last-child .text_part h4 {
  margin-bottom: 0;
}

.setup_method .method_list .method_btn .text_part p {
  color: #696d77;
  font-size: 13px;
  line-height: 1.34;
  font-weight: 400;
}

.method_list .method_btn .sub_text {
  height: fit-content;
  padding: 8px 10px;
  border-radius: 20px;
  background-color: rgb(0 82 255 / 10%);
  white-space: nowrap;
  text-align: center;
  color: #0052ff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
}

.keyin_btn {
  display: flex;
  width: fit-content;
  margin: 30px auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.3rem;
  color: #696d77;
}
.keyin_btn .keyin_title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 13px;
  font-weight: 500;
}
.keyin_btn .keyin_title svg {
  width: 15px;
  height: 15px;
}
.keyin_btn .keyin_sub {
  position: relative;
  font-size: 14px;
}
.keyin_btn .keyin_sub::after {
  position: absolute;
  content: '';
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #696d77;
}

.btn_wrap .button {
  background-color: #0052ff;
}

.modal-text .applink_animation {
  width: 100%;
  height: 400px;
  background: url(../images/applink_setup.gif) no-repeat center;
  background-size: contain;
}

.modal-text .guide {
  text-align: center;
}
.modal-text .guide li {
  font-size: 15px;
  font-weight: 400;
}
.modal-text .guide li strong {
  font-weight: 500;
}
.modal-text .guide .arrow_down {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #0052ff;
  border-right: 1px solid #0052ff;
  transform: rotate(135deg);
}
.modal-text .guide .arrow_down::after {
  position: absolute;
  content: '';
  top: 2px;
  right: -2.2px;
  width: 10px;
  height: 1px;
  transform: rotate(135deg);
  background-color: #0052ff;
}

/*20240820 add*/
#wrap.p-setup #main-call-ui {
  padding: 0;
}

#wrap.p-setup #contents {
  padding-bottom: 210px;
}
#wrap.p-setup #main-call-ui .call-ui {
  margin: 0 20px;
}

#wrap.p-setup #main-call-ui .btn-group {
  margin: 15px 20px 0;
}

#wrap.p-setup .btn-text {
  color: #000;
}
#wrap.p-setup .btn-text:hover {
  color: #26255a;
}

#main-call-ui .banner_wrap {
  padding: 0;
  margin: 20px 0 0;
}
#main-call-ui .banner_wrap .swiper-container .swiper-wrapper .swiper-slide {
  border-radius: 0 !important;
  padding: 0px 20px 15px;
}

.slide_img img {
  width: 80px;
  height: auto;
}
#header .logo-wrap {
  position: fixed;
  top: 0px;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 52px;
  z-index: 998;
  font-size: 14px;
  color: #000;
  display: flex;
  align-items: flex-end;
  padding-left: 20px;
  padding-bottom: 10px;
}
#header .logo-wrap .logo {
  width: 120px;
  height: 100%;
  background: url(../images/logo.png) no-repeat 0 100%;
  background-size: auto 16px;
  margin-left: 4px;
}

.setup-wrap {
  margin-top: 30px;
  position: relative;
}
.setup-wrap .method-btn {
  width: 56%;
  height: 210px;
  display: block;
  background-color: #f5f6f8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
  position: relative;
  padding: 20px;
  transition: all 0.2s;
}

.setup-wrap .method-btn:first-child {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 74% 100%, 0 100%);
}

.setup-wrap .method-btn:last-child {
  position: absolute;
  /* 20240821 yoo update : top: 10px; */
  top: 20px;
  right: 0;
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0% 100%);
  text-align: right;
  align-items: flex-end;
}
.setup-wrap .method-btn:last-child h4 {
  padding-left: 44px;
}

.setup-wrap .method-btn:hover {
  transform: scale(110%);
  transition: all 0.2s;
}

.setup-wrap .method-btn .text h4 {
  /* 20240821 yoo update : font-size: 16px; */
  font-size: 17px;
  line-height: 1.3;
  /* 20240821 yoo update : font-weight: bold; */
  font-weight: 600;
}
.setup-wrap .method-btn .text small {
  display: block;
  font-size: 13px;
  font-weight: 400;
  /* 20240821 yoo update : line-height: 1.4; */
  line-height: 1.2;
  /* 20240821 yoo update : margin-top: 8px; */
  margin-top: 10px;
  /* 20240821 yoo add : color: #999999; */
  color: #999999;
}
.setup-wrap .method-btn .btn {
  height: fit-content;
  padding: 8px 16px;
  border-radius: 20px;
  background-color: rgb(0 82 255 / 10%);
  white-space: nowrap;
  text-align: center;
  color: #0052ff;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0;
  /* 20240821 yoo update : margin-top: 20px; */
  margin-top: 10px;
}
.setup-wrap.typeB .method-btn {
  width: 70vw;
  height: 70vw;
  margin: 0 auto;
  position: inherit;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  clip-path: none;
}
.setup-wrap.typeB .method-btn .text {
  text-align: center;
}
.setup-wrap.typeB .method-btn .text h4 {
  padding-left: 0;
  font-size: 20px;
}
.setup-wrap.typeB .method-btn .btn {
  margin-top: 30px;
}

.modal.is-fallback .modal-wrapper {
  background-color: transparent !important;
  margin: 0;
  height: 100%;
}

.modal.is-fallback .modal-wrapper .modal-body .modal-toggle {
  width: 30px;
  height: 30px;
  position: fixed;
  top: 10px;
  right: 10px;
  overflow: hidden;
  background: url(../images/icon_ui.png) no-repeat -30px 0;
  background-size: auto 30px;
  text-indent: -999px;
}
.modal.is-fallback .modal-wrapper .modal-body {
  padding: 0 !important;
  max-height: 100vh;
  height: 100%;
  overflow: hidden;
}

.modal.is-fallback .modal-wrapper .modal-body .fallback-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  /* 20240821 yoo update : padding: 100px 0 8px; */
  padding: 100px 0 8px;
  justify-content: space-between;
}
.modal.is-fallback .modal-wrapper .modal-body .img-fallback {
  max-width: 100%;
  height: auto;
  display: block;
}

/**
20241028 add**/

.logo-pay {
  background: url(../images/logo_pay2.png) no-repeat 0 0;
  background-size: auto 26px;
  width: 200px;
  height: 40px;
  margin-top: -10px;
}
.paylist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.paylist .btn {
  flex: 1;
  /*20241115 modi :  background-color*/
  background-color: #f2f3f5;
  padding: 10px;
  /*20241115 modi : border-radius 10px > 8px */
  border-radius: 8px;
  font-size: 13px;
  text-align: center;
}
.paylist .btn:hover {
  background-color: #e3e8f1;
}

.paylist .btn .icon {
  width: 100px;
  height: 40px;
  margin: -2px auto 2px;
}

.paylist .icon.pay-card {
  background: url(../images/pay_card.png) no-repeat 50% 50%;
  background-size: auto 40px;
}

.paylist .icon.pay-samsung {
  background: url(../images/pay_samsung.png) no-repeat 50% 50%;
  background-size: auto 36px;
}

.paylist .icon.pay-cacao {
  background: url(../images/pay_cacao.png) no-repeat 50% 50%;
  background-size: auto 34px;
}

.paylist .icon.pay-naver {
  background: url(../images/pay_naver.png) no-repeat 50% 50%;
  background-size: auto 34px;
}

.paylist .icon.pay-apple {
  background: url(../images/pay_apple.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

.paylist .icon.pay-ars {
  background: url(../images/pay_ars.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

.paylist .icon.pay-payco {
  background: url(../images/pay_payco.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

.paylist .icon.pay-transfer {
  background: url(../images/pay_transfer.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

.paylist .icon.pay-global {
  background: url(../images/pay_global.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

.paylist .icon.pay-account {
  background: url(../images/pay_account.png) no-repeat 50% 50%;
  background-size: auto 24px;
}

/*20241115 modi .paylist~~*/
.modal-text .paylist {
  display: flex;
  flex-direction: column;
  margin-top: -16px;
}
.modal-text .paylist .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  padding: 17px 10px;
}

.modal-text .paylist .btn .icon {
  margin: 0;
  width: 24px;
  height: 24px;
}

.modal-text .paylist .icon.pay-card {
  background: url(../images/pay_m.png) no-repeat -3px 50%;
  background-size: auto 30px;
}
.modal-text .paylist .icon.pay-card2 {
  background: url(../images/pay_m.png) no-repeat -33px 50%;
  background-size: auto 30px;
}
.modal-text .paylist .icon.pay-samsung {
  background: url(../images/pay_m.png) no-repeat -63px 50%;
  background-size: auto 30px;
}
.modal-text .paylist .icon.pay-cacao {
  background: url(../images/pay_m.png) no-repeat -93px 50%;
  background-size: auto 30px;
}
.modal-text .paylist .icon.pay-naver {
  background: url(../images/pay_m.png) no-repeat -123px 50%;
  background-size: auto 30px;
}

/*20241115  modi : palylist end */

.paylist + .btn-group {
  margin-top: 20px;
  justify-content: center;
}
.paylist .btn.btn-block {
  flex: 0 0 100%;
  padding: 20px 10px;
  display: flex;
  position: relative;
}
.paylist .btn.btn-block .icon {
  margin: 0 -10px;
}
.paylist .btn.btn-block p {
  text-align: left;
  font-size: 16px;
}
.paylist .btn.btn-block p small {
  display: block;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 300;
  letter-spacing: 0;
}
.paylist .btn.btn-block p small img {
  height: 12px;
  width: auto;
  vertical-align: middle;
}
.paylist .btn.btn-block .bl {
  color: #fff;
  font-size: 11px;
  padding: 0 4px;
  border-radius: 4px;
  letter-spacing: 0;
  width: fit-content;
  background-color: #4945c5;
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -8px;
}

/*20241105 add*/
.msg-box {
  background-color: #ebeef3;
  width: fit-content;
  padding: 6px 20px;
  margin: 0 0 20px;
  font-size: 14px;
  color: #4945c5;
  letter-spacing: 0.5px;
}
.f-msg {
  text-align: center;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #696d77;
}

/*20241106 add*/
#main-call-ui .paylist {
  margin: 0;
}
#main-call-ui .btn-pay {
  background-color: #eceff5;
  padding: 8px;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  display: flex;
  align-items: center;
}
#main-call-ui .btn-pay .icon {
  width: 70px;
  height: 40px;
  margin: 0;
}
#main-call-ui .btn-pay::after {
  content: '';
  width: 30px;
  height: 30px;
  display: inline-block;
  background: url(../images/icon_ui.png) no-repeat -90px 0;
  background-size: auto 30px;
  margin-left: auto;
}
#main-call-ui .btn-pay:hover {
  background-color: #e3e8f1;
}
#wrap.p-sdk2 #main-call-ui .paylist + .btn-group {
  margin-bottom: 10px !important;
}
#wrap.p-sdk2 #contents {
  padding-bottom: 120px;
}

/*20241115 add*/
.modal-pullup .modal-header .modal-heading {
  text-align: left;
  padding-left: 20px;
}

/*20241118 add*/
.modal-text.paylist-wrap h4 {
  margin: 40px 0 8px;
  font-size: 14px;
}
.modal-text.paylist-wrap .paylist {
  margin-top: 0;
}

#wrap.p-sub #contents {
  margin-bottom: 0;
  padding: 60px 20px 40px;
}
#wrap.p-sub #contents .h-title {
  color: #000;
  font-size: 22px;
  font-weight: 400;
}

/*20241203 add */

#wrap.p-tapking {
  background-color: #fff;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
}
#wrap.p-tapking #contents {
  padding: 0 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#wrap.p-tapking #contents .h-title {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
#wrap.p-tapking #header {
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
#wrap.p-tapking #header .logo-pay {
  width: 120px;
  height: 30px;
  background: url(../images/logo_pay.png) no-repeat 0 100%;
  background-size: auto 24px;
}
#wrap.p-tapking .tapking-img {
  text-align: center;
}
#wrap.p-tapking .tapking-img img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
#wrap.p-tapking .tapking-msg {
  background-color: #f4f5f7;
  padding: 24px 16px;
  border-radius: 16px;
  text-align: center;
  letter-spacing: -1px;
  margin-top: 16px;
}
#wrap.p-tapking .tapking-msg b {
  font-size: 16px;
  color: #000;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
#wrap.p-tapking .tapking-msg p {
  font-size: 12px;
  color: #757575;
  font-weight: 500;
}
#wrap.p-tapking #main-call-ui {
  background-color: transparent !important;
}
#wrap.p-tapking #main-call-ui .btn-text {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding: 8px 16px;
  margin: 0;
}

/*20250116 라디오버튼 스타일 추가*/

.select-type {
}

[type='radio']:checked,
[type='radio']:not(:checked) {
  position: absolute;
  left: -9999px;
}

[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-right: 15px;
}

[type='radio']:checked + label {
  color: #26255a;
}

[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before {
  content: '';
  border: 1px solid #d4d4d4;
  -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: #4945c5;
  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;
}

.form-wrp-inline {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}
.form-wrp-inline .form-group-wrp {
  flex: 1;
  margin: 0;
}

/*20250122 모달 약관 add*/
.modal-agree {
  padding: 20px;
}
.modal-agree .agree-head {
  height: 30px;
  background: url(../images/logo_nice_blk_kr.png) no-repeat 0 0;
  background-size: auto 20px;
}
.modal-agree .agree-body {
  font-size: 15px;
  font-weight: 200;
  line-height: 1.45;
}
.modal-agree .agree-body h2 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  text-align: center;
}
.modal-agree .agree-body h3 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 24px;
}
.modal-agree .agree-body h4 {
  font-size: 15px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 6px;
}
.modal-agree .agree-body .in h3 {
  margin-top: 10px;
}
.modal-agree .agree-body .in {
  padding: 15px 0;
}
.modal-agree .agree-body .in p {
  margin-bottom: 8px;
}
.modal-agree .agree-body .in ul li {
  margin-bottom: 8px;
}
.modal-agree .agree-body .in ul li ul {
  margin-top: 10px;
}

/*20250203 add*/
.modal.modal-alert .modal-header .modal-heading {
  text-align: left;
  padding: 30px 30px 0;
  font-size: 16px;
  text-decoration: underline;
}

.modal.modal-alert .modal-body {
  padding: 15px 20px;
}
.btn-info {
  width: 30px;
  height: 30px;
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}
.btn-info::before {
  content: 'i';
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  margin: 6px 10px 10px 4px;
  border-radius: 10px;
  background-color: #555;
  font-size: 13px;
  font-family: 'Times New Roman', Times, serif;
  font-weight: bold;
  font-style: italic;
  color: #fff;
}
.modal-info {
  padding: 0 10px;
  /* min-height: 120px; */
}

/*20250630  add*/
.payment-status {
  height: auto !important;
  padding: 0 !important;
  margin-top: -20px;
}
.payment-status .msg-icon {
  margin-bottom: 10px;
}
.payment-status p {
  margin: 0 0;
}
.payment-status p.status {
  color: #4945c5 !important;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.payment-status b {
  font-weight: bold;
}

.account-info-wrap {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  letter-spacing: -0.25px;
  margin-top: 32px;
}
.account-info {
  border-top: 1px solid #eee;
  padding: 16px 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.account-info .info-row {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.account-info .title {
  font-weight: bold;
}

.account-info .copy-btn {
  padding: 4px 12px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid #000;
  background-color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-align: center;
  margin-bottom: 8px;
}
.account-info .copy-btn:active {
  background-color: #e3e8f1;
}
.account-info .amount {
  font-size: 16px;
  font-weight: bold;
  color: #4945c5;
}

/*20250804 add*/
.f-msg + .call-ui {
  margin-top: 10px;
}

.msg-box-top {
  background-color: #ebeef3;
  width: fit-content;
  padding: 20px 30px;
  margin: 0 0 6dvh;
  font-size: 14px;
  /* color: #4945c5; */
  letter-spacing: 0.5px;
  border-radius: 12px;
  line-height: 1.4;
}
.msg-box-top em {
  text-decoration: underline;
}

/*20250904 추rk */
#wrap.p-tapking #contents .h-title small {
  display: block;
  font-size: 14px;
  color: #757575;
}

.tapking-msg-new {
  background-color: #f4f5f7;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
  letter-spacing: -1px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tapking-msg-new .icon {
  flex: 0 1 30px;
  width: 30px;
  height: 30px;
}
.tapking-msg-new .icon.icon-wifi {
  background: url(../images/icon_wifi.png) no-repeat 50% 50%;
  background-size: auto 100%;
}
.tapking-msg-new .text {
  text-align: left;

  font-size: 16px;
  color: #000;
  font-weight: 500;
  line-height: 1.3;
}
.tapking-msg-new small {
  flex: 0 1 100%;
  display: block;
  font-size: 12px;
  color: #757575;
  font-weight: 400;
  background-color: #fff;
  border-radius: 20px;
  padding: 4px 8px;

}
