@charset "UTF-8";

:root {
  --header-height: 4.8rem;
  --footer-height: 6.4rem;
}

@media all and (min-width: 320px) {
  body {
    width: 100%;
    height: 100vh;
    min-height: 100%;
    font-family: 'Pretendard';
    font-size: 16px;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
    -webkit-text-size-adjust: 100%;
  }
  body.modal-open {
    overflow: hidden;
  }
  .wrap {
    min-width: 320px;
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
  }
  #mainFooter {
    height: auto;
    padding-bottom: env(safe-area-inset-bottom);
  }
  #mainFooter .nav-list {
    height: var(--footer-height);
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    transition: top 0.5s ease-in-out;
    background: #fff;
    z-index: 1000;
    padding-top: env(safe-area-inset-top);
  }
  .header > .inr {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: var(--header-height);
    padding: 1rem 2rem;
    background: #fff;
  }
  .header > .inr .h-left {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .header > .inr .h-left > button {
    height: 1.4rem;
  }
  .header > .inr .h-left > span.h2-r, .header > .inr .h-left > span.h2-m {
    padding-top: 0.4rem;
  }
  .header > .inr .h-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header > .inr .h-right .user, .header > .inr .h-right .alarm {
    position: relative;
    width: 2.9rem;
    height: 2.8rem;
  }
  .header > .inr .h-right .user.new::after, .header > .inr .h-right .alarm.new::after {
    display: block;
    position: absolute;
    top: 0;
    right: 2px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #EF5350;
    content: '';
  }
  .header > .inr .h-right .h3-m {
    color: #707070;
  }
  .header.main {
    display: block;
    position: static;
    height: auto;
    padding-top: 0;
    background: linear-gradient(173deg, #388bff 10.66%, #1360f4 97.18%);
    border-radius: 0px 0px 12px 12px;
  }
  .header.main .inr {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: var(--header-height);
    padding: 2rem;
    transition: background-color 0.3s ease;
    z-index: 100;
    background: none;
    padding-top: calc(env(safe-area-inset-top) + 24px);
  }
  .header.main .inr.scrolled {
    background-color: var(--white);
  }
  .header.main .inr.scrolled .h-left .icon_logo_white:after {
    background-position: -500px -100px;
  }
  .header.main .inr.scrolled .h-left .h2 {
    color: #353535;
  }
  .header.main .inr.scrolled .h-right .icon_user_white:after {
    background-position: -100px -100px;
  }
  .header.main .inr.scrolled .h-right .icon_alarm_white:after {
    background-position: -200px -100px;
  }
  .header.main .inr .h-left {
    gap: 8px;
  }
  .header.main .inr .h-left button {
    height: auto;
  }
  .header.main .inr .h-left .h2 {
    color: var(--white);
  }
  .header.main .header-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 4.8rem;
    padding-bottom: 5.2rem;
  }
  .header.main .header-body .notify-box {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    max-width: 27rem;
    width: 100%;
    height: 5.2rem;
    margin-top: 1.6rem;
    padding: 0.8rem 2rem 0.8rem 1.6rem;
    border-radius: 100px;
    background-color: var(--primary-p700);
  }
  .header.main .header-body .notify-box .data-box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 5.2rem;
    transition: transform 0.4s ease;
  }
  .header.main .header-body .notify-box .data-box[data-state="off"] .days, .header.main .header-body .notify-box .data-box[data-state="off"] .time {
    display: none;
  }
  .header.main .header-body .notify-box .data-box[data-state="off"] .notify:before {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: var(--font-bold);
    font-size: 1.4rem;
    color: var(--white);
    content: attr(data-off-title);
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .days {
    line-height: 18px;
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .days:before {
    display: inline-block;
    font-weight: var(--font-regular);
    font-size: 1.2rem;
    color: #cce0ff;
    line-height: 18px;
    content: attr(data-days);
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .time {
    position: relative;
    margin-left: 9px;
    line-height: 18px;
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .time:after {
    display: block;
    position: absolute;
    top: 7px;
    left: -7px;
    width: 1px;
    height: 8px;
    background-color: #85b8ff;
    content: '';
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .time:before {
    display: inline-block;
    font-weight: var(--font-regular);
    font-size: 1.2rem;
    color: #cce0ff;
    line-height: 18px;
    content: attr(data-time);
  }
  .header.main .header-body .notify-box .data-box[data-state="on"] .notify:before {
    overflow: hidden;
    display: block;
    max-width: 210px;
    font-weight: var(--font-bold);
    font-size: 1.4rem;
    color: var(--white);
    white-space: nowrap;
    text-overflow: ellipsis;
    content: attr(data-on-title);
  }
  .header.main .header-body .notify-box .data-box .data-list {
    display: none;
    min-width: 100%;
    min-height: 52px;
    height: 100%;
    padding: 0.5rem;
  }
  .header.main .header-body .notify-box .data-box .data-list[data-list="no-data"] {
    display: block;
  }
  .header.main .header-body .h1.name {
    margin-top: 2.8rem;
    color: var(--white);
    letter-spacing: -0.44px;
  }
  .header.main .header-body .txt {
    margin-top: 0.4rem;
    color: #cce0ff;
  }
  .header.main + .container {
    padding: 0;
    height: auto !important;
  }
  .header.nav-up {
    top: -48px;
  }
  .header.nav-up + .container .sub-wrap .scroll {
    padding-top: 0;
  }
  .header .icon_24px_close {
    position: absolute;
    top: 50%;
    right: 19px;
    transform: translateY(-50%);
  }
  .container {
    height: 100%;
    padding-top: 48px;
  }
  .container .content {
    height: calc(100vh - 48px);
    /*개인정보 수집 & 회원탈퇴 안내*/
  }
  .container .content.fx-type {
    height: 100%;
  }
  .container .content.full-pop {
    margin-top: -var(--header-height);
    height: 100%;
  }
  .container .content.full-pop .sub-wrap {
    padding-top: 5.2rem;
  }
  .container .content.main-ovf {
    overflow: unset;
  }
  .container .content.gray-type {
    height: calc(100vh - 48px);
  }
  .container .content.gray-type .sub-wrap {
    padding-bottom: 0;
  }
  .container .content.gray-type .sub-wrap.maintenance {
    padding-bottom: 12rem;
  }
  .container .content > .inr {
    padding: 0 2rem;
  }
  .container .content .home-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 154px);
  }
  .container .content .sub-wrap .group-wrap > .view-wrap {
    padding-top: 4rem;
    text-align: center;
    word-break: break-all;
  }
  .container .content .sub-wrap .group-wrap > .view-wrap.gray-type {
    padding: 3.2rem 2rem;
  }
  .container .content .sub-wrap .group-wrap > .view-wrap .h1 + img {
    margin-top: 2.4rem;
  }
  .container .content .sub-wrap .group-wrap > .view-wrap .h1 + .h4-r {
    margin-top: 1.2rem;
    color: #707070;
  }
  .container .content .sub-wrap .group-wrap > .view-wrap img + .h1, .container .content .sub-wrap .group-wrap > .view-wrap .icon + .h1 {
    margin-top: 2.4rem;
  }
  .container .content .sub-wrap .group-wrap > .view-wrap img + .h1 + .txt, .container .content .sub-wrap .group-wrap > .view-wrap .icon + .h1 + .txt {
    margin-top: 1.2rem;
    color: #707070;
  }
  .container .content .sub-wrap .group-wrap + .btm-wrap {
    margin: 4rem -.4rem 0 -.4rem;
    padding-bottom: 2rem;
  }
  .container .content .sub-wrap > .view-wrap {
    padding-top: 4rem;
  }
  .container .content .sub-wrap > .view-wrap > .h1 {
    text-align: center;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap {
    position: relative;
    margin-top: 7.2rem;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap .h3-m {
    margin: 4rem auto 0;
    color: #707070;
    text-decoration: underline;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap .guide-text {
    position: absolute;
    top: -5.6rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #949494;
    text-align: center;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap .guide-text.off {
    display: none;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap .guide-text.off.err {
    display: block;
    font-weight: var(--font-bold);
    color: #ef5350;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap .easypw .circle.err {
    border: 1px solid #ef5350;
    background-color: var(--white);
    box-sizing: border-box;
  }
  .container .content .sub-wrap > .view-wrap .easypw-wrap + .switch-box {
    margin-top: 10.8rem;
  }
  .container .content .sub-wrap .badge-wrap {
    display: flex;
    gap: 1rem;
  }
  .container .content .sub-wrap .badge-wrap + .h1 {
    margin-top: 2.4rem;
  }
  .container .content + .btn-wrap {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 1.6rem 1.6rem 2rem 1.6rem;
    background-color: var(--white);
    z-index: 100;
    padding-bottom: calc(env(safe-area-inset-bottom) + 2rem);
  }
  .container .content + .btn-wrap.center .btn-box {
    margin-bottom: 3rem;
  }
  .container .content + .btn-wrap.gray-type {
    background-color: #fbfbfb;
  }
  .container .content .list-box .tit {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 13px;
    width: 100%;
    font-weight: var(--font-medium);
    font-size: 14px;
    color: #707070;
  }
  .container .content .list-box .h1 {
    margin-top: 2.4rem;
  }
  .container .content .list-box .h1 + .result {
    margin-top: 4rem;
  }
  .container .content .list-box > a {
    font-size: 18px;
  }
  .container .content .list-box > a:after {
    width: 24px;
    height: 24px;
    border: none;
    background: url(/images/svg-sprites/sprites.svg) no-repeat;
    background-position: -420px -60px;
    content: '';
  }
  .container .content .list-box > a > span {
    display: block;
    margin-top: 4px;
    font-weight: var(--font-regular);
    font-size: 14px;
    color: #707070;
    line-height: 20px;
  }
  .container .content .list-box > strong {
    display: inline-flex;
    font-size: 18px;
    color: #121212;
  }
  .container .content .list-box > strong > .icon {
    margin-right: 8px;
  }
  .container .content .list-box > .li-item > li {
    height: 72px;
  }
  .container .content .list-box > .li-item > li .icon {
    vertical-align: middle;
  }
  .container .content .list-box > .li-item > li > span {
    display: inline-flex;
    align-items: center;
  }
  .container .content .list-box > .li-item > li > span:first-child {
    overflow: hidden;
    display: flow-root;
    width: calc(100% - 109px);
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .container .content .list-box > .li-item > li > span + span {
    font-size: 16px;
  }
  .container .content .list-box > .li-item > li .btn-take {
    font-weight: var(--font-medium);
    font-size: 16px;
    color: #1D7AFC;
  }
  .container .content .list-box > .li-item > li .btn-take:disabled {
    color: #949494;
  }
  .container .content .list-box > .li-item > li > a > span:first-child {
    overflow: hidden;
    display: flow-root;
    width: calc(100% - 109px);
    color: #121212;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .container .content .list-box > .li-item > li > a > span:first-child > small {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .container .content .list-box > .li-item > li.add > span:last-child {
    color: #1D7AFC;
    flex: 1;
  }
  .container .content .list-box .h4 {
    color: #707070;
  }
  .container .content .list-box + .list-box.pd-0 {
    border: 0;
  }
  .container .content .list-box + .list-box.pd-0 .h3 {
    padding-left: 2rem;
  }
  .container .content .list-box + .list-box.pd-0 .edit-list ul {
    margin-top: 1.2rem;
  }
  .container .content .list-box .box .category-item {
    display: flex;
    row-gap: 0.8rem;
    column-gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
  }
  .container .content .list-box .box .category-item .category-btn {
    margin-top: 0;
    padding: 0.6rem 1.5rem;
    border: 1px solid #dbdbdb;
    border-radius: 1.7rem;
    background-color: var(--white);
    color: #353535;
  }
  .container .content .list-box > .accordion-box .accordion-footer {
    position: relative;
    padding: 24px 20px;
  }
  .container .content .list-box > .accordion-box .accordion-footer > button.accordion-button {
    display: block;
    width: 90px;
    height: 40px;
    margin: 0 auto;
    border-radius: 20px;
    background: #F1F4F7;
    color: #4d4d4d;
    font-weight: var(--font-medium);
    font-size: 15px;
    text-align: center;
  }
  .container .content .list-box > .accordion-box .accordion-footer > button.accordion-button .icon {
    margin-left: 4px;
    vertical-align: middle;
  }
  .container .content .list-box > .accordion-box .accordion-footer > button.accordion-button.on .icon {
    transform: rotate(180deg);
    transition-duration: .5s;
  }
  .container .content .list-box > .accordion-box .accordion-footer > button.close {
    position: absolute;
    top: 32px;
    right: 0;
    text-decoration: underline;
    color: #707070;
  }
  .container .content .list-box > .accordion-box .accordion-collapse {
    display: none;
  }
  .container .content .list-box > .accordion-box .accordion-collapse .accordion-body {
    padding: 0;
    border-bottom: none;
    background: #fff;
  }
  .container .content .list-box > .accordion-box + .accordion-box {
    padding-top: 24px;
    border-top: 1px solid #DBDBDB;
  }
  .container .content .list-box .sign-box {
    position: relative;
    display: inline-flex;
    width: 100%;
    height: 72px;
    padding: 12px;
    border-radius: 8px;
    background: #F2F2F2;
    font-weight: var(--font-medium);
    font-size: 16px;
    color: #353535;
    justify-content: space-between;
    align-items: center;
  }
  .container .content .list-box .sign-box img {
    position: absolute;
    right: 0;
  }
  .container .content .list-box .h3-m {
    color: #353535;
  }
  .container .content .list-box .h3-m + .btn-wrap {
    padding-bottom: 2.4rem;
  }
  .container .content .list-box .h3-m + .btn-wrap + .text-wrap {
    margin-top: 0;
  }
  .container .content .list-box .h3-m + .btn-wrap + .text-wrap .text-box .h4 {
    margin-bottom: 2.4rem;
  }
  .container .content .list-box .btn-wrap {
    margin-top: 2.4rem;
  }
  .container .content .list-box .btn-wrap .btn + .btn {
    margin-top: 1.2rem;
  }
  .container .content .list-box .h2 + .h3-m {
    margin-top: 1.2rem;
  }
  .container .content .list-box .h2 + .h3-m + .txt {
    display: block;
    margin-top: 0.4rem;
  }
  .container .content .list-box > .formCheck > small {
    display: block;
    margin-left: 3.4rem;
    font-weight: var(--font-regular);
    font-size: 12px;
    line-height: 18px;
    color: #949494;
  }
  .container .content .list-box .shorts {
    margin-top: 1.2rem;
  }
  .container .content .list-box .shorts li {
    padding: 1.6rem 0;
  }
  .container .content.splash {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: -var(--header-height);
    background: url(/images/splash_bubble.png) no-repeat center, var(--primary-p600);
  }
  .container .content.splash .inr {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
    max-width: 36rem;
    width: 100%;
    height: 100%;
    padding: 15rem 0 5rem 0;
  }
  .container .content.splash .inr img.splash_icon {
    width: 28rem;
  }
  .container .content.splash .inr img.splash_logo {
    justify-content: inherit;
    margin-top: 2.3rem;
  }
  .container .content .text-box.center .h3 {
    margin-bottom: 0;
    color: #353535;
  }
  .container .content .text-box.center .h4-r {
    margin-top: 3.2rem;
    color: #353535;
  }
  .container .content .text-box.center .h4-r + .h4 {
    margin-top: 1.2rem;
    color: #353535;
  }
  .container .content .text-box > .h4 {
    margin-bottom: 1.2rem;
    color: #353535;
  }
  .container .content .text-box + .text-box {
    margin-top: 2rem;
  }
  .container .content .text-box + .text-box > .h3 {
    margin-top: 3.2rem;
  }
  .container .content .text-box .table-box {
    margin-top: 2rem;
  }
  .container .content .text-box .numbering {
    margin-top: 1.2rem;
    padding-left: 2rem;
  }
  .container .content .text-box .numbering li {
    list-style-type: decimal;
  }
  .container .content .text-box .numbering li + li {
    margin-top: 1.2rem;
  }
  .container .content .text-box .numbering + .txt {
    margin-top: 1.2rem;
  }
  .container .content .text-box .txt + .txt {
    margin-top: 1.2rem;
  }
  .container .content .text-box .txt + .btn.quaternary {
    margin-top: 2.4rem;
  }
  .container .content .text-box .icon:after {
    vertical-align: bottom;
  }
  .container .content .text-box .icon.icon_NICE, .container .content .text-box .icon.icon_logo_blue {
    margin-right: 0.6rem;
  }
  .container .content .text-box .icon.icon_NICE + .icon_close_gray, .container .content .text-box .icon.icon_logo_blue + .icon_close_gray {
    margin: 0 0.4rem 0 0.4rem;
  }
  .container .content .text-box .formCheckS {
    margin-bottom: 24px;
  }
  .container .content .li-link {
    margin-top: 20px;
  }
  .container .content .li-link > li {
    width: 100%;
    height: 40px;
  }
  .container .content .li-link > li > a {
    position: relative;
    display: inline-flex;
    width: 100%;
    align-items: center;
  }
  .container .content .li-link > li > a:after {
    position: absolute;
    right: 0;
    display: block;
    width: 24px;
    height: 24px;
    background: url(/images/svg-sprites/sprites.svg) no-repeat;
    background-position: -420px -60px;
    content: '';
  }
  .container .content .li-link > li > a .icon {
    vertical-align: middle;
    margin-right: 8px;
  }
  .container .content .li-link > li > a > span {
    overflow: hidden;
    width: calc(100% - 75px);
    margin-right: 24px;
    font-weight: var(--font-bold);
    font-size: 16px;
    color: #353535;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .container .content .li-link > li > a > span.h4-r {
    margin-right: 3.2rem;
    font-weight: var(--font-regular);
    font-size: 1.4rem;
    color: #949494;
    text-align: right;
  }
  .container .content .li-link > li + li {
    margin-top: 20px;
  }
  .container .content .li-link > li.gray-box {
    width: calc(100% - -40px);
    height: 100%;
    margin: 20px -20px -25px -20px;
    background-color: #f2f2f2;
  }
  .container .content .li-link > li.gray-box > a {
    margin-top: 32px;
    margin-bottom: 65px;
  }
  .container .content .li-link > li.gray-box > a > span {
    display: block;
    width: auto;
    margin: 0 auto;
    font-size: 14px;
    font-weight: var(--font-medium);
    text-align: center;
    color: #949494;
    border-bottom: 1px solid #949494;
  }
  .container .content .li-link > li.gray-box > a:after {
    display: none;
  }
  .container .content .li-link + .btn {
    margin-top: var(--header-height);
  }
  .container .content .form-wrap > .box.border-b, .container .content .form-wrap .choice-box.border-b {
    margin-bottom: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .container .content .form-wrap > .box + .box, .container .content .form-wrap .choice-box + .box {
    margin-top: 2.4rem;
  }
  .container .content .form-wrap .input-text + .field {
    margin-top: 2.4rem;
  }
  .container .content .form-wrap .input-text .quaternary {
    margin-top: 1.2rem;
  }
  .container .content .form-wrap .tip {
    display: inline-block;
    margin-top: 8px;
    font-weight: var(--font-regular);
    font-size: 14px;
    line-height: 20px;
    color: #949494;
  }
  .container .content .form-wrap + .h4-r {
    margin-top: 3.2rem;
    padding-right: 5.5rem;
  }
  .container .content .form-wrap + .btm-wrap {
    margin-top: 4rem;
  }
  .container .content.easylogin {
    height: 100%;
  }
  .container .content.easylogin .sub-wrap {
    height: 100%;
    background: url(/images/easylogin.svg) center 26rem no-repeat;
  }
  .container .content.easylogin .group-wrap {
    height: 100%;
  }
  .container .content.easylogin .group-wrap .inr {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 0;
  }
  .container .main-wrap {
    padding: 0 2rem 15rem;
    background-color: #fbfbfb;
  }
  .container .main-wrap .inr {
    position: relative;
    top: -28px;
    height: auto;
    padding: 0;
  }
  .container .sub-wrap {
    padding-top: 9.8rem;
    background-color: var(--white);
  }
  .container .sub-wrap.default {
    padding-top: 0;
  }
  .container .sub-wrap.default .text-wrap .title-box {
    padding: 1.6rem 2rem;
  }
  .container .sub-wrap.default .text-wrap .title-box .edit-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.8rem;
  }
  .container .sub-wrap.default .text-wrap .title-box .edit-box .txt.small {
    color: #707070;
  }
  .container .sub-wrap.default .text-wrap .title-box .edit-box > .btn-box {
    gap: 0.4rem;
  }
  .container .sub-wrap.default .text-wrap .title-box .edit-box .edit-btn {
    width: 5.3rem;
    padding: 0.5rem 0.8rem;
    border: 1px solid #949494;
    border-radius: 0.4rem;
    line-height: 0;
    color: #353535;
  }
  .container .sub-wrap.default .text-wrap .badge-tag {
    margin-bottom: 0.8rem;
  }
  .container .sub-wrap.default .text-wrap.answer-type > .text-box {
    padding: 2.4rem 1rem 2.4rem 2rem;
  }
  .container .sub-wrap.default .text-wrap.answer-type > .text-box + .text-box {
    margin-top: 0;
  }
  .container .sub-wrap.default .text-wrap.answer-type > .text-box .txt {
    overflow-y: scroll;
    height: 20rem;
    padding-right: 1rem;
  }
  .container .sub-wrap.default .text-wrap.answer-type > .text-box .txt::-webkit-scrollbar {
    width: 0.3rem;
  }
  .container .sub-wrap.default .text-wrap.answer-type > .text-box .txt::-webkit-scrollbar-thumb {
    background-color: #a5a5a5;
    border-radius: 0.15rem;
  }
  .container .sub-wrap.default .list-box .text-wrap > .text-box {
    padding: 2.4rem 0 0 0;
  }
  .container .sub-wrap.default .text-box {
    padding: 2.4rem 2rem 0 2rem;
  }
  .container .sub-wrap.default .nodata {
    padding: 8rem 0 10rem 0;
    background-color: #fbfbfb;
  }
  .container .sub-wrap.default .nodata .h1 {
    margin-top: 2.4rem;
    color: #353535;
  }
  .container .sub-wrap.default .nodata .txt {
    display: block;
    margin-top: 0.8rem;
    color: #949494;
  }
  .container .sub-wrap.sub {
    padding-top: 8.8rem;
  }
  .container .sub-wrap.navBtm {
    padding-bottom: 11.2rem;
  }
  .container .sub-wrap.navBtm.second {
    padding-bottom: 6.4rem !important;
  }
  .container .sub-wrap.navBtm.includebtn {
    padding-bottom: 8.4rem;
  }
  .container .sub-wrap.expand {
    padding-bottom: 12rem;
  }
  .container .sub-wrap.scrollbTm {
    padding-bottom: 6.4rem;
  }
  .container .sub-wrap.defaultBtm {
    padding-bottom: 4.8rem;
  }
  .container .sub-wrap.list-detail {
    padding-bottom: 4rem;
  }
  .container .sub-wrap .list-box:first-child {
    padding-top: 0;
  }
  .container .sub-wrap .list-box .agree-wrap {
    margin-top: 0;
  }
  .container .sub-wrap + .btm-wrap {
    padding: 2rem 1.6rem;
  }
  .container .sub-wrap .group-wrap {
    padding: 4rem 2rem 3.2rem 2rem;
  }
  .container .sub-wrap .group-wrap + .list-box {
    padding: 3.2rem 2rem 0 2rem;
    border-top: 8px solid #f2f2f2;
  }
  .container .sub-wrap .group-wrap + .list-box .li-link {
    margin: 0;
  }
  .container .sub-wrap .group-wrap + .list-box .li-link li {
    display: flex;
  }
  .container .sub-wrap .group-wrap + .list-box .li-link li .h4-m {
    font-weight: var(--font-medium);
    font-size: 1.4rem;
    color: #707070;
  }
  .container .sub-wrap.version {
    padding-top: 16.8rem;
    background-color: inherit;
  }
  .container .sub-wrap.version .icon {
    margin-bottom: 2.4rem;
  }
  .container .sub-wrap.version .icon + .h2 {
    margin-bottom: 1.2rem;
  }
  .container .sub-wrap.nodata {
    padding-top: 12.8rem;
    background-color: inherit;
  }
  .container .sub-wrap.nodata .icon {
    margin-bottom: 2.4rem;
  }
  .container .sub-wrap.nodata .h1 {
    margin-bottom: 0.8rem;
    color: #353535;
  }
  .container .sub-wrap.nodata .txt {
    color: #707070;
  }
  .container .sub-wrap.default-list {
    padding: 0;
    background-color: #fbfbfb;
  }
  .container .sub-wrap .list-wrap {
    padding-top: 3.2rem;
  }
  .container .sub-wrap .list-wrap .list-box {
    padding: 0 2rem;
    border-top: 0;
  }
  .container .sub-wrap .list-wrap .list-box + .list-box {
    margin-top: 3.2rem;
  }
  .container .sub-wrap .list-wrap .list-box .h2 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .container .sub-wrap .list-wrap .list-box .h2 .badge {
    padding: 0;
  }
  .container .sub-wrap .list-wrap .list-box .h2 .badge.list {
    font-weight: var(--font-bold);
    font-size: 1.6rem;
  }
  .container .sub-wrap .list-wrap .list-box .h2 + .h4-r {
    margin-top: 0.8rem;
    color: #707070;
  }
  .container .sub-wrap .list-wrap .list-box .h2 + .h4-r + .btn {
    margin-top: 1.2rem;
  }
  .container .sub-wrap .list-wrap .list-box > .btn::after {
    display: none;
  }
  .container .sub-wrap .list-wrap .list-box > .btn.sm {
    margin-top: 2rem;
    font-size: 1.5rem;
  }
  .container .sub-wrap .list-wrap .card-wrap {
    margin-top: 2rem;
  }
  .container .sub-wrap .list-wrap .card-wrap .card-body .btn {
    margin-top: 1.6rem;
  }
  .container .sub-wrap .list-wrap .card-wrap .card-body .txt.small {
    display: block;
    margin-top: 1.6rem;
    text-align: center;
  }
  .container .sub-wrap .list-wrap .card-wrap .card-body + .card-head {
    margin-top: 0.8rem;
  }
  .container .sub-wrap .list-wrap .card-wrap .card-body + .card-head .edit-btn {
    padding: 0 3rem;
    font-weight: var(--font-regular);
    font-size: 1.4rem;
    line-height: 20px;
    color: #949494;
  }
  .container .sub-wrap .list-wrap .card-wrap .card-body + .card-head .edit-btn .icon.Img_40px_nodata_2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .container .sub-wrap.qusetion {
    padding-bottom: 3.2rem;
  }
  .container .sub-wrap.maintenance {
    background-color: #fbfbfb;
    text-align: center;
  }
  .container .sub-wrap.maintenance .group-wrap li + li {
    border-top: 1px solid #f2f2f2;
    padding-top: 4rem;
  }
  .group-wrap .form-wrap {
    margin-top: 4rem;
  }
  .card-wrap.agree-wrap .agree-box .card-body:first-child {
    margin-top: 0.8rem;
  }
  .card-wrap.result .card-body {
    margin-top: 1.2rem;
    padding: 0;
    border: 0;
  }
  .card-wrap.result .card-body .card-title {
    margin: 0;
    padding: 0.6rem 0;
    font-size: 1.4rem;
    border-bottom: 0;
  }
  .card-wrap.result .card-body .card-title .title-name {
    gap: 0.8rem;
  }
  .card-wrap.result .h4-r {
    color: #4d4d4d;
  }
  .card-wrap.result .data-period {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid #dbdbdb;
    border-radius: 0.4rem;
    background-color: #f2f2f2;
  }
  .card-wrap.result .data-period .h4 {
    color: #353535;
  }
  .card-wrap.result .data-period + .data-period {
    margin-top: 0.4rem;
  }
  .card-wrap.result .coupon-title {
    margin-top: 2.4rem;
    font-weight: var(--font-bold);
    font-size: 1.4rem;
    color: var(--primary-p600);
    line-height: 20px;
  }
  .card-wrap.result .result-box {
    display: flex;
    justify-content: space-between;
    margin-top: 1.2rem;
  }
  .card-wrap.result .result-box .coupon-item {
    width: 47.5%;
    padding: 2rem 1.6rem;
    background-color: #fbfbfb;
    text-align: center;
  }
  .card-wrap.result .result-box .coupon-item .icon {
    margin-bottom: 0.8rem;
  }
  .card-wrap.result .result-box .coupon-item span.box {
    display: block;
    width: 100%;
    margin-top: 0.8rem;
    height: 2rem;
    padding: 0 0.5rem;
    border-radius: 4px;
    font-weight: var(--font-medium);
    font-size: 1.2rem;
    line-height: 20px;
    color: var(--white);
    background-color: #949494;
  }
  .card-wrap.result + .txt {
    margin-top: 1.2rem;
    font-weight: var(--font-medium);
    font-size: 1.2rem;
    color: #949494;
    line-height: 18px;
  }
  .card-wrap .card-head + .h3, .card-wrap .card-body + .h3 {
    margin: 3.2rem 0 1.2rem 0;
  }
  .card-wrap .card-head + .h3 + .formBox, .card-wrap .card-body + .h3 + .formBox {
    margin-top: 1.2rem;
  }
  .card-wrap .card-head .formCheck .h3, .card-wrap .card-body .formCheck .h3 {
    color: #353535;
  }
  .card-wrap .card-head .formCheck .h4-m, .card-wrap .card-body .formCheck .h4-m {
    padding-right: 2em;
  }
  .card-wrap .card-head .form-label, .card-wrap .card-body .form-label {
    width: calc(100% - 32px);
  }
  .card-wrap .card-head .formCheckS {
    width: 100%;
  }
  .card-wrap .card-head .formCheckS.flex {
    display: flex;
    justify-content: space-between;
  }
  .card-wrap .card-head.edit-list {
    margin-top: 4rem;
    padding: 1.2rem 1.6rem;
  }
  .card-wrap .card-head.edit-list ul li {
    min-height: auto;
    padding: 0;
    border: 0;
  }
  .card-wrap .card-head.edit-list ul li .edit-btn {
    font-weight: var(--font-bold);
  }
  .card-wrap .card-head.small {
    padding: 1rem 1.6rem;
  }
  .card-wrap .card-head.small + .card-body {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .card-wrap .card-head.small + .card-body .formCheckS {
    position: relative;
    height: auto;
    padding: 1.2rem 1.6rem;
  }
  .card-wrap .card-head.small + .card-body .formCheckS .form-label {
    display: flex;
    align-items: center;
  }
  .card-wrap .card-head.small + .card-body .formCheckS .icon.icon_24px_next_gray {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2rem;
  }
  .card-wrap .card-body + .card-body {
    margin-top: 0.8rem;
  }
  .card-wrap .card-body .formCheck.link a.card-title {
    padding-bottom: 0;
    font-size: 1.6rem;
    color: #707070;
    border-bottom: 0;
    line-height: 22px;
  }
  .card-wrap .card-body .card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
    font-weight: var(--font-medium);
    color: #353535;
    border-bottom: 1px solid #dbdbdb;
  }
  .card-wrap .card-body .card-title .title-name {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: var(--font-bold);
  }
  .card-wrap .card-body .card-title .btn {
    width: auto;
    padding: 0 1.6rem;
    border: 1px solid #949494;
    border-radius: 2rem;
    font-weight: var(--font-medium);
    font-size: 1.4rem;
    color: #353535;
    box-sizing: border-box;
  }
  .card-wrap .card-body .card-title .btn.active {
    border-color: var(--primary-p600);
    background-color: var(--primary-p600);
    color: var(--white);
    box-sizing: border-box;
  }
  .card-wrap .card-body .card-title .btn.active .icon_16px_check:after {
    background-position: 0 0;
  }
  .card-wrap .card-body .card-box {
    margin-top: 1.6rem;
    background-color: var(--primary-p100);
  }
  .card-wrap .card-body .card-box .tag-box {
    margin-top: 1.6rem;
  }
  .card-wrap .card-body .card-box .tag-box .tag-item {
    border-color: var(--primary-p300);
    color: var(--primary-p600);
  }
  .card-wrap .card-body .card-box + .formCheck {
    margin-top: 1.6rem;
  }
  .card-wrap .card-body .card-list li {
    display: flex;
    gap: 0.8rem;
  }
  .card-wrap .card-body .card-list li + li {
    margin-top: 2.4rem;
  }
  .card-wrap .card-body .card-list li .list-text .h4, .card-wrap .card-body .card-list li .list-text .h4-r {
    color: #4d4d4d;
  }
  .card-wrap .card-body .card-list.border-b {
    margin-bottom: 2.9rem;
    padding-bottom: 1.6rem;
  }
  .card-wrap .card-body .card-list.namecard > ul > li {
    display: block;
  }
  .card-wrap .card-body .card-list.namecard > ul > li .list-text .title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .card-wrap .card-body .card-list.namecard > ul > li .list-text .call-file {
    margin: 1.2rem 0 0 0;
  }
  .card-wrap .card-body .card-list.namecard > ul > li .list-text .call-file .item button .icon + .h4-r {
    color: #121212;
  }
  .card-wrap .card-body .card-content .h4-m {
    color: #707070;
  }
  .card-wrap .card-body .card-content .h4-m + p {
    margin-top: 0.9rem;
    font-weight: var(--font-medium);
    font-size: 1.2rem;
    line-height: 18px;
    color: #707070;
  }
  .card-wrap .card-body .card-content .h4-m + p + .btn {
    margin-top: 2.4rem;
  }
  .card-wrap .card-body .card-content .card-head {
    margin: 2.4rem 0 0.8rem 0;
    padding: 1.1rem 1.6rem;
  }
  .card-wrap .card-body .card-content .card-head .formCheck [type=checkbox] + .form-label {
    font-size: 1.4rem;
  }
  .card-wrap .card-body .card-content .card-head .formCheck [type=checkbox] + .form-label:before {
    width: 20px;
    height: 20px;
  }
  .card-wrap .card-body .card-content .card-head .formCheck [type=checkbox] + .form-label:after {
    left: 2px;
  }
  .card-wrap .card-body .card-content .edit-list ul li {
    min-height: auto;
    padding: 1.2rem;
    border: 0;
  }
  .card-wrap .card-body .card-content .edit-list ul li .edit-btn {
    font-weight: var(--font-medium);
    font-size: 1.4rem;
  }
  .card-wrap .card-body + .choice-box {
    margin-top: 3.2rem;
  }
  .card-wrap .card-body + .choice-box > .h3 {
    margin-bottom: 1.2rem;
  }
  .card-wrap .card-body .tooltip-box {
    max-width: 267px;
  }
  /*유의사항 스타일*/
  .text-wrap.note-style {
    border-top: 1px solid #f2f2f2;
  }
  .text-wrap.note-style .text-box {
    padding: 2.4rem 0 0 0;
  }
  .text-wrap.note-style .text-box .list-style {
    margin-top: 1.6rem;
  }
  .text-wrap.note-style .text-box .list-style .txt {
    color: #949494;
  }
  .text-wrap.space {
    margin: 2.4rem 2rem 0 2rem;
  }
  .text-wrap.space > .text-box {
    padding: 2.4rem 0 0 0 !important;
  }
  .find-box {
    text-align: center;
  }
  .find-box .under {
    font-weight: var(--font-medium);
    font-size: 1.4rem;
    color: #949494;
    line-height: 16px;
    text-decoration-line: underline;
  }
  .find-box .under + .under {
    position: relative;
    margin-left: 2.5rem;
  }
  .find-box .under + .under:before {
    position: absolute;
    top: 50%;
    left: -13px;
    width: 1px;
    height: 10px;
    background-color: #dbdbdb;
    transform: translateY(-50%);
    content: '';
  }
  .find-box + .btn {
    margin-top: 2.4rem;
  }
  .find-box + .btn + .switch-box {
    margin-top: 2.4rem;
  }
  .btn-box + .switch-box {
    margin-top: 2rem;
  }
  .btn-box.edit-btn, .btn-box.repeat-btn {
    flex-wrap: wrap;
  }
  .btn-box.edit-btn > .btn, .btn-box.repeat-btn > .btn {
    width: calc(50% - 4px);
    height: 4.2rem;
    padding: 0;
    border: 1px solid #dbdbdb;
    border-radius: 1rem;
    background-color: #fbfbfb;
    font-weight: var(--font-bold);
    font-size: 1.6rem;
    color: #4d4d4d;
  }
  .btn-box.edit-btn > .btn > .icon, .btn-box.repeat-btn > .btn > .icon {
    vertical-align: middle;
    margin-right: 8px;
  }
  .btn-box.edit-btn > .btn.active, .btn-box.repeat-btn > .btn.active {
    border-color: var(--primary-p600);
    background-color: var(--primary-p100);
    color: var(--primary-p600);
  }
  .btn-box.add-type {
    flex-wrap: nowrap;
  }
  .switch-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    height: 4rem;
    padding: 1.6rem 1rem;
  }
  .switch-box .switch-btn {
    font-weight: var(--font-medium);
    font-size: 1.4rem;
    color: #4d4d4d;
    line-height: 1.2;
    letter-spacing: -0.35px;
  }
  .choice-box > .h3 {
    margin-bottom: 1.7rem;
  }
  .choice-box + .h3 {
    margin: 4rem 0 1.2rem 0;
  }
  .choice-box > .h4 {
    margin-bottom: 1.3rem;
    color: #707070;
  }
  .choice-box > .h4-r {
    margin-bottom: 1.3rem;
    color: #707070;
  }
  .choice-box > .h4-m {
    margin-bottom: 1.2rem;
    color: #707070;
  }
  .choice-box + .box {
    margin-top: 1.2rem;
  }
  /*Tab*/
  .tabbox .tab-btnbox {
    display: flex;
    padding: 0 2rem;
    border-bottom: 1px solid #DBDBDB;
    background: #fff;
    background-color: #fff;
    align-items: center;
  }
  .tabbox .tab-btnbox > button {
    overflow: hidden;
    width: 100%;
    height: 48px;
    padding: 16px;
    font-weight: var(--font-medium);
    font-size: 16px;
    color: #949494;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .tabbox .tab-btnbox > button.on {
    border-bottom: 3px solid #121212;
    font-weight: var(--font-bold);
    color: #121212;
  }
  .tabbox .tab-btnbox.scroll {
    position: fixed;
    top: 0;
    width: 100%;
    padding-top: 4.8rem;
    transition: all 0.5s;
    z-index: 10;
  }
  .tabbox .tab-btnbox.menus {
    position: sticky;
    top: 48px;
    gap: 2.4rem;
    z-index: 1;
  }
  .tabbox .tab-btnbox.menus > button {
    width: auto;
    padding: 1.5rem 0;
  }
  .tabbox .tab-btnbox.menus + .panel {
    position: relative;
    margin-top: 2.4rem;
  }
  .tabbox .tab-btnbox.menus + .panel .tablist .total {
    border-bottom: 1px solid #DBDBDB;
  }
  .tabbox .tab-btnbox.menus + .panel .tablist .data-style.nodata {
    padding: 8rem 0 0 0;
  }
  .tabbox .tab-btnbox.menus + .panel .tool {
    position: absolute;
    top: 1.3rem;
    right: 2rem;
  }
  .tabbox .tab-btnbox.menus + .panel .tool + .tooltip-box {
    top: 3.7rem;
    right: 2rem;
  }
  .tabbox .panel > .tablist {
    display: none;
  }
  .tabbox .panel > .tablist.on {
    display: block;
  }
  .tabbox .panel > .tablist.form-wrap {
    margin-top: 1.2rem;
  }
  .tabbox .subtab-btnbox {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(100% - 4rem);
    min-height: 4.8rem;
    height: 4.8rem;
    margin: 0 2rem;
    border-radius: 10px;
    background-color: #f2f2f2;
  }
  .tabbox .subtab-btnbox button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 8px;
    font-weight: var(--font-bold);
    font-size: 1.5rem;
    color: #4d4d4d;
    transition: color 0.3s ease-in-out;
    opacity: 0.6;
    z-index: 1;
  }
  .tabbox .subtab-btnbox button.on {
    color: #353535;
    opacity: 1;
  }
  .tabbox .subtab-btnbox button.on .icon_24_gray:after {
    background-position: -450px -20px;
  }
  .tabbox .subtab-btnbox button.on .icon_pino_gray:after {
    background-position: -390px -20px;
  }
  .tabbox .subtab-btnbox .highlight {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 0.8rem);
    height: calc(100% - 0.8rem);
    border-radius: 8px;
    border: 1px solid #4d4d4d;
    background-color: #fff;
    transition: transform 0.3s ease, width 0.3s ease;
    z-index: 0;
  }
  .tabbox .subpanel > .tablist {
    display: none;
    padding-top: 21px;
  }
  .tabbox .subpanel > .tablist.on {
    display: block;
  }
  .subpanel > .tablist {
    display: none;
    padding-top: 21px;
  }
  .subpanel > .tablist.on {
    display: block;
  }
  .formCheckS .form-label .h3 {
    color: #353535;
  }
  .formCheckS + .box {
    margin-top: 5.6rem;
  }
  .modal .modal-dialog.large {
    width: calc(100% - 40px);
  }
  .modal .modal-dialog.card-wrap .card-head {
    margin-top: 2rem;
    padding: 1.2rem 0 1.2rem 1.2rem;
  }
  .modal .modal-dialog.card-wrap .card-head + .card-head {
    margin-top: 1rem;
  }
  .modal .modal-dialog.card-wrap .card-head.edit-list ul li .edit-btn {
    font-weight: var(--font-medium);
    font-size: 1.4rem;
  }
  .modal .modal-dialog .modal-head .h3 {
    padding-right: 2.3rem;
  }
  .modal .modal-dialog.main-pop {
    overflow: hidden;
    max-width: 280px;
    padding: 0;
    border-radius: 8px 8px 0 0;
    background-color: transparent;
  }
  .modal .modal-dialog.main-pop .modal-body img {
    width: 100%;
    height: 439px;
    object-fit: cover;
  }
  .modal .modal-dialog.main-pop .slide-wrap .carousel-wrap .carousel-list .carousel {
    overflow: hidden;
    padding: 0;
  }
  .modal .modal-dialog.main-pop .slide-wrap .carousel-wrap .carousel-list .carousel img {
    height: 100%;
  }
  .modal .modal-dialog.main-pop .slide-wrap .carousel-wrap .carousel-pagination {
    margin: 0;
    padding: 0.8rem;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 6.4rem;
  }
  .modal .modal-dialog.main-pop .modal-footer {
    display: flex;
    margin: 0;
    background-color: #fff;
  }
  .modal .modal-dialog.main-pop .modal-footer .pop-btn {
    position: relative;
    width: 50%;
    padding: 1.4rem 0;
  }
  .modal .modal-dialog.main-pop .modal-footer .pop-btn.h4-m {
    color: #4d4d4d;
  }
  .modal .modal-dialog.main-pop .modal-footer .pop-btn.h4 {
    color: #353535;
    border-left: 1px solid #dbdbdb;
  }
  .modal .modal-dialog.text-pop {
    overflow: hidden;
    padding: 0;
    background: #E5E8EC;
    border-radius: 8px 8px 0 0;
  }
  .modal .modal-dialog.text-pop .modal-head {
    padding: 30px 22px 20px 22px;
    text-align: center;
    color: #4D4D4D;
  }
  .modal .modal-dialog.text-pop .modal-head > strong {
    font-size: 20px;
    line-height: 24px;
  }
  .modal .modal-dialog.text-pop .modal-head > strong > img {
    display: block;
    margin: 0 auto 10px auto;
  }
  .modal .modal-dialog.text-pop .modal-head > p {
    font-size: 12px;
    line-height: 16px;
  }
  .modal .modal-dialog.text-pop .modal-body {
    padding: 0 22px 30px 22px;
    color: #4D4D4D;
  }
  .modal .modal-dialog.text-pop .modal-body .sub-title {
    font-weight: var(--font-medium);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.12px;
  }
  .modal .modal-dialog.text-pop .modal-body .s-guide {
    display: block;
    position: relative;
    padding-left: 14px;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    color: #949494;
  }
  .modal .modal-dialog.text-pop .modal-body .s-guide::after {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    content: '※';
  }
  .modal .modal-dialog.text-pop .modal-body .flex-box > .item {
    display: flex;
    padding: 14px 0;
    align-items: flex-start;
    gap: 12px;
  }
  .modal .modal-dialog.text-pop .modal-body .flex-box > .item + .item {
    border-top: 1px solid #fff;
  }
  .modal .modal-dialog.text-pop .modal-body .item span {
    display: block;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
  }
  .modal .modal-dialog.text-pop .modal-body .item span.tag-title {
    padding: 5px 12px;
    border-radius: 20px;
    background: #949494;
    font-size: 12px;
    text-align: center;
    color: #fff;
    line-height: 16px;
    flex: 0 0 82px;
  }
  .modal .modal-dialog.text-pop .modal-body .item:first-child {
    padding-top: 0;
  }
  .modal .modal-dialog.text-pop .modal-body .item:last-child {
    padding-bottom: 0;
  }
  .modal .modal-dialog.text-pop .modal-footer {
    display: flex;
    margin: 0;
    background-color: #fff;
  }
  .modal .modal-dialog.text-pop .modal-footer .pop-btn {
    position: relative;
    width: 50%;
    padding: 1.4rem 0;
  }
  .modal .modal-dialog.text-pop .modal-footer .pop-btn.h4-m {
    color: #4d4d4d;
  }
  .modal .modal-dialog.text-pop .modal-footer .pop-btn.h4 {
    color: #353535;
    border-left: 1px solid #dbdbdb;
  }
  .modal .modal-body.center .h3 {
    margin-top: 1.6rem;
    color: #4d4d4d;
  }
  .modal .full {
    padding-top: env(safe-area-inset-top);
  }
  .modal-laybtm .modal-main .edit-list {
    display: block;
  }
  .modal-laybtm .modal-main .edit-list.rotation ul li {
    padding: 1.2rem 4rem;
  }
  .modal-laybtm .modal-main .edit-list ul li {
    padding-right: 0;
  }
  .modal-laybtm .modal-main .term-box {
    padding: 0;
  }
}

.tooltip-wrap {
  display: flex;
  position: relative;
  gap: 0.2rem;
}

.tooltip-wrap .form-label {
  position: static;
}

.tooltip-wrap .form-label .tooltip-box {
  left: 0;
}

.state-box .item {
  position: relative;
}

.state-box .item .user-profile {
  display: flex;
  gap: 1.2rem;
}

.state-box .item .user-profile .info > .h1 {
  margin-top: 0;
}

.state-box .item .user-profile .info > .h1 + .txt.small {
  color: #4d4d4d;
}

.state-box .item .user-profile .info .txt.small {
  display: block;
  margin-top: 0.2rem;
}

.state-box .item .user-profile.border-b {
  padding-bottom: 1.2rem;
}

.state-box .item .btn-profile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.2rem;
}

.state-box .item .btn-profile button {
  display: flex;
  align-items: center;
}

.state-box .item .btn-profile button > .h4-m {
  color: #388BFF;
}

.state-box .item .icon.icon_24px_next_gray {
  position: absolute;
  top: 2rem;
  right: 1.6rem;
}

.btn-tog .txt.small {
  display: block;
  padding-right: 10rem;
}

.btn-tog label {
  position: static;
}

.btn-tog label:after, .btn-tog label:before {
  top: 50%;
  transform: translateY(-50%);
}

.btn-tog label em {
  margin-top: 0 !important;
}

.edit-list .link-list {
  position: relative;
  padding: 0;
  background-color: #fff;
}

.edit-list .link-list .edit-btn {
  overflow: hidden;
  position: static;
  padding: 1.6rem 5rem 1.6rem 2rem;
  box-sizing: border-box;
}

.edit-list .link-list .edit-btn .badge-tag {
  margin-bottom: 0.4rem;
}

.edit-list .link-list .edit-btn .h3-m {
  overflow: hidden;
  margin-bottom: 0.4rem;
  color: #4d4d4d;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
  box-sizing: border-box;
}

.edit-list .link-list .edit-btn .icon {
  right: 2rem;
}

.edit-list .link-list .txt.small {
  display: block;
  color: #707070;
}

.edit-list.integrated-search .h3 {
  display: flex;
  align-items: center;
  gap: 4px;
}

.edit-list.integrated-search .h3 .modalbtn {
  display: block;
}

.edit-list.integrated-search li .edit-btn {
  display: flex;
  gap: 4px;
  padding-right: 2.4rem;
}

@media (min-width: 600px) {
  .multiple-select-box {
    height: calc(100% - 375px) !important;
  }
}

@media screen and (max-width: 768px) {
  .h1 .dis-bl {
    display: block;
  }
  .card-box .btn > span.s-bubble {
    left: 62px;
    transform: translateX(0);
  }
}

.form-label {
  display: flex;
  align-items: center;
}

.form-label.field {
  padding: 0.5rem 0 0.5rem 0;
}

.form-label + .btn-box {
  margin-top: 0.8rem;
}

.form-label + .txt.small {
  display: block;
  margin: 0.4rem 0 0 2.8rem;
}

.inputbtn-side {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  margin-top: 0.8rem;
}

.inputbtn-side .input-text {
  flex: 1;
  margin-top: 0;
}

.inputbtn-side .input-text input[type=text]:read-only, .inputbtn-side .input-text input[type=password]:read-only, .inputbtn-side .input-text input[type=tel]:read-only, .inputbtn-side .input-text input[type=number]:read-only, .inputbtn-side .input-text input[type=search]:read-only, .inputbtn-side .input-text input[type=date]:read-only, .inputbtn-side .input-text input[type=email]:read-only, .inputbtn-side .input-text input[type=url]:read-only, .inputbtn-side .input-text input[type=time]:read-only {
  opacity: 0.4;
}

.inputbtn-side .btn.quaternary {
  width: 22.8888%;
  height: 4.2rem;
  margin-top: 0;
}

.badge.list {
  background-color: #e9f2ff;
  color: var(--primary-p600);
}

.badge.step {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding: 0.2rem 1.2rem;
  font-weight: var(--font-medium);
  border-radius: 80rem;
  background-color: var(--primary-p600);
  color: #fbfbfb;
}

/* 불릿 */
.bullet-type {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.8rem;
}

.bullet-type .bullet {
  padding-left: 0.255rem;
}

/* 리스트 타입 */
.list-style {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

.list-style li + li {
  margin-top: 0.4rem;
}

.list-style.disc-type > li > .txt {
  position: relative;
}

.list-style.disc-type > li > .txt:before {
  position: absolute;
  top: 0.7rem;
  left: -0.8rem;
  width: 3px;
  height: 3px;
  border-radius: 100%;
  background-color: #4d4d4d;
  content: '';
}

.list-style.bar-type {
  padding-left: 0;
}

.list-style.bar-type > li > .txt {
  position: relative;
  display: block;
  margin-top: 0.6rem;
}

.list-style.bar-type > li > .txt:before {
  position: absolute;
  top: 0.7rem;
  left: -0.9rem;
  width: 5px;
  height: 1px;
  background-color: #4d4d4d;
  content: '';
}

/* 키워드 검색 */
.input-text.input-search .icon.icon_24px_del {
  right: 3.8rem;
}

.input-text.input-search .icon.icon_20px_search {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.input-text.input-search + .tip {
  margin: 0;
  padding: 0;
}

.input-text.input-search + .tip:after {
  display: none;
}

.input-text .h4-r {
  margin-top: 0.8rem;
  color: #949494;
}

/* 증명서 리스트 */
.shorts {
  padding-bottom: 65px;
}

.shorts > li {
  display: flex;
  padding: 1.6rem 2rem;
  border-top: 1px solid #f2f2f2;
  justify-content: space-between;
}

.shorts > li:last-child {
  border-bottom: 1px solid #f2f2f2;
}

.shorts > li > .formCheckS {
  display: none;
}

.shorts > li > div {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.shorts > li > div > .info-box {
  margin-top: 16px;
  color: #121212;
}

.shorts > li > div > .info-box > span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #949494;
}

.shorts > li > div > .info-box > span.info-address {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.shorts > li > div > .info-box > span .doc {
  position: relative;
  margin-left: 1.2rem;
}

.shorts > li > div > .info-box > span .doc::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: #707070;
  transform: translateY(-50%);
  content: '';
}

.shorts > li > div > .info-box > span .doc::after {
  margin-left: 0.4rem;
  content: attr(data-size);
}

.shorts > li > div > .info-box > .link {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}

.shorts > li > div > .info-box > .link > span {
  font-size: 12px;
  color: #949494;
}

.shorts > li > div > .info-box > .link > button {
  font-size: 14px;
  color: #707070;
  font-weight: var(--font-medium);
}

.shorts > li > div > .info-box > .link > button > .icon {
  margin-left: 2px;
  vertical-align: middle;
}

.shorts > li > div > .info-box > .link .h4-m {
  display: flex;
  align-items: center;
  color: #707070;
}

.shorts > li > div > .info-box .h3-m.info-address {
  font-size: 1.6rem;
  color: #353535;
}

.shorts > li > div > .info-box .h4-r {
  font-size: 1.4rem;
  color: #4d4d4d;
}

.shorts > li > div > .info-box .txt + .txt {
  color: #b7b7b7;
}

.shorts.on > li > .formCheckS {
  display: block;
}

.shorts.on > li .text span {
  width: calc(100% - 25px);
}

.shorts.top-space {
  margin-top: 184px;
}

/*쿠폰형식 스타일 */
.coupon-tab .no-data {
  display: block;
  padding: 0;
  border-bottom: none;
  background: #fbfbfb;
}

.coupon-tab .no-data > .item {
  padding: 80px 0;
  text-align: center;
}

.coupon-tab .no-data > .item > span {
  display: block;
  color: #949494;
}

.coupon-tab .shorts > li {
  gap: 10px;
}

.coupon-tab .shorts > li > .item {
  width: auto;
}

.coupon-tab .shorts > li > .item > span.off {
  display: none;
}

.coupon-tab .shorts > li > .con-box {
  flex: 1;
}

.coupon-tab .shorts > li > .con-box .badge-tag {
  font-weight: var(--font-bold);
}

.coupon-tab .shorts > li .info-box > .c-number {
  display: flex;
  margin-top: 16px;
  padding: 1.4rem 1.6rem;
  border: 1px solid #DBDBDB;
  background: #FBFBFB;
  border-radius: 4px;
  justify-content: space-between;
  align-items: center;
}

.coupon-tab .shorts > li .info-box > .c-number > button {
  display: inline-flex;
  color: #1D7AFC;
  align-items: center;
}

.coupon-tab .shorts > li .info-box > .c-number > button.over {
  color: #949494;
}

.coupon-tab .shorts > li .info-box > .c-number > button.over > span {
  padding: 0 5px;
  border: 1px solid #787878;
  background: #f2f2f2;
  border-radius: 4px;
  font-weight: var(--font-medium);
  font-size: 12px;
  line-height: 18px;
}

.coupon-tab .shorts > li .info-box > .c-number > button > span {
  margin-left: 8px;
}

.coupon-tab .coupon-over .shorts > li .info-box {
  margin-top: 0;
}

.call-file {
  display: flex;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

.call-file > .item {
  overflow: hidden;
  width: 100px;
  height: 96px;
  border-radius: 10px;
  background-color: #FBFBFB;
  flex-grow: 1;
}

.call-file > .item > label {
  display: block;
  width: 100%;
  height: 100%;
  padding-top: 16px;
  font-size: 14px;
  text-align: center;
  color: #121212;
}

.call-file > .item > input[type="file"] {
  overflow: hidden;
  position: absolute;
  width: 0;
  height: 0;
  padding: 0;
  border: 0;
}

.call-file > .item .icon {
  display: block;
  margin: 0 auto 4px;
}

.call-file > .item > button {
  width: 100%;
  height: 100%;
  font-size: 14px;
  line-height: 20px;
  color: #121212;
}

/*btn background 검정색 버전*/
.btm-wrap > .btn-box.btn-black {
  display: none;
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 56px;
  background-color: #333;
  gap: 0;
  z-index: 10;
  margin-bottom: env(safe-area-inset-bottom);
}

.btm-wrap > .btn-box.btn-black > button {
  width: 100%;
  font-weight: var(--font-medium);
  font-size: 1.6rem;
  text-align: center;
  color: #fff;
}

.btm-wrap > .btn-box.btn-black > button + button {
  border-left: 1px solid #949494;
}

.btm-wrap > .btn-box.btn-black > button:disabled {
  color: #707070;
}

.btm-wrap > .btn-box.btn-black.on {
  display: flex;
}

.btm-wrap > .btn-box.btn-black.nav-include {
  bottom: 64px;
}

/*증명서 미리보기*/
.preview-wrap {
  width: 100%;
  height: 100%;
  padding: 1.6rem 2rem 4rem;
}

.preview-wrap > img {
  width: 100%;
  height: 100%;
}

/* 서브페이지 타이틀 */
.sub_tit {
  padding: 2.4rem 2rem;
}

h3 > span {
  display: block;
}

.description {
  width: 100%;
  min-height: 130px;
  padding: 1.6rem 2rem;
  background: #fff;
}

.description > span {
  display: block;
}

.description > span.tool_tit {
  font-weight: var(--font-medium);
  color: #707070;
}

.description .icon {
  margin-left: 2px;
}

/* 필수 아이콘 */
.pilsu {
  position: relative;
}

.pilsu::after {
  position: absolute;
  top: 50%;
  left: 2px;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: #FF694A;
  content: '*';
}

/*달력커스텀*/
.calendar-box {
  display: flex;
  gap: 0.8rem;
}

.calendar-box > .select_box {
  width: 100%;
}

.calendar-box > .select_box button {
  padding: 0 1.2rem;
}

.calendar-box > .select_box button .icon.icon_20px_arrow_down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.2rem;
}

.calendar-box + .btn {
  margin-top: 2.4rem;
}

/*모달 추가 css*/
.modal .modal-content .tip {
  position: relative;
  display: block;
  padding-left: 23px;
  margin: 8px 0;
  color: #949494;
  font-size: 14px;
}

.modal .modal-content .tip::after {
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(/images/svg-sprites/sprites.svg) no-repeat;
  background-position: -360px -60px;
  content: '';
}

.modal .modal-main + .h3 {
  margin-top: 1.6rem;
}

.modal-laybtm {
  padding-bottom: calc(env(safe-area-inset-bottom) + 8px);
}

/* 셀렉트박스 커스텀 */
.select_box {
  display: block;
  position: relative;
}

.select_box > button {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  margin-top: 0.8rem;
  padding: 0 16px;
  border: 1px solid #DADADA;
  background: #fff;
  text-align: left;
  border-radius: 8px;
  box-sizing: border-box;
  align-items: center;
  justify-content: space-between;
}

.select_box > button > span {
  font-weight: var(--font-bold);
  font-size: 16px;
  color: #353535;
}

.select_box > button > span.on {
  font-weight: var(--font-bold);
  color: #353535;
}

.select_box > button.default {
  background: #FBFBFB;
}

.select_box > button.active > span {
  font-weight: var(--font-bold);
  color: #353535;
}

/*마이데이터 현황박스*/
.state-box {
  padding: 24px 20px;
}

.state-box.bg-color {
  background-color: #E9F2FF;
}

.state-box .h1 {
  margin-top: 1.6rem;
}

.state-box > .item {
  margin-top: 20px;
  padding: 20px 16px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 16px 0 rgba(35, 48, 59, 0.06);
}

.state-box > .item .title {
  text-align: center;
}

.state-box > .item .title > span {
  display: block;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: #353535;
}

.state-box > .item .title > strong {
  display: inline-block;
  font-weight: var(--font-bold);
  font-size: 22px;
  line-height: 30px;
  color: #1D7AFC;
}

.state-box > .item .title > strong.choice {
  color: #5061EB;
}

.state-box > .item .title + .progress {
  margin-top: 2.4rem;
}

.state-box > .item .title + .progress + .data-list {
  margin-top: 1.2rem;
}

.state-box .data-list {
  border-radius: 4px;
  background: #FBFBFB;
}

.state-box .data-list > ul {
  overflow: hidden;
  padding: 0 16px 12px 16px;
}

.state-box .data-list > ul > li {
  overflow: hidden;
  float: left;
  width: 50%;
  height: 25px;
  margin-top: 12px;
  padding-right: 12px;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: #4d4d4d;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.state-box .data-list .icon {
  margin-right: 8px;
  vertical-align: middle;
}

.state-box .d-day {
  display: block;
  margin-top: 12px;
  font-weight: var(--font-regular);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #707070;
}

/*나의 안심지수*/
.mydata {
  width: 100%;
  padding: 32px 20px;
  background: #FBFBFB;
  text-align: center;
}

.mydata .tag-box .h4-m {
  color: #707070;
}

.mydata .tag-box + .h1 {
  margin-top: 0.4rem;
}

.mydata .s-txt {
  color: #707070;
}

.mydata .accent {
  color: #FF694A;
}

.mydata .score-box > ul > li {
  display: inline-flex;
  width: 100%;
  padding: 16px;
  border: 1px solid #F2F2F2;
  background: #fff;
  font-weight: var(--font-bold);
  font-size: 14px;
  color: #353535;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.mydata .score-box > ul > li > span:last-child {
  min-width: 72px;
}

.mydata .score-box > ul > li > span.num {
  margin-left: 8px;
  color: #949494;
  font-weight: var(--font-regular);
  font-size: 14px;
  text-align: right;
  flex-shrink: 0;
}

.mydata .score-box > ul > li > span.num > em {
  font-weight: var(--font-bold);
  font-size: 16px;
  color: #1D7AFC;
}

.mydata .score-box > ul > li + li {
  margin-top: 8px;
}

.mydata .score-box > ul > li .icon {
  margin-right: 8px;
  vertical-align: middle;
}

.mydata .score-box > ul .data {
  flex-direction: column;
  height: auto;
  gap: 1.6rem;
}

.mydata .score-box > ul .data .top {
  overflow: hidden;
  display: inline-flex;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  justify-content: space-between;
  align-items: center;
}

.mydata .score-box > ul .data .bottom {
  width: 100%;
}

.mydata .score-box > ul .data .bottom .txt {
  padding-top: 0.8rem;
  border-top: 1px solid #f2f2f2;
}

.mydata .score-box.active {
  display: none;
}

.mydata .score-box .reference {
  display: none;
  width: 100%;
  margin-top: 1.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid #F2F2F2;
}

.mydata .score-box .reference .tit {
  display: flex;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  color: #707070;
  align-items: center;
  gap: 2px;
}

.mydata .score-box .reference .tit + p {
  margin-top: 8px;
  font-weight: var(--font-medium);
  font-size: 1.2rem;
  line-height: 18px;
  color: #707070;
}

.mydata .score-box .reference .subtxt {
  display: block;
  font-weight: var(--font-medium);
  font-size: 1.2rem;
  line-height: 1.8;
  color: #707070;
}

.mydata .score-box .reference .tool {
  vertical-align: inherit;
}

.mydata .score-box .reference .ref-list {
  margin-top: 0.8rem;
  padding: 1.6rem;
  background: #fbfbfb;
  border-radius: 10px;
}

.mydata .score-box .reference .ref-list > ul {
  margin-bottom: 12px;
}

.mydata .score-box .reference .ref-list > ul > li {
  display: inline-flex;
  position: relative;
  width: 100%;
  margin-top: 8px;
  padding-left: 8px;
  justify-content: space-between;
}

.mydata .score-box .reference .ref-list > ul > li:first-child {
  margin-top: 0;
}

.mydata .score-box .reference .ref-list > ul > li::after {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #949494;
  transform: translateY(-50%);
  content: '';
}

.mydata .score-box .reference .ref-list > ul > li > span {
  font-weight: var(--font-medium);
  font-size: 12px;
  color: #707070;
}

.mydata .score-box .reference .ref-list > ul > li > b {
  font-weight: var(--font-bold);
  font-size: 12px;
  color: #1D7AFC;
}

.mydata .score-box .reference + .btn-score {
  display: block;
  width: 100%;
  padding-top: 1.8rem;
  border-top: 1px solid #F2F2F2;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  color: #707070;
  text-align: center;
}

.mydata .btn-score {
  margin-top: 20px;
  font-weight: var(--font-medium);
  font-size: 14px;
  color: #949494;
}

.mydata .btn-score > .icon {
  margin-left: 4px;
  vertical-align: middle;
}

.mydata .btn-score.box-fold {
  color: #4d4d4d;
}

.mydata .btn-score.box-fold > .icon:after {
  background-position: -450px 0px;
}

.mydata.small {
  padding: 2.4rem 2rem;
}

.mydata .h4-r, .mydata .h4 {
  color: #4d4d4d;
}

.mydata .h4 + .txt.small {
  display: block;
  margin-top: 2.4rem;
}

/* 아코디언 */
.accordion > .accordion-item > .accordion-header {
  width: 100%;
  padding: 16px 20px;
  border-bottom: 1px solid #DBDBDB;
}

.accordion > .accordion-item > .accordion-header > button {
  display: inline-flex;
  width: inherit;
  font-weight: var(--font-bold);
  font-size: 16px;
  text-align: left;
  line-height: 22px;
  align-items: flex-start;
}

.accordion > .accordion-item > .accordion-header > button > .num {
  margin-right: 13px;
}

.accordion > .accordion-item > .accordion-header > button > .icon {
  margin-left: auto;
}

.accordion > .accordion-item > .accordion-header > button > .icon_24px_arrow_down::after {
  transition-duration: .5s;
}

.accordion > .accordion-item > .accordion-header.on > button > .icon_24px_arrow_down::after {
  transform: rotate(180deg);
  transition-duration: .5s;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body {
  padding: 16px 20px;
  border-bottom: 1px solid #DBDBDB;
  background-color: #FBFBFB;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 1.25;
  color: #4d4d4d;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body > ul {
  padding-left: 20px;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body > ul > li {
  list-style: disc;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body > ul > li + li {
  margin-top: 16px;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body .box > .item {
  width: calc(50% - 6px);
  min-height: 24px;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body .box > .item.box-pd .h4 {
  margin-top: 0.25rem;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body .box > .item.center {
  text-align: center;
}

.accordion > .accordion-item > .accordion-collapse > .accordion-body .box > .item > span.h4-r {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bottom Nav */
.btm-nav {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6.4rem;
  padding: 0 1.6rem;
  background-color: var(--white);
  box-shadow: 0px -2px 12px 0px rgba(35, 48, 59, 0.04);
  z-index: 1000;
}

.btm-nav ul {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
}

.btm-nav ul .nav-list {
  width: inherit;
  height: inherit;
}

.btm-nav ul .nav-list .nav-btn {
  display: flex;
  height: inherit;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.btm-nav ul .nav-list .nav-btn span {
  display: block;
  margin-top: 0.2rem;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  color: #949494;
}

.btm-nav ul .nav-list .nav-btn.on .icon_secure:after {
  background-position: -270px -20px;
}

.btm-nav ul .nav-list .nav-btn.on .icon_home:after {
  background-position: -210px -20px;
}

.btm-nav ul .nav-list .nav-btn.on .icon_mydata:after {
  background-position: -150px -20px;
}

.btm-nav ul .nav-list .nav-btn.on span {
  font-weight: var(--font-medium);
  color: #121212;
}

.btm-nav + .btm-wrap {
  display: none;
}

.btm-nav + .btm-wrap.on {
  display: block;
}

/*영수증 형식 스타일*/
.receipt > li,
.both-style > li {
  display: flex;
  padding: 8px 0;
  gap: 8px;
  flex-wrap: nowrap;
}

.receipt > li > P:first-child,
.both-style > li > P:first-child {
  font-weight: var(--font-regular);
  font-size: 14px;
  text-align: left;
  color: #4d4d4d;
  line-height: 20px;
  flex: 1 0 auto;
}

.receipt > li > P:last-child,
.both-style > li > P:last-child {
  font-weight: var(--font-bold);
  font-size: 14px;
  text-align: right;
  line-height: 20px;
  flex: 1 1 auto;
}

.receipt .point,
.both-style .point {
  color: #1D7AFC;
}

.receipt.sharp > p:first-child,
.both-style.sharp > p:first-child {
  font-weight: var(--font-regular);
}

.data-style > li {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
}

.data-style > li .text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.data-style > li .text > p {
  width: 100%;
}

.data-style > li .text > p > span {
  overflow: hidden;
  display: block;
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 22px;
  color: #353535;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.data-style > li .text > p > span.tell {
  display: block;
  margin-top: 0.4rem;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 20px;
}

.data-style > li .text > p > span.address {
  display: block;
  margin-top: 0.4rem;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  color: #949494;
  line-height: 18px;
}

.data-style > li .text > p > em {
  display: block;
  font-weight: var(--font-regular);
  font-size: 12px;
  line-height: 18px;
  color: #949494;
}

.data-style > li > a {
  width: 100px;
  font-weight: var(--font-medium);
  font-size: 14px;
  text-align: right;
  line-height: 16px;
  color: #707070;
}

.data-style > li > a > .icon {
  vertical-align: middle;
}

/*매물정보 상세*/
.info-detail {
  margin-top: 20px;
}

.info-detail > .badge-tag {
  padding: 0.4rem 0.5rem;
  font-weight: var(--font-bold);
}

.info-detail > .badge-tag + .date {
  margin-left: 7px;
  padding: 4px;
  color: #4d4d4d;
  font-weight: var(--font-bold);
  font-size: 1.2rem;
  line-height: 14px;
}

/*프로그래스바*/
.progress {
  width: 100%;
  height: 8px;
  appearance: none;
}

.progress::-webkit-progress-bar {
  overflow: hidden;
  background: #F2F2F2;
  border-radius: 100px;
}

.progress::-webkit-progress-value {
  background: #1D7AFC;
}

.progress.choice::-webkit-progress-value {
  background: #6C5AE6;
}

.progress.main::-webkit-progress-value {
  background: #61d3c1;
}

/*팝업 슬라이드*/
.slide-wrap {
  width: 100%;
  height: 100%;
}

.slide-wrap .title {
  text-align: center;
}

.slide-wrap .left {
  text-align: left;
}

.slide-wrap .carousel-wrap .carousel-list {
  height: 100%;
}

.slide-wrap .carousel-wrap .carousel-list > .carousel {
  background-color: #fff;
}

.slide-wrap .carousel-wrap .carousel-list > .carousel > img {
  max-width: 320px;
  width: 100%;
  height: 60vh;
}

.slide-wrap .carousel-wrap .carousel-list + .carousel-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

/*온보딩*/
.onboarding {
  height: 100%;
}

.onboarding > .slide-wrap .carousel-wrap {
  height: 100%;
}

.onboarding > .slide-wrap .carousel-wrap .carousel-pagination {
  position: absolute;
  bottom: 16.8rem;
  left: 50%;
  transform: translateX(-50%);
}

.onboarding > .slide-wrap .carousel {
  padding: 50px 0;
  text-align: right;
}

.onboarding > .slide-wrap .carousel > .title {
  padding: 0 20px;
}

.onboarding > .slide-wrap .carousel > .title + img {
  max-width: 352px;
  height: auto;
  margin-top: 9.8rem;
  margin-right: -6.4rem;
}

.onboarding + .btm-wrap + .formCheck {
  display: flex;
  margin-top: 12px;
  padding-bottom: 2rem;
  justify-content: center;
}

.onboarding + .btm-wrap + .formCheck .form-label {
  display: inline-flex;
  align-items: center;
  font-weight: var(--font-medium);
  font-size: 14px;
  color: #353535;
}

.onboarding + .btm-wrap + .formCheck .form-label > em {
  border-bottom: 1px solid #353535;
}

/*토탈박스*/
.total {
  overflow: hidden;
  padding: .7rem 2rem;
  font-weight: var(--font-bold);
  font-size: 16px;
  color: #353535;
}

.total > span > em {
  margin-left: 5px;
  color: #1D7AFC;
}

.total .list-num {
  line-height: 28px;
}

.total .right-box {
  float: right;
  width: auto;
}

.total .btn_system,
.total .btn_array {
  display: inline-block;
  padding: 4px 8px;
  border: 1px solid #949494;
  border-radius: 4px;
  font-weight: var(--font-bold);
  font-size: 14px;
  color: #353535;
}

.total .btn_system::after,
.total .btn_array::after {
  display: block;
  clear: both;
  content: '';
}

.total .btn_system .icon,
.total .btn_array .icon {
  margin-right: 2px;
  vertical-align: middle;
}

.total > .formCheckS {
  display: none;
}

.total.on > .list-num {
  display: none;
}

.total.on > .formCheckS {
  display: inline-block;
}

.total.on > .formCheckS em {
  font-weight: var(--font-bold);
  font-size: 16px;
  color: #353535;
}

.total .tool {
  float: right;
  padding-top: 0.5rem;
}

/*input 텍스트박스 체킹*/
.input-text {
  position: relative;
}

.input-text .checking {
  position: absolute;
  top: 11px;
  right: 10px;
  font-weight: var(--font-medium);
  font-size: 16px;
  color: #B7B7B7;
}

.input-text .checking > span.alert {
  color: #EF5350;
}

.input-text > input.alert {
  border: 1px solid #EF5350;
  background: #fff;
}

.input-text #tax_01:focus + .checking {
  color: #353535;
}

/*input box 커스텀  cutting - 우측부터 텍스트 입력 층,금액(원) */
.input-text.cutting {
  flex-direction: row;
  gap: 8px;
}

.input-text.cutting > span {
  line-height: 42px;
}

.input-text.cutting input[type='number'] {
  text-align: right;
}

.input-text.cutting .box {
  position: relative;
  width: 100%;
}

.input-text.cutting .box > input + span {
  position: absolute;
  top: 50%;
  right: 12px;
  color: #353535;
  font-weight: var(--font-medium);
  font-size: 16px;
  transform: translateY(-50%);
}

.input-text.cutting .box .unit {
  padding-right: 3.6rem;
}

/* 마이데이터 > 나의 데이터 수집내역 */
.sub-wrap .top-banner {
  position: relative;
  width: 100%;
  height: 136px;
  padding: 0 20px;
  background-color: #edf1f5;
}

.sub-wrap .top-banner.check_1 {
  background-image: url(/images/img_doc_check01.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 100px 102px;
}

.sub-wrap .top-banner.check_2 {
  background-image: url(/images/img_doc_check02.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 99px 100px;
}

.sub-wrap .top-banner.check_3 {
  background-image: url(/images/img_doc_check03.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 99px 100px;
}

.sub-wrap .top-banner.check_4 {
  background-image: url(/images/img_doc_check04.png);
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  background-size: 100px 100px;
}

.sub-wrap .top-banner.check_4 + .term-box .total {
  margin-top: 0;
}

.sub-wrap .top-banner .h3 {
  padding-top: 3.5rem;
}

.sub-wrap .top-banner .h2 {
  padding-top: 2.4rem;
}

.sub-wrap .top-banner .h2 + .h4-r {
  margin-top: 0.8rem;
  color: #707070;
}

.sub-wrap .top-banner + .term-box {
  display: block;
  padding-top: 2.4rem;
  border-bottom: 1px solid #dbdbdb;
  background-color: var(--white);
  z-index: 100;
}

.sub-wrap .top-banner + .term-box .edit-btn {
  margin-top: 1.2rem;
}

.sub-wrap .top-banner + .term-box .total {
  margin-top: 2.4rem;
}

.sub-wrap .top-banner + .total {
  margin-top: 2.4rem;
  border-bottom: 1px solid #dbdbdb;
}

.sub-wrap .top-banner.small {
  height: 12.4rem;
}

.sub-wrap .top-banner .tool {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
}

.sub-wrap .top-banner .tooltip-box {
  top: 3.6rem;
  right: 1rem;
  z-index: 101;
}

.sub-wrap .top-banner .tooltip-box .tooltip-content li + li {
  margin-top: 0.9rem;
}

.sub-wrap .term-box {
  position: sticky;
  transition: top 0.5s ease-in-out;
}

.sub-wrap .shorts {
  padding-bottom: 0;
}

/*스크롤시 term-box*/
.sub-wrap > .top-banner + .term-box.subnav-up {
  top: 0;
}

.sub-wrap > .top-banner + .term-box.subnav-down {
  top: 32px;
}

/*조회기간 버튼*/
.term-box {
  width: 100%;
  padding: 0 20px;
}

.term-box .h3 {
  color: #353535;
}

.term-box.scroll {
  position: fixed;
  top: 0;
  background: #fff;
  z-index: 999;
}

.term-box .total {
  margin-bottom: 8px;
  padding: 0;
}

.term-box > .btn-box.edit-btn {
  flex-wrap: nowrap;
}

.term-box > .btn-box.edit-btn > .btn {
  width: 100%;
}

.list-text > span {
  color: #4d4d4d;
}

/* Button */
.btn.quaternary {
  margin-top: 1.2rem;
  background-color: #949494;
  color: #fff;
}

.btn.link-btn {
  margin-top: 12px;
  line-height: 32px;
}

.btn.ss > .icon_16px_check {
  vertical-align: middle;
}

.btn.ss > .icon_16px_check::after {
  vertical-align: unset;
}

/* 메인 Card */
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.4rem 2rem;
  border-radius: 12px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 8px 4px 16px 0 rgba(35, 48, 59, 0.06);
}

.card[data-state="off"] .card-box {
  display: display;
}

.card[data-state="off"] .card-list {
  display: none;
}

.card[data-state="on"] .card-box {
  display: none;
}

.card[data-state="on"] .card-list {
  display: block;
  width: 100%;
  margin-top: 2.4rem;
}

.card[data-state="on"] .card-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card[data-state="on"] .card-list ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  border-radius: 12px;
  background-color: #fbfbfb;
}

.card[data-state="on"] .card-list ul li .box .h2 {
  text-align: left;
}

.card[data-state="on"] .card-list ul li .box .h1 {
  display: flex;
  align-items: center;
  margin-top: 0.4rem;
  color: var(--primary-p600);
}

.card[data-state="on"] .card-list ul li .box .h1:before {
  color: var(--primary-p600);
  content: attr(data-count);
}

.card[data-state="on"] .card-list ul li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  width: 100%;
  padding: 1.6rem 2rem;
  border-radius: 12px;
  background-color: #fbfbfb;
}

.card.first {
  border: 4px solid #5061eb;
  box-shadow: 0px 4px 16px 0px rgba(35, 48, 59, 0.06);
}

.card.first .card-box {
  margin-top: 2.4rem;
}

.card.mydata {
  background-color: var(--primary-p900);
  box-shadow: 0px 4px 16px 0px rgba(35, 48, 59, 0.06);
}

.card.mydata .h4.title {
  color: #61d3c1;
}

.card.mydata .card-box .h1 {
  color: var(--white);
}

.card.mydata .card-box .progress {
  margin-top: 2.4rem;
  padding: 0 0.4rem;
}

.card.mydata .card-box .txt {
  margin-top: 1.2rem;
  color: var(--primary-p200);
}

.card.mydata .card-box .txt .date:before {
  content: attr(data-end-date);
}

.card.Banner {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0;
  box-shadow: 8px 4px 16px 0 rgba(35, 48, 59, 0.06);
}

.card.Banner.carousel-wrap {
  position: relative;
}

.card.Banner.carousel-wrap .carousel-list {
  width: 100%;
}

.card.Banner.carousel-wrap .carousel-list .carousel {
  display: flex;
  justify-content: space-between;
  padding: 0;
  text-align: left;
}

.card.Banner.carousel-wrap .carousel-list .carousel:nth-child(1) {
  background-color: #e9f2ff;
}

.card.Banner.carousel-wrap .carousel-list .carousel .box {
  padding: 2.8rem 0 4.8rem 2rem;
}

.card.Banner.carousel-wrap .carousel-list .carousel .box .h4-r {
  color: #3c3f45;
}

.card.Banner.carousel-wrap .carousel-list .carousel .box .h2 {
  color: #1b1f25;
}

.card.Banner.carousel-wrap .carousel-list .carousel .banner-img {
  max-width: 100%;
  width: 100%;
  height: 120px;
  margin-bottom: 0;
  vertical-align: top;
  object-fit: cover;
}

.card.Banner.carousel-wrap .carousel-pagination {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.card .title-box {
  padding: 0.4rem 1rem;
  background: #fbfbfb;
  border-radius: 100px;
}

.card .title-box .icon_24px_next_gray {
  vertical-align: bottom;
}

.card .h3.title, .card .h4.title {
  color: var(--primary-p600);
}

.card .card-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 0.4rem;
}

.card .card-box .h1 {
  margin-top: 0.4rem;
  color: #4d4d4d;
  letter-spacing: -0.44px;
}

.card .card-box .h1 + .txt {
  margin-top: 0.8rem;
}

.card .card-box .h1 + .txt + .icon {
  margin-top: 2.4rem;
}

.card .card-box .txt {
  margin-top: 2.4rem;
}

.card .card-box .secondary {
  margin-top: 2.4rem;
}

.card + .card {
  margin-top: 2rem;
}

/*하트 차트*/
.heart-chart {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 183px;
  background-size: 220px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.heart-chart > a {
  display: block;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 165px;
}

.heart-chart > strong {
  display: block;
  font-size: 2.2rem;
  color: #353535;
}

.heart-chart > strong > span {
  font-size: 2.8rem;
}

.heart-chart > strong > span[class*="color"] {
  font-size: 2.2rem;
}

.heart-chart > strong .color_01 {
  color: #EF5350;
}

.heart-chart > strong .color_02 {
  color: #FF694A;
}

.heart-chart > strong .color_03 {
  color: #6C5AE6;
}

.heart-chart > strong .color_04 {
  color: #0C66E4;
}

.heart-chart.lv_01 {
  background-image: url(/images/chart-img/lv1.png);
}

.heart-chart.lv_02 {
  background-image: url(/images/chart-img/lv2.png);
}

.heart-chart.lv_03 {
  background-image: url(/images/chart-img/lv3.png);
}

.heart-chart.lv_04 {
  background-image: url(/images/chart-img/lv4.png);
}

.heart-chart.lv_05 {
  background-image: url(/images/chart-img/lv5.png);
}

.heart-chart.lv_06 {
  background-image: url(/images/chart-img/lv6.png);
}

.heart-chart.lv_07 {
  background-image: url(/images/chart-img/lv7.png);
}

.heart-chart.lv_08 {
  background-image: url(/images/chart-img/lv8.png);
}

.heart-chart.lv_09 {
  background-image: url(/images/chart-img/lv9.png);
}

.heart-chart.lv_10 {
  background-image: url(/images/chart-img/lv10.png);
}

.heart-chart.lv_11 {
  background-image: url(/images/chart-img/lv11.png);
}

.card-box .btn {
  position: relative;
  margin-top: 30px !important;
}

.card-box .btn .s-bubble {
  position: absolute;
  top: -30px;
  left: 50%;
  padding: 4px 8px;
  background: #1D7AFC;
  font-weight: var(--font-bold);
  font-size: 1.2rem;
  border-radius: 80px;
  color: #fff;
  transform: translateX(-50%);
}

.card-box .btn .s-bubble::after {
  display: block;
  position: absolute;
  top: 21.5px;
  left: 30px;
  border-bottom: 6px solid transparent;
  border-top: 6px solid #1D7AFC;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: '';
}

.heart-score {
  margin: 20px 0;
}

.heart-score > b {
  display: block;
  font-weight: var(--font-bold);
  font-size: 20px;
  color: #8747fd;
  line-height: 30px;
}

.heart-score > div > span {
  font-size: 14px;
  color: #838A96;
}

.heart-score > div > span:first-child {
  margin-right: -4px;
  font-weight: bold;
  color: #1B1F25;
}

/* 메인 알림 */
.alarm-list {
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 2.4rem 2rem;
  background-color: #fbfbfb;
}

.alarm-list .box {
  padding: 2.4rem 0;
}

.alarm-list .box > .data {
  color: #949494;
  font-weight: var(--font-medium);
}

.alarm-list .box > .tooltip-box {
  position: relative;
  display: block;
  max-width: unset;
  margin-top: 12px;
  padding: 16px 35px 16px 48px;
}

.alarm-list .box .tooltip-header {
  position: relative;
}

.alarm-list .box .tooltip-header::after {
  display: block;
  position: absolute;
  top: -2px;
  left: -31px;
  width: 24px;
  height: 24px;
  background: url(/images/svg-ico/icon_24px_bell.svg) no-repeat center;
  content: '';
}

.alarm-list .box .tooltip-content {
  margin-top: 8px;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
}

.alarm-list .box .tooltip-content .data-time {
  display: block;
  margin-top: 8px;
  font-weight: var(--font-regular);
  font-size: 12px;
  color: #949494;
}

.alarm-list .box .tooltip-footer > button.close {
  position: absolute;
  top: 11px;
  right: 12px;
}

.alarm-list .alarm-advice {
  margin-top: 3.2rem;
  color: #949494;
  font-weight: var(--font-regular);
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.alarm-list .alarm-advice > .icon {
  margin-right: 4px;
  vertical-align: middle;
}

/* QR-box */
.qr-box {
  position: fixed;
  bottom: 2.4rem;
  right: 2rem;
  display: flex;
  width: 5.6rem;
  height: 5.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 0.8rem 1.1rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}

.qr-box > button {
  line-height: 13px;
}

.qr-box > button span {
  font-weight: var(--font-regular);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.275px;
}

.qr-box .qr-sub {
  position: absolute;
  left: -168px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.6rem 1.2rem;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
}

.qr-box .qr-sub::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-style: solid;
  border-color: transparent transparent transparent rgba(0, 0, 0, 0.6);
  content: '';
  right: -7px;
  border-width: 5px 0 5px 7px;
}

.qr-box .qr-sub span {
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  color: var(--white);
  line-height: 18px;
}

.qr-box .qr-sub button {
  width: 20px;
  height: 20px;
}

.qr-box .qr-sub.creation {
  top: 10px;
  left: -232px;
}

.qr-box + .topbtn-box {
  right: 20px;
  bottom: 84px;
}

.qr-box.nav-include {
  bottom: 10.6rem;
}

/*마이페이지 서브 title 추가*/
.sub_tit > .tip {
  position: relative;
  display: block;
  margin: 12px 0;
  padding-left: 23px;
  font-weight: var(--font-regular);
  font-size: 12px;
  text-align: left;
  color: #949494;
}

.sub_tit > .tip::after {
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 24px;
  height: 24px;
  background: url(/images/svg-sprites/sprites.svg) no-repeat;
  background-position: -360px -60px;
  content: '';
}

.textarea-wrap > .form-label {
  padding: 0;
}

.sm-style {
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  line-height: 18px;
  color: #949494;
}

/*앱 접근권한*/
.icon-arraylist {
  margin-top: 40px;
  margin-bottom: 32px;
}

.icon-arraylist > li + li {
  margin-top: 32px;
}

.icon-arraylist .box {
  display: inline-flex;
  align-items: center;
}

.icon-arraylist .box > .icon {
  margin-right: 20px;
}

.icon-arraylist .box b > span {
  color: #949494;
}

.icon-arraylist .box b small {
  display: block;
  color: #949494;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  line-height: 18px;
}

.also-ex {
  margin-top: 39px;
  padding-top: 16px;
  border-top: 1px solid #F2F2F2;
}

.also-ex > b {
  color: #4d4d4d;
}

.also-ex > ul {
  margin-top: 4px;
}

.also-ex > ul > li {
  display: inline-block;
  position: relative;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  line-height: 20px;
  color: #949494;
}

.also-ex > ul > li + li {
  margin-left: 21px;
}

.also-ex > ul > li + li:after {
  display: block;
  position: absolute;
  top: 0;
  left: -19px;
  content: '->';
}

/* 체크박스 & 라디오박스 공통*/
[type=checkbox]:not(:checked) + .form-label,
[type=radio]:not(:checked) + .form-label,
[type=radio]:checked + .form-label {
  padding-top: 0;
  font-size: 16px;
  color: #707070;
}

[type=checkbox]:checked + .form-label,
[type=radio]:checked + .form-label {
  color: #353535;
}

/* 컨텐츠가 없을때 노출되는 영역 공통 */
.no-content {
  padding: 27px;
  background-color: #fbfbfb;
}

.no-content > span {
  display: block;
  font-weight: var(--font-regular);
  font-size: 12px;
  color: #949494;
  text-align: center;
}

.no-content > span .icon {
  vertical-align: middle;
}

/*안내 페이지 디자인 단독사용 case1 ~ 증량사용 */
aside.case1 {
  padding: 2.8rem 2rem;
}

aside.case1 > .h2 {
  color: #4d4d4d;
  text-align: center;
}

aside.case1 .index-wrap {
  margin-top: 24px;
}

aside.case1 .index-wrap .mini-banner {
  width: 100%;
  background-color: #e9f3ff;
  border-radius: 8px;
  text-align: center;
}

aside.case1 .index-wrap > .box > dl {
  margin-top: 24px;
}

aside.case1 .index-wrap > .box > dl > dt .badge-tag {
  background-color: #e9f2ff;
  font-weight: var(--font-medium);
  font-size: 1.4rem;
  color: #1D7AFC;
}

aside.case1 .index-wrap > .box > dl > dd {
  margin-top: 12px;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: #4d4d4d;
}

aside.case2 {
  height: 100%;
  padding: 2.8rem 2rem;
  background-color: #e9f3ff;
}

aside.case2 > strong {
  display: block;
  font-size: 18px;
  line-height: 2.4rem;
  color: #4d4d4d;
  text-align: center;
}

aside.case2 .mini-banner {
  width: 100%;
  height: 140px;
  padding-top: 10px;
  border-radius: 8px;
  background: #E9F2FF;
  text-align: center;
}

aside.case2 > .index-wrap .box {
  margin-top: 24px;
  width: 100%;
  height: 100%;
}

aside.case2 > .index-wrap .box .mini-banner {
  width: 100%;
  height: 140px;
  padding-top: 10px;
  border-radius: 8px;
  background: #E9F2FF;
  text-align: center;
}

aside.case2 .report-wrap {
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  background-color: var(--white);
}

aside.case2 .report-wrap .icon.icon_40px_idea {
  margin-bottom: 0.8rem;
}

aside.case2 .report-wrap .box {
  padding: 2.4rem 0;
}

aside.case2 .report-wrap .box + .box {
  border-top: 1px solid #f2f2f2;
}

aside.case2 .report-wrap .box .h4-r {
  padding: 0 2rem;
  color: #4d4d4d;
}

aside.case2 .report-wrap .box .h4-r + .btn {
  margin-top: 1rem;
  font-size: 1.5rem;
}

aside.case2 .report-wrap .box > dl {
  margin-top: 20px;
}

aside.case2 .report-wrap .box > dl > dd {
  margin-top: 12px;
  font-weight: var(--font-regular);
  font-size: 14px;
  line-height: 20px;
  color: #4d4d4d;
}

aside.case2 .report-wrap .box .icon {
  margin-top: 1rem;
}

.s-banner {
  margin: 32px -20px 0 -20px;
  padding: 40px 0;
  background: #fbfbfb;
}

.s-banner > p {
  display: flex;
  margin-top: 0 !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.s-banner > p > span {
  color: #B7B7B7;
}

.s-banner.logo {
  margin: 0;
  padding-bottom: 0;
  background: #fff;
}

.table-box > table {
  width: 100%;
  margin-top: 8px;
  border-top: 2px solid #b7b7b7;
}

.table-box > table tr > th {
  min-width: 53px;
  padding: 12px;
  border-right: 1px solid #E5E5E5;
  background-color: #FBFBFB;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2rem;
}

.table-box > table tr > th:last-child {
  border-right: none;
}

.table-box > table tr > td {
  height: 53px;
  padding: 0.4rem;
  text-align: center;
  background: #fff;
  border-right: 1px solid #E5E5E5;
}

.table-box > table tr > td:last-child {
  border-right: none;
}

/*자두 리포트*/
.report-jado {
  background: #fbfbfb;
}

.report-jado .title {
  padding: 3.2rem 2rem;
  text-align: center;
}

.report-jado .title > .h4-r {
  color: #4d4d4d;
}

.report-list {
  background: #fff;
}

.report-list > .h3 {
  padding: 8px 23px;
}

.report-list > ul > li {
  display: flex;
  padding: 16px 20px;
  border-bottom: 1px solid #F2F2F2;
  gap: 10px;
}

.report-list > ul > li .badge {
  font-weight: var(--font-bold);
  font-size: 16px;
}

.report-list > ul > li > .text {
  flex: 1;
}

.report-list > ul > li > .text > p {
  margin-top: 4px;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
}

.report-list > ul > li > .text > p > span {
  display: block;
  margin-top: 4px;
  font-weight: var(--font-regular);
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #949494;
}

.report-list > ul > li .num {
  margin-top: 4px;
  text-align: right;
}

.report-list > ul > li .num .befor {
  position: relative;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  line-height: 20px;
  color: #949494;
}

.report-list > ul > li .num .befor::before {
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #949494;
  content: '';
}

.report-list > ul > li .num .after {
  font-weight: var(--font-bold);
  font-size: 2.2rem;
  color: #1D7AFC;
}

.report-list + .foot-banner {
  padding: 2.4rem 2rem;
  background: #fff;
  text-align: center;
}

/* Input-date */
.input-date {
  display: none;
}

/* 공인중개사 홈 */
.sub-wrap .agents-top {
  position: relative;
  min-height: 25.8rem;
  padding: 4rem 2rem 2.4rem 2rem;
  background-color: var(--primary-p100);
}

.sub-wrap .agents-top .h1 {
  letter-spacing: -0.44px;
}

.sub-wrap .agents-top .h1 + .txt {
  margin-top: 1.2rem;
}

.sub-wrap .agents-top .form-label {
  margin-top: 3.7rem;
}

.sub-wrap .agents-top .form-label + .search-wrap {
  margin-top: 1.3rem;
  z-index: 1;
}

.sub-wrap .agents-top .icon.img_agents_01 {
  position: absolute;
  top: 5.5rem;
  right: 2.1rem;
}

.sub-wrap .agents-body {
  padding: 2.4rem 2rem 0;
}

.sub-wrap .agents-body .h3 .count {
  color: var(--primary-p600);
}

.sub-wrap .agents-body .h3 .count::before {
  content: attr(data-count);
}

.sub-wrap .agents-body .h3 + .card-wrap {
  margin-top: 1.2rem;
}

.sub-wrap .agents-body .card-list.agents li {
  flex-wrap: wrap;
  gap: 2.6rem 0.8rem;
}

.sub-wrap .agents-body .card-list.agents li .title {
  width: 100%;
  padding: 0 0.4rem;
  font-weight: var(--font-bold);
  font-size: 1.2rem;
  color: var(--primary-p600);
  line-height: 18px;
}

.sub-wrap .agents-body .card-list.agents li .title .date::before {
  content: attr(data-date);
}

.sub-wrap .agents-body .card-list.agents li .list-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sub-wrap .agents-body .card-list.agents li .list-text .txt {
  margin-bottom: 0.4rem;
  font-size: 1.2rem;
  color: #707070;
  line-height: 18px;
}

/* 개인정보 보호 */
div[id*="TrmsDtl"] .text-box > ol {
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 20px;
}

div[id*="TrmsDtl"] .text-box > ol > li > ol > li {
  margin-top: 1.2rem;
}

div[id*="TrmsDtl"] .text-box > ol > li > ol > li > span {
  display: block;
  margin-bottom: .8rem;
  font-weight: var(--font-bold);
  font-size: 1.4rem;
  color: #353535;
}

div[id*="TrmsDtl"] .text-box > ol > li > ol > li > ol > li > ol {
  margin-top: .8rem;
  padding: 14px;
  background: #f4f4f4;
}

div[id*="TrmsDtl"] .text-box > ol > li > ol > li > ol > li > ol > li {
  margin-top: .4rem;
}

div[id*="TrmsDtl"] .text-box > ol > li > ol > li > ol > li + li {
  margin-top: .8rem;
}

div[id*="TrmsDtl"] .text-box > table {
  margin-top: 0.8rem;
  border-top: 2px solid #b7b7b7;
}

div[id*="TrmsDtl"] .text-box > table tr {
  border-bottom: 1px solid #dbdbdb;
  color: #4d4d4d;
}

div[id*="TrmsDtl"] .text-box > table tr > th {
  min-width: 113px;
  padding: 12px;
  border-right: 1px solid #E5E5E5;
  background-color: #FBFBFB;
  text-align: center;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  line-height: 2rem;
}

div[id*="TrmsDtl"] .text-box > table tr > td {
  height: 53px;
  padding: 1.5rem;
  font-weight: var(--font-regular);
  font-size: 1.4rem;
  line-height: 2rem;
  text-align: left;
  background: #fff;
}

/* 전자증명서 > 프로그레스 바 */
.progress-box {
  text-align: center;
}

.progress-box > progress {
  overflow: hidden;
  width: 100%;
  height: 12px;
  border-radius: 80px;
}

.progress-box > progress::-webkit-progress-bar {
  background-color: #F2F2F2;
}

.progress-box > progress::-webkit-progress-value {
  background-color: #1D7AFC;
  border-radius: 80px;
}

.progress-box > span {
  display: block;
  margin-top: 8px;
  font-weight: var(--font-bold);
  color: #1D7AFC;
}

/* Top Btn */
.topbtn-box {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 56px;
  height: 56px;
}

.topbtn-box .topbtn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15), 0px 1px 2px 0px rgba(0, 0, 0, 0.3);
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.topbtn-box .topbtn span {
  font-weight: var(--font-bold);
  font-size: 1.2rem;
  color: #707070;
  line-height: 18px;
}

/*qe 모달*/
.qr-modal {
  padding: 20px 24px;
  background: #f2f2f2;
  border-radius: 8px;
}

.qr-modal > .item {
  width: 200px;
  margin: 0 auto;
  text-align: center;
}

/*input 삭제*/
button.icon_24px_del {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  z-index: 10;
}

.input-text i,
.input-text button {
  display: none;
}

.input-text.on i,
.input-text.on button {
  display: inline-block;
}

/* input password-eye 커스텀 */
.password-eye input[type=password]:focus,
.password-eye input[type=text]:focus {
  outline: 0;
  border: 1px solid var(--primary-p600);
  box-sizing: border-box;
}

.password-eye i {
  position: absolute;
  top: 50%;
  right: 46px;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}

/*api 팝업*/
.modal .modal-dialog.api {
  position: unset;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  max-width: unset;
  transform: none;
}

/*이미지 배수*/
.view-wrap > img,
.list-box > img {
  width: 120px;
}

/* 지역선택 박스 */
.multiple-select-box {
  height: 300px;
  margin: 1.2rem 0;
  border-top: 1px solid #4d4d4d;
}

.multiple-select-box .location-depth {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  border-left: 1px solid #dbdbdb;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.multiple-select-box .location-depth::-webkit-scrollbar {
  display: none;
}

.multiple-select-box .location-depth:first-child {
  border-left: 0;
}

.multiple-select-box .location-depth:first-child button {
  background-color: #f2f2f2;
}

.multiple-select-box .location-depth button {
  width: 100%;
  text-align: center;
  padding: 1.2rem 0;
  font-size: 1.4rem;
  color: #4d4d4d;
  line-height: 20px;
}

.multiple-select-box .location-depth button.active {
  background-color: var(--primary-p600);
  font-weight: var(--font-bold);
  color: var(--white);
}

.radius-type {
  margin: 0 -2rem;
  padding: 1.6rem 2rem;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0px -5px 10px 0px rgba(0, 0, 0, 0.1);
}

.location-item {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 7rem;
  padding: 0.5rem 1.2rem;
  border-radius: 3rem;
  background-color: #f2f2f2;
  font-size: 1.4rem;
  color: #949494;
  line-height: 2rem;
}

.location-item.active {
  background-color: #E9F2FF;
  color: var(--primary-p600);
}

.location-item + .location-item:before {
  display: block;
  position: absolute;
  left: -1.7rem;
  top: 50%;
  transform: translateY(-50%);
  content: ">";
}

/* 메인화면 */
#rscMain {
  margin-top: -var(--header-height);
}

/* 공통 */
.tool {
  vertical-align: middle;
}

.primary {
  color: var(--primary-p600);
}

.ht-100 {
  height: 100%;
}

.question-mark {
  font-weight: var(--font-bold);
  color: #949494;
}

.right-txt {
  float: right;
}

.primary-type {
  background-color: #E9F2FF !important;
}

.gray-type {
  background-color: #fbfbfb;
}

/* padding */
.l-box-pd {
  padding: 24px 20px !important;
}

.box-pd {
  padding: 20px 16px !important;
}

.inr-pd {
  padding: 16px 20px !important;
}

.pd-0 {
  padding: 0 !important;
}

.pd-12 {
  padding: 12px !important;
}

.pd-t0 {
  padding-top: 0 !important;
}

.pd-t12 {
  padding-top: 12px !important;
}

.pd-t16 {
  padding-top: 16px !important;
}

.pd-t20 {
  padding-top: 20px !important;
}

.pd-t24 {
  padding-top: 24px !important;
}

.pd-t35 {
  padding-top: 35px !important;
}

.pd-t48 {
  padding-top: 48px !important;
}

.pd-t50 {
  padding-top: 50px !important;
}

.pd-b0 {
  padding-bottom: 0 !important;
}

.pd-b20 {
  padding-bottom: 20px !important;
}

.pd-r70 {
  padding-right: 70px !important;
}

.pd-tb0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

/* margin */
.mg-t0 {
  margin-top: 0 !important;
}

.mg-t4 {
  margin-top: 4px !important;
}

.mg-t8 {
  margin-top: 8px !important;
}

.mg-t12 {
  margin-top: 12px !important;
}

.mg-t15 {
  margin-top: 15px !important;
}

.mg-t16 {
  margin-top: 16px !important;
}

.mg-t20 {
  margin-top: 20px !important;
}

.mg-t24 {
  margin-top: 24px !important;
}

.mg-t36 {
  margin-top: 36px !important;
}

.mg-t40 {
  margin-top: 40px !important;
}

.mg-t62 {
  margin-top: 62px !important;
}

.mg-l9 {
  margin-left: 9px !important;
}

.mg-l14 {
  margin-left: 14px !important;
}

.mg-l20 {
  margin-left: 20px !important;
}

.mg-r4 {
  margin-right: 4px !important;
}

.mg-b0 {
  margin-bottom: 0 !important;
}

.mg-lr-20 {
  margin: 0 -20px !important;
}

/* border */
.bd-none {
  border: none !important;
}

.bd-tnone {
  border-top: none !important;
}

.border-b {
  border-bottom: 1px solid #f2f2f2;
}

.border-t {
  border-top: 1px solid #f2f2f2;
}

.border-t8 {
  border-top: 8px solid #F2F2F2;
}

.border-t-gray {
  border-top: 1px solid #dbdbdb !important;
}

/*color*/
.color-pr {
  color: #1D7AFC !important;
}

/*color*/
.color-gr {
  color: #707070 !important;
}

/* display */
.block {
  display: block !important;
}

.inline-b {
  display: inline-block !important;
}

/* flex */
.fx {
  display: flex !important;
  flex-direction: row !important;
}

.fx-col {
  display: flex !important;
  flex-direction: column !important;
}

.col-gap-4 {
  row-gap: 4px !important;
}

.col-gap-8 {
  row-gap: 8px !important;
}

.col-gap-12 {
  row-gap: 12px !important;
}

.col-gap-16 {
  row-gap: 16px !important;
}

.col-gap-20 {
  row-gap: 20px !important;
}

.col-gap-24 {
  row-gap: 24px !important;
}

.col-gap-32 {
  row-gap: 32px !important;
}

.col-gap-40 {
  row-gap: 40px !important;
}

.row-gap-2 {
  column-gap: 2px !important;
}

.row-gap-9 {
  column-gap: 9px !important;
}

.row-gap-10 {
  column-gap: 10px !important;
}

.row-gap-25 {
  column-gap: 25px !important;
}

.align-center {
  align-items: center;
}

.jty-center {
  justify-content: center;
}

.space-btwn {
  justify-content: space-between;
}

/* overflow */
.hidden {
  overflow: hidden;
}

/*button*/
/*tag*/
.app-iconjado {
  width: 120px;
  height: 120px;
}

/* loading */
.loading {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  z-index: 9999;
}

/* icon */
.icon.Img_56px_check {
  width: 56px;
  height: 56px;
}

.icon.Img_56px_check:after {
  width: inherit;
  height: inherit;
  background-position: 0 -220px;
  content: '';
}

.icon.icon_album_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_album_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -500px -150px;
  content: '';
}

.icon.icon_ai_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_ai_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -350px -150px;
  content: '';
}

.icon.icon_signature_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_signature_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -100px -150px;
  content: '';
}

.icon.icon_pie_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_pie_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -150px -150px;
  content: '';
}

.icon.icon_setting_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_setting_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -300px -150px;
  content: '';
}

.icon.icon_album_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_album_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -500px -150px;
  content: '';
}

.icon.icon_doc_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_doc_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -200px -150px;
  content: '';
}

.icon.icon_NICE {
  width: 25px;
  height: 25px;
}

.icon.icon_NICE:after {
  width: inherit;
  height: inherit;
  background-position: -360px -20px;
  content: '';
}

.icon.icon_PINO {
  width: 24px;
  height: 25px;
}

.icon.icon_PINO:after {
  width: inherit;
  height: inherit;
  background-position: -390px -20px;
  content: '';
}

.icon.icon_pino_gray {
  width: 24px;
  height: 25px;
}

.icon.icon_pino_gray:after {
  width: inherit;
  height: inherit;
  background-position: -540px -20px;
  content: '';
}

.icon.icon_24 {
  width: 24px;
  height: 24px;
}

.icon.icon_24:after {
  width: inherit;
  height: inherit;
  background-position: -450px -20px;
  content: '';
}

.icon.icon_24_gray {
  width: 24px;
  height: 24px;
}

.icon.icon_24_gray:after {
  width: inherit;
  height: inherit;
  background-position: -570px -20px;
  content: '';
}

.icon.icon_BC {
  width: 24px;
  height: 25px;
}

.icon.icon_BC:after {
  width: inherit;
  height: inherit;
  background-position: -420px -20px;
  content: '';
}

.icon.icon_cashnote {
  width: 24px;
  height: 24px;
}

.icon.icon_cashnote:after {
  width: inherit;
  height: inherit;
  background-position: -510px -20px;
  content: '';
}

.icon.icon_24px_info {
  width: 24px;
  height: 24px;
  margin-right: 2px !important;
  vertical-align: middle;
}

.icon.icon_24px_info:after {
  width: inherit;
  height: inherit;
  background-position: -360px -61px;
  content: '';
}

.icon.icon_40px_theme_deposit_01 {
  width: 40px;
  height: 40px;
}

.icon.icon_40px_theme_deposit_01:after {
  width: inherit;
  height: inherit;
  background-position: -600px -150px;
  content: '';
}

.icon.icon_file_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_file_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -450px -150px;
  content: '';
}

.icon.icon_camera_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_camera_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -550px -150px;
  content: '';
}

.icon.icon_24px_next_gray {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_next_gray:after {
  width: inherit;
  height: inherit;
  background-position: -420px -60px;
  content: '';
}

.icon.icon_24px_arrow_down {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_arrow_down:after {
  width: inherit;
  height: inherit;
  background-position: -120px -60px;
  content: '';
}

.icon.icon_left_before {
  width: 10px;
  height: 14px;
}

.icon.icon_left_before:after {
  width: inherit;
  height: inherit;
  background-position: -330px 0;
  content: '';
}

.icon.icon_logo {
  width: 33px;
  height: 32px;
}

.icon.icon_logo:after {
  width: inherit;
  height: inherit;
  background-position: 0 -100px;
  content: '';
}

.icon.icon_logo_white {
  width: 33px;
  height: 32px;
}

.icon.icon_logo_white:after {
  width: inherit;
  height: inherit;
  background-position: -50px -100px;
  content: '';
}

.icon.icon_user_black {
  width: 29px;
  height: 28px;
}

.icon.icon_user_black:after {
  width: inherit;
  height: inherit;
  background-position: -100px -100px;
  content: '';
}

.icon.icon_user_white {
  width: 29px;
  height: 28px;
}

.icon.icon_user_white:after {
  width: inherit;
  height: inherit;
  background-position: -150px -100px;
  content: '';
}

.icon.icon_alarm_black {
  width: 29px;
  height: 28px;
}

.icon.icon_alarm_black:after {
  width: inherit;
  height: inherit;
  background-position: -200px -100px;
  content: '';
}

.icon.icon_alarm_white {
  width: 29px;
  height: 28px;
}

.icon.icon_alarm_white:after {
  width: inherit;
  height: inherit;
  background-position: -250px -100px;
  content: '';
}

.icon.icon_secure {
  width: 28px;
  height: 28px;
}

.icon.icon_secure:after {
  width: inherit;
  height: inherit;
  background-position: -240px -20px;
  content: '';
}

.icon.icon_home {
  width: 28px;
  height: 28px;
}

.icon.icon_home:after {
  width: inherit;
  height: inherit;
  background-position: -180px -20px;
  content: '';
}

.icon.icon_mydata {
  width: 28px;
  height: 28px;
}

.icon.icon_mydata:after {
  width: inherit;
  height: inherit;
  background-position: -120px -20px;
  fill: #000;
  content: '';
}

.icon.icon_close_gray {
  width: 24px;
  height: 24px;
}

.icon.icon_close_gray:after {
  width: inherit;
  height: inherit;
  background-position: -450px -60px;
  content: '';
}

.icon.icon_logo_blue {
  width: 24px;
  height: 24px;
}

.icon.icon_logo_blue:after {
  width: inherit;
  height: inherit;
  background-position: -480px -20px;
  content: '';
}

.icon.icon_20px_arrow_down {
  width: 20px;
  height: 20px;
}

.icon.icon_20px_arrow_down:after {
  width: inherit;
  height: inherit;
  background-position: -480px -60px;
  content: '';
}

.icon.icon_20px_close:after {
  display: block;
  width: 20px;
  height: 20px;
  background-position: -300px -20px;
  content: '';
}

.icon.icon_16px_setting {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_setting:after {
  width: inherit;
  height: inherit;
  background-position: -240px 0;
  fill: #000;
  content: '';
}

.icon.icon_16px_set_up {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_set_up:after {
  width: inherit;
  height: inherit;
  background-position: -160px 0;
  fill: #000;
  content: '';
}

.icon.icon_16px_next {
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}

.icon.icon_16px_next:after {
  width: inherit;
  height: inherit;
  background-position: -40px 0;
  fill: #000;
  content: '';
}

.icon.icon_12px_arrow_right {
  width: 16px;
  height: 16px;
  vertical-align: bottom;
}

.icon.icon_12px_arrow_right:after {
  width: inherit;
  height: inherit;
  background-position: -280px 0;
  content: '';
}

.icon.icon_megaphone {
  width: 24px;
  height: 24px;
}

.icon.icon_megaphone:after {
  width: inherit;
  height: inherit;
  background-position: -60px -20px;
  content: '';
}

.icon.icon_megaphone_white {
  width: 24px;
  height: 24px;
}

.icon.icon_megaphone_white:after {
  width: inherit;
  height: inherit;
  background-position: -300px -100px;
  content: '';
}

.icon.icon_qr_white {
  width: 24px;
  height: 25px;
}

.icon.icon_qr_white:after {
  width: inherit;
  height: inherit;
  background-position: -600px -20px;
  content: '';
}

.icon.icon_close_white {
  width: 20px;
  height: 20px;
}

.icon.icon_close_white:after {
  width: inherit;
  height: inherit;
  background-position: -630px -20px;
  content: '';
}

.icon.Img_120px_balloon {
  width: 120px;
  height: 120px;
}

.icon.Img_120px_balloon:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_120px_balloon.svg);
  content: '';
}

.icon.Img_120px_certificate {
  width: 120px;
  height: 120px;
}

.icon.Img_120px_certificate:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_120px_certificate.svg);
  content: '';
}

.icon.Img_120px_house {
  width: 120px;
  height: 120px;
}

.icon.Img_120px_house:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_120px_house.svg);
  content: '';
}

.icon.Img_large_cardimg02 {
  width: 56px;
  height: 56px;
}

.icon.Img_large_cardimg02:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_large_cardimg02.svg);
  content: '';
}

.icon.Img_large_certificate02 {
  width: 56px;
  height: 56px;
}

.icon.Img_large_certificate02:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_large_certificate02.svg);
  content: '';
}

.icon.Img_large_cardimg03 {
  width: 56px;
  height: 56px;
}

.icon.Img_large_cardimg03:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_large_cardimg03.svg);
  content: '';
}

.icon.Img_large_certificate03 {
  width: 56px;
  height: 56px;
}

.icon.Img_large_certificate03:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_large_certificate03.svg);
  content: '';
}

.icon.Img_app_logo {
  width: 109px;
  height: 109px;
}

.icon.Img_app_logo:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_app_logo.svg);
  content: '';
}

.icon.Img_app_logo02 {
  width: 109px;
  height: 109px;
}

.icon.Img_app_logo02:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/Img_app_logo02.svg);
  content: '';
}

.icon.icon_16px_arrow_up_gray {
  width: 17px;
  height: 16px;
}

.icon.icon_16px_arrow_up_gray:after {
  width: inherit;
  height: inherit;
  background-position: -450px 0px;
  content: '';
}

.icon.icon_24px_doc_blue {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_doc_blue:after {
  width: inherit;
  height: inherit;
  background-position: -570px -60px;
  content: '';
}

.icon.icon_16px_arrow_right {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_arrow_right:after {
  width: inherit;
  height: inherit;
  background-position: -510px 0px;
  content: '';
}

.icon.icon_16px_arrow_right_blue {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_arrow_right_blue:after {
  width: inherit;
  height: inherit;
  background-position: -540px 0px;
  content: '';
}

.icon.icon_profile {
  width: 56px;
  height: 56px;
}

.icon.icon_profile:after {
  width: inherit;
  height: inherit;
  background-position: -320px -220px;
  content: '';
}

.icon.icon_24px_checklist_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_checklist_blue02:after {
  width: inherit;
  height: inherit;
  background-position: 0 -380px;
  content: '';
}

.icon.icon_24px_memo_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_memo_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -100px -380px;
  content: '';
}

.icon.icon_check_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_check_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -650px -150px;
  content: '';
}

.icon.icon_20px_search {
  width: 20px;
  height: 20px;
}

.icon.icon_20px_search:after {
  width: inherit;
  height: inherit;
  background-position: -330px -20px;
  content: '';
}

.icon.icon_40px_heart {
  width: 40px;
  height: 41px;
}

.icon.icon_40px_heart:after {
  width: inherit;
  height: inherit;
  background-position: -350px -380px;
  content: '';
}

.icon.icon_40px_house {
  width: 40px;
  height: 41px;
}

.icon.icon_40px_house:after {
  width: inherit;
  height: inherit;
  background-position: -400px -380px;
  content: '';
}

.icon.icon_24px_arrow_up {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_arrow_up:after {
  width: inherit;
  height: inherit;
  background-position: -600px -60px;
  content: '';
}

.icon.icon_40px_home {
  width: 40px;
  height: 40px;
}

.icon.icon_40px_home:after {
  width: inherit;
  height: inherit;
  background-position: -450px -380px;
  content: '';
}

.icon.icon_40px_qr {
  width: 40px;
  height: 40px;
}

.icon.icon_40px_qr:after {
  width: inherit;
  height: inherit;
  background-position: -500px -380px;
  content: '';
}

.icon.icon_40px_idea {
  width: 40px;
  height: 40px;
}

.icon.icon_40px_idea:after {
  width: inherit;
  height: inherit;
  background-position: -550px -380px;
  content: '';
}

.icon.human02 {
  width: 120px;
  height: 120px;
}

.icon.human02:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/human02.png);
  background-size: 100%;
  content: '';
}

.icon.human03 {
  width: 120px;
  height: 120px;
}

.icon.human03:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/human03.png);
  background-size: 100%;
  content: '';
}

.icon.QRscan {
  width: 120px;
  height: 120px;
}

.icon.QRscan:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/QRscan.png);
  background-size: 100%;
  content: '';
}

.icon.img_agents_01 {
  width: 141px;
  height: 146px;
}

.icon.img_agents_01:after {
  width: inherit;
  height: inherit;
  background: url(/images/svg-ico/img_agents_01.png);
  background-size: 100%;
  content: '';
}

.icon.icon_16px_arrow_down_gray {
  width: 16px;
  height: 16px;
}

.icon.icon_16px_arrow_down_gray:after {
  width: inherit;
  height: inherit;
  background-position: -480px 0px;
  content: '';
}

.icon.icon_24px_safety_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_safety_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -600px -380px;
  content: '';
}

.icon.icon_24px_bell_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_bell_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -700px -150px;
  content: '';
}

.icon.icon_24px_question_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_question_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -900px -150px;
  content: '';
}

.icon.icon_24px_notice_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_notice_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -800px -150px;
  content: '';
}

.icon.icon_24px_event_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_event_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -850px -150px;
  content: '';
}

.icon.icon_24px_login_setting_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_login_setting_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -750px -150px;
  content: '';
}

.icon.icon_24px_inquiry_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_inquiry_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -950px -150px;
  content: '';
}

.icon.icon_24px_paper_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_paper_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -200px -380px;
  content: '';
}

.icon.icon_24px_app_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_app_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -50px -380px;
  content: '';
}

.icon.call {
  width: 40px;
  height: 41px;
}

.icon.call:after {
  width: inherit;
  height: inherit;
  background-position: -650px -380px;
  content: '';
}

.icon.message {
  width: 40px;
  height: 41px;
}

.icon.message:after {
  width: inherit;
  height: inherit;
  background-position: -700px -380px;
  content: '';
}

.icon.icon_16px_arrow_right_gray {
  width: 16px;
  height: 17px;
}

.icon.icon_16px_arrow_right_gray:after {
  width: inherit;
  height: inherit;
  background-position: -570px -0px;
  content: '';
}

.icon.icon_24px_graph_blue02 {
  width: 40px;
  height: 41px;
}

.icon.icon_24px_graph_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -150px -380px;
  content: '';
}

.icon.icon_magni_blue01 {
  width: 40px;
  height: 40px;
}

.icon.icon_magni_blue01:after {
  width: inherit;
  height: inherit;
  background-position: -250px -150px;
  content: '';
}

.icon.Img_40px_nodata_2 {
  width: 24px;
  height: 24px;
}

.icon.Img_40px_nodata_2:after {
  width: inherit;
  height: inherit;
  background-position: -660px -60px;
  content: '';
}

.icon.gallery {
  width: 40px;
  height: 40px;
}

.icon.gallery:after {
  width: inherit;
  height: inherit;
  background-position: -750px -380px;
  content: '';
}

.icon.document {
  width: 24px;
  height: 24px;
}

.icon.document:after {
  width: inherit;
  height: inherit;
  background-position: -660px -20px;
  content: '';
}

.icon.icon_24px_jadoit {
  width: 24px;
  height: 24px;
}

.icon.icon_24px_jadoit:after {
  width: inherit;
  height: inherit;
  background-position: -690px -20px;
  content: '';
}

.icon.icon_logo_lg {
  width: 64px;
  height: 68px;
}

.icon.icon_logo_lg:after {
  width: inherit;
  height: inherit;
  background-position: 0 -300px;
  content: '';
}

.icon.icon_logo_white {
  width: 80px;
  height: 24px;
}

.icon.icon_logo_white:after {
  width: inherit;
  height: inherit;
  background-position: -400px -100px;
  content: '';
}

.icon.icon_logo {
  width: 80px;
  height: 24px;
}

.icon.icon_logo:after {
  width: inherit;
  height: inherit;
  background-position: -500px -100px;
  content: '';
}

.icon.hosue_graph {
  width: 24px;
  height: 24px;
}

.icon.hosue_graph:after {
  width: inherit;
  height: inherit;
  background-position: -690px -60px;
  content: '';
}

.icon.report {
  width: 24px;
  height: 24px;
}

.icon.report:after {
  width: inherit;
  height: inherit;
  background-position: -720px -60px;
  content: '';
}

.icon.icon_3dots {
  width: 22px;
  height: 22px;
}

.icon.icon_3dots:after {
  width: inherit;
  height: inherit;
  background-position: -750px -60px;
  content: '';
}

.icon.call_gray {
  width: 40px;
  height: 40px;
}

.icon.call_gray:after {
  width: inherit;
  height: inherit;
  background-position: -800px -380px;
  content: '';
}

.icon.icon_24px_file_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_file_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -850px -380px;
  content: '';
}

.icon.icon_24px_camera_blue02 {
  width: 40px;
  height: 40px;
}

.icon.icon_24px_camera_blue02:after {
  width: inherit;
  height: inherit;
  background-position: -900px -380px;
  content: '';
}

.icon.certificate {
  width: 40px;
  height: 40px;
}

.icon.certificate:after {
  width: inherit;
  height: inherit;
  background-position: -0 -430px;
  content: '';
}

.icon.score {
  width: 40px;
  height: 40px;
}

.icon.score:after {
  width: inherit;
  height: inherit;
  background-position: -50px -430px;
  content: '';
}

.icon.checklist {
  width: 40px;
  height: 40px;
}

.icon.checklist:after {
  width: inherit;
  height: inherit;
  background-position: -100px -430px;
  content: '';
}

.icon.dataCollect {
  width: 40px;
  height: 40px;
}

.icon.dataCollect:after {
  width: inherit;
  height: inherit;
  background-position: -150px -430px;
  content: '';
}

.icon.coupon {
  width: 40px;
  height: 40px;
}

.icon.coupon:after {
  width: inherit;
  height: inherit;
  background-position: -200px -430px;
  content: '';
}

.icon.policy {
  width: 40px;
  height: 40px;
}

.icon.policy:after {
  width: inherit;
  height: inherit;
  background-position: -250px -430px;
  content: '';
}

.icon.icon_qr_creation {
  width: 24px;
  height: 24px;
}

.icon.icon_qr_creation:after {
  width: inherit;
  height: inherit;
  background-position: -720px -20px;
  content: '';
}

.icon.report_circle {
  width: 24px;
  height: 24px;
}

.icon.report_circle:after {
  width: inherit;
  height: inherit;
  background-position: -750px -20px;
  content: '';
}

.icon.pw-show {
  width: 20px;
  height: 20px;
}

.icon.pw-show:after {
  width: inherit;
  height: inherit;
  background-position: -630px 0px;
  content: '';
}

.icon.pw-hide {
  width: 20px;
  height: 20px;
}

.icon.pw-hide:after {
  width: inherit;
  height: inherit;
  background-position: -660px 0px;
  content: '';
}

.icon.location {
  width: 24px;
  height: 24px;
}

.icon.location:after {
  width: inherit;
  height: inherit;
  background-position: -780px -20px;
  content: '';
}
